From b6e3ff5bc14c25d5fd257633f1c09abfc056873c Mon Sep 17 00:00:00 2001 From: mongar Date: Wed, 17 Apr 2024 15:22:20 -0500 Subject: [PATCH] =?UTF-8?q?Feat:=20Actualizaci=C3=B3n=20de=20la=20carpeta?= =?UTF-8?q?=20optical=5Fequipment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 14 +- agended.py | 119 +- balance_sale_party.py | 104 +- calibration.py | 105 +- company.py | 2 +- company.xml | 12 +- configuration.py | 110 +- contract.py | 343 +- equipment.py | 438 +- locale/es.po | 12 + maintenance.py | 920 +- maintenance.xml | 9 +- messages.xml | 13 + move.py | 357 +- move.xml | 48 +- party.py | 25 +- party.xml | 26 +- product.py | 488 +- product.xml | 12 +- purchase.py | 204 +- report/CVS_Equipments.fodt | 1044 +- report/CV_Equipment.fodt | 766 +- report/Calibration.fodt | 774 +- report/Calibrations.fodt | 629 +- report/Contract.fodt | 240 +- report/Maintenance_History.fodt | 626 +- report/Maintenance_Service.fodt | 542 +- report/Maintenance_Timeline.fodt | 929 +- report/Maintenances_Historys.fodt | 883 +- report/Service.fodt | 865 +- sale.py | 159 +- sale.xml | 145 +- shipment.xml | 12 +- tests/__init__.py | 2 + tests/files/database.dump | 41863 +++++++++++++++++++++++++ tests/files/signature.png | Bin 0 -> 5356 bytes tests/scenario_optical_equipment.rst | 444 + tests/test_scenario.py | 8 + tryton.cfg | 5 +- view/address_tree.xml | 6 +- view/calibration_total_form.xml | 35 + view/configuration_form.xml | 3 + view/contract_form.xml | 4 +- view/maintenance_equipment_form.xml | 14 +- view/maintenance_form.xml | 2 +- view/maintenance_service_form.xml | 6 + view/product_list_purchase_line.xml | 8 + view/sale_form.xml | 10 +- view/sale_tree.xml | 6 +- view/template_form.xml | 19 +- 50 files changed, 49102 insertions(+), 4308 deletions(-) create mode 100644 messages.xml create mode 100644 tests/files/database.dump create mode 100644 tests/files/signature.png create mode 100644 tests/scenario_optical_equipment.rst create mode 100644 tests/test_scenario.py create mode 100644 view/calibration_total_form.xml create mode 100644 view/product_list_purchase_line.xml diff --git a/__init__.py b/__init__.py index 506877b..4acf775 100644 --- a/__init__.py +++ b/__init__.py @@ -10,11 +10,13 @@ __all__ = ['register'] def register(): Pool.register( - company.Emplyee, + company.Employee, equipment.OpticalEquipment, - equipment.EquipmentMaintenance, - equipment.EquipmentContract, equipment.EquipmentParty, + contract.Contract, + contract.ContractMaintenanceServices, + equipment.EquipmentContract, + equipment.EquipmentMaintenance, equipment.ChangePropietary, equipment.ChangeEquipment, agended.AgendedInitial, @@ -25,8 +27,6 @@ def register(): configuration.Configuration, diary.Diary, contract.Cron, - contract.Contract, - contract.ContractMaintenanceServices, contract.ContractEquipment, contract.CreateContractInitial, party.Address, @@ -41,7 +41,6 @@ def register(): sale.Sale, sale.SaleDate, sale.SaleLine, - balance_sale_party.BalanceSalePartyStart, maintenance.MaintenanceService, maintenance.MaintenanceServiceLine, maintenance.MaintenanceLine, @@ -52,7 +51,8 @@ def register(): move.ShipmentInternal, move.ShipmentOutReturn, balance_sale_party.BalanceSalePartyStart, - module='optical_equipment', type_='model') + module='optical_equipment', type_='model' + ) Pool.register( agended.AssingAgended, agended.ReAssingAgended, diff --git a/agended.py b/agended.py index 18ad785..3d2f00d 100644 --- a/agended.py +++ b/agended.py @@ -1,12 +1,9 @@ # This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. from trytond.model import ModelSQL, ModelView, fields -from trytond.wizard import ( - Button, StateAction, StateTransition, StateView, Wizard) +from trytond.wizard import Button, StateAction, StateView, Wizard from trytond.pool import Pool -from trytond.exceptions import UserError -import datetime from datetime import timedelta @@ -14,46 +11,56 @@ class AgendedInitial(ModelView): 'Agended maintenance service' __name__ = 'optical_equipment_maintenance.agended' - maintenance_service = fields.Many2One('optical_equipment_maintenance.service',"Maintenaince Service", - required=True, domain=[('state', '=', 'draft')]) - estimated_agended = fields.DateTime("Date Maintenance", required=True) - technical = fields.Many2One('company.employee', "Technical", required=True) + maintenance_service = fields.Many2One( + 'optical_equipment_maintenance.service', + 'Maintenaince Service', + required=True, + domain=[('state', '=', 'draft')], + ) + + estimated_agended = fields.DateTime('Date Maintenance', required=True) + + technical = fields.Many2One('company.employee', 'Technical', required=True) + - class AssingAgended(Wizard): 'Assing Agended' __name__ = 'optical_equipment_maintenance.assing_agended' - start = StateView('optical_equipment_maintenance.agended', - 'optical_equipment.assing_agended_view_form', [ - Button('Cancel', 'end', 'tryton-cancel'), - Button('Assing', 'assing_agended', 'tryton-ok', default=True), - ]) - - assing_agended = StateAction('optical_equipment.act_maintenance_service_form') + start = StateView( + 'optical_equipment_maintenance.agended', + 'optical_equipment.assing_agended_view_form', + [ + Button('Cancel', 'end', 'tryton-cancel'), + Button('Assing', 'assing_agended', 'tryton-ok', default=True), + ], + ) + assing_agended = StateAction( + 'optical_equipment.act_maintenance_service_form') def default_start(self, fields): - if len(self.records) > 0: + if len(self.records) > 0: default = {'maintenance_service': self.records[0].id} else: default = {'maintenance_service': None} return default - + def do_assing_agended(self, action): pool = Pool() Diary = pool.get('optical_equipment_maintenance.diary') Config = pool.get('optical_equipment.configuration') config = Config(3) - - MaintenanceService = pool.get('optical_equipment_maintenance.service') - diary = Diary(code=config.agended_sequence.get(), - maintenance_service=self.start.maintenance_service, - date_expected=self.start.estimated_agended, - date_estimated=self.start.estimated_agended + timedelta(days=15), - date_end=self.start.estimated_agended + timedelta(days=15), - technical=self.start.technical.id, - state='agended') + + diary = Diary( + code=config.agended_sequence.get(), + maintenance_service=self.start.maintenance_service, + date_expected=self.start.estimated_agended, + date_estimated=self.start.estimated_agended + timedelta(days=15), + date_end=self.start.estimated_agended + timedelta(days=15), + technical=self.start.technical.id, + state='agended', + ) diary.save() maintenanceService = self.start.maintenance_service @@ -65,32 +72,40 @@ class AssingAgended(Wizard): maintenanceService.history_agended += (diary.id,) maintenanceService.set_code(maintenanceService) maintenanceService.save() - - + + class ReAgended(ModelView): 'Agended maintenance service' __name__ = 'optical_equipment_maintenance.reagended' - maintenance_service = fields.Many2One('optical_equipment_maintenance.service',"Maintenaince Service", - required=True, domain=[('state', '=', 'failed')]) - estimated_agended = fields.DateTime("Date Maintenance", required=True) - technical = fields.Many2One('company.employee', "Technical", required=True) + maintenance_service = fields.Many2One( + 'optical_equipment_maintenance.service', + 'Maintenaince Service', + required=True, + domain=[('state', '=', 'failed')], + ) + estimated_agended = fields.DateTime('Date Maintenance', required=True) + technical = fields.Many2One('company.employee', 'Technical', required=True) + - class ReAssingAgended(Wizard): 'Assing Agended' __name__ = 'optical_equipment_maintenance.reassing_agended' - start = StateView('optical_equipment_maintenance.reagended', - 'optical_equipment.reassing_agended_view_form', [ - Button('Cancel', 'end', 'tryton-cancel'), - Button('Assing', 'assing_agended', 'tryton-ok', default=True), - ]) + start = StateView( + 'optical_equipment_maintenance.reagended', + 'optical_equipment.reassing_agended_view_form', + [ + Button('Cancel', 'end', 'tryton-cancel'), + Button('Assing', 'assing_agended', 'tryton-ok', default=True), + ], + ) - assing_agended = StateAction('optical_equipment.act_maintenance_service_form') + assing_agended = StateAction( + 'optical_equipment.act_maintenance_service_form') def default_start(self, fields): - if len(self.records) > 0: + if len(self.records) > 0: default = {'maintenance_service': self.records[0].id} else: default = {'maintenance_service': None} @@ -99,13 +114,15 @@ class ReAssingAgended(Wizard): def do_assing_agended(self, action): pool = Pool() Diary = pool.get('optical_equipment_maintenance.diary') - - diary = Diary(maintenance_service=self.start.maintenance_service, - date_expected=self.start.estimated_agended, - date_estimated=self.start.estimated_agended + timedelta(days=15), - date_end=self.start.estimated_agended + timedelta(days=15), - technical=self.start.technical.id, - state='agended') + + diary = Diary( + maintenance_service=self.start.maintenance_service, + date_expected=self.start.estimated_agended, + date_estimated=self.start.estimated_agended + timedelta(days=15), + date_end=self.start.estimated_agended + timedelta(days=15), + technical=self.start.technical.id, + state='agended', + ) diary.save() maintenanceService = self.start.maintenance_service @@ -121,5 +138,7 @@ class ServiceMaintenanceAgended(ModelSQL): 'Service Maintenance - Agended' __name__ = 'optical_equipment_maintenance.service-maintenance.diary' - maintenance_service = fields.Many2One('optical_equipment_maintenance.service', "Maintenance Service") - agended = fields.Many2One('optical_equipment_maintenance.diary', "Agended") + maintenance_service = fields.Many2One( + 'optical_equipment_maintenance.service', 'Maintenance Service' + ) + agended = fields.Many2One('optical_equipment_maintenance.diary', 'Agended') diff --git a/balance_sale_party.py b/balance_sale_party.py index a3ab8ac..1ad7306 100644 --- a/balance_sale_party.py +++ b/balance_sale_party.py @@ -3,53 +3,66 @@ from trytond.model import ModelView, fields from trytond.wizard import Wizard, StateView, Button, StateReport from trytond.report import Report -from trytond.pool import Pool, PoolMeta +from trytond.pool import Pool from trytond.transaction import Transaction from trytond.pyson import Eval from trytond.exceptions import UserError -__all__ = ['BalancePartyStart', 'PrintBalanceParty', 'BalanceParty'] +__all__ = ['BalanceSalePartyStart', + 'PrintBalanceSaleParty', 'BalanceSaleParty'] + class BalanceSalePartyStart(ModelView): 'Balance Party Start' __name__ = 'optical_equipment.print_balance_sale_party.start' + fiscalyear = fields.Many2One('account.fiscalyear', 'Fiscal Year', + required=True) party = fields.Many2One('party.party', 'Party', required=True) - start_period = fields.Many2One('account.period', 'Start Period', - domain=[ - ('start_date', '<=', (Eval('end_period'), 'start_date')), - ], depends=['fiscalyear', 'end_period']) - end_period = fields.Many2One('account.period', 'End Period', - domain=[ - ('start_date', '>=', (Eval('start_period'), 'start_date')) - ], - depends=['start_period']) + start_period = fields.Many2One( + 'account.period', + 'Start Period', + domain=[ + ('start_date', '<=', (Eval('end_period'), 'start_date')), + ], + depends=['fiscalyear', 'end_period'], + ) + end_period = fields.Many2One( + 'account.period', + 'End Period', + domain=[('start_date', '>=', (Eval('start_period'), 'start_date'))], + depends=['start_period'], + ) company = fields.Many2One('company.company', 'Company', required=True) - party_type = fields.Selection([('out', 'Customer')], "Party Type", required=True) - + party_type = fields.Selection( + [('out', 'Customer')], 'Party Type', required=True) + @staticmethod def default_company(): return Transaction().context.get('company') - + @staticmethod def default_party_type(): return 'out' - + class PrintBalanceSaleParty(Wizard): 'Print Balance Sale Party' __name__ = 'optical_equipment.print_balance_sale_party' - start = StateView('optical_equipment.print_balance_sale_party.start', - 'optical_equipment.print_balance_sale_party_start_view_form', [ - Button('Cancel', 'end', 'tryton-cancel'), - Button('Print', 'print_', 'tryton-print', default=True), - ]) - + start = StateView( + 'optical_equipment.print_balance_sale_party.start', + 'optical_equipment.print_balance_sale_party_start_view_form', + [ + Button('Cancel', 'end', 'tryton-cancel'), + Button('Print', 'print_', 'tryton-print', default=True), + ], + ) + print_ = StateReport('optical_equipment.balance_sale_party') def default_start(self, fields): - if len(self.records) > 0: + if len(self.records) > 0: default = {'party': self.records[0].party.id} else: default = {'party': None} @@ -58,7 +71,7 @@ class PrintBalanceSaleParty(Wizard): def do_print_(self, action): party = None party_type = None - + if self.start.party: party = self.start.party.id if self.start.party_type: @@ -68,8 +81,11 @@ class PrintBalanceSaleParty(Wizard): 'company': self.start.company.id, 'party': party, 'party_type': party_type, - 'start_period': self.start.start_period.id if self.start.start_period else None, - 'end_period' : self.start.end_period.id if self.start.end_period else None + 'start_period': ( + self.start.start_period.id if self.start.start_period else None + ), + 'end_period': + self.start.end_period.id if self.start.end_period else None, } return action, data @@ -82,7 +98,8 @@ class BalanceSaleParty(Report): @classmethod def get_context(cls, records, header, data): - report_context = super(BalanceSaleParty, cls).get_context(records, header, data) + report_context = super(BalanceSaleParty, cls).get_context( + records, header, data) pool = Pool() Company = pool.get('company.company') Period = pool.get('account.period') @@ -92,8 +109,8 @@ class BalanceSaleParty(Report): end_period = None party = None company = Company(data['company']) - dom_sale = [('state', 'in', ["processing", "done"])] - + dom_sale = [('state', 'in', ['processing', 'done'])] + if data.get('party'): party = data['party'] dom_sale.append(('party', '=', party)) @@ -105,12 +122,12 @@ class BalanceSaleParty(Report): end_period = Period(data['end_period']) dom_sale.append(('sale_date', '<=', end_period.start_date)) - sales = Sale.search(dom_sale, - order=[('sale_date', 'DESC'), - ('id', 'DESC')],) - + sales = Sale.search( + dom_sale, + order=[('sale_date', 'DESC'), ('id', 'DESC')], + ) + res = {} - dict_location = {} id_ = party party_ = Party.search(['id', '=', party])[0] @@ -124,18 +141,17 @@ class BalanceSaleParty(Report): except IndexError: pass - res[id_] = {'name': name, - 'id_number': id_number, - 'party': party_ - } + res[id_] = {'name': name, 'id_number': id_number, 'party': party_} + + if (not sales): + err = 'Este Tercero no Cuenta Con Ventas en Proceso ó Confirmadas.' + raise UserError(str(err)) + + res[id_]['sales'] = sales - if sales: - res[id_]['sales'] = sales - else: - raise UserError(str("Este Tercero no Cuenta Con Ventas en Proceso ó Confirmadas.")) - report_context['records'] = res.values() - report_context['start_period'] = start_period.name if start_period else '*' + report_context['start_period'] =\ + start_period.name if start_period else '*' report_context['end_period'] = end_period.name if end_period else '*' report_context['company'] = company @@ -143,5 +159,5 @@ class BalanceSaleParty(Report): for sale in sales: residual_amount += sale.residual_amount report_context['residual_amount'] = residual_amount - + return report_context diff --git a/calibration.py b/calibration.py index fbc85ee..3ab41b7 100644 --- a/calibration.py +++ b/calibration.py @@ -1,8 +1,7 @@ # This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. -from trytond.model import ( - Workflow, ModelSQL, ModelView, fields, sequence_ordered) -from trytond.pyson import Bool, Eval, If, Id, Equal +from trytond.model import ModelSQL, ModelView, fields, sequence_ordered +from trytond.pyson import Eval, If from trytond.pool import Pool from trytond.modules.company import CompanyReport from trytond.transaction import Transaction @@ -17,24 +16,28 @@ class Calibration(ModelSQL, ModelView): _states = {'readonly': True} - maintenance = fields.Many2One('optical_equipment.maintenance', "Maintenance", ondelete="CASCADE", - required=True) - graph_dates = fields.Char("Graph Dates", readonly=True) - diopter = fields.Float("Diopter", states=_states) - mean = fields.Float("Mean", states=_states) - dev_std = fields.Float("Standart Desviation", states=_states) - uncertain_type_A = fields.Float("Uncertain Type A", states=_states) - uncertain_pattern = fields.Float("Uncertain Pattern", states=_states) - k_c_calibration = fields.Float("K Crt Calibration", states=_states) - uncertain_U_b1 = fields.Float("U_b1", states=_states) - d_resolution = fields.Float("d_resolution", states=_states) - uncertain_U_b2_dig = fields.Float("U_b2", states=_states) - uncertain_U_b2_ana = fields.Float("U_b2", states=_states) - uncertain_combinated = fields.Float("U_combinated", states=_states) - uncertain_eff = fields.Float("U eff", states=_states) - t_student = fields.Float("T Student", states=_states) + maintenance = fields.Many2One( + 'optical_equipment.maintenance', + 'Maintenance', + ondelete='CASCADE', + required=True, + ) + graph_dates = fields.Char('Graph Dates', readonly=True) + diopter = fields.Float('Diopter', states=_states) + mean = fields.Float('Mean', states=_states) + dev_std = fields.Float('Standart Desviation', states=_states) + uncertain_type_A = fields.Float('Uncertain Type A', states=_states) + uncertain_pattern = fields.Float('Uncertain Pattern', states=_states) + k_c_calibration = fields.Float('K Crt Calibration', states=_states) + uncertain_U_b1 = fields.Float('U_b1', states=_states) + d_resolution = fields.Float('d_resolution', states=_states) + uncertain_U_b2_dig = fields.Float('U_b2', states=_states) + uncertain_U_b2_ana = fields.Float('U_b2', states=_states) + uncertain_combinated = fields.Float('U_combinated', states=_states) + uncertain_eff = fields.Float('U eff', states=_states) + t_student = fields.Float('T Student', states=_states) - uncertain_expanded = fields.Float("Uexpand", _digits, states=_states) + uncertain_expanded = fields.Float('Uexpand', _digits, states=_states) state = fields.Char('State') @@ -43,39 +46,53 @@ class CalibrationSample(sequence_ordered(), ModelView, ModelSQL): 'Samples of Calibration' __name__ = 'optical_equipment.maintenance.calibration_sample' - maintenance = fields.Many2One('optical_equipment.maintenance', 'Maintenance') - product = fields.Function(fields.Integer("Product ID"), 'on_change_with_product') - number_sample = fields.Float("Sample #", _digits) - value_patterns = fields.Many2One('optical_equipment.product_pattern', "Value Pattern", ondelete='RESTRICT', required=True, - domain=[('product', '=', Eval('product'))], - depends=['product']) - value_equipment = fields.Float("Value in Equipment", _digits, required=True, - states={'readonly': Eval('value_patterns') is None}) - mistake = fields.Float("Mistake", _digits) - mistake_rate = fields.Float("% Mistake", _digits, - states={'readonly': True}, - depends=['mistake']) + maintenance = fields.Many2One( + 'optical_equipment.maintenance', 'Maintenance') + product = fields.Function(fields.Integer( + 'Product ID'), 'on_change_with_product') + number_sample = fields.Float('Sample #', _digits) + value_patterns = fields.Many2One( + 'optical_equipment.product_pattern', + 'Value Pattern', + ondelete='RESTRICT', + required=True, + domain=[('product', '=', Eval('product'))], + depends=['product'], + ) + value_equipment = fields.Float( + 'Value in Equipment', + _digits, + required=True, + states={'readonly': Eval('value_patterns') is None}, + ) + mistake = fields.Float('Mistake', _digits) + mistake_rate = fields.Float( + '% Mistake', _digits, states={'readonly': True}, depends=['mistake'] + ) @fields.depends('maintenance', '_parent_maintenance.equipment') def on_change_with_product(self, name=None): if self.maintenance: return self.maintenance.equipment.product.template.id - @fields.depends('value_patterns', 'value_equipment', - 'mistake', 'mistake_rate') + @fields.depends( + 'value_patterns', 'value_equipment', 'mistake', 'mistake_rate') def on_change_value_equipment(self): - if float(self.value_patterns.pattern) < 0: - self.mistake = self.value_patterns.pattern - self.value_equipment - else: - if self.value_patterns.pattern > self.value_equipment: - self.mistake = self.value_patterns.pattern - self.value_equipment + if self.value_patterns: + pattern = self.value_patterns.pattern + if float(pattern) < 0: + self.mistake = pattern - self.value_equipment else: - self.mistake = -self.value_patterns.pattern + self.value_equipment + if pattern > self.value_equipment: + self.mistake = pattern - self.value_equipment + else: + self.mistake = -pattern + self.value_equipment - if self.value_patterns.pattern == self.value_equipment: - self.mistake_rate = 0 - else: - self.mistake_rate = abs(self.mistake / self.value_patterns.pattern) * 100 + if pattern == self.value_equipment: + self.mistake_rate = 0 + else: + self.mistake_rate = abs( + self.mistake / pattern) * 100 class CalibrationReport(CompanyReport): diff --git a/company.py b/company.py index e9d90ad..059b8cd 100644 --- a/company.py +++ b/company.py @@ -2,7 +2,7 @@ from trytond.pool import PoolMeta from trytond.model import fields -class Emplyee(metaclass=PoolMeta): +class Employee(metaclass=PoolMeta): 'Company' __name__ = 'company.employee' diff --git a/company.xml b/company.xml index c3d2d1a..c5a9a09 100644 --- a/company.xml +++ b/company.xml @@ -2,9 +2,11 @@ - - company.employee - - employee_form - + + + company.employee + + employee_form + + diff --git a/configuration.py b/configuration.py index 57d541f..3608eb6 100644 --- a/configuration.py +++ b/configuration.py @@ -1,51 +1,83 @@ -from trytond.model import ( - ModelSingleton, ModelSQL, ModelView, fields) +from trytond.model import ModelSingleton, ModelSQL, ModelView, fields from trytond.pyson import Id, Eval class Configuration(ModelSingleton, ModelSQL, ModelView): - 'Equipment Configuration' - __name__ = 'optical_equipment.configuration' + "Equipment Configuration" + __name__ = "optical_equipment.configuration" - technician_responsible = fields.Many2One( - 'company.employee', "Technician Responsible") - invima = fields.Char('Invima', states={ - 'required': Eval('technician_responsible', True) - }) equipment_sequence = fields.Many2One( - 'ir.sequence', "Equipment Sequence", domain=[ - ('sequence_type', '=', - Id('optical_equipment', 'sequence_type_equipment'))]) + "ir.sequence", + "Equipment Sequence", + domain=[ + ("sequence_type", "=", Id( + "optical_equipment", "sequence_type_equipment")) + ], + required=True + ) maintenance_sequence = fields.Many2One( - 'ir.sequence', "Maintenance Sequence", - domain=[('sequence_type', '=', - Id('optical_equipment', 'sequence_type_maintenances'))]) + "ir.sequence", + "Maintenance Sequence", + domain=[ + ( + "sequence_type", + "=", + Id("optical_equipment", "sequence_type_maintenances"), + ) + ], + required=True + ) + sale_quote_number = fields.Many2One( + "ir.sequence", + "Sale Quote Number", + domain=[("sequence_type", "=", Id("sale", "sequence_type_sale"))], + required=True + ) agended_sequence = fields.Many2One( - 'ir.sequence', "Agended Sequence", - domain=[('sequence_type', '=', - Id('optical_equipment', 'sequence_type_agended'))]) + "ir.sequence", + "Agended Sequence", + domain=[ + ("sequence_type", "=", Id( + "optical_equipment", "sequence_type_agended")) + ], + required=True + ) contract_sequence = fields.Many2One( - 'ir.sequence', "Contract Sequence", domain=[ - ('sequence_type', '=', - Id('optical_equipment', 'sequence_type_contract'))]) - temperature_min = fields.Float("Temp Min") - temperature_max = fields.Float("Temp Max") + "ir.sequence", + "Contract Sequence", + domain=[ + ("sequence_type", "=", Id( + "optical_equipment", "sequence_type_contract")) + ], + required=True + ) + temperature_min = fields.Float("Temp Min", required=True) + temperature_max = fields.Float("Temp Max", required=True) temperature_uom = fields.Many2One( - 'product.uom', 'Temperature UOM', - domain=[ - ('category', '=', Id( - 'optical_equipment', "uom_cat_temperature"))], - depends={'itemperature_min'}) - moisture_min = fields.Float("Moisture Min") - moisture_max = fields.Float("Moisture Max") + "product.uom", + "Temperature UOM", required=True, + domain=[("category", "=", Id( + "optical_equipment", "uom_cat_temperature"))], + depends={"temperature_min"}, + ) + moisture_min = fields.Float("Moisture Min", required=True) + moisture_max = fields.Float("Moisture Max", required=True) moisture_uom = fields.Many2One( - 'product.uom', "Moisture UOM", + "product.uom", + "Moisture UOM", + required=True, domain=[ - ('category', '=', Id( - 'optical_equipment', 'uom_cat_relative_humedity'))], - depends={'moisture_min'}) - sale_quote_number = fields.Many2One('ir.sequence', "Sale Quote Number", - domain=[ - ('sequence_type', '=', Id( - 'sale', 'sequence_type_sale')) - ]) + ("category", "=", Id( + "optical_equipment", "uom_cat_relative_humedity")) + ], + depends={"moisture_min"}, + ) + technician_responsible = fields.Many2One( + "company.employee", "Technician Responsible", + required=True + ) + invima = fields.Char( + "Invima", states={"required": Eval("technician_responsible", True)} + ) + technician_signature = fields.Binary("Technician Signature", + required=True) diff --git a/contract.py b/contract.py index 02f0f97..679406f 100644 --- a/contract.py +++ b/contract.py @@ -1,19 +1,17 @@ from trytond.pool import Pool, PoolMeta -from trytond.model import ( - ModelSQL, ModelView, Workflow, fields) +from trytond.model import ModelSQL, ModelView, Workflow, fields from trytond.modules.company import CompanyReport from trytond.pyson import Eval, If, Bool -from trytond.modules.company.model import set_employee from trytond.exceptions import UserError from trytond.transaction import Transaction -from trytond.wizard import ( - Button, StateAction, StateTransition, StateView, Wizard) +from trytond.wizard import Button, StateAction, StateView, Wizard from trytond.modules.currency.fields import Monetary from trytond.modules.product import price_digits import datetime from datetime import timedelta, date +from trytond.i18n import gettext class Cron(metaclass=PoolMeta): @@ -22,9 +20,10 @@ class Cron(metaclass=PoolMeta): @classmethod def __setup__(cls): super().__setup__() - cls.method.selection.append( - ('optical_equipment.contract|contract_expiration', 'Contract Expiration'), - ) + cls.method.selection.append(( + 'optical_equipment.contract|contract_expiration', + 'Contract Expiration' + )) class Contract(Workflow, ModelSQL, ModelView): @@ -34,63 +33,112 @@ class Contract(Workflow, ModelSQL, ModelView): _order_name = 'number' company = fields.Many2One( - 'company.company', "Company", required=True, + 'company.company', + 'Company', + required=True, states={ 'readonly': (Eval('state') != 'draft') | Eval('party', True), - }, help="Make the subscription belong to the company.") + }, + help='Make the subscription belong to the company.', + ) number = fields.Char( - "Number", readonly=True, - help="The main identification of the subscription.") + 'Number', readonly=True, + help='The main identification of the subscription.' + ) reference = fields.Char( - "Reference", - help="The identification of an external origin.") - description = fields.Char("Description", - states={ - 'readonly': Eval('state') != 'draft', - }) + 'Reference', + help='The identification of an external origin.' + ) + description = fields.Char( + 'Description', + states={ + 'readonly': Eval('state') != 'draft', + }, + ) party = fields.Many2One( - 'party.party', "Party", required=True, + 'party.party', + 'Party', + required=True, states={ 'readonly': (Eval('state') != 'draft') | Eval('party', True), - }, help="The party who subscribes.") - equipment = fields.Many2One('optical_equipment.equipment', "Equipment") - contact = fields.Many2One('party.contact_mechanism', "Contact", required=True) - invoice_address = fields.Many2One('party.address', 'Invoice Address', - required=True, domain=[('party', '=', Eval('party'))], - states={ - 'readonly': (Eval('state') != 'draft') | Eval('party', True), - }) - start_date = fields.Date("Start Date", required=True,) - end_date = fields.Date("End Date", - domain=['OR', - ('end_date', '>=', If( - Bool(Eval('start_date')), - Eval('start_date', datetime.date.min), - datetime.date.min)), - ('end_date', '=', None), - ], - states={ - 'readonly': Eval('state') != 'draft', - }) + }, + help='The party who subscribes.', + ) + equipment = fields.Many2One('optical_equipment.equipment', 'Equipment') + contact = fields.Many2One( + 'party.contact_mechanism', 'Contact', required=True) + invoice_address = fields.Many2One( + 'party.address', + 'Invoice Address', + required=True, + domain=[('party', '=', Eval('party'))], + states={ + 'readonly': (Eval('state') != 'draft') | Eval('party', True), + }, + ) + start_date = fields.Date( + 'Start Date', + required=True, + ) + end_date = fields.Date( + 'End Date', + domain=[ + 'OR', + ( + 'end_date', + '>=', + If( + Bool(Eval('start_date')), + Eval('start_date', datetime.date.min), + datetime.date.min, + ), + ), + ('end_date', '=', None), + ], + states={ + 'readonly': Eval('state') != 'draft', + }, + ) - maintenance_services = fields.Many2Many('optical_equipment_maintenance.service-equipment.contract', - 'contract', 'maintenance_services', "Prorogues", - states={'readonly': Eval('state') != 'draft'}) + maintenance_services = fields.Many2Many( + 'optical_equipment_maintenance.service-equipment.contract', + 'contract', + 'maintenance_services', + 'Prorogues', + states={'readonly': Eval('state') != 'draft'}, + ) - current_equipments = fields.Many2Many('optical_equipment.contract-optical_equipment.equipment', - 'contract', 'equipment', "Current Equipments", - states={'readonly': Eval('state') != 'draft'}) - history_equipments = fields.One2Many('optical_equipment.equipment', 'contract', "Equipments", - states={'readonly': Eval('state') != 'draft'}) - price_contract = Monetary("Price Contract", digits=price_digits, currency='currency', required=True, - states={'readonly': Eval('state') != 'draft'}) - state = fields.Selection([ - ('draft', "Draft"), - ('running', "Running"), - ('closed', "Closed"), - ('cancelled', "Cancelled"), - ], "State", readonly=True, required=False, sort=False, - help="The current state of the subscription.") + current_equipments = fields.Many2Many( + 'optical_equipment.contract-optical_equipment.equipment', + 'contract', + 'equipment', + 'Current Equipments', + states={'readonly': Eval('state') != 'draft'}, + ) + history_equipments = fields.One2Many( + 'optical_equipment.equipment', + 'contract', + 'Equipments', + states={'readonly': Eval('state') != 'draft'}, + ) + currency = fields.Many2One('currency.currency', 'Currency', required=True) + price_contract = Monetary( + 'Price Contract', + digits=price_digits, + required=True, + states={'readonly': Eval('state') != 'draft'}, + ) + state = fields.Selection( + [('draft', 'Draft'), + ('running', 'Running'), + ('closed', 'Closed'), + ('cancelled', 'Cancelled')], + 'State', + readonly=True, + required=False, + sort=False, + help='The current state of the subscription.', + ) @classmethod def __setup__(cls): @@ -99,19 +147,33 @@ class Contract(Workflow, ModelSQL, ModelView): ('number', 'DESC NULLS FIRST'), ('id', 'DESC'), ] - cls._transitions = ({ + cls._transitions = { ('draft', 'running'), ('running', 'draft'), ('running', 'closed'), ('running', 'cancelled'), - ('cancelled', 'draft') - }) - cls._buttons.update({ - 'draft': {'invisible': Eval('state').in_(['draft', 'closed'])}, - 'running': {'invisible': Eval('state').in_(['cancelled', 'running'])}, - 'closed': {'invisible': Eval('state').in_(['draft', 'cancelled'])}, - 'cancelled': {'invisible': Eval('state').in_(['draft', 'cancelled'])} - }) + ('cancelled', 'draft'), + } + cls._buttons.update( + { + 'draft': { + 'invisible': + Eval('state').in_(['draft', 'closed']) + }, + 'running': { + 'invisible': + Eval('state').in_(['cancelled', 'running']) + }, + 'closed': { + 'invisible': + Eval('state').in_(['draft', 'cancelled']) + }, + 'cancelled': { + 'invisible': + Eval('state').in_(['draft', 'cancelled']) + }, + } + ) @staticmethod def default_company(): @@ -135,15 +197,14 @@ class Contract(Workflow, ModelSQL, ModelView): except UserError: raise UserError(str('Validation Error')) else: - raise UserError(gettext('optical_equipment.msg_not_sequence_equipment')) + raise UserError( + gettext('optical_equipment.msg_not_sequence_equipment')) @classmethod def contract_expiration(cls): - pool = Pool() - Contracts = pool.get('optical_equipment.contract') - - contracts_to_expire = cls.search([('state', '=', 'running'), - ('end_date', '<=', date.today())]) + contracts_to_expire = cls.search( + [('state', '=', 'running'), ('end_date', '<=', date.today())] + ) if contracts_to_expire != []: for contract in contracts_to_expire: @@ -155,7 +216,7 @@ class Contract(Workflow, ModelSQL, ModelView): def draft(cls, contracts): contract = contracts[0] for equipment in contract.current_equipments: - equipment.state = "uncontrated" + equipment.state = 'uncontrated' equipment.contract_history += (contract.id,) equipment.save() contract.save() @@ -166,7 +227,7 @@ class Contract(Workflow, ModelSQL, ModelView): def closed(cls, contracts): contract = contracts[0] for equipment in contract.current_equipments: - equipment.state = "uncontrated" + equipment.state = 'uncontrated' equipment.save() @classmethod @@ -175,7 +236,7 @@ class Contract(Workflow, ModelSQL, ModelView): def running(cls, contracts): contract = contracts[0] for equipment in contract.current_equipments: - equipment.state = "contrated" + equipment.state = 'contrated' equipment.contract_history += (contract.id,) equipment.save() @@ -189,7 +250,7 @@ class Contract(Workflow, ModelSQL, ModelView): def cancelled(cls, contracts): contract = contracts[0] for equipment in contract.current_equipments: - equipment.state = "uncontrated" + equipment.state = 'uncontrated' equipment.save() @@ -198,16 +259,24 @@ class ContractMaintenanceServices(ModelSQL): __name__ = 'optical_equipment_maintenance.service-equipment.contract' maintenance_services = fields.Many2One( - 'optical_equipment_maintenance.service', "Maintenance Service", ) - contract = fields.Many2One('optical_equipment.contract', "Contract") + 'optical_equipment_maintenance.service', + 'Maintenance Service', + ) + contract = fields.Many2One('optical_equipment.contract', 'Contract') class ContractEquipment(ModelSQL): 'Optical Equipment - Contract' __name__ = 'optical_equipment.contract-optical_equipment.equipment' - equipment = fields.Many2One('optical_equipment.equipment', 'Equipment', ) - contract = fields.Many2One('optical_equipment.contract', 'Contract', ) + equipment = fields.Many2One( + 'optical_equipment.equipment', + 'Equipment', + ) + contract = fields.Many2One( + 'optical_equipment.contract', + 'Contract', + ) class ContractReport(CompanyReport): @@ -234,33 +303,52 @@ class CreateContractInitial(ModelView, ModelSQL): currency = fields.Many2One('currency.currency', 'Currency', required=True) company = fields.Many2One( - 'company.company', "Company", readonly=True, required=True, - states={ - 'readonly': (Eval('state') != 'draft') | Eval('party', True), - }, help="Make the subscription belong to the company.") + 'company.company', + 'Company', + readonly=True, + required=True, + help='Make the subscription belong to the company.', + ) party = fields.Many2One( - 'party.party', "Party", required=True, - help="The party who subscribes.") - invoice_address = fields.Many2One('party.address', 'Invoice Address', - required=True, domain=[('party', '=', Eval('party'))]) - payment_term = fields.Many2One('account.invoice.payment_term', - 'Payment Term') + 'party.party', 'Party', required=True, help='The party who subscribes.' + ) + invoice_address = fields.Many2One( + 'party.address', + 'Invoice Address', + required=True, + domain=[('party', '=', Eval('party'))], + ) + payment_term = fields.Many2One( + 'account.invoice.payment_term', 'Payment Term') contact = fields.Many2One( - 'party.contact_mechanism', "Contact", required=True, + 'party.contact_mechanism', + 'Contact', + required=True, domain=[('party', '=', Eval('party'))], context={ 'company': Eval('company', -1), - }) - start_date = fields.Date("Start Date", required=True) - end_date = fields.Date("End Date", - domain=['OR', - ('end_date', '>=', If( - Bool(Eval('start_date')), - Eval('start_date', datetime.date.min), - datetime.date.min)), - ('end_date', '=', None), - ]) - unit_price = Monetary("Unit Price", digits=price_digits, currency='currency', required=True) + }, + ) + start_date = fields.Date('Start Date', required=True) + end_date = fields.Date( + 'End Date', + domain=[ + 'OR', + ( + 'end_date', + '>=', + If( + Bool(Eval('start_date')), + Eval('start_date', datetime.date.min), + datetime.date.min, + ), + ), + ('end_date', '=', None), + ], + ) + unit_price = Monetary( + 'Unit Price', digits=price_digits, currency='currency', required=True + ) @staticmethod def default_company(): @@ -285,7 +373,7 @@ class CreateContractInitial(ModelView, ModelSQL): Date = pool.get('ir.date') if self.party: self.invoice_address = self.party.address_get(type='invoice') - if self.party.customer_type == "ips": + if self.party.customer_type == 'ips': self.end_date = Date.today() + timedelta(days=182) else: self.end_date = Date.today() + timedelta(days=365) @@ -294,21 +382,27 @@ class CreateContractInitial(ModelView, ModelSQL): class CreateContract(Wizard): __name__ = 'optical_equipment.maintenance.contract' - start = StateView('optical_equipment_create.contract', - 'optical_equipment.create_contract_view_form', [ - Button('Cancel', 'end', 'tryton-cancel'), - Button('Create', 'create_contract', 'tryton-ok', default=True), - ]) + start = StateView( + 'optical_equipment_create.contract', + 'optical_equipment.create_contract_view_form', + [ + Button('Cancel', 'end', 'tryton-cancel'), + Button('Create', 'create_contract', 'tryton-ok', default=True), + ], + ) create_contract = StateAction('optical_equipment.act_contract_form') def default_start(self, fields): if self.record: - default = {'party': self.record.propietary.id, - 'invoice_address': self.record.propietary_address.id, - 'unit_price': (self.record.sale_origin.amount - if self.record.sale_origin.__name__ == "sale.line" - else self.record.sale_origin.total_amount), - } + default = { + 'party': self.record.propietary.id, + 'invoice_address': self.record.propietary_address.id, + 'unit_price': ( + self.record.sale_origin.amount + if self.record.sale_origin.__name__ == 'sale.line' + else self.record.sale_origin.total_amount + ), + } return default @property @@ -319,7 +413,7 @@ class CreateContract(Wizard): start_date=self.start.start_date, end_date=self.start.end_date, invoice_address=self.start.invoice_address, - unit_price=self.start.unit_price + unit_price=self.start.unit_price, ) def do_create_contract(self, action): @@ -346,15 +440,16 @@ class CreateContract(Wizard): contract.state = 'draft' contract.price_contract = dates['unit_price'] else: - contract = Contract(party=dates['party'], - invoice_address=dates['invoice_address'], - contact=dates['contact'], - start_date=dates['start_date'], - end_date=dates['end_date'], - maintenance_services=prorogues, - current_equipments=equipments, - state='draft', - price_contract=dates['unit_price'] - ) + contract = Contract( + party=dates['party'], + invoice_address=dates['invoice_address'], + contact=dates['contact'], + start_date=dates['start_date'], + end_date=dates['end_date'], + maintenance_services=prorogues, + current_equipments=equipments, + state='draft', + price_contract=dates['unit_price'], + ) contract.save() diff --git a/equipment.py b/equipment.py index bd84d95..be87218 100644 --- a/equipment.py +++ b/equipment.py @@ -1,23 +1,19 @@ # This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. -import datetime -from collections import defaultdict from trytond.pool import Pool -from trytond.model import ( - DeactivableMixin, Workflow, ModelSQL, ModelView, Unique, fields) -from trytond.pyson import Eval, If +from trytond.model import \ + DeactivableMixin, Workflow, ModelSQL, ModelView, fields +from trytond.pyson import Eval from trytond.transaction import Transaction from trytond.i18n import gettext from trytond.exceptions import UserError from trytond.model.exceptions import AccessError -from trytond.wizard import ( - Button, StateAction, StateTransition, StateView, Wizard) +from trytond.wizard import Button, StateAction, StateView, Wizard from trytond.modules.company import CompanyReport -_MAINTENANCE_FREQUENCY = [("none", ''), - ("6", 'Seis Meses'), - ("12", 'Doce Meses')] +_MAINTENANCE_FREQUENCY = [ + ('none', ''), ('6', 'Seis Meses'), ('12', 'Doce Meses')] class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): @@ -30,104 +26,162 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): 'readonly': Eval('state') != 'draft', } + _states_product = {'readonly': Eval('product', True)} + _depends = ['state'] _states_serial = { 'readonly': Eval('state') != 'draft', } - code = fields.Char( - "Code", states={'readonly': True}) + code = fields.Char('Code', states={'readonly': True}) - state = fields.Selection([('draft', "Draft"), - ('registred', "Registred"), - ('uncontrated', "UnContrated"), - ('contrated', "Contrated") - ], "State", - required=True, readonly=True, sort=False) + state = fields.Selection( + [ + ('draft', 'Draft'), + ('registred', 'Registred'), + ('uncontrated', 'UnContrated'), + ('contrated', 'Contrated'), + ], + 'State', + required=True, + readonly=True, + sort=False, + ) - company = fields.Many2One('company.company', "Company", readonly=True) - contract = fields.Many2One('optical_equipment.contract', "Contract", ondelete='CASCADE') - location = fields.Many2One('stock.location', "Location", - states=_states,) - propietary = fields.Many2One('party.party', "Propietary", required=True, - states=_states,) - propietary_address = fields.Many2One('party.address', "Propietary Address", required=True, - domain=[('party', '=', Eval('propietary'))], - states=_states - ) + company = fields.Many2One('company.company', 'Company', readonly=True) + contract = fields.Many2One( + 'optical_equipment.contract', 'Contract', ondelete='CASCADE' + ) + location = fields.Many2One( + 'stock.location', + 'Location', + states=_states, + ) + propietary = fields.Many2One( + 'party.party', + 'Propietary', + required=True, + states=_states, + ) + propietary_address = fields.Many2One( + 'party.address', + 'Propietary Address', + required=True, + domain=[('party', '=', Eval('propietary'))], + states=_states, + ) propietarys = fields.Many2Many( 'optical_equipment.equipment-party.party', - 'equipment', - 'party', - "Propietarys") - product = fields.Many2One('product.product', "Product", - domain=[('equipment', '=', True)], - states=_states, - depends=['equipment'] - ) - refurbish = fields.Boolean("Refurbish", - states=_states,) - equipment_type = fields.Char('type', states={'readonly': If('product', True)}) - risk = fields.Char('Type risk', states={'readonly': If('product', True)}) - use = fields.Char('Use', states={'readonly': If('product', True)}) - biomedical_class = fields.Char('Biomedical Class', states={'readonly': If('product', True)}) - main_tecnology = fields.Char('Main tecnology', states={'readonly': If('product', True)}) - calibration = fields.Boolean("Apply calibration", states={'readonly': If('product', True)}) - mark_category = fields.Many2One('product.category', 'Mark', required=True, - domain=[('parent', '=', None), - ('accounting', '=', False)], - states=_states - ) - model_category = fields.Many2One('product.category', "Model", required=True, - domain=[('parent', '=', Eval('mark_category')), - ('accounting', '=', False)], - states=_states,) - reference_category = fields.Many2One('product.category', "Reference", - domain=[('parent', '=', Eval('model_category'))], - states=_states, - depends=['model_category'] - ) - origin_country = fields.Many2One('country.country', "Origin Country", - states=_states,) + 'equipment', 'party', 'Propietarys' + ) + product = fields.Many2One( + 'product.product', + 'Product', + domain=[('equipment', '=', True)], + states=_states, + ) + refurbish = fields.Boolean( + 'Refurbish', + states=_states, + ) + equipment_type = fields.Char('type', states=_states_product) + risk = fields.Char('Type risk', states=_states_product) + use = fields.Char('Use', states=_states_product) + biomedical_class = fields.Char('Biomedical Class', states=_states_product) + main_tecnology = fields.Char('Main tecnology', states=_states_product) + calibration = fields.Boolean('Apply calibration', states=_states_product) + mark_category = fields.Many2One( + 'product.category', + 'Mark', + required=True, + domain=[('parent', '=', None), ('accounting', '=', False)], + states=_states, + ) + model_category = fields.Many2One( + 'product.category', + 'Model', + required=True, + domain=[('parent', '=', Eval('mark_category')), + ('accounting', '=', False)], + states=_states, + ) + reference_category = fields.Many2One( + 'product.category', + 'Reference', + domain=[('parent', '=', Eval('model_category'))], + states=_states, + depends=['model_category'], + ) + origin_country = fields.Many2One( + 'country.country', + 'Origin Country', + states=_states, + ) - software_version = fields.Char("Software version", size=None, - states=_states,) - useful_life = fields.Integer("Useful life", - states=_states,) - warranty = fields.Integer("Warranty", - states=_states,) - serial = fields.Char("Serial", size=None, - states=_states_serial, - depends=_depends) - health_register = fields.Char("Health Register", size=None, - states=_states,) + software_version = fields.Char( + 'Software version', + size=None, + states=_states, + ) + useful_life = fields.Integer( + 'Useful life', + states=_states, + ) + warranty = fields.Integer( + 'Warranty', + states=_states, + ) + serial = fields.Char('Serial', size=None, + states=_states_serial, depends=_depends) + health_register = fields.Char( + 'Health Register', + size=None, + states=_states, + ) # contract_history = # fields.Many2Many('optical_equipment.contract-optical_equipment.equipment', - # 'equipment','contract', "Contracts", states={'readonly': True}) + # 'equipment','contract', 'Contracts', states={'readonly': True}) contract_history = fields.Function( - fields.One2Many( - 'optical_equipment.contract', - 'equipment', - "Contracts"), - 'get_contracts_of_equipment') + fields.One2Many('optical_equipment.contract', + 'equipment', 'Contracts'), + 'get_contracts_of_equipment', + ) maintenance_history = fields.Function( - fields.Many2Many('optical_equipment.maintenance-optical_equipment.equipment', - 'equipment', 'maintenance', "Maintenances"), 'get_maintenances_of_equipment') - software_version = fields.Char("Software version", size=None, - states=_states,) + fields.Many2Many( + 'optical_equipment.maintenance-optical_equipment.equipment', + 'equipment', + 'maintenance', + 'Maintenances', + ), + 'get_maintenances_of_equipment', + ) + software_version = fields.Char( + 'Software version', + size=None, + states=_states, + ) - maintenance_frequency = fields.Selection(_MAINTENANCE_FREQUENCY, "Maintenance Frequency", - depends=['propietary']) - purchase_origin = fields.Reference("Purchase Origin", selection='get_origin', - states={'readonly': True}) - sale_destination = fields.Reference("Sale Destination", selection='get_destination', - states={'readonly': True}) - shipment_destination = fields.Reference("Stock Move", selection='get_shipment', - states={'readonly': True}) - rec_name = fields.Function(fields.Char("rec_name"), 'get_rec_name') + maintenance_frequency = fields.Selection( + _MAINTENANCE_FREQUENCY, 'Maintenance Frequency', + depends=['propietary'] + ) + purchase_origin = fields.Reference( + 'Purchase Origin', + selection='get_origin', states={'readonly': True} + ) + sale_destination = fields.Reference( + 'Sale Destination', + selection='get_destination', states={'readonly': True} + ) + shipment_destination = fields.Reference( + 'Stock Move', selection='get_shipment', states={'readonly': True} + ) + rec_name = fields.Function(fields.Char('rec_name'), 'get_rec_name') - technician_responsible = fields.Function(fields.Char('Technician Responsible'), 'get_technical') + technician_responsible = fields.Function( + fields.Char('Technician Responsible'), 'get_technical' + ) invima = fields.Function(fields.Char('Invima'), 'get_invima') del _states_serial, _states, _depends @@ -148,13 +202,14 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): if config.technician_responsible.invima: return config.technician_responsible.invima - @ fields.depends('product', 'serial', 'code') + @fields.depends('product', 'serial', 'code') def get_rec_name(self, name): - name = str(self.product.name) + '@' + str(self.serial) + '/' + str(self.code) + name = str(self.product.name) + '@' + \ + str(self.serial) + '/' + str(self.code) return name - @ staticmethod + @staticmethod def _get_shipment(): 'Return list of Model names for shipment Reference' return [ @@ -165,7 +220,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): 'stock.shipment.internal', ] - @ classmethod + @classmethod def get_shipment(cls): IrModel = Pool().get('ir.model') get_name = IrModel.get_name @@ -173,7 +228,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): return [(None, '')] + [(m, get_name(m)) for m in models] - @ classmethod + @classmethod def _get_origin(cls): 'Return list of Model names for origin Reference' pool = Pool() @@ -181,7 +236,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): return [Purchase.__name__] - @ classmethod + @classmethod def get_origin(cls): Model = Pool().get('ir.model') get_name = Model.get_name @@ -189,7 +244,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): return [(None, '')] + [(m, get_name(m)) for m in models] - @ classmethod + @classmethod def _get_destination(cls): 'Return list of Model names for origin Reference' pool = Pool() @@ -197,7 +252,7 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): return [Sale.__name__] - @ classmethod + @classmethod def get_destination(cls): Model = Pool().get('ir.model') get_name = Model.get_name @@ -205,23 +260,27 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): return [(None, '')] + [(m, get_name(m)) for m in models] - @ classmethod + @classmethod def __setup__(cls): super(OpticalEquipment, cls).__setup__() - cls._transitions = ({ + cls._transitions = { ('draft', 'registred'), ('registred', 'draft'), ('registred', 'uncontrated'), ('uncontrated', 'contrated'), - }) - cls._buttons.update({ - 'draft': { - 'invisible': Eval('state') != 'registred'}, - 'registred': { - 'invisible': Eval('state').in_(['registred', 'uncontrated', 'contrated'])}} + } + cls._buttons.update( + { + 'draft': {'invisible': Eval('state') != 'registred'}, + 'registred': { + 'invisible': Eval('state').in_( + ['registred', 'uncontrated', 'contrated'] + ) + }, + } ) - @ classmethod + @classmethod def set_code(cls, equipments): pool = Pool() Config = pool.get('optical_equipment.configuration') @@ -236,7 +295,8 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): except UserError: raise UserError(str('Validation Error')) else: - raise UserError(gettext('optical_equipment.msg_not_sequence_equipment')) + raise UserError( + gettext('optical_equipment.msg_not_sequence_equipment')) def get_contracts_of_equipment(self, records): pool = Pool() @@ -244,7 +304,9 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): contractsEquipment = set() contractsEquipment = ContractsEquipment.search( - [('party', '=', self.propietary), ('history_equipments', 'in', [self.id])]) + [('party', '=', self.propietary), + ('history_equipments', 'in', [self.id])] + ) contracts = [] for key in contractsEquipment: @@ -257,7 +319,9 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): MaintenancesEquipment = pool.get('optical_equipment.maintenance') maintenancesEquipment = set() - maintenancesEquipment = MaintenancesEquipment.search(['equipment', '=', self.id]) + maintenancesEquipment = MaintenancesEquipment.search( + ['equipment', '=', self.id] + ) maintenances = [] for key in maintenancesEquipment: @@ -265,27 +329,34 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): return maintenances - @ classmethod + def get_technician_signature(self): + pool = Pool() + ConfigurationEquipment = pool.get('optical_equipment.configuration') + config = ConfigurationEquipment(1) + if config.technician_signature: + return config.technician_signature + + @classmethod def default_state(cls): return 'draft' - @ staticmethod + @staticmethod def default_company(): return Transaction().context.get('company') - @ fields.depends('propietary', 'maintenance_frequency') + @fields.depends('propietary', 'maintenance_frequency') def on_change_propietary(self): if self.propietary: if self.propietary.customer_type == 'ips': - self.maintenance_frequency = "6" + self.maintenance_frequency = '6' else: - self.maintenance_frequency = "12" + self.maintenance_frequency = '12' else: - self.maintenance_frequency = "none" + self.maintenance_frequency = 'none' - @ fields.depends('product', 'equipment_type', 'use', - 'biomedical_class', 'calibration', - 'mark_category', 'model_category') + @fields.depends('product', 'equipment_type', + 'use', 'biomedical_class', 'calibration', + 'mark_category', 'model_category') def on_change_product(self): if self.product: self.equipment_type = self.product.equipment_type @@ -295,9 +366,13 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): self.mark_category = self.product.mark_category self.model_category = self.product.model_category self.reference_category = self.product.reference_category - self.useful_life = self.product.useful_life if self.product.useful_life else int(0) + self.useful_life = ( + self.product.useful_life if self.product.useful_life else int( + 0) + ) self.calibration = True if self.product.calibration else False - self.warranty = self.product.warranty if self.product.warranty else int(0) + self.warranty =\ + self.product.warranty if self.product.warranty else int(0) self.risk = self.product.risk self.origin_country = self.product.origin_country self.use = self.product.use @@ -322,30 +397,28 @@ class OpticalEquipment(DeactivableMixin, Workflow, ModelSQL, ModelView): self.health_register = None self.software_version = None - @ classmethod + @classmethod def delete(cls, equipments): for equipment in equipments: if equipment.purchase_origin: - raise AccessError( - gettext('estos equipos no se pueden borrar')) + raise AccessError(gettext('estos equipos no se pueden borrar')) elif equipment.state != 'draft' and equipment.serial is not None: - raise AccessError( - gettext('estos equipos no se pueden borrar')) + raise AccessError(gettext('estos equipos no se pueden borrar')) super(OpticalEquipment, cls).delete(equipments) - @ classmethod - @ ModelView.button - @ Workflow.transition('draft') + @classmethod + @ModelView.button + @Workflow.transition('draft') def draft(cls, equipments): pass - @ classmethod - @ ModelView.button - @ Workflow.transition('registred') + @classmethod + @ModelView.button + @Workflow.transition('registred') def registred(cls, equipments): for i in equipments: if i.serial is None: - raise UserError(str("El Equipo no cuenta con un Serial")) + raise UserError(str('El Equipo no cuenta con un Serial')) else: cls.set_code(equipments) @@ -354,43 +427,72 @@ class EquipmentMaintenance(ModelSQL, ModelView): 'Optical Equipment - Equipment - Maintenance' __name__ = 'optical_equipment.maintenance-optical_equipment.equipment' - equipment = fields.Many2One('optical_equipment.equipment', 'Equipment', ) - maintenance = fields.Many2One('optical_equipment.maintenance', 'Maintenances', ) + equipment = fields.Many2One( + 'optical_equipment.equipment', + 'Equipment', + ) + maintenance = fields.Many2One( + 'optical_equipment.maintenance', + 'Maintenances', + ) class EquipmentContract(ModelSQL, ModelView): 'Optical Equipment - Contracs Equipment' __name__ = 'optical_equipment.contract-optical_equipment.equipment' - equipment = fields.Many2One('optical_equipment.equipment', 'Equipment', ) - contract = fields.Many2One('optical_equipment.contract', 'Contract', ) + equipment = fields.Many2One( + 'optical_equipment.equipment', + 'Equipment', + ) + contract = fields.Many2One( + 'optical_equipment.contract', + 'Contract', + ) class EquipmentParty(ModelSQL, ModelView): 'Optical Equipment - Party' __name__ = 'optical_equipment.equipment-party.party' - equipment = fields.Many2One('optical_equipment.equipment', "Equipment", ) - party = fields.Many2One('party.party', "Party", ) + equipment = fields.Many2One( + 'optical_equipment.equipment', + 'Equipment', + ) + party = fields.Many2One( + 'party.party', + 'Party', + ) class ChangePropietary(ModelView): 'Change of Propietary Equipment' __name__ = 'optical_equipment.change_propietary.form' - old_propietary = fields.Many2One('party.party', 'Old Propietary', - states={'required': True}) - equipments = fields.Many2Many('optical_equipment.equipment', None, None, "Equipments", - domain=[('propietary', '=', Eval('old_propietary'))], - depends=['old_propietary']) - new_propietary = fields.Many2One('party.party', "New Propietary", - states={'required': True}) - new_address = fields.Many2One('party.address', "New Address", required=True, - domain=[('party', '=', Eval('new_propietary'))], - states={'required': True}) - change_date = fields.Date("Change Date", readonly=True) + old_propietary = fields.Many2One( + 'party.party', 'Old Propietary', states={'required': True} + ) + equipments = fields.Many2Many( + 'optical_equipment.equipment', + None, + None, + 'Equipments', + domain=[('propietary', '=', Eval('old_propietary'))], + depends=['old_propietary'], + ) + new_propietary = fields.Many2One( + 'party.party', 'New Propietary', states={'required': True} + ) + new_address = fields.Many2One( + 'party.address', + 'New Address', + required=True, + domain=[('party', '=', Eval('new_propietary'))], + states={'required': True}, + ) + change_date = fields.Date('Change Date', readonly=True) - @ classmethod + @classmethod def default_change_date(cls): pool = Pool() Date = pool.get('ir.date') @@ -401,15 +503,18 @@ class NewPropietary(Wizard): 'Change Propietary' __name__ = 'optical_equipment.change_propietary' - start = StateView('optical_equipment.change_propietary.form', - 'optical_equipment.change_propietary_view_form', [ - Button('Cancel', 'end', 'tryton-cancel'), - Button('Create', 'change_propietary', 'tryton-ok', default=True), - ]) - change_propietary = StateAction('optical_equipment.act_optical_equipment_form') + start = StateView( + 'optical_equipment.change_propietary.form', + 'optical_equipment.change_propietary_view_form', + [ + Button('Cancel', 'end', 'tryton-cancel'), + Button('Create', 'change_propietary', 'tryton-ok', default=True), + ], + ) + change_propietary = StateAction( + 'optical_equipment.act_optical_equipment_form') def do_change_propietary(self, action): - old_propietary = self.start.old_propietary equipments = self.start.equipments new_propietary = self.start.new_propietary new_address = self.start.new_address @@ -418,7 +523,9 @@ class NewPropietary(Wizard): equipment.propietarys += (equipment.propietary,) equipment.propietary = new_propietary equipment.propietary_address = new_address - equipment.maintenance_frequency = "6" if new_propietary.customer_type == 'ips' else "12" + equipment.maintenance_frequency = ( + '6' if new_propietary.customer_type == 'ips' else '12' + ) equipment.save() @@ -427,21 +534,22 @@ class ChangeEquipment(ModelSQL): __name__ = 'optical_equipment.equipment-change_propietary.form' maintenance_service = fields.Many2One( - 'optical_equipment_maintenance.service', - "Maintenance Service") + 'optical_equipment_maintenance.service', 'Maintenance Service' + ) equipment = fields.Many2One('optical_equipment.equipment', 'Equipment') - change = fields.Many2One('optical_equipment.change_propietary.form', 'Change') + change = fields.Many2One( + 'optical_equipment.change_propietary.form', 'Change') class EquipmentReport(CompanyReport): __name__ = 'optical_equipment.equipment' - @ classmethod + @classmethod def execute(cls, ids, data): with Transaction().set_context(address_with_party=True): return super(EquipmentReport, cls).execute(ids, data) - @ classmethod + @classmethod def get_context(cls, records, header, data): pool = Pool() Date = pool.get('ir.date') diff --git a/locale/es.po b/locale/es.po index 0f8add1..30ef2a7 100644 --- a/locale/es.po +++ b/locale/es.po @@ -166,6 +166,10 @@ msgctxt "field:product.template,k_pattern_list:" msgid "List of patterns K" msgstr "Lista de patrones K" +msgctxt "field:product.template,preventive_activities:" +msgid "Preventive Activities" +msgstr "Actividades Preventivas" + msgctxt "field:optical_equipment.configuration,equipment_sequence:" msgid "Equipment Sequence" msgstr "Secuencia de Equipos" @@ -670,6 +674,14 @@ msgctxt "field:optical_equipment_maintenance.service,code:" msgid "Code" msgstr "Código" +msgctxt "field:optical_equipment_maintenance.service,technician_responsible:" +msgid "Technician Responsible" +msgstr "Técnico Reponsable" + +msgctxt "field:optical_equipment_maintenance.service,invima:" +msgid "Invima" +msgstr "Invima" + msgctxt "selection:optical_equipment.maintenance,maintenance_type:" msgid "Initial" msgstr "Inicial" diff --git a/maintenance.py b/maintenance.py index 0493304..adb0ebf 100644 --- a/maintenance.py +++ b/maintenance.py @@ -1,26 +1,26 @@ # This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. from trytond.model import ( - Workflow, ModelSQL, ModelView, Unique, fields, sequence_ordered) -from trytond.wizard import ( - Button, StateAction, StateTransition, StateView, Wizard) + Workflow, + ModelSQL, + ModelView, + fields, +) +from trytond.wizard import Button, StateAction, StateView, Wizard from trytond.modules.company import CompanyReport from trytond.transaction import Transaction -from trytond.pyson import Bool, Eval, If, Id, Equal +from trytond.pyson import Bool, Eval, If, Id from trytond.pool import Pool -from trytond.modules.currency.fields import Monetary -from trytond.modules.product import price_digits -import datetime from datetime import timedelta -# from scipy.stats import t +from scipy.stats import t import matplotlib.pyplot as plt -import numpy as np import math as mt from io import BytesIO from trytond.exceptions import UserError +from trytond.i18n import gettext _digits = (16, 2) @@ -31,77 +31,112 @@ class MaintenanceService(Workflow, ModelSQL, ModelView): _rec_name = 'rec_name' _order_name = 'code' - _states = {'readonly': If(Eval('state') != 'draft', True)} + _states = {'readonly': (Eval('state') != 'draft')} - code = fields.Char("Code", readonly=True, ) - reference = fields.Char("Reference", - help="The identification of an external origin.") - description = fields.Char("Description", states=_states) - sale_date = fields.Char("Sale Date") + code = fields.Char( + 'Code', + readonly=True, + ) + reference = fields.Char( + 'Reference', help='The identification of an external origin.' + ) + description = fields.Char('Description', states=_states) + sale_date = fields.Char('Sale Date') contract_origin = fields.Reference( - "Contract Base", selection='get_origin_contract', - states={'readonly': If(Eval('state') == 'finished', True)}) + 'Contract Base', + selection='get_origin_contract', + ) sale_origin = fields.Reference( - "Sale Origin", selection='get_origin', - states={'readonly': True}) - company = fields.Many2One('company.company', "Company", readonly=True) - maintenance_type = fields.Selection([('initial', 'Initial'), - ('preventive', 'Preventive'), - ('corrective', 'Corrective') - ], "Maintenance Type", states=_states) - propietary = fields.Many2One('party.party', "Propietary", required=True, - states=_states) + 'Sale Origin', selection='get_origin', states={'readonly': True} + ) + company = fields.Many2One('company.company', 'Company', readonly=True) + maintenance_type = fields.Selection( + [ + ('initial', 'Initial'), + ('preventive', 'Preventive'), + ('corrective', 'Corrective'), + ], + 'Maintenance Type', + states=_states, + ) + propietary = fields.Many2One( + 'party.party', 'Propietary', required=True, states=_states + ) propietary_address = fields.Many2One( - 'party.address', "Propietary Address", required=True, + 'party.address', + 'Propietary Address', + required=True, domain=[('party', '=', Eval('propietary'))], - states=_states) + states=_states, + ) lines = fields.One2Many( - 'optical_equipment.maintenance', 'service_maintenance', "Lines") - estimated_agended = fields.DateTime("Date Maintenance", readonly=True) + 'optical_equipment.maintenance', 'service_maintenance', 'Lines' + ) + estimated_agended = fields.DateTime('Date Maintenance', readonly=True) current_agended = fields.Many2One( - 'optical_equipment_maintenance.diary', "Current Agended", - states=_states) + 'optical_equipment_maintenance.diary', 'Current Agended', + states=_states + ) history_agended = fields.Many2Many( - 'optical_equipment_maintenance.service-maintenance.diary', 'maintenance_service', 'agended', "History Agended", readonly=True) - state_agended = fields.Selection([('no_agenda', "No agenda"), - ('agended', "Agended"), - ('in_progress', "In progress"), - ('finish', "Finish"), - ('failed', "Failed")], "State Agenda", readonly=True) - technical = fields.Many2One('company.employee', "Technical", readonly=True) - state = fields.Selection([('draft', "Draft"), - ('agended', "Agended"), - ('in_progress', "In Progress"), - ('failed', "Failed"), - ('finished', "Finished") - ], "State", required=True, readonly=True, sort=True) + 'optical_equipment_maintenance.service-maintenance.diary', + 'maintenance_service', + 'agended', + 'History Agended', + readonly=True, + ) + state_agended = fields.Selection( + [ + ('no_agenda', 'No agenda'), + ('agended', 'Agended'), + ('in_progress', 'In progress'), + ('finish', 'Finish'), + ('failed', 'Failed'), + ], + 'State Agenda', + readonly=True, + ) + technical = fields.Many2One('company.employee', 'Technical', readonly=True) + state = fields.Selection( + [ + ('draft', 'Draft'), + ('agended', 'Agended'), + ('in_progress', 'In Progress'), + ('failed', 'Failed'), + ('finished', 'Finished'), + ], + 'State', + required=True, + readonly=True, + sort=True, + ) rec_name = fields.Function(fields.Char('rec_name'), 'get_rec_name') - temperature_min = fields.Float("Temp Min", states={ - 'readonly': If(Eval('state') == 'finished', True), - 'required': If(Eval('state') == 'in_progress', True)}) - temperature_max = fields.Float("Temp Max", states={ - 'readonly': If(Eval('state') == 'finished', True), - 'required': If(Eval('state') == 'in_progress', True)}) - temperature_uom = fields.Many2One('product.uom', 'Temperature UOM', - domain=[ - ('category', '=', Id( - 'optical_equipment', "uom_cat_temperature"))], - states={'invisible': If(Eval('temperature_min') is None, True), - 'readonly': (Eval('state') == 'finished'), - 'required': If(Eval('state') == 'in_progress', True)},) - moisture_min = fields.Float("Moisture Min", states={ - 'readonly': If(Eval('state') == 'finished', True), - 'required': If(Eval('state') == 'in_progress', True)}) - moisture_max = fields.Float("Moisture Max", states={ - 'readonly': If(Eval('state') == 'finished', True), - 'required': If(Eval('state') == 'in_progress', True)}) - moisture_uom = fields.Many2One('product.uom', "Moisture UOM", - domain=[ - ('category', '=', Id( - 'optical_equipment', 'uom_cat_relative_humedity'))], - states={'invisible': If(Eval('moisture_min') is None, True), - 'readonly': Eval('state') == 'finished', - 'required': If(Eval('state') == 'in_progress', True)},) + temperature_min = fields.Float( + 'Temp Min' + ) + temperature_max = fields.Float( + 'Temp Max' + ) + temperature_uom = fields.Many2One( + 'product.uom', + 'Temperature UOM', + domain=[ + ('category', '=', Id('optical_equipment', 'uom_cat_temperature')) + ], + ) + moisture_min = fields.Float('Moisture Min') + moisture_max = fields.Float('Moisture Max') + moisture_uom = fields.Many2One( + 'product.uom', + 'Moisture UOM', + domain=[ + ('category', '=', + Id('optical_equipment', 'uom_cat_relative_humedity')) + ], + ) + + technician_responsible = fields.Char('Technician Responsible') + invima = fields.Char('Invima') + technician_signature = fields.Binary('Technician Signature') @fields.depends('maintenance_type', 'code') def get_rec_name(self, name): @@ -115,20 +150,32 @@ class MaintenanceService(Workflow, ModelSQL, ModelView): @classmethod def __setup__(cls): super(MaintenanceService, cls).__setup__() - cls._order = [ - ('code', 'DESC'), - ('id', 'DESC')] - cls._transitions = ({ + cls._order = [('code', 'DESC'), ('id', 'DESC')] + cls._transitions = { ('draft', 'agended'), ('agended', 'in_progress'), ('in_progress', 'finished'), - }) - cls._buttons.update({ - 'reassing_agended': {'invisible': Eval('state') != 'failed'}, - 'assing_agended': {'invisible': Eval('state') != 'draft'}, - 'in_progress': {'invisible': Eval('state').in_(['draft', 'in_progress', 'finished'])}, - 'finished': {'invisible': Eval('state').in_(['draft', 'agended', 'finished'])} - }) + } + cls._buttons.update( + { + 'reassing_agended': { + 'invisible': + Eval('state') != 'failed' + }, + 'assing_agended': { + 'invisible': + Eval('state') != 'draft' + }, + 'in_progress': { + 'invisible': + Eval('state').in_(['draft', 'in_progress', 'finished']) + }, + 'finished': { + 'invisible': + Eval('state').in_(['draft', 'agended', 'finished']) + }, + } + ) @staticmethod def default_company(): @@ -158,7 +205,6 @@ class MaintenanceService(Workflow, ModelSQL, ModelView): Config = pool.get('optical_equipment.configuration') config = Config(1) moisture_min = config.moisture_min - return moisture_min @staticmethod @@ -166,18 +212,18 @@ class MaintenanceService(Workflow, ModelSQL, ModelView): pool = Pool() Config = pool.get('optical_equipment.configuration') config = Config(1) - temperature_uom = config.temperature_uom.id - - return temperature_uom + if config.temperature_uom: + temperature_uom = config.temperature_uom.id + return temperature_uom @staticmethod def default_moisture_uom(): pool = Pool() Config = pool.get('optical_equipment.configuration') config = Config(1) - moisture_uom = config.moisture_uom.id - - return moisture_uom + if config.moisture_uom: + moisture_uom = config.moisture_uom.id + return moisture_uom @staticmethod def default_moisture_max(): @@ -200,6 +246,32 @@ class MaintenanceService(Workflow, ModelSQL, ModelView): def default_state(self): return 'draft' + @classmethod + def default_technician_responsible(cls): + pool = Pool() + ConfigurationEquipment = pool.get('optical_equipment.configuration') + config = ConfigurationEquipment(1) + + if config.technician_responsible: + technician_responsible = config.technician_responsible + return technician_responsible.party.name + + @classmethod + def default_invima(cls): + pool = Pool() + ConfigurationEquipment = pool.get('optical_equipment.configuration') + config = ConfigurationEquipment(1) + if config.technician_responsible: + return config.technician_responsible.invima + + @classmethod + def default_technician_signature(cls): + pool = Pool() + ConfigurationEquipment = pool.get('optical_equipment.configuration') + config = ConfigurationEquipment(1) + if config.technician_signature: + return config.technician_signature + @classmethod def _get_origin(cls): 'Return list of Model names for origin Reference' @@ -246,17 +318,16 @@ class MaintenanceService(Workflow, ModelSQL, ModelView): except UserError: raise UserError(str('Validation Error')) else: - raise UserError(gettext('optical_equipment.msg_not_sequence_equipment')) + raise UserError( + gettext('optical_equipment.msg_not_sequence_equipment')) @classmethod - @ModelView.button_action( - 'optical_equipment.act_assing_agended') + @ModelView.button_action('optical_equipment.act_assing_agended') def assing_agended(cls, maintenances): pass @classmethod - @ModelView.button_action( - 'optical_equipment.act_reassing_agended') + @ModelView.button_action('optical_equipment.act_reassing_agended') def reassing_agended(cls, maintenances): pass @@ -264,95 +335,163 @@ class MaintenanceService(Workflow, ModelSQL, ModelView): @ModelView.button @Workflow.transition('in_progress') def in_progress(cls, maintenances): - for maintenance in maintenances: - maintenance.current_agended.state = 'in_progress' - maintenance.current_agended.save() + pass @classmethod @ModelView.button @Workflow.transition('finished') def finished(cls, maintenances): for maintenance in maintenances: - maintenance.current_agended.state = 'finished' - maintenance.current_agended.save() + for line in maintenance.lines: + if line.state != 'finished': + raise Exception( + "Debe Finalizar Todas las lineas de mantenimiento") class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): 'Equipment Maintenance Line' __name__ = 'optical_equipment.maintenance' # _rec_name = 'rec_name' - _states = {'required': True, - 'readonly': Eval('state').in_(['finished'])} + _states = {'required': True, 'readonly': Eval('state').in_(['finished'])} + + service_maintenance = fields.Many2One( + 'optical_equipment_maintenance.service', + 'Maintenance Service', + ondelete='CASCADE', + domain=[ + ('state', 'in', ['draft', 'in_progress', 'finished']), + ('propietary', '=', Eval('propietary')), + ], + states=_states, + ) + code = fields.Char('Code', states={'readonly': True}) + maintenance_type = fields.Selection( + [ + ('initial', 'Initial'), + ('preventive', 'Preventive'), + ('corrective', 'Corrective'), + ], + 'Maintenance Type', + states=_states, + ) + state = fields.Selection( + [('draft', 'Draft'), ('finished', 'Finished')], + 'State', + readonly=True, + sort=False, + states=_states, + ) + company = fields.Many2One( + 'company.company', 'Company', readonly=True) + + propietary = fields.Many2One( + 'party.party', + 'Propietary', + states=_states, + ) + propietary_address = fields.Many2One( + 'party.address', + 'Propietary Address', + states=_states, + domain=[('party', '=', Eval('propietary'))], + ) + equipment = fields.Many2One( + 'optical_equipment.equipment', + 'Equipment', + domain=[ + ('state', 'in', ['registred', 'uncontrated', 'contrated']), + ('propietary', '=', Eval('propietary')), + ('propietary_address', '=', Eval('propietary_address')), + ], + states=_states, + ) + equipment_calibrate = fields.Boolean( + 'Calibrate Equipment', states={'readonly': True} + ) - service_maintenance = fields.Many2One('optical_equipment_maintenance.service', "Maintenance Service", - ondelete='CASCADE', - domain=[('state', 'in', ['draft', 'in_progress', 'finished']), - ('propietary', '=', Eval('propietary'))], - states=_states) - code = fields.Char( - "Code", states={'readonly': True}) - maintenance_type = fields.Selection([('initial', 'Initial'), - ('preventive', 'Preventive'), - ('corrective', 'Corrective')], "Maintenance Type", states=_states) - state = fields.Selection([('draft', "Draft"), - ('finished', "Finished") - ], "State", readonly=True, sort=False, - states=_states) - company = fields.Many2One('company.company', "Company", readonly=True) - propietary = fields.Many2One('party.party', "Propietary", states=_states,) - propietary_address = fields.Many2One('party.address', "Propietary Address", - states=_states, - domain=[('party', '=', Eval('propietary'))],) - equipment = fields.Many2One('optical_equipment.equipment', "Equipment", - domain=[('state', 'in', ['registred', 'uncontrated', 'contrated']), - ('propietary', '=', Eval('propietary')), - ('propietary_address', '=', Eval('propietary_address'))], - states=_states,) - equipment_calibrate = fields.Boolean("Calibrate Equipment", states={'readonly': True}) - # when the maintenance is in agended status - diary = fields.One2Many('optical_equipment_maintenance.diary', 'diary') # Preventive maintenance - initial_operation = fields.Boolean("Verificación inicial de funcionamiento") - check_equipment = fields.Boolean("Revisión del Equipo") - check_electric_system = fields.Boolean("Revisión del sistema electríco") - clean_int_ext = fields.Boolean("Limpieza interior y exterior") - clean_eyes = fields.Boolean("Limpieza de lentes y espejos") - check_calibration = fields.Boolean("Verificar Calibración") + initial_operation = fields.Boolean( + 'Verificación inicial de funcionamiento') + check_equipment = fields.Boolean('Revisión del Equipo') + check_electric_system = fields.Boolean('Revisión del sistema electríco') + clean_int_ext = fields.Boolean('Limpieza interior y exterior') + clean_eyes = fields.Boolean('Limpieza de lentes y espejos') + check_calibration = fields.Boolean('Verificar Calibración') maintenance_activity = fields.One2Many( 'optical_equipment_maintenance.activity', - 'maintenance', - "Maintenance Activitys") + 'maintenance', 'Maintenance Activitys' + ) # Calibration - patterns_equipments = fields.Char("K Pattern", states={'readonly': True},) - lines_calibration = fields.One2Many('optical_equipment.maintenance.calibration_sample', 'maintenance', "Lines of Calibration", - states={'readonly': Eval('state') == 'finished'}) - calibration_total = fields.One2Many('optical_equipment.maintenance.calibration', 'maintenance', "Calibration Total", - states={'readonly': Eval('state') == 'finished'}) + patterns_equipments = fields.Char( + 'K Pattern', + states={'readonly': True}, + ) + lines_calibration = fields.One2Many( + 'optical_equipment.maintenance.calibration_sample', + 'maintenance', + 'Lines of Calibration', + states={'readonly': Eval('state') == 'finished'}, + ) + calibration_total = fields.One2Many( + 'optical_equipment.maintenance.calibration', + 'maintenance', + 'Calibration Total', + states={'readonly': Eval('state') == 'finished'}, + ) maintenance_lines = fields.One2Many( - 'optical_equipment.maintenance.line', 'maintenance', 'Lines') + 'optical_equipment.maintenance.line', 'maintenance', 'Lines' + ) description_activity = fields.Char('Activity') - next_maintenance = fields.Function(fields.Date('Next Maintenance'), 'get_next_maintenance') - temperature_min = fields.Float("Temp Min") - temperature_max = fields.Float("Temp Max") - temperature_uom = fields.Many2One('product.uom', 'Temperature UOM', - domain=[ - ('category', '=', Id( - 'optical_equipment', "uom_cat_temperature"))], - states={'invisible': If(Eval('temperature_min') is None, True), - 'readonly': (Eval('state') == 'finished')},) - moisture_min = fields.Float("Moisture Min") - moisture_max = fields.Float("Moisture Max") - moisture_uom = fields.Many2One('product.uom', "Moisture UOM", - domain=[ - ('category', '=', Id( - 'optical_equipment', 'uom_cat_relative_humedity'))], - states={'invisible': If(Eval('moisture_min') is None, True), - 'readonly': Eval('state') == 'finished'},) + next_maintenance = fields.Function( + fields.Date('Next Maintenance'), 'get_next_maintenance' + ) + temperature_min = fields.Float('Temp Min') + temperature_max = fields.Float('Temp Max') + temperature_uom = fields.Many2One( + 'product.uom', + 'Temperature UOM', + domain=[ + ('category', '=', Id('optical_equipment', 'uom_cat_temperature')) + ], + ) + moisture_min = fields.Float('Moisture Min') + moisture_max = fields.Float('Moisture Max') + moisture_uom = fields.Many2One( + 'product.uom', + 'Moisture UOM', + domain=[ + ('category', '=', + Id('optical_equipment', 'uom_cat_relative_humedity')) + ], + ) graph_calibration = fields.Binary('Graphs') rec_name = fields.Function(fields.Char('rec_name'), 'get_rec_name') technician_responsible = fields.Char('Technician Responsible') invima = fields.Char('Invima') + technician_signature = fields.Binary('Technician Signature') + + @classmethod + def __setup__(cls): + super(MaintenanceServiceLine, cls).__setup__() + cls._transitions.update({('draft', 'finished')}) + cls._buttons.update({ + 'in_progress': { + 'invisible': + Eval('state').in_(['draft', 'in_progress', 'finished']) + }, + 'samples': { + 'invisible': ( + (Eval('state').in_(['finished'])) | ( + Eval('lines_calibration', [0])) | ( + ~Eval('equipment_calibrate'))) + }, + 'calibrate': { + 'invisible': (Eval('lines_calibration', [0])) | ( + Eval('state').in_(['finished'])), + 'depends': ['state'], }, + 'finished': {}, + }) @classmethod def default_technician_responsible(cls): @@ -373,36 +512,12 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): return config.technician_responsible.invima @classmethod - def __setup__(cls): - super(MaintenanceServiceLine, cls).__setup__() - cls._transitions.update({ - ('draft', 'finished') - }) - cls._buttons.update({ - 'in_progress': {'invisible': Eval('state').in_(['draft', 'in_progress', 'finished'])}, - 'finished': {'invisible': (Eval('state').in_(['finished'])) | - ((Eval('maintenance_type') == 'corrective') & (Eval('maintenance_lines') == ()))}, - 'samples': {'invisible': (Eval('state').in_(['finished'])) | (Eval('lines_calibration') != ()) | (~Eval('equipment_calibrate'))}, - 'calibrate': {'invisible': (Eval('lines_calibration') == ()) | (Eval('state').in_(['finished'])), - 'depends': ['state'], } - }) - - @classmethod - def view_attributes(cls): - return super(MaintenanceServiceLine, cls).view_attributes() + [ - ('//page[@id="preventive"]', 'states', { - 'invisible': If(Eval('maintenance_type') == 'corrective', True), - }), - ('//page[@id="corrective"]', 'states', { - 'invisible': If(Eval('maintenance_type') != 'corrective', True), - }), - ('//page[@id="calibration"]', 'states', { - 'invisible': ~Eval('equipment_calibrate'), - }), - ('//page[@id="graph"]', 'states', { - 'invisible': ~Eval('equipment_calibrate'), - }) - ] + def default_technician_signature(cls): + pool = Pool() + ConfigurationEquipment = pool.get('optical_equipment.configuration') + config = ConfigurationEquipment(1) + if config.technician_signature: + return config.technician_signature @staticmethod def default_company(): @@ -417,27 +532,64 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): return 'preventive' @classmethod - def default_state_agended(cls): - return 'no_agenda' + def view_attributes(cls): + return super(MaintenanceServiceLine, cls).view_attributes() + [ + ( + "//page[@id='preventive']", + 'states', + { + 'invisible': + If(Eval('maintenance_type') == 'corrective', True), + }, + ), + ( + "//page[@id='corrective']", + 'states', + { + 'invisible': + If(Eval('maintenance_type') != 'corrective', True), + }, + ), + ( + "//page[@id='calibration']", + 'states', + { + 'invisible': ~Eval('equipment_calibrate'), + }, + ), + ( + "//page[@id='graph']", + 'states', + { + 'invisible': ~Eval('equipment_calibrate'), + }, + ), + ] @fields.depends('temperature_min', 'temperature_uom') def on_change_temperature_min(self): if self.temperature_min: pool = Pool() Measurements = pool.get('product.uom') - self.temperature_uom = Measurements.search(['name', '=', 'Celsius'])[0].id + self.temperature_uom = Measurements.search( + ['name', '=', 'Celsius'])[0].id @fields.depends('moisture_min', 'moisture_uom') def on_change_moisture_min(self): pool = Pool() Measurements = pool.get('product.uom') - self.moisture_uom = Measurements.search(['name', '=', 'Relative Humedity'])[0].id + self.moisture_uom = Measurements.search( + ['name', '=', 'Relative Humedity'] + )[0].id - @fields.depends('service_maintenance') + @fields.depends('_parent_service_maintenance.propietary', + '_parent_service_maintenance.propietary_address', + 'service_maintenance') def on_change_service_maintenance(self): if self.service_maintenance: self.propietary = self.service_maintenance.propietary - self.propietary_address = self.service_maintenance.propietary_address + self.propietary_address =\ + self.service_maintenance.propietary_address service = self.service_maintenance self.temperature_min = service.temperature_min self.temperature_max = service.temperature_max @@ -458,14 +610,15 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): @fields.depends('equipment', 'patterns_equipments') def on_change_equipment(self): if self.equipment: - self.patterns_equipments = self.equipment.product.k_pattern - self.equipment_calibrate = self.equipment.product.calibration - self.initial_operation = self.equipment.product.initial_operation - self.check_equipment = self.equipment.product.check_equipment - self.check_electric_system = self.equipment.product.check_electric_system - self.clean_int_ext = self.equipment.product.clean_int_ext - self.clean_eyes = self.equipment.product.clean_eyes - self.check_calibration = self.equipment.product.check_calibration + product = self.equipment.product + self.patterns_equipments = product.k_pattern + self.equipment_calibrate = product.calibration + self.initial_operation = product.initial_operation + self.check_equipment = product.check_equipment + self.check_electric_system = product.check_electric_system + self.clean_int_ext = product.clean_int_ext + self.clean_eyes = product.clean_eyes + self.check_calibration = product.check_calibration else: self.patterns_equipments = None self.equipment_calibrate = False @@ -479,90 +632,42 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): def get_next_maintenance(self, action): next_maintenance = None if self.service_maintenance.estimated_agended: - if self.propietary.customer_type == "ips": - next_maintenance = self.service_maintenance.estimated_agended + timedelta(days=182) + if self.propietary.customer_type == 'ips': + next_maintenance = ( + self.service_maintenance.estimated_agended + + timedelta(days=182) + ) else: - next_maintenance = self.service_maintenance.estimated_agended + timedelta(days=365) + next_maintenance = ( + self.service_maintenance.estimated_agended + + timedelta(days=365) + ) return next_maintenance def get_standard_deviation(samples): - """ + ''' This function calculated the standartd deviation - """ + ''' sum_samples = sum(samples) n_samples = len(samples) mean = sum_samples / n_samples - dev_std_square = sum((l - mean)**2 for l in samples) / (n_samples - 1) + dev_std_square = sum( + (l - mean) ** 2 for l in samples) / (n_samples - 1) dev_std = mt.sqrt(dev_std_square) return dev_std def get_uncertain_type_A(samples, dev_std): - """ + ''' This function calculated the uncertain type A - """ + ''' n_samples = len(samples) uncertain_type_A = dev_std / mt.sqrt(n_samples) return uncertain_type_A - def get_uncertain_pattern(self): - """ - uncertain_pattern = 0,25 constante viene del equipo - """ - uncertain_pattern = 0.25 - - return uncertain_pattern - - def get_k_certificated_calibration(self): - k_certificated_calibration = 2 - - return k_certicated_calibration - - def get_uncertain_U_b1(self): - uncertain_b1 = MEP / mt.sqrt(3) - uncertain_b1a = uncertain_pattern / k_certificated_calibration - - return uncertain_b1 - - def default_d_resolution(self): - return d - - def get_uncertain_b2_digital(self): - uncertain_b2 = d / 2 * mt.sqrt(3) - - return uncertain_b2 - - def get_uncertain_b2_analog(self): - """ - Incertidumbre por resolución Análoga - a contante que viene del equipo - """ - uncertain_b2_analog = d / a * math.sqrt(3) - - return uncertain_b2_analog - - def get_uncertain_combinated(self): - """ - Incertidumbre Combinada - """ - sum_uncertain_c = uncertain_type_A**2 + uncertain_b1**2 + uncertain_b2**2 - uncertain_c = math.sqrt(sum_uncertain_c) - - return uncertain_c - - def get_uncertain_eff(self): - """ - Grados Efectivos de libertad - """ - uncertain_eff = uncertain_c**4 / \ - ((uncertain_type_A**4) / (len(sample) - 1) + - (uncertain_b1**4 / U_subi) + (uncertain_b2**4 / U_subi)) - - return uncertain_eff - def get_create_graph(matrix, patterns, resolution, equipment_risk): image = BytesIO() errors = [] @@ -630,8 +735,13 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): @Workflow.transition('finished') def finished(cls, maintenances): for maintenance in maintenances: - if maintenance.equipment.product.calibration and maintenance.calibration_total == (): - raise UserError("No puede finalizar este mantenimiento sin una calibración") + if ( + maintenance.equipment.product.calibration + and maintenance.calibration_total == () + ): + raise UserError( + 'No puede finalizar este mantenimiento sin una calibración' + ) else: maintenance.state = 'finished' maintenance.code = maintenance.id @@ -641,7 +751,8 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): @ModelView.button def samples(cls, maintenances): pool = Pool() - CalibrationSample = pool.get('optical_equipment.maintenance.calibration_sample') + CalibrationSample = pool.get( + 'optical_equipment.maintenance.calibration_sample') for maintenance in maintenances: patterns = maintenance.equipment.product.k_pattern_list for pattern in patterns: @@ -652,7 +763,8 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): value_patterns=pattern.id, value_equipment=pattern.pattern, mistake=0, - mistake_rate=0) + mistake_rate=0, + ) samples = [calibrationSample] * 5 maintenance.lines_calibration += tuple(samples) maintenance.save() @@ -661,7 +773,8 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): @ModelView.button def calibrate(cls, maintenances): pool = Pool() - CalibrationLineTotal = pool.get('optical_equipment.maintenance.calibration') + CalibrationLineTotal = pool.get( + 'optical_equipment.maintenance.calibration') dates = {} dates_mistake_pattern = [] patterns = set() @@ -669,54 +782,69 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): for maintenance in maintenances: maintenance.calibration_total = () if len(maintenance.lines_calibration) < 5: - raise UserError("Por favor Ingrese mas de (5) Muestras por patrón (Dioptría)") - else: - for line in maintenance.lines_calibration: - if line.value_patterns.pattern not in patterns: - patterns.add(line.value_patterns.pattern) - dates[line.value_patterns.pattern] = [line.value_equipment] - else: - dates[line.value_patterns.pattern].append(line.value_equipment) + raise UserError( + 'Por favor Ingrese mas de 5 Muestras por patrón (Dioptría)' + ) + + for line in maintenance.lines_calibration: + if line.value_patterns.pattern not in patterns: + patterns.add(line.value_patterns.pattern) + dates[line.value_patterns.pattern] = [ + line.value_equipment] + else: + dates[line.value_patterns.pattern].append( + line.value_equipment) for pattern in patterns: + product = maintenance.equipment.product samples = dates[pattern] mean = sum(samples) / len(samples) - U_subi = maintenance.equipment.product.Usubi - uncertain_pattern = maintenance.equipment.product.uncertainy_pattern - MEP = maintenance.equipment.product.MEP + U_subi = product.Usubi + uncertain_pattern = product.uncertainy_pattern + MEP = product.MEP dev_std = cls.get_standard_deviation(samples) uncertain_type_A = cls.get_uncertain_type_A(samples, dev_std) k_certificated_calibration = 2 uncertain_b1 = MEP / mt.sqrt(3) # Ub1_patron a 2 Decimales - uncertain_b1a = uncertain_pattern / k_certificated_calibration # Ub1_MEP - if maintenance.equipment.product.resolution_type == "analoga": - a_resolution = maintenance.equipment.product.analog_resolution + if product.resolution_type == 'analoga': + a_resolution = product.analog_resolution resolution = a_resolution - factor_a = maintenance.equipment.product.a_factor_resolution - uncertain_b2_analog = (a_resolution) / (factor_a * mt.sqrt(3)) - sum_uncertain_c = (uncertain_type_A**2) + \ - (uncertain_b1**2) + (uncertain_b2_analog**2) + factor_a = product.a_factor_resolution + uncertain_b2_analog = ( + a_resolution) / (factor_a * mt.sqrt(3)) + sum_uncertain_c = ( + (uncertain_type_A**2) + + (uncertain_b1**2) + + (uncertain_b2_analog**2) + ) uncertain_c = mt.sqrt(sum_uncertain_c) - uncertain_eff = uncertain_c**4 / \ - ((uncertain_type_A**4) / (len(samples) - 1) + - (uncertain_b1**4 / U_subi) + (uncertain_b2_analog**4 / U_subi)) - elif maintenance.equipment.product.resolution_type == "digital": - d_resolution = maintenance.equipment.product.d_resolution + uncertain_eff = uncertain_c**4 / ( + (uncertain_type_A**4) / (len(samples) - 1) + + (uncertain_b1**4 / U_subi) + + (uncertain_b2_analog**4 / U_subi) + ) + elif product.resolution_type == 'digital': + d_resolution = product.d_resolution resolution = d_resolution uncertain_b2_digital = (d_resolution) / (2 * mt.sqrt(3)) - sum_uncertain_c = (uncertain_type_A**2) + \ - (uncertain_b1**2) + (uncertain_b2_digital**2) + sum_uncertain_c = ( + (uncertain_type_A**2) + + (uncertain_b1**2) + + (uncertain_b2_digital**2) + ) uncertain_c = mt.sqrt(sum_uncertain_c) - uncertain_eff = uncertain_c**4 / \ - ((uncertain_type_A**4) / (len(samples) - 1) + - (uncertain_b1**4 / U_subi) + (uncertain_b2_digital**4 / U_subi)) + uncertain_eff = uncertain_c**4 / ( + (uncertain_type_A**4) / (len(samples) - 1) + + (uncertain_b1**4 / U_subi) + + (uncertain_b2_digital**4 / U_subi) + ) t_student = t.ppf(1 - 0.025, uncertain_eff) uncertain_expanded = round((t_student * uncertain_c), 2) dates_mistake_pattern.append([mean, uncertain_expanded]) - if maintenance.equipment.product.resolution_type == "analoga": + if product.resolution_type == 'analoga': calibrationLineTotal = CalibrationLineTotal( diopter=pattern, mean=mean, @@ -732,11 +860,15 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): uncertain_eff=uncertain_eff, t_student=t_student, uncertain_expanded=uncertain_expanded, - state='Aprobado' if uncertain_expanded <= a_resolution else 'Rechazado' + state=( + 'Aprobado' + if uncertain_expanded <= a_resolution + else 'Rechazado' + ), ) maintenance.calibration_total += (calibrationLineTotal,) - elif maintenance.equipment.product.resolution_type == "digital": + elif product.resolution_type == 'digital': calibrationLineTotal = CalibrationLineTotal( diopter=pattern, mean=mean, @@ -752,14 +884,18 @@ class MaintenanceServiceLine(Workflow, ModelSQL, ModelView): uncertain_eff=uncertain_eff, t_student=t_student, uncertain_expanded=uncertain_expanded, - state='Aprobado' if uncertain_expanded <= d_resolution else 'Rechazado' + state=( + 'Aprobado' + if uncertain_expanded <= d_resolution + else 'Rechazado' + ), ) maintenance.calibration_total += (calibrationLineTotal,) maintenance.save() - equipment_risk = maintenance.equipment.product.risk image = cls.get_create_graph( - dates_mistake_pattern, patterns, resolution, equipment_risk) + dates_mistake_pattern, patterns, resolution, product.risk + ) maintenance.graph_calibration = image maintenance.save() @@ -769,55 +905,75 @@ class MaintenanceLine(ModelSQL, ModelView): __name__ = 'optical_equipment.maintenance.line' line_replace = fields.Boolean( - "Replace", - states={ - 'readonly': If( - Eval('line_maintenance_activity') == True, - True)}) + 'Replace', + ) line_maintenance_activity = fields.Boolean( - "Maintenance Activity", states={ - 'readonly': If( - Eval('line_replace') == True, True)}) + 'Maintenance Activity', + ) maintenance = fields.Many2One( 'optical_equipment.maintenance', 'Maintenance', ondelete='CASCADE', ) - replacement = fields.Many2One('product.product', 'Replacement', ondelete='RESTRICT', - domain=[('replacement', '=', True)], - states={'invisible': (If(Eval('line_maintenance_activity') == True, True)) | (If(Eval('line_replace') == False, True)), - 'required': If(Eval('line_replace') == True, True)}, - depends={'line_replace'}) - maintenance_activity = fields.Many2One('product.product', 'Maintenance activity', - domain=[('maintenance_activity', '=', True)], - states={'invisible': If(Eval('line_replace') == True, True) | - (If(Eval('line_maintenance_activity') == False, True)), - 'required': If(Eval('line_maintenance_actitvity') == True, True)}, - depends={'line_maintenance_activity'}) + replacement = fields.Many2One( + 'product.product', + 'Replacement', + ondelete='RESTRICT', + domain=[('replacement', '=', True)], + depends={'line_replace'}, + ) + maintenance_activity = fields.Many2One( + 'product.product', + 'Maintenance activity', + domain=[('maintenance_activity', '=', True)], + depends={'line_maintenance_activity'}, + ) - quantity = fields.Float("Quantity", required=True, digits='unit') - actual_quantity = fields.Float( - "Actual Quantity", digits='unit', readonly=True, + quantity = fields.Float('Quantity', required=True, digits='unit') + # actual_quantity = fields.Float( + # 'Actual Quantity', + # digits='unit', + # readonly=True, + # states={ + # 'invisible': Eval('type') != 'line', + # }, + # ) + unit = fields.Many2One( + 'product.uom', + 'Unit', + ondelete='RESTRICT', states={ - 'invisible': Eval('type') != 'line', - }) - unit = fields.Many2One('product.uom', 'Unit', ondelete='RESTRICT', - states={ - 'readonly': Eval('_parent_maintenance.state') != 'draft', - }, domain=[If(Bool(Eval('product_uom_category')), - ('category', '=', Eval('product_uom_category')), - ('category', '!=', -1)), - ]) - product_uom_category = fields.Function(fields.Many2One('product.uom.category', 'Product Uom Category'), - 'on_change_with_product_uom_category') - description = fields.Text("Description", states={ - 'readonly': Eval('_parent_maintenance.state') != 'draft', - }) + 'readonly': Eval('_parent_maintenance.state') != 'draft', + }, + domain=[ + If( + Bool(Eval('product_uom_category')), + ('category', '=', Eval('product_uom_category')), + ('category', '!=', -1), + ), + ], + ) + product_uom_category = fields.Function( + fields.Many2One('product.uom.category', 'Product Uom Category'), + 'on_change_with_product_uom_category', + ) + description = fields.Text( + 'Description', + states={ + 'readonly': Eval('_parent_maintenance.state') != 'draft', + }, + ) company = fields.Function( - fields.Many2One( - 'company.company', - "Company"), - 'on_change_with_company') + fields.Many2One('company.company', 'Company'), 'on_change_with_company' + ) + + @fields.depends('replacement', 'maintenance_activity') + def on_change_with_product_uom_category(self, name=None): + if self.replacement: + return self.replacement.defaul_uom_category.id + + if self.maintenance_activity: + return self.maintenance_activity.default_uom_category.id @fields.depends('maintenance', '_parent_maintenance.company') def on_change_with_company(self, name=None): @@ -826,25 +982,25 @@ class MaintenanceLine(ModelSQL, ModelView): @fields.depends('line_replace', 'replacement') def on_change_line_replace(self, name=None): - if self.line_replace == False: + if not self.line_replace: self.replacement = None @fields.depends('line_maintenance_activity', 'maintenance_activity') def on_change_line_maintenance_activity(self, name=None): - if self.line_maintenance_activity == False: + if not self.line_maintenance_activity: self.maintenance_activity = None - @fields.depends('replacement', 'maintenance', 'unit', 'maintenance') + @fields.depends( + 'replacement', 'unit') def on_change_replacement(self): if not self.replacement: self.unit = None return - if not self.unit or self.unit.category != category: + if not self.unit: self.unit = self.replacement.sale_uom - @fields.depends('maintenance_activity', - 'quantity', 'unit') + @fields.depends('maintenance_activity', 'quantity', 'unit') def on_change_maintenance_activity(self): if not self.maintenance_activity: self.quantity = None @@ -852,7 +1008,7 @@ class MaintenanceLine(ModelSQL, ModelView): return self.quantity = 1 - if not self.unit or self.unit.category != category: + if not self.unit: self.unit = self.maintenance_activity.sale_uom @@ -860,26 +1016,41 @@ class MaintenanceActivity(ModelView, ModelSQL): 'Maintenance Activitys' __name__ = 'optical_equipment_maintenance.activity' - maintenance = fields.Many2One('optical_equipment.maintenance') - product = fields.Many2One('product.product', 'Product', - domain=[('maintenance_activity', '=', True)]) + maintenance = fields.Many2One( + 'optical_equipment.maintenance', 'Maintenance') + product = fields.Many2One( + 'product.product', 'Product', + domain=[ + ('maintenance_activity', '=', True)] + ) class ChangePropietaryMaintenance(ModelView): 'Change of Propietary Equipment' __name__ = 'optical_equipment.change_propietary_maintenance.form' - old_propietary = fields.Many2One('party.party', 'Old Propietary', - states={'required': True}) - maintenance_service = fields.Many2Many('optical_equipment_maintenance.service', None, None, "Maintenance Service", - domain=[('propietary', '=', Eval('old_propietary'))], - depends=['old_propietary']) - new_propietary = fields.Many2One('party.party', "New Propietary", - states={'required': True}) - new_address = fields.Many2One('party.address', "New Address", required=True, - domain=[('party', '=', Eval('new_propietary'))], - states={'required': True}) - change_date = fields.Date("Change Date", readonly=True) + old_propietary = fields.Many2One( + 'party.party', 'Old Propietary', states={'required': True} + ) + maintenance_service = fields.Many2Many( + 'optical_equipment_maintenance.service', + None, + None, + 'Maintenance Service', + domain=[('propietary', '=', Eval('old_propietary'))], + depends=['old_propietary'], + ) + new_propietary = fields.Many2One( + 'party.party', 'New Propietary', states={'required': True} + ) + new_address = fields.Many2One( + 'party.address', + 'New Address', + required=True, + domain=[('party', '=', Eval('new_propietary'))], + states={'required': True}, + ) + change_date = fields.Date('Change Date', readonly=True) @classmethod def default_change_date(cls): @@ -892,15 +1063,18 @@ class NewPropietaryMaintenance(Wizard): 'Change Propietary' __name__ = 'optical_equipment.change_propietary_maintenance' - start = StateView('optical_equipment.change_propietary_maintenance.form', - 'optical_equipment.change_propietary_maintenance_view_form', [ - Button('Cancel', 'end', 'tryton-cancel'), - Button('Create', 'change_propietary', 'tryton-ok', default=True), - ]) - change_propietary = StateAction('optical_equipment.act_optical_equipment_form') + start = StateView( + 'optical_equipment.change_propietary_maintenance.form', + 'optical_equipment.change_propietary_maintenance_view_form', + [ + Button('Cancel', 'end', 'tryton-cancel'), + Button('Create', 'change_propietary', 'tryton-ok', default=True), + ], + ) + change_propietary = StateAction( + 'optical_equipment.act_optical_equipment_form') def do_change_propietary(self, action): - old_propietary = self.start.old_propietary services = self.start.maintenance_service new_propietary = self.start.new_propietary new_address = self.start.new_address diff --git a/maintenance.xml b/maintenance.xml index dea2e99..6e3d545 100644 --- a/maintenance.xml +++ b/maintenance.xml @@ -111,7 +111,8 @@ optical_equipment.maintenance-optical_equipment.equipment - + form + maintenance_equipment_form @@ -184,6 +185,12 @@ Finished + + in_progress + In progress + + + finished Finished diff --git a/messages.xml b/messages.xml new file mode 100644 index 0000000..9c61fae --- /dev/null +++ b/messages.xml @@ -0,0 +1,13 @@ + + + + + + La linea de envio se encuentra sin serial. Debe asignar un equipo a cada linea correspondiente. + + + Asigne una secuencia para enumerar equipos. + + + diff --git a/move.py b/move.py index 3a764d6..61f0f6c 100644 --- a/move.py +++ b/move.py @@ -1,42 +1,89 @@ -from trytond.model import fields, ModelSQL, ModelView, Workflow, dualmethod +from trytond.model import fields, ModelView, Workflow from trytond.modules.company import CompanyReport -from trytond.modules.company.model import employee_field, set_employee +from trytond.modules.company.model import set_employee from trytond.pool import Pool, PoolMeta from trytond.pyson import Eval, If from trytond.exceptions import UserError from itertools import groupby -from trytond.transaction import Transaction - +from trytond.transaction import Transaction, without_check_access +from trytond.model.exceptions import ValidationError +from trytond.i18n import gettext + +from functools import wraps + + +def process_sale(moves_field): + def _process_sale(func): + @wraps(func) + def wrapper(cls, shipments): + pool = Pool() + Sale = pool.get('sale.sale') + transaction = Transaction() + context = transaction.context + with without_check_access(): + sales = set( + m.sale + for s in cls.browse(shipments) + for m in getattr(s, moves_field) + if m.sale + ) + func(cls, shipments) + if sales: + with transaction.set_context( + queue_batch=context.get('queue_batch', True) + ): + Sale.__queue__.process(sales) + + return wrapper + + return _process_sale + class Move(metaclass=PoolMeta): - "Stock Move" - __name__ = "stock.move" + 'Stock Move' + __name__ = 'stock.move' + _states = { + 'invisible': ~Eval('product_equipment'), + 'readonly': (Eval('state').in_(['cancelled', 'done'])), + } - return_equipment = fields.Boolean("Devolución", states={'invisible': If(~Eval('product_equipment'), True), - 'readonly': (Eval('state').in_(['cancelled', 'done'])),} - ) - equipment = fields.Many2One('optical_equipment.equipment', "Equipment", - domain=[If(Eval('return_equipment', True), - ('state', 'in', ['uncontrated','contrated']), - ('state', '=', 'registred')), - ('product','=', Eval('product')) - ], - states={'invisible': If(~Eval('product_equipment'), True), - 'readonly': (Eval('state').in_(['cancelled', 'done'])),}, - depends=['product_equipment', 'move_type']) - equipment_serial = fields.Function(fields.Char('Serial', - states={'readonly': True, - 'invisible': If(~Eval('product_equipment'), True)}, - depends=['product_equipment']), - 'get_equipment_serial') - product_equipment = fields.Function(fields.Boolean("It Equipment"),'get_product_equipment') + product_equipment = fields.Function( + fields.Boolean('It Equipment'), 'get_product_equipment' + ) + + return_equipment = fields.Boolean( + 'Devolución', + states=_states) + + equipment = fields.Many2One( + 'optical_equipment.equipment', + 'Equipment', + domain=[ + If( + Eval('return_equipment', True), + ('state', 'in', ['uncontrated', 'contrated']), + ('state', '=', 'registred'), + ), + ('product', '=', Eval('product')), + ], + states=_states, + depends=['product_equipment'], + ) + equipment_serial = fields.Function( + fields.Char( + 'Serial', + states=_states, + depends=['product_equipment'], + ), + 'get_equipment_serial', + ) @classmethod def __setup__(cls): super(Move, cls).__setup__() - cls.origin.states['required']=False - + cls.origin.states['required'] = False + @fields.depends('product') def get_product_equipment(self, product): if self.product.equipment: @@ -50,15 +97,17 @@ class Move(metaclass=PoolMeta): return self.equipment.serial else: return None - - @fields.depends('product', 'equipment', 'uom') - def on_change_product(self): - if self.product: - if (not self.uom - or self.uom.category != self.product.default_uom.category): - self.uom = self.product.default_uom - @fields.depends(methods=['get_equipment_serial']) + @fields.depends('product') + def on_change_product(self): + if not self.product: + return + + defaultCategory = self.product.default_uom.category + if not self.uom or self.uom.category != defaultCategory: + self.uom = self.product.default_uom + + @fields.depends('equipment', methods=['get_equipment_serial']) def on_change_equipment(self): if self.equipment: self.product = self.equipment.product.id @@ -68,32 +117,45 @@ class Move(metaclass=PoolMeta): class ShipmentOut(metaclass=PoolMeta): - "Customer Shipment" + 'Customer Shipment' __name__ = 'stock.shipment.out' - service_maintenance_initial = fields.Boolean('Maintenance Initial', states={'readonly': True}) + service_maintenance_initial = fields.Boolean( + 'Maintenance Initial', states={'readonly': True} + ) sale_type = fields.Char('Type sale origin') - + @classmethod def __setup__(cls): super(ShipmentOut, cls).__setup__() - cls._buttons.update({ - 'maintenance_initial': { - 'invisible': ((Eval('service_maintenance_initial',True)) - | (Eval('sale_type').in_(['maintenance', 'replaces'])))} - }) - + cls._buttons.update( + { + 'maintenance_initial': { + 'invisible': ( + (Eval('service_maintenance_initial', True)) + | (Eval('sale_type').in_(['maintenance', 'replaces'])) + ) + } + } + ) + @classmethod def view_attributes(cls): return super(ShipmentOut, cls).view_attributes() + [ - ('//page[@name="inventory_moves"]', 'states', { - 'invisible': False, - }),] + ( + "//page[@name='inventory_moves']", + 'states', + { + 'invisible': False, + }, + ), + ] @classmethod @ModelView.button @Workflow.transition('done') @set_employee('done_by') + @process_sale('outgoing_moves') def done(cls, shipments): pool = Pool() Move = pool.get('stock.move') @@ -103,35 +165,47 @@ class ShipmentOut(metaclass=PoolMeta): for shipment in shipments: for move in shipment.inventory_moves: count = 0 - if move.equipment: - equipment = move.equipment - Id = equipment.id - equipment = Equipments.search(['id', '=',Id])[0] - equipment.propietary = shipment.customer.id - equipment.propietary_address= shipment.delivery_address.id - equipment.location = Locations.search(['name', '=', 'Cliente'])[0].id - equipment.state="uncontrated" - equipment.shipment_destination = shipment - equipment.sale_destination = shipment.outgoing_moves[count].origin - equipment.propietarys += (shipment.customer,) - equipment.maintenance_frequency = "6" if shipment.customer.customer_type == "ips" else "12" - count+=1 - equipment.save() - else: - count+=1 + if not move.equipment: + count += 1 + continue + + equipment = move.equipment + Id = equipment.id + equipment = Equipments.search(['id', '=', Id])[0] + equipment.propietary = shipment.customer.id + equipment.propietary_address = shipment.delivery_address.id + equipment.location = Locations.search( + ['name', '=', 'Customer'])[0].id + equipment.state = 'uncontrated' + equipment.shipment_destination = shipment + equipment.sale_destination =\ + shipment.outgoing_moves[count].origin + equipment.propietarys += (shipment.customer,) + equipment.maintenance_frequency = ( + '6' + if shipment.customer.customer_type == 'ips' + else '12' + ) + count += 1 + equipment.save() Move.delete([ - m for s in shipments for m in s.outgoing_moves - if m.state == 'staging']) + m for s in shipments + for m in s.outgoing_moves + if m.state == 'staging' + ]) Move.do([m for s in shipments for m in s.outgoing_moves]) - for company, c_shipments in groupby( - shipments, key=lambda s: s.company): + iterator = groupby(shipments, key=lambda s: s.company) + for company, c_shipments in iterator: with Transaction().set_context(company=company.id): today = Date.today() - cls.write([s for s in c_shipments if not s.effective_date], { + cls.write( + [s for s in c_shipments if not s.effective_date], + { 'effective_date': today, - }) + }, + ) @classmethod @ModelView.button @@ -139,9 +213,6 @@ class ShipmentOut(metaclass=PoolMeta): pool = Pool() MaintenanceService = pool.get('optical_equipment_maintenance.service') Maintenance = pool.get('optical_equipment.maintenance') - SaleLine = pool.get('sale.line') - - Equipments = pool.get('optical_equipment.equipment') for shipment in shipments: serial = False @@ -150,22 +221,23 @@ class ShipmentOut(metaclass=PoolMeta): for move in shipment.inventory_moves: if move.product_equipment and move.equipment: serial = True - number_equipments +=1 + number_equipments += 1 if move.equipment.product.maintenance_required: - maintenance_required +=1 + maintenance_required += 1 elif not move.product_equipment: serial = True else: serial = False - + if number_equipments < 1 or maintenance_required < 1: shipment.service_maintenance_initial = True shipment.save() - #raise UserError(str("No se generó un mantenimiento inicial dado que los equipos no requiren mantenimiento, ó no se encontró ningún producto de tipo equipo en este envío.")) break - + sale_origin = shipment.outgoing_moves[0].origin.sale - maintenanceService = MaintenanceService.search(['sale_origin', '=', sale_origin]) + maintenanceService = MaintenanceService.search( + ['sale_origin', '=', sale_origin] + ) if maintenanceService == []: maintenanceService = MaintenanceService( sale_date=shipment.outgoing_moves[0].origin.sale.sale_date, @@ -173,40 +245,67 @@ class ShipmentOut(metaclass=PoolMeta): maintenance_type='initial', propietary=shipment.customer.id, propietary_address=shipment.delivery_address.id, - state='draft') + state='draft', + ) maintenanceService.save() else: maintenanceService = maintenanceService[0] maintenanceService.state = 'draft' maintenanceService.save() - if serial == True: - for move in shipment.inventory_moves: - if move.product_equipment and move.equipment and move.equipment.product.template.maintenance_required: - maintenance = Maintenance( - service_maintenance=maintenanceService.id, - maintenance_type='initial', - propietary=shipment.customer.id, - equipment_calibrate= True if move.equipment.product.calibration else False, - propietary_address=shipment.delivery_address.id, - equipment=move.equipment.id, - initial_operation = move.equipment.product.initial_operation, - check_equipment = move.equipment.product.template.check_equipment, - check_electric_system = move.equipment.product.template.check_electric_system, - clean_int_ext = move.equipment.product.template.clean_int_ext, - clean_eyes = move.equipment.product.template.clean_eyes, - check_calibration = move.equipment.product.template.check_calibration, - temperature_min = maintenanceService.temperature_min, - temperature_max = maintenanceService.temperature_max, - temperature_uom = maintenanceService.temperature_uom.id, - moisture_min = maintenanceService.moisture_min, - moisture_max = maintenanceService.moisture_max, - moisture_uom = maintenanceService.moisture_uom.id) - maintenance.save() - shipment.service_maintenance_initial = True - shipment.save() - else: - raise UserError(str('Por favor Primero debe Asignar un serial a todos los Equipos.')) + if not serial: + error = 'Por favor Primero debe Asignar' + + 'un serial a todos los Equipos.' + raise UserError(str(error)) + + for move in shipment.inventory_moves: + valid = \ + move.product_equipment \ + and move.equipment \ + and move.equipment.product.template.maintenance_required + + if (not valid): + continue + + template = move.equipment.product.template + maintenance = Maintenance( + service_maintenance=maintenanceService.id, + maintenance_type='initial', + propietary=shipment.customer.id, + equipment_calibrate=( + True if move.equipment.product.calibration else False + ), + propietary_address=shipment.delivery_address.id, + equipment=move.equipment.id, + initial_operation=move.equipment.product.initial_operation, + check_equipment=template.check_equipment, + check_electric_system=template.check_electric_system, + clean_int_ext=template.clean_int_ext, + clean_eyes=template.clean_eyes, + check_calibration=template.check_calibration, + temperature_min=maintenanceService.temperature_min, + temperature_max=maintenanceService.temperature_max, + temperature_uom=maintenanceService.temperature_uom.id, + moisture_min=maintenanceService.moisture_min, + moisture_max=maintenanceService.moisture_max, + moisture_uom=maintenanceService.moisture_uom.id, + ) + maintenance.save() + + shipment.service_maintenance_initial = True + shipment.save() + + @classmethod + @ModelView.button + @Workflow.transition('picked') + @set_employee('picked_by') + def pick(cls, shipments): + super(ShipmentOut, cls).pick(shipments) + for shipment in shipments: + for line in shipment.inventory_moves: + if line.product.equipment and not line.equipment: + raise ValidationError( + gettext("optical_equipment.line_without_serial")) class ShipmentInternal(metaclass=PoolMeta): @@ -227,17 +326,23 @@ class ShipmentInternal(metaclass=PoolMeta): if move.equipment: move.equipment.location = shipment.to_location move.equipment.save() - + Move.do([m for s in shipments for m in s.incoming_moves]) - cls.write([s for s in shipments if not s.effective_date], { - 'effective_date': Date.today(),}) + cls.write( + [s for s in shipments if not s.effective_date], + { + 'effective_date': Date.today(), + }, + ) class ShipmentOutReturn(metaclass=PoolMeta): - "Customer Shipment Return" + 'Customer Shipment Return' __name__ = 'stock.shipment.out.return' - service_maintenance_initial = fields.Boolean('Maintenance Initial', states={'readonly': True}) + service_maintenance_initial = fields.Boolean( + 'Maintenance Initial', states={'readonly': True} + ) sale_type = fields.Char('Type sale origin') @classmethod @@ -247,29 +352,31 @@ class ShipmentOutReturn(metaclass=PoolMeta): def receive(cls, shipments): Move = Pool().get('stock.move') Equipments = Pool().get('optical_equipment.equipment') - Locations = Pool().get('stock.location') Move.do([m for s in shipments for m in s.incoming_moves]) for s in shipments: for m in s.incoming_moves: - if m.equipment: - equipment = m.equipment - Id = equipment.id - equipment = Equipments.search(['id', '=',Id])[0] - equipment.propietary = s.company.party.id - equipment.propietary_address= s.company.party.addresses[0].id - equipment.location = m.to_location.id - equipment.state="registred" - equipment.save() - + if not m.equipment: + continue + + equipment = m.equipment + Id = equipment.id + equipment = Equipments.search(['id', '=', Id])[0] + equipment.propietary = s.company.party.id + equipment.propietary_address = s.company.party.addresses[0].id + equipment.location = m.to_location.id + equipment.state = 'registred' + equipment.save() + cls.create_inventory_moves(shipments) # Set received state to allow done transition cls.write(shipments, {'state': 'received'}) - to_do = [s for s in shipments - if s.warehouse_storage == s.warehouse_input] + to_do = [ + s for s in shipments if s.warehouse_storage == s.warehouse_input] - if to_do: cls.done(to_do) + + class PickingListDeliveryReport(CompanyReport): __name__ = 'stock.shipment.out.picking_list1' @@ -287,7 +394,7 @@ class PickingListDeliveryReport(CompanyReport): return context - + class CapacitationReport(CompanyReport): __name__ = 'stock.shipment.out.capacitation_note' diff --git a/move.xml b/move.xml index ee7248b..27361cf 100644 --- a/move.xml +++ b/move.xml @@ -2,41 +2,43 @@ - - stock.move - - move_list_shipment - - - stock.move - - move_form - - - maintenance_initial - Maintenance Initial - - - + + + stock.move + + move_list_shipment + + + stock.move + + move_form + + + maintenance_initial + Maintenance Initial + + + Acta Entrega stock.shipment.out stock.shipment.out.picking_list1 optical_equipment/report/Delivery_Certificated.fodt - - + + form_print stock.shipment.out,-1 - - + + Capacitation stock.shipment.out stock.shipment.out.picking_list1 optical_equipment/report/Capacitation.fodt - - + + form_print stock.shipment.out,-1 - + + diff --git a/party.py b/party.py index ab5caed..7533f59 100644 --- a/party.py +++ b/party.py @@ -2,24 +2,27 @@ # this repository contains the full copyright notices and license terms. from trytond.pool import PoolMeta -from trytond.model import ModelSQL, ModelView, fields -from trytond.pyson import Eval, If +from trytond.model import fields +from trytond.pyson import Eval -#from . import equipment -_CUSTOMER_TYPE = [('ips', 'IPS'), - ('optica', 'Optica'), - ('otro', 'Otro')] +_CUSTOMER_TYPE = [("ips", "IPS"), ("optica", "Optica"), ("otro", "Otro")] + class Party(metaclass=PoolMeta): - __name__ = 'party.party' + __name__ = "party.party" customer_type = fields.Selection(_CUSTOMER_TYPE, "Customer Type") - + @classmethod + def default_customer_type(csl): + return "otro" + + class Address(metaclass=PoolMeta): - __name__ = 'party.address' + __name__ = "party.address" campus = fields.Boolean("Campus") - party_related = fields.Many2One('party.party', "Party Related", - states ={ 'invisible': (~Eval("campus"))}) + party_related = fields.Many2One( + "party.party", "Party Related", states={"invisible": (~Eval("campus"))} + ) diff --git a/party.xml b/party.xml index dcf2cd0..3f96eff 100644 --- a/party.xml +++ b/party.xml @@ -2,25 +2,27 @@ - + + party.party party_tree - - + + party.party party_form - - - - party.address - - address_tree - - + + + + party.address + + address_tree + + party.address address_form - + + diff --git a/product.py b/product.py index 826f4fd..84a1a44 100644 --- a/product.py +++ b/product.py @@ -1,182 +1,260 @@ # This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms from trytond.pool import Pool, PoolMeta -from trytond.model import ( - ModelView, ModelSQL, fields, Exclude) +from trytond.model import ModelView, ModelSQL, fields from trytond.pyson import Bool, If, Eval, Id -_RISK = [('n/a', "No aplíca"), - ('uno', 'I'), - ('dosA', 'IIA'), - ('dosB', 'IIB')] +_RISK = [ + ("n/a", "No aplíca"), + ("uno", "I"), + ("dosA", "IIA"), + ("dosB", "IIB")] -_USE = [('', ""), - ('medico', 'Médico'), - ('basico', 'Basico'), - ('apoyo', 'Apoyo')] +_USE = [ + ("", ""), + ("medico", "Médico"), + ("basico", "Basico"), + ("apoyo", "Apoyo")] _BIOMEDICAL_CLASS = [ - ('n/a', "No aplíca"), - ('diagnostico', 'Diagnóstico'), - ('rehabilitación', 'Rehabilitación')] + ("n/a", "No aplíca"), + ("diagnostico", "Diagnóstico"), + ("rehabilitación", "Rehabilitación"), +] _MAIN_TECNOLOGY = [ - ('', ""), - ('mecanico', 'Mecánico'), - ('electrico', 'Electrico'), - ('electronico', 'Electrónico'), - ('hidraulico', 'Hidraulico'), - ('neumatico', 'Neumatico')] + ("", ""), + ("mecanico", "Mecánico"), + ("electrico", "Electrico"), + ("electronico", "Electrónico"), + ("hidraulico", "Hidraulico"), + ("neumatico", "Neumatico"), +] _EQUIPMENT_TYPE = [ - ('', ""), - ('mobiliario_optico', 'Mobiliario óptico'), - ('refraccion', 'Refracción'), - ('medico', 'Medicion'), - ('accesorios', 'Accesorios')] + ("", ""), + ("mobiliario_optico", "Mobiliario óptico"), + ("refraccion", "Refracción"), + ("medico", "Medicion"), + ("accesorios", "Accesorios"), +] -NON_MEASURABLE = ['service'] +NON_MEASURABLE = ["service"] class Template(metaclass=PoolMeta): - 'Template' - __name__ = 'product.template' + "Template" + __name__ = "product.template" - product = fields.Many2One('optical_equipment.maintenance', "Maintenance Activity", - ondelete='CASCADE', ) - equipment = fields.Boolean('It is equipment', - states={'invisible': Eval('type', 'goods') != 'goods', - }) - maintenance_activity = fields.Boolean('Maintenance Activity', - states={'invisible': Eval('type', 'service') != 'service', - 'readonly': If(Eval('equipment', True), True) - | If(Eval('replacement', True), True) - }) - replacement = fields.Boolean('Replacement', - states={'invisible': Eval('type', 'goods') != 'goods', - 'readonly': If(Eval('equipment', True), True) - | If(Eval('maintenance_activity', True), True) - }) + product = fields.Many2One( + "optical_equipment.maintenance", + "Maintenance Activity", + ondelete="CASCADE", + ) + equipment = fields.Boolean( + "It is equipment", + states={ + "invisible": Eval("type", "goods") != "goods", + }, + ) + maintenance_activity = fields.Boolean( + "Maintenance Activity", + states={ + "invisible": Eval("type", "service") != "service", + "readonly": If(Eval("equipment", True), True) + | If(Eval("replacement", True), True), + }, + ) + replacement = fields.Boolean( + "Replacement", + states={ + "invisible": Eval("type", "goods") != "goods", + "readonly": If(Eval("equipment", True), True) + | If(Eval("maintenance_activity", True), True), + }, + ) - maintenance_required = fields.Boolean('Miantenance Required', - states={'invisible': (Eval('type', 'goods') != 'goods')}) - equipment_type = fields.Selection(_EQUIPMENT_TYPE, 'Equipment type', - states={'required': Eval('equipment', False)}) - risk = fields.Selection(_RISK, 'Type risk') - use = fields.Selection(_USE, 'Use', - states={'required': Eval('equipment', False)}, - depends={'equipment'}) - biomedical_class = fields.Selection(_BIOMEDICAL_CLASS, 'Biomedical Class', - states={'required': Eval('equipment', False)}) - main_tecnology = fields.Selection(_MAIN_TECNOLOGY, 'Main tecnology', - states={'required': Eval('equipment', False)}) + maintenance_required = fields.Boolean( + "Miantenance Required", + states={ + "invisible": (Eval("type", "goods") != "goods")} + ) + equipment_type = fields.Selection( + _EQUIPMENT_TYPE, "Equipment type", + states={"required": Eval("equipment", False)} + ) + risk = fields.Selection(_RISK, "Type risk") + use = fields.Selection( + _USE, + "Use", + states={"required": Eval("equipment", False)}, + depends={"equipment"}, + ) + biomedical_class = fields.Selection( + _BIOMEDICAL_CLASS, + "Biomedical Class", + states={"required": Eval("equipment", False)}, + ) + main_tecnology = fields.Selection( + _MAIN_TECNOLOGY, "Main tecnology", + states={"required": Eval("equipment", False)}) calibration = fields.Boolean("Apply calibration") - observation = fields.Text('Observation') + observation = fields.Text("Observation") # Mark, Category, Reference - mark_category = fields.Many2One('product.category', 'Mark', - domain=[('parent', '=', None), - ('accounting', '=', False)], - states={'required': Eval('equipment', False)}) - model_category = fields.Many2One('product.category', "Model", - domain=[('parent', '=', Eval('mark_category')), - ('accounting', '=', False)], - states={'required': Eval('equipment', False)}) - reference_category = fields.Many2One('product.category', "Reference", - domain=[('parent', '=', Eval('model_category'))],) + mark_category = fields.Many2One( + "product.category", + "Mark", + domain=[("parent", "=", None), ("accounting", "=", False)], + states={"required": Eval("equipment", False)}, + ) + model_category = fields.Many2One( + "product.category", + "Model", + domain=[ + ("parent", "=", Eval("mark_category")), + ("accounting", "=", False)], + states={"required": Eval("equipment", False)}) + reference_category = fields.Many2One( + "product.category", + "Reference", + states={ + "required": (Eval("equipment", True)) + }, + domain=[("parent", "=", Eval("model_category"))]) - # Iformation Equipment - origin_country = fields.Many2One('country.country', "Origin Country") - refurbish = fields.Boolean('Refurbish') + # Information Equipment + origin_country = fields.Many2One("country.country", "Origin Country") + refurbish = fields.Boolean("Refurbish") software_required = fields.Boolean("Software Required") - software_version = fields.Char("Software version", - states={'invisible': If(~Eval('software_required'), True)}, - depends={'software_required'}) + software_version = fields.Char( + "Software version", + states={"invisible": ~Eval("software_required", True)}, + depends={"software_required"}, + ) # These are measurements required for the equipments, are in this place # for manage of class 'product.template' temperature_min = fields.Float("Temp Min") temperature_max = fields.Float("Temp Max") - temperature_uom = fields.Many2One('product.uom', 'Temperature UOM', - domain=[ - ('category', '=', Id( - 'optical_equipment', "uom_cat_temperature"))], - states={'invisible': If(Eval('temperature_min') is None, True)}) + temperature_uom = fields.Many2One( + "product.uom", + "Temperature UOM", + domain=[ + ("category", "=", Id("optical_equipment", "uom_cat_temperature"))], + states={'invisible': (~Eval('temperature_min', True))} + ) frequency = fields.Float("Frequency") - frequency_uom = fields.Many2One('product.uom', "Frequency UOM", - domain=[ - ('category', '=', Id( - 'optical_equipment', 'uom_cat_frequency'))], - states={'invisible': If(Eval('frequency') is None, True)} - ) + frequency_uom = fields.Many2One( + "product.uom", + "Frequency UOM", + domain=[ + ("category", "=", Id("optical_equipment", "uom_cat_frequency"))], + states={'invisible': (Eval('frequency', True))}) moisture_min = fields.Float("Moisture Min") moisture_max = fields.Float("Moisture Max") - moisture_uom = fields.Many2One('product.uom', "Moisture UOM", - domain=[ - ('category', '=', Id( - 'optical_equipment', 'uom_cat_relative_humedity'))], - states={'invisible': If(Eval('moisture_min') is None, True)}, - ) + moisture_uom = fields.Many2One( + "product.uom", + "Moisture UOM", + domain=[ + ("category", "=", Id( + "optical_equipment", "uom_cat_relative_humedity")) + ], + states={'invisible': (~Eval('moisture_min', True))}) electrical_equipment = fields.Boolean("Electrical Equipment") - frequency = fields.Float("Frequency", - states={'invisible': ~Bool(Eval('electrical_equipment'))}) - frequency_uom = fields.Many2One('product.uom', "Frequency UOM", - domain=[ - ('category', '=', Id( - 'optical_equipment', 'uom_cat_frequency'))], - states={'invisible': If(Eval('frequency') is None, True) | - ~Eval('electrical_equipment', True)}, - ) - voltageAC = fields.Float("Voltage AC", - states={'invisible': ~Bool(Eval('electrical_equipment'))}) - voltageAC_uom = fields.Many2One('product.uom', "Voltage AC UOM", - domain=[ - ('category', '=', Id( - 'optical_equipment', 'uom_cat_electrical_tension'))], - states={'invisible': If(Eval('voltageAC') is None, True) | - ~Eval('electrical_equipment', True)}, - ) - voltageDC = fields.Float("Voltage DC", - states={'invisible': ~Bool(Eval('electrical_equipment'))}) - voltageDC_uom = fields.Many2One('product.uom', "Voltage DC UOM", - domain=[ - ('category', '=', Id( - 'optical_equipment', 'uom_cat_electrical_tension'))], - states={'invisible': If(Eval('voltageDC') is None, True) | - ~Eval('electrical_equipment', True)},) - + frequency = fields.Float( + "Frequency", states={"invisible": ~Bool(Eval("electrical_equipment"))} + ) + frequency_uom = fields.Many2One( + "product.uom", + "Frequency UOM", + domain=[ + ("category", "=", Id("optical_equipment", "uom_cat_frequency"))], + states={'invisible': (~Eval('frequency', True)) + | ~Eval('electrical_equipment', True)},) + voltageAC = fields.Float( + "Voltage AC", states={"invisible": ~Bool(Eval("electrical_equipment"))} + ) + voltageAC_uom = fields.Many2One( + "product.uom", + "Voltage AC UOM", + domain=[ + ("category", "=", Id( + "optical_equipment", "uom_cat_electrical_tension")) + ], + states={'invisible': (~Eval('voltageAC', True)) + | ~Eval('electrical_equipment', True)}, + ) + voltageDC = fields.Float( + "Voltage DC", states={"invisible": ~Bool(Eval("electrical_equipment"))} + ) + voltageDC_uom = fields.Many2One( + "product.uom", + "Voltage DC UOM", + domain=[ + ("category", "=", Id( + "optical_equipment", "uom_cat_electrical_tension"))], + states={'invisible': ( + ~Eval('voltageDC', True) | ~Eval( + 'electrical_equipment', True))},) useful_life = fields.Integer("Useful life") warranty = fields.Integer("Warranty") # calibration parameters - use_pattern = fields.Many2One('optical_equipment.use_pattern', "Use Pattern", ondelete='RESTRICT', - states={'required': Eval('calibration', True)}) - measuring_range = fields.Selection([ - ('dioptria', "Dioptria"), - ('mmhg', "mmHg")], "Rango de Medición") - MEP = fields.Float("MEP", states={'required': Eval('calibration', False)},) - uncertainy_pattern = fields.Float("Uncertainy Pattern", states={'required': Eval('calibration', True)}, - help="Agregar valores separados por ',' Ej:-5,+5,-10,+10") - k_pattern = fields.Char("K Pattern", states={'required': Eval('calibration', False)}, - help="Agregar valores separados por ',' Ej:-5,+5,-10,+10") - k_pattern_list = fields.One2Many('optical_equipment.product_pattern', 'product', "List of patterns K", - states={'required': Eval('calibration', False)},) - resolution_type = fields.Selection([('', ""), - ('analoga', "Analoga"), - ('digital', "Digital")], "Resolution Type", - states={'required': Eval('calibration', False)},) - d_resolution = fields.Float("Resolution d", - states={'invisible': If(Eval('resolution_type') != 'digital', True)},) - analog_resolution = fields.Float("Analog resolution", - states={'invisible': If(Eval('resolution_type') != 'analoga', True), },) - a_factor_resolution = fields.Float("(a) Resolution", - states={'invisible': If(Eval('resolution_type') != 'analoga', True)},) - Usubi = fields.Integer("Usub i", states={'required': Eval('calibration', False)},) + use_pattern = fields.Many2One( + "optical_equipment.use_pattern", + "Use Pattern", + ondelete="RESTRICT", + states={"required": Eval("calibration", True)},) + measuring_range = fields.Selection( + [("dioptria", "Dioptria"), + ("mmhg", "mmHg")], "Rango de Medición") + MEP = fields.Float( + "MEP", + states={"required": Eval("calibration", False)},) + uncertainy_pattern = fields.Float( + "Uncertainy Pattern", + states={"required": Eval("calibration", True)}, + help="Agregar valores separados por ',' Ej:-5,+5,-10,+10",) + k_pattern = fields.Char( + "K Pattern", + states={"required": Eval("calibration", False)}, + help="Agregar valores separados por ',' Ej:-5,+5,-10,+10", + ) + k_pattern_list = fields.One2Many( + "optical_equipment.product_pattern", + "product", + "List of patterns K", + states={"required": Eval("calibration", False)}, + ) + resolution_type = fields.Selection( + [("", ""), ("analoga", "Analoga"), ("digital", "Digital")], + "Resolution Type", + states={"required": Eval("calibration", False)}, + ) + + d_resolution = fields.Float( + "Resolution d", + states={ + 'invisible': (Eval('resolution_type') != 'digital'), + 'required': (Eval('resolution_type') == 'digital') + }) + analog_resolution = fields.Float( + "Analog resolution", + states={'invisible': (Eval('resolution_type') != 'analoga'), }, + ) + a_factor_resolution = fields.Float( + "(a) Resolution", + states={'invisible': (Eval('resolution_type') != 'analoga')}, + ) + Usubi = fields.Integer("Usub i", states={ + "required": Eval("calibration", False)}) # maintenance activities - initial_operation = fields.Boolean("Verificación inicial de funcionamiento") + initial_operation = fields.Boolean( + "Verificación inicial de funcionamiento") check_equipment = fields.Boolean("Revisión del Equipo") check_electric_system = fields.Boolean("Revisión del sistema electríco") clean_int_ext = fields.Boolean("Limpieza interior y exterior") @@ -184,30 +262,43 @@ class Template(metaclass=PoolMeta): optical = fields.Boolean("Optical") check_calibration = fields.Boolean("Verificar Calibración") + # Maintenance activites Preventives + preventive_activities = fields.Text("Preventive Activities") + @classmethod def view_attributes(cls): return super(Template, cls).view_attributes() + [ - ('//page[@id="features"]', 'states', { - 'invisible': ~Eval('equipment'), }), - ('//page[@id="calibration"]', 'states', { - 'invisible': ~Eval('calibration')},), - ('//page[@id="maintenance_activities"]', 'states', { - 'invisible': ~Eval('maintenance_required')},) - + ( + "//page[@id='features']", + "states", + { + "invisible": ~Eval("equipment"), + }, + ), + ( + "//page[@id='calibration']", + "states", + {"invisible": ~Eval("calibration")}, + ), + ( + "//page[@id='maintenance_activities']", + "states", + {"invisible": ~Eval("maintenance_required")}, + ), ] @classmethod - @fields.depends('measuring_range') + @fields.depends("measuring_range") def default_measuring_range(self): - return 'dioptria' + return "dioptria" @classmethod - @fields.depends('temperature_min') + @fields.depends("temperature_min") def default_temperature_min(self): return 0 @classmethod - @fields.depends('temperature_max') + @fields.depends("temperature_max") def default_temperature_max(self): return 0 @@ -232,13 +323,13 @@ class Template(metaclass=PoolMeta): return 0 def default_risk(): - return 'n/a' + return "n/a" def default_use(): return None def default_biomedical_class(): - return 'n/a' + return "n/a" def default_main_tecnology(): return None @@ -249,68 +340,66 @@ class Template(metaclass=PoolMeta): def default_refurbish(): return False - def default_refurbish(): - return False - @classmethod - @fields.depends('temperature') + @fields.depends("temperature") def default_temperature_uom(self): pool = Pool() - Measurements = pool.get('product.uom') - measurement = Measurements.search(['name', '=', 'Celsius'])[0].id + Measurements = pool.get("product.uom") + measurement = Measurements.search(["name", "=", "Celsius"])[0].id return measurement @classmethod def default_frequency_uom(cls): pool = Pool() - Measurements = pool.get('product.uom') - measurement = Measurements.search(['name', '=', 'Hertz'])[0].id + Measurements = pool.get("product.uom") + measurement = Measurements.search(["name", "=", "Hertz"])[0].id return measurement @classmethod def default_moisture_uom(cls): pool = Pool() - Measurements = pool.get('product.uom') - measurement = Measurements.search(['name', '=', 'Relative Humedity'])[0].id + Measurements = pool.get("product.uom") + measurement = Measurements.search( + ["name", "=", "Relative Humedity"])[0].id return measurement @classmethod def default_voltageAC_uom(cls): pool = Pool() - Measurements = pool.get('product.uom') - measurement = Measurements.search(['name', '=', 'Volt'])[0].id + Measurements = pool.get("product.uom") + measurement = Measurements.search(["name", "=", "Volt"])[0].id return measurement @classmethod def default_voltageDC_uom(cls): pool = Pool() - Measurements = pool.get('product.uom') - measurement = Measurements.search(['name', '=', 'Volt'])[0].id + Measurements = pool.get("product.uom") + measurement = Measurements.search(["name", "=", "Volt"])[0].id return measurement - @fields.depends('voltageDC', 'voltageDC_uom') + @fields.depends("voltageDC", "voltageDC_uom") def on_change_voltageDC_uom(self): pool = Pool() - Measurements = pool.get('product.uom') - measurement = Measurements.search(['name', '=', 'Volt'])[0].id + Measurements = pool.get("product.uom") + measurement = Measurements.search(["name", "=", "Volt"])[0].id self.voltageDC_uom = measurement - @fields.depends('software_required', 'software_version') - def on_change_with_sotfware_required(self): - self.software_version = None + # @fields.depends('software_required', 'software_version') + # def on_change_with_sotfware_required(self): + # self.software_version = None - @fields.depends('d_resolution', 'analog_resolution', 'a_factor_resolution') + @fields.depends("d_resolution", "analog_resolution", "a_factor_resolution") def on_change_resolution_type(self): self.d_resolution = None self.analog_resolution = None self.a_factor_resolution = None - @fields.depends('equipment', 'replacement') + @fields.depends("equipment", "replacement") def on_change_equipment(self): if self.equipment: self.replacement = False @@ -320,24 +409,24 @@ class Template(metaclass=PoolMeta): self.model_category = None self.reference_category = None self.equipment_type = None - self.risk = 'n/a' - self.biomedical_class = 'n/a' - self.use = '' + self.risk = "n/a" + self.biomedical_class = "n/a" + self.use = "" self.useful_life = 0 self.warranty = 0 - @fields.depends('mark_category', 'model_category', 'reference_category') + @fields.depends("mark_category", "model_category", "reference_category") def on_change_mark_category(self): if not self.mark_category: self.model_category = None self.reference_category = None - @fields.depends('model_category', 'reference_category') + @fields.depends("model_category", "reference_category") def on_change_model_category(self): if not self.model_category: self.reference_category = None - @fields.depends('electrical_equipment') + @fields.depends("electrical_equipment") def on_change_electrical_equipment(self): if self.electrical_equipment: self.voltageAC = 0 @@ -350,13 +439,13 @@ class Template(metaclass=PoolMeta): default = {} else: default = default.copy() - default.setdefault('code', None) - default.setdefault('images', None) + default.setdefault("code", None) + default.setdefault("images", None) return super().copy(templates, default=default) class Product(metaclass=PoolMeta): - __name__ = 'product.product' + __name__ = "product.product" @classmethod def copy(cls, products, default=None): @@ -365,15 +454,15 @@ class Product(metaclass=PoolMeta): else: default = default.copy() - default.setdefault('suffix_code', None) - default.setdefault('code', None) - default.setdefault('poduct', None) - default.setdefault('images', None) + default.setdefault("suffix_code", None) + default.setdefault("code", None) + default.setdefault("poduct", None) + default.setdefault("images", None) return super().copy(products, default=default) class Image(metaclass=PoolMeta): - __name__ = 'product.image' + __name__ = "product.image" @classmethod def __setup__(cls): @@ -385,23 +474,30 @@ class Image(metaclass=PoolMeta): default = {} else: default = default.copy() - default.setdefault('template', None) - default.setdefault('product', None) + default.setdefault("template", None) + default.setdefault("product", None) return super().copy(images, default=default) class UsePattern(ModelSQL, ModelView): "Use Pattern" - __name__ = 'optical_equipment.use_pattern' - _rec_name = 'name_pattern' + __name__ = "optical_equipment.use_pattern" + _rec_name = "name_pattern" - name_pattern = fields.Char('Name Pattern', required=True) + name_pattern = fields.Char("Name Pattern", required=True) class Pattern(ModelSQL, ModelView): "Pattern K of equipment" - __name__ = 'optical_equipment.product_pattern' - _rec_name = 'pattern' + __name__ = "optical_equipment.product_pattern" + _rec_name = "rec_name" - product = fields.Many2One('product.template', "Template", ondelete='CASCADE') + product = fields.Many2One( + "product.template", "Template", ondelete="CASCADE") pattern = fields.Float("Value Pattern") + rec_name = fields.Function(fields.Char("rec_name"), "get_rec_name") + + @fields.depends("pattern") + def get_rec_name(self, name): + if self.pattern: + return str(self.pattern) diff --git a/product.xml b/product.xml index d5f15e2..6666cd9 100644 --- a/product.xml +++ b/product.xml @@ -43,13 +43,13 @@ product.template - template_form - - - product.template - - template_tree + template_form + + + + + optical_equipment.product_pattern form diff --git a/purchase.py b/purchase.py index 525e3e7..2ca17e9 100644 --- a/purchase.py +++ b/purchase.py @@ -1,18 +1,16 @@ -#This file is part of Tryton. The COPYRIGHT file at the top level of -#txhis repository contains the full copyright notices and license terms +# This file is part of Tryton. The COPYRIGHT file at the top level of +# txhis repository contains the full copyright notices and license terms from trytond.pool import Pool, PoolMeta -from trytond.model import ( - ModelView, ModelSQL, Workflow, fields) -from trytond.modules.product import price_digits, round_price +from trytond.model import ModelView, fields +from trytond.modules.product import round_price from trytond.pyson import Eval, If, Bool from trytond.exceptions import UserError -from trytond.i18n import gettext from trytond.transaction import Transaction class Purchase(metaclass=PoolMeta): - "Purchase Equipment" - __name__ = 'purchase.purchase' + "Purchase Equipment" + __name__ = "purchase.purchase" equipment_create = fields.Boolean("Equipments Creates", readonly=True) @@ -20,10 +18,11 @@ class Purchase(metaclass=PoolMeta): def __setup__(cls): super(Purchase, cls).__setup__() cls._buttons.update({ - 'create_equipments': { - 'invisible': If(Eval('invoice_state') == 'none', True) | - If(Bool(Eval('equipment_create')), True), - 'depends': ['invoice_state'],}}) + "create_equipments": { + "invisible": If(Eval("invoice_state") == "none", True) + | If(Bool(Eval("equipment_create")), True), + "depends": ["invoice_state"]} + }) @classmethod def copy(cls, purchases, default=None): @@ -32,15 +31,15 @@ class Purchase(metaclass=PoolMeta): else: default = default.copy() - default.setdefault('number', None) - default.setdefault('invoice_state', 'none') - default.setdefault('invoices_ignored', None) - default.setdefault('moves', None) - default.setdefault('shipment_state', 'none') - default.setdefault('purchase_date', None) - default.setdefault('quoted_by') - default.setdefault('confirmed_by') - default.setdefault('equipment_create', None) + default.setdefault("number", None) + default.setdefault("invoice_state", "none") + default.setdefault("invoices_ignored", None) + default.setdefault("moves", None) + default.setdefault("shipment_state", "none") + default.setdefault("purchase_date", None) + default.setdefault("quoted_by") + default.setdefault("confirmed_by") + default.setdefault("equipment_create", None) return super(Purchase, cls).copy(purchases, default=default) @@ -49,96 +48,124 @@ class Purchase(metaclass=PoolMeta): def create_equipments(cls, purchases): if len(purchases) == 1: pool = Pool() - Equipment = pool.get('optical_equipment.equipment') - Config = pool.get('optical_equipment.configuration') - config = Config(1) - + Equipment = pool.get("optical_equipment.equipment") + purchase = purchases[0] - + for line in purchase.lines: - if line.product.equipment: - for i in range(0,int(line.quantity)): - equipment = Equipment( - company=line.company, - location=line.to_location, - equipment_type=line.product.equipment_type, - propietary=line.company.party, - propietary_address=line.address_equipment, - product=line.product, - model_category=line.product.model_category, - mark_category=line.product.mark_category, - reference_category=line.product.reference_category, - useful_life=line.product.useful_life if line.product.useful_life else 0, - calibration=True if line.product.calibration else False, - warranty=line.product.warranty if line.product.warranty else 0, - risk=line.product.risk, - origin_country=line.product.origin_country, - use=line.product.use, - biomedical_class=line.product.biomedical_class, - refurbish=line.refurbish, - serial=None if line.quantity > 1 else line.serial_equipment, - health_register=line.health_register, - software_version=line.product.software_version if line.product.software_required else "No Aplica", - maintenance_frequency="none", - purchase_origin=line, - ) - equipment.save() - else: + if not line.product.equipment: continue + + for i in range(0, int(line.quantity)): + equipment = Equipment( + company=line.company, + location=line.to_location, + equipment_type=line.product.equipment_type, + propietary=line.company.party, + propietary_address=line.address_equipment, + product=line.product, + model_category=line.product.model_category, + mark_category=line.product.mark_category, + reference_category=line.product.reference_category, + useful_life=( + line.product.useful_life if + line.product.useful_life else 0 + ), + calibration=( + True if line.product.calibration + else False), + warranty=( + line.product.warranty if + line.product.warranty else 0), + risk=line.product.risk, + origin_country=line.product.origin_country, + use=line.product.use, + biomedical_class=line.product.biomedical_class, + refurbish=line.refurbish, + serial=(None if line.quantity > 1 + else line.serial_equipment), + health_register=line.health_register, + software_version=( + line.product.software_version + if line.product.software_required + else "No Aplica" + ), + maintenance_frequency="none", + purchase_origin=line, + ) + equipment.save() + purchase.equipment_create = True cls.save(purchases) else: raise UserError(str("Número de Compras Invalido.")) - + class Line(metaclass=PoolMeta): "Purchase Line Equipment" - __name__ = 'purchase.line' + __name__ = "purchase.line" - origin_country = fields.Many2One('country.country',"Origin Country") - address_equipment = fields.Many2One('party.address', "Direccion", required=True) - serial_equipment = fields.Char("Serial", size=None, - states={'invisible': If(Eval('quantity') > 1, True)}) + origin_country = fields.Many2One("country.country", "Origin Country") + address_equipment = fields.Many2One( + "party.address", "Direccion", required=True) + serial_equipment = fields.Char( + "Serial", + size=None, + # states={'invisible': Decimal(Eval('quantity')) > 1} + ) refurbish = fields.Boolean("Refurbish") - product_equipment = fields.Boolean("Product Equipment", - states={'readonly': True}) + product_equipment = fields.Boolean( + "Product Equipment", states={"readonly": True}) software_version = fields.Char("Software version") - health_register = fields.Char("Health Register", states={'required': Eval('product_equipment', True)}) + health_register = fields.Char( + "Health Register", states={"required": Eval("product_equipment", True)} + ) - @classmethod def default_address_equipment(cls): pool = Pool() - Company = pool.get('company.company') - company = Transaction().context.get('company') + Company = pool.get("company.company") + company = Transaction().context.get("company") if company: company = Company(company) - + return company.party.addresses[0].id @fields.depends( - 'product', 'quantity', methods=['_get_context_purchase_price']) + "product", "quantity", methods=["_get_context_purchase_price"]) def on_change_quantity(self): - Product = Pool().get('product.product') - if self.quantity > 1 or self.quantity < 1: + Product = Pool().get("product.product") + if self.quantity and (self.quantity > 1 or self.quantity < 1): self.serial_equipment = None - + if not self.product: self.serial_equipment = None return with Transaction().set_context(self._get_context_purchase_price()): - self.unit_price = Product.get_purchase_price([self.product], - abs(self.quantity or 0))[self.product.id] + self.unit_price = Product.get_purchase_price( + [self.product], abs(self.quantity or 0) + )[self.product.id] if self.unit_price: self.unit_price = round_price(self.unit_price) - @fields.depends('product', 'unit', 'purchase', '_parent_purchase.party', - '_parent_purchase.invoice_party', 'product_supplier', 'product_equipment', - 'serial_equipment', 'software_version', 'health_register', - 'refurbish', methods=['compute_taxes', 'compute_unit_price', - '_get_product_supplier_pattern']) + @fields.depends( + "product", + "unit", + "purchase", + "_parent_purchase.party", + "_parent_purchase.invoice_party", + "product_supplier", + "product_equipment", + "serial_equipment", + "software_version", + "health_register", + "refurbish", + methods=[ + "compute_taxes", + "compute_unit_price", + "_get_product_supplier_pattern",]) def on_change_product(self): if not self.product: self.product_equipment = False @@ -164,27 +191,30 @@ class Line(metaclass=PoolMeta): if not self.unit or self.unit.category != category: self.unit = self.product.purchase_uom - product_suppliers = list(self.product.product_suppliers_used( - **self._get_product_supplier_pattern())) + product_suppliers = list( + self.product.product_suppliers_used( + **self._get_product_supplier_pattern()) + ) if len(product_suppliers) == 1: - self.product_supplier, = product_suppliers + (self.product_supplier,) = product_suppliers elif (self.product_supplier - and self.product_supplier not in product_suppliers): + and self.product_supplier not in product_suppliers): self.product_supplier = None self.unit_price = self.compute_unit_price() - self.type = 'line' + self.type = "line" self.amount = self.on_change_with_amount() if self.product.equipment: self.product_equipment = True self.address_equipment = self.default_address_equipment() if self.product.software_required: self.software_version = self.product.software_version - + @classmethod def view_attributes(cls): return super(Line, cls).view_attributes() + [ - ('//page[@id="equipment"]', 'states', { - 'invisible': ~Eval('product_equipment', True), - })] + ('//page[@id="equipment"]', "states", + { + "invisible": ~Eval("product_equipment", True), + })] diff --git a/report/CVS_Equipments.fodt b/report/CVS_Equipments.fodt index e926931..b101231 100644 --- a/report/CVS_Equipments.fodt +++ b/report/CVS_Equipments.fodt @@ -1,24 +1,24 @@ - 2022-10-25T06:02:43.8293012812023-09-24T21:44:32.432879655PT7H36M53S117LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2 + 2022-10-25T06:02:43.8293012812023-12-07T09:26:08.440308489PT8H27M16S154LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 66063 + 81645 0 - 35003 + 36117 16425 true false view2 - 7507 - 74096 + 8065 + 93624 0 - 66063 - 35001 - 82487 + 81645 + 36116 + 98069 0 1 false @@ -73,7 +73,7 @@ true true false - 2916995 + 3331053 true false false @@ -161,7 +161,7 @@ - + @@ -262,10 +262,10 @@ - + - + @@ -322,16 +322,16 @@ - + $ - + - $ - + @@ -411,18 +411,18 @@ - + - + - + - + @@ -446,14 +446,39 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -547,303 +572,414 @@ - - + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -947,66 +1083,80 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + @@ -1020,6 +1170,13 @@ + + + + + + + @@ -1032,7 +1189,7 @@ - + /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoM DAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsN FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAAR @@ -1583,6 +1740,7 @@ + @@ -1593,240 +1751,270 @@ - <for each="maintenance in records"> - <for each="equipment in maintenance.lines"> - HOJA DE VIDA DISPOSITIVOS BIOMEDICOS + <for each="maintenance in records"> + <for each="equipment in maintenance.lines"> + HOJA DE VIDA DISPOSITIVOS BIOMEDICOS - Fecha de generación: <maintenance.estimated_agended.date()> + Fecha de generación: <maintenance.estimated_agended.date()> - Código Equipo: <equipment.equipment.code> + Código Equipo: <equipment.equipment.code> - - INFORMACIÓN DEL PROPIETARIO + + INFORMACIÓN DEL PROPIETARIO - Nombre / Razón Social: <equipment.propietary.name> - Ciudad: <equipment.propietary_address.subdivision_municipality.name> - Teléfono: <equipment.propietary.phone> - Movil: <equipment.propietary.mobile> + Nombre / Razón Social: <equipment.propietary.name> + Ciudad: <equipment.propietary_address.subdivision_municipality.name> + Teléfono: <equipment.propietary.phone> + Movil: <equipment.propietary.mobile> - Tipo Documento: <"NIT" if equipment.propietary.tax_identifier.type=="31" else "CC"> - Documento: <equipment.propietary.tax_identifier.code> - Dirección: <equipment.propietary_address.street> + Tipo Documento: <"NIT" if equipment.propietary.tax_identifier.type=="31" else "CC"> + Documento: <equipment.propietary.tax_identifier.code> + Dirección: <equipment.propietary_address.street> - - INFORMACIÓN DEL DISPOSITIVO + INFORMACIÓN DEL DISPOSITIVO - Nombre del Dispositivo: <equipment.equipment.product.name> - Restaurado: <"SI" if equipment.equipment.refurbish else "NO"> - Marca: <equipment.equipment.mark_category.name> - Modelo: <equipment.equipment.model_category.name> - Referencia: <equipment.equipment.reference_category.name> - País de Origen: <equipment.equipment.origin_country.name> - Registro Invima: <equipment.equipment.health_register> - Software Versión: <equipment.equipment.software_version if equipment.equipment.software_version != "" else "No Aplica"> + Nombre del Dispositivo: <equipment.equipment.product.name> + Restaurado: <"SI" if equipment.equipment.refurbish else "NO"> + Marca: <equipment.equipment.mark_category.name> + Modelo: <equipment.equipment.model_category.name> + Referencia: <equipment.equipment.reference_category.name> + País de Origen: <equipment.equipment.origin_country.name> + Registro Invima: <equipment.equipment.health_register> + Software Versión: <equipment.equipment.software_version if equipment.equipment.software_version != "" else "No Aplica"> - Serial: <equipment.equipment.serial> - <choose test=""> - <when test="equipment.equipment.product.risk == 'uno'"> - Clase de Riesgo: I - </when> - <when test="equipment.equipment.product.risk == 'dosA'"> - Clase de Riesgo: IIA - </when> - <when test="equipment.equipment.product.risk == 'dosB'"> - Clase de Riesgo: IIB - </when> - <otherwise test=""> - Clase de Riesgo: No Aplíca - </otherwise> - </choose> - Clase Biomédica: <equipment.equipment.biomedical_class> - <choose test=""> - <when test="equipment.equipment.equipment_type == 'mobiliario_optico'"> - Tipo: Mobiliario óptico - </when> - <when test="equipment.equipment.equipment_type == 'refraccion'"> - Tipo: Refracción - </when> - <when test="equipment.equipment.equipment_type == 'medicion'"> - Tipo: Medición - </when> - <when test="equipment.equipment.equipment_type == 'accesorios'"> - Tipo: Accesorios - </when> - <otherwise test=""> - Tipo: n/a - </otherwise> - </choose> - <choose test=""> - <when test="equipment.equipment.use == 'medico'"> - Uso: Médico - </when> - <when test="equipment.equipment.use == 'basico'"> - Uso: Básico - </when> - <when test="equipment.equipment.use == 'apoyo'"> - Uso: Apoyo - </when> - <otherwise test=""> - Uso: n/a - </otherwise> - </choose> - Garantía: <equipment.equipment.warranty>Meses - Vida Útil: <equipment.equipment.useful_life>Meses + Serial: <equipment.equipment.serial> + <choose test=""> + <when test="equipment.equipment.product.risk == 'uno'"> + Clase de Riesgo: I + </when> + <when test="equipment.equipment.product.risk == 'dosA'"> + Clase de Riesgo: IIA + </when> + <when test="equipment.equipment.product.risk == 'dosB'"> + Clase de Riesgo: IIB + </when> + <otherwise test=""> + Clase de Riesgo: No Aplíca + </otherwise> + </choose> + Clase Biomédica: <equipment.equipment.biomedical_class> + <choose test=""> + <when test="equipment.equipment.equipment_type == 'mobiliario_optico'"> + Tipo: Mobiliario óptico + </when> + <when test="equipment.equipment.equipment_type == 'refraccion'"> + Tipo: Refracción + </when> + <when test="equipment.equipment.equipment_type == 'medicion'"> + Tipo: Medición + </when> + <when test="equipment.equipment.equipment_type == 'accesorios'"> + Tipo: Accesorios + </when> + <otherwise test=""> + Tipo: n/a + </otherwise> + </choose> + <choose test=""> + <when test="equipment.equipment.use == 'medico'"> + Uso: Médico + </when> + <when test="equipment.equipment.use == 'basico'"> + Uso: Básico + </when> + <when test="equipment.equipment.use == 'apoyo'"> + Uso: Apoyo + </when> + <otherwise test=""> + Uso: n/a + </otherwise> + </choose> + Garantía: <equipment.equipment.warranty>Meses + Vida Útil: <equipment.equipment.useful_life>Meses - + - CARACTERÍSTICAS TÉCNICAS + CARACTERÍSTICAS TÉCNICAS - Características Físicas + Características Físicas - Peso + Peso - <str(equipment.equipment.product.weight) + " "+ equipment.equipment.product.weight_uom.symbol if equipment.equipment.product.weight else ""> + <str(equipment.equipment.product.weight) + " "+ equipment.equipment.product.weight_uom.symbol if equipment.equipment.product.weight else ""> - Medidas + Medidas - <"Longitud:" +str(equipment.equipment.product.length) + " "+ equipment.equipment.product.length_uom.symbol+" Altura: "+str(equipment.equipment.product.height) + " "+ equipment.equipment.product.height_uom.symbol + " Ancho: "+str(equipment.equipment.product.width) + " "+ equipment.equipment.product.width_uom.symbol if equipment.equipment.product.width else ""> + <"Longitud:" +str(equipment.equipment.product.length) + " "+ equipment.equipment.product.length_uom.symbol+" Altura: "+str(equipment.equipment.product.height) + " "+ equipment.equipment.product.height_uom.symbol + " Ancho: "+str(equipment.equipment.product.width) + " "+ equipment.equipment.product.width_uom.symbol if equipment.equipment.product.width else ""> - Características Eléctricas + Características Eléctricas - Voltaje (VAC) + Voltaje (VAC) - <str(equipment.equipment.product.voltageAC) + " "+ equipment.equipment.product.voltageAC_uom.symbol if equipment.equipment.product.voltageAC else "No Aplica"> + <str(equipment.equipment.product.voltageAC) + " "+ equipment.equipment.product.voltageAC_uom.symbol if equipment.equipment.product.voltageAC else "No Aplica"> - Voltaje (VDC) + Voltaje (VDC) - <str(equipment.equipment.product.voltageDC) + " "+ equipment.equipment.product.voltageDC_uom.symbol if equipment.equipment.product.voltageDC else "No Aplica"> + <str(equipment.equipment.product.voltageDC) + " "+ equipment.equipment.product.voltageDC_uom.symbol if equipment.equipment.product.voltageDC else "No Aplica"> - Condiciones Ambientales + Condiciones Ambientales - Tem Min Uso + Tem Min Uso - <str(equipment.equipment.product.temperature_min) + " "+ equipment.equipment.product.temperature_uom.symbol if equipment.equipment.product.temperature_min else ""> + <str(equipment.equipment.product.temperature_min) + " "+ equipment.equipment.product.temperature_uom.symbol if equipment.equipment.product.temperature_min else ""> - Tem Max Uso + Tem Max Uso - <str(equipment.equipment.product.temperature_max) + " "+ equipment.equipment.product.temperature_uom.symbol if equipment.equipment.product.temperature_max else ""> + <str(equipment.equipment.product.temperature_max) + " "+ equipment.equipment.product.temperature_uom.symbol if equipment.equipment.product.temperature_max else ""> - Hum Min Uso + Hum Min Uso - <str(equipment.equipment.product.moisture_min) + " "+ equipment.equipment.product.moisture_uom.symbol if equipment.equipment.product.moisture_min else ""> + <str(equipment.equipment.product.moisture_min) + " "+ equipment.equipment.product.moisture_uom.symbol if equipment.equipment.product.moisture_min else ""> - Hum Max Uso + Hum Max Uso - <str(equipment.equipment.product.moisture_max) + " "+ equipment.equipment.product.moisture_uom.symbol if equipment.equipment.product.moisture_max else ""> + <str(equipment.equipment.product.moisture_max) + " "+ equipment.equipment.product.moisture_uom.symbol if equipment.equipment.product.moisture_max else ""> - Requiere Calibración + Requiere Calibración - <"SI" if equipment.equipment.calibration else "NO"> + <"SI" if equipment.equipment.calibration else "NO"> - Frecuencia de Mantenimiento Preventivo y calibración (Sí aplíca) + Frecuencia de Mantenimiento Preventivo y calibración (Sí aplíca) - <equipment.equipment.maintenance_frequency>Meses + <equipment.equipment.maintenance_frequency>Meses - + - + - - Texto 1: + + Texto 1: - - - El equipo funciona cumpliendo los parámetros establecidos por el fabricante - - <equipment.technician_responsible> - INVIMA : <equipment.invima> + El equipo funciona cumpliendo los parámetros establecidos por el fabricante + + + + + + <if test="equipment.technician_signature"> + + + + Texto 2: + + + </if> + + + + + + + + <equipment.technician_responsible> + + + RECIBIDO A SATISFACCIÓN + + + + + INVIMA : <equipment.invima> + + + NOMBRE: + + + + - - - - </for> - </for> + + + + </for> + </for> \ No newline at end of file diff --git a/report/CV_Equipment.fodt b/report/CV_Equipment.fodt index 99f76dc..5f5a5d3 100644 --- a/report/CV_Equipment.fodt +++ b/report/CV_Equipment.fodt @@ -1,10 +1,10 @@ - 2022-10-25T06:02:43.8293012812023-09-24T21:46:15.542111557PT6H6M29S73LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2 + 2022-10-25T06:02:43.8293012812023-12-05T17:36:27.946420947PT6H37M38S83LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 68790 + 68190 0 35003 16425 @@ -13,12 +13,12 @@ view2 - 8948 - 78482 + 7507 + 82993 0 - 68790 + 68190 35001 - 85213 + 84614 0 1 false @@ -73,7 +73,7 @@ true true false - 2788432 + 2914870 true false false @@ -262,10 +262,10 @@ - + - + @@ -449,6 +449,18 @@ + + + + + + + + + + + + @@ -530,209 +542,279 @@ - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -890,7 +972,12 @@ - + + + + + + @@ -1477,254 +1564,287 @@ <for each="equipment in records"> - HOJA DE VIDA DISPOSITIVOS BIOMEDICOS + HOJA DE VIDA DISPOSITIVOS BIOMEDICOS - Fecha de generación: <format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', equipment.company.timezone)> + Fecha de generación: <format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', equipment.company.timezone)> - Código Equipo: <equipment.code> + Código Equipo: <equipment.code> - - INFORMACIÓN DEL PROPIETARIO + + INFORMACIÓN DEL PROPIETARIO - Nombre / Razón Social: <equipment.propietary.name> - Ciudad: <equipment.propietary_address.subdivision_municipality.name> - Teléfono: <equipment.propietary.phone> - Movil: <equipment.propietary.mobile> + Nombre / Razón Social: <equipment.propietary.name> + Ciudad: <equipment.propietary_address.subdivision_municipality.name> + Teléfono: <equipment.propietary.phone> + Movil: <equipment.propietary.mobile> - Tipo Documento: <"NIT" if equipment.propietary.tax_identifier.type=="31" else "CC"> - Documento: <equipment.propietary.tax_identifier.code> - Dirección: <equipment.propietary_address.street> + Tipo Documento: <"NIT" if equipment.propietary.tax_identifier.type=="31" else "CC"> + Documento: <equipment.propietary.tax_identifier.code> + Dirección: <equipment.propietary_address.street> - - INFORMACIÓN DEL DISPOSITIVO + + INFORMACIÓN DEL DISPOSITIVO - Nombre del Dispositivo: <equipment.product.name> - Restaurado: <"SI" if equipment.refurbish else "NO"> - Marca: <equipment.mark_category.name> - Modelo: <equipment.model_category.name> - Referencia: <equipment.reference_category.name> - País de Origen: <equipment.origin_country.name> - Registro Invima: <equipment.health_register> - Software Versión: <equipment.software_version if equipment.software_version != "" else "No Aplica"> + Nombre del Dispositivo: <equipment.product.name> + Restaurado: <"SI" if equipment.refurbish else "NO"> + Marca: <equipment.mark_category.name> + Modelo: <equipment.model_category.name> + Referencia: <equipment.reference_category.name> + País de Origen: <equipment.origin_country.name> + Registro Invima: <equipment.health_register> + Software Versión: <equipment.software_version if equipment.software_version != "" else "No Aplica"> - Serial: <equipment.serial> - <choose test=""> - <when test="equipment.product.risk == 'uno'"> - Clase de Riesgo: I - </when> - <when test="equipment.product.risk == 'dosA'"> - Clase de Riesgo: IIA - </when> - <when test="equipment.product.risk == 'dosB'"> - Clase de Riesgo: IIB - </when> - <otherwise test=""> - Clase de Riesgo: No Aplíca - </otherwise> - </choose> - <choose test=""> - <when test="equipment.use == 'medico'"> - Uso: Médico - </when> - <when test="equipment.use == 'basico'"> - Uso: Básico - </when> - <when test="equipment.use == 'apoyo'"> - Uso: Apoyo - </when> - <otherwise test=""> - Uso: n/a - </otherwise> - </choose> - Clase Biomédica: <equipment.biomedical_class> - <choose test=""> - <when test="equipment.equipment_type == 'mobiliario_optico'"> - Tipo: Mobiliario óptico - </when> - <when test="equipment.equipment_type == 'refraccion'"> - Tipo: Refracción - </when> - <when test="equipment.equipment_type == 'medicion'"> - Tipo: Medición - </when> - <when test="equipment.equipment_type == 'accesorios'"> - Tipo: Accesorios - </when> - <otherwise test=""> - Tipo: n/a - </otherwise> - </choose> - <choose test=""> - <when test="equipment.use == 'medico'"> - Uso: Médico - </when> - <when test="equipment.use == 'basico'"> - Uso: Básico - </when> - <when test="equipment.use == 'apoyo'"> - Uso: Apoyo - </when> - <otherwise test=""> - Uso: n/a - </otherwise> - </choose> - Garantía: <equipment.warranty>Meses - Vida Útil: <equipment.useful_life>Meses + Serial: <equipment.serial> + <choose test=""> + <when test="equipment.product.risk == 'uno'"> + Clase de Riesgo: I + </when> + <when test="equipment.product.risk == 'dosA'"> + Clase de Riesgo: IIA + </when> + <when test="equipment.product.risk == 'dosB'"> + Clase de Riesgo: IIB + </when> + <otherwise test=""> + Clase de Riesgo: No Aplíca + </otherwise> + </choose> + <choose test=""> + <when test="equipment.use == 'medico'"> + Uso: Médico + </when> + <when test="equipment.use == 'basico'"> + Uso: Básico + </when> + <when test="equipment.use == 'apoyo'"> + Uso: Apoyo + </when> + <otherwise test=""> + Uso: n/a + </otherwise> + </choose> + Clase Biomédica: <equipment.biomedical_class> + <choose test=""> + <when test="equipment.equipment_type == 'mobiliario_optico'"> + Tipo: Mobiliario óptico + </when> + <when test="equipment.equipment_type == 'refraccion'"> + Tipo: Refracción + </when> + <when test="equipment.equipment_type == 'medicion'"> + Tipo: Medición + </when> + <when test="equipment.equipment_type == 'accesorios'"> + Tipo: Accesorios + </when> + <otherwise test=""> + Tipo: n/a + </otherwise> + </choose> + <choose test=""> + <when test="equipment.use == 'medico'"> + Uso: Médico + </when> + <when test="equipment.use == 'basico'"> + Uso: Básico + </when> + <when test="equipment.use == 'apoyo'"> + Uso: Apoyo + </when> + <otherwise test=""> + Uso: n/a + </otherwise> + </choose> + Garantía: <equipment.warranty>Meses + Vida Útil: <equipment.useful_life>Meses - + - CARACTERÍSTICAS TÉCNICAS + CARACTERÍSTICAS TÉCNICAS - Características Físicas + Características Físicas - Peso + Peso - <str(equipment.product.weight) + " "+ equipment.product.weight_uom.symbol if equipment.product.weight else ""> + <str(equipment.product.weight) + " "+ equipment.product.weight_uom.symbol if equipment.product.weight else ""> - Medidas + Medidas - <"Longitud:" +str(equipment.product.length) + " "+ equipment.product.length_uom.symbol+" Altura: "+str(equipment.product.height) + " "+ equipment.product.height_uom.symbol + " Ancho: "+str(equipment.product.width) + " "+ equipment.product.width_uom.symbol if equipment.product.width else ""> + <"Longitud:" +str(equipment.product.length) + " "+ equipment.product.length_uom.symbol+" Altura: "+str(equipment.product.height) + " "+ equipment.product.height_uom.symbol + " Ancho: "+str(equipment.product.width) + " "+ equipment.product.width_uom.symbol if equipment.product.width else ""> - Características Eléctricas + Características Eléctricas - Voltaje (VAC) + Voltaje (VAC) - <str(equipment.product.voltageAC) + " "+ equipment.product.voltageAC_uom.symbol if equipment.product.voltageAC else "No Aplica"> + <str(equipment.product.voltageAC) + " "+ equipment.product.voltageAC_uom.symbol if equipment.product.voltageAC else "No Aplica"> - Voltaje (VDC) + Voltaje (VDC) - <str(equipment.product.voltageDC) + " "+ equipment.product.voltageDC_uom.symbol if equipment.product.voltageDC else "No Aplica"> + <str(equipment.product.voltageDC) + " "+ equipment.product.voltageDC_uom.symbol if equipment.product.voltageDC else "No Aplica"> - Condiciones Ambientales + Condiciones Ambientales - Tem Min Uso + Tem Min Uso - <str(equipment.product.temperature_min) + " "+ equipment.product.temperature_uom.symbol if equipment.product.temperature_min else ""> + <str(equipment.product.temperature_min) + " "+ equipment.product.temperature_uom.symbol if equipment.product.temperature_min else ""> - Tem Max Uso + Tem Max Uso - <str(equipment.product.temperature_max) + " "+ equipment.product.temperature_uom.symbol if equipment.product.temperature_max else ""> + <str(equipment.product.temperature_max) + " "+ equipment.product.temperature_uom.symbol if equipment.product.temperature_max else ""> - Hum Min Uso + Hum Min Uso - <str(equipment.product.moisture_min) + " "+ equipment.product.moisture_uom.symbol if equipment.product.moisture_min else ""> + <str(equipment.product.moisture_min) + " "+ equipment.product.moisture_uom.symbol if equipment.product.moisture_min else ""> - Hum Max Uso + Hum Max Uso - <str(equipment.product.moisture_max) + " "+ equipment.product.moisture_uom.symbol if equipment.product.moisture_max else ""> + <str(equipment.product.moisture_max) + " "+ equipment.product.moisture_uom.symbol if equipment.product.moisture_max else ""> - Requiere Calibración + Requiere Calibración - <"SI" if equipment.calibration else "NO"> + <"SI" if equipment.calibration else "NO"> - Frecuencia de Mantenimiento Preventivo y calibración (Sí aplíca) + Frecuencia de Mantenimiento Preventivo y calibración (Sí aplíca) - <equipment.maintenance_frequency>Meses + <equipment.maintenance_frequency>Meses - + - + Texto 1: - - - - - - - - - El equipo funciona cumpliendo los parámetros establecidos por el fabricante + + + + + + + + + El equipo funciona cumpliendo los parámetros establecidos por el fabricante - <equipment.technician_responsible> - INVIMA : <equipment.invima> - </for> + + + + + + <if test="equipment.get_technician_signature()"> + + + + Texto 2: + + + </if> + + + + + + + + <equipment.technician_responsible> + + + RECIBIDO A SATISFACCION + + + + + INVIMA : <equipment.invima> + + + NOMBRE + + + + </for> \ No newline at end of file diff --git a/report/Calibration.fodt b/report/Calibration.fodt index 77cd3cb..95e2aa4 100644 --- a/report/Calibration.fodt +++ b/report/Calibration.fodt @@ -1,24 +1,24 @@ - 2022-10-11T16:28:51.1019484802023-09-24T21:21:08.221447105PT5H1M34S67LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2 + 2022-10-11T16:28:51.1019484802023-12-14T09:36:36.387762590PT5H6M23S71LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 59584 + 100088 0 - 24502 - 11499 + 25284 + 10982 true false view2 - 3455 - 103734 + 4664 + 105863 0 - 59584 - 24500 - 71081 + 100088 + 25282 + 111069 0 1 false @@ -73,7 +73,7 @@ true true false - 5156974 + 5511444 true false false @@ -164,7 +164,7 @@ - + @@ -267,10 +267,10 @@ - + - + @@ -518,6 +518,24 @@ + + + + + + + + + + + + + + + + + + @@ -605,219 +623,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -825,10 +630,291 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1006,10 +1092,18 @@ + + + + + + + + @@ -1037,7 +1131,7 @@ - + /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgK CgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkL EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAAR @@ -1713,7 +1807,7 @@ - Pagina 3 + Pagina 4 @@ -1732,10 +1826,10 @@ - Fecha: <format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)> + Fecha: <format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)> - Consecutivo: <maintenance.code> + Consecutivo: <maintenance.code> @@ -1743,11 +1837,11 @@ - Señores: <maintenance.propietary.name> - Documento: <"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"><maintenance.propietary.tax_identifier.code> - Ciudad: <maintenance.propietary_address.subdivision_municipality.name> - Dirección: <maintenance.propietary_address.street> - + Señores: <maintenance.propietary.name> + Documento: <"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"><maintenance.propietary.tax_identifier.code> + Ciudad: <maintenance.propietary_address.subdivision_municipality.name> + Dirección: <maintenance.propietary_address.street> + @@ -1755,7 +1849,7 @@ - Asunto: Certificación de calibración + Asunto: Certificación de calibración @@ -1764,53 +1858,53 @@ - Método de calibración: Comparación - Rango de medición: <maintenance.equipment.product.measuring_range> - <choose test=""> - <when test="maintenance.equipment.product.use_pattern.id==1"> - Patrón utilizado: Ojo Esquemático - </when> - <when test="maintenance.equipment.product.use_pattern.id==2"> - Patrón utilizado: Lentes de Prueba - </when> - <when test="maintenance.equipment.product.use_pattern.id==3"> - Patrón utilizado: Pesas de Calibración - </when> - <when test="maintenance.equipment.product.use_pattern.id==4"> - Patrón utilizado: Esferas de Calibración - </when> - <otherwise test=""> - Patrón utilizado: Barras de Calibración - </otherwise> - </choose> - <choose test=""> - <when test="maintenance.equipment.use == 'medico'"> - Uso: Médico - </when> - <when test="maintenance.equipment.use == 'basico'"> - Uso: Básico - </when> - <when test="maintenance.equipment.use == 'apoyo'"> - Uso: Apoyo - </when> - <otherwise test=""> - Uso: n/a - </otherwise> - </choose> - División de escala: <"0.25D" if maintenance.equipment.product.measuring_range == "dioptria" else "1mmHg"> - Sitio de medición: Consultorio + Método de calibración: Comparación + Rango de medición: <maintenance.equipment.product.measuring_range> + <choose test=""> + <when test="maintenance.equipment.product.use_pattern.id==1"> + Patrón utilizado: Ojo Esquemático + </when> + <when test="maintenance.equipment.product.use_pattern.id==2"> + Patrón utilizado: Lentes de Prueba + </when> + <when test="maintenance.equipment.product.use_pattern.id==3"> + Patrón utilizado: Pesas de Calibración + </when> + <when test="maintenance.equipment.product.use_pattern.id==4"> + Patrón utilizado: Esferas de Calibración + </when> + <otherwise test=""> + Patrón utilizado: Barras de Calibración + </otherwise> + </choose> + <choose test=""> + <when test="maintenance.equipment.use == 'medico'"> + Uso: Médico + </when> + <when test="maintenance.equipment.use == 'basico'"> + Uso: Básico + </when> + <when test="maintenance.equipment.use == 'apoyo'"> + Uso: Apoyo + </when> + <otherwise test=""> + Uso: n/a + </otherwise> + </choose> + División de escala: <"0.25D" if maintenance.equipment.product.measuring_range == "dioptria" else "1mmHg"> + Sitio de medición: Consultorio - Equipo: <maintenance.equipment.product.name> - Marca: <maintenance.equipment.mark_category.name> - Modelo: <maintenance.equipment.model_category.name> - Referencia: <maintenance.equipment.reference_category.name> - Serie: <maintenance.equipment.serial> + Equipo: <maintenance.equipment.product.name> + Marca: <maintenance.equipment.mark_category.name> + Modelo: <maintenance.equipment.model_category.name> + Referencia: <maintenance.equipment.reference_category.name> + Serie: <maintenance.equipment.serial> - - + + @@ -1818,7 +1912,7 @@ - Condiciones Ambientales + Condiciones Ambientales @@ -1826,88 +1920,88 @@ - Temperatura Min + Temperatura Min - <str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else ""> + <str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else ""> - Humedad Min + Humedad Min - <str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else ""> + <str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else ""> - Temperatura Max + Temperatura Max - <str(maintenance.temperature_max) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_max else ""> + <str(maintenance.temperature_max) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_max else ""> - Humedad Max + Humedad Max - <str(maintenance.moisture_max) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_max else ""> + <str(maintenance.moisture_max) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_max else ""> - - + + - Medida Tomadas + Medida Tomadas - Patrón + Patrón - Valor en Equipo + Valor en Equipo - % Error + % Error - <for each="line in maintenance.lines_calibration"> + <for each="line in maintenance.lines_calibration"> - <line.value_patterns.pattern> + <line.value_patterns.pattern> - <line.value_equipment> + <line.value_equipment> - <line.mistake_rate>% + <line.mistake_rate>% - </for> + </for> - + Resultados de calibración: - La incertidumbre expandida de la medición se ha obtenido multiplicando la incertidumbre combinada por el factor de cobertura K calculado conforme a los grados de libertad y el factor de Student para una probabilidad del 95% - + La incertidumbre expandida de la medición se ha obtenido multiplicando la incertidumbre combinada por el factor de cobertura K calculado conforme a los grados de libertad y el factor de Student para una probabilidad del 95% + @@ -1916,52 +2010,52 @@ - <"Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg"> + <"Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg"> - Desviación estándar + Desviación estándar - Promedio + Promedio - Incertidumbre Expandida + Incertidumbre Expandida - Estado + Estado - <for each="line in maintenance.calibration_total"> + <for each="line in maintenance.calibration_total"> - + - <line.diopter> + <line.diopter> - <line.dev_std> + <line.dev_std> - <line.mean> + <line.mean> - <line.uncertain_expanded> + <line.uncertain_expanded> - <line.state> + <line.state> - </for> + </for> @@ -1970,7 +2064,7 @@ - Este certificado de calibración no podrá ser reproducido. + Este certificado de calibración no podrá ser reproducido. @@ -1978,18 +2072,50 @@ - + - + Texto 1: - Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados. - - - <maintenance.technician_responsible> - INVIMA : <maintenance.invima> - </for> + Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados. + + + + + + + <if test="maintenance.technician_signature"> + + + + Texto 2: + + + </if> + + + + + + + + <maintenance.technician_responsible> + + + RECIBIDO A SATISFACCION + + + + + INVIMA :<maintenance.invima> + + + NOMBRE + + + + </for> \ No newline at end of file diff --git a/report/Calibrations.fodt b/report/Calibrations.fodt index 5a18e72..33309de 100644 --- a/report/Calibrations.fodt +++ b/report/Calibrations.fodt @@ -1,24 +1,24 @@ - 2022-10-11T16:28:51.1019484802023-09-24T21:38:02.659407388PT5H43M50S81LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2 + 2022-10-11T16:28:51.1019484802023-12-07T21:31:35.869619380PT5H49M19S84LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 92710 + 100797 0 - 49003 + 50564 22994 true false view2 - 15706 - 104103 + 16487 + 123301 0 - 92710 - 49001 - 115702 + 100797 + 50562 + 123790 0 1 false @@ -73,7 +73,7 @@ true true false - 5372653 + 5492138 true false false @@ -150,7 +150,6 @@ - @@ -267,10 +266,10 @@ - + - + @@ -518,6 +517,21 @@ + + + + + + + + + + + + + + + @@ -590,66 +604,34 @@ - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + @@ -657,43 +639,35 @@ - - - - - - - - - + - + - + - + - + - + - + - + - + @@ -701,7 +675,7 @@ - + @@ -709,103 +683,114 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + - - - - - + - + + + + + + + + + + + + - + - + - + - + @@ -813,92 +798,97 @@ - + - - - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - + + + - + + + + + - + - - + + + + + + + + + + + + + + + @@ -937,165 +927,143 @@ - - - - + - + - + - + - - - - - - - + - + - + - + - + - - - - - - - + - + + + + - + - - - - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - + + + + + + @@ -1123,7 +1091,7 @@ - + /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgK CgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkL EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAAR @@ -1812,18 +1780,18 @@ - <for each="service in records"> - <for each="maintenance in service.lines"> - <if test="maintenance.equipment.product.calibration"> + <for each="service in records"> + <for each="maintenance in service.lines"> + <if test="maintenance.equipment.product.calibration"> - Fecha: <service.estimated_agended.date()> + Fecha: <service.estimated_agended.date()> - Consecutivo: <maintenance.code> + Consecutivo: <maintenance.code> @@ -1831,11 +1799,11 @@ - Señores: <maintenance.propietary.name> - Documento: <"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"><maintenance.propietary.tax_identifier.code> - Ciudad: <maintenance.propietary_address.subdivision_municipality.name> - Dirección: <maintenance.propietary_address.street> - + Señores: <maintenance.propietary.name> + Documento: <"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"><maintenance.propietary.tax_identifier.code> + Ciudad: <maintenance.propietary_address.subdivision_municipality.name> + Dirección: <maintenance.propietary_address.street> + @@ -1843,7 +1811,7 @@ - Asunto: Certificación de calibración + Asunto: Certificación de calibración @@ -1852,53 +1820,53 @@ - Método de calibración: Comparación - Rango de medición: <maintenance.equipment.product.measuring_range> - <choose test=""> - <when test="maintenance.equipment.product.use_pattern.id==1"> - Patrón utilizado: Ojo Esquemático - </when> - <when test="maintenance.equipment.product.use_pattern.id==2"> - Patrón utilizado: Lentes de Prueba - </when> - <when test="maintenance.equipment.product.use_pattern.id==3"> - Patrón utilizado: Pesas de Calibración - </when> - <when test="maintenance.equipment.product.use_pattern.id==4"> - Patrón utilizado: Esferas de Calibración - </when> - <otherwise test=""> - Patrón utilizado: Barras de Calibración - </otherwise> - </choose> - <choose test=""> - <when test="maintenance.equipment.use == 'medico'"> - Uso: Médico - </when> - <when test="maintenance.equipment.use == 'basico'"> - Uso: Básico - </when> - <when test="maintenance.equipment.use == 'apoyo'"> - Uso: Apoyo - </when> - <otherwise test=""> - Uso: n/a - </otherwise> - </choose> - División de escala: <"0.25D" if maintenance.equipment.product.measuring_range == "dioptria" else "1mmHg"> - Sitio de medición: Consultorio + Método de calibración: Comparación + Rango de medición: <maintenance.equipment.product.measuring_range> + <choose test=""> + <when test="maintenance.equipment.product.use_pattern.id==1"> + Patrón utilizado: Ojo Esquemático + </when> + <when test="maintenance.equipment.product.use_pattern.id==2"> + Patrón utilizado: Lentes de Prueba + </when> + <when test="maintenance.equipment.product.use_pattern.id==3"> + Patrón utilizado: Pesas de Calibración + </when> + <when test="maintenance.equipment.product.use_pattern.id==4"> + Patrón utilizado: Esferas de Calibración + </when> + <otherwise test=""> + Patrón utilizado: Barras de Calibración + </otherwise> + </choose> + <choose test=""> + <when test="maintenance.equipment.use == 'medico'"> + Uso: Médico + </when> + <when test="maintenance.equipment.use == 'basico'"> + Uso: Básico + </when> + <when test="maintenance.equipment.use == 'apoyo'"> + Uso: Apoyo + </when> + <otherwise test=""> + Uso: n/a + </otherwise> + </choose> + División de escala: <"0.25D" if maintenance.equipment.product.measuring_range == "dioptria" else "1mmHg"> + Sitio de medición: Consultorio - Equipo: <maintenance.equipment.product.name> - Marca: <maintenance.equipment.mark_category.name> - Modelo: <maintenance.equipment.model_category.name> - Referencia: <maintenance.equipment.reference_category.name> - Serie: <maintenance.equipment.serial> + Equipo: <maintenance.equipment.product.name> + Marca: <maintenance.equipment.mark_category.name> + Modelo: <maintenance.equipment.model_category.name> + Referencia: <maintenance.equipment.reference_category.name> + Serie: <maintenance.equipment.serial> - - + + @@ -1906,7 +1874,7 @@ - Condiciones Ambientales + Condiciones Ambientales @@ -1914,88 +1882,88 @@ - Temperatura Min + Temperatura Min - <str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else ""> + <str(maintenance.temperature_min) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_min else ""> - Humedad Min + Humedad Min - <str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else ""> + <str(maintenance.moisture_min) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_min else ""> - Temperatura Max + Temperatura Max - <str(maintenance.temperature_max) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_max else ""> + <str(maintenance.temperature_max) + str(maintenance.temperature_uom.symbol) if maintenance.temperature_max else ""> - Humedad Max + Humedad Max - <str(maintenance.moisture_max) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_max else ""> + <str(maintenance.moisture_max) + str(maintenance.equipment.product.moisture_uom.symbol) if maintenance.moisture_max else ""> - - + + - Medida Tomadas + Medida Tomadas - Patrón + Patrón - Valor en Equipo + Valor en Equipo - % Error + % Error - <for each="line in maintenance.lines_calibration"> + <for each="line in maintenance.lines_calibration"> - <line.value_patterns.pattern> + <line.value_patterns.pattern> - <line.value_equipment> + <line.value_equipment> - <line.mistake_rate>% + <line.mistake_rate>% - </for> + </for> - - Resultados de calibración: - - La incertidumbre expandida de la medición se ha obtenido multiplicando la incertidumbre combinada por el factor de cobertura K calculado conforme a los grados de libertad y el factor de Student para una probabilidad del 95% - + + Resultados de calibración: + + La incertidumbre expandida de la medición se ha obtenido multiplicando la incertidumbre combinada por el factor de cobertura K calculado conforme a los grados de libertad y el factor de Student para una probabilidad del 95% + @@ -2004,52 +1972,52 @@ - <"Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg"> + <"Dioptría" if maintenance.equipment.product.measuring_range == "dioptria" else "mmHg"> - Desviación estándar + Desviación estándar - Promedio + Promedio - Incertidumbre Expandida + Incertidumbre Expandida - Estado + Estado - <for each="line in maintenance.calibration_total"> + <for each="line in maintenance.calibration_total"> - + - <line.diopter> + <line.diopter> - <line.dev_std> + <line.dev_std> - <line.mean> + <line.mean> - <line.uncertain_expanded> + <line.uncertain_expanded> - <line.state> + <line.state> - </for> + </for> @@ -2058,7 +2026,7 @@ - Este certificado de calibración no podrá ser reproducido. + Este certificado de calibración no podrá ser reproducido. @@ -2066,23 +2034,56 @@ - + - + Texto 1: - Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados. - - - - <maintenance.technician_responsible> - INVIMA : <maintenance.invima> - - - </if> - </for> - </for> + Este certificado expresa fielmente el resultado de las mediciones realizadas. Los resultados contenidos en el presente certificado se refieren al momento y condiciones en que se realizaron las mediciones. No nos responsabilizamos de los perjuicios que pueden derivarse del uso inadecuado de los instrumentos calibrados. El usuario es responsable de la recalibración de sus instrumentos a intervalos apropiados. + + + + + + + + <if test="maintenance.technician_signature"> + + + + Texto 2: + + + </if> + + + + + + + + <maintenance.technician_responsible> + + + RECIBIDO A SATISFACCION + + + + + INVIMA :<maintenance.invima> + + + NOMBRE + + + + + + + </if> + </for> + </for> \ No newline at end of file diff --git a/report/Contract.fodt b/report/Contract.fodt index f0c8f4e..ae2ae44 100644 --- a/report/Contract.fodt +++ b/report/Contract.fodt @@ -1,142 +1,144 @@ - 2022-09-12T08:15:04.9771019302023-06-05T14:19:19.427278694PT3H9M36S44LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2 + 2022-09-12T08:15:04.9771019302023-12-07T21:03:25.235654802PT3H22M57S49LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 68792 + 66146 0 - 14406 - 13594 + 31604 + 14372 true false view2 - 2598 - 75874 + 16258 + 69737 0 - 68792 - 14404 - 82384 + 66146 + 31602 + 80516 0 0 false 160 false false - false false + false + false - false - false - false + true + false true - true + false true - true - true + false false 0 - false - false + true + false + false + false false - true + false false + true false - true false - false + + false false - false + true + false + false true - true true false - false - false false false + false false false - false true - false - false - true - false - false - false - true - 0 - 1 - true - false - - high-resolution - true - - - false - false - true - false - false - true - true - false - true - - true - 4033500 - - true - false - true - true - 0 - - false - false - false - true false - true - 0 - false - false - false - false - true - false - false - false - - false - false - true - false - false - false - false - false - false - false - false - false + false 1809088 - false - false - false - false + false + + true + false + false + 4052772 + true + false + false + false + 1 + true + true + false + false + true + false + true + true + true + true false - true + true + 0 + false - true + true + false + true + + 0 + true + false + false + false + high-resolution true + true + false + false + true + false + false + false + false + true + + true + false + true + false + + false + false + false + true + false + false + false + false + false + false + false + false + false + false + 0 + true + false + + true @@ -159,8 +161,8 @@ - - + + @@ -262,10 +264,10 @@ - + - + @@ -322,16 +324,16 @@ - + $ - + - $ - + @@ -743,7 +745,19 @@ - + + + + + + + + + + + + + @@ -1740,7 +1754,7 @@ - + Entre los suscritos a saber EL CONTRATANTE Y EL CONTRATISTA, hemos convenido celebrar el presente CONTRATO DE PRESTACIÓN DE SERVICIOS DE MANTENIMIENTO TÉCNICO PREVENTIVO, que se regulará por las cláusulas que a continuación se expresan y en general por las disposiciones del Código Civil y Código de Comercio aplicables a la materia de qué trata este contrato: PRIMERA - OBJETO: El CONTRATISTA se obliga para con El CONTRATANTE a ejecutar los trabajos y demás actividades propias del servicio contratado, el cual debe realizar de conformidad con las condiciones y cláusulas del presente documento y que consistirá en el mantenimiento técnico preventivo sin repuestos a los equipos de optometría de propiedad del CONTRATANTE los cuales se encuentran relacionados e identificados en el anexo 1 del presente documento. @@ -1782,8 +1796,8 @@ Para constancia, el presente Contrato es suscrito en la ciudad de Bogotá el día <subscription.start_date>, en dos (2) ejemplares de igual valor, cada uno de ellos con destino a cada una de las Partes. - - + EL CONTRATISTAEL CONTRATANTE + iVBORw0KGgoAAAANSUhEUgAABA4AAAI+CAYAAAA8dEjXAAKLKElEQVR4nOz9B4Bd13UeCn97 n3PvnV4ADHolwQawgypUBWXKsmRZcgMSx3qOXCIlTpzELY5f/j+Did9L3OTYUiyHcpEtK3YC qFik1QtAkaIosYoEwAIQvc8Mps9t55z91lp7n5kLYFBIAkRbH3lw5557et3ft9f6Vuycg0Kh @@ -4875,27 +4889,20 @@ gg== - EL CONTRATISTAEL CONTRATANTE + - - - - + - + JESÚS ANTONIO GIIRALDO<subscription.party.name> - CC 80.173.191 DE BOGOTÁ NIT/CC <subscription.party.tax_identifier.code> + CC 80.173.191 DE BOGOTÁ NIT/CC <subscription.party.tax_identifier.code> REPRESENTANTE LEGAL SMART VISION S.A.S NIT 901091201-1 - - - - ANEXO 1 LISTADO DE EQUIPOS CONTEMPLADOS EN EL CONTRATO @@ -4944,7 +4951,6 @@ - </for> diff --git a/report/Maintenance_History.fodt b/report/Maintenance_History.fodt index 0ccddf1..f912c0d 100644 --- a/report/Maintenance_History.fodt +++ b/report/Maintenance_History.fodt @@ -1,142 +1,144 @@ - 2022-10-11T16:28:51.1019484802023-04-10T01:18:25.767368426PT3H46M8S54LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2 + 2022-10-11T16:28:51.1019484802023-12-14T09:43:16.528107048PT4H3M7S65LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 0 + 16937 0 - 35003 - 15688 + 22985 + 9514 true false view2 - 19865 - 6840 + 13399 + 19068 0 - 0 - 35001 - 15686 + 16937 + 22983 + 26450 0 1 false - 140 + 220 false false - false false + false + false - false - false - false + true + false true - true + false true - true - true + false false 0 - false - false + true + false + false + true false - true + false false + true false - true true - false + + true false - false + true + false + true true - true true false - false - false false false + true false false - true true - false - true - false - false - false - false - true - 0 - 1 - true - true - - high-resolution - true - - - false - false - true - false - false - true - true - false - true - - true - 4264415 - - true - false - true - true - 0 - - false - false - false - true false - true - 0 - true - false - true - true - true - false - false - false - - false - false - true - false - true - false - false - false - false - false - false - true + false 2067644 - false - false - true - false + false + + true + true + false + 4876359 + true + false + false + false + 1 + true + true + false + false + true + false + true + true + false + true false - true + true + 0 + false - true + true + false + true + + 0 + true + false + false + false + high-resolution true + true + false + true + true + true + false + false + false + true + + true + false + true + false + + false + false + true + true + true + false + false + false + false + false + false + false + false + false + 0 + true + false + + true @@ -159,7 +161,7 @@ - + @@ -262,10 +264,10 @@ - + - + @@ -322,16 +324,16 @@ - + $ - + - $ - + @@ -440,6 +442,24 @@ + + + + + + + + + + + + + + + + + + @@ -511,51 +531,66 @@ - + + + + + + + + - + - + - + - + - + + + + + - + - + - + - + - + + + + + - + @@ -563,11 +598,31 @@ - + + + + + + + + + + + + + + + + + + + + + - + @@ -575,72 +630,147 @@ - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + - + - + + + + + + + + + - + - + - + + + + + - + + + + + + + + + + + + + + + + + - + - + - + - + - + - - - + + + + + + + + + + + + + + + + + + + + + + @@ -706,45 +836,68 @@ - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + @@ -770,7 +923,7 @@ - + /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgK CgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkL EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAAR @@ -1456,225 +1609,272 @@ - <for each="equipment in records"> - REGISTRO HISTORICO DE MANTENIMIENTO - - INFORMACIÓN DEL DISPOSITIVO + <for each="equipment in records"> + REGISTRO HISTORICO DE MANTENIMIENTO + + INFORMACIÓN DEL DISPOSITIVO - Nombre del Dispositivo: <equipment.product.name> + Nombre del Dispositivo: <equipment.product.name> - Serial: <equipment.serial> + Serial: <equipment.serial> - Restaurado: <"SI" if equipment.refurbish else "NO"> + Restaurado: <"SI" if equipment.refurbish else "NO"> - Clase de Riesgo: <equipment.product.risk> + <choose test=""> + <when test="equipment.product.risk == 'uno'"> + Clase de Riesgo: I + </when> + <when test="equipment.product.risk == 'dosA'"> + Clase de Riesgo: IIA + </when> + <when test="equipment.product.risk == 'dosB'"> + Clase de Riesgo: IIB + </when> + <otherwise test=""> + Clase de Riesgo: No Aplíca + </otherwise> + </choose> - Marca: <equipment.mark_category.name> + Marca: <equipment.mark_category.name> - Clase Biomédica: <equipment.biomedical_class> + Clase Biomédica: <equipment.biomedical_class> - Marca: <equipment.mark_category.name> + Marca: <equipment.mark_category.name> - Tipo: <equipment.equipment_type> + <choose test=""> + <when test="equipment.equipment_type == 'refraccion'"> + Tipo: Refracción + </when> + <otherwise test=""> + Tipo: <equipment.equipment_type> + </otherwise> + </choose> - Referencia: <equipment.reference_category.name> + Referencia: <equipment.reference_category.name> - Uso: <equipment.use> + Uso: <equipment.use> - País de Origen: <equipment.origin_country.name> + País de Origen: <equipment.origin_country.name> - Registro Invima: <equipment.health_register> + Registro Invima: <equipment.health_register> - Software Versión: <equipment.software_version if equipment.software_version != "" else "No Aplica"> + Software Versión: <equipment.software_version if equipment.software_version != "" else "No Aplica"> - - CARACTERÍSTICAS TÉCNICAS + + CARACTERÍSTICAS TÉCNICAS - Características Físicas + Características Físicas - Peso + Peso - <str(equipment.product.weight) + " "+ equipment.product.weight_uom.symbol if equipment.product.weight else ""> + <str(equipment.product.weight) + " "+ equipment.product.weight_uom.symbol if equipment.product.weight else ""> - Medidas + Medidas - <"Longitud:" +str(equipment.product.length) + " "+ equipment.product.length_uom.symbol+" Altura: "+str(equipment.product.height) + " "+ equipment.product.height_uom.symbol + " Ancho: "+str(equipment.product.width) + " "+ equipment.product.width_uom.symbol if equipment.product.width else ""> + <"Longitud:" +str(equipment.product.length) + " "+ equipment.product.length_uom.symbol+" Altura: "+str(equipment.product.height) + " "+ equipment.product.height_uom.symbol + " Ancho: "+str(equipment.product.width) + " "+ equipment.product.width_uom.symbol if equipment.product.width else ""> - Características Eléctricas + Características Eléctricas - Voltaje (VAC) + Voltaje (VAC) - <str(equipment.product.voltageAC) + " "+ equipment.product.voltageAC_uom.symbol if equipment.product.voltageAC else "No Aplica"> + <str(equipment.product.voltageAC) + " "+ equipment.product.voltageAC_uom.symbol if equipment.product.voltageAC else "No Aplica"> - Voltaje (VDC) + Voltaje (VDC) - <str(equipment.product.voltageDC) + " "+ equipment.product.voltageDC_uom.symbol if equipment.product.voltageDC else "No Aplica"> + <str(equipment.product.voltageDC) + " "+ equipment.product.voltageDC_uom.symbol if equipment.product.voltageDC else "No Aplica"> - Condiciones Ambientales + Condiciones Ambientales - Tem Min Uso + Tem Min Uso - <str(equipment.product.temperature_min) + " "+ equipment.product.temperature_uom.symbol if equipment.product.temperature_min else "No Aplica"> + <str(equipment.product.temperature_min) + " "+ equipment.product.temperature_uom.symbol if equipment.product.temperature_min else "No Aplica"> - Tem Max Uso + Tem Max Uso - <str(equipment.product.temperature_max) + " "+ equipment.product.temperature_uom.symbol if equipment.product.temperature_max else "No Aplica"> + <str(equipment.product.temperature_max) + " "+ equipment.product.temperature_uom.symbol if equipment.product.temperature_max else "No Aplica"> - Hum Min Uso + Hum Min Uso - <str(equipment.product.moisture_min) + " "+ equipment.product.moisture_uom.symbol if equipment.product.moisture_min else "No Aplica"> + <str(equipment.product.moisture_min) + " "+ equipment.product.moisture_uom.symbol if equipment.product.moisture_min else "No Aplica"> - Hum Max Uso + Hum Max Uso - <str(equipment.product.moisture_max) + " "+ equipment.product.moisture_uom.symbol if equipment.product.moisture_max else "No Aplica"> + <str(equipment.product.moisture_max) + " "+ equipment.product.moisture_uom.symbol if equipment.product.moisture_max else "No Aplica"> - - + - Fecha + Fecha - Tipo de mantenimiento + Tipo de mantenimiento - N.º del Registro + N.º del Registro - <for each="line in equipment.maintenance_history"> + <for each="line in equipment.maintenance_history"> - - <line.service_maintenance.estimated_agended> + <str(line.service_maintenance.estimated_agended)[:11]> <choose test=""> <when test="line.maintenance_type == 'preventive'"> - Preventivo + Preventivo </when> <when test="line.maintenance_type == 'corrective'"> - Correctivo + Correctivo </when> <otherwise test=""> - Inicial + Inicial </otherwise> - </choose> + </choose> - <line.code> + <line.code> - </for> + </for> - - + - Texto 1: - - - - - - - - - - - </for> + + + + + + + + + + + + + + <if test="equipment.get_technician_signature()"> + + Texto 2: + + + </if> + + + + + + + + <equipment.technician_responsible> + + + RECIBIDO A SATISFACCIÓN + + + + + INVIMA : <equipment.invima> + + + NOMBRE + + + + </for> \ No newline at end of file diff --git a/report/Maintenance_Service.fodt b/report/Maintenance_Service.fodt index d1c1517..311dac1 100644 --- a/report/Maintenance_Service.fodt +++ b/report/Maintenance_Service.fodt @@ -1,24 +1,24 @@ - 2022-11-03T17:09:30.5000787642023-09-24T21:19:00.980634559PT1H39M48S34LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2 + 2022-11-03T17:09:30.5000787642023-12-07T22:30:22.616967086PT2H40M53S64LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 55326 + 48830 0 - 35003 - 15688 + 36117 + 16425 true false view2 - 8804 - 67389 + 9264 + 66677 0 - 55326 - 35001 - 71012 + 48830 + 36116 + 65253 0 1 false @@ -73,7 +73,7 @@ true true false - 2272625 + 3473529 true false false @@ -261,10 +261,10 @@ - + - + @@ -437,18 +437,21 @@ - + - - + + - - + + - + + + + @@ -513,155 +516,321 @@ - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + + + + + + + - + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + - + + + + + - + - + - + - + - + - + - + - + - + - + - + - + + + + + - + - + - + - + - + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + - - - + + + @@ -745,53 +914,85 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -813,7 +1014,7 @@ - + /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoM DAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsN FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAAR @@ -1375,184 +1576,217 @@ <for each="maintenance in records"> - <choose test=""> - <when test="maintenance.maintenance_type == 'initial'"> - REGISTRO DE MANTENIMIENTO PREVENTIVO - </when> - <when test="maintenance.maintenance_type == 'preventive'"> - REGISTRO DE MANTENIMIENTO PREVENTIVO - </when> - <when test="maintenance.maintenance_type == 'corrective'"> - REGISTRO DE MANTENIMIENTO CORRECTIVO - </when> - </choose> - Fecha <format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)> - Consecutivo <maintenance.code> - - INFORMACIÓN DEL PROPIETARIO + <choose test=""> + <when test="maintenance.maintenance_type == 'initial'"> + REGISTRO DE MANTENIMIENTO INICIAL + </when> + <when test="maintenance.maintenance_type == 'preventive'"> + REGISTRO DE MANTENIMIENTO PREVENTIVO + </when> + <when test="maintenance.maintenance_type == 'corrective'"> + REGISTRO DE MANTENIMIENTO CORRECTIVO + </when> + </choose> + Fecha <format_datetime(datetime.datetime.now(),user.language, '%b/%d/%Y', maintenance.company.timezone)> + Consecutivo <maintenance.code> + + INFORMACIÓN DEL PROPIETARIO - Nombre / Razón Social: <maintenance.propietary.name> - Ciudad: <maintenance.propietary_address.subdivision_municipality.name> - Teléfono: <maintenance.propietary.phone> - Movil: <maintenance.propietary.mobile> + Nombre / Razón Social: <maintenance.propietary.name> + Ciudad: <maintenance.propietary_address.subdivision_municipality.name> + Teléfono: <maintenance.propietary.phone> + Movil: <maintenance.propietary.mobile> - Tipo Documento: <"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"> - Documento: <maintenance.propietary.tax_identifier.code> - Dirección: <maintenance.propietary_address.street> + Tipo Documento: <"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"> + Documento: <maintenance.propietary.tax_identifier.code> + Dirección: <maintenance.propietary_address.street> - - INFORMACIÓN DEL DISPOSITIVO + + INFORMACIÓN DEL DISPOSITIVO - Nombre del Dispositivo: <maintenance.equipment.product.name> - Marca: <maintenance.equipment.mark_category.name> - Serial: <maintenance.equipment.serial> + Nombre del Dispositivo: <maintenance.equipment.product.name> + Marca: <maintenance.equipment.mark_category.name> + Serial: <maintenance.equipment.serial> - Modelo: <maintenance.equipment.model_category.name> - Referencia: <maintenance.equipment.reference_category.name> - Registro Invima: <maintenance.equipment.health_register> + Modelo: <maintenance.equipment.model_category.name> + Referencia: <maintenance.equipment.reference_category.name> + Registro Invima: <maintenance.equipment.health_register> - - - <choose test=""> - <when test="maintenance.maintenance_type == 'preventive'"> - Trabajo Realizado - + + + <choose test=""> + <when test="maintenance.maintenance_type == 'preventive' or maintenance.maintenance_type == 'initial'"> - 1. Verificación inicial de funcionamiento: + 1. Verificación inicial de funcionamiento: - <"SI" if maintenance.initial_operation else "NO"> + <"SI APLICA" if maintenance.initial_operation else "NO APLICA"> - 2. Revisión del Equipo: + 2. Revisión del Equipo: - <"SI" if maintenance.check_equipment else "NO"> + <"SI APLICA" if maintenance.check_equipment else "NO APLICA"> - 3. Revisión del sistema eléctrico: + 3. Revisión del sistema eléctrico: - <"SI" if maintenance.check_electric_system else "NO"> + <"SI APLICA" if maintenance.check_electric_system else "NO APLICA"> - 4. Limpieza interior y exterior: + 4. Limpieza interior y exterior: - <"SI" if maintenance.clean_int_ext else "NO"> + <"SI APLICA" if maintenance.clean_int_ext else "NO APLICA"> - 5. Limpieza de lentes y espejos: + 5. Limpieza de lentes y espejos: - <"SI" if maintenance.clean_eyes else "NO"> + <"SI APLICA" if maintenance.clean_eyes else "NO APLICA"> - 6. Verificar Calibración: + 6. Verificar Calibración: - <"SI" if maintenance.check_calibration else "NO"> + <"SI APLICA" if maintenance.check_calibration else "NO APLICA"> - </when> - <when test="maintenance.maintenance_type == 'corrective'"> - Trabajo Realizado + </when> + <when test="maintenance.maintenance_type == 'corrective'"> + Trabajo Realizado - Repuesto + Repuesto - Actividad de Mantenimiento + Actividad de Mantenimiento - Descripción + Descripción - <for each="line in maintenance.maintenance_lines"> + <for each="line in maintenance.maintenance_lines"> - <"X" if line.line_replace else ""> + <"X" if line.line_replace else ""> - <"X" if line.line_maintenance_activity else ""> + <"X" if line.line_maintenance_activity else ""> - <line.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name> - <if test="line.description"> - <for each="description in line.description.split('\n')"> - <description> - </for> - </if> - + <line.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name> + <if test="line.description"> + <for each="description in line.description.split('\n')"> + <description> + </for> + </if> + - </for> + </for> - </when> - </choose> + </when> + </choose> + <choose test=""> + <when test="maintenance.equipment.product.preventive_activities"> + + Actividades Realizadas: + <choose test=""> + <when test="maintenance.maintenance_type != 'initial'"> + <for each="description in (maintenance.equipment.product.preventive_activities or '').split('\n')"> + <description> + </for> + </when> + </choose> + </when> + </choose> Observaciones - <maintenance.description_activity> - - - Fecha del próximo mantenimiento <str(maintenance.next_maintenance)[0:11]> - - - - - - <maintenance.technician_responsible> - INVIMA :<maintenance.invima> + <maintenance.description_activity> + + Fecha del próximo mantenimiento <str(maintenance.next_maintenance)[0:11]> + + + + + + + <if test="maintenance.technician_signature"> + + + + Texto 1: + + </if> + + + + + + + + <maintenance.technician_responsible> + + + RECIBIDO A SATISFACCIÓN + + + + + INVIMA :<maintenance.invima> + + + NOMBRE: - </for> - - + </for> \ No newline at end of file diff --git a/report/Maintenance_Timeline.fodt b/report/Maintenance_Timeline.fodt index 9da2fa6..eee4c7a 100644 --- a/report/Maintenance_Timeline.fodt +++ b/report/Maintenance_Timeline.fodt @@ -1,142 +1,144 @@ - 2022-11-03T17:09:30.5000787642023-05-25T14:08:20.082359739PT1H45M28S33LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2 + 2022-11-03T17:09:30.5000787642023-12-06T16:45:42.581886621PT2H11M15S52LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 4838 + 3766 0 - 24343 - 10869 + 36117 + 16425 true false view2 - 4524 - 10135 + 9264 + 14573 0 - 4838 - 24342 - 15706 + 3766 + 36116 + 20189 0 1 false 140 false false - false false + false + false - false - false - false + true + false true - true + false true - true - true + false false 0 - false - false + true + false + false + true false - true + false false + true false - true true - false + + true false - false + true + false + true true - true true false - false - false false false + true false false - true true - false - true - false - false - false - false - true - 0 - 1 - true - true - - high-resolution - true - - - false - false - true - false - false - true - true - false - true - - true - 1743443 - - true - false - true - true - 0 - - false - false - false - true false - true - 0 - true - false - true - true - true - false - false - false - - false - false - true - false - true - false - false - false - false - false - false - true + false 687431 - false - false - true - false + false + + true + true + false + 2244410 + true + false + false + false + 1 + true + true + false + false + true + false + true + true + false + true false - true + true + 0 + false - true + true + false + true + + 0 + true + false + false + false + high-resolution true + true + false + true + true + true + false + false + false + true + + true + false + true + false + + false + false + true + true + true + false + false + false + false + false + false + false + false + false + 0 + true + false + + true @@ -157,14 +159,14 @@ - - + + - + @@ -175,17 +177,17 @@ - + - + - + @@ -195,16 +197,16 @@ - - + + - - + + @@ -223,8 +225,8 @@ - - + + @@ -233,7 +235,7 @@ - + @@ -241,10 +243,10 @@ - + - + @@ -258,11 +260,12 @@ + - + - + @@ -318,17 +321,17 @@ - - + + $ - + - $ - + @@ -336,235 +339,467 @@ - + - + - + - - - - - - - - - - - - - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - - + - - - + + - + - + - + - - - - - + - + + + + + - + - + - - + + - - + + - - - + + - + - - - + + + + + + + + + + + - + - + - + - + + + + + - + - - - - - - - - - - - - - - + + - - + + - - - - - - - - - + - - - + + + + + + + + + + + - - + + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + - + - + - + - + - + - + - + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -657,29 +892,113 @@ - + - + - + - + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + @@ -690,12 +1009,13 @@ + - + /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoM DAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsN FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAAR @@ -1225,30 +1545,30 @@ - <if test="company and company.header"> - <for each="line in company.header.split('\n')"> - <line> - </for> - </if> - <company.rec_name if company else ''> - <if test="company"> - NIT: <company.party.identifiers[0].code> - Regimen Común - Actividad Economica 4659 - Dirección: <company.party.addresses[0].street><company.party.addresses[0].city> - Teléfono: <company.party.phone> - Celular: <company.party.mobile> - E-mail: <company.party.email> - </if> + <if test="company and company.header"> + <for each="line in company.header.split('\n')"> + <line> + </for> + </if> + <company.rec_name if company else ''> + <if test="company"> + NIT: <company.party.identifiers[0].code> + Regimen Común + Actividad Economica 4659 + Dirección: <company.party.addresses[0].street><company.party.addresses[0].city> + Teléfono: <company.party.phone> + Celular: <company.party.mobile> + E-mail: <company.party.email> + </if> - + - + @@ -1256,32 +1576,29 @@ - <for each="maintenance in records"> - - CRONOGRAMA DE MANTENIMIENTO PREVENTIVO Y CALIBRACIÓN DE EQUIPOS - Fecha <maintenance.estimated_agended.date()> - Consecutivo <maintenance.code> - - INFORMACIÓN DEL PROPIETARIO + <for each="maintenance in records"> + CRONOGRAMA DE MANTENIMIENTO PREVENTIVO Y CALIBRACIÓN DE EQUIPOS + Fecha <maintenance.estimated_agended.date()> + Consecutivo <maintenance.code> + INFORMACIÓN DEL PROPIETARIO - Nombre / Razón Social: <maintenance.propietary.name> - Ciudad: <maintenance.propietary_address.subdivision_municipality.name> - Teléfono: <maintenance.propietary.phone> - Movil: <maintenance.propietary.mobile> + Nombre / Razón Social: <maintenance.propietary.name> + Ciudad: <maintenance.propietary_address.subdivision_municipality.name> + Teléfono: <maintenance.propietary.phone> + Movil: <maintenance.propietary.mobile> - Tipo Documento: <"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"> - Documento: <maintenance.propietary.tax_identifier.code> - Dirección: <maintenance.propietary_address.street> + Tipo Documento: <"NIT" if maintenance.propietary.tax_identifier.type=="31" else "CC"> + Documento: <maintenance.propietary.tax_identifier.code> + Dirección: <maintenance.propietary_address.street> - - + @@ -1290,25 +1607,25 @@ - Equipo + Equipo - Serial + Serial - Mantenimiento - Preventivo + Mantenimiento + Preventivo - Calibración + Calibración - Fecha de Próximo mantenimiento + Fecha de Próximo mantenimiento - <for each="line in maintenance.lines"> + <for each="line in maintenance.lines"> @@ -1317,24 +1634,24 @@ - <line.equipment.product.name> + <line.equipment.product.name> - <line.equipment.serial> + <line.equipment.serial> - X + X - <"X" if line.equipment.product.calibration else "No Aplica"> + <"X" if line.equipment.product.calibration else "No Aplica"> - <str(line.next_maintenance)[0:11]> + <str(line.next_maintenance)[0:11]> - </for> + </for> @@ -1342,13 +1659,57 @@ - - - ANTHONY STIVEN RODRIGUEZ FONSECA - INVIMA : RH-202208-01301 - </for> - - + + + + + + + <if test="maintenance.technician_signature"> + + + + + + + + + + Texto 1: + + + + + + + + + + </if> + + + + + + + + <maintenance.technician_responsible> + + + RECIBIDO A SATISFACCIÓN: + + + + + + INVIMA :<maintenance.invima> + + + NOMBRE + + + + </for> \ No newline at end of file diff --git a/report/Maintenances_Historys.fodt b/report/Maintenances_Historys.fodt index b6ebc84..892495b 100644 --- a/report/Maintenances_Historys.fodt +++ b/report/Maintenances_Historys.fodt @@ -1,142 +1,144 @@ - 2022-10-11T16:28:51.1019484802023-05-23T15:42:12.073083470PT6H47M30S61LibreOffice/7.4.6.2$Linux_X86_64 LibreOffice_project/40$Build-2 + 2022-10-11T16:28:51.1019484802023-12-14T22:54:10.822837793PT8H7M43S107LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 35671 + 85265 0 - 22274 - 10356 + 28092 + 12203 true false view2 - 2501 - 64952 + 5251 + 94317 0 - 35671 - 22273 - 46025 + 85265 + 28090 + 97465 0 1 false - 220 + 180 false false - false false + false + false - false - false - false + true + false true - true + false true - true - true + false false 0 - false - false + true + false + false + true false - true + false false + true false - true true - false + + true false - false + true + false + true true - true true false - false - false false false + true false false - true true - false - true - false - false - false - false - true - 0 - 1 - true - true - - high-resolution - true - - - false - false - true - false - false - true - true - false - true - - true - 4459623 - - true - false - true - true - 0 - - false - false - false - true false - true - 0 - true - false - true - true - true - false - false - false - - false - false - true - false - true - false - false - false - false - false - false - true + false 2067644 - false - false - true - false + false + + true + true + false + 5476013 + true + false + false + false + 1 + true + true + false + false + true + false + true + true + false + true false - true + true + 0 + false - true + true + false + true + + 0 + true + false + false + false + high-resolution true + true + false + true + true + true + false + false + false + true + + true + false + true + false + + false + false + true + true + true + false + false + false + false + false + false + false + false + false + 0 + true + false + + true @@ -158,7 +160,7 @@ - + @@ -180,7 +182,7 @@ - + @@ -261,10 +263,10 @@ - + - + @@ -321,16 +323,16 @@ - + $ - + - $ - + @@ -439,6 +441,27 @@ + + + + + + + + + + + + + + + + + + + + + @@ -511,145 +534,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + - + + + + + - + + + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -657,6 +704,193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -733,25 +967,66 @@ - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + @@ -776,7 +1051,7 @@ - + /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgK CgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkL EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAAR @@ -1462,182 +1737,200 @@ - <for each="service in records"> - <for each="maintenance in service.lines"> - REGISTRO HISTORICO DE MANTENIMIENTO - - INFORMACIÓN DEL DISPOSITIVO + <for each="service in records"> + <for each="maintenance in service.lines"> + REGISTRO HISTORICO DE MANTENIMIENTO + + INFORMACIÓN DEL DISPOSITIVO - Nombre del Dispositivo: <maintenance.equipment.product.name> + Nombre del Dispositivo: <maintenance.equipment.product.name> - Serial: <maintenance.equipment.serial> + Serial: <maintenance.equipment.serial> - Restaurado: <"SI" if maintenance.equipment.refurbish else "NO"> + Restaurado: <"SI" if maintenance.equipment.refurbish else "NO"> - Clase de Riesgo: <maintenance.equipment.product.risk> + <choose test=""> + <when test="maintenance.equipment.product.risk == 'uno'"> + Clase de Riesgo: I + </when> + <when test=" maintenance.equipment.product.risk == 'dosA'"> + Clase de Riesgo: IIA + </when> + <when test=" maintenance.equipment.product.risk == 'dosB'"> + Clase de Riesgo: IIB + </when> + <otherwise test=""> + Clase de Riesgo: No Aplíca + </otherwise> + </choose> - Marca: <maintenance.equipment.mark_category.name> + Marca: <maintenance.equipment.mark_category.name> - Clase Biomédica: <maintenance.equipment.biomedical_class> + Clase Biomédica: <maintenance.equipment.biomedical_class> - Marca: <maintenance.equipment.mark_category.name> + Marca: <maintenance.equipment.mark_category.name> - Tipo: <maintenance.equipment.equipment_type> + <choose test=""> + <when test="maintenance.equipment.equipment_type == 'refraccion'"> + Tipo: Refracción + </when> + <otherwise test=""> + Tipo: <maintenance.equipment.equipment_type> + </otherwise> + </choose> - Referencia: <maintenance.equipment.reference_category.name> + Referencia: <maintenance.equipment.reference_category.name> - Uso: <maintenance.equipment.use> + Uso: <maintenance.equipment.use> - País de Origen: <maintenance.equipment.origin_country.name> + País de Origen: <maintenance.equipment.origin_country.name> - Registro Invima: <maintenance.equipment.health_register> + Registro Invima: <maintenance.equipment.health_register> - Software Versión: <maintenance.equipment.software_version if maintenance.equipment.software_version != "" else "No Aplica"> + Software Versión: <maintenance.equipment.software_version if maintenance.equipment.software_version != "" else "No Aplica"> - - CARACTERÍSTICAS TÉCNICAS + + CARACTERÍSTICAS TÉCNICAS - Características Físicas + Características Físicas - Peso + Peso - <str(maintenance.equipment.product.weight) + " "+ maintenance.equipment.product.weight_uom.symbol if maintenance.equipment.product.weight else ""> + <str(maintenance.equipment.product.weight) + " "+ maintenance.equipment.product.weight_uom.symbol if maintenance.equipment.product.weight else ""> - Medidas + Medidas - <"Longitud:" +str(maintenance.equipment.product.length) + " "+ maintenance.equipment.product.length_uom.symbol+" Altura: "+str(maintenance.equipment.product.height) + " "+ maintenance.equipment.product.height_uom.symbol + " Ancho: "+str(maintenance.equipment.product.width) + " "+ maintenance.equipment.product.width_uom.symbol if maintenance.equipment.product.width else ""> + <"Longitud:" +str(maintenance.equipment.product.length) + " "+ maintenance.equipment.product.length_uom.symbol+" Altura: "+str(maintenance.equipment.product.height) + " "+ maintenance.equipment.product.height_uom.symbol + " Ancho: "+str(maintenance.equipment.product.width) + " "+ maintenance.equipment.product.width_uom.symbol if maintenance.equipment.product.width else ""> - Características Eléctricas + Características Eléctricas - Voltaje (VAC) + Voltaje (VAC) - <str(maintenance.equipment.product.voltageAC) + " "+ maintenance.equipment.product.voltageAC_uom.symbol if maintenance.equipment.product.voltageAC else "No Aplica"> + <str(maintenance.equipment.product.voltageAC) + " "+ maintenance.equipment.product.voltageAC_uom.symbol if maintenance.equipment.product.voltageAC else "No Aplica"> - Voltaje (VDC) + Voltaje (VDC) - <str(maintenance.equipment.product.voltageDC) + " "+ maintenance.equipment.product.voltageDC_uom.symbol if maintenance.equipment.product.voltageDC else "No Aplica"> + <str(maintenance.equipment.product.voltageDC) + " "+ maintenance.equipment.product.voltageDC_uom.symbol if maintenance.equipment.product.voltageDC else "No Aplica"> - Condiciones Ambientales + Condiciones Ambientales - Tem Min Uso + Tem Min Uso - <str(maintenance.equipment.product.temperature_min) + " "+ maintenance.equipment.product.temperature_uom.symbol if maintenance.equipment.product.temperature_min else "No Aplica"> + <str(maintenance.equipment.product.temperature_min) + " "+ maintenance.equipment.product.temperature_uom.symbol if maintenance.equipment.product.temperature_min else "No Aplica"> - Tem Max Uso + Tem Max Uso - <str(maintenance.equipment.product.temperature_max) + " "+ maintenance.equipment.product.temperature_uom.symbol if maintenance.equipment.product.temperature_max else "No Aplica"> + <str(maintenance.equipment.product.temperature_max) + " "+ maintenance.equipment.product.temperature_uom.symbol if maintenance.equipment.product.temperature_max else "No Aplica"> - Hum Min Uso + Hum Min Uso - <str(maintenance.equipment.product.moisture_min) + " "+ maintenance.equipment.product.moisture_uom.symbol if maintenance.equipment.product.moisture_min else "No Aplica"> + <str(maintenance.equipment.product.moisture_min) + " "+ maintenance.equipment.product.moisture_uom.symbol if maintenance.equipment.product.moisture_min else "No Aplica"> - Hum Max Uso + Hum Max Uso - <str(maintenance.equipment.product.moisture_max) + " "+ maintenance.equipment.product.moisture_uom.symbol if maintenance.equipment.product.moisture_max else "No Aplica"> + <str(maintenance.equipment.product.moisture_max) + " "+ maintenance.equipment.product.moisture_uom.symbol if maintenance.equipment.product.moisture_max else "No Aplica"> - - + - - Fecha + Fecha - Tipo de mantenimiento + Tipo de mantenimiento - N.º del Registro + N.º del Registro - <for each="line in maintenance.equipment.maintenance_history"> + <for each="line in maintenance.equipment.maintenance_history"> - <line.service_maintenance.estimated_agended> + <str(line.service_maintenance.estimated_agended)[:11]> <choose test=""> @@ -1645,45 +1938,75 @@ Preventivo </when> <when test="line.maintenance_type == 'corrective'"> - Correctivo + Correctivo </when> <otherwise test=""> Inicial </otherwise> - </choose> + </choose> - <line.code> + <line.code> - </for> + </for> + + + + + + + + + Texto 1: + + - - - - - Texto 1: - - - - - - - - - - - - - - </for> - </for> + + + + + + <if test="maintenance.technician_signature"> + + + Texto 2: + + + </if> + + + + + + + + <maintenance.technician_responsible> + + + RECIBIDO A SATISFACCION + + + + + INVIMA :<maintenance.invima> + + + NOMBRE + + + + + + + </for> + </for> \ No newline at end of file diff --git a/report/Service.fodt b/report/Service.fodt index dfa3bf9..56f0b17 100644 --- a/report/Service.fodt +++ b/report/Service.fodt @@ -1,28 +1,28 @@ - 2022-11-03T17:09:30.5000787642023-09-24T21:18:26.372528115PT3H47M15S52LibreOffice/7.5.6.2$Linux_X86_64 LibreOffice_project/50$Build-2 + 2022-11-03T17:09:30.5000787642023-12-07T22:30:56.963125878PT5H24M5S114LibreOffice/7.5.8.2$Linux_X86_64 LibreOffice_project/50$Build-2 - 47837 + 68781 0 - 24502 - 11499 + 36117 + 16425 true false view2 - 3455 - 51410 + 9264 + 79086 0 - 47837 - 24500 - 59334 + 68781 + 36116 + 85205 0 1 false - 200 + 140 false false false @@ -73,7 +73,7 @@ true true false - 2591873 + 3942955 true false false @@ -160,7 +160,7 @@ - + @@ -261,10 +261,10 @@ - + - + @@ -341,10 +341,10 @@ - + - + @@ -353,10 +353,10 @@ - + - + @@ -392,25 +392,25 @@ - + - - + + - - + + - + - + - + - + @@ -437,6 +437,21 @@ + + + + + + + + + + + + + + + @@ -493,349 +508,373 @@ - - - - - - - - - + - + - + - - - - - + - + + + + + + + + + + + + + - - + + - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - + - + - - - + + + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - + + - - - + + - - - - - - - - - + - - - + + + - + - - - - - + - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - + + + + + - - - - - - - - - + - - - - - - - - - + - - - - + - - - - - - - - - - - - - + - - - - - - - - - + - - - - - + - - - - - + - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + - + - + - - + + - + - - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + @@ -886,101 +925,121 @@ - - - - + - + - + - + - + - + - + - + - + - + - - + + - + + + + - - - - - - - + - + - + - + - + - - + + - + - + - + - + - + - + - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + @@ -990,6 +1049,13 @@ + + + + + + + @@ -1002,7 +1068,7 @@ - + /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoM DAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsN FBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAAR @@ -1553,6 +1619,7 @@ + @@ -1563,173 +1630,219 @@ - <for each="maintenance in records"> - <for each="line in maintenance.lines"> - <choose test=""> - <when test="line.maintenance_type == 'initial'"> - REGISTRO DE MANTENIMIENTO PREVENTIVO + <for each="maintenance in records"> + <for each="line in maintenance.lines"> + <choose test=""> + <when test="line.maintenance_type == 'initial'"> + REGISTRO DE MANTENIMIENTO INICIAL + </when> + <when test="line.maintenance_type == 'preventive'"> + REGISTRO DE MANTENIMIENTO PREVENTIVO </when> - <when test="line.maintenance_type == 'preventive'"> - REGISTRO DE MANTENIMIENTO PREVENTIVO - </when> - <when test="line.maintenance_type == 'corrective'"> - REGISTRO DE MANTENIMIENTO CORRECTIVO - </when> - </choose> - Fecha <maintenance.estimated_agended.date()> - Consecutivo <line.code> - - INFORMACIÓN DEL PROPIETARIO + <when test="line.maintenance_type == 'corrective'"> + REGISTRO DE MANTENIMIENTO CORRECTIVO + </when> + </choose> + Fecha <maintenance.estimated_agended.date()> + Consecutivo <line.code> + + INFORMACIÓN DEL PROPIETARIO - Nombre / Razón Social: <line.propietary.name> - Ciudad: <line.propietary_address.subdivision_municipality.name> - Teléfono: <line.propietary.phone> - Movil: <line.propietary.mobile> + Nombre / Razón Social: <line.propietary.name> + Ciudad: <line.propietary_address.subdivision_municipality.name> + Teléfono: <line.propietary.phone> + Movil: <line.propietary.mobile> - Tipo Documento: <"NIT" if line.propietary.tax_identifier.type=="31" else "CC"> - Documento: <line.propietary.tax_identifier.code> - Dirección: <line.propietary_address.street> + Tipo Documento: <"NIT" if line.propietary.tax_identifier.type=="31" else "CC"> + Documento: <line.propietary.tax_identifier.code> + Dirección: <line.propietary_address.street> - - INFORMACIÓN DEL DISPOSITIVO + + INFORMACIÓN DEL DISPOSITIVO - Nombre del Dispositivo: <line.equipment.product.name> - Marca: <line.equipment.mark_category.name> - Serial: <line.equipment.serial> + Nombre del Dispositivo: <line.equipment.product.name> + Marca: <line.equipment.mark_category.name> + Serial: <line.equipment.serial> - Modelo: <line.equipment.model_category.name> - Referencia: <line.equipment.reference_category.name> - Registro Invima: <line.equipment.health_register> + Modelo: <line.equipment.model_category.name> + Referencia: <line.equipment.reference_category.name> + Registro Invima: <line.equipment.health_register> - <choose test=""> - <when test="line.maintenance_type == 'preventive'"> - Trabajo Realizado - - - - + <choose test=""> + <when test="line.maintenance_type == 'preventive' or line.maintenance_type == 'initial'"> + + + - - 1. Verificación inicial de funcionamiento: + + Verificación inicial de funcionamiento: - - <"SI" if line.initial_operation else "NO"> + + <"SI APLICA" if line.initial_operation else "NO APLICA"> + + + + + Revisión del Equipo: + + + <"SI APLICA" if line.check_equipment else "NO APLICA"> + + + + + Revisión del sistema eléctrico: + + + <"SI APLICA" if line.check_electric_system else "NO APLICA"> - - 2. Revisión del Equipo: + + Limpieza interior y exterior: - - <"SI" if line.check_equipment else "NO"> + + <"SI APLICA" if line.clean_int_ext else "NO APLICA"> - - 3. Revisión del sistema eléctrico: + + Limpieza de lentes y espejos: - - <"SI" if line.check_electric_system else "NO"> + + <"SI APLICA" if line.clean_eyes else "NO APLICA"> - - 4. Limpieza interior y exterior: + + Verificar Calibración: - - <"SI" if line.clean_int_ext else "NO"> - - - - - 5. Limpieza de lentes y espejos: - - - <"SI" if line.clean_eyes else "NO"> - - - - - 6. Verificar Calibración: - - - <"SI" if line.check_calibration else "NO"> + + <"SI APLICA" if line.check_calibration else "NO APLICA"> - </when> - <when test="line.maintenance_type == 'corrective'"> - Trabajo Realizado + </when> + <when test="line.maintenance_type == 'corrective'"> + Trabajo Realizado - Repuesto + Repuesto - Actividad de Mantenimiento + Actividad de Mantenimiento - Descripción + Descripción - <for each="line_maintenance in line.maintenance_lines"> + <for each="line_maintenance in line.maintenance_lines"> - <"X" if line_maintenance.line_replace else ""> + <"X" if line_maintenance.line_replace else ""> - <"X" if line_maintenance.line_maintenance_activity else ""> + <"X" if line_maintenance.line_maintenance_activity else ""> - <line_maintenance.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name> + <line_maintenance.maintenance_activity.name if line.line_maintenance_activity else line.replacement.name> - </for> + </for> - </when> - </choose> - Observaciones: - <line.description_activity> - - - Fecha del próximo mantenimiento <str(line.next_maintenance)[0:11]> - - <line.technician_responsible> - INVIMA : <line.invima> - - </for> - </for> - + </when> + </choose> + <choose test=""> + <when test="line.maintenance_type != 'initial'"> + <choose test=""> + <when test="line.equipment.product.preventive_activities"> + + Actividades Realizadas: + <for each="description in (line.equipment.product.preventive_activities or '').split('\n')"> + <description> + </for> + </when> + </choose> + </when> + </choose> + + Observaciones: + <line.description_activity> + Fecha del próximo mantenimiento <str(line.next_maintenance)[0:11]> + + + + + + + + <if test="line.technician_signature"> + + + + Texto 1: + + + </if> + + + + + + + + <line.technician_responsible> + + + RECIBIDO A SATISFACCIÓN + + + + + INVIMA :<line.invima> + + + NOMBRE + + + + + + + + </for> + </for> \ No newline at end of file diff --git a/sale.py b/sale.py index 3897092..b17efa4 100644 --- a/sale.py +++ b/sale.py @@ -1,18 +1,17 @@ from trytond.pool import Pool, PoolMeta -from trytond.model import ModelView, ModelSQL, fields -from trytond.modules.currency.fields import Monetary -from trytond.pyson import Eval, Bool, If, Get, Equal +from trytond.model import ModelView, fields +from trytond.pyson import Eval, If from decimal import Decimal -from trytond.modules.product import price_digits from trytond.transaction import Transaction from trytond.model import Workflow from trytond.modules.company.model import ( - employee_field, set_employee, reset_employee) + set_employee) from trytond.exceptions import UserError - from trytond.wizard import ( - Button, StateAction, StateTransition, StateView, Wizard) + Button, StateAction, StateView, Wizard) +from trytond.i18n import gettext +from trytond.modules.sale.exceptions import PartyLocationError class Sale(metaclass=PoolMeta): @@ -20,29 +19,39 @@ class Sale(metaclass=PoolMeta): __name__ = 'sale.sale' quote_number = fields.Char("Quote Number", readonly=True) - sale_type = fields.Selection([('maintenance', 'Maintenance'), - ('equipments', 'Equipments'), - ('replaces', 'Replaces')], "Sale Type", required=True, - states={'readonly': Eval('state') != 'draft'}) - maintenance_type = fields.Selection([('', ""), - ('preventive', 'Preventive'), - ('corrective', 'Corrective') - ], "Maintenance Type", - states={ - 'invisible': Eval('sale_type') != "maintenance", - 'required': Eval('sale_type') == "maintenance", - 'readonly': Eval('state') != 'draft'}, + + sale_type = fields.Selection([ + ('maintenance', 'Maintenance'), + ('equipments', 'Equipments'), + ('replaces', 'Replaces')], + "Sale Type", required=True, + states={ + 'readonly': Eval('state') != 'draft'}) + + maintenance_type = fields.Selection([ + ('', ""), + ('preventive', 'Preventive'), + ('corrective', 'Corrective')], + "Maintenance Type", + states={ + 'invisible': Eval('sale_type') != "maintenance", + 'required': Eval('sale_type') == "maintenance", + 'readonly': Eval('state') != 'draft'}, depends=['sale_type']) - contract_ref = fields.Reference("Contract Base", selection='get_origin_contract', - domain={'optical_equipment.contract': [ - ('party', '=', Eval('party')), - ('state', '=', 'closed'), - ]}, - states={'invisible': (Eval('sale_type') != 'maintenance')}, - search_context={ - 'related_party': Eval('party'), - },) + contract_ref = fields.Reference( + "Contract Base", selection='get_origin_contract', + domain={ + 'optical_equipment.contract': [ + ('party', '=', Eval('party')), + ('state', '=', 'closed'), + ]}, + states={ + 'invisible': ( + Eval('sale_type') != 'maintenance')}, + search_context={ + 'related_party': Eval('party'), }) + agended = fields.Boolean("Scheduling", states={ 'invisible': (Eval('sale_type') != 'maintenance')}) payment_term_description = fields.Char("Payment Term", states={ @@ -105,18 +114,14 @@ class Sale(metaclass=PoolMeta): return [(None, '')] + [(m, get_name(m)) for m in models] def _get_shipment_sale(self, Shipment, key): - values = { - 'customer': self.shipment_party or self.party, - 'delivery_address': self.shipment_address, - 'company': self.company, - 'sale_type': self.sale_type, - 'service_maintenance_initial': True if self.sale_type != 'equipments' else False, - } - values.update(dict(key)) + Shipment = super(Sale, self)._get_shipment_sale(Shipment, key) + Shipment.sale_type = self.sale_type + Shipment.service_maintenance_initial = \ + True if self.sale_type != 'equipments' else False - return Shipment(**values) + return Shipment - @classmethod + @ classmethod def set_quote_number(cls, sales): ''' Fill the number field with the sale sequence @@ -133,9 +138,10 @@ class Sale(metaclass=PoolMeta): except UserError: raise UserError(str('Validation Error')) else: - raise UserError(gettext('optical_equipment.msg_not_sequence_quote')) + raise UserError( + gettext('optical_equipment.msg_not_sequence_quote')) - @classmethod + @ classmethod def copy(cls, sales, default=None): if default is None: default = {} @@ -152,31 +158,29 @@ class Sale(metaclass=PoolMeta): return super(Sale, cls).copy(sales, default=default) - @classmethod - @ModelView.button_action( + @ classmethod + @ ModelView.button_action( 'optical_equipment.wizard_print_balance_sale_party') def report(cls, sales): pass - @classmethod - @ModelView.button - @Workflow.transition('quotation') + @ classmethod + @ ModelView.button + @ Workflow.transition('quotation') def quote(cls, sales): - pool = Pool() - AdvancePaymentCondition = pool.get('sale.advance_payment.condition') for sale in sales: sale.check_for_quotation() cls.set_quote_number(sales) - for sale in sales: - sale.set_advance_payment_term() - cls.save(sales) + # for sale in sales: + # sale.set_advance_payment_term() + # cls.save(sales) - @classmethod - @ModelView.button_action( + @ classmethod + @ ModelView.button_action( 'optical_equipment.wizard_confirm_sale_date') - @Workflow.transition('confirmed') - @set_employee('confirmed_by') + @ Workflow.transition('confirmed') + @ set_employee('confirmed_by') def confirm(cls, sales): pool = Pool() Configuration = pool.get('sale.configuration') @@ -196,7 +200,8 @@ class Sale(metaclass=PoolMeta): state_agended='no_agenda', propietary=sale.party, propietary_address=sale.shipment_address, - contract_origin=sale.contract_ref if sale.contract_ref else None, + contract_origin=sale.contract_ref + if sale.contract_ref else None, sale_origin=sale, sale_date=sale.sale_date, state="draft" @@ -207,9 +212,9 @@ class Sale(metaclass=PoolMeta): sale.save() cls.set_number(sales) - with Transaction().set_context( - queue_name='sale', - queue_scheduled_at=config.sale_process_after): + with transaction.set_context( + queue_scheduled_at=config.sale_process_after, + queue_batch=context.get('queue_batch', True)): cls.__queue__.process(sales) @@ -218,8 +223,6 @@ class SaleLine(metaclass=PoolMeta): __name__ = 'sale.line' product_equipment = fields.Boolean("Product Equipment") - unit_digits = fields.Function(fields.Integer('Unit Digits'), - 'on_change_with_unit_digits') @classmethod def __setup__(cls): @@ -228,17 +231,17 @@ class SaleLine(metaclass=PoolMeta): If(Eval('_parent_sale.sale_type') == 'maintenance', [('type', '=', 'service'), ('maintenance_activity', '=', True)], [])) - cls.product.domain.append(If(Eval('_parent_sale.sale_type') == 'replaces', - [('replacement', '=', True)], [])) + cls.product.domain.append( + If(Eval('_parent_sale.sale_type') == 'replaces', + [('replacement', '=', True)], [])) - def on_change_with_unit_digits(self, name=None): - if self.unit: - return self.unit.digits - return 2 - - @fields.depends('product', 'unit', 'quantity', 'sale', - '_parent_sale.party', '_parent_sale.sale_type', methods=['_get_tax_rule_pattern', - '_get_context_sale_price', 'on_change_with_amount']) + @fields.depends( + 'product', 'unit', 'quantity', 'sale', + '_parent_sale.party', '_parent_sale.sale_type', + methods=[ + '_get_tax_rule_pattern', + '_get_context_sale_price', + 'on_change_with_amount']) def on_change_product(self): Product = Pool().get('product.product') if not self.product: @@ -257,7 +260,8 @@ class SaleLine(metaclass=PoolMeta): self.product_equipment = False party = self.sale.party - # Set taxes before unit_price to have taxes in context of sale price + # Set taxes before unit_price + # to have taxes in context of sale price taxes = [] pattern = self._get_tax_rule_pattern() for tax in self.product.customer_taxes_used: @@ -277,11 +281,13 @@ class SaleLine(metaclass=PoolMeta): category = self.product.sale_uom.category if not self.unit or self.unit.category != category: self.unit = self.product.sale_uom - self.unit_digits = self.product.sale_uom.digits + # self.unit_digits = self.product.sale_uom.digits with Transaction().set_context(self._get_context_sale_price()): - self.unit_price = Product.get_sale_price([self.product], - self.quantity or 0)[self.product.id] + self.unit_price = Product.get_sale_price( + [self.product], + self.quantity or 0 + )[self.product.id] if self.unit_price: self.unit_price = self.unit_price.quantize( @@ -329,7 +335,7 @@ class SaleLine(metaclass=PoolMeta): move = Move() move.quantity = quantity - move.uom = self.unit + move.unit = self.unit move.product = self.product move.from_location = self.from_location move.to_location = self.to_location @@ -360,7 +366,8 @@ class ConfirmSaleDate(Wizard): start = StateView('optical_equipment.confirm_sale_date.form', 'optical_equipment.confirm_sale_date_view_form', [ - Button('Confirmar', 'confirm_date', 'tryton-ok', default=True), + Button('Confirmar', 'confirm_date', + 'tryton-ok', default=True), ]) confirm_date = StateAction('sale.act_sale_form') diff --git a/sale.xml b/sale.xml index 3c09065..34f5e02 100644 --- a/sale.xml +++ b/sale.xml @@ -2,76 +2,79 @@ - - sale.sale - - sale_tree - - - sale.sale - - sale_form - - - product.product - - product_list_sale_line - - - Sale Quote - - - - - - - report - Estado de Cuenta - - - - optical_equipment.confirm_sale_date.form - form - confirm_sale_date_form - - - Confirm Sale Date - optical_equipment.confirm_sale_date - - - Sale Equipments - sale.sale - sale.sale - optical_equipment/report/Sale_Internal.fodt - - - - form_print - sale.sale,-1 - - - - Sale Equipments Internal - sale.sale - sale.sale - optical_equipment/report/Sale.fodt - - - - form_print - sale.sale,-1 - - + + + sale.sale + + sale_tree + + + sale.sale + + sale_form + + + product.product + + product_list_sale_line + + + Sale Quote + + + + + + + report + Estado de Cuenta + + + + optical_equipment.confirm_sale_date.form + form + confirm_sale_date_form + + + Confirm Sale Date + optical_equipment.confirm_sale_date + + + Sale Equipments + sale.sale + sale.sale + optical_equipment/report/Sale_Internal.fodt + + + + form_print + sale.sale,-1 + + + + Sale Equipments Internal + sale.sale + sale.sale + optical_equipment/report/Sale.fodt + + + + form_print + sale.sale,-1 + + - Payment - account.statement.line - account.statement.line - optical_equipment/report/Payment.fodt - - - - form_print - account.statement.line,-1 - - + Payment + account.statement.line + account.statement.line + optical_equipment/report/Payment.fodt + + + + diff --git a/shipment.xml b/shipment.xml index ca423d9..91d1269 100644 --- a/shipment.xml +++ b/shipment.xml @@ -2,9 +2,11 @@ - - stock.shipment.out - - shipment_out_form - + + + stock.shipment.out + + shipment_out_form + + diff --git a/tests/__init__.py b/tests/__init__.py index e69de29..4effdfa 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,2 @@ +# This file is part of Tryton. The COPYRIGHT file at the top level of +# this repository contains the full copyright notices and license terms. diff --git a/tests/files/database.dump b/tests/files/database.dump new file mode 100644 index 0000000..c89506b --- /dev/null +++ b/tests/files/database.dump @@ -0,0 +1,41863 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 12.18 (Debian 12.18-1.pgdg120+2) +-- Dumped by pg_dump version 12.18 (Debian 12.18-1.pgdg120+2) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- Name: account_account; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_account ( + id integer NOT NULL, + closed boolean DEFAULT false, + code character varying, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + credit_type integer, + debit_type integer, + end_date date, + general_ledger_balance boolean DEFAULT false, + "left" integer NOT NULL, + name character varying NOT NULL, + note text, + parent integer, + party_required boolean DEFAULT false, + reconcile boolean DEFAULT false, + replaced_by integer, + "right" integer NOT NULL, + second_currency integer, + start_date date, + template integer, + template_override boolean DEFAULT false, + type integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_account_id_positive CHECK ((id >= 0)), + CONSTRAINT account_account_only_one_debit_credit_types CHECK (((debit_type + credit_type) IS NULL)) +); + + +ALTER TABLE public.account_account OWNER TO tryton; + +-- +-- Name: TABLE account_account; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_account IS 'Account'; + + +-- +-- Name: account_account_deferral; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_account_deferral ( + id integer NOT NULL, + account integer NOT NULL, + amount_second_currency numeric NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + credit numeric NOT NULL, + debit numeric NOT NULL, + fiscalyear integer NOT NULL, + line_count integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_account_deferral_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_account_deferral OWNER TO tryton; + +-- +-- Name: TABLE account_account_deferral; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_account_deferral IS ' + Account Deferral + + It is used to deferral the debit/credit of account by fiscal year. + '; + + +-- +-- Name: account_account_deferral_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_account_deferral ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_account_deferral_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_account_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_account ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_account_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_account_tax_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_account_tax_rel ( + id integer NOT NULL, + account integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + tax integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_account_tax_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_account_tax_rel OWNER TO tryton; + +-- +-- Name: TABLE account_account_tax_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_account_tax_rel IS 'Account - Tax'; + + +-- +-- Name: account_account_tax_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_account_tax_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_account_tax_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_account_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_account_template ( + id integer NOT NULL, + closed boolean DEFAULT false, + code character varying, + create_date timestamp(6) without time zone, + create_uid integer, + credit_type integer, + debit_type integer, + end_date date, + general_ledger_balance boolean DEFAULT false, + name character varying NOT NULL, + parent integer, + party_required boolean DEFAULT false, + reconcile boolean DEFAULT false, + replaced_by integer, + start_date date, + type integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_account_template_id_positive CHECK ((id >= 0)), + CONSTRAINT account_account_template_only_one_debit_credit_types CHECK (((debit_type + credit_type) IS NULL)) +); + + +ALTER TABLE public.account_account_template OWNER TO tryton; + +-- +-- Name: TABLE account_account_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_account_template IS 'Account Template'; + + +-- +-- Name: account_account_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_account_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_account_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_account_template_tax_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_account_template_tax_rel ( + id integer NOT NULL, + account integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + tax integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_account_template_tax_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_account_template_tax_rel OWNER TO tryton; + +-- +-- Name: TABLE account_account_template_tax_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_account_template_tax_rel IS 'Account Template - Tax Template'; + + +-- +-- Name: account_account_template_tax_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_account_template_tax_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_account_template_tax_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_account_type; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_account_type ( + id integer NOT NULL, + assets boolean DEFAULT false, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + debt boolean DEFAULT false, + expense boolean DEFAULT false, + name character varying NOT NULL, + parent integer, + payable boolean DEFAULT false, + receivable boolean DEFAULT false, + revenue boolean DEFAULT false, + sequence integer, + statement character varying, + stock boolean DEFAULT false, + template integer, + template_override boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_account_type_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_account_type OWNER TO tryton; + +-- +-- Name: TABLE account_account_type; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_account_type IS 'Account Type'; + + +-- +-- Name: account_account_type_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_account_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_account_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_account_type_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_account_type_template ( + id integer NOT NULL, + assets boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + debt boolean DEFAULT false, + expense boolean DEFAULT false, + name character varying NOT NULL, + parent integer, + payable boolean DEFAULT false, + receivable boolean DEFAULT false, + revenue boolean DEFAULT false, + sequence integer, + statement character varying, + stock boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_account_type_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_account_type_template OWNER TO tryton; + +-- +-- Name: TABLE account_account_type_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_account_type_template IS 'Account Type Template'; + + +-- +-- Name: account_account_type_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_account_type_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_account_type_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_configuration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_configuration ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_configuration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_configuration OWNER TO tryton; + +-- +-- Name: TABLE account_configuration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_configuration IS 'Account Configuration'; + + +-- +-- Name: account_configuration_default_account; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_configuration_default_account ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + currency_exchange_credit_account integer, + currency_exchange_debit_account integer, + default_account_payable integer, + default_account_receivable integer, + write_date timestamp(6) without time zone, + write_uid integer, + default_category_account_expense integer, + default_category_account_revenue integer, + CONSTRAINT account_configuration_default_account_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_configuration_default_account OWNER TO tryton; + +-- +-- Name: TABLE account_configuration_default_account; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_configuration_default_account IS 'Account Configuration Default Account'; + + +-- +-- Name: account_configuration_default_account_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_configuration_default_account ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_configuration_default_account_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_configuration_default_payment_term; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_configuration_default_payment_term ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + default_customer_payment_term integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_configuration_default_payment_term_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_configuration_default_payment_term OWNER TO tryton; + +-- +-- Name: TABLE account_configuration_default_payment_term; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_configuration_default_payment_term IS 'Account Configuration Default Payment Term'; + + +-- +-- Name: account_configuration_default_payment_term_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_configuration_default_payment_term ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_configuration_default_payment_term_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_configuration_default_tax_rule; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_configuration_default_tax_rule ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + default_customer_tax_rule integer, + default_supplier_tax_rule integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_configuration_default_tax_rule_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_configuration_default_tax_rule OWNER TO tryton; + +-- +-- Name: TABLE account_configuration_default_tax_rule; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_configuration_default_tax_rule IS 'Account Configuration Default Tax Rule'; + + +-- +-- Name: account_configuration_default_tax_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_configuration_default_tax_rule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_configuration_default_tax_rule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_configuration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_configuration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_configuration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_configuration_journal; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_configuration_journal ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + currency_exchange_journal integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_configuration_journal_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_configuration_journal OWNER TO tryton; + +-- +-- Name: TABLE account_configuration_journal; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_configuration_journal IS 'Account Configuration Journal'; + + +-- +-- Name: account_configuration_journal_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_configuration_journal ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_configuration_journal_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_configuration_sequence; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_configuration_sequence ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + reconciliation_sequence integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_configuration_sequence_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_configuration_sequence OWNER TO tryton; + +-- +-- Name: TABLE account_configuration_sequence; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_configuration_sequence IS 'Account Configuration Sequence'; + + +-- +-- Name: account_configuration_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_configuration_sequence ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_configuration_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_configuration_tax_rounding; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_configuration_tax_rounding ( + id integer NOT NULL, + company integer, + configuration integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + tax_rounding character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_configuration_tax_rounding_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_configuration_tax_rounding OWNER TO tryton; + +-- +-- Name: TABLE account_configuration_tax_rounding; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_configuration_tax_rounding IS 'Account Configuration Tax Rounding'; + + +-- +-- Name: account_configuration_tax_rounding_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_configuration_tax_rounding ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_configuration_tax_rounding_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_fiscalyear; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_fiscalyear ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + end_date date NOT NULL, + name character varying NOT NULL, + post_move_sequence integer NOT NULL, + start_date date NOT NULL, + state character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_fiscalyear_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_fiscalyear OWNER TO tryton; + +-- +-- Name: TABLE account_fiscalyear; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_fiscalyear IS 'Fiscal Year'; + + +-- +-- Name: account_fiscalyear_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_fiscalyear ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_fiscalyear_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_fiscalyear_invoice_sequence; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_fiscalyear_invoice_sequence ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + fiscalyear integer NOT NULL, + in_credit_note_sequence integer NOT NULL, + in_invoice_sequence integer NOT NULL, + out_credit_note_sequence integer NOT NULL, + out_invoice_sequence integer NOT NULL, + period integer, + sequence integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_fiscalyear_invoice_sequence_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_fiscalyear_invoice_sequence OWNER TO tryton; + +-- +-- Name: TABLE account_fiscalyear_invoice_sequence; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_fiscalyear_invoice_sequence IS 'Invoice Sequence'; + + +-- +-- Name: account_fiscalyear_invoice_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_fiscalyear_invoice_sequence ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_fiscalyear_invoice_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice ( + id integer NOT NULL, + account integer NOT NULL, + accounting_date date, + cancel_move integer, + comment text, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + description character varying, + invoice_address integer NOT NULL, + invoice_date date, + invoice_report_cache bytea, + invoice_report_cache_id character varying, + invoice_report_format character varying, + journal integer, + move integer, + number character varying, + party integer NOT NULL, + party_tax_identifier integer, + payment_term integer, + payment_term_date date, + posted_by integer, + reference character varying, + sequence integer, + state character varying, + tax_amount_cache numeric, + tax_identifier integer, + total_amount_cache numeric, + type character varying NOT NULL, + untaxed_amount_cache numeric, + validated_by integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice OWNER TO tryton; + +-- +-- Name: TABLE account_invoice; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice IS 'Invoice'; + + +-- +-- Name: account_invoice-account_move_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."account_invoice-account_move_line" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + invoice integer NOT NULL, + line integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public."account_invoice-account_move_line" OWNER TO tryton; + +-- +-- Name: TABLE "account_invoice-account_move_line"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."account_invoice-account_move_line" IS 'Invoice - Payment Line'; + + +-- +-- Name: account_invoice-account_move_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."account_invoice-account_move_line" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."account_invoice-account_move_line_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice-additional-account_move; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."account_invoice-additional-account_move" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + invoice integer NOT NULL, + move integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "account_invoice-additional-account_move_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."account_invoice-additional-account_move" OWNER TO tryton; + +-- +-- Name: TABLE "account_invoice-additional-account_move"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."account_invoice-additional-account_move" IS 'Invoice Additional Move'; + + +-- +-- Name: account_invoice-additional-account_move_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."account_invoice-additional-account_move" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."account_invoice-additional-account_move_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_alternative_payee; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_alternative_payee ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + invoice integer NOT NULL, + party integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_alternative_payee_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_alternative_payee OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_alternative_payee; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_alternative_payee IS 'Invoice Alternative Payee'; + + +-- +-- Name: account_invoice_alternative_payee_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_alternative_payee ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_alternative_payee_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_line ( + id integer NOT NULL, + account integer, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + description text, + invoice integer, + invoice_type character varying, + note text, + origin character varying, + party integer, + product integer, + quantity double precision, + sequence integer, + taxes_date date, + taxes_deductible_rate numeric, + type character varying NOT NULL, + unit integer, + unit_price numeric, + write_date timestamp(6) without time zone, + write_uid integer, + correction boolean DEFAULT false, + CONSTRAINT account_invoice_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_line OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_line IS 'Invoice Line'; + + +-- +-- Name: account_invoice_line-stock_move; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."account_invoice_line-stock_move" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + invoice_line integer NOT NULL, + stock_move integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "account_invoice_line-stock_move_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."account_invoice_line-stock_move" OWNER TO tryton; + +-- +-- Name: TABLE "account_invoice_line-stock_move"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."account_invoice_line-stock_move" IS 'Invoice Line - Stock Move'; + + +-- +-- Name: account_invoice_line-stock_move_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."account_invoice_line-stock_move" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."account_invoice_line-stock_move_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_line_account_tax; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_line_account_tax ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + line integer NOT NULL, + tax integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_line_account_tax_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_line_account_tax OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_line_account_tax; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_line_account_tax IS 'Invoice Line - Tax'; + + +-- +-- Name: account_invoice_line_account_tax_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_line_account_tax ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_line_account_tax_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_payment_method; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_payment_method ( + id integer NOT NULL, + active boolean DEFAULT false, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + credit_account integer NOT NULL, + debit_account integer NOT NULL, + journal integer NOT NULL, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_payment_method_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_payment_method OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_payment_method; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_payment_method IS 'Payment Method'; + + +-- +-- Name: account_invoice_payment_method_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_payment_method ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_payment_method_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_payment_term; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_payment_term ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_payment_term_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_payment_term OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_payment_term; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_payment_term IS 'Payment Term'; + + +-- +-- Name: account_invoice_payment_term_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_payment_term ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_payment_term_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_payment_term_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_payment_term_line ( + id integer NOT NULL, + amount numeric, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer, + divisor numeric, + payment integer NOT NULL, + ratio numeric, + sequence integer, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_payment_term_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_payment_term_line OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_payment_term_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_payment_term_line IS 'Payment Term Line'; + + +-- +-- Name: account_invoice_payment_term_line_delta; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_payment_term_line_delta ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + day integer, + days integer NOT NULL, + line integer NOT NULL, + month integer, + months integer NOT NULL, + sequence integer, + weekday integer, + weeks integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_payment_term_line_delta_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_payment_term_line_delta OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_payment_term_line_delta; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_payment_term_line_delta IS 'Payment Term Line Relative Delta'; + + +-- +-- Name: account_invoice_payment_term_line_delta_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_payment_term_line_delta ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_payment_term_line_delta_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_payment_term_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_payment_term_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_payment_term_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_report_revision; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_report_revision ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + date timestamp(0) without time zone NOT NULL, + invoice integer NOT NULL, + invoice_report_cache bytea, + invoice_report_cache_id character varying, + invoice_report_format character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_report_revision_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_report_revision OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_report_revision; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_report_revision IS 'Invoice Report Revision'; + + +-- +-- Name: account_invoice_report_revision_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_report_revision ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_report_revision_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_invoice_tax; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_invoice_tax ( + id integer NOT NULL, + account integer NOT NULL, + amount numeric NOT NULL, + base numeric NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + description character varying NOT NULL, + invoice integer NOT NULL, + legal_notice text, + manual boolean DEFAULT false, + sequence integer, + tax integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_invoice_tax_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_invoice_tax OWNER TO tryton; + +-- +-- Name: TABLE account_invoice_tax; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_invoice_tax IS 'Invoice Tax'; + + +-- +-- Name: account_invoice_tax_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_invoice_tax ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_invoice_tax_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_journal; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_journal ( + id integer NOT NULL, + active boolean DEFAULT false, + code character varying, + create_date timestamp(6) without time zone, + create_uid integer, + matching_sequence integer, + name character varying NOT NULL, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_journal_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_journal OWNER TO tryton; + +-- +-- Name: TABLE account_journal; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_journal IS 'Journal'; + + +-- +-- Name: account_journal_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_journal ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_journal_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_journal_period; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_journal_period ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + journal integer NOT NULL, + period integer NOT NULL, + state character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_journal_period_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_journal_period OWNER TO tryton; + +-- +-- Name: TABLE account_journal_period; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_journal_period IS 'Journal - Period'; + + +-- +-- Name: account_journal_period_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_journal_period ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_journal_period_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_journal_sequence; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_journal_sequence ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + journal integer, + sequence integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_journal_sequence_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_journal_sequence OWNER TO tryton; + +-- +-- Name: TABLE account_journal_sequence; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_journal_sequence IS 'Journal Sequence'; + + +-- +-- Name: account_journal_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_journal_sequence ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_journal_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_move; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_move ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + date date NOT NULL, + description character varying, + journal integer NOT NULL, + number character varying NOT NULL, + origin character varying, + period integer NOT NULL, + post_date date, + post_number character varying, + state character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_move_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_move OWNER TO tryton; + +-- +-- Name: TABLE account_move; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_move IS 'Account Move'; + + +-- +-- Name: account_move_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_move ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_move_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_move_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_move_line ( + id integer NOT NULL, + account integer NOT NULL, + amount_second_currency numeric, + create_date timestamp(6) without time zone, + create_uid integer, + credit numeric NOT NULL, + debit numeric NOT NULL, + description character varying, + maturity_date date, + move integer NOT NULL, + origin character varying, + party integer, + reconciliation integer, + second_currency integer, + state character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_move_line_credit_debit CHECK (((credit * debit) = (0)::numeric)), + CONSTRAINT account_move_line_id_positive CHECK ((id >= 0)), + CONSTRAINT account_move_line_second_currency_sign CHECK (((COALESCE(amount_second_currency, (0)::numeric) * (debit - credit)) >= (0)::numeric)) +); + + +ALTER TABLE public.account_move_line OWNER TO tryton; + +-- +-- Name: TABLE account_move_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_move_line IS 'Account Move Line'; + + +-- +-- Name: account_move_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_move_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_move_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_move_line_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_move_line_template ( + id integer NOT NULL, + account integer NOT NULL, + amount character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + description character varying, + move integer NOT NULL, + operation character varying NOT NULL, + party character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_move_line_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_move_line_template OWNER TO tryton; + +-- +-- Name: TABLE account_move_line_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_move_line_template IS 'Account Move Line Template'; + + +-- +-- Name: account_move_line_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_move_line_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_move_line_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_move_reconcile_write_off; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_move_reconcile_write_off ( + id integer NOT NULL, + active boolean DEFAULT false, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + credit_account integer NOT NULL, + debit_account integer NOT NULL, + journal integer NOT NULL, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_move_reconcile_write_off_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_move_reconcile_write_off OWNER TO tryton; + +-- +-- Name: TABLE account_move_reconcile_write_off; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_move_reconcile_write_off IS 'Reconcile Write Off'; + + +-- +-- Name: account_move_reconcile_write_off_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_move_reconcile_write_off ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_move_reconcile_write_off_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_move_reconciliation; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_move_reconciliation ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + date date NOT NULL, + delegate_to integer, + number character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_move_reconciliation_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_move_reconciliation OWNER TO tryton; + +-- +-- Name: TABLE account_move_reconciliation; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_move_reconciliation IS 'Account Move Reconciliation Lines'; + + +-- +-- Name: account_move_reconciliation_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_move_reconciliation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_move_reconciliation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_move_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_move_template ( + id integer NOT NULL, + active boolean DEFAULT false, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + description character varying, + journal integer NOT NULL, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_move_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_move_template OWNER TO tryton; + +-- +-- Name: TABLE account_move_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_move_template IS 'Account Move Template'; + + +-- +-- Name: account_move_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_move_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_move_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_move_template_keyword; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_move_template_keyword ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + digits integer, + move integer NOT NULL, + name character varying NOT NULL, + required boolean DEFAULT false, + sequence integer, + string character varying NOT NULL, + type_ character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_move_template_keyword_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_move_template_keyword OWNER TO tryton; + +-- +-- Name: TABLE account_move_template_keyword; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_move_template_keyword IS 'Account Move Template Keyword'; + + +-- +-- Name: account_move_template_keyword_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_move_template_keyword ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_move_template_keyword_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_period; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_period ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + end_date date NOT NULL, + fiscalyear integer NOT NULL, + name character varying NOT NULL, + post_move_sequence integer, + start_date date NOT NULL, + state character varying NOT NULL, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_period_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_period OWNER TO tryton; + +-- +-- Name: TABLE account_period; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_period IS 'Period'; + + +-- +-- Name: account_period_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_period ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_period_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax ( + id integer NOT NULL, + active boolean DEFAULT false, + amount numeric, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + credit_note_account integer, + description character varying NOT NULL, + end_date date, + "group" integer, + invoice_account integer, + legal_notice text, + name character varying NOT NULL, + parent integer, + rate numeric, + sequence integer, + start_date date, + template integer, + template_override boolean DEFAULT false, + type character varying NOT NULL, + update_unit_price boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax OWNER TO tryton; + +-- +-- Name: TABLE account_tax; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax IS ' + Account Tax + + Type: + percentage: tax = price * rate + fixed: tax = amount + none: tax = none + '; + + +-- +-- Name: account_tax_code; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_code ( + id integer NOT NULL, + code character varying, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + end_date date, + name character varying NOT NULL, + parent integer, + start_date date, + template integer, + template_override boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_code_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_code OWNER TO tryton; + +-- +-- Name: TABLE account_tax_code; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_code IS 'Tax Code'; + + +-- +-- Name: account_tax_code_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_code ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_code_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_code_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_code_line ( + id integer NOT NULL, + amount character varying NOT NULL, + code integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + operator character varying NOT NULL, + tax integer NOT NULL, + template integer, + template_override boolean DEFAULT false, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_code_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_code_line OWNER TO tryton; + +-- +-- Name: TABLE account_tax_code_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_code_line IS 'Tax Code Line'; + + +-- +-- Name: account_tax_code_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_code_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_code_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_code_line_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_code_line_template ( + id integer NOT NULL, + amount character varying NOT NULL, + code integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + operator character varying NOT NULL, + tax integer NOT NULL, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_code_line_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_code_line_template OWNER TO tryton; + +-- +-- Name: TABLE account_tax_code_line_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_code_line_template IS 'Tax Code Line Template'; + + +-- +-- Name: account_tax_code_line_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_code_line_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_code_line_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_code_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_code_template ( + id integer NOT NULL, + account integer NOT NULL, + code character varying, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + end_date date, + name character varying NOT NULL, + parent integer, + start_date date, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_code_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_code_template OWNER TO tryton; + +-- +-- Name: TABLE account_tax_code_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_code_template IS 'Tax Code Template'; + + +-- +-- Name: account_tax_code_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_code_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_code_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_group ( + id integer NOT NULL, + code character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + kind character varying NOT NULL, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_group_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_group OWNER TO tryton; + +-- +-- Name: TABLE account_tax_group; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_group IS 'Tax Group'; + + +-- +-- Name: account_tax_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_line ( + id integer NOT NULL, + amount numeric NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + move_line integer NOT NULL, + tax integer NOT NULL, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_line OWNER TO tryton; + +-- +-- Name: TABLE account_tax_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_line IS 'Tax Line'; + + +-- +-- Name: account_tax_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_line_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_line_template ( + id integer NOT NULL, + amount character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + line integer NOT NULL, + tax integer, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_line_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_line_template OWNER TO tryton; + +-- +-- Name: TABLE account_tax_line_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_line_template IS 'Account Tax Line Template'; + + +-- +-- Name: account_tax_line_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_line_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_line_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_rule; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_rule ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + kind character varying NOT NULL, + name character varying NOT NULL, + template integer, + template_override boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_rule_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_rule OWNER TO tryton; + +-- +-- Name: TABLE account_tax_rule; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_rule IS 'Tax Rule'; + + +-- +-- Name: account_tax_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_rule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_rule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_rule_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_rule_line ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + end_date date, + "group" integer, + keep_origin boolean DEFAULT false, + origin_tax integer, + rule integer NOT NULL, + sequence integer, + start_date date, + tax integer, + template integer, + template_override boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_rule_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_rule_line OWNER TO tryton; + +-- +-- Name: TABLE account_tax_rule_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_rule_line IS 'Tax Rule Line'; + + +-- +-- Name: account_tax_rule_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_rule_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_rule_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_rule_line_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_rule_line_template ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + end_date date, + "group" integer, + keep_origin boolean DEFAULT false, + origin_tax integer, + rule integer NOT NULL, + sequence integer, + start_date date, + tax integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_rule_line_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_rule_line_template OWNER TO tryton; + +-- +-- Name: TABLE account_tax_rule_line_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_rule_line_template IS 'Tax Rule Line Template'; + + +-- +-- Name: account_tax_rule_line_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_rule_line_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_rule_line_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_rule_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_rule_template ( + id integer NOT NULL, + account integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + kind character varying NOT NULL, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_rule_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_rule_template OWNER TO tryton; + +-- +-- Name: TABLE account_tax_rule_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_rule_template IS 'Tax Rule Template'; + + +-- +-- Name: account_tax_rule_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_rule_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_rule_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: account_tax_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.account_tax_template ( + id integer NOT NULL, + account integer NOT NULL, + active boolean DEFAULT false, + amount numeric, + create_date timestamp(6) without time zone, + create_uid integer, + credit_note_account integer, + description character varying NOT NULL, + end_date date, + "group" integer, + invoice_account integer, + legal_notice text, + name character varying NOT NULL, + parent integer, + rate numeric, + sequence integer, + start_date date, + type character varying NOT NULL, + update_unit_price boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT account_tax_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.account_tax_template OWNER TO tryton; + +-- +-- Name: TABLE account_tax_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.account_tax_template IS 'Account Tax Template'; + + +-- +-- Name: account_tax_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.account_tax_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.account_tax_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: company_company; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.company_company ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + footer text, + header text, + party integer NOT NULL, + timezone character varying, + write_date timestamp(6) without time zone, + write_uid integer, + cancel_invoice_out boolean DEFAULT false, + purchase_taxes_expense boolean DEFAULT false, + CONSTRAINT company_company_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.company_company OWNER TO tryton; + +-- +-- Name: TABLE company_company; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.company_company IS 'Company'; + + +-- +-- Name: company_company_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.company_company ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.company_company_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: company_employee; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.company_employee ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + end_date date, + party integer NOT NULL, + start_date date, + supervisor integer, + write_date timestamp(6) without time zone, + write_uid integer, + invima character varying, + CONSTRAINT company_employee_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.company_employee OWNER TO tryton; + +-- +-- Name: TABLE company_employee; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.company_employee IS 'Employee'; + + +-- +-- Name: company_employee_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.company_employee ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.company_employee_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: country_country; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.country_country ( + id integer NOT NULL, + active boolean DEFAULT false, + code character varying(2), + code3 character varying(3), + code_numeric character varying, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + region integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT country_country_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.country_country OWNER TO tryton; + +-- +-- Name: TABLE country_country; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.country_country IS 'Country'; + + +-- +-- Name: country_country_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.country_country ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.country_country_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: country_organization; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.country_organization ( + id integer NOT NULL, + code character varying, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT country_organization_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.country_organization OWNER TO tryton; + +-- +-- Name: TABLE country_organization; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.country_organization IS 'Organization'; + + +-- +-- Name: country_organization_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.country_organization ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.country_organization_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: country_organization_member; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.country_organization_member ( + id integer NOT NULL, + country integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + from_date date, + organization integer NOT NULL, + to_date date, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT country_organization_member_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.country_organization_member OWNER TO tryton; + +-- +-- Name: TABLE country_organization_member; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.country_organization_member IS 'Organization Member'; + + +-- +-- Name: country_organization_member_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.country_organization_member ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.country_organization_member_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: country_postal_code; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.country_postal_code ( + id integer NOT NULL, + city character varying, + country integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + postal_code character varying, + subdivision integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT country_postal_code_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.country_postal_code OWNER TO tryton; + +-- +-- Name: TABLE country_postal_code; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.country_postal_code IS 'Postal Code'; + + +-- +-- Name: country_postal_code_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.country_postal_code ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.country_postal_code_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: country_region; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.country_region ( + id integer NOT NULL, + code_numeric character varying(3), + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + parent integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT country_region_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.country_region OWNER TO tryton; + +-- +-- Name: TABLE country_region; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.country_region IS 'Region'; + + +-- +-- Name: country_region_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.country_region ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.country_region_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: country_subdivision; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.country_subdivision ( + id integer NOT NULL, + active boolean DEFAULT false, + code character varying, + country integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + parent integer, + type character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT country_subdivision_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.country_subdivision OWNER TO tryton; + +-- +-- Name: TABLE country_subdivision; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.country_subdivision IS 'Subdivision'; + + +-- +-- Name: country_subdivision_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.country_subdivision ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.country_subdivision_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: cron_company_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.cron_company_rel ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + cron integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT cron_company_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.cron_company_rel OWNER TO tryton; + +-- +-- Name: TABLE cron_company_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.cron_company_rel IS 'Cron - Company'; + + +-- +-- Name: cron_company_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.cron_company_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.cron_company_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: currency_cron; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.currency_cron ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + day integer, + frequency character varying NOT NULL, + last_update date NOT NULL, + source character varying NOT NULL, + weekday integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT currency_cron_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.currency_cron OWNER TO tryton; + +-- +-- Name: TABLE currency_cron; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.currency_cron IS 'Currency Cron'; + + +-- +-- Name: currency_cron-currency_currency; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."currency_cron-currency_currency" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + cron integer NOT NULL, + currency integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "currency_cron-currency_currency_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."currency_cron-currency_currency" OWNER TO tryton; + +-- +-- Name: TABLE "currency_cron-currency_currency"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."currency_cron-currency_currency" IS 'Currency Cron - Currency'; + + +-- +-- Name: currency_cron-currency_currency_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."currency_cron-currency_currency" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."currency_cron-currency_currency_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: currency_cron_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.currency_cron ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.currency_cron_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: currency_currency; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.currency_currency ( + id integer NOT NULL, + active boolean DEFAULT false, + code character varying(3) NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + digits integer NOT NULL, + name character varying NOT NULL, + numeric_code character varying(3), + rounding numeric NOT NULL, + symbol character varying(10), + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT currency_currency_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.currency_currency OWNER TO tryton; + +-- +-- Name: TABLE currency_currency; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.currency_currency IS 'Currency'; + + +-- +-- Name: currency_currency_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.currency_currency ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.currency_currency_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: currency_currency_rate; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.currency_currency_rate ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer, + date date NOT NULL, + rate numeric NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT currency_currency_rate_check_currency_rate CHECK ((rate >= (0)::numeric)) +); + + +ALTER TABLE public.currency_currency_rate OWNER TO tryton; + +-- +-- Name: TABLE currency_currency_rate; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.currency_currency_rate IS 'Currency Rate'; + + +-- +-- Name: currency_currency_rate_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.currency_currency_rate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.currency_currency_rate_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_action ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + icon integer, + name character varying NOT NULL, + records character varying, + type character varying NOT NULL, + usage character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_action_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_action OWNER TO tryton; + +-- +-- Name: TABLE ir_action; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_action IS 'Action'; + + +-- +-- Name: ir_action-res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_action-res_group" ( + id integer NOT NULL, + action integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + "group" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_action-res_group_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_action-res_group" OWNER TO tryton; + +-- +-- Name: TABLE "ir_action-res_group"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_action-res_group" IS 'Action - Group'; + + +-- +-- Name: ir_action-res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_action-res_group" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_action-res_group_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action_act_window; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_action_act_window ( + id integer NOT NULL, + action integer NOT NULL, + context character varying, + context_domain character varying, + context_model character varying, + create_date timestamp(6) without time zone, + create_uid integer, + domain character varying, + "limit" integer, + "order" character varying, + res_model character varying, + search_value character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_action_act_window_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_action_act_window OWNER TO tryton; + +-- +-- Name: TABLE ir_action_act_window; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_action_act_window IS 'Action act window'; + + +-- +-- Name: ir_action_act_window_domain; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_action_act_window_domain ( + id integer NOT NULL, + act_window integer NOT NULL, + active boolean DEFAULT false, + count boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + domain character varying, + name character varying, + sequence integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_action_act_window_domain_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_action_act_window_domain OWNER TO tryton; + +-- +-- Name: TABLE ir_action_act_window_domain; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_action_act_window_domain IS 'Action act window domain'; + + +-- +-- Name: ir_action_act_window_domain_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_action_act_window_domain ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_action_act_window_domain_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action_act_window_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_action_act_window ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_action_act_window_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action_act_window_view; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_action_act_window_view ( + id integer NOT NULL, + act_window integer, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + sequence integer, + view integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_action_act_window_view_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_action_act_window_view OWNER TO tryton; + +-- +-- Name: TABLE ir_action_act_window_view; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_action_act_window_view IS 'Action act window view'; + + +-- +-- Name: ir_action_act_window_view_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_action_act_window_view ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_action_act_window_view_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_action ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_action_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action_keyword; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_action_keyword ( + id integer NOT NULL, + action integer, + create_date timestamp(6) without time zone, + create_uid integer, + keyword character varying NOT NULL, + model character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_action_keyword_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_action_keyword OWNER TO tryton; + +-- +-- Name: TABLE ir_action_keyword; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_action_keyword IS 'Action keyword'; + + +-- +-- Name: ir_action_keyword_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_action_keyword ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_action_keyword_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action_report; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_action_report ( + id integer NOT NULL, + action integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + direct_print boolean DEFAULT false, + extension character varying, + model character varying, + module character varying, + record_name character varying, + report character varying, + report_content_custom bytea, + report_name character varying NOT NULL, + single boolean DEFAULT false, + template_extension character varying NOT NULL, + translatable boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_action_report_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_action_report OWNER TO tryton; + +-- +-- Name: TABLE ir_action_report; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_action_report IS 'Action report'; + + +-- +-- Name: ir_action_report_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_action_report ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_action_report_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action_url; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_action_url ( + id integer NOT NULL, + action integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + url character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_action_url_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_action_url OWNER TO tryton; + +-- +-- Name: TABLE ir_action_url; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_action_url IS 'Action URL'; + + +-- +-- Name: ir_action_url_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_action_url ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_action_url_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_action_wizard; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_action_wizard ( + id integer NOT NULL, + action integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + model character varying, + "window" boolean DEFAULT false, + wiz_name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_action_wizard_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_action_wizard OWNER TO tryton; + +-- +-- Name: TABLE ir_action_wizard; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_action_wizard IS 'Action wizard'; + + +-- +-- Name: ir_action_wizard_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_action_wizard ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_action_wizard_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_attachment; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_attachment ( + id integer NOT NULL, + copy_to_resources character varying, + create_date timestamp(6) without time zone, + create_uid integer, + data bytea, + description text, + file_id character varying, + link character varying, + name character varying NOT NULL, + resource character varying NOT NULL, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_attachment_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_attachment OWNER TO tryton; + +-- +-- Name: TABLE ir_attachment; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_attachment IS 'Attachment'; + + +-- +-- Name: ir_attachment_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_attachment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_attachment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_avatar; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_avatar ( + id integer NOT NULL, + copy_to_resources character varying, + create_date timestamp(6) without time zone, + create_uid integer, + image bytea, + image_id character varying, + resource character varying NOT NULL, + uuid character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public.ir_avatar OWNER TO tryton; + +-- +-- Name: TABLE ir_avatar; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_avatar IS 'Avatar'; + + +-- +-- Name: ir_avatar_cache; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_avatar_cache ( + id integer NOT NULL, + avatar integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + image bytea, + image_id character varying, + size integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public.ir_avatar_cache OWNER TO tryton; + +-- +-- Name: TABLE ir_avatar_cache; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_avatar_cache IS 'Avatar Cache'; + + +-- +-- Name: ir_avatar_cache_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_avatar_cache ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_avatar_cache_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_avatar_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_avatar ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_avatar_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_cache; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_cache ( + id integer NOT NULL, + name character varying NOT NULL, + "timestamp" timestamp without time zone, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_cache_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_cache OWNER TO tryton; + +-- +-- Name: TABLE ir_cache; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_cache IS 'Cache'; + + +-- +-- Name: ir_cache_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_cache ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_cache_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_calendar_day; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_calendar_day ( + id integer NOT NULL, + abbreviation character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + index integer NOT NULL, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public.ir_calendar_day OWNER TO tryton; + +-- +-- Name: TABLE ir_calendar_day; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_calendar_day IS 'Day'; + + +-- +-- Name: ir_calendar_day_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_calendar_day ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_calendar_day_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_calendar_month; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_calendar_month ( + id integer NOT NULL, + abbreviation character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + index integer NOT NULL, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public.ir_calendar_month OWNER TO tryton; + +-- +-- Name: TABLE ir_calendar_month; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_calendar_month IS 'Month'; + + +-- +-- Name: ir_calendar_month_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_calendar_month ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_calendar_month_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_configuration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_configuration ( + id integer NOT NULL, + language character varying, + hostname character varying, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + product_price_decimal integer, + CONSTRAINT ir_configuration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_configuration OWNER TO tryton; + +-- +-- Name: TABLE ir_configuration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_configuration IS 'Configuration'; + + +-- +-- Name: ir_configuration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_configuration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_configuration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_cron; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_cron ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + day integer, + hour integer, + interval_number integer NOT NULL, + interval_type character varying NOT NULL, + method character varying NOT NULL, + minute integer, + next_call timestamp(0) without time zone, + weekday integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_cron_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_cron OWNER TO tryton; + +-- +-- Name: TABLE ir_cron; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_cron IS 'Cron'; + + +-- +-- Name: ir_cron_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_cron ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_cron_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_email; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_email ( + id integer NOT NULL, + body text, + create_date timestamp(6) without time zone, + create_uid integer, + recipients character varying, + recipients_hidden character varying, + recipients_secondary character varying, + resource character varying NOT NULL, + subject character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_email_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_email OWNER TO tryton; + +-- +-- Name: TABLE ir_email; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_email IS 'Email'; + + +-- +-- Name: ir_email_address; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_email_address ( + id integer NOT NULL, + address character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + email integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_email_address_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_email_address OWNER TO tryton; + +-- +-- Name: TABLE ir_email_address; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_email_address IS 'Email Address'; + + +-- +-- Name: ir_email_address_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_email_address ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_email_address_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_email_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_email ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_email_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_email_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_email_template ( + id integer NOT NULL, + body text, + create_date timestamp(6) without time zone, + create_uid integer, + model integer NOT NULL, + name character varying NOT NULL, + recipients integer, + recipients_hidden integer, + recipients_hidden_pyson character varying, + recipients_pyson character varying, + recipients_secondary integer, + recipients_secondary_pyson character varying, + subject character varying, + write_date timestamp(6) without time zone, + write_uid integer, + contact_mechanism character varying, + CONSTRAINT ir_email_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_email_template OWNER TO tryton; + +-- +-- Name: TABLE ir_email_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_email_template IS 'Email Template'; + + +-- +-- Name: ir_email_template-ir_action_report; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_email_template-ir_action_report" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + report integer NOT NULL, + template integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_email_template-ir_action_report_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_email_template-ir_action_report" OWNER TO tryton; + +-- +-- Name: TABLE "ir_email_template-ir_action_report"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_email_template-ir_action_report" IS 'Email Template - Report'; + + +-- +-- Name: ir_email_template-ir_action_report_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_email_template-ir_action_report" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_email_template-ir_action_report_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_email_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_email_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_email_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_error; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_error ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + message text, + origin character varying, + processed_by integer, + solved_by integer, + state character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_error_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_error OWNER TO tryton; + +-- +-- Name: TABLE ir_error; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_error IS 'Error'; + + +-- +-- Name: ir_error_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_error ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_error_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_export; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_export ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + header boolean DEFAULT false, + name character varying, + records character varying, + resource character varying, + "user" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_export_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_export OWNER TO tryton; + +-- +-- Name: TABLE ir_export; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_export IS 'Export'; + + +-- +-- Name: ir_export-res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_export-res_group" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + export integer NOT NULL, + "group" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_export-res_group_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_export-res_group" OWNER TO tryton; + +-- +-- Name: TABLE "ir_export-res_group"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_export-res_group" IS 'Export Group'; + + +-- +-- Name: ir_export-res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_export-res_group" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_export-res_group_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_export-write-res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_export-write-res_group" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + export integer NOT NULL, + "group" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_export-write-res_group_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_export-write-res_group" OWNER TO tryton; + +-- +-- Name: TABLE "ir_export-write-res_group"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_export-write-res_group" IS 'Export Modification Group'; + + +-- +-- Name: ir_export-write-res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_export-write-res_group" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_export-write-res_group_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_export_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_export ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_export_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_export_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_export_line ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + export integer NOT NULL, + name character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_export_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_export_line OWNER TO tryton; + +-- +-- Name: TABLE ir_export_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_export_line IS 'Export line'; + + +-- +-- Name: ir_export_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_export_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_export_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_lang; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_lang ( + id integer NOT NULL, + name character varying NOT NULL, + code character varying NOT NULL, + translatable boolean DEFAULT false, + parent character varying, + active boolean DEFAULT false, + direction character varying NOT NULL, + am character varying, + create_date timestamp(6) without time zone, + create_uid integer, + date character varying NOT NULL, + decimal_point character varying NOT NULL, + "grouping" character varying NOT NULL, + mon_decimal_point character varying NOT NULL, + mon_grouping character varying NOT NULL, + mon_thousands_sep character varying, + n_cs_precedes boolean DEFAULT false, + n_sep_by_space boolean DEFAULT false, + n_sign_posn integer NOT NULL, + negative_sign character varying, + p_cs_precedes boolean DEFAULT false, + p_sep_by_space boolean DEFAULT false, + p_sign_posn integer NOT NULL, + pg_text_search character varying, + pm character varying, + positive_sign character varying, + thousands_sep character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_lang_check_decimal_point_thousands_sep CHECK (((decimal_point)::text <> (thousands_sep)::text)), + CONSTRAINT ir_lang_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_lang OWNER TO tryton; + +-- +-- Name: TABLE ir_lang; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_lang IS 'Language'; + + +-- +-- Name: ir_lang_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_lang ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_lang_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_message; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_message ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + text text NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_message_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_message OWNER TO tryton; + +-- +-- Name: TABLE ir_message; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_message IS 'Message'; + + +-- +-- Name: ir_message_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_message ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_message_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model ( + id integer NOT NULL, + model character varying NOT NULL, + name character varying, + info text, + module character varying, + create_date timestamp(6) without time zone, + create_uid integer, + global_search_p boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_model_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_model OWNER TO tryton; + +-- +-- Name: TABLE ir_model; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model IS 'Model'; + + +-- +-- Name: ir_model_access; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model_access ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + "group" integer, + model integer NOT NULL, + perm_create boolean DEFAULT false, + perm_delete boolean DEFAULT false, + perm_read boolean DEFAULT false, + perm_write boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_model_access_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_model_access OWNER TO tryton; + +-- +-- Name: TABLE ir_model_access; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model_access IS 'Model access'; + + +-- +-- Name: ir_model_access_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model_access ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_access_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_button; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model_button ( + id integer NOT NULL, + active boolean DEFAULT false, + confirm text, + create_date timestamp(6) without time zone, + create_uid integer, + help text, + model integer NOT NULL, + name character varying NOT NULL, + string character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_model_button_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_model_button OWNER TO tryton; + +-- +-- Name: TABLE ir_model_button; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model_button IS 'Model Button'; + + +-- +-- Name: ir_model_button-button_reset; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_model_button-button_reset" ( + id integer NOT NULL, + button integer NOT NULL, + button_ruled integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_model_button-button_reset_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_model_button-button_reset" OWNER TO tryton; + +-- +-- Name: TABLE "ir_model_button-button_reset"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_model_button-button_reset" IS 'Model Button Reset'; + + +-- +-- Name: ir_model_button-button_reset_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_model_button-button_reset" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_model_button-button_reset_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_button-res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_model_button-res_group" ( + id integer NOT NULL, + active boolean DEFAULT false, + button integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + "group" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_model_button-res_group_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_model_button-res_group" OWNER TO tryton; + +-- +-- Name: TABLE "ir_model_button-res_group"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_model_button-res_group" IS 'Model Button - Group'; + + +-- +-- Name: ir_model_button-res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_model_button-res_group" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_model_button-res_group_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_button_click; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model_button_click ( + id integer NOT NULL, + active boolean DEFAULT false, + button integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + record_id integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + "user" integer, + CONSTRAINT ir_model_button_click_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_model_button_click OWNER TO tryton; + +-- +-- Name: TABLE ir_model_button_click; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model_button_click IS 'Model Button Click'; + + +-- +-- Name: ir_model_button_click_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model_button_click ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_button_click_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_button_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model_button ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_button_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_button_rule; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model_button_rule ( + id integer NOT NULL, + button integer NOT NULL, + condition character varying, + create_date timestamp(6) without time zone, + create_uid integer, + description character varying, + number_user integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + "group" integer, + CONSTRAINT ir_model_button_rule_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_model_button_rule OWNER TO tryton; + +-- +-- Name: TABLE ir_model_button_rule; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model_button_rule IS 'Model Button Rule'; + + +-- +-- Name: ir_model_button_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model_button_rule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_button_rule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_data; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model_data ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + db_id integer, + fs_id character varying NOT NULL, + fs_values text, + model character varying NOT NULL, + module character varying NOT NULL, + noupdate boolean DEFAULT false, + "values" text, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public.ir_model_data OWNER TO tryton; + +-- +-- Name: TABLE ir_model_data; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model_data IS 'Model data'; + + +-- +-- Name: ir_model_data_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model_data ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_data_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_field; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model_field ( + id integer NOT NULL, + model integer NOT NULL, + name character varying NOT NULL, + relation character varying, + field_description character varying, + ttype character varying, + help text, + module character varying, + access boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_model_field_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_model_field OWNER TO tryton; + +-- +-- Name: TABLE ir_model_field; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model_field IS 'Model field'; + + +-- +-- Name: ir_model_field_access; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model_field_access ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + field integer NOT NULL, + "group" integer, + perm_create boolean DEFAULT false, + perm_delete boolean DEFAULT false, + perm_read boolean DEFAULT false, + perm_write boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_model_field_access_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_model_field_access OWNER TO tryton; + +-- +-- Name: TABLE ir_model_field_access; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model_field_access IS 'Model Field Access'; + + +-- +-- Name: ir_model_field_access_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model_field_access ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_field_access_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_field_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model_field ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_field_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_model_log; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_model_log ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + event character varying NOT NULL, + resource character varying, + target character varying, + "user" integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_model_log_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_model_log OWNER TO tryton; + +-- +-- Name: TABLE ir_model_log; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_model_log IS 'Log'; + + +-- +-- Name: ir_model_log_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_model_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_model_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_module; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_module ( + id integer NOT NULL, + create_uid integer, + create_date timestamp without time zone, + write_date timestamp without time zone, + write_uid integer, + name character varying NOT NULL, + state character varying +); + + +ALTER TABLE public.ir_module OWNER TO tryton; + +-- +-- Name: TABLE ir_module; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_module IS 'Module'; + + +-- +-- Name: ir_module_config_wizard_item; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_module_config_wizard_item ( + id integer NOT NULL, + action integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + sequence integer, + state character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_module_config_wizard_item_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_module_config_wizard_item OWNER TO tryton; + +-- +-- Name: TABLE ir_module_config_wizard_item; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_module_config_wizard_item IS 'Config wizard to run after activating a module'; + + +-- +-- Name: ir_module_config_wizard_item_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_module_config_wizard_item ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_module_config_wizard_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_module_dependency; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_module_dependency ( + id integer NOT NULL, + create_uid integer, + create_date timestamp without time zone, + write_date timestamp without time zone, + write_uid integer, + name character varying, + module integer NOT NULL, + CONSTRAINT ir_module_dependency_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_module_dependency OWNER TO tryton; + +-- +-- Name: TABLE ir_module_dependency; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_module_dependency IS 'Module dependency'; + + +-- +-- Name: ir_module_dependency_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_module_dependency ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_module_dependency_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_module_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_module ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_module_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_note; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_note ( + id integer NOT NULL, + copy_to_resources character varying, + create_date timestamp(6) without time zone, + create_uid integer, + message text, + resource character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_note_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_note OWNER TO tryton; + +-- +-- Name: TABLE ir_note; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_note IS 'Note'; + + +-- +-- Name: ir_note_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_note ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_note_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_note_read; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_note_read ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + note integer NOT NULL, + "user" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_note_read_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_note_read OWNER TO tryton; + +-- +-- Name: TABLE ir_note_read; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_note_read IS 'Note Read'; + + +-- +-- Name: ir_note_read_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_note_read ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_note_read_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_queue; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_queue ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + data jsonb, + dequeued_at timestamp(6) without time zone, + enqueued_at timestamp(6) without time zone NOT NULL, + expected_at timestamp(6) without time zone, + finished_at timestamp(6) without time zone, + name character varying NOT NULL, + scheduled_at timestamp(6) without time zone, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_queue_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_queue OWNER TO tryton; + +-- +-- Name: TABLE ir_queue; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_queue IS 'Queue'; + + +-- +-- Name: ir_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_queue ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_queue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_rule; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_rule ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + domain character varying NOT NULL, + rule_group integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_rule_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_rule OWNER TO tryton; + +-- +-- Name: TABLE ir_rule; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_rule IS 'Rule'; + + +-- +-- Name: ir_rule_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_rule_group ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + default_p boolean DEFAULT false, + global_p boolean DEFAULT false, + model integer NOT NULL, + name character varying NOT NULL, + perm_create boolean DEFAULT false, + perm_delete boolean DEFAULT false, + perm_read boolean DEFAULT false, + perm_write boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_rule_group_global_default_exclusive CHECK (((global_p = false) OR (default_p = false))), + CONSTRAINT ir_rule_group_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_rule_group OWNER TO tryton; + +-- +-- Name: TABLE ir_rule_group; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_rule_group IS 'Rule group'; + + +-- +-- Name: ir_rule_group-res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_rule_group-res_group" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + "group" integer NOT NULL, + rule_group integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_rule_group-res_group_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_rule_group-res_group" OWNER TO tryton; + +-- +-- Name: TABLE "ir_rule_group-res_group"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_rule_group-res_group" IS 'Rule Group - Group'; + + +-- +-- Name: ir_rule_group-res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_rule_group-res_group" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_rule_group-res_group_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_rule_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_rule_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_rule_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_rule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_rule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_sequence; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_sequence ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + last_timestamp integer, + name character varying NOT NULL, + number_increment integer, + number_next_internal integer, + padding integer, + prefix character varying, + sequence_type integer NOT NULL, + suffix character varying, + timestamp_offset double precision NOT NULL, + timestamp_rounding double precision NOT NULL, + type character varying, + write_date timestamp(6) without time zone, + write_uid integer, + company integer, + CONSTRAINT ir_sequence_check_timestamp_rounding CHECK ((timestamp_rounding > (0)::double precision)), + CONSTRAINT ir_sequence_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_sequence OWNER TO tryton; + +-- +-- Name: TABLE ir_sequence; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_sequence IS 'Sequence'; + + +-- +-- Name: ir_sequence_1; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_1 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_1 OWNER TO tryton; + +-- +-- Name: ir_sequence_10; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_10 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_10 OWNER TO tryton; + +-- +-- Name: ir_sequence_11; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_11 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_11 OWNER TO tryton; + +-- +-- Name: ir_sequence_12; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_12 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_12 OWNER TO tryton; + +-- +-- Name: ir_sequence_13; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_13 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_13 OWNER TO tryton; + +-- +-- Name: ir_sequence_14; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_14 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_14 OWNER TO tryton; + +-- +-- Name: ir_sequence_15; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_15 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_15 OWNER TO tryton; + +-- +-- Name: ir_sequence_16; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_16 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_16 OWNER TO tryton; + +-- +-- Name: ir_sequence_2; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_2 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_2 OWNER TO tryton; + +-- +-- Name: ir_sequence_3; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_3 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_3 OWNER TO tryton; + +-- +-- Name: ir_sequence_4; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_4 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_4 OWNER TO tryton; + +-- +-- Name: ir_sequence_5; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_5 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_5 OWNER TO tryton; + +-- +-- Name: ir_sequence_6; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_6 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_6 OWNER TO tryton; + +-- +-- Name: ir_sequence_7; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_7 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_7 OWNER TO tryton; + +-- +-- Name: ir_sequence_8; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_8 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_8 OWNER TO tryton; + +-- +-- Name: ir_sequence_9; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +CREATE SEQUENCE public.ir_sequence_9 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ir_sequence_9 OWNER TO tryton; + +-- +-- Name: ir_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_sequence ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_sequence_strict; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_sequence_strict ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + last_timestamp integer, + name character varying NOT NULL, + number_increment integer, + number_next_internal integer, + padding integer, + prefix character varying, + sequence_type integer NOT NULL, + suffix character varying, + timestamp_offset double precision NOT NULL, + timestamp_rounding double precision NOT NULL, + type character varying, + write_date timestamp(6) without time zone, + write_uid integer, + company integer, + CONSTRAINT ir_sequence_strict_check_timestamp_rounding CHECK ((timestamp_rounding > (0)::double precision)), + CONSTRAINT ir_sequence_strict_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_sequence_strict OWNER TO tryton; + +-- +-- Name: TABLE ir_sequence_strict; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_sequence_strict IS 'Sequence Strict'; + + +-- +-- Name: ir_sequence_strict_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_sequence_strict ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_sequence_strict_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_sequence_type; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_sequence_type ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_sequence_type_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_sequence_type OWNER TO tryton; + +-- +-- Name: TABLE ir_sequence_type; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_sequence_type IS 'Sequence type'; + + +-- +-- Name: ir_sequence_type-res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_sequence_type-res_group" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + "group" integer NOT NULL, + sequence_type integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_sequence_type-res_group_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_sequence_type-res_group" OWNER TO tryton; + +-- +-- Name: TABLE "ir_sequence_type-res_group"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_sequence_type-res_group" IS 'Sequence Type - Group'; + + +-- +-- Name: ir_sequence_type-res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_sequence_type-res_group" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_sequence_type-res_group_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_sequence_type_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_sequence_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_sequence_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_session; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_session ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + key character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_session_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_session OWNER TO tryton; + +-- +-- Name: TABLE ir_session; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_session IS 'Session'; + + +-- +-- Name: ir_session_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_session ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_session_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_session_wizard; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_session_wizard ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + data text, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_session_wizard_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_session_wizard OWNER TO tryton; + +-- +-- Name: TABLE ir_session_wizard; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_session_wizard IS 'Session Wizard'; + + +-- +-- Name: ir_session_wizard_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_session_wizard ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_session_wizard_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_translation; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_translation ( + id integer NOT NULL, + lang character varying, + src text, + name character varying NOT NULL, + res_id integer NOT NULL, + value text, + type character varying NOT NULL, + module character varying, + fuzzy boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + overriding_module character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_translation_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_translation OWNER TO tryton; + +-- +-- Name: TABLE ir_translation; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_translation IS 'Translation'; + + +-- +-- Name: ir_translation_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_translation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_translation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_trigger; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_trigger ( + id integer NOT NULL, + action character varying NOT NULL, + active boolean DEFAULT false, + condition character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + limit_number integer NOT NULL, + minimum_time_delay interval, + model integer NOT NULL, + name character varying NOT NULL, + on_create boolean DEFAULT false, + on_delete boolean DEFAULT false, + on_time boolean DEFAULT false, + on_write boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_trigger_id_positive CHECK ((id >= 0)), + CONSTRAINT ir_trigger_on_exclusive CHECK ((NOT ((on_time = true) AND ((on_create = true) OR (on_write = true) OR (on_delete = true))))) +); + + +ALTER TABLE public.ir_trigger OWNER TO tryton; + +-- +-- Name: TABLE ir_trigger; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_trigger IS 'Trigger'; + + +-- +-- Name: ir_trigger_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_trigger ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_trigger_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_trigger_log; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_trigger_log ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + record_id integer NOT NULL, + trigger integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_trigger_log_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_trigger_log OWNER TO tryton; + +-- +-- Name: TABLE ir_trigger_log; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_trigger_log IS 'Trigger Log'; + + +-- +-- Name: ir_trigger_log_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_trigger_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_trigger_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_icon; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_ui_icon ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + module character varying NOT NULL, + name character varying NOT NULL, + path character varying NOT NULL, + sequence integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_ui_icon_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_ui_icon OWNER TO tryton; + +-- +-- Name: TABLE ir_ui_icon; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_ui_icon IS 'Icon'; + + +-- +-- Name: ir_ui_icon_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_ui_icon ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_ui_icon_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_menu; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_ui_menu ( + id integer NOT NULL, + parent integer, + name character varying NOT NULL, + icon character varying, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + sequence integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_ui_menu_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_ui_menu OWNER TO tryton; + +-- +-- Name: TABLE ir_ui_menu; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_ui_menu IS 'UI menu'; + + +-- +-- Name: ir_ui_menu-res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."ir_ui_menu-res_group" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + "group" integer NOT NULL, + menu integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "ir_ui_menu-res_group_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."ir_ui_menu-res_group" OWNER TO tryton; + +-- +-- Name: TABLE "ir_ui_menu-res_group"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."ir_ui_menu-res_group" IS 'UI Menu - Group'; + + +-- +-- Name: ir_ui_menu-res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."ir_ui_menu-res_group" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."ir_ui_menu-res_group_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_menu_favorite; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_ui_menu_favorite ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + menu integer NOT NULL, + sequence integer, + "user" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_ui_menu_favorite_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_ui_menu_favorite OWNER TO tryton; + +-- +-- Name: TABLE ir_ui_menu_favorite; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_ui_menu_favorite IS 'Menu Favorite'; + + +-- +-- Name: ir_ui_menu_favorite_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_ui_menu_favorite ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_ui_menu_favorite_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_menu_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_ui_menu ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_ui_menu_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_view; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_ui_view ( + id integer NOT NULL, + model character varying, + type character varying, + data text, + field_childs character varying, + priority integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + domain character varying, + inherit integer, + module character varying, + name character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_ui_view_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_ui_view OWNER TO tryton; + +-- +-- Name: TABLE ir_ui_view; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_ui_view IS 'View'; + + +-- +-- Name: ir_ui_view_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_ui_view ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_ui_view_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_view_search; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_ui_view_search ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + domain character varying, + model character varying NOT NULL, + name character varying NOT NULL, + "user" integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_ui_view_search_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_ui_view_search OWNER TO tryton; + +-- +-- Name: TABLE ir_ui_view_search; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_ui_view_search IS 'View Search'; + + +-- +-- Name: ir_ui_view_search_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_ui_view_search ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_ui_view_search_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_view_tree_optional; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_ui_view_tree_optional ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + field character varying NOT NULL, + "user" integer NOT NULL, + value boolean DEFAULT false, + view_id integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_ui_view_tree_optional_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_ui_view_tree_optional OWNER TO tryton; + +-- +-- Name: TABLE ir_ui_view_tree_optional; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_ui_view_tree_optional IS 'View Tree Optional'; + + +-- +-- Name: ir_ui_view_tree_optional_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_ui_view_tree_optional ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_ui_view_tree_optional_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_view_tree_state; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_ui_view_tree_state ( + id integer NOT NULL, + child_name character varying, + create_date timestamp(6) without time zone, + create_uid integer, + domain character varying NOT NULL, + model character varying NOT NULL, + nodes text, + selected_nodes text, + "user" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_ui_view_tree_state_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_ui_view_tree_state OWNER TO tryton; + +-- +-- Name: TABLE ir_ui_view_tree_state; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_ui_view_tree_state IS 'View Tree State'; + + +-- +-- Name: ir_ui_view_tree_state_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_ui_view_tree_state ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_ui_view_tree_state_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: ir_ui_view_tree_width; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.ir_ui_view_tree_width ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + field character varying NOT NULL, + model character varying NOT NULL, + "user" integer NOT NULL, + width integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT ir_ui_view_tree_width_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.ir_ui_view_tree_width OWNER TO tryton; + +-- +-- Name: TABLE ir_ui_view_tree_width; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.ir_ui_view_tree_width IS 'View Tree Width'; + + +-- +-- Name: ir_ui_view_tree_width_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.ir_ui_view_tree_width ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.ir_ui_view_tree_width_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_configuration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_configuration ( + id integer NOT NULL, + agended_sequence integer NOT NULL, + contract_sequence integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + equipment_sequence integer NOT NULL, + invima character varying, + maintenance_sequence integer NOT NULL, + moisture_max double precision NOT NULL, + moisture_min double precision NOT NULL, + moisture_uom integer NOT NULL, + sale_quote_number integer NOT NULL, + technician_responsible integer NOT NULL, + technician_signature bytea, + temperature_max double precision NOT NULL, + temperature_min double precision NOT NULL, + temperature_uom integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_configuration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_configuration OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_configuration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_configuration IS 'Equipment Configuration'; + + +-- +-- Name: optical_equipment_configuration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_configuration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_configuration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_contract; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_contract ( + id integer NOT NULL, + company integer NOT NULL, + contact integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + description character varying, + end_date date, + equipment integer, + invoice_address integer NOT NULL, + number character varying, + party integer NOT NULL, + price_contract numeric NOT NULL, + reference character varying, + start_date date NOT NULL, + state character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_contract_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_contract OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_contract; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_contract IS 'Contracts'; + + +-- +-- Name: optical_equipment_contract-optical_equipment_equipment; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."optical_equipment_contract-optical_equipment_equipment" ( + id integer NOT NULL, + contract integer, + create_date timestamp(6) without time zone, + create_uid integer, + equipment integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT e044eb0184b87e8a26fb025fc75cfcdf86225f05182b0560c81ec3f2a5a3ea6 CHECK ((id >= 0)) +); + + +ALTER TABLE public."optical_equipment_contract-optical_equipment_equipment" OWNER TO tryton; + +-- +-- Name: TABLE "optical_equipment_contract-optical_equipment_equipment"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."optical_equipment_contract-optical_equipment_equipment" IS 'Optical Equipment - Contracs Equipment'; + + +-- +-- Name: optical_equipment_contract-optical_equipment_equipment_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."optical_equipment_contract-optical_equipment_equipment" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."optical_equipment_contract-optical_equipment_equipment_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_contract_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_contract ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_contract_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_create_contract; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_create_contract ( + id integer NOT NULL, + company integer NOT NULL, + contact integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + end_date date, + invoice_address integer NOT NULL, + party integer NOT NULL, + payment_term integer, + start_date date NOT NULL, + unit_price numeric NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_create_contract_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_create_contract OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_create_contract; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_create_contract IS 'Create Contract Inicial'; + + +-- +-- Name: optical_equipment_create_contract_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_create_contract ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_create_contract_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_equipment; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_equipment ( + id integer NOT NULL, + active boolean DEFAULT false, + biomedical_class character varying, + calibration boolean DEFAULT false, + code character varying, + company integer, + contract integer, + create_date timestamp(6) without time zone, + create_uid integer, + equipment_type character varying, + health_register character varying, + location integer, + main_tecnology character varying, + maintenance_frequency character varying, + mark_category integer NOT NULL, + model_category integer NOT NULL, + origin_country integer, + product integer, + propietary integer NOT NULL, + propietary_address integer NOT NULL, + purchase_origin character varying, + reference_category integer, + refurbish boolean DEFAULT false, + risk character varying, + sale_destination character varying, + serial character varying, + shipment_destination character varying, + software_version character varying, + state character varying NOT NULL, + use character varying, + useful_life integer, + warranty integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_equipment_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_equipment OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_equipment; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_equipment IS 'Optical Equipment'; + + +-- +-- Name: optical_equipment_equipment-change_propietary_form; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."optical_equipment_equipment-change_propietary_form" ( + id integer NOT NULL, + change integer, + create_date timestamp(6) without time zone, + create_uid integer, + equipment integer, + maintenance_service integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "optical_equipment_equipment-change_propietary_form_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."optical_equipment_equipment-change_propietary_form" OWNER TO tryton; + +-- +-- Name: TABLE "optical_equipment_equipment-change_propietary_form"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."optical_equipment_equipment-change_propietary_form" IS 'Change Equipment'; + + +-- +-- Name: optical_equipment_equipment-change_propietary_form_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."optical_equipment_equipment-change_propietary_form" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."optical_equipment_equipment-change_propietary_form_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_equipment-party_party; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."optical_equipment_equipment-party_party" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + equipment integer, + party integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "optical_equipment_equipment-party_party_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."optical_equipment_equipment-party_party" OWNER TO tryton; + +-- +-- Name: TABLE "optical_equipment_equipment-party_party"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."optical_equipment_equipment-party_party" IS 'Optical Equipment - Party'; + + +-- +-- Name: optical_equipment_equipment-party_party_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."optical_equipment_equipment-party_party" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."optical_equipment_equipment-party_party_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_equipment_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_equipment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_equipment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_maintenance ( + id integer NOT NULL, + check_calibration boolean DEFAULT false, + check_electric_system boolean DEFAULT false, + check_equipment boolean DEFAULT false, + clean_eyes boolean DEFAULT false, + clean_int_ext boolean DEFAULT false, + code character varying, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + description_activity character varying, + equipment integer, + equipment_calibrate boolean DEFAULT false, + graph_calibration bytea, + initial_operation boolean DEFAULT false, + invima character varying, + maintenance_type character varying, + moisture_max double precision, + moisture_min double precision, + moisture_uom integer, + patterns_equipments character varying, + propietary integer, + propietary_address integer, + service_maintenance integer, + state character varying, + technician_responsible character varying, + technician_signature bytea, + temperature_max double precision, + temperature_min double precision, + temperature_uom integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_maintenance_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_maintenance OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_maintenance; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_maintenance IS 'Equipment Maintenance Line'; + + +-- +-- Name: optical_equipment_maintenance-optical_equipment_equipment; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."optical_equipment_maintenance-optical_equipment_equipment" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + equipment integer, + maintenance integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT beec6b17424b4485b4d6edfbe9f6be5afb6fc646217f1812a2151b58183a490 CHECK ((id >= 0)) +); + + +ALTER TABLE public."optical_equipment_maintenance-optical_equipment_equipment" OWNER TO tryton; + +-- +-- Name: TABLE "optical_equipment_maintenance-optical_equipment_equipment"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."optical_equipment_maintenance-optical_equipment_equipment" IS 'Optical Equipment - Equipment - Maintenance'; + + +-- +-- Name: optical_equipment_maintenance-optical_equipment_equipmen_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."optical_equipment_maintenance-optical_equipment_equipment" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."optical_equipment_maintenance-optical_equipment_equipmen_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_activity; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_maintenance_activity ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + maintenance integer, + product integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_maintenance_activity_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_maintenance_activity OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_maintenance_activity; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_maintenance_activity IS 'Maintenance Activitys'; + + +-- +-- Name: optical_equipment_maintenance_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_maintenance_activity ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_maintenance_activity_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_calibration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_maintenance_calibration ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + d_resolution double precision, + dev_std double precision, + diopter double precision, + graph_dates character varying, + k_c_calibration double precision, + maintenance integer NOT NULL, + mean double precision, + state character varying, + t_student double precision, + "uncertain_U_b1" double precision, + "uncertain_U_b2_ana" double precision, + "uncertain_U_b2_dig" double precision, + uncertain_combinated double precision, + uncertain_eff double precision, + uncertain_expanded double precision, + uncertain_pattern double precision, + "uncertain_type_A" double precision, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_maintenance_calibration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_maintenance_calibration OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_maintenance_calibration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_maintenance_calibration IS 'Calibration of Maintenance'; + + +-- +-- Name: optical_equipment_maintenance_calibration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_maintenance_calibration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_maintenance_calibration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_calibration_sample; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_maintenance_calibration_sample ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + maintenance integer, + mistake double precision, + mistake_rate double precision, + number_sample double precision, + sequence integer, + value_equipment double precision NOT NULL, + value_patterns integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_maintenance_calibration_sample_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_maintenance_calibration_sample OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_maintenance_calibration_sample; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_maintenance_calibration_sample IS 'Samples of Calibration'; + + +-- +-- Name: optical_equipment_maintenance_calibration_sample_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_maintenance_calibration_sample ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_maintenance_calibration_sample_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_diary; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_maintenance_diary ( + id integer NOT NULL, + code character varying, + create_date timestamp(6) without time zone, + create_uid integer, + date_end timestamp(0) without time zone, + date_estimated timestamp(0) without time zone, + date_expected timestamp(0) without time zone NOT NULL, + maintenance_service integer NOT NULL, + state character varying NOT NULL, + technical integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_maintenance_diary_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_maintenance_diary OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_maintenance_diary; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_maintenance_diary IS 'Diary'; + + +-- +-- Name: optical_equipment_maintenance_diary_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_maintenance_diary ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_maintenance_diary_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_maintenance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_maintenance_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_maintenance_line ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + line_maintenance_activity boolean DEFAULT false, + line_replace boolean DEFAULT false, + maintenance integer, + maintenance_activity integer, + quantity double precision NOT NULL, + replacement integer, + unit integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_maintenance_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_maintenance_line OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_maintenance_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_maintenance_line IS 'Maintenance Line'; + + +-- +-- Name: optical_equipment_maintenance_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_maintenance_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_maintenance_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_service; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_maintenance_service ( + id integer NOT NULL, + code character varying, + company integer, + contract_origin character varying, + create_date timestamp(6) without time zone, + create_uid integer, + current_agended integer, + description character varying, + estimated_agended timestamp(0) without time zone, + invima character varying, + maintenance_type character varying, + moisture_max double precision, + moisture_min double precision, + moisture_uom integer, + propietary integer NOT NULL, + propietary_address integer NOT NULL, + reference character varying, + sale_date character varying, + sale_origin character varying, + state character varying NOT NULL, + state_agended character varying, + technical integer, + technician_responsible character varying, + technician_signature bytea, + temperature_max double precision, + temperature_min double precision, + temperature_uom integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_maintenance_service_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_maintenance_service OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_maintenance_service; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_maintenance_service IS 'Equipment Maintenance Service'; + + +-- +-- Name: optical_equipment_maintenance_service-equipment_contract; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."optical_equipment_maintenance_service-equipment_contract" ( + id integer NOT NULL, + contract integer, + create_date timestamp(6) without time zone, + create_uid integer, + maintenance_services integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT e4ac5a5b99ae21f812adf27ea61c10babdd9b48ccca2c3d094313f7396d2219 CHECK ((id >= 0)) +); + + +ALTER TABLE public."optical_equipment_maintenance_service-equipment_contract" OWNER TO tryton; + +-- +-- Name: TABLE "optical_equipment_maintenance_service-equipment_contract"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."optical_equipment_maintenance_service-equipment_contract" IS 'Contract - Maintenance Services'; + + +-- +-- Name: optical_equipment_maintenance_service-equipment_contract_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."optical_equipment_maintenance_service-equipment_contract" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."optical_equipment_maintenance_service-equipment_contract_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_service-maintenance_diary; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."optical_equipment_maintenance_service-maintenance_diary" ( + id integer NOT NULL, + agended integer, + create_date timestamp(6) without time zone, + create_uid integer, + maintenance_service integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT fb5d389e1917b50be09a6ccc6176d6c2ea489f9d8b9c09bdd37abaedb7a8e18 CHECK ((id >= 0)) +); + + +ALTER TABLE public."optical_equipment_maintenance_service-maintenance_diary" OWNER TO tryton; + +-- +-- Name: TABLE "optical_equipment_maintenance_service-maintenance_diary"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."optical_equipment_maintenance_service-maintenance_diary" IS 'Service Maintenance - Agended'; + + +-- +-- Name: optical_equipment_maintenance_service-maintenance_diary_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."optical_equipment_maintenance_service-maintenance_diary" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."optical_equipment_maintenance_service-maintenance_diary_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_maintenance_service_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_maintenance_service ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_maintenance_service_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_product_pattern; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_product_pattern ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + pattern double precision, + product integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_product_pattern_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_product_pattern OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_product_pattern; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_product_pattern IS 'Pattern K of equipment'; + + +-- +-- Name: optical_equipment_product_pattern_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_product_pattern ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_product_pattern_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: optical_equipment_use_pattern; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.optical_equipment_use_pattern ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + name_pattern character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT optical_equipment_use_pattern_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.optical_equipment_use_pattern OWNER TO tryton; + +-- +-- Name: TABLE optical_equipment_use_pattern; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.optical_equipment_use_pattern IS 'Use Pattern'; + + +-- +-- Name: optical_equipment_use_pattern_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.optical_equipment_use_pattern ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.optical_equipment_use_pattern_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_address; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_address ( + id integer NOT NULL, + active boolean DEFAULT false, + city character varying, + country integer, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying, + party integer NOT NULL, + party_name character varying, + postal_code character varying, + sequence integer, + street text, + subdivision integer, + write_date timestamp(6) without time zone, + write_uid integer, + delivery boolean DEFAULT false, + invoice boolean DEFAULT false, + campus boolean DEFAULT false, + party_related integer, + CONSTRAINT party_address_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_address OWNER TO tryton; + +-- +-- Name: TABLE party_address; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_address IS 'Address'; + + +-- +-- Name: party_address_format; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_address_format ( + id integer NOT NULL, + active boolean DEFAULT false, + country_code character varying(2), + create_date timestamp(6) without time zone, + create_uid integer, + format_ text NOT NULL, + language_code character varying(2), + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_address_format_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_address_format OWNER TO tryton; + +-- +-- Name: TABLE party_address_format; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_address_format IS 'Address Format'; + + +-- +-- Name: party_address_format_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_address_format ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_address_format_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_address_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_address ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_address_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_address_subdivision_type; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_address_subdivision_type ( + id integer NOT NULL, + active boolean DEFAULT false, + country_code character varying(2) NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + types character varying, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public.party_address_subdivision_type OWNER TO tryton; + +-- +-- Name: TABLE party_address_subdivision_type; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_address_subdivision_type IS 'Address Subdivision Type'; + + +-- +-- Name: party_address_subdivision_type_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_address_subdivision_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_address_subdivision_type_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_category; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_category ( + id integer NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + parent integer, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public.party_category OWNER TO tryton; + +-- +-- Name: TABLE party_category; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_category IS 'Category'; + + +-- +-- Name: party_category_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_category ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_category_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_category_rel ( + id integer NOT NULL, + category integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + party integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_category_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_category_rel OWNER TO tryton; + +-- +-- Name: TABLE party_category_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_category_rel IS 'Party - Category'; + + +-- +-- Name: party_category_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_category_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_category_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_configuration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_configuration ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + identifier_types character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_configuration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_configuration OWNER TO tryton; + +-- +-- Name: TABLE party_configuration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_configuration IS 'Party Configuration'; + + +-- +-- Name: party_configuration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_configuration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_configuration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_configuration_party_lang; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_configuration_party_lang ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + party_lang integer, + write_date timestamp(6) without time zone, + write_uid integer, + company integer, + CONSTRAINT party_configuration_party_lang_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_configuration_party_lang OWNER TO tryton; + +-- +-- Name: TABLE party_configuration_party_lang; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_configuration_party_lang IS 'Party Configuration Lang'; + + +-- +-- Name: party_configuration_party_lang_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_configuration_party_lang ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_configuration_party_lang_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_configuration_party_sequence; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_configuration_party_sequence ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + party_sequence integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_configuration_party_sequence_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_configuration_party_sequence OWNER TO tryton; + +-- +-- Name: TABLE party_configuration_party_sequence; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_configuration_party_sequence IS 'Party Configuration Sequence'; + + +-- +-- Name: party_configuration_party_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_configuration_party_sequence ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_configuration_party_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_contact_mechanism; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_contact_mechanism ( + id integer NOT NULL, + active boolean DEFAULT false, + address integer, + comment text, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying, + party integer NOT NULL, + sequence integer, + type character varying NOT NULL, + value character varying, + value_compact character varying, + write_date timestamp(6) without time zone, + write_uid integer, + delivery boolean DEFAULT false, + invoice boolean DEFAULT false, + CONSTRAINT party_contact_mechanism_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_contact_mechanism OWNER TO tryton; + +-- +-- Name: TABLE party_contact_mechanism; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_contact_mechanism IS 'Contact Mechanism'; + + +-- +-- Name: party_contact_mechanism_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_contact_mechanism ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_contact_mechanism_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_contact_mechanism_language; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_contact_mechanism_language ( + id integer NOT NULL, + contact_mechanism integer, + create_date timestamp(6) without time zone, + create_uid integer, + language integer, + write_date timestamp(6) without time zone, + write_uid integer, + company integer, + CONSTRAINT party_contact_mechanism_language_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_contact_mechanism_language OWNER TO tryton; + +-- +-- Name: TABLE party_contact_mechanism_language; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_contact_mechanism_language IS 'Contact Mechanism Language'; + + +-- +-- Name: party_contact_mechanism_language_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_contact_mechanism_language ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_contact_mechanism_language_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_identifier; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_identifier ( + id integer NOT NULL, + active boolean DEFAULT false, + address integer, + code character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + party integer NOT NULL, + sequence integer, + type character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_identifier_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_identifier OWNER TO tryton; + +-- +-- Name: TABLE party_identifier; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_identifier IS 'Party Identifier'; + + +-- +-- Name: party_identifier_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_identifier ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_identifier_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party ( + id integer NOT NULL, + active boolean DEFAULT false, + code character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying, + replaced_by integer, + write_date timestamp(6) without time zone, + write_uid integer, + customer_type character varying +); + + +ALTER TABLE public.party_party OWNER TO tryton; + +-- +-- Name: TABLE party_party; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party IS 'Party'; + + +-- +-- Name: party_party-delivered_to-stock_location; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."party_party-delivered_to-stock_location" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + location integer NOT NULL, + party integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "party_party-delivered_to-stock_location_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."party_party-delivered_to-stock_location" OWNER TO tryton; + +-- +-- Name: TABLE "party_party-delivered_to-stock_location"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."party_party-delivered_to-stock_location" IS 'Party Delivered to Warehouse'; + + +-- +-- Name: party_party-delivered_to-stock_location_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."party_party-delivered_to-stock_location" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."party_party-delivered_to-stock_location_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_account; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_account ( + id integer NOT NULL, + account_payable integer, + account_receivable integer, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + customer_tax_rule integer, + party integer, + supplier_tax_rule integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_party_account_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_account OWNER TO tryton; + +-- +-- Name: TABLE party_party_account; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_account IS 'Party Account'; + + +-- +-- Name: party_party_account_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_account ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_account_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_customer_code; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_customer_code ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + customer_code character varying, + party integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_party_customer_code_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_customer_code OWNER TO tryton; + +-- +-- Name: TABLE party_party_customer_code; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_customer_code IS 'Party Customer Code'; + + +-- +-- Name: party_party_customer_code_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_customer_code ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_customer_code_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_customer_currency; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_customer_currency ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + customer_currency integer, + party integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_party_customer_currency_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_customer_currency OWNER TO tryton; + +-- +-- Name: TABLE party_party_customer_currency; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_customer_currency IS 'Party Customer Currency'; + + +-- +-- Name: party_party_customer_currency_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_customer_currency ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_customer_currency_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_lang; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_lang ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + lang integer, + party integer, + write_date timestamp(6) without time zone, + write_uid integer, + company integer, + CONSTRAINT party_party_lang_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_lang OWNER TO tryton; + +-- +-- Name: TABLE party_party_lang; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_lang IS 'Party Lang'; + + +-- +-- Name: party_party_lang_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_lang ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_lang_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_location; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_location ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + customer_location integer, + party integer, + supplier_location integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_party_location_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_location OWNER TO tryton; + +-- +-- Name: TABLE party_party_location; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_location IS 'Party Location'; + + +-- +-- Name: party_party_location_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_location ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_location_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_payment_term; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_payment_term ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + customer_payment_term integer, + party integer, + supplier_payment_term integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_party_payment_term_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_payment_term OWNER TO tryton; + +-- +-- Name: TABLE party_party_payment_term; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_payment_term IS 'Party Payment Term'; + + +-- +-- Name: party_party_payment_term_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_payment_term ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_payment_term_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_sale_method; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_sale_method ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + party integer, + sale_invoice_method character varying, + sale_shipment_method character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_party_sale_method_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_sale_method OWNER TO tryton; + +-- +-- Name: TABLE party_party_sale_method; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_sale_method IS 'Party Sale Method'; + + +-- +-- Name: party_party_sale_method_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_sale_method ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_sale_method_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_supplier_currency; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_supplier_currency ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + party integer, + supplier_currency integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_party_supplier_currency_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_supplier_currency OWNER TO tryton; + +-- +-- Name: TABLE party_party_supplier_currency; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_supplier_currency IS 'Party Supplier Currency'; + + +-- +-- Name: party_party_supplier_currency_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_supplier_currency ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_supplier_currency_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: party_party_supplier_lead_time; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.party_party_supplier_lead_time ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + party integer, + supplier_lead_time interval, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT party_party_supplier_lead_time_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.party_party_supplier_lead_time OWNER TO tryton; + +-- +-- Name: TABLE party_party_supplier_lead_time; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.party_party_supplier_lead_time IS 'Supplier Lead Time'; + + +-- +-- Name: party_party_supplier_lead_time_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.party_party_supplier_lead_time ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.party_party_supplier_lead_time_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_attribute; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_attribute ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + digits integer, + domain character varying, + help text, + help_selection text, + name character varying NOT NULL, + selection text, + selection_sorted boolean DEFAULT false, + string character varying NOT NULL, + type_ character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_attribute_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_attribute OWNER TO tryton; + +-- +-- Name: TABLE product_attribute; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_attribute IS 'Product Attribute'; + + +-- +-- Name: product_attribute-product_attribute-set; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."product_attribute-product_attribute-set" ( + id integer NOT NULL, + attribute integer NOT NULL, + attribute_set integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "product_attribute-product_attribute-set_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."product_attribute-product_attribute-set" OWNER TO tryton; + +-- +-- Name: TABLE "product_attribute-product_attribute-set"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."product_attribute-product_attribute-set" IS 'Product Attribute - Set'; + + +-- +-- Name: product_attribute-product_attribute-set_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."product_attribute-product_attribute-set" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."product_attribute-product_attribute-set_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_attribute_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_attribute ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_attribute_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_attribute_set; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_attribute_set ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_attribute_set_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_attribute_set OWNER TO tryton; + +-- +-- Name: TABLE product_attribute_set; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_attribute_set IS 'Product Attribute Set'; + + +-- +-- Name: product_attribute_set_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_attribute_set ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_attribute_set_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_category; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_category ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + parent integer, + write_date timestamp(6) without time zone, + write_uid integer, + account_parent boolean DEFAULT false, + accounting boolean DEFAULT false, + supplier_taxes_deductible_rate numeric, + taxes_parent boolean DEFAULT false, + CONSTRAINT product_category_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_category OWNER TO tryton; + +-- +-- Name: TABLE product_category; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_category IS 'Product Category'; + + +-- +-- Name: product_category_account; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_category_account ( + id integer NOT NULL, + account_expense integer, + account_revenue integer, + category integer, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_category_account_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_category_account OWNER TO tryton; + +-- +-- Name: TABLE product_category_account; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_category_account IS 'Category Account'; + + +-- +-- Name: product_category_account_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_category_account ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_category_account_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_category_customer_taxes_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_category_customer_taxes_rel ( + id integer NOT NULL, + category integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + tax integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_category_customer_taxes_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_category_customer_taxes_rel OWNER TO tryton; + +-- +-- Name: TABLE product_category_customer_taxes_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_category_customer_taxes_rel IS 'Category - Customer Tax'; + + +-- +-- Name: product_category_customer_taxes_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_category_customer_taxes_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_category_customer_taxes_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_category_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_category ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_category_supplier_taxes_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_category_supplier_taxes_rel ( + id integer NOT NULL, + category integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + tax integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_category_supplier_taxes_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_category_supplier_taxes_rel OWNER TO tryton; + +-- +-- Name: TABLE product_category_supplier_taxes_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_category_supplier_taxes_rel IS 'Category - Supplier Tax'; + + +-- +-- Name: product_category_supplier_taxes_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_category_supplier_taxes_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_category_supplier_taxes_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_configuration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_configuration ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + product_sequence integer, + template_sequence integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_configuration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_configuration OWNER TO tryton; + +-- +-- Name: TABLE product_configuration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_configuration IS 'Product Configuration'; + + +-- +-- Name: product_configuration_default_cost_price_method; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_configuration_default_cost_price_method ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + default_cost_price_method character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_configuration_default_cost_price_method_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_configuration_default_cost_price_method OWNER TO tryton; + +-- +-- Name: TABLE product_configuration_default_cost_price_method; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_configuration_default_cost_price_method IS 'Product Configuration Default Cost Price Method'; + + +-- +-- Name: product_configuration_default_cost_price_method_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_configuration_default_cost_price_method ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_configuration_default_cost_price_method_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_configuration_default_lead_time; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_configuration_default_lead_time ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + default_lead_time interval, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_configuration_default_lead_time_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_configuration_default_lead_time OWNER TO tryton; + +-- +-- Name: TABLE product_configuration_default_lead_time; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_configuration_default_lead_time IS 'Product Default Lead Time'; + + +-- +-- Name: product_configuration_default_lead_time_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_configuration_default_lead_time ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_configuration_default_lead_time_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_configuration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_configuration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_configuration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_cost_price; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_cost_price ( + id integer NOT NULL, + company integer NOT NULL, + cost_price numeric NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + product integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_cost_price_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_cost_price OWNER TO tryton; + +-- +-- Name: TABLE product_cost_price; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_cost_price IS 'Product Cost Price'; + + +-- +-- Name: product_cost_price_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_cost_price ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_cost_price_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_cost_price_method; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_cost_price_method ( + id integer NOT NULL, + company integer, + cost_price_method character varying, + create_date timestamp(6) without time zone, + create_uid integer, + template integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_cost_price_method_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_cost_price_method OWNER TO tryton; + +-- +-- Name: TABLE product_cost_price_method; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_cost_price_method IS 'Product Cost Price Method'; + + +-- +-- Name: product_cost_price_method_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_cost_price_method ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_cost_price_method_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_cost_price_revision; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_cost_price_revision ( + id integer NOT NULL, + company integer NOT NULL, + cost_price character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + date date NOT NULL, + product integer, + template integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_cost_price_revision_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_cost_price_revision OWNER TO tryton; + +-- +-- Name: TABLE product_cost_price_revision; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_cost_price_revision IS 'Product Cost Price Revision'; + + +-- +-- Name: product_cost_price_revision_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_cost_price_revision ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_cost_price_revision_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_identifier; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_identifier ( + id integer NOT NULL, + code character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + product integer NOT NULL, + sequence integer, + type character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_identifier_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_identifier OWNER TO tryton; + +-- +-- Name: TABLE product_identifier; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_identifier IS 'Product Identifier'; + + +-- +-- Name: product_identifier_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_identifier ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_identifier_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_image; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_image ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + image bytea, + image_id character varying, + product integer, + sequence integer, + template integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_image_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_image OWNER TO tryton; + +-- +-- Name: TABLE product_image; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_image IS 'Product Image'; + + +-- +-- Name: product_image_cache; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_image_cache ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + image bytea, + image_id character varying, + product_image integer NOT NULL, + size integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer +); + + +ALTER TABLE public.product_image_cache OWNER TO tryton; + +-- +-- Name: TABLE product_image_cache; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_image_cache IS 'Product Image Cache'; + + +-- +-- Name: product_image_cache_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_image_cache ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_image_cache_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_image_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_image ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_image_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_lead_time; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_lead_time ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + lead_time interval, + template integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_lead_time_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_lead_time OWNER TO tryton; + +-- +-- Name: TABLE product_lead_time; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_lead_time IS 'Product Lead Time'; + + +-- +-- Name: product_lead_time_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_lead_time ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_lead_time_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_list_price; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_list_price ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + list_price numeric, + template integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_list_price_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_list_price OWNER TO tryton; + +-- +-- Name: TABLE product_list_price; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_list_price IS 'Product List Price'; + + +-- +-- Name: product_list_price_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_list_price ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_list_price_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_product; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_product ( + id integer NOT NULL, + active boolean DEFAULT false, + code character varying, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + suffix_code character varying, + template integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + attributes jsonb +); + + +ALTER TABLE public.product_product OWNER TO tryton; + +-- +-- Name: TABLE product_product; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_product IS 'Product Variant'; + + +-- +-- Name: product_product_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_product ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_product_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_template; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_template ( + id integer NOT NULL, + active boolean DEFAULT false, + code character varying, + consumable boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + default_uom integer NOT NULL, + name character varying NOT NULL, + type character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + account_category integer, + attribute_set integer, + height double precision, + height_uom integer, + length double precision, + length_uom integer, + volume double precision, + volume_uom integer, + weight double precision, + weight_uom integer, + width double precision, + width_uom integer, + purchasable boolean DEFAULT false, + purchase_uom integer, + salable boolean DEFAULT false, + sale_uom integer, + "MEP" double precision, + "Usubi" integer, + a_factor_resolution double precision, + analog_resolution double precision, + biomedical_class character varying, + calibration boolean DEFAULT false, + check_calibration boolean DEFAULT false, + check_electric_system boolean DEFAULT false, + check_equipment boolean DEFAULT false, + clean_eyes boolean DEFAULT false, + clean_int_ext boolean DEFAULT false, + d_resolution double precision, + electrical_equipment boolean DEFAULT false, + equipment boolean DEFAULT false, + equipment_type character varying, + frequency double precision, + frequency_uom integer, + initial_operation boolean DEFAULT false, + k_pattern character varying, + main_tecnology character varying, + maintenance_activity boolean DEFAULT false, + maintenance_required boolean DEFAULT false, + mark_category integer, + measuring_range character varying, + model_category integer, + moisture_max double precision, + moisture_min double precision, + moisture_uom integer, + observation text, + optical boolean DEFAULT false, + origin_country integer, + preventive_activities text, + product integer, + reference_category integer, + refurbish boolean DEFAULT false, + replacement boolean DEFAULT false, + resolution_type character varying, + risk character varying, + software_required boolean DEFAULT false, + software_version character varying, + temperature_max double precision, + temperature_min double precision, + temperature_uom integer, + uncertainy_pattern double precision, + use character varying, + use_pattern integer, + useful_life integer, + "voltageAC" double precision, + "voltageAC_uom" integer, + "voltageDC" double precision, + "voltageDC_uom" integer, + warranty integer, + CONSTRAINT product_template_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_template OWNER TO tryton; + +-- +-- Name: TABLE product_template; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_template IS 'Product Template'; + + +-- +-- Name: product_template-product_category; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."product_template-product_category" ( + id integer NOT NULL, + category integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + template integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "product_template-product_category_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."product_template-product_category" OWNER TO tryton; + +-- +-- Name: TABLE "product_template-product_category"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."product_template-product_category" IS 'Template - Category'; + + +-- +-- Name: product_template-product_category_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."product_template-product_category" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."product_template-product_category_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_template_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_template ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_uom; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_uom ( + id integer NOT NULL, + active boolean DEFAULT false, + category integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + digits integer NOT NULL, + factor double precision NOT NULL, + name character varying NOT NULL, + rate double precision NOT NULL, + rounding double precision NOT NULL, + symbol character varying(10) NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_uom_id_positive CHECK ((id >= 0)), + CONSTRAINT product_uom_non_zero_rate_factor CHECK (((rate <> (0)::double precision) OR (factor <> (0)::double precision))) +); + + +ALTER TABLE public.product_uom OWNER TO tryton; + +-- +-- Name: TABLE product_uom; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_uom IS 'Unit of Measure'; + + +-- +-- Name: product_uom_category; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.product_uom_category ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT product_uom_category_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.product_uom_category OWNER TO tryton; + +-- +-- Name: TABLE product_uom_category; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.product_uom_category IS 'Unit of Measure Category'; + + +-- +-- Name: product_uom_category_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_uom_category ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_uom_category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: product_uom_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.product_uom ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.product_uom_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_configuration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_configuration ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + purchase_process_after interval, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_configuration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_configuration OWNER TO tryton; + +-- +-- Name: TABLE purchase_configuration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_configuration IS 'Purchase Configuration'; + + +-- +-- Name: purchase_configuration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_configuration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_configuration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_configuration_purchase_method; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_configuration_purchase_method ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + purchase_invoice_method character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_configuration_purchase_method_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_configuration_purchase_method OWNER TO tryton; + +-- +-- Name: TABLE purchase_configuration_purchase_method; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_configuration_purchase_method IS 'Purchase Configuration Purchase Method'; + + +-- +-- Name: purchase_configuration_purchase_method_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_configuration_purchase_method ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_configuration_purchase_method_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_configuration_sequence; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_configuration_sequence ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + purchase_sequence integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_configuration_sequence_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_configuration_sequence OWNER TO tryton; + +-- +-- Name: TABLE purchase_configuration_sequence; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_configuration_sequence IS 'Purchase Configuration Sequence'; + + +-- +-- Name: purchase_configuration_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_configuration_sequence ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_configuration_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_invoice_ignored_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_invoice_ignored_rel ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + invoice integer NOT NULL, + purchase integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_invoice_ignored_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_invoice_ignored_rel OWNER TO tryton; + +-- +-- Name: TABLE purchase_invoice_ignored_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_invoice_ignored_rel IS 'Purchase - Ignored Invoice'; + + +-- +-- Name: purchase_invoice_ignored_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_invoice_ignored_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_invoice_ignored_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_invoice_recreated_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_invoice_recreated_rel ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + invoice integer NOT NULL, + purchase integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_invoice_recreated_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_invoice_recreated_rel OWNER TO tryton; + +-- +-- Name: TABLE purchase_invoice_recreated_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_invoice_recreated_rel IS 'Purchase - Recreated Invoice'; + + +-- +-- Name: purchase_invoice_recreated_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_invoice_recreated_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_invoice_recreated_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_line ( + id integer NOT NULL, + actual_quantity double precision, + create_date timestamp(6) without time zone, + create_uid integer, + delivery_date_edit boolean DEFAULT false, + delivery_date_store date, + description text, + note text, + product integer, + product_supplier integer, + purchase integer NOT NULL, + quantity double precision, + sequence integer, + type character varying NOT NULL, + unit integer, + unit_price numeric, + write_date timestamp(6) without time zone, + write_uid integer, + address_equipment integer NOT NULL, + health_register character varying, + origin_country integer, + product_equipment boolean DEFAULT false, + refurbish boolean DEFAULT false, + serial_equipment character varying, + software_version character varying, + CONSTRAINT purchase_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_line OWNER TO tryton; + +-- +-- Name: TABLE purchase_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_line IS 'Purchase Line'; + + +-- +-- Name: purchase_line_account_tax; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_line_account_tax ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + line integer NOT NULL, + tax integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_line_account_tax_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_line_account_tax OWNER TO tryton; + +-- +-- Name: TABLE purchase_line_account_tax; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_line_account_tax IS 'Purchase Line - Tax'; + + +-- +-- Name: purchase_line_account_tax_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_line_account_tax ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_line_account_tax_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_line_moves_ignored_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_line_moves_ignored_rel ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + move integer NOT NULL, + purchase_line integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_line_moves_ignored_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_line_moves_ignored_rel OWNER TO tryton; + +-- +-- Name: TABLE purchase_line_moves_ignored_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_line_moves_ignored_rel IS 'Purchase Line - Ignored Move'; + + +-- +-- Name: purchase_line_moves_ignored_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_line_moves_ignored_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_line_moves_ignored_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_line_moves_recreated_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_line_moves_recreated_rel ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + move integer NOT NULL, + purchase_line integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_line_moves_recreated_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_line_moves_recreated_rel OWNER TO tryton; + +-- +-- Name: TABLE purchase_line_moves_recreated_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_line_moves_recreated_rel IS 'Purchase Line - Ignored Move'; + + +-- +-- Name: purchase_line_moves_recreated_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_line_moves_recreated_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_line_moves_recreated_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_product_supplier; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_product_supplier ( + id integer NOT NULL, + active boolean DEFAULT false, + code character varying, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + lead_time interval, + name character varying, + party integer NOT NULL, + product integer, + sequence integer, + template integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_product_supplier_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_product_supplier OWNER TO tryton; + +-- +-- Name: TABLE purchase_product_supplier; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_product_supplier IS 'Product Supplier'; + + +-- +-- Name: purchase_product_supplier_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_product_supplier ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_product_supplier_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_product_supplier_price; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_product_supplier_price ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + product_supplier integer NOT NULL, + quantity double precision NOT NULL, + sequence integer, + unit_price numeric NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT purchase_product_supplier_price_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_product_supplier_price OWNER TO tryton; + +-- +-- Name: TABLE purchase_product_supplier_price; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_product_supplier_price IS 'Product Supplier Price'; + + +-- +-- Name: purchase_product_supplier_price_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_product_supplier_price ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_product_supplier_price_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: purchase_purchase; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.purchase_purchase ( + id integer NOT NULL, + comment text, + company integer NOT NULL, + confirmed_by integer, + contact integer, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + delivery_date date, + description character varying, + invoice_address integer, + invoice_method character varying NOT NULL, + invoice_party integer, + invoice_state character varying NOT NULL, + number character varying, + origin character varying, + party integer NOT NULL, + payment_term integer, + purchase_date date, + quoted_by integer, + reference character varying, + shipment_state character varying NOT NULL, + state character varying NOT NULL, + tax_amount_cache numeric, + total_amount_cache numeric, + untaxed_amount_cache numeric, + warehouse integer, + write_date timestamp(6) without time zone, + write_uid integer, + equipment_create boolean DEFAULT false, + CONSTRAINT purchase_purchase_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.purchase_purchase OWNER TO tryton; + +-- +-- Name: TABLE purchase_purchase; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.purchase_purchase IS 'Purchase'; + + +-- +-- Name: purchase_purchase_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.purchase_purchase ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.purchase_purchase_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.res_group ( + id integer NOT NULL, + name character varying NOT NULL, + active boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + parent integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT res_group_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.res_group OWNER TO tryton; + +-- +-- Name: TABLE res_group; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.res_group IS 'Group'; + + +-- +-- Name: res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.res_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.res_group_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.res_user ( + id integer NOT NULL, + name character varying, + active boolean DEFAULT false, + login character varying NOT NULL, + password character varying, + create_date timestamp(6) without time zone, + create_uid integer, + email character varying, + language integer, + menu integer NOT NULL, + password_hash character varying, + password_reset character varying, + password_reset_expire timestamp(6) without time zone, + signature text, + write_date timestamp(6) without time zone, + write_uid integer, + company integer, + company_filter character varying, + employee integer, + warehouse integer, + CONSTRAINT res_user_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.res_user OWNER TO tryton; + +-- +-- Name: TABLE res_user; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.res_user IS 'User'; + + +-- +-- Name: res_user-company_company; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."res_user-company_company" ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + "user" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "res_user-company_company_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."res_user-company_company" OWNER TO tryton; + +-- +-- Name: TABLE "res_user-company_company"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."res_user-company_company" IS 'User - Company'; + + +-- +-- Name: res_user-company_company_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."res_user-company_company" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."res_user-company_company_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user-company_employee; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."res_user-company_employee" ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + employee integer NOT NULL, + "user" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "res_user-company_employee_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."res_user-company_employee" OWNER TO tryton; + +-- +-- Name: TABLE "res_user-company_employee"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."res_user-company_employee" IS 'User - Employee'; + + +-- +-- Name: res_user-company_employee_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."res_user-company_employee" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."res_user-company_employee_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user-ir_action; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."res_user-ir_action" ( + id integer NOT NULL, + action integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + "user" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "res_user-ir_action_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."res_user-ir_action" OWNER TO tryton; + +-- +-- Name: TABLE "res_user-ir_action"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."res_user-ir_action" IS 'User - Action'; + + +-- +-- Name: res_user-ir_action_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."res_user-ir_action" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."res_user-ir_action_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user-res_group; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public."res_user-res_group" ( + id integer NOT NULL, + "user" integer NOT NULL, + "group" integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT "res_user-res_group_id_positive" CHECK ((id >= 0)) +); + + +ALTER TABLE public."res_user-res_group" OWNER TO tryton; + +-- +-- Name: TABLE "res_user-res_group"; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public."res_user-res_group" IS 'User - Group'; + + +-- +-- Name: res_user-res_group_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public."res_user-res_group" ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public."res_user-res_group_id_seq" + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user_application; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.res_user_application ( + id integer NOT NULL, + application character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + key character varying NOT NULL, + state character varying, + "user" integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT res_user_application_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.res_user_application OWNER TO tryton; + +-- +-- Name: TABLE res_user_application; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.res_user_application IS 'User Application'; + + +-- +-- Name: res_user_application_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.res_user_application ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.res_user_application_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user_device; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.res_user_device ( + id integer NOT NULL, + cookie character varying NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + login character varying NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT res_user_device_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.res_user_device OWNER TO tryton; + +-- +-- Name: TABLE res_user_device; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.res_user_device IS 'User Device'; + + +-- +-- Name: res_user_device_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.res_user_device ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.res_user_device_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.res_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.res_user_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user_login_attempt; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.res_user_login_attempt ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + device_cookie character varying, + ip_address character varying, + ip_network character varying, + login character varying(512), + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT res_user_login_attempt_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.res_user_login_attempt OWNER TO tryton; + +-- +-- Name: TABLE res_user_login_attempt; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.res_user_login_attempt IS 'Login Attempt + + This class is separated from the res.user one in order to prevent locking + the res.user table when in a long running process. + '; + + +-- +-- Name: res_user_login_attempt_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.res_user_login_attempt ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.res_user_login_attempt_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: res_user_warning; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.res_user_warning ( + id integer NOT NULL, + always boolean DEFAULT false, + create_date timestamp(6) without time zone, + create_uid integer, + name character varying NOT NULL, + "user" integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT res_user_warning_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.res_user_warning OWNER TO tryton; + +-- +-- Name: TABLE res_user_warning; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.res_user_warning IS 'User Warning'; + + +-- +-- Name: res_user_warning_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.res_user_warning ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.res_user_warning_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_configuration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_configuration ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + sale_process_after interval, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT sale_configuration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_configuration OWNER TO tryton; + +-- +-- Name: TABLE sale_configuration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_configuration IS 'Sale Configuration'; + + +-- +-- Name: sale_configuration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_configuration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_configuration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_configuration_sale_method; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_configuration_sale_method ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + sale_invoice_method character varying, + sale_shipment_method character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT sale_configuration_sale_method_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_configuration_sale_method OWNER TO tryton; + +-- +-- Name: TABLE sale_configuration_sale_method; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_configuration_sale_method IS 'Sale Configuration Sale Method'; + + +-- +-- Name: sale_configuration_sale_method_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_configuration_sale_method ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_configuration_sale_method_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_configuration_sequence; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_configuration_sequence ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + sale_sequence integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT sale_configuration_sequence_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_configuration_sequence OWNER TO tryton; + +-- +-- Name: TABLE sale_configuration_sequence; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_configuration_sequence IS 'Sale Configuration Sequence'; + + +-- +-- Name: sale_configuration_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_configuration_sequence ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_configuration_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_invoice_ignored_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_invoice_ignored_rel ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + invoice integer NOT NULL, + sale integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT sale_invoice_ignored_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_invoice_ignored_rel OWNER TO tryton; + +-- +-- Name: TABLE sale_invoice_ignored_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_invoice_ignored_rel IS 'Sale - Ignored Invoice'; + + +-- +-- Name: sale_invoice_ignored_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_invoice_ignored_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_invoice_ignored_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_invoice_recreated_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_invoice_recreated_rel ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + invoice integer NOT NULL, + sale integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT sale_invoice_recreated_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_invoice_recreated_rel OWNER TO tryton; + +-- +-- Name: TABLE sale_invoice_recreated_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_invoice_recreated_rel IS 'Sale - Recreated Invoice'; + + +-- +-- Name: sale_invoice_recreated_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_invoice_recreated_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_invoice_recreated_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_line ( + id integer NOT NULL, + actual_quantity double precision, + create_date timestamp(6) without time zone, + create_uid integer, + description text, + note text, + product integer, + quantity double precision, + sale integer NOT NULL, + sequence integer, + type character varying NOT NULL, + unit integer, + unit_price numeric, + write_date timestamp(6) without time zone, + write_uid integer, + product_equipment boolean DEFAULT false, + CONSTRAINT sale_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_line OWNER TO tryton; + +-- +-- Name: TABLE sale_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_line IS 'Sale Line'; + + +-- +-- Name: sale_line_account_tax; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_line_account_tax ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + line integer NOT NULL, + tax integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT sale_line_account_tax_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_line_account_tax OWNER TO tryton; + +-- +-- Name: TABLE sale_line_account_tax; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_line_account_tax IS 'Sale Line - Tax'; + + +-- +-- Name: sale_line_account_tax_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_line_account_tax ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_line_account_tax_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_line_moves_ignored_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_line_moves_ignored_rel ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + move integer NOT NULL, + sale_line integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT sale_line_moves_ignored_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_line_moves_ignored_rel OWNER TO tryton; + +-- +-- Name: TABLE sale_line_moves_ignored_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_line_moves_ignored_rel IS 'Sale Line - Ignored Move'; + + +-- +-- Name: sale_line_moves_ignored_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_line_moves_ignored_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_line_moves_ignored_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_line_moves_recreated_rel; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_line_moves_recreated_rel ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + move integer NOT NULL, + sale_line integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT sale_line_moves_recreated_rel_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_line_moves_recreated_rel OWNER TO tryton; + +-- +-- Name: TABLE sale_line_moves_recreated_rel; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_line_moves_recreated_rel IS 'Sale Line - Recreated Move'; + + +-- +-- Name: sale_line_moves_recreated_rel_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_line_moves_recreated_rel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_line_moves_recreated_rel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: sale_sale; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.sale_sale ( + id integer NOT NULL, + comment text, + company integer NOT NULL, + confirmed_by integer, + contact integer, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer NOT NULL, + description character varying, + invoice_address integer, + invoice_method character varying NOT NULL, + invoice_party integer, + invoice_state character varying NOT NULL, + number character varying, + origin character varying, + party integer NOT NULL, + payment_term integer, + quoted_by integer, + reference character varying, + sale_date date, + shipment_address integer, + shipment_method character varying NOT NULL, + shipment_party integer, + shipment_state character varying NOT NULL, + shipping_date date, + state character varying NOT NULL, + tax_amount_cache numeric, + total_amount_cache numeric, + untaxed_amount_cache numeric, + warehouse integer, + write_date timestamp(6) without time zone, + write_uid integer, + agended boolean DEFAULT false, + contract_ref character varying, + maintenance_type character varying, + payment_term_description character varying, + quote_number character varying, + sale_type character varying NOT NULL, + CONSTRAINT sale_sale_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.sale_sale OWNER TO tryton; + +-- +-- Name: TABLE sale_sale; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.sale_sale IS 'Sale'; + + +-- +-- Name: sale_sale_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.sale_sale ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.sale_sale_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_configuration; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_configuration ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_configuration_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_configuration OWNER TO tryton; + +-- +-- Name: TABLE stock_configuration; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_configuration IS 'Stock Configuration'; + + +-- +-- Name: stock_configuration_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_configuration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_configuration_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_configuration_location; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_configuration_location ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + shipment_internal_transit integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_configuration_location_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_configuration_location OWNER TO tryton; + +-- +-- Name: TABLE stock_configuration_location; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_configuration_location IS 'Stock Configuration Location'; + + +-- +-- Name: stock_configuration_location_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_configuration_location ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_configuration_location_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_configuration_sequence; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_configuration_sequence ( + id integer NOT NULL, + company integer, + create_date timestamp(6) without time zone, + create_uid integer, + inventory_sequence integer NOT NULL, + shipment_in_return_sequence integer NOT NULL, + shipment_in_sequence integer NOT NULL, + shipment_internal_sequence integer NOT NULL, + shipment_out_return_sequence integer NOT NULL, + shipment_out_sequence integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_configuration_sequence_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_configuration_sequence OWNER TO tryton; + +-- +-- Name: TABLE stock_configuration_sequence; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_configuration_sequence IS 'Stock Configuration Sequence'; + + +-- +-- Name: stock_configuration_sequence_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_configuration_sequence ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_configuration_sequence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_inventory; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_inventory ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + date date NOT NULL, + empty_quantity character varying, + location integer NOT NULL, + number character varying, + state character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_inventory_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_inventory OWNER TO tryton; + +-- +-- Name: TABLE stock_inventory; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_inventory IS 'Stock Inventory'; + + +-- +-- Name: stock_inventory_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_inventory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_inventory_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_inventory_line; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_inventory_line ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + expected_quantity double precision NOT NULL, + inventory integer NOT NULL, + product integer NOT NULL, + quantity double precision, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_inventory_line_check_line_qty_pos CHECK ((quantity >= (0)::double precision)), + CONSTRAINT stock_inventory_line_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_inventory_line OWNER TO tryton; + +-- +-- Name: TABLE stock_inventory_line; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_inventory_line IS 'Stock Inventory Line'; + + +-- +-- Name: stock_inventory_line_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_inventory_line ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_inventory_line_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_location; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_location ( + id integer NOT NULL, + active boolean DEFAULT false, + address integer, + allow_pickup boolean DEFAULT false, + code character varying, + create_date timestamp(6) without time zone, + create_uid integer, + flat_childs boolean DEFAULT false, + input_location integer, + "left" integer NOT NULL, + lost_found_location integer, + name character varying NOT NULL, + output_location integer, + parent integer, + picking_location integer, + "right" integer NOT NULL, + storage_location integer, + type character varying, + write_date timestamp(6) without time zone, + write_uid integer, + supplier_return_location integer, + CONSTRAINT stock_location_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_location OWNER TO tryton; + +-- +-- Name: TABLE stock_location; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_location IS 'Stock Location'; + + +-- +-- Name: stock_location_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_location ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_location_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_location_lead_time; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_location_lead_time ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + lead_time interval, + sequence integer, + warehouse_from integer, + warehouse_to integer, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_location_lead_time_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_location_lead_time OWNER TO tryton; + +-- +-- Name: TABLE stock_location_lead_time; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_location_lead_time IS 'Location Lead Time'; + + +-- +-- Name: stock_location_lead_time_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_location_lead_time ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_location_lead_time_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_location_waste; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_location_waste ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + location integer NOT NULL, + warehouse integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_location_waste_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_location_waste OWNER TO tryton; + +-- +-- Name: TABLE stock_location_waste; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_location_waste IS 'Warehouse Waste Location'; + + +-- +-- Name: stock_location_waste_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_location_waste ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_location_waste_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_move; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_move ( + id integer NOT NULL, + company integer NOT NULL, + cost_price numeric, + create_date timestamp(6) without time zone, + create_uid integer, + currency integer, + effective_date date, + from_location integer NOT NULL, + internal_quantity double precision NOT NULL, + origin character varying, + origin_planned_date date, + planned_date date, + product integer NOT NULL, + product_cost_price numeric, + quantity double precision NOT NULL, + shipment character varying, + state character varying, + to_location integer NOT NULL, + unit integer NOT NULL, + unit_price numeric, + unit_price_updated boolean DEFAULT false, + write_date timestamp(6) without time zone, + write_uid integer, + equipment integer, + return_equipment boolean DEFAULT false, + CONSTRAINT stock_move_check_from_to_locations CHECK ((from_location <> to_location)), + CONSTRAINT stock_move_check_move_internal_qty_pos CHECK ((internal_quantity >= (0)::double precision)), + CONSTRAINT stock_move_check_move_qty_pos CHECK ((quantity >= (0)::double precision)), + CONSTRAINT stock_move_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_move OWNER TO tryton; + +-- +-- Name: TABLE stock_move; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_move IS 'Stock Move'; + + +-- +-- Name: stock_move_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_move ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_move_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_period; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_period ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + date date NOT NULL, + state character varying, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_period_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_period OWNER TO tryton; + +-- +-- Name: TABLE stock_period; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_period IS 'Stock Period'; + + +-- +-- Name: stock_period_cache; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_period_cache ( + id integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + internal_quantity double precision, + location integer NOT NULL, + period integer NOT NULL, + product integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_period_cache_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_period_cache OWNER TO tryton; + +-- +-- Name: TABLE stock_period_cache; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_period_cache IS ' + Stock Period Cache + + It is used to store cached computation of stock quantities. + '; + + +-- +-- Name: stock_period_cache_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_period_cache ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_period_cache_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_period_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_period ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_period_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_shipment_in; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_shipment_in ( + id integer NOT NULL, + company integer NOT NULL, + contact_address integer, + create_date timestamp(6) without time zone, + create_uid integer, + done_by integer, + effective_date date, + number character varying, + origin_planned_date date, + planned_date date, + received_by integer, + reference character varying, + state character varying, + supplier integer NOT NULL, + warehouse integer NOT NULL, + warehouse_input integer NOT NULL, + warehouse_storage integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_shipment_in_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_shipment_in OWNER TO tryton; + +-- +-- Name: TABLE stock_shipment_in; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_shipment_in IS 'Supplier Shipment'; + + +-- +-- Name: stock_shipment_in_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_shipment_in ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_shipment_in_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_shipment_in_return; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_shipment_in_return ( + id integer NOT NULL, + assigned_by integer, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + delivery_address integer, + done_by integer, + effective_date date, + from_location integer NOT NULL, + number character varying, + origin_planned_date date, + planned_date date, + reference character varying, + state character varying, + supplier integer NOT NULL, + to_location integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_shipment_in_return_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_shipment_in_return OWNER TO tryton; + +-- +-- Name: TABLE stock_shipment_in_return; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_shipment_in_return IS 'Supplier Return Shipment'; + + +-- +-- Name: stock_shipment_in_return_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_shipment_in_return ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_shipment_in_return_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_shipment_internal; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_shipment_internal ( + id integer NOT NULL, + assigned_by integer, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + done_by integer, + effective_date date, + effective_start_date date, + from_location integer NOT NULL, + number character varying, + origin_planned_date date, + planned_date date, + planned_start_date date, + reference character varying, + shipped_by integer, + state character varying, + to_location integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + CONSTRAINT stock_shipment_internal_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_shipment_internal OWNER TO tryton; + +-- +-- Name: TABLE stock_shipment_internal; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_shipment_internal IS 'Internal Shipment'; + + +-- +-- Name: stock_shipment_internal_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_shipment_internal ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_shipment_internal_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_shipment_out; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_shipment_out ( + id integer NOT NULL, + company integer NOT NULL, + create_date timestamp(6) without time zone, + create_uid integer, + customer integer NOT NULL, + delivery_address integer NOT NULL, + done_by integer, + effective_date date, + number character varying, + origin_planned_date date, + packed_by integer, + picked_by integer, + planned_date date, + reference character varying, + state character varying, + warehouse integer NOT NULL, + warehouse_output integer NOT NULL, + warehouse_storage integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + sale_type character varying, + service_maintenance_initial boolean DEFAULT false, + CONSTRAINT stock_shipment_out_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_shipment_out OWNER TO tryton; + +-- +-- Name: TABLE stock_shipment_out; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_shipment_out IS 'Customer Shipment'; + + +-- +-- Name: stock_shipment_out_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_shipment_out ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_shipment_out_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Name: stock_shipment_out_return; Type: TABLE; Schema: public; Owner: tryton +-- + +CREATE TABLE public.stock_shipment_out_return ( + id integer NOT NULL, + company integer NOT NULL, + contact_address integer, + create_date timestamp(6) without time zone, + create_uid integer, + customer integer NOT NULL, + done_by integer, + effective_date date, + number character varying, + origin_planned_date date, + planned_date date, + received_by integer, + reference character varying, + state character varying, + warehouse integer NOT NULL, + warehouse_input integer NOT NULL, + warehouse_storage integer NOT NULL, + write_date timestamp(6) without time zone, + write_uid integer, + sale_type character varying, + service_maintenance_initial boolean DEFAULT false, + CONSTRAINT stock_shipment_out_return_id_positive CHECK ((id >= 0)) +); + + +ALTER TABLE public.stock_shipment_out_return OWNER TO tryton; + +-- +-- Name: TABLE stock_shipment_out_return; Type: COMMENT; Schema: public; Owner: tryton +-- + +COMMENT ON TABLE public.stock_shipment_out_return IS 'Customer Return Shipment'; + + +-- +-- Name: stock_shipment_out_return_id_seq; Type: SEQUENCE; Schema: public; Owner: tryton +-- + +ALTER TABLE public.stock_shipment_out_return ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( + SEQUENCE NAME public.stock_shipment_out_return_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1 +); + + +-- +-- Data for Name: account_account; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_account (id, closed, code, company, create_date, create_uid, credit_type, debit_type, end_date, general_ledger_balance, "left", name, note, parent, party_required, reconcile, replaced_by, "right", second_currency, start_date, template, template_override, type, write_date, write_uid) FROM stdin; +2 f \N 1 2024-04-13 20:50:43.288761 1 \N \N \N f 2 Main Cash \N 1 f f \N 3 \N \N 6 f 11 \N \N +3 f \N 1 2024-04-13 20:50:43.288761 1 \N \N \N f 4 Main Expense \N 1 f f \N 5 \N \N 5 f 16 \N \N +4 f \N 1 2024-04-13 20:50:43.288761 1 \N \N \N f 6 Main Payable \N 1 t t \N 7 \N \N 3 f 13 \N \N +5 f \N 1 2024-04-13 20:50:43.288761 1 \N \N \N f 8 Main Receivable \N 1 t t \N 9 \N \N 2 f 12 \N \N +6 f \N 1 2024-04-13 20:50:43.288761 1 \N \N \N f 10 Main Revenue \N 1 f f \N 11 \N \N 4 f 15 \N \N +7 f \N 1 2024-04-13 20:50:43.288761 1 \N \N \N f 12 Main Tax \N 1 f f \N 13 \N \N 7 f 14 \N \N +1 t \N 1 2024-04-13 20:50:43.288761 1 \N \N \N f 1 Minimal Account Chart \N \N f f \N 14 \N \N 1 f 1 \N \N +\. + + +-- +-- Data for Name: account_account_deferral; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_account_deferral (id, account, amount_second_currency, create_date, create_uid, credit, debit, fiscalyear, line_count, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_account_tax_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_account_tax_rel (id, account, create_date, create_uid, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_account_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_account_template (id, closed, code, create_date, create_uid, credit_type, debit_type, end_date, general_ledger_balance, name, parent, party_required, reconcile, replaced_by, start_date, type, write_date, write_uid) FROM stdin; +1 t \N 2024-04-13 20:39:03.023425 0 \N \N \N f Minimal Account Chart \N f f \N \N 1 \N \N +2 f \N 2024-04-13 20:39:03.023425 0 \N \N \N f Main Receivable 1 t t \N \N 5 \N \N +3 f \N 2024-04-13 20:39:03.023425 0 \N \N \N f Main Payable 1 t t \N \N 9 \N \N +4 f \N 2024-04-13 20:39:03.023425 0 \N \N \N f Main Revenue 1 f f \N \N 14 \N \N +5 f \N 2024-04-13 20:39:03.023425 0 \N \N \N f Main Expense 1 f f \N \N 15 \N \N +6 f \N 2024-04-13 20:39:03.023425 0 \N \N \N f Main Cash 1 f f \N \N 4 \N \N +7 f \N 2024-04-13 20:39:03.023425 0 \N \N \N f Main Tax 1 f f \N \N 10 \N \N +\. + + +-- +-- Data for Name: account_account_template_tax_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_account_template_tax_rel (id, account, create_date, create_uid, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_account_type; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_account_type (id, assets, company, create_date, create_uid, debt, expense, name, parent, payable, receivable, revenue, sequence, statement, stock, template, template_override, write_date, write_uid) FROM stdin; +1 f 1 2024-04-13 20:50:43.288761 1 f f Minimal Account Type Chart \N f f f 10 \N f 1 f \N \N +2 t 1 2024-04-13 20:50:43.288761 1 f f Asset 1 f f f 10 balance f 2 f \N \N +3 f 1 2024-04-13 20:50:43.288761 1 f f Liability 1 f f f 20 balance f 7 f \N \N +4 f 1 2024-04-13 20:50:43.288761 1 f f Equity 1 f f f 30 balance f 12 f \N \N +5 f 1 2024-04-13 20:50:43.288761 1 f f Off-Balance 1 f f f 60 off-balance f 16 f \N \N +6 t 1 2024-04-13 20:50:43.288761 1 f f Current 2 f f f 10 balance f 3 f \N \N +7 t 1 2024-04-13 20:50:43.288761 1 f f Long-term 2 f f f 20 balance f 6 f \N \N +8 f 1 2024-04-13 20:50:43.288761 1 f f Current 3 f f f 10 balance f 8 f \N \N +9 f 1 2024-04-13 20:50:43.288761 1 f f Long-term 3 f f f 20 balance f 11 f \N \N +10 f 1 2024-04-13 20:50:43.288761 1 f f Income 4 f f f 40 income f 13 f \N \N +11 t 1 2024-04-13 20:50:43.288761 1 f f Cash 6 f f f 10 balance f 4 f \N \N +12 t 1 2024-04-13 20:50:43.288761 1 f f Receivable 6 f t f 20 balance f 5 f \N \N +13 f 1 2024-04-13 20:50:43.288761 1 f f Payable 8 t f f 10 balance f 9 f \N \N +14 f 1 2024-04-13 20:50:43.288761 1 f f Tax 8 f f f 20 balance f 10 f \N \N +15 f 1 2024-04-13 20:50:43.288761 1 f f Revenue 10 f f t 10 income f 14 f \N \N +16 f 1 2024-04-13 20:50:43.288761 1 f t Expense 10 f f f 20 income f 15 f \N \N +\. + + +-- +-- Data for Name: account_account_type_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_account_type_template (id, assets, create_date, create_uid, debt, expense, name, parent, payable, receivable, revenue, sequence, statement, stock, write_date, write_uid) FROM stdin; +1 f 2024-04-13 20:39:03.023425 0 f f Minimal Account Type Chart \N f f f 10 \N f \N \N +2 t 2024-04-13 20:39:03.023425 0 f f Asset 1 f f f 10 balance f \N \N +3 t 2024-04-13 20:39:03.023425 0 f f Current 2 f f f 10 balance f \N \N +4 t 2024-04-13 20:39:03.023425 0 f f Cash 3 f f f 10 balance f \N \N +5 t 2024-04-13 20:39:03.023425 0 f f Receivable 3 f t f 20 balance f \N \N +6 t 2024-04-13 20:39:03.023425 0 f f Long-term 2 f f f 20 balance f \N \N +7 f 2024-04-13 20:39:03.023425 0 f f Liability 1 f f f 20 balance f \N \N +8 f 2024-04-13 20:39:03.023425 0 f f Current 7 f f f 10 balance f \N \N +9 f 2024-04-13 20:39:03.023425 0 f f Payable 8 t f f 10 balance f \N \N +10 f 2024-04-13 20:39:03.023425 0 f f Tax 8 f f f 20 balance f \N \N +11 f 2024-04-13 20:39:03.023425 0 f f Long-term 7 f f f 20 balance f \N \N +12 f 2024-04-13 20:39:03.023425 0 f f Equity 1 f f f 30 balance f \N \N +13 f 2024-04-13 20:39:03.023425 0 f f Income 12 f f f 40 income f \N \N +14 f 2024-04-13 20:39:03.023425 0 f f Revenue 13 f f t 10 income f \N \N +15 f 2024-04-13 20:39:03.023425 0 f t Expense 13 f f f 20 income f \N \N +16 f 2024-04-13 20:39:03.023425 0 f f Off-Balance 1 f f f 60 off-balance f \N \N +\. + + +-- +-- Data for Name: account_configuration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_configuration (id, create_date, create_uid, write_date, write_uid) FROM stdin; +1 2024-04-13 20:50:46.474735 1 2024-04-13 20:50:46.474735 1 +\. + + +-- +-- Data for Name: account_configuration_default_account; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_configuration_default_account (id, company, create_date, create_uid, currency_exchange_credit_account, currency_exchange_debit_account, default_account_payable, default_account_receivable, write_date, write_uid, default_category_account_expense, default_category_account_revenue) FROM stdin; +1 1 2024-04-13 20:50:46.474735 1 \N \N 4 5 2024-04-13 20:50:46.474735 1 3 6 +\. + + +-- +-- Data for Name: account_configuration_default_payment_term; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_configuration_default_payment_term (id, company, create_date, create_uid, default_customer_payment_term, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_configuration_default_tax_rule; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_configuration_default_tax_rule (id, company, create_date, create_uid, default_customer_tax_rule, default_supplier_tax_rule, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_configuration_journal; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_configuration_journal (id, company, create_date, create_uid, currency_exchange_journal, write_date, write_uid) FROM stdin; +1 1 2024-04-13 20:50:46.474735 1 6 \N \N +\. + + +-- +-- Data for Name: account_configuration_sequence; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_configuration_sequence (id, company, create_date, create_uid, reconciliation_sequence, write_date, write_uid) FROM stdin; +1 1 2024-04-13 20:50:46.474735 1 3 \N \N +\. + + +-- +-- Data for Name: account_configuration_tax_rounding; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_configuration_tax_rounding (id, company, configuration, create_date, create_uid, tax_rounding, write_date, write_uid) FROM stdin; +1 1 1 2024-04-13 20:50:46.474735 1 document \N \N +\. + + +-- +-- Data for Name: account_fiscalyear; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_fiscalyear (id, company, create_date, create_uid, end_date, name, post_move_sequence, start_date, state, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_fiscalyear_invoice_sequence; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_fiscalyear_invoice_sequence (id, company, create_date, create_uid, fiscalyear, in_credit_note_sequence, in_invoice_sequence, out_credit_note_sequence, out_invoice_sequence, period, sequence, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice (id, account, accounting_date, cancel_move, comment, company, create_date, create_uid, currency, description, invoice_address, invoice_date, invoice_report_cache, invoice_report_cache_id, invoice_report_format, journal, move, number, party, party_tax_identifier, payment_term, payment_term_date, posted_by, reference, sequence, state, tax_amount_cache, tax_identifier, total_amount_cache, type, untaxed_amount_cache, validated_by, write_date, write_uid) FROM stdin; +1 4 \N \N \N 1 2024-04-13 22:02:57.479999 1 35 \N 4 \N \N \N \N 2 \N \N 4 \N \N \N \N \N \N draft \N \N \N in \N \N \N \N +\. + + +-- +-- Data for Name: account_invoice-account_move_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."account_invoice-account_move_line" (id, create_date, create_uid, invoice, line, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice-additional-account_move; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."account_invoice-additional-account_move" (id, create_date, create_uid, invoice, move, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice_alternative_payee; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_alternative_payee (id, create_date, create_uid, invoice, party, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_line (id, account, company, create_date, create_uid, currency, description, invoice, invoice_type, note, origin, party, product, quantity, sequence, taxes_date, taxes_deductible_rate, type, unit, unit_price, write_date, write_uid, correction) FROM stdin; +1 3 1 2024-04-13 22:02:57.479999 1 35 1 in purchase.line,1 \N 1 1 \N \N 1 line 1 50000 \N \N f +\. + + +-- +-- Data for Name: account_invoice_line-stock_move; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."account_invoice_line-stock_move" (id, create_date, create_uid, invoice_line, stock_move, write_date, write_uid) FROM stdin; +1 2024-04-13 22:02:57.479999 1 1 1 \N \N +\. + + +-- +-- Data for Name: account_invoice_line_account_tax; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_line_account_tax (id, create_date, create_uid, line, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice_payment_method; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_payment_method (id, active, company, create_date, create_uid, credit_account, debit_account, journal, name, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice_payment_term; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_payment_term (id, active, create_date, create_uid, description, name, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice_payment_term_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_payment_term_line (id, amount, create_date, create_uid, currency, divisor, payment, ratio, sequence, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice_payment_term_line_delta; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_payment_term_line_delta (id, create_date, create_uid, day, days, line, month, months, sequence, weekday, weeks, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice_report_revision; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_report_revision (id, create_date, create_uid, date, invoice, invoice_report_cache, invoice_report_cache_id, invoice_report_format, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_invoice_tax; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_invoice_tax (id, account, amount, base, create_date, create_uid, description, invoice, legal_notice, manual, sequence, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_journal; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_journal (id, active, code, create_date, create_uid, matching_sequence, name, type, write_date, write_uid) FROM stdin; +1 t REV 2024-04-13 20:39:03.023425 0 \N Revenue revenue \N \N +2 t EXP 2024-04-13 20:39:03.023425 0 \N Expense expense \N \N +3 t CASH 2024-04-13 20:39:03.023425 0 \N Cash cash \N \N +4 t STO 2024-04-13 20:39:03.023425 0 \N Stock general \N \N +5 t MISC 2024-04-13 20:39:03.023425 0 \N Miscellaneous general \N \N +6 t EXC 2024-04-13 20:39:03.023425 0 \N Currency Exchange write-off \N \N +\. + + +-- +-- Data for Name: account_journal_period; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_journal_period (id, active, create_date, create_uid, journal, period, state, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_journal_sequence; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_journal_sequence (id, company, create_date, create_uid, journal, sequence, write_date, write_uid) FROM stdin; +1 \N 2024-04-13 20:39:03.023425 0 1 2 \N \N +2 \N 2024-04-13 20:39:03.023425 0 2 2 \N \N +3 \N 2024-04-13 20:39:03.023425 0 3 2 \N \N +4 \N 2024-04-13 20:39:03.023425 0 4 2 \N \N +5 \N 2024-04-13 20:39:03.023425 0 5 2 \N \N +6 \N 2024-04-13 20:39:03.023425 0 6 2 \N \N +\. + + +-- +-- Data for Name: account_move; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_move (id, company, create_date, create_uid, date, description, journal, number, origin, period, post_date, post_number, state, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_move_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_move_line (id, account, amount_second_currency, create_date, create_uid, credit, debit, description, maturity_date, move, origin, party, reconciliation, second_currency, state, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_move_line_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_move_line_template (id, account, amount, create_date, create_uid, description, move, operation, party, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_move_reconcile_write_off; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_move_reconcile_write_off (id, active, company, create_date, create_uid, credit_account, debit_account, journal, name, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_move_reconciliation; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_move_reconciliation (id, company, create_date, create_uid, date, delegate_to, number, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_move_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_move_template (id, active, company, create_date, create_uid, description, journal, name, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_move_template_keyword; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_move_template_keyword (id, create_date, create_uid, digits, move, name, required, sequence, string, type_, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_period; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_period (id, create_date, create_uid, end_date, fiscalyear, name, post_move_sequence, start_date, state, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax (id, active, amount, company, create_date, create_uid, credit_note_account, description, end_date, "group", invoice_account, legal_notice, name, parent, rate, sequence, start_date, template, template_override, type, update_unit_price, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_code; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_code (id, code, company, create_date, create_uid, description, end_date, name, parent, start_date, template, template_override, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_code_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_code_line (id, amount, code, create_date, create_uid, operator, tax, template, template_override, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_code_line_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_code_line_template (id, amount, code, create_date, create_uid, operator, tax, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_code_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_code_template (id, account, code, create_date, create_uid, description, end_date, name, parent, start_date, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_group (id, code, create_date, create_uid, kind, name, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_line (id, amount, create_date, create_uid, move_line, tax, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_line_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_line_template (id, amount, create_date, create_uid, line, tax, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_rule; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_rule (id, company, create_date, create_uid, kind, name, template, template_override, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_rule_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_rule_line (id, create_date, create_uid, end_date, "group", keep_origin, origin_tax, rule, sequence, start_date, tax, template, template_override, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_rule_line_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_rule_line_template (id, create_date, create_uid, end_date, "group", keep_origin, origin_tax, rule, sequence, start_date, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_rule_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_rule_template (id, account, create_date, create_uid, kind, name, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: account_tax_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.account_tax_template (id, account, active, amount, create_date, create_uid, credit_note_account, description, end_date, "group", invoice_account, legal_notice, name, parent, rate, sequence, start_date, type, update_unit_price, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: company_company; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.company_company (id, create_date, create_uid, currency, footer, header, party, timezone, write_date, write_uid, cancel_invoice_out, purchase_taxes_expense) FROM stdin; +1 2024-04-13 20:50:30.229733 1 35 1 America/Bogota \N \N f f +\. + + +-- +-- Data for Name: company_employee; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.company_employee (id, company, create_date, create_uid, end_date, party, start_date, supervisor, write_date, write_uid, invima) FROM stdin; +1 1 2024-04-13 22:18:10.355165 1 \N 5 \N \N \N \N +\. + + +-- +-- Data for Name: country_country; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.country_country (id, active, code, code3, code_numeric, create_date, create_uid, name, region, write_date, write_uid) FROM stdin; +1 t 2024-04-13 21:31:24.535766 1 Colombia 4 \N \N +\. + + +-- +-- Data for Name: country_organization; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.country_organization (id, code, create_date, create_uid, name, write_date, write_uid) FROM stdin; +1 EU 2024-04-13 20:39:00.134374 0 European Union \N \N +2 Benelux 2024-04-13 20:39:00.134374 0 Benelux Union \N \N +3 NAFTA 2024-04-13 20:39:00.134374 0 North American Free Trade Agreement \N \N +4 Mercosur 2024-04-13 20:39:00.134374 0 Southern Common Market \N \N +5 CAN 2024-04-13 20:39:00.134374 0 Andean Community \N \N +6 CARICOM 2024-04-13 20:39:00.134374 0 Caribbean Community \N \N +7 APEC 2024-04-13 20:39:00.134374 0 Asia-Pacific Economic Cooperation \N \N +8 ASEAN 2024-04-13 20:39:00.134374 0 Association of Southeast Asian Nations \N \N +9 SAFTA 2024-04-13 20:39:00.134374 0 South Asian Free Trade Area \N \N +10 GCC 2024-04-13 20:39:00.134374 0 Cooperation Council for the Arab States of the Gulf \N \N +11 CEMAC 2024-04-13 20:39:00.134374 0 Economic and Monetary Community of Central Africa \N \N +12 ECCAS 2024-04-13 20:39:00.134374 0 Economic Community of Central African States \N \N +13 ECOWAS 2024-04-13 20:39:00.134374 0 Economic Community of West African States \N \N +14 CEN-SAD 2024-04-13 20:39:00.134374 0 Community of Sahel–Saharan States \N \N +15 COMESA 2024-04-13 20:39:00.134374 0 Common Market for Eastern and Southern Africa \N \N +16 EAC 2024-04-13 20:39:00.134374 0 East African Community \N \N +17 IGAD 2024-04-13 20:39:00.134374 0 Intergovernmental Authority on Development \N \N +18 SADC 2024-04-13 20:39:00.134374 0 Southern African Development Community \N \N +19 AMU 2024-04-13 20:39:00.134374 0 Arab Maghreb Union \N \N +\. + + +-- +-- Data for Name: country_organization_member; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.country_organization_member (id, country, create_date, create_uid, from_date, organization, to_date, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: country_postal_code; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.country_postal_code (id, city, country, create_date, create_uid, postal_code, subdivision, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: country_region; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.country_region (id, code_numeric, create_date, create_uid, name, parent, write_date, write_uid) FROM stdin; +1 001 2024-04-13 20:39:00.134374 0 World \N \N \N +2 002 2024-04-13 20:39:00.134374 0 Africa 1 \N \N +3 010 2024-04-13 20:39:00.134374 0 Antarctica 1 \N \N +4 019 2024-04-13 20:39:00.134374 0 Americas 1 \N \N +5 142 2024-04-13 20:39:00.134374 0 Asia 1 \N \N +6 150 2024-04-13 20:39:00.134374 0 Europe 1 \N \N +7 009 2024-04-13 20:39:00.134374 0 Oceania 1 \N \N +8 015 2024-04-13 20:39:00.134374 0 Northern Africa 2 \N \N +9 202 2024-04-13 20:39:00.134374 0 Sub-Saharan Africa 2 \N \N +10 003 2024-04-13 20:39:00.134374 0 North America 4 \N \N +11 419 2024-04-13 20:39:00.134374 0 Latin America and the Caribbean 4 \N \N +12 030 2024-04-13 20:39:00.134374 0 Eastern Asia 5 \N \N +13 034 2024-04-13 20:39:00.134374 0 Southern Asia 5 \N \N +14 035 2024-04-13 20:39:00.134374 0 South-eastern Asia 5 \N \N +15 143 2024-04-13 20:39:00.134374 0 Central Asia 5 \N \N +16 145 2024-04-13 20:39:00.134374 0 Western Asia 5 \N \N +17 039 2024-04-13 20:39:00.134374 0 Southern Europe 6 \N \N +18 151 2024-04-13 20:39:00.134374 0 Eastern Europe 6 \N \N +19 154 2024-04-13 20:39:00.134374 0 Northern Europe 6 \N \N +20 155 2024-04-13 20:39:00.134374 0 Western Europe 6 \N \N +21 053 2024-04-13 20:39:00.134374 0 Australia and New Zealand 7 \N \N +22 054 2024-04-13 20:39:00.134374 0 Melanesia 7 \N \N +23 057 2024-04-13 20:39:00.134374 0 Micronesia 7 \N \N +24 061 2024-04-13 20:39:00.134374 0 Polynesia 7 \N \N +25 011 2024-04-13 20:39:00.134374 0 Western Africa 9 \N \N +26 014 2024-04-13 20:39:00.134374 0 Eastern Africa 9 \N \N +27 017 2024-04-13 20:39:00.134374 0 Middle Africa 9 \N \N +28 018 2024-04-13 20:39:00.134374 0 Southern Africa 9 \N \N +29 021 2024-04-13 20:39:00.134374 0 Northern America 10 \N \N +30 005 2024-04-13 20:39:00.134374 0 South America 11 \N \N +31 013 2024-04-13 20:39:00.134374 0 Central America 11 \N \N +32 029 2024-04-13 20:39:00.134374 0 Caribbean 11 \N \N +33 830 2024-04-13 20:39:00.134374 0 Channel Islands 19 \N \N +\. + + +-- +-- Data for Name: country_subdivision; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.country_subdivision (id, active, code, country, create_date, create_uid, name, parent, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: cron_company_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.cron_company_rel (id, company, create_date, create_uid, cron, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: currency_cron; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.currency_cron (id, create_date, create_uid, currency, day, frequency, last_update, source, weekday, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: currency_cron-currency_currency; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."currency_cron-currency_currency" (id, create_date, create_uid, cron, currency, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: currency_currency; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.currency_currency (id, active, code, create_date, create_uid, digits, name, numeric_code, rounding, symbol, write_date, write_uid) FROM stdin; +1 t AED 2024-04-13 20:49:23.067309 1 2 UAE Dirham 784 0.01 \N \N \N +2 t AFN 2024-04-13 20:49:23.067309 1 2 Afghani 971 0.01 \N \N \N +3 t ALL 2024-04-13 20:49:23.067309 1 2 Lek 008 0.01 \N \N \N +4 t AMD 2024-04-13 20:49:23.067309 1 2 Armenian Dram 051 0.01 \N \N \N +5 t ANG 2024-04-13 20:49:23.067309 1 2 Netherlands Antillean Guilder 532 0.01 \N \N \N +6 t AOA 2024-04-13 20:49:23.067309 1 2 Kwanza 973 0.01 \N \N \N +7 t ARS 2024-04-13 20:49:23.067309 1 2 Argentine Peso 032 0.01 \N \N \N +8 t AUD 2024-04-13 20:49:23.067309 1 2 Australian Dollar 036 0.01 \N \N \N +9 t AWG 2024-04-13 20:49:23.067309 1 2 Aruban Florin 533 0.01 \N \N \N +10 t AZN 2024-04-13 20:49:23.067309 1 2 Azerbaijan Manat 944 0.01 \N \N \N +11 t BAM 2024-04-13 20:49:23.067309 1 2 Convertible Mark 977 0.01 \N \N \N +12 t BBD 2024-04-13 20:49:23.067309 1 2 Barbados Dollar 052 0.01 \N \N \N +13 t BDT 2024-04-13 20:49:23.067309 1 2 Taka 050 0.01 \N \N \N +14 t BGN 2024-04-13 20:49:23.067309 1 2 Bulgarian Lev 975 0.01 \N \N \N +15 t BHD 2024-04-13 20:49:23.067309 1 2 Bahraini Dinar 048 0.01 \N \N \N +16 t BIF 2024-04-13 20:49:23.067309 1 2 Burundi Franc 108 0.01 \N \N \N +17 t BMD 2024-04-13 20:49:23.067309 1 2 Bermudian Dollar 060 0.01 \N \N \N +18 t BND 2024-04-13 20:49:23.067309 1 2 Brunei Dollar 096 0.01 \N \N \N +19 t BOB 2024-04-13 20:49:23.067309 1 2 Boliviano 068 0.01 \N \N \N +20 t BOV 2024-04-13 20:49:23.067309 1 2 Mvdol 984 0.01 \N \N \N +21 t BRL 2024-04-13 20:49:23.067309 1 2 Brazilian Real 986 0.01 \N \N \N +22 t BSD 2024-04-13 20:49:23.067309 1 2 Bahamian Dollar 044 0.01 \N \N \N +23 t BTN 2024-04-13 20:49:23.067309 1 2 Ngultrum 064 0.01 \N \N \N +24 t BWP 2024-04-13 20:49:23.067309 1 2 Pula 072 0.01 \N \N \N +25 t BYN 2024-04-13 20:49:23.067309 1 2 Belarusian Ruble 933 0.01 \N \N \N +26 t BZD 2024-04-13 20:49:23.067309 1 2 Belize Dollar 084 0.01 \N \N \N +27 t CAD 2024-04-13 20:49:23.067309 1 2 Canadian Dollar 124 0.01 \N \N \N +28 t CDF 2024-04-13 20:49:23.067309 1 2 Congolese Franc 976 0.01 \N \N \N +29 t CHE 2024-04-13 20:49:23.067309 1 2 WIR Euro 947 0.01 \N \N \N +30 t CHF 2024-04-13 20:49:23.067309 1 2 Swiss Franc 756 0.01 \N \N \N +31 t CHW 2024-04-13 20:49:23.067309 1 2 WIR Franc 948 0.01 \N \N \N +32 t CLF 2024-04-13 20:49:23.067309 1 2 Unidad de Fomento 990 0.01 \N \N \N +33 t CLP 2024-04-13 20:49:23.067309 1 2 Chilean Peso 152 0.01 \N \N \N +34 t CNY 2024-04-13 20:49:23.067309 1 2 Yuan Renminbi 156 0.01 \N \N \N +35 t COP 2024-04-13 20:49:23.067309 1 2 Colombian Peso 170 0.01 \N \N \N +36 t COU 2024-04-13 20:49:23.067309 1 2 Unidad de Valor Real 970 0.01 \N \N \N +37 t CRC 2024-04-13 20:49:23.067309 1 2 Costa Rican Colon 188 0.01 \N \N \N +38 t CUC 2024-04-13 20:49:23.067309 1 2 Peso Convertible 931 0.01 \N \N \N +39 t CUP 2024-04-13 20:49:23.067309 1 2 Cuban Peso 192 0.01 \N \N \N +40 t CVE 2024-04-13 20:49:23.067309 1 2 Cabo Verde Escudo 132 0.01 \N \N \N +41 t CZK 2024-04-13 20:49:23.067309 1 2 Czech Koruna 203 0.01 \N \N \N +42 t DJF 2024-04-13 20:49:23.067309 1 2 Djibouti Franc 262 0.01 \N \N \N +43 t DKK 2024-04-13 20:49:23.067309 1 2 Danish Krone 208 0.01 \N \N \N +44 t DOP 2024-04-13 20:49:23.067309 1 2 Dominican Peso 214 0.01 \N \N \N +45 t DZD 2024-04-13 20:49:23.067309 1 2 Algerian Dinar 012 0.01 \N \N \N +46 t EGP 2024-04-13 20:49:23.067309 1 2 Egyptian Pound 818 0.01 \N \N \N +47 t ERN 2024-04-13 20:49:23.067309 1 2 Nakfa 232 0.01 \N \N \N +48 t ETB 2024-04-13 20:49:23.067309 1 2 Ethiopian Birr 230 0.01 \N \N \N +49 t EUR 2024-04-13 20:49:23.067309 1 2 Euro 978 0.01 \N \N \N +50 t FJD 2024-04-13 20:49:23.067309 1 2 Fiji Dollar 242 0.01 \N \N \N +51 t FKP 2024-04-13 20:49:23.067309 1 2 Falkland Islands Pound 238 0.01 \N \N \N +52 t GBP 2024-04-13 20:49:23.067309 1 2 Pound Sterling 826 0.01 \N \N \N +53 t GEL 2024-04-13 20:49:23.067309 1 2 Lari 981 0.01 \N \N \N +54 t GHS 2024-04-13 20:49:23.067309 1 2 Ghana Cedi 936 0.01 \N \N \N +55 t GIP 2024-04-13 20:49:23.067309 1 2 Gibraltar Pound 292 0.01 \N \N \N +56 t GMD 2024-04-13 20:49:23.067309 1 2 Dalasi 270 0.01 \N \N \N +57 t GNF 2024-04-13 20:49:23.067309 1 2 Guinean Franc 324 0.01 \N \N \N +58 t GTQ 2024-04-13 20:49:23.067309 1 2 Quetzal 320 0.01 \N \N \N +59 t GYD 2024-04-13 20:49:23.067309 1 2 Guyana Dollar 328 0.01 \N \N \N +60 t HKD 2024-04-13 20:49:23.067309 1 2 Hong Kong Dollar 344 0.01 \N \N \N +61 t HNL 2024-04-13 20:49:23.067309 1 2 Lempira 340 0.01 \N \N \N +62 t HRK 2024-04-13 20:49:23.067309 1 2 Kuna 191 0.01 \N \N \N +63 t HTG 2024-04-13 20:49:23.067309 1 2 Gourde 332 0.01 \N \N \N +64 t HUF 2024-04-13 20:49:23.067309 1 2 Forint 348 0.01 \N \N \N +65 t IDR 2024-04-13 20:49:23.067309 1 2 Rupiah 360 0.01 \N \N \N +66 t ILS 2024-04-13 20:49:23.067309 1 2 New Israeli Sheqel 376 0.01 \N \N \N +67 t INR 2024-04-13 20:49:23.067309 1 2 Indian Rupee 356 0.01 \N \N \N +68 t IQD 2024-04-13 20:49:23.067309 1 2 Iraqi Dinar 368 0.01 \N \N \N +69 t IRR 2024-04-13 20:49:23.067309 1 2 Iranian Rial 364 0.01 \N \N \N +70 t ISK 2024-04-13 20:49:23.067309 1 2 Iceland Krona 352 0.01 \N \N \N +71 t JMD 2024-04-13 20:49:23.067309 1 2 Jamaican Dollar 388 0.01 \N \N \N +72 t JOD 2024-04-13 20:49:23.067309 1 2 Jordanian Dinar 400 0.01 \N \N \N +73 t JPY 2024-04-13 20:49:23.067309 1 2 Yen 392 0.01 \N \N \N +74 t KES 2024-04-13 20:49:23.067309 1 2 Kenyan Shilling 404 0.01 \N \N \N +75 t KGS 2024-04-13 20:49:23.067309 1 2 Som 417 0.01 \N \N \N +76 t KHR 2024-04-13 20:49:23.067309 1 2 Riel 116 0.01 \N \N \N +77 t KMF 2024-04-13 20:49:23.067309 1 2 Comorian Franc 174 0.01 \N \N \N +78 t KPW 2024-04-13 20:49:23.067309 1 2 North Korean Won 408 0.01 \N \N \N +79 t KRW 2024-04-13 20:49:23.067309 1 2 Won 410 0.01 \N \N \N +80 t KWD 2024-04-13 20:49:23.067309 1 2 Kuwaiti Dinar 414 0.01 \N \N \N +81 t KYD 2024-04-13 20:49:23.067309 1 2 Cayman Islands Dollar 136 0.01 \N \N \N +82 t KZT 2024-04-13 20:49:23.067309 1 2 Tenge 398 0.01 \N \N \N +83 t LAK 2024-04-13 20:49:23.067309 1 2 Lao Kip 418 0.01 \N \N \N +84 t LBP 2024-04-13 20:49:23.067309 1 2 Lebanese Pound 422 0.01 \N \N \N +85 t LKR 2024-04-13 20:49:23.067309 1 2 Sri Lanka Rupee 144 0.01 \N \N \N +86 t LRD 2024-04-13 20:49:23.067309 1 2 Liberian Dollar 430 0.01 \N \N \N +87 t LSL 2024-04-13 20:49:23.067309 1 2 Loti 426 0.01 \N \N \N +88 t LYD 2024-04-13 20:49:23.067309 1 2 Libyan Dinar 434 0.01 \N \N \N +89 t MAD 2024-04-13 20:49:23.067309 1 2 Moroccan Dirham 504 0.01 \N \N \N +90 t MDL 2024-04-13 20:49:23.067309 1 2 Moldovan Leu 498 0.01 \N \N \N +91 t MGA 2024-04-13 20:49:23.067309 1 2 Malagasy Ariary 969 0.01 \N \N \N +92 t MKD 2024-04-13 20:49:23.067309 1 2 Denar 807 0.01 \N \N \N +93 t MMK 2024-04-13 20:49:23.067309 1 2 Kyat 104 0.01 \N \N \N +94 t MNT 2024-04-13 20:49:23.067309 1 2 Tugrik 496 0.01 \N \N \N +95 t MOP 2024-04-13 20:49:23.067309 1 2 Pataca 446 0.01 \N \N \N +96 t MRU 2024-04-13 20:49:23.067309 1 2 Ouguiya 929 0.01 \N \N \N +97 t MUR 2024-04-13 20:49:23.067309 1 2 Mauritius Rupee 480 0.01 \N \N \N +98 t MVR 2024-04-13 20:49:23.067309 1 2 Rufiyaa 462 0.01 \N \N \N +99 t MWK 2024-04-13 20:49:23.067309 1 2 Malawi Kwacha 454 0.01 \N \N \N +100 t MXN 2024-04-13 20:49:23.067309 1 2 Mexican Peso 484 0.01 \N \N \N +101 t MXV 2024-04-13 20:49:23.067309 1 2 Mexican Unidad de Inversion (UDI) 979 0.01 \N \N \N +102 t MYR 2024-04-13 20:49:23.067309 1 2 Malaysian Ringgit 458 0.01 \N \N \N +103 t MZN 2024-04-13 20:49:23.067309 1 2 Mozambique Metical 943 0.01 \N \N \N +104 t NAD 2024-04-13 20:49:23.067309 1 2 Namibia Dollar 516 0.01 \N \N \N +105 t NGN 2024-04-13 20:49:23.067309 1 2 Naira 566 0.01 \N \N \N +106 t NIO 2024-04-13 20:49:23.067309 1 2 Cordoba Oro 558 0.01 \N \N \N +107 t NOK 2024-04-13 20:49:23.067309 1 2 Norwegian Krone 578 0.01 \N \N \N +108 t NPR 2024-04-13 20:49:23.067309 1 2 Nepalese Rupee 524 0.01 \N \N \N +109 t NZD 2024-04-13 20:49:23.067309 1 2 New Zealand Dollar 554 0.01 \N \N \N +110 t OMR 2024-04-13 20:49:23.067309 1 2 Rial Omani 512 0.01 \N \N \N +111 t PAB 2024-04-13 20:49:23.067309 1 2 Balboa 590 0.01 \N \N \N +112 t PEN 2024-04-13 20:49:23.067309 1 2 Sol 604 0.01 \N \N \N +113 t PGK 2024-04-13 20:49:23.067309 1 2 Kina 598 0.01 \N \N \N +114 t PHP 2024-04-13 20:49:23.067309 1 2 Philippine Peso 608 0.01 \N \N \N +115 t PKR 2024-04-13 20:49:23.067309 1 2 Pakistan Rupee 586 0.01 \N \N \N +116 t PLN 2024-04-13 20:49:23.067309 1 2 Zloty 985 0.01 \N \N \N +117 t PYG 2024-04-13 20:49:23.067309 1 2 Guarani 600 0.01 \N \N \N +118 t QAR 2024-04-13 20:49:23.067309 1 2 Qatari Rial 634 0.01 \N \N \N +119 t RON 2024-04-13 20:49:23.067309 1 2 Romanian Leu 946 0.01 \N \N \N +120 t RSD 2024-04-13 20:49:23.067309 1 2 Serbian Dinar 941 0.01 \N \N \N +121 t RUB 2024-04-13 20:49:23.067309 1 2 Russian Ruble 643 0.01 \N \N \N +122 t RWF 2024-04-13 20:49:23.067309 1 2 Rwanda Franc 646 0.01 \N \N \N +123 t SAR 2024-04-13 20:49:23.067309 1 2 Saudi Riyal 682 0.01 \N \N \N +124 t SBD 2024-04-13 20:49:23.067309 1 2 Solomon Islands Dollar 090 0.01 \N \N \N +125 t SCR 2024-04-13 20:49:23.067309 1 2 Seychelles Rupee 690 0.01 \N \N \N +126 t SDG 2024-04-13 20:49:23.067309 1 2 Sudanese Pound 938 0.01 \N \N \N +127 t SEK 2024-04-13 20:49:23.067309 1 2 Swedish Krona 752 0.01 \N \N \N +128 t SGD 2024-04-13 20:49:23.067309 1 2 Singapore Dollar 702 0.01 \N \N \N +129 t SHP 2024-04-13 20:49:23.067309 1 2 Saint Helena Pound 654 0.01 \N \N \N +130 t SLE 2024-04-13 20:49:23.067309 1 2 Leone 925 0.01 \N \N \N +131 t SLL 2024-04-13 20:49:23.067309 1 2 Leone 694 0.01 \N \N \N +132 t SOS 2024-04-13 20:49:23.067309 1 2 Somali Shilling 706 0.01 \N \N \N +133 t SRD 2024-04-13 20:49:23.067309 1 2 Surinam Dollar 968 0.01 \N \N \N +134 t SSP 2024-04-13 20:49:23.067309 1 2 South Sudanese Pound 728 0.01 \N \N \N +135 t STN 2024-04-13 20:49:23.067309 1 2 Dobra 930 0.01 \N \N \N +136 t SVC 2024-04-13 20:49:23.067309 1 2 El Salvador Colon 222 0.01 \N \N \N +137 t SYP 2024-04-13 20:49:23.067309 1 2 Syrian Pound 760 0.01 \N \N \N +138 t SZL 2024-04-13 20:49:23.067309 1 2 Lilangeni 748 0.01 \N \N \N +139 t THB 2024-04-13 20:49:23.067309 1 2 Baht 764 0.01 \N \N \N +140 t TJS 2024-04-13 20:49:23.067309 1 2 Somoni 972 0.01 \N \N \N +141 t TMT 2024-04-13 20:49:23.067309 1 2 Turkmenistan New Manat 934 0.01 \N \N \N +142 t TND 2024-04-13 20:49:23.067309 1 2 Tunisian Dinar 788 0.01 \N \N \N +143 t TOP 2024-04-13 20:49:23.067309 1 2 Pa’anga 776 0.01 \N \N \N +144 t TRY 2024-04-13 20:49:23.067309 1 2 Turkish Lira 949 0.01 \N \N \N +145 t TTD 2024-04-13 20:49:23.067309 1 2 Trinidad and Tobago Dollar 780 0.01 \N \N \N +146 t TWD 2024-04-13 20:49:23.067309 1 2 New Taiwan Dollar 901 0.01 \N \N \N +147 t TZS 2024-04-13 20:49:23.067309 1 2 Tanzanian Shilling 834 0.01 \N \N \N +148 t UAH 2024-04-13 20:49:23.067309 1 2 Hryvnia 980 0.01 \N \N \N +149 t UGX 2024-04-13 20:49:23.067309 1 2 Uganda Shilling 800 0.01 \N \N \N +150 t USD 2024-04-13 20:49:23.067309 1 2 US Dollar 840 0.01 \N \N \N +151 t USN 2024-04-13 20:49:23.067309 1 2 US Dollar (Next day) 997 0.01 \N \N \N +152 t UYI 2024-04-13 20:49:23.067309 1 2 Uruguay Peso en Unidades Indexadas (UI) 940 0.01 \N \N \N +153 t UYU 2024-04-13 20:49:23.067309 1 2 Peso Uruguayo 858 0.01 \N \N \N +154 t UYW 2024-04-13 20:49:23.067309 1 2 Unidad Previsional 927 0.01 \N \N \N +155 t UZS 2024-04-13 20:49:23.067309 1 2 Uzbekistan Sum 860 0.01 \N \N \N +156 t VED 2024-04-13 20:49:23.067309 1 2 Bolívar Soberano 926 0.01 \N \N \N +157 t VES 2024-04-13 20:49:23.067309 1 2 Bolívar Soberano 928 0.01 \N \N \N +158 t VND 2024-04-13 20:49:23.067309 1 2 Dong 704 0.01 \N \N \N +159 t VUV 2024-04-13 20:49:23.067309 1 2 Vatu 548 0.01 \N \N \N +160 t WST 2024-04-13 20:49:23.067309 1 2 Tala 882 0.01 \N \N \N +161 t XAF 2024-04-13 20:49:23.067309 1 2 CFA Franc BEAC 950 0.01 \N \N \N +162 t XAG 2024-04-13 20:49:23.067309 1 2 Silver 961 0.01 \N \N \N +163 t XAU 2024-04-13 20:49:23.067309 1 2 Gold 959 0.01 \N \N \N +164 t XBA 2024-04-13 20:49:23.067309 1 2 Bond Markets Unit European Composite Unit (EURCO) 955 0.01 \N \N \N +165 t XBB 2024-04-13 20:49:23.067309 1 2 Bond Markets Unit European Monetary Unit (E.M.U.-6) 956 0.01 \N \N \N +166 t XBC 2024-04-13 20:49:23.067309 1 2 Bond Markets Unit European Unit of Account 9 (E.U.A.-9) 957 0.01 \N \N \N +167 t XBD 2024-04-13 20:49:23.067309 1 2 Bond Markets Unit European Unit of Account 17 (E.U.A.-17) 958 0.01 \N \N \N +168 t XCD 2024-04-13 20:49:23.067309 1 2 East Caribbean Dollar 951 0.01 \N \N \N +169 t XDR 2024-04-13 20:49:23.067309 1 2 SDR (Special Drawing Right) 960 0.01 \N \N \N +170 t XOF 2024-04-13 20:49:23.067309 1 2 CFA Franc BCEAO 952 0.01 \N \N \N +171 t XPD 2024-04-13 20:49:23.067309 1 2 Palladium 964 0.01 \N \N \N +172 t XPF 2024-04-13 20:49:23.067309 1 2 CFP Franc 953 0.01 \N \N \N +173 t XPT 2024-04-13 20:49:23.067309 1 2 Platinum 962 0.01 \N \N \N +174 t XSU 2024-04-13 20:49:23.067309 1 2 Sucre 994 0.01 \N \N \N +175 t XTS 2024-04-13 20:49:23.067309 1 2 Codes specifically reserved for testing purposes 963 0.01 \N \N \N +176 t XUA 2024-04-13 20:49:23.067309 1 2 ADB Unit of Account 965 0.01 \N \N \N +177 t XXX 2024-04-13 20:49:23.067309 1 2 The codes assigned for transactions where no currency is involved 999 0.01 \N \N \N +178 t YER 2024-04-13 20:49:23.067309 1 2 Yemeni Rial 886 0.01 \N \N \N +179 t ZAR 2024-04-13 20:49:23.067309 1 2 Rand 710 0.01 \N \N \N +180 t ZMW 2024-04-13 20:49:23.067309 1 2 Zambian Kwacha 967 0.01 \N \N \N +181 t ZWL 2024-04-13 20:49:23.067309 1 2 Zimbabwe Dollar 932 0.01 \N \N \N +\. + + +-- +-- Data for Name: currency_currency_rate; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.currency_currency_rate (id, create_date, create_uid, currency, date, rate, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_action; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_action (id, active, create_date, create_uid, icon, name, records, type, usage, write_date, write_uid) FROM stdin; +1 t 2024-04-13 20:27:30.723827 0 \N Icons selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +2 t 2024-04-13 20:27:30.723827 0 \N Menu selected ir.action.act_window menu 2024-04-13 20:27:30.723827 0 +3 t 2024-04-13 20:27:30.723827 0 \N Menu selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +4 t 2024-04-13 20:27:30.723827 0 \N Show View selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +5 t 2024-04-13 20:27:30.723827 0 \N Views selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +6 t 2024-04-13 20:27:30.723827 0 \N View Tree Width selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +7 t 2024-04-13 20:27:30.723827 0 \N View Tree Optional selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +8 t 2024-04-13 20:27:30.723827 0 \N Tree State selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +9 t 2024-04-13 20:27:30.723827 0 \N View Search selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +10 t 2024-04-13 20:27:30.723827 0 \N Actions selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +11 t 2024-04-13 20:27:30.723827 0 \N Reports selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +12 t 2024-04-13 20:27:30.723827 0 \N Window Actions selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +81 t 2024-04-13 20:39:02.298155 0 \N Companies selected ir.action.act_window \N 2024-04-13 20:39:02.298155 0 +13 t 2024-04-13 20:27:30.723827 0 \N Wizards selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +82 t 2024-04-13 20:39:02.298155 0 \N Configure Company selected ir.action.wizard \N 2024-04-13 20:39:02.298155 0 +14 t 2024-04-13 20:27:30.723827 0 \N URLs selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +83 t 2024-04-13 20:39:02.298155 0 \N Employees selected ir.action.act_window \N 2024-04-13 20:39:02.298155 0 +15 t 2024-04-13 20:27:30.723827 0 \N Models selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +16 t 2024-04-13 20:27:30.723827 0 \N Fields selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +84 t 2024-04-13 20:39:02.298155 0 \N Supervised by selected ir.action.act_window \N 2024-04-13 20:39:02.298155 0 +17 t 2024-04-13 20:27:30.723827 0 \N Models Access selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +85 t 2024-04-13 20:39:02.298155 0 \N Letter selected ir.action.report \N 2024-04-13 20:39:02.298155 0 +18 t 2024-04-13 20:27:30.723827 0 \N Access selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +19 t 2024-04-13 20:27:30.723827 0 \N Fields Access selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +86 t 2024-04-13 20:39:03.023425 0 \N Account Types selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +20 t 2024-04-13 20:27:30.723827 0 \N Access selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +87 t 2024-04-13 20:39:03.023425 0 \N Account Types selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +21 t 2024-04-13 20:27:30.723827 0 \N Graph selected ir.action.report \N 2024-04-13 20:27:30.723827 0 +22 t 2024-04-13 20:27:30.723827 0 \N Graph selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +88 t 2024-04-13 20:39:03.023425 0 \N Account Types selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +89 t 2024-04-13 20:39:03.023425 0 \N Statement listed ir.action.report \N 2024-04-13 20:39:03.023425 0 +90 t 2024-04-13 20:39:03.023425 0 \N Accounts selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +23 t 2024-04-13 20:27:30.723827 0 \N Workflow Graph selected ir.action.report \N 2024-04-13 20:27:30.723827 0 +24 t 2024-04-13 20:27:30.723827 0 \N Buttons selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +25 t 2024-04-13 20:27:30.723827 0 \N Clicks selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +26 t 2024-04-13 20:27:30.723827 0 \N Data selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +27 t 2024-04-13 20:27:30.723827 0 \N Logs selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +28 t 2024-04-13 20:27:30.723827 0 \N Sequences selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +29 t 2024-04-13 20:27:30.723827 0 \N Sequences Strict selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +30 t 2024-04-13 20:27:30.723827 0 \N Types selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +31 t 2024-04-13 20:27:30.723827 0 \N Attachments selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +32 t 2024-04-13 20:27:30.723827 0 \N Notes selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +33 t 2024-04-13 20:27:30.723827 0 \N Actions selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +34 t 2024-04-13 20:27:30.723827 0 \N Languages selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +35 t 2024-04-13 20:27:30.723827 0 \N Configure Languages selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +36 t 2024-04-13 20:27:30.723827 0 \N Translations selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +37 t 2024-04-13 20:27:30.723827 0 \N Translations selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +38 t 2024-04-13 20:27:30.723827 0 \N Translations selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +39 t 2024-04-13 20:27:30.723827 0 \N Set Translations selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +40 t 2024-04-13 20:27:30.723827 0 \N Clean Translations selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +41 t 2024-04-13 20:27:30.723827 0 \N Synchronize Translations selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +42 t 2024-04-13 20:27:30.723827 0 \N Export Translations selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +43 t 2024-04-13 20:27:30.723827 0 \N Exports selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +44 t 2024-04-13 20:27:30.723827 0 \N Record Rules selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +45 t 2024-04-13 20:27:30.723827 0 \N Modules selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +64 t 2024-04-13 20:39:00.134374 0 \N Countries by Region selected ir.action.act_window \N 2024-04-13 20:39:00.134374 0 +46 t 2024-04-13 20:27:30.723827 0 \N Config Wizard Items selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +56 t 2024-04-13 20:27:35.518366 0 \N Groups selected ir.action.act_window \N 2024-04-13 20:27:35.518366 0 +47 t 2024-04-13 20:27:30.723827 0 \N Module Configuration selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +65 t 2024-04-13 20:39:00.134374 0 \N Postal Codes selected ir.action.act_window \N 2024-04-13 20:39:00.134374 0 +57 t 2024-04-13 20:27:35.518366 0 \N Users selected ir.action.act_window \N 2024-04-13 20:27:35.518366 0 +48 t 2024-04-13 20:27:30.723827 0 \N Perform Pending Activation/Upgrade selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +49 t 2024-04-13 20:27:30.723827 0 \N Configure Modules selected ir.action.wizard \N 2024-04-13 20:27:30.723827 0 +58 t 2024-04-13 20:27:35.518366 0 \N Configure Users selected ir.action.wizard \N 2024-04-13 20:27:35.518366 0 +66 t 2024-04-13 20:39:00.792624 0 \N Currencies selected ir.action.act_window \N 2024-04-13 20:39:00.792624 0 +50 t 2024-04-13 20:27:30.723827 0 \N Triggers selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +59 t 2024-04-13 20:27:35.518366 0 \N Reset Password selected ir.action.report \N 2024-04-13 20:27:35.518366 0 +51 t 2024-04-13 20:27:30.723827 0 \N Messages selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +52 t 2024-04-13 20:27:30.723827 0 \N E-mails selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +60 t 2024-04-13 20:39:00.134374 0 \N Organizations selected ir.action.act_window \N 2024-04-13 20:39:00.134374 0 +53 t 2024-04-13 20:27:30.723827 0 \N E-mail Archives selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +61 t 2024-04-13 20:39:00.134374 0 \N Areas selected ir.action.act_window \N 2024-04-13 20:39:00.134374 0 +54 t 2024-04-13 20:27:30.723827 0 \N E-mail Templates selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +55 t 2024-04-13 20:27:30.723827 0 \N Errors selected ir.action.act_window \N 2024-04-13 20:27:30.723827 0 +62 t 2024-04-13 20:39:00.134374 0 \N Regions selected ir.action.act_window \N 2024-04-13 20:39:00.134374 0 +63 t 2024-04-13 20:39:00.134374 0 \N Countries selected ir.action.act_window \N 2024-04-13 20:39:00.134374 0 +67 t 2024-04-13 20:39:00.792624 0 \N Scheduled Rate Updates selected ir.action.act_window \N 2024-04-13 20:39:00.792624 0 +68 t 2024-04-13 20:39:01.136154 0 \N Parties selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +69 t 2024-04-13 20:39:01.136154 0 \N Parties by Category selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +70 t 2024-04-13 20:39:01.136154 0 \N Labels selected ir.action.report \N 2024-04-13 20:39:01.136154 0 +71 t 2024-04-13 20:39:01.136154 0 \N Check VIES selected ir.action.wizard \N 2024-04-13 20:39:01.136154 0 +72 t 2024-04-13 20:39:01.136154 0 \N Replace selected ir.action.wizard \N 2024-04-13 20:39:01.136154 0 +73 t 2024-04-13 20:39:01.136154 0 \N Erase selected ir.action.wizard \N 2024-04-13 20:39:01.136154 0 +74 t 2024-04-13 20:39:01.136154 0 \N Categories selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +75 t 2024-04-13 20:39:01.136154 0 \N Categories selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +76 t 2024-04-13 20:39:01.136154 0 \N Addresses selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +77 t 2024-04-13 20:39:01.136154 0 \N Address Formats selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +78 t 2024-04-13 20:39:01.136154 0 \N Address Subdivision Types selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +79 t 2024-04-13 20:39:01.136154 0 \N Contact Mechanisms selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +80 t 2024-04-13 20:39:01.136154 0 \N Configuration selected ir.action.act_window \N 2024-04-13 20:39:01.136154 0 +91 t 2024-04-13 20:39:03.023425 0 \N Create Chart of Accounts from Template selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +92 t 2024-04-13 20:39:03.023425 0 \N Update Chart of Accounts from Template selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +93 t 2024-04-13 20:39:03.023425 0 \N Accounts selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +94 t 2024-04-13 20:39:03.023425 0 \N Accounts selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +95 t 2024-04-13 20:39:03.023425 0 \N Accounts selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +96 t 2024-04-13 20:39:03.023425 0 \N Open Type selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +97 t 2024-04-13 20:39:03.023425 0 \N Chart of Accounts selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +98 t 2024-04-13 20:39:03.023425 0 \N General Ledger listed ir.action.report \N 2024-04-13 20:39:03.023425 0 +99 t 2024-04-13 20:39:03.023425 0 \N Trial Balance listed ir.action.report \N 2024-04-13 20:39:03.023425 0 +100 t 2024-04-13 20:39:03.023425 0 \N General Ledger - Accounts selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +101 t 2024-04-13 20:39:03.023425 0 \N Accounts selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +102 t 2024-04-13 20:39:03.023425 0 \N General Ledger - Account Parties selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +103 t 2024-04-13 20:39:03.023425 0 \N Open General Ledger Account Parties selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +104 t 2024-04-13 20:39:03.023425 0 \N Accounts selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +105 t 2024-04-13 20:39:03.023425 0 \N General Ledger - Lines selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +106 t 2024-04-13 20:39:03.023425 0 \N Balance Sheet selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +107 t 2024-04-13 20:39:03.023425 0 \N Income Statement selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +108 t 2024-04-13 20:39:03.023425 0 \N Aged Balance selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +109 t 2024-04-13 20:39:03.023425 0 \N Aged Balance selected ir.action.report \N 2024-04-13 20:39:03.023425 0 +110 t 2024-04-13 20:39:03.023425 0 \N Configuration selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +111 t 2024-04-13 20:39:03.023425 0 \N Fiscal Years selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +112 t 2024-04-13 20:39:03.023425 0 \N Close Fiscal Years selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +113 t 2024-04-13 20:39:03.023425 0 \N Create Periods selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +114 t 2024-04-13 20:39:03.023425 0 \N Balance Non-Deferral selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +115 t 2024-04-13 20:39:03.023425 0 \N Renew Fiscal Year selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +116 t 2024-04-13 20:39:03.023425 0 \N Periods selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +117 t 2024-04-13 20:39:03.023425 0 \N Close Periods selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +118 t 2024-04-13 20:39:03.023425 0 \N Journals selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +119 t 2024-04-13 20:39:03.023425 0 \N Journals Cash selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +120 t 2024-04-13 20:39:03.023425 0 \N Journals - Periods selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +121 t 2024-04-13 20:39:03.023425 0 \N Journals - Periods selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +122 t 2024-04-13 20:39:03.023425 0 \N Close Journals - Periods selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +123 t 2024-04-13 20:39:03.023425 0 \N Account Moves selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +124 t 2024-04-13 20:39:03.023425 0 \N Reconciliation Lines selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +125 t 2024-04-13 20:39:03.023425 0 \N Account Move Lines selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +126 t 2024-04-13 20:39:03.023425 0 \N Open Move Account selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +127 t 2024-04-13 20:39:03.023425 0 \N Payable/Receivable Lines selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +128 t 2024-04-13 20:39:03.023425 0 \N Open Journal selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +129 t 2024-04-13 20:39:03.023425 0 \N Reconcile Lines selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +130 t 2024-04-13 20:39:03.023425 0 \N Unreconcile Lines selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +131 t 2024-04-13 20:39:03.023425 0 \N Reconcile Accounts selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +132 t 2024-04-13 20:39:03.023425 0 \N Cancel Moves selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +133 t 2024-04-13 20:39:03.023425 0 \N Write-off Methods selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +134 t 2024-04-13 20:39:03.023425 0 \N Group Lines selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +135 t 2024-04-13 20:39:03.023425 0 \N Grouped Account Move selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +136 t 2024-04-13 20:39:03.023425 0 \N Reschedule Lines selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +137 t 2024-04-13 20:39:03.023425 0 \N Reschedule Account Move selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +138 t 2024-04-13 20:39:03.023425 0 \N Delegate Lines selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +139 t 2024-04-13 20:39:03.023425 0 \N Delegate Account Move selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +140 t 2024-04-13 20:39:03.023425 0 \N General Journal selected ir.action.report \N 2024-04-13 20:39:03.023425 0 +141 t 2024-04-13 20:39:03.023425 0 \N Moves selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +142 t 2024-04-13 20:39:03.023425 0 \N Create Move from Template selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +143 t 2024-04-13 20:39:03.023425 0 \N Account Move selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +144 t 2024-04-13 20:39:03.023425 0 \N Groups selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +145 t 2024-04-13 20:39:03.023425 0 \N Tax Codes selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +146 t 2024-04-13 20:39:03.023425 0 \N Codes selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +147 t 2024-04-13 20:39:03.023425 0 \N Codes selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +148 t 2024-04-13 20:39:03.023425 0 \N Chart of Tax Codes selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +149 t 2024-04-13 20:39:03.023425 0 \N Taxes selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +150 t 2024-04-13 20:39:03.023425 0 \N Taxes selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +151 t 2024-04-13 20:39:03.023425 0 \N Test Tax selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +152 t 2024-04-13 20:39:03.023425 0 \N Tax Lines selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +153 t 2024-04-13 20:39:03.023425 0 \N Open Tax Code selected ir.action.wizard \N 2024-04-13 20:39:03.023425 0 +154 t 2024-04-13 20:39:03.023425 0 \N Tax Rules selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +155 t 2024-04-13 20:39:03.023425 0 \N Rules selected ir.action.act_window \N 2024-04-13 20:39:03.023425 0 +156 t 2024-04-13 20:39:08.573524 0 \N Products selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +157 t 2024-04-13 20:39:08.573524 0 \N Product by Category selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +158 t 2024-04-13 20:39:08.573524 0 \N Variants selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +159 t 2024-04-13 20:39:08.573524 0 \N Variants selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +160 t 2024-04-13 20:39:08.573524 0 \N Categories selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +161 t 2024-04-13 20:39:08.573524 0 \N Categories selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +162 t 2024-04-13 20:39:08.573524 0 \N Add products selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +163 t 2024-04-13 20:39:08.573524 0 \N Units of Measure selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +164 t 2024-04-13 20:39:08.573524 0 \N Categories selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +165 t 2024-04-13 20:39:08.573524 0 \N Configuration selected ir.action.act_window \N 2024-04-13 20:39:08.573524 0 +166 t 2024-04-13 20:39:10.340704 0 \N Attribute Sets selected ir.action.act_window \N 2024-04-13 20:39:10.340704 0 +167 t 2024-04-13 20:39:10.340704 0 \N Attributes selected ir.action.act_window \N 2024-04-13 20:39:10.340704 0 +168 t 2024-04-13 20:39:10.936653 0 \N Recompute Cost Price selected ir.action.wizard \N 2024-04-13 20:39:10.936653 0 +169 t 2024-04-13 20:39:10.936653 0 \N Cost Price Revision selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +170 t 2024-04-13 20:39:10.936653 0 \N Modify Cost Price selected ir.action.wizard \N 2024-04-13 20:39:10.936653 0 +171 t 2024-04-13 20:39:10.936653 0 \N Locations Tree Quantity selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +172 t 2024-04-13 20:39:10.936653 0 \N Locations List Quantity selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +173 t 2024-04-13 20:39:10.936653 0 \N Products Quantities By Warehouse selected ir.action.wizard \N 2024-04-13 20:39:10.936653 0 +174 t 2024-04-13 20:39:10.936653 0 \N Product Quantities By Warehouse selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +175 t 2024-04-13 20:39:10.936653 0 \N Stock Moves selected ir.action.wizard \N 2024-04-13 20:39:10.936653 0 +176 t 2024-04-13 20:39:10.936653 0 \N Stock Moves By Warehouse selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +177 t 2024-04-13 20:39:10.936653 0 \N Warehouses selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +178 t 2024-04-13 20:39:10.936653 0 \N Locations selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +179 t 2024-04-13 20:39:10.936653 0 \N Locations selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +180 t 2024-04-13 20:39:10.936653 0 \N Products by Locations selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +181 t 2024-04-13 20:39:10.936653 0 \N Location Lead Times selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +182 t 2024-04-13 20:39:10.936653 0 \N Supplier Shipments selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +183 t 2024-04-13 20:39:10.936653 0 \N Supplier Returns selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +184 t 2024-04-13 20:39:10.936653 0 \N Customer Shipments selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +185 t 2024-04-13 20:39:10.936653 0 \N Internal Shipments selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +186 t 2024-04-13 20:39:10.936653 0 \N Customer Returns selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +187 t 2024-04-13 20:39:10.936653 0 \N Delivery Note selected ir.action.report \N 2024-04-13 20:39:10.936653 0 +188 t 2024-04-13 20:39:10.936653 0 \N Picking List selected ir.action.report \N 2024-04-13 20:39:10.936653 0 +189 t 2024-04-13 20:39:10.936653 0 \N Restocking List selected ir.action.report \N 2024-04-13 20:39:10.936653 0 +190 t 2024-04-13 20:39:10.936653 0 \N Restocking List selected ir.action.report \N 2024-04-13 20:39:10.936653 0 +191 t 2024-04-13 20:39:10.936653 0 \N Internal Shipment selected ir.action.report \N 2024-04-13 20:39:10.936653 0 +192 t 2024-04-13 20:39:10.936653 0 \N Assign Supplier Return Shipment selected ir.action.wizard \N 2024-04-13 20:39:10.936653 0 +193 t 2024-04-13 20:39:10.936653 0 \N Assign Customer Shipment selected ir.action.wizard \N 2024-04-13 20:39:10.936653 0 +194 t 2024-04-13 20:39:10.936653 0 \N Assign Internal Shipment selected ir.action.wizard \N 2024-04-13 20:39:10.936653 0 +195 t 2024-04-13 20:39:10.936653 0 \N Moves selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +196 t 2024-04-13 20:39:10.936653 0 \N Stock Moves selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +197 t 2024-04-13 20:39:10.936653 0 \N Inventories selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +198 t 2024-04-13 20:39:10.936653 0 \N Inventory Lines selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +199 t 2024-04-13 20:39:10.936653 0 \N Count selected ir.action.wizard \N 2024-04-13 20:39:10.936653 0 +200 t 2024-04-13 20:39:10.936653 0 \N Customer Shipments selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +201 t 2024-04-13 20:39:10.936653 0 \N Supplier Shipments selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +202 t 2024-04-13 20:39:10.936653 0 \N Configuration selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +203 t 2024-04-13 20:39:10.936653 0 \N Periods selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +204 t 2024-04-13 20:39:10.936653 0 \N Margins selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +205 t 2024-04-13 20:39:10.936653 0 \N Margins selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +206 t 2024-04-13 20:39:10.936653 0 \N Margins per Product selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +207 t 2024-04-13 20:39:10.936653 0 \N Margins per Product selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +208 t 2024-04-13 20:39:10.936653 0 \N Margins per Category selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +209 t 2024-04-13 20:39:10.936653 0 \N Margins per Category selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +210 t 2024-04-13 20:39:10.936653 0 \N Margins per Category selected ir.action.act_window \N 2024-04-13 20:39:10.936653 0 +211 t 2024-04-13 20:39:14.878373 0 \N Pay Invoice selected ir.action.wizard \N 2024-04-13 20:39:14.878373 0 +212 t 2024-04-13 20:39:14.878373 0 \N Invoices selected ir.action.act_window \N 2024-04-13 20:39:14.878373 0 +213 t 2024-04-13 20:39:14.878373 0 \N Customer Invoices selected ir.action.act_window \N 2024-04-13 20:39:14.878373 0 +214 t 2024-04-13 20:39:14.878373 0 \N Supplier Invoices selected ir.action.act_window \N 2024-04-13 20:39:14.878373 0 +215 t 2024-04-13 20:39:14.878373 0 \N Invoices selected ir.action.act_window \N 2024-04-13 20:39:14.878373 0 +216 t 2024-04-13 20:39:14.878373 0 \N Invoice (revised) selected ir.action.wizard \N 2024-04-13 20:39:14.878373 0 +217 t 2024-04-13 20:39:14.878373 0 \N Invoice selected ir.action.report \N 2024-04-13 20:39:14.878373 0 +218 t 2024-04-13 20:39:14.878373 0 \N Invoice Payment Methods selected ir.action.act_window \N 2024-04-13 20:39:14.878373 0 +219 t 2024-04-13 20:39:14.878373 0 \N Credit selected ir.action.wizard \N 2024-04-13 20:39:14.878373 0 +220 t 2024-04-13 20:39:14.878373 0 \N Reschedule Lines to Pay selected ir.action.wizard \N 2024-04-13 20:39:14.878373 0 +221 t 2024-04-13 20:39:14.878373 0 \N Delegate Lines to Pay selected ir.action.wizard \N 2024-04-13 20:39:14.878373 0 +222 t 2024-04-13 20:39:14.878373 0 \N Payment Terms selected ir.action.act_window \N 2024-04-13 20:39:14.878373 0 +223 t 2024-04-13 20:39:14.878373 0 \N Test Payment Term selected ir.action.wizard \N 2024-04-13 20:39:14.878373 0 +224 t 2024-04-13 20:39:16.958214 0 \N Handle Shipment Exception selected ir.action.wizard \N 2024-04-13 20:39:16.958214 0 +225 t 2024-04-13 20:39:16.958214 0 \N Handle Invoice Exception selected ir.action.wizard \N 2024-04-13 20:39:16.958214 0 +226 t 2024-04-13 20:39:16.958214 0 \N Purchases selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +227 t 2024-04-13 20:39:16.958214 0 \N Purchases selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +228 t 2024-04-13 20:39:16.958214 0 \N Purchases selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +229 t 2024-04-13 20:39:16.958214 0 \N Purchases selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +231 t 2024-04-13 20:39:16.958214 0 \N Purchase Lines selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +232 t 2024-04-13 20:39:16.958214 0 \N Suppliers selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +233 t 2024-04-13 20:39:16.958214 0 \N Prices selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +234 t 2024-04-13 20:39:16.958214 0 \N Return Purchase selected ir.action.wizard \N 2024-04-13 20:39:16.958214 0 +235 t 2024-04-13 20:39:16.958214 0 \N Parties associated to Purchases selected ir.action.wizard \N 2024-04-13 20:39:16.958214 0 +236 t 2024-04-13 20:39:16.958214 0 \N Modify Header selected ir.action.wizard \N 2024-04-13 20:39:16.958214 0 +237 t 2024-04-13 20:39:16.958214 0 \N Purchases selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +238 t 2024-04-13 20:39:16.958214 0 \N Purchases selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +239 t 2024-04-13 20:39:16.958214 0 \N Purchases per Supplier selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +240 t 2024-04-13 20:39:16.958214 0 \N Purchases per Supplier selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +241 t 2024-04-13 20:39:16.958214 0 \N Purchases per Product selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +242 t 2024-04-13 20:39:16.958214 0 \N Purchases per Product selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +243 t 2024-04-13 20:39:16.958214 0 \N Configuration selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +244 t 2024-04-13 20:39:16.958214 0 \N Moves selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +245 t 2024-04-13 20:39:16.958214 0 \N Shipments selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +246 t 2024-04-13 20:39:16.958214 0 \N Returns selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +247 t 2024-04-13 20:39:16.958214 0 \N Invoices selected ir.action.act_window \N 2024-04-13 20:39:16.958214 0 +248 t 2024-04-13 20:39:19.14446 0 \N Handle Shipment Exception selected ir.action.wizard \N 2024-04-13 20:39:19.14446 0 +249 t 2024-04-13 20:39:19.14446 0 \N Handle Invoice Exception selected ir.action.wizard \N 2024-04-13 20:39:19.14446 0 +250 t 2024-04-13 20:39:19.14446 0 \N Shipments selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +251 t 2024-04-13 20:39:19.14446 0 \N Returns selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +252 t 2024-04-13 20:39:19.14446 0 \N Sales selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +253 t 2024-04-13 20:39:19.14446 0 \N Sales selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +254 t 2024-04-13 20:39:19.14446 0 \N Sales selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +256 t 2024-04-13 20:39:19.14446 0 \N Sale Lines selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +257 t 2024-04-13 20:39:19.14446 0 \N Return Sale selected ir.action.wizard \N 2024-04-13 20:39:19.14446 0 +258 t 2024-04-13 20:39:19.14446 0 \N Modify Header selected ir.action.wizard \N 2024-04-13 20:39:19.14446 0 +259 t 2024-04-13 20:39:19.14446 0 \N Configuration selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +260 t 2024-04-13 20:39:19.14446 0 \N Sales selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +261 t 2024-04-13 20:39:19.14446 0 \N Sales selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +262 t 2024-04-13 20:39:19.14446 0 \N Sales per Customer selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +263 t 2024-04-13 20:39:19.14446 0 \N Sales per Customer selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +264 t 2024-04-13 20:39:19.14446 0 \N Sales per Customer Category selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +265 t 2024-04-13 20:39:19.14446 0 \N Sales per Customer Category selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +266 t 2024-04-13 20:39:19.14446 0 \N Sales per Party Category selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +267 t 2024-04-13 20:39:19.14446 0 \N Sales per Product selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +268 t 2024-04-13 20:39:19.14446 0 \N Sales per Product selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +269 t 2024-04-13 20:39:19.14446 0 \N Sales per Product Category selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +270 t 2024-04-13 20:39:19.14446 0 \N Sales per Product Category selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +271 t 2024-04-13 20:39:19.14446 0 \N Sales per Product Category selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +272 t 2024-04-13 20:39:19.14446 0 \N Sales per Region selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +273 t 2024-04-13 20:39:19.14446 0 \N Open Region selected ir.action.wizard \N 2024-04-13 20:39:19.14446 0 +274 t 2024-04-13 20:39:19.14446 0 \N Sales per Country selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +275 t 2024-04-13 20:39:19.14446 0 \N Sales per Country selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +276 t 2024-04-13 20:39:19.14446 0 \N Sales per Subdivision selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +277 t 2024-04-13 20:39:19.14446 0 \N Open Region selected ir.action.wizard \N 2024-04-13 20:39:19.14446 0 +278 t 2024-04-13 20:39:19.14446 0 \N Parties associated to Sales selected ir.action.wizard \N 2024-04-13 20:39:19.14446 0 +279 t 2024-04-13 20:39:19.14446 0 \N Moves selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +280 t 2024-04-13 20:39:19.14446 0 \N Products selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +281 t 2024-04-13 20:39:19.14446 0 \N Invoices selected ir.action.act_window \N 2024-04-13 20:39:19.14446 0 +282 t 2024-04-13 20:39:21.814652 0 \N Equipments selected ir.action.act_window \N 2024-04-13 20:39:21.814652 0 +283 t 2024-04-13 20:39:21.814652 0 \N Serials selected ir.action.act_window \N 2024-04-13 20:39:21.814652 0 +284 t 2024-04-13 20:39:21.814652 0 \N Equipment selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +285 t 2024-04-13 20:39:21.814652 0 \N Maintenance History selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +286 t 2024-04-13 20:39:21.814652 0 \N Change Propietary selected ir.action.wizard \N 2024-04-13 20:39:21.814652 0 +287 t 2024-04-13 20:39:21.814652 0 \N Calibration selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +288 t 2024-04-13 20:39:21.814652 0 \N Calibrations selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +289 t 2024-04-13 20:39:21.814652 0 \N Contracts selected ir.action.act_window \N 2024-04-13 20:39:21.814652 0 +290 t 2024-04-13 20:39:21.814652 0 \N Create Contract selected ir.action.wizard \N 2024-04-13 20:39:21.814652 0 +291 t 2024-04-13 20:39:21.814652 0 \N Contract selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +292 t 2024-04-13 20:39:21.814652 0 \N Prorrogation selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +293 t 2024-04-13 20:39:21.814652 0 \N Agended selected ir.action.act_window \N 2024-04-13 20:39:21.814652 0 +294 t 2024-04-13 20:39:21.814652 0 \N Assing Agended selected ir.action.wizard \N 2024-04-13 20:39:21.814652 0 +295 t 2024-04-13 20:39:21.814652 0 \N ReAssing Agended selected ir.action.wizard \N 2024-04-13 20:39:21.814652 0 +296 t 2024-04-13 20:39:21.814652 0 \N Configuration selected ir.action.act_window \N 2024-04-13 20:39:21.814652 0 +297 t 2024-04-13 20:39:21.814652 0 \N Services Maintenance selected ir.action.act_window \N 2024-04-13 20:39:21.814652 0 +298 t 2024-04-13 20:39:21.814652 0 \N Maintenance Lines selected ir.action.act_window \N 2024-04-13 20:39:21.814652 0 +299 t 2024-04-13 20:39:21.814652 0 \N Service selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +300 t 2024-04-13 20:39:21.814652 0 \N Hojas de Vida selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +301 t 2024-04-13 20:39:21.814652 0 \N Maintenance Service selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +302 t 2024-04-13 20:39:21.814652 0 \N Time Line Maintenance Service selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +303 t 2024-04-13 20:39:21.814652 0 \N Maintenances Historys selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +304 t 2024-04-13 20:39:21.814652 0 \N Change Propietary Maintenance selected ir.action.wizard \N 2024-04-13 20:39:21.814652 0 +305 t 2024-04-13 20:39:21.814652 0 \N Acta Entrega selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +306 t 2024-04-13 20:39:21.814652 0 \N Capacitation selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +307 t 2024-04-13 20:39:21.814652 0 \N Use Pattern selected ir.action.act_window \N 2024-04-13 20:39:21.814652 0 +230 f 2024-04-13 20:39:16.958214 0 \N Purchase selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +308 t 2024-04-13 20:39:21.814652 0 \N Purchase selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +255 f 2024-04-13 20:39:19.14446 0 \N Sale selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +309 t 2024-04-13 20:39:21.814652 0 \N Confirm Sale Date selected ir.action.wizard \N 2024-04-13 20:39:21.814652 0 +310 t 2024-04-13 20:39:21.814652 0 \N Sale Equipments selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +311 t 2024-04-13 20:39:21.814652 0 \N Sale Equipments Internal selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +312 t 2024-04-13 20:39:21.814652 0 \N Payment selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +313 t 2024-04-13 20:39:21.814652 0 \N Balance by Party selected ir.action.report \N 2024-04-13 20:39:21.814652 0 +314 t 2024-04-13 20:39:21.814652 0 \N Print Balance Sale by Party selected ir.action.wizard \N 2024-04-13 20:39:21.814652 0 +\. + + +-- +-- Data for Name: ir_action-res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_action-res_group" (id, action, create_date, create_uid, "group", write_date, write_uid) FROM stdin; +1 48 2024-04-13 20:27:35.518366 0 1 \N \N +2 41 2024-04-13 20:27:35.518366 0 1 \N \N +3 42 2024-04-13 20:27:35.518366 0 1 \N \N +4 35 2024-04-13 20:27:35.518366 0 1 \N \N +5 72 2024-04-13 20:39:01.136154 0 3 \N \N +6 73 2024-04-13 20:39:01.136154 0 3 \N \N +7 89 2024-04-13 20:39:03.023425 0 6 \N \N +8 115 2024-04-13 20:39:03.023425 0 8 \N \N +9 127 2024-04-13 20:39:03.023425 0 6 \N \N +10 168 2024-04-13 20:39:10.936653 0 9 \N \N +11 170 2024-04-13 20:39:10.936653 0 9 \N \N +12 171 2024-04-13 20:39:10.936653 0 11 \N \N +13 172 2024-04-13 20:39:10.936653 0 11 \N \N +14 174 2024-04-13 20:39:10.936653 0 11 \N \N +15 176 2024-04-13 20:39:10.936653 0 11 \N \N +16 216 2024-04-13 20:39:14.878373 0 8 \N \N +\. + + +-- +-- Data for Name: ir_action_act_window; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_action_act_window (id, action, context, context_domain, context_model, create_date, create_uid, domain, "limit", "order", res_model, search_value, write_date, write_uid) FROM stdin; +1 1 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.ui.icon [] 2024-04-13 20:27:30.723827 0 +77 77 {} \N \N 2024-04-13 20:39:01.136154 0 \N \N \N party.address.format [] 2024-04-13 20:39:01.136154 0 +2 2 {} \N \N 2024-04-13 20:27:30.723827 0 [["parent", "=", null]] \N \N ir.ui.menu [] 2024-04-13 20:27:30.723827 0 +3 3 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.ui.menu [] 2024-04-13 20:27:30.723827 0 +5 5 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.ui.view [] 2024-04-13 20:27:30.723827 0 +78 78 {} \N \N 2024-04-13 20:39:01.136154 0 \N \N \N party.address.subdivision_type [] 2024-04-13 20:39:01.136154 0 +6 6 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.ui.view_tree_width [] 2024-04-13 20:27:30.723827 0 +7 7 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.ui.view_tree_optional [] 2024-04-13 20:27:30.723827 0 +8 8 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.ui.view_tree_state [] 2024-04-13 20:27:30.723827 0 +79 79 {} \N \N 2024-04-13 20:39:01.136154 0 \N \N \N party.contact_mechanism [] 2024-04-13 20:39:01.136154 0 +9 9 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.ui.view_search [] 2024-04-13 20:27:30.723827 0 +10 10 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.action [] 2024-04-13 20:27:30.723827 0 +11 11 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.action.report [] 2024-04-13 20:27:30.723827 0 +80 80 {} \N \N 2024-04-13 20:39:01.136154 0 \N \N \N party.configuration [] 2024-04-13 20:39:01.136154 0 +12 12 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.action.act_window [] 2024-04-13 20:27:30.723827 0 +13 13 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.action.wizard [] 2024-04-13 20:27:30.723827 0 +14 14 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.action.url [] 2024-04-13 20:27:30.723827 0 +81 81 {} \N \N 2024-04-13 20:39:02.298155 0 \N \N \N company.company [] 2024-04-13 20:39:02.298155 0 +15 15 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.model [] 2024-04-13 20:27:30.723827 0 +16 16 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.model.field [] 2024-04-13 20:27:30.723827 0 +17 17 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.model.access [] 2024-04-13 20:27:30.723827 0 +83 83 {} \N \N 2024-04-13 20:39:02.298155 0 \N \N \N company.employee [] 2024-04-13 20:39:02.298155 0 +18 18 {} \N \N 2024-04-13 20:27:30.723827 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["model", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["model", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N ir.model.access [] 2024-04-13 20:27:30.723827 0 +19 19 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.model.field.access [] 2024-04-13 20:27:30.723827 0 +20 20 {} \N \N 2024-04-13 20:27:30.723827 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["field", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["field", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N ir.model.field.access [] 2024-04-13 20:27:30.723827 0 +84 84 {} \N \N 2024-04-13 20:39:02.298155 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["supervisor", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["supervisor", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N company.employee [] 2024-04-13 20:39:02.298155 0 +24 24 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.model.button [] 2024-04-13 20:27:30.723827 0 +86 86 {} \N \N 2024-04-13 20:39:03.023425 0 [["parent", "=", null]] \N \N account.account.type.template [] 2024-04-13 20:39:03.023425 0 +87 87 {} \N \N 2024-04-13 20:39:03.023425 0 [["parent", "=", null]] \N \N account.account.type [] 2024-04-13 20:39:03.023425 0 +88 88 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.account.type [] 2024-04-13 20:39:03.023425 0 +90 90 {} \N \N 2024-04-13 20:39:03.023425 0 [["parent", "=", null]] \N \N account.account.template [] 2024-04-13 20:39:03.023425 0 +93 93 {} \N \N 2024-04-13 20:39:03.023425 0 [["parent", "=", null]] \N \N account.account [] 2024-04-13 20:39:03.023425 0 +94 94 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.account [] 2024-04-13 20:39:03.023425 0 +108 108 {} \N account.aged_balance.context 2024-04-13 20:39:03.023425 0 \N \N \N account.aged_balance [] 2024-04-13 20:39:03.023425 0 +25 25 {} \N \N 2024-04-13 20:27:30.723827 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["button", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["button", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N ir.model.button.click [] 2024-04-13 20:27:30.723827 0 +26 26 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.model.data [] 2024-04-13 20:27:30.723827 0 +27 27 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.model.log [] 2024-04-13 20:27:30.723827 0 +56 56 {} \N \N 2024-04-13 20:27:35.518366 0 \N \N \N res.group [] 2024-04-13 20:27:35.518366 0 +28 28 \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.sequence [] 2024-04-13 20:27:30.723827 0 +29 29 \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.sequence.strict [] 2024-04-13 20:27:30.723827 0 +74 74 {} \N \N 2024-04-13 20:39:01.136154 0 [["parent", "=", null]] \N \N party.category [] 2024-04-13 20:39:01.136154 0 +30 30 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.sequence.type [] 2024-04-13 20:27:30.723827 0 +57 57 {} \N \N 2024-04-13 20:27:35.518366 0 \N \N \N res.user [] 2024-04-13 20:27:35.518366 0 +31 31 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.attachment [] 2024-04-13 20:27:30.723827 0 +32 32 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.note [] 2024-04-13 20:27:30.723827 0 +33 33 \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.cron [] 2024-04-13 20:27:30.723827 0 +60 60 {} \N \N 2024-04-13 20:39:00.134374 0 \N \N \N country.organization [] 2024-04-13 20:39:00.134374 0 +34 34 \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.lang [] 2024-04-13 20:27:30.723827 0 +36 36 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.translation [] 2024-04-13 20:27:30.723827 0 +38 38 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.translation [] 2024-04-13 20:27:30.723827 0 +61 61 {} \N \N 2024-04-13 20:39:00.134374 0 [["parent", "=", null]] \N \N country.region [] 2024-04-13 20:39:00.134374 0 +43 43 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.export [] 2024-04-13 20:27:30.723827 0 +44 44 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.rule.group [] 2024-04-13 20:27:30.723827 0 +45 45 {} \N \N 2024-04-13 20:27:30.723827 0 [["name", "!=", "tests"]] \N \N ir.module [] 2024-04-13 20:27:30.723827 0 +62 62 {} \N \N 2024-04-13 20:39:00.134374 0 \N \N \N country.region [] 2024-04-13 20:39:00.134374 0 +46 46 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.module.config_wizard.item [] 2024-04-13 20:27:30.723827 0 +50 50 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.trigger [] 2024-04-13 20:27:30.723827 0 +51 51 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.message [] 2024-04-13 20:27:30.723827 0 +63 63 {} \N \N 2024-04-13 20:39:00.134374 0 \N \N \N country.country [] 2024-04-13 20:39:00.134374 0 +52 52 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.email [] 2024-04-13 20:27:30.723827 0 +53 53 {} \N \N 2024-04-13 20:27:30.723827 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["resource.id", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}, {"__class__": "Eval", "d": "", "v": "active_model"}], "t": ["resource", "=", [{"__class__": "Eval", "d": "", "v": "active_model"}, {"__class__": "Eval", "d": "", "v": "active_id"}]]}] \N \N ir.email [] 2024-04-13 20:27:30.723827 0 +54 54 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.email.template [] 2024-04-13 20:27:30.723827 0 +64 64 {} \N \N 2024-04-13 20:39:00.134374 0 [["region", "child_of", {"__class__": "Eval", "d": [], "v": "active_ids"}, "parent"]] \N \N country.country [] 2024-04-13 20:39:00.134374 0 +55 55 {} \N \N 2024-04-13 20:27:30.723827 0 \N \N \N ir.error [] 2024-04-13 20:27:30.723827 0 +65 65 {} \N \N 2024-04-13 20:39:00.134374 0 [["country", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}]] \N \N country.postal_code [] 2024-04-13 20:39:00.134374 0 +66 66 {} \N \N 2024-04-13 20:39:00.792624 0 \N \N \N currency.currency [] 2024-04-13 20:39:00.792624 0 +67 67 {} \N \N 2024-04-13 20:39:00.792624 0 \N \N \N currency.cron [] 2024-04-13 20:39:00.792624 0 +68 68 {} \N \N 2024-04-13 20:39:01.136154 0 \N \N \N party.party [] 2024-04-13 20:39:01.136154 0 +69 69 {"categories": [{"__class__": "Eval", "d": "", "v": "active_id"}]} \N \N 2024-04-13 20:39:01.136154 0 [["categories", "child_of", [{"__class__": "Eval", "d": "", "v": "active_id"}], "parent"]] \N \N party.party [] 2024-04-13 20:39:01.136154 0 +75 75 {} \N \N 2024-04-13 20:39:01.136154 0 \N \N \N party.category [] 2024-04-13 20:39:01.136154 0 +76 76 {} \N \N 2024-04-13 20:39:01.136154 0 \N \N \N party.address [] 2024-04-13 20:39:01.136154 0 +95 95 {} [["company", "=", {"__class__": "Eval", "d": -1, "v": "company"}]] account.balance_sheet.context 2024-04-13 20:39:03.023425 0 [["OR", ["type", "child_of", {"__class__": "Eval", "d": "", "v": "active_id"}, "parent"], ["debit_type", "child_of", {"__class__": "Eval", "d": "", "v": "active_id"}, "parent"]], ["type", "!=", null], ["closed", "!=", true]] \N \N account.account [] 2024-04-13 20:39:03.023425 0 +97 97 {} \N account.account.context 2024-04-13 20:39:03.023425 0 [["parent", "=", null], ["context_company", "=", true]] \N \N account.account [] 2024-04-13 20:39:03.023425 0 +100 100 {} \N account.general_ledger.account.context 2024-04-13 20:39:03.023425 0 \N \N \N account.general_ledger.account [["line_count", "!=", 0]] 2024-04-13 20:39:03.023425 0 +101 101 {} [["company", "=", {"__class__": "Eval", "d": -1, "v": "company"}]] account.general_ledger.account.context 2024-04-13 20:39:03.023425 0 ["OR", ["type", "child_of", {"__class__": "Eval", "d": "", "v": "active_id"}, "parent"], ["debit_type", "child_of", {"__class__": "Eval", "d": "", "v": "active_id"}, "parent"]] \N \N account.general_ledger.account [] 2024-04-13 20:39:03.023425 0 +102 102 {} \N account.general_ledger.account.context 2024-04-13 20:39:03.023425 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["account", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["account", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N account.general_ledger.account.party [] 2024-04-13 20:39:03.023425 0 +104 104 {} \N account.general_ledger.account.context 2024-04-13 20:39:03.023425 0 [["party", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}]] \N \N account.general_ledger.account.party [] 2024-04-13 20:39:03.023425 0 +105 105 {} \N account.general_ledger.line.context 2024-04-13 20:39:03.023425 0 [["account", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]] \N \N account.general_ledger.line [] 2024-04-13 20:39:03.023425 0 +106 106 {"cumulate": true} [["company", "=", {"__class__": "Eval", "d": -1, "v": "company"}]] account.balance_sheet.comparison.context 2024-04-13 20:39:03.023425 0 [["statement", "=", "balance"], ["OR", ["parent", "=", null], ["parent.statement", "!=", "balance"], ["parent.statement", "=", null]]] \N \N account.account.type [] 2024-04-13 20:39:03.023425 0 +107 107 {} [["company", "=", {"__class__": "Eval", "d": -1, "v": "company"}]] account.income_statement.context 2024-04-13 20:39:03.023425 0 [["statement", "=", "income"], ["OR", ["parent", "=", null], ["parent.statement", "!=", "income"], ["parent.statement", "=", null]]] \N \N account.account.type [] 2024-04-13 20:39:03.023425 0 +110 110 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.configuration [] 2024-04-13 20:39:03.023425 0 +111 111 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.fiscalyear [] 2024-04-13 20:39:03.023425 0 +112 112 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.fiscalyear [["state", "=", "open"]] 2024-04-13 20:39:03.023425 0 +116 116 {} \N \N 2024-04-13 20:39:03.023425 0 [["company", "=", {"__class__": "Get", "d": -1, "k": "company", "v": {"__class__": "Eval", "d": {}, "v": "context"}}]] \N \N account.period [] 2024-04-13 20:39:03.023425 0 +117 117 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N [["start_date", "ASC"], ["id", "ASC"]] account.period [["state", "=", "open"]] 2024-04-13 20:39:03.023425 0 +118 118 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.journal [] 2024-04-13 20:39:03.023425 0 +119 119 {} \N account.journal.open_cash.context 2024-04-13 20:39:03.023425 0 [["type", "=", "cash"]] \N \N account.journal [] 2024-04-13 20:39:03.023425 0 +120 120 {} \N \N 2024-04-13 20:39:03.023425 0 [["period.fiscalyear.company.id", "=", {"__class__": "Get", "d": -1, "k": "company", "v": {"__class__": "Eval", "d": {}, "v": "context"}}]] \N \N account.journal.period [] 2024-04-13 20:39:03.023425 0 +121 121 {} \N \N 2024-04-13 20:39:03.023425 0 [["period.fiscalyear.company.id", "=", {"__class__": "Get", "d": -1, "k": "company", "v": {"__class__": "Eval", "d": {}, "v": "context"}}]] \N \N account.journal.period [["state", "=", "open"]] 2024-04-13 20:39:03.023425 0 +122 122 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.journal.period [["state", "=", "open"]] 2024-04-13 20:39:03.023425 0 +123 123 {} \N \N 2024-04-13 20:39:03.023425 0 [["company", "=", {"__class__": "Get", "d": -1, "k": "company", "v": {"__class__": "Eval", "d": {}, "v": "context"}}]] \N \N account.move [["create_date", ">=", {"M": null, "__class__": "DateTime", "d": null, "dM": 0, "dd": 0, "dh": 0, "dm": 0, "dms": 0, "ds": 0, "dy": -1, "h": 0, "m": 0, "ms": 0, "s": 0, "start": null, "y": null}]] 2024-04-13 20:39:03.023425 0 +124 124 {} \N \N 2024-04-13 20:39:03.023425 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["reconciliation", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["reconciliation", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N account.move.line [] 2024-04-13 20:39:03.023425 0 +125 125 {} \N \N 2024-04-13 20:39:03.023425 0 [["account", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}], ["state", "=", "valid"]] \N \N account.move.line [] 2024-04-13 20:39:03.023425 0 +155 155 {} \N \N 2024-04-13 20:39:03.023425 0 [["company", "=", {"__class__": "Eval", "d": "", "v": "company"}]] \N \N account.tax.rule [] 2024-04-13 20:39:03.023425 0 +156 156 {} \N \N 2024-04-13 20:39:08.573524 0 \N \N \N product.template [] 2024-04-13 20:39:08.573524 0 +127 127 {} [["OR", {"__class__": "If", "c": {"__class__": "Eval", "d": true, "v": "receivable"}, "e": ["id", "<", 0], "t": ["account.type.receivable", "=", true]}, {"__class__": "If", "c": {"__class__": "Eval", "d": true, "v": "payable"}, "e": ["id", "<", 0], "t": ["account.type.payable", "=", true]}], {"__class__": "If", "c": {"__class__": "Eval", "d": false, "v": "reconciled"}, "e": ["reconciliation", "=", null], "t": []}] account.move.line.receivable_payable.context 2024-04-13 20:39:03.023425 0 [["party", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], ["company", "=", {"__class__": "Get", "d": -1, "k": "company", "v": {"__class__": "Eval", "d": {}, "v": "context"}}]] \N [["maturity_date", "ASC"], ["date", "DESC"], ["id", "DESC"]] account.move.line 2024-04-13 20:39:03.023425 0 +133 133 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.move.reconcile.write_off [] 2024-04-13 20:39:03.023425 0 +135 135 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.move [] 2024-04-13 20:39:03.023425 0 +137 137 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.move [] 2024-04-13 20:39:03.023425 0 +139 139 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.move [] 2024-04-13 20:39:03.023425 0 +141 141 {} \N \N 2024-04-13 20:39:03.023425 0 [["company", "=", {"__class__": "Get", "d": -1, "k": "company", "v": {"__class__": "Eval", "d": {}, "v": "context"}}]] \N \N account.move.template [] 2024-04-13 20:39:03.023425 0 +143 143 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.move [] 2024-04-13 20:39:03.023425 0 +144 144 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.tax.group [] 2024-04-13 20:39:03.023425 0 +145 145 {} \N \N 2024-04-13 20:39:03.023425 0 [["parent", "=", null]] \N \N account.tax.code.template [] 2024-04-13 20:39:03.023425 0 +146 146 {} \N \N 2024-04-13 20:39:03.023425 0 [["parent", "=", null]] \N \N account.tax.code [] 2024-04-13 20:39:03.023425 0 +147 147 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.tax.code [] 2024-04-13 20:39:03.023425 0 +148 148 {} \N account.tax.code.context 2024-04-13 20:39:03.023425 0 [["parent", "=", null], ["context_company", "=", true]] \N \N account.tax.code [] 2024-04-13 20:39:03.023425 0 +149 149 {} \N \N 2024-04-13 20:39:03.023425 0 [["parent", "=", null]] \N \N account.tax.template [] 2024-04-13 20:39:03.023425 0 +150 150 {} \N \N 2024-04-13 20:39:03.023425 0 [["company", "=", {"__class__": "Eval", "d": "", "v": "company"}], ["parent", "=", null]] \N \N account.tax [] 2024-04-13 20:39:03.023425 0 +152 152 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.tax.line [] 2024-04-13 20:39:03.023425 0 +154 154 {} \N \N 2024-04-13 20:39:03.023425 0 \N \N \N account.tax.rule.template [] 2024-04-13 20:39:03.023425 0 +157 157 {"categories": [{"__class__": "Eval", "d": "", "v": "active_id"}]} \N \N 2024-04-13 20:39:08.573524 0 [["categories_all", "child_of", [{"__class__": "Eval", "d": "", "v": "active_id"}], "parent"]] \N \N product.template [] 2024-04-13 20:39:08.573524 0 +158 158 {} \N \N 2024-04-13 20:39:08.573524 0 \N \N \N product.product [] 2024-04-13 20:39:08.573524 0 +159 159 {} \N \N 2024-04-13 20:39:08.573524 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["template", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["template", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N product.product [] 2024-04-13 20:39:08.573524 0 +160 160 {} \N \N 2024-04-13 20:39:08.573524 0 [["parent", "=", null]] \N \N product.category [] 2024-04-13 20:39:08.573524 0 +161 161 {} \N \N 2024-04-13 20:39:08.573524 0 \N \N \N product.category [] 2024-04-13 20:39:08.573524 0 +162 162 {} \N \N 2024-04-13 20:39:08.573524 0 \N \N \N product.category [] 2024-04-13 20:39:08.573524 0 +163 163 {} \N \N 2024-04-13 20:39:08.573524 0 \N \N \N product.uom [] 2024-04-13 20:39:08.573524 0 +164 164 {} \N \N 2024-04-13 20:39:08.573524 0 \N \N \N product.uom.category [] 2024-04-13 20:39:08.573524 0 +165 165 {} \N \N 2024-04-13 20:39:08.573524 0 \N \N \N product.configuration [] 2024-04-13 20:39:08.573524 0 +166 166 {} \N \N 2024-04-13 20:39:10.340704 0 \N \N \N product.attribute.set [] 2024-04-13 20:39:10.340704 0 +167 167 {} \N \N 2024-04-13 20:39:10.340704 0 \N \N \N product.attribute [] 2024-04-13 20:39:10.340704 0 +169 169 {} \N \N 2024-04-13 20:39:10.936653 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": "product", "t": "template"}, "in", {"__class__": "Eval", "d": [], "v": "active_ids"}], "t": [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": "product", "t": "template"}, "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]}] \N \N product.cost_price.revision [] 2024-04-13 20:39:10.936653 0 +171 171 {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": {"product": {"__class__": "Eval", "d": "", "v": "active_id"}, "stock_skip_warehouse": false}, "t": {"product_template": {"__class__": "Eval", "d": "", "v": "active_id"}, "stock_skip_warehouse": false}} \N product.by_location.context 2024-04-13 20:39:10.936653 0 [["parent", "=", null]] \N \N stock.location [] 2024-04-13 20:39:10.936653 0 +185 185 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.shipment.internal 2024-04-13 20:39:10.936653 0 +172 172 {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": {"product": {"__class__": "Eval", "d": "", "v": "active_id"}, "stock_skip_warehouse": false, "with_childs": false}, "t": {"product_template": {"__class__": "Eval", "d": "", "v": "active_id"}, "stock_skip_warehouse": false, "with_childs": false}} \N product.by_location.context 2024-04-13 20:39:10.936653 0 \N \N \N stock.location ["OR", ["quantity", "!=", 0], ["forecast_quantity", "!=", 0]] 2024-04-13 20:39:10.936653 0 +174 174 {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": {"product": {"__class__": "Eval", "d": "", "v": "active_ids"}}, "t": {"product_template": {"__class__": "Eval", "d": "", "v": "active_ids"}}} \N stock.product_quantities_warehouse.context 2024-04-13 20:39:10.936653 0 \N \N \N stock.product_quantities_warehouse [["date", ">=", {"M": null, "__class__": "Date", "d": null, "dM": 0, "dd": 0, "dy": 0, "start": null, "y": null}]] 2024-04-13 20:39:10.936653 0 +176 176 {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": {"product": {"__class__": "Eval", "d": "", "v": "active_ids"}}, "t": {"product_template": {"__class__": "Eval", "d": "", "v": "active_ids"}}} \N stock.product_quantities_warehouse.context 2024-04-13 20:39:10.936653 0 \N \N \N stock.product_quantities_warehouse.move [["date", ">=", {"M": null, "__class__": "Date", "d": null, "dM": 0, "dd": 0, "dy": 0, "start": null, "y": null}]] 2024-04-13 20:39:10.936653 0 +177 177 {"stock_skip_warehouse": false, "with_childs": true} \N \N 2024-04-13 20:39:10.936653 0 [["type", "=", "warehouse"]] \N \N stock.location [] 2024-04-13 20:39:10.936653 0 +178 178 {} \N \N 2024-04-13 20:39:10.936653 0 [["parent", "=", null]] \N \N stock.location [] 2024-04-13 20:39:10.936653 0 +179 179 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.location [] 2024-04-13 20:39:10.936653 0 +180 180 {"locations": {"__class__": "Eval", "d": "", "v": "active_ids"}} \N stock.products_by_locations.context 2024-04-13 20:39:10.936653 0 ["OR", ["quantity", "!=", 0.0], ["forecast_quantity", "!=", 0.0]] \N \N stock.products_by_locations [["consumable", "=", false]] 2024-04-13 20:39:10.936653 0 +181 181 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.location.lead_time [] 2024-04-13 20:39:10.936653 0 +182 182 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.shipment.in 2024-04-13 20:39:10.936653 0 +183 183 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.shipment.in.return 2024-04-13 20:39:10.936653 0 +184 184 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.shipment.out 2024-04-13 20:39:10.936653 0 +186 186 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.shipment.out.return 2024-04-13 20:39:10.936653 0 +195 195 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.move [["create_date", ">=", {"M": null, "__class__": "DateTime", "d": null, "dM": 0, "dd": 0, "dh": 0, "dm": 0, "dms": 0, "ds": 0, "dy": -1, "h": 0, "m": 0, "ms": 0, "s": 0, "start": null, "y": null}]] 2024-04-13 20:39:10.936653 0 +196 196 {} \N \N 2024-04-13 20:39:10.936653 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": "product", "t": "product.template"}, "in", {"__class__": "Eval", "d": [], "v": "active_ids"}], "t": [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": "product", "t": "product.template"}, "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]}] \N [["effective_date", "DESC NULLS FIRST"]] stock.move [] 2024-04-13 20:39:10.936653 0 +197 197 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.inventory [["create_date", ">=", {"M": null, "__class__": "DateTime", "d": null, "dM": 0, "dd": 0, "dh": 0, "dm": 0, "dms": 0, "ds": 0, "dy": -1, "h": 0, "m": 0, "ms": 0, "s": 0, "start": null, "y": null}]] 2024-04-13 20:39:10.936653 0 +198 198 {} \N \N 2024-04-13 20:39:10.936653 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["inventory", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["inventory", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N stock.inventory.line [] 2024-04-13 20:39:10.936653 0 +200 200 {} \N \N 2024-04-13 20:39:10.936653 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["customer", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["customer", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N stock.shipment.out [["state", "not in", ["done", "cancelled"]]] 2024-04-13 20:39:10.936653 0 +227 227 {} \N \N 2024-04-13 20:39:16.958214 0 [["invoices", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}]] \N \N purchase.purchase [] 2024-04-13 20:39:16.958214 0 +201 201 {} \N \N 2024-04-13 20:39:10.936653 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["supplier", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["supplier", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N stock.shipment.in [["state", "not in", ["done", "cancelled"]]] 2024-04-13 20:39:10.936653 0 +202 202 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.configuration [] 2024-04-13 20:39:10.936653 0 +203 203 {} \N \N 2024-04-13 20:39:10.936653 0 \N \N \N stock.period [] 2024-04-13 20:39:10.936653 0 +204 204 {} \N stock.reporting.margin.context 2024-04-13 20:39:10.936653 0 \N \N \N stock.reporting.margin.main [] 2024-04-13 20:39:10.936653 0 +205 205 {} \N stock.reporting.margin.context 2024-04-13 20:39:10.936653 0 \N \N [["date", "DESC"]] stock.reporting.margin.main.time_series [] 2024-04-13 20:39:10.936653 0 +206 206 {} \N stock.reporting.margin.context 2024-04-13 20:39:10.936653 0 \N \N \N stock.reporting.margin.product [] 2024-04-13 20:39:10.936653 0 +207 207 {} \N stock.reporting.margin.context 2024-04-13 20:39:10.936653 0 [["product", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] stock.reporting.margin.product.time_series [] 2024-04-13 20:39:10.936653 0 +208 208 {} \N stock.reporting.margin.context 2024-04-13 20:39:10.936653 0 [["parent", "=", null]] \N \N stock.reporting.margin.category.tree [] 2024-04-13 20:39:10.936653 0 +209 209 {} \N stock.reporting.margin.context 2024-04-13 20:39:10.936653 0 [["category", "child_of", {"__class__": "Eval", "d": [], "v": "active_ids"}, "parent"]] \N \N stock.reporting.margin.category [] 2024-04-13 20:39:10.936653 0 +210 210 {} \N stock.reporting.margin.context 2024-04-13 20:39:10.936653 0 [["category", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] stock.reporting.margin.category.time_series [] 2024-04-13 20:39:10.936653 0 +212 212 {} \N \N 2024-04-13 20:39:14.878373 0 \N \N \N account.invoice [] 2024-04-13 20:39:14.878373 0 +213 213 {"type": "out"} \N \N 2024-04-13 20:39:14.878373 0 [["type", "=", "out"]] \N \N account.invoice 2024-04-13 20:39:14.878373 0 +214 214 {"type": "in"} \N \N 2024-04-13 20:39:14.878373 0 [["type", "=", "in"]] \N \N account.invoice 2024-04-13 20:39:14.878373 0 +215 215 {} \N \N 2024-04-13 20:39:14.878373 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "party.party"}, "e": [], "t": ["party", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}] \N \N account.invoice [] 2024-04-13 20:39:14.878373 0 +218 218 {} \N \N 2024-04-13 20:39:14.878373 0 \N \N \N account.invoice.payment.method [] 2024-04-13 20:39:14.878373 0 +222 222 {} \N \N 2024-04-13 20:39:14.878373 0 \N \N \N account.invoice.payment_term [] 2024-04-13 20:39:14.878373 0 +226 226 {} \N \N 2024-04-13 20:39:16.958214 0 \N \N \N purchase.purchase 2024-04-13 20:39:16.958214 0 +228 228 {} \N \N 2024-04-13 20:39:16.958214 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "party.party"}, "e": [], "t": ["party", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}] \N \N purchase.purchase [] 2024-04-13 20:39:16.958214 0 +229 229 {} \N \N 2024-04-13 20:39:16.958214 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "stock.shipment.in"}, "e": [], "t": ["shipments", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "stock.shipment.in.return"}, "e": [], "t": ["shipment_returns", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}] \N \N purchase.purchase [] 2024-04-13 20:39:16.958214 0 +231 231 {} \N \N 2024-04-13 20:39:16.958214 0 [["type", "=", "line"], {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "purchase.purchase"}, "e": [], "t": ["purchase", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.product"}, "e": [], "t": ["product", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": [], "t": ["product.template.id", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "party.party"}, "e": [], "t": ["supplier", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}] \N \N purchase.line [] 2024-04-13 20:39:16.958214 0 +232 232 {} \N \N 2024-04-13 20:39:16.958214 0 \N \N \N purchase.product_supplier [] 2024-04-13 20:39:16.958214 0 +233 233 {} \N \N 2024-04-13 20:39:16.958214 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["product_supplier", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["product_supplier", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N purchase.product_supplier.price [] 2024-04-13 20:39:16.958214 0 +237 237 {} \N purchase.reporting.context 2024-04-13 20:39:16.958214 0 \N \N \N purchase.reporting.main [] 2024-04-13 20:39:16.958214 0 +238 238 {} \N purchase.reporting.context 2024-04-13 20:39:16.958214 0 \N \N [["date", "DESC"]] purchase.reporting.main.time_series [] 2024-04-13 20:39:16.958214 0 +252 252 {} \N \N 2024-04-13 20:39:19.14446 0 \N \N \N sale.sale 2024-04-13 20:39:19.14446 0 +239 239 {} \N purchase.reporting.context 2024-04-13 20:39:16.958214 0 \N \N \N purchase.reporting.supplier [] 2024-04-13 20:39:16.958214 0 +240 240 {} \N purchase.reporting.context 2024-04-13 20:39:16.958214 0 [["supplier", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] purchase.reporting.supplier.time_series [] 2024-04-13 20:39:16.958214 0 +241 241 {"supplier": {"__class__": "Eval", "d": "", "v": "active_id"}} \N purchase.reporting.context 2024-04-13 20:39:16.958214 0 \N \N \N purchase.reporting.product [] 2024-04-13 20:39:16.958214 0 +242 242 {} \N purchase.reporting.context 2024-04-13 20:39:16.958214 0 [["product", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] purchase.reporting.product.time_series [] 2024-04-13 20:39:16.958214 0 +243 243 {} \N \N 2024-04-13 20:39:16.958214 0 \N \N \N purchase.configuration [] 2024-04-13 20:39:16.958214 0 +244 244 {} \N \N 2024-04-13 20:39:16.958214 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["purchase", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["purchase", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N stock.move [] 2024-04-13 20:39:16.958214 0 +245 245 {} \N \N 2024-04-13 20:39:16.958214 0 [["moves.purchase", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}]] \N \N stock.shipment.in [] 2024-04-13 20:39:16.958214 0 +246 246 {} \N \N 2024-04-13 20:39:16.958214 0 [["moves.purchase", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}]] \N \N stock.shipment.in.return [] 2024-04-13 20:39:16.958214 0 +247 247 \N \N 2024-04-13 20:39:16.958214 0 [["lines.origin.purchase.id", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}, "purchase.line"]] \N \N account.invoice [] 2024-04-13 20:39:16.958214 0 +250 250 {} \N \N 2024-04-13 20:39:19.14446 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["moves.sale", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["moves.sale", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N stock.shipment.out [] 2024-04-13 20:39:19.14446 0 +251 251 {} \N \N 2024-04-13 20:39:19.14446 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["moves.sale", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["moves.sale", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N stock.shipment.out.return [] 2024-04-13 20:39:19.14446 0 +253 253 {} \N \N 2024-04-13 20:39:19.14446 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "party.party"}, "e": [], "t": ["party", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}] \N \N sale.sale [] 2024-04-13 20:39:19.14446 0 +254 254 {} \N \N 2024-04-13 20:39:19.14446 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "account.invoice"}, "e": [], "t": ["invoices", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "stock.shipment.out"}, "e": [], "t": ["shipments", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "stock.shipment.out.return"}, "e": [], "t": ["shipment_returns", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}] \N \N sale.sale [] 2024-04-13 20:39:19.14446 0 +256 256 {} \N \N 2024-04-13 20:39:19.14446 0 [["type", "=", "line"], {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "sale.sale"}, "e": [], "t": ["sale", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.product"}, "e": [], "t": ["product", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "product.template"}, "e": [], "t": ["product.template.id", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}, {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "party.party"}, "e": [], "t": ["customer", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]}] \N \N sale.line [] 2024-04-13 20:39:19.14446 0 +259 259 {} \N \N 2024-04-13 20:39:19.14446 0 \N \N \N sale.configuration [] 2024-04-13 20:39:19.14446 0 +260 260 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 \N \N \N sale.reporting.main [] 2024-04-13 20:39:19.14446 0 +261 261 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 \N \N [["date", "DESC"]] sale.reporting.main.time_series [] 2024-04-13 20:39:19.14446 0 +262 262 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "sale.reporting.customer.category.tree"}, "e": [], "t": [["customer", "where", [["categories", "child_of", {"__class__": "Eval", "d": [], "v": "active_ids"}, "parent"]]]]} \N \N sale.reporting.customer [] 2024-04-13 20:39:19.14446 0 +263 263 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["customer", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] sale.reporting.customer.time_series [] 2024-04-13 20:39:19.14446 0 +264 264 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["parent", "=", null]] \N \N sale.reporting.customer.category.tree [] 2024-04-13 20:39:19.14446 0 +265 265 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["category", "child_of", {"__class__": "Eval", "d": [], "v": "active_ids"}, "parent"]] \N \N sale.reporting.customer.category [] 2024-04-13 20:39:19.14446 0 +266 266 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["category", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] sale.reporting.customer.category.time_series [] 2024-04-13 20:39:19.14446 0 +267 267 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 {"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": "", "v": "active_model"}, "s2": "sale.reporting.product.category.tree"}, "e": [], "t": [["product", "where", [["categories_all", "child_of", {"__class__": "Eval", "d": [], "v": "active_ids"}, "parent"]]]]} \N \N sale.reporting.product [] 2024-04-13 20:39:19.14446 0 +268 268 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["product", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] sale.reporting.product.time_series [] 2024-04-13 20:39:19.14446 0 +269 269 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["parent", "=", null]] \N \N sale.reporting.product.category.tree [] 2024-04-13 20:39:19.14446 0 +270 270 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["category", "child_of", {"__class__": "Eval", "d": [], "v": "active_ids"}, "parent"]] \N \N sale.reporting.product.category [] 2024-04-13 20:39:19.14446 0 +271 271 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["category", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] sale.reporting.product.category.time_series [] 2024-04-13 20:39:19.14446 0 +272 272 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["parent", "=", null]] \N \N sale.reporting.region.tree [] 2024-04-13 20:39:19.14446 0 +274 274 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["parent", "=", null], ["id", "in", {"__class__": "Eval", "d": [], "v": "active_ids"}]] \N \N sale.reporting.country.tree [] 2024-04-13 20:39:19.14446 0 +275 275 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["country", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] sale.reporting.country.time_series [] 2024-04-13 20:39:19.14446 0 +276 276 {} \N sale.reporting.context 2024-04-13 20:39:19.14446 0 [["subdivision", "=", {"__class__": "Eval", "d": -1, "v": "active_id"}]] \N [["date", "DESC"]] sale.reporting.country.subdivision.time_series [] 2024-04-13 20:39:19.14446 0 +279 279 {} \N \N 2024-04-13 20:39:19.14446 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["sale", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}], "t": ["sale", "=", {"__class__": "Eval", "d": "", "v": "active_id"}]}] \N \N stock.move [] 2024-04-13 20:39:19.14446 0 +280 280 {"stock_skip_warehouse": true, "with_childs": true} \N product.sale.context 2024-04-13 20:39:19.14446 0 [["salable", "=", true]] \N \N product.product [] 2024-04-13 20:39:19.14446 0 +281 281 {} \N \N 2024-04-13 20:39:19.14446 0 [{"__class__": "If", "c": {"__class__": "Equal", "s1": {"__class__": "Eval", "d": [], "v": "active_ids"}, "s2": [{"__class__": "Eval", "d": "", "v": "active_id"}]}, "e": ["lines.origin.sale.id", "in", {"__class__": "Eval", "d": "", "v": "active_ids"}, "sale.line"], "t": ["lines.origin.sale.id", "=", {"__class__": "Eval", "d": "", "v": "active_id"}, "sale.line"]}] \N \N account.invoice [] 2024-04-13 20:39:19.14446 0 +282 282 {} \N \N 2024-04-13 20:39:21.814652 0 \N \N \N optical_equipment.equipment 2024-04-13 20:39:21.814652 0 +283 283 {} \N \N 2024-04-13 20:39:21.814652 0 \N \N \N optical_equipment.equipment 2024-04-13 20:39:21.814652 0 +289 289 {} \N \N 2024-04-13 20:39:21.814652 0 \N \N \N optical_equipment.contract [] 2024-04-13 20:39:21.814652 0 +293 293 {} \N \N 2024-04-13 20:39:21.814652 0 \N \N \N optical_equipment_maintenance.diary 2024-04-13 20:39:21.814652 0 +296 296 {} \N \N 2024-04-13 20:39:21.814652 0 \N \N \N optical_equipment.configuration [] 2024-04-13 20:39:21.814652 0 +297 297 {} \N \N 2024-04-13 20:39:21.814652 0 \N \N \N optical_equipment_maintenance.service 2024-04-13 20:39:21.814652 0 +298 298 {} \N \N 2024-04-13 20:39:21.814652 0 \N \N \N optical_equipment.maintenance 2024-04-13 20:39:21.814652 0 +307 307 {} \N \N 2024-04-13 20:39:21.814652 0 \N \N \N optical_equipment.use_pattern [] 2024-04-13 20:39:21.814652 0 +\. + + +-- +-- Data for Name: ir_action_act_window_domain; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_action_act_window_domain (id, act_window, active, count, create_date, create_uid, domain, name, sequence, write_date, write_uid) FROM stdin; +1 26 t t 2024-04-13 20:27:30.723827 0 [["out_of_sync", "=", true]] Out of Sync 10 \N \N +2 26 t f 2024-04-13 20:27:30.723827 0 All 9999 \N \N +3 36 t f 2024-04-13 20:27:30.723827 0 [["module", "!=", null]] Modules 10 \N \N +4 36 t f 2024-04-13 20:27:30.723827 0 [["module", "=", null]] Local 20 \N \N +5 55 t t 2024-04-13 20:27:30.723827 0 [["state", "=", "open"]] Open 10 \N \N +6 55 t t 2024-04-13 20:27:30.723827 0 [["state", "=", "processing"]] Processing 20 \N \N +7 55 t f 2024-04-13 20:27:30.723827 0 All 9999 \N \N +8 182 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "draft"]] Draft 10 \N \N +9 182 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "received"]] Received 20 \N \N +10 182 t f 2024-04-13 20:39:10.936653 0 All 9999 \N \N +11 183 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "draft"]] Draft 10 \N \N +12 183 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "waiting"]] Waiting 20 \N \N +13 183 t t 2024-04-13 20:39:10.936653 0 [["partially_assigned", "=", "True"]] Partially Assigned 30 \N \N +14 183 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "assigned"]] Assigned 40 \N \N +15 183 t f 2024-04-13 20:39:10.936653 0 All 9999 \N \N +16 184 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "draft"]] Draft 10 \N \N +17 184 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "waiting"]] Waiting 20 \N \N +18 184 t t 2024-04-13 20:39:10.936653 0 [["partially_assigned", "=", true]] Partially Assigned 30 \N \N +19 184 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "assigned"]] Assigned 40 \N \N +20 184 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "picked"]] Picked 50 \N \N +21 184 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "packed"]] Packed 60 \N \N +22 184 t f 2024-04-13 20:39:10.936653 0 All 9999 \N \N +23 185 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "request"]] Requests 5 \N \N +24 185 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "draft"]] Draft 10 \N \N +25 185 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "waiting"]] Waiting 20 \N \N +26 185 t t 2024-04-13 20:39:10.936653 0 [["partially_assigned", "=", true]] Partially Assigned 30 \N \N +27 185 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "assigned"]] Assigned 40 \N \N +28 185 t f 2024-04-13 20:39:10.936653 0 [["state", "=", "shipped"]] Shipped 50 \N \N +29 185 t f 2024-04-13 20:39:10.936653 0 All 9999 \N \N +30 186 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "draft"]] Draft 10 \N \N +31 186 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "received"]] Received 20 \N \N +32 186 t f 2024-04-13 20:39:10.936653 0 All 9999 \N \N +33 195 t f 2024-04-13 20:39:10.936653 0 All 10 \N \N +34 195 t f 2024-04-13 20:39:10.936653 0 [["from_location.type", "=", "supplier"]] From Suppliers 20 \N \N +35 195 t t 2024-04-13 20:39:10.936653 0 [["from_location.type", "=", "supplier"], ["state", "=", "draft"], ["shipment", "=", null]] From Suppliers Waiting 30 \N \N +36 195 t f 2024-04-13 20:39:10.936653 0 [["to_location.type", "=", "customer"]] To Customers 40 \N \N +37 197 t t 2024-04-13 20:39:10.936653 0 [["state", "=", "draft"]] Draft 10 \N \N +38 197 t f 2024-04-13 20:39:10.936653 0 All 9999 \N \N +39 213 t t 2024-04-13 20:39:14.878373 0 [["state", "=", "draft"]] Draft 10 \N \N +40 213 t t 2024-04-13 20:39:14.878373 0 [["state", "=", "validated"]] Validated 20 \N \N +41 213 t t 2024-04-13 20:39:14.878373 0 [["state", "=", "posted"]] Posted 30 \N \N +42 213 t f 2024-04-13 20:39:14.878373 0 All 9999 \N \N +43 214 t t 2024-04-13 20:39:14.878373 0 [["state", "=", "draft"]] Draft 10 \N \N +44 214 t t 2024-04-13 20:39:14.878373 0 [["state", "=", "validated"]] Validated 20 \N \N +45 214 t t 2024-04-13 20:39:14.878373 0 [["state", "=", "posted"]] Posted 30 \N \N +46 214 t f 2024-04-13 20:39:14.878373 0 All 9999 \N \N +47 215 t t 2024-04-13 20:39:14.878373 0 [["state", "not in", ["paid", "cancelled"]]] Pending 10 \N \N +48 215 t t 2024-04-13 20:39:14.878373 0 [["state", "=", "paid"]] Paid 20 \N \N +49 215 t f 2024-04-13 20:39:14.878373 0 All 9999 \N \N +50 226 t t 2024-04-13 20:39:16.958214 0 [["state", "=", "draft"]] Draft 10 \N \N +51 226 t t 2024-04-13 20:39:16.958214 0 [["state", "=", "quotation"]] Quotation 20 \N \N +52 226 t t 2024-04-13 20:39:16.958214 0 [["state", "=", "confirmed"]] Confirmed 30 \N \N +53 226 t t 2024-04-13 20:39:16.958214 0 [["state", "=", "processing"]] Processing 40 \N \N +54 226 t t 2024-04-13 20:39:16.958214 0 ["OR", ["invoice_state", "=", "exception"], ["shipment_state", "=", "exception"]] Exception 50 \N \N +55 226 t f 2024-04-13 20:39:16.958214 0 All 9999 \N \N +56 228 t t 2024-04-13 20:39:16.958214 0 [["state", "not in", ["done", "cancelled"]]] Pending 10 \N \N +57 228 t t 2024-04-13 20:39:16.958214 0 [["state", "=", "done"]] Done 20 \N \N +58 228 t f 2024-04-13 20:39:16.958214 0 All 9999 \N \N +59 231 t t 2024-04-13 20:39:16.958214 0 [["purchase_state", "not in", ["done", "cancelled"]]] Pending 10 \N \N +60 231 t t 2024-04-13 20:39:16.958214 0 [["purchase_state", "=", "done"]] Done 20 \N \N +61 231 t f 2024-04-13 20:39:16.958214 0 All 9999 \N \N +62 252 t t 2024-04-13 20:39:19.14446 0 [["state", "=", "draft"]] Draft 10 \N \N +63 252 t t 2024-04-13 20:39:19.14446 0 [["state", "=", "quotation"]] Quotation 20 \N \N +64 252 t t 2024-04-13 20:39:19.14446 0 [["state", "=", "confirmed"]] Confirmed 30 \N \N +65 252 t t 2024-04-13 20:39:19.14446 0 [["state", "=", "processing"]] Processing 40 \N \N +66 252 t t 2024-04-13 20:39:19.14446 0 ["OR", ["invoice_state", "=", "exception"], ["shipment_state", "=", "exception"]] Exception 50 \N \N +67 252 t f 2024-04-13 20:39:19.14446 0 All 9999 \N \N +68 253 t t 2024-04-13 20:39:19.14446 0 [["state", "not in", ["done", "cancelled"]]] Pending 10 \N \N +69 253 t t 2024-04-13 20:39:19.14446 0 [["state", "=", "done"]] Done 20 \N \N +70 253 t f 2024-04-13 20:39:19.14446 0 All 9999 \N \N +71 256 t t 2024-04-13 20:39:19.14446 0 [["sale_state", "not in", ["done", "cancelled"]]] Pending 10 \N \N +72 256 t t 2024-04-13 20:39:19.14446 0 [["sale_state", "=", "done"]] Done 20 \N \N +73 256 t f 2024-04-13 20:39:19.14446 0 All 9999 \N \N +74 282 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "draft"]] Draft 10 \N \N +75 282 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "registred"]] Registred 20 \N \N +76 282 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "uncontrated"]] UnContrated 30 \N \N +77 282 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "contrated"]] Contrated 30 \N \N +78 282 t f 2024-04-13 20:39:21.814652 0 All 9999 \N \N +79 283 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "draft"]] Draft 10 \N \N +80 289 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "draft"]] Draft 10 \N \N +81 289 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "running"]] Running 30 \N \N +82 289 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "closed"]] Closed 40 \N \N +83 289 t f 2024-04-13 20:39:21.814652 0 All 9999 \N \N +84 293 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "draft"]] Draft 10 \N \N +85 293 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "agended"]] Agended 20 \N \N +86 293 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "in_progress"]] In progress 30 \N \N +87 293 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "failed"]] Failed 30 \N \N +88 293 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "finished"]] Finished 40 \N \N +89 293 t f 2024-04-13 20:39:21.814652 0 All 9999 \N \N +90 297 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "draft"]] Draft 10 \N \N +91 297 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "agended"]] Agended 20 \N \N +92 297 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "in_progress"]] In progress 30 \N \N +93 297 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "failed"]] Failed 30 \N \N +94 297 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "finished"]] Finished 40 \N \N +95 297 t f 2024-04-13 20:39:21.814652 0 All 9999 \N \N +96 298 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "draft"]] Draft 10 \N \N +97 298 t t 2024-04-13 20:39:21.814652 0 [["state", "=", "finished"]] Finished 40 \N \N +98 298 t f 2024-04-13 20:39:21.814652 0 All 9999 \N \N +\. + + +-- +-- Data for Name: ir_action_act_window_view; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_action_act_window_view (id, act_window, active, create_date, create_uid, sequence, view, write_date, write_uid) FROM stdin; +1 1 t 2024-04-13 20:27:30.723827 0 10 1 \N \N +2 1 t 2024-04-13 20:27:30.723827 0 20 2 \N \N +3 2 t 2024-04-13 20:27:30.723827 0 1 3 \N \N +4 3 t 2024-04-13 20:27:30.723827 0 10 4 \N \N +5 3 t 2024-04-13 20:27:30.723827 0 20 5 \N \N +6 5 t 2024-04-13 20:27:30.723827 0 1 9 \N \N +7 5 t 2024-04-13 20:27:30.723827 0 2 8 \N \N +8 6 t 2024-04-13 20:27:30.723827 0 1 11 \N \N +9 6 t 2024-04-13 20:27:30.723827 0 2 10 \N \N +10 7 t 2024-04-13 20:27:30.723827 0 10 13 \N \N +11 7 t 2024-04-13 20:27:30.723827 0 20 12 \N \N +12 8 t 2024-04-13 20:27:30.723827 0 10 15 \N \N +13 8 t 2024-04-13 20:27:30.723827 0 20 14 \N \N +14 9 t 2024-04-13 20:27:30.723827 0 10 17 \N \N +15 9 t 2024-04-13 20:27:30.723827 0 20 16 \N \N +16 10 t 2024-04-13 20:27:30.723827 0 1 19 \N \N +17 10 t 2024-04-13 20:27:30.723827 0 2 18 \N \N +18 11 t 2024-04-13 20:27:30.723827 0 1 23 \N \N +19 11 t 2024-04-13 20:27:30.723827 0 2 22 \N \N +20 12 t 2024-04-13 20:27:30.723827 0 1 25 \N \N +21 12 t 2024-04-13 20:27:30.723827 0 2 24 \N \N +22 13 t 2024-04-13 20:27:30.723827 0 1 33 \N \N +23 13 t 2024-04-13 20:27:30.723827 0 2 32 \N \N +24 14 t 2024-04-13 20:27:30.723827 0 1 35 \N \N +25 14 t 2024-04-13 20:27:30.723827 0 2 34 \N \N +26 15 t 2024-04-13 20:27:30.723827 0 1 37 \N \N +27 15 t 2024-04-13 20:27:30.723827 0 2 36 \N \N +28 16 t 2024-04-13 20:27:30.723827 0 1 39 \N \N +29 16 t 2024-04-13 20:27:30.723827 0 2 38 \N \N +30 17 t 2024-04-13 20:27:30.723827 0 1 40 \N \N +31 17 t 2024-04-13 20:27:30.723827 0 2 41 \N \N +32 19 t 2024-04-13 20:27:30.723827 0 10 42 \N \N +33 19 t 2024-04-13 20:27:30.723827 0 20 43 \N \N +34 24 t 2024-04-13 20:27:30.723827 0 10 45 \N \N +35 24 t 2024-04-13 20:27:30.723827 0 20 46 \N \N +36 26 t 2024-04-13 20:27:30.723827 0 10 51 \N \N +37 26 t 2024-04-13 20:27:30.723827 0 20 52 \N \N +38 27 t 2024-04-13 20:27:30.723827 0 10 54 \N \N +39 27 t 2024-04-13 20:27:30.723827 0 20 53 \N \N +40 28 t 2024-04-13 20:27:30.723827 0 1 56 \N \N +41 28 t 2024-04-13 20:27:30.723827 0 2 55 \N \N +42 29 t 2024-04-13 20:27:30.723827 0 1 58 \N \N +43 29 t 2024-04-13 20:27:30.723827 0 2 57 \N \N +44 30 t 2024-04-13 20:27:30.723827 0 1 60 \N \N +45 30 t 2024-04-13 20:27:30.723827 0 2 59 \N \N +46 31 t 2024-04-13 20:27:30.723827 0 1 63 \N \N +47 31 t 2024-04-13 20:27:30.723827 0 2 61 \N \N +48 32 t 2024-04-13 20:27:30.723827 0 1 65 \N \N +49 32 t 2024-04-13 20:27:30.723827 0 2 64 \N \N +50 33 t 2024-04-13 20:27:30.723827 0 1 66 \N \N +51 33 t 2024-04-13 20:27:30.723827 0 2 67 \N \N +52 34 t 2024-04-13 20:27:30.723827 0 1 68 \N \N +53 34 t 2024-04-13 20:27:30.723827 0 2 69 \N \N +54 36 t 2024-04-13 20:27:30.723827 0 1 72 \N \N +55 36 t 2024-04-13 20:27:30.723827 0 2 71 \N \N +56 43 t 2024-04-13 20:27:30.723827 0 1 81 \N \N +57 43 t 2024-04-13 20:27:30.723827 0 2 80 \N \N +58 44 t 2024-04-13 20:27:30.723827 0 1 85 \N \N +59 44 t 2024-04-13 20:27:30.723827 0 2 84 \N \N +60 45 t 2024-04-13 20:27:30.723827 0 1 89 \N \N +61 45 t 2024-04-13 20:27:30.723827 0 2 88 \N \N +62 46 t 2024-04-13 20:27:30.723827 0 10 92 \N \N +63 50 t 2024-04-13 20:27:30.723827 0 10 100 \N \N +64 50 t 2024-04-13 20:27:30.723827 0 20 99 \N \N +65 51 t 2024-04-13 20:27:30.723827 0 10 101 \N \N +66 51 t 2024-04-13 20:27:30.723827 0 20 102 \N \N +67 52 t 2024-04-13 20:27:30.723827 0 10 104 \N \N +68 52 t 2024-04-13 20:27:30.723827 0 20 103 \N \N +69 53 t 2024-04-13 20:27:30.723827 0 10 104 \N \N +70 53 t 2024-04-13 20:27:30.723827 0 20 103 \N \N +71 54 t 2024-04-13 20:27:30.723827 0 10 106 \N \N +72 54 t 2024-04-13 20:27:30.723827 0 20 105 \N \N +73 55 t 2024-04-13 20:27:30.723827 0 10 107 \N \N +74 55 t 2024-04-13 20:27:30.723827 0 20 108 \N \N +75 56 t 2024-04-13 20:27:35.518366 0 1 110 \N \N +76 56 t 2024-04-13 20:27:35.518366 0 2 109 \N \N +77 57 t 2024-04-13 20:27:35.518366 0 1 113 \N \N +78 57 t 2024-04-13 20:27:35.518366 0 2 111 \N \N +79 60 t 2024-04-13 20:39:00.134374 0 10 123 \N \N +80 60 t 2024-04-13 20:39:00.134374 0 20 122 \N \N +81 61 t 2024-04-13 20:39:00.134374 0 10 128 \N \N +82 61 t 2024-04-13 20:39:00.134374 0 20 126 \N \N +83 62 t 2024-04-13 20:39:00.134374 0 10 127 \N \N +84 62 t 2024-04-13 20:39:00.134374 0 20 126 \N \N +85 63 t 2024-04-13 20:39:00.134374 0 10 130 \N \N +86 63 t 2024-04-13 20:39:00.134374 0 20 129 \N \N +87 65 t 2024-04-13 20:39:00.134374 0 10 134 \N \N +88 65 t 2024-04-13 20:39:00.134374 0 20 133 \N \N +89 66 t 2024-04-13 20:39:00.792624 0 10 136 \N \N +90 66 t 2024-04-13 20:39:00.792624 0 20 135 \N \N +91 67 t 2024-04-13 20:39:00.792624 0 10 140 \N \N +92 67 t 2024-04-13 20:39:00.792624 0 20 141 \N \N +93 68 t 2024-04-13 20:39:01.136154 0 10 142 \N \N +94 68 t 2024-04-13 20:39:01.136154 0 20 143 \N \N +95 74 t 2024-04-13 20:39:01.136154 0 10 151 \N \N +96 74 t 2024-04-13 20:39:01.136154 0 20 150 \N \N +97 75 t 2024-04-13 20:39:01.136154 0 10 152 \N \N +98 75 t 2024-04-13 20:39:01.136154 0 20 150 \N \N +99 76 t 2024-04-13 20:39:01.136154 0 10 153 \N \N +100 76 t 2024-04-13 20:39:01.136154 0 20 155 \N \N +101 77 t 2024-04-13 20:39:01.136154 0 10 157 \N \N +102 77 t 2024-04-13 20:39:01.136154 0 20 158 \N \N +103 78 t 2024-04-13 20:39:01.136154 0 10 159 \N \N +104 78 t 2024-04-13 20:39:01.136154 0 20 160 \N \N +105 79 t 2024-04-13 20:39:01.136154 0 10 161 \N \N +106 79 t 2024-04-13 20:39:01.136154 0 20 163 \N \N +107 80 t 2024-04-13 20:39:01.136154 0 1 164 \N \N +108 81 t 2024-04-13 20:39:02.298155 0 10 167 \N \N +109 81 t 2024-04-13 20:39:02.298155 0 20 166 \N \N +110 83 t 2024-04-13 20:39:02.298155 0 10 172 \N \N +111 83 t 2024-04-13 20:39:02.298155 0 20 171 \N \N +112 84 t 2024-04-13 20:39:02.298155 0 10 172 \N \N +113 84 t 2024-04-13 20:39:02.298155 0 20 171 \N \N +114 86 t 2024-04-13 20:39:03.023425 0 10 180 \N \N +115 86 t 2024-04-13 20:39:03.023425 0 20 178 \N \N +116 87 t 2024-04-13 20:39:03.023425 0 10 182 \N \N +117 87 t 2024-04-13 20:39:03.023425 0 20 181 \N \N +118 88 t 2024-04-13 20:39:03.023425 0 10 183 \N \N +119 88 t 2024-04-13 20:39:03.023425 0 20 181 \N \N +120 90 t 2024-04-13 20:39:03.023425 0 10 186 \N \N +121 90 t 2024-04-13 20:39:03.023425 0 20 184 \N \N +122 93 t 2024-04-13 20:39:03.023425 0 10 195 \N \N +123 93 t 2024-04-13 20:39:03.023425 0 20 194 \N \N +124 94 t 2024-04-13 20:39:03.023425 0 10 196 \N \N +125 94 t 2024-04-13 20:39:03.023425 0 20 194 \N \N +126 95 t 2024-04-13 20:39:03.023425 0 10 197 \N \N +127 97 t 2024-04-13 20:39:03.023425 0 10 198 \N \N +128 100 t 2024-04-13 20:39:03.023425 0 10 200 \N \N +129 101 t 2024-04-13 20:39:03.023425 0 10 200 \N \N +130 102 t 2024-04-13 20:39:03.023425 0 10 201 \N \N +131 104 t 2024-04-13 20:39:03.023425 0 10 201 \N \N +132 105 t 2024-04-13 20:39:03.023425 0 10 202 \N \N +133 106 t 2024-04-13 20:39:03.023425 0 10 205 \N \N +134 107 t 2024-04-13 20:39:03.023425 0 10 208 \N \N +135 108 t 2024-04-13 20:39:03.023425 0 10 210 \N \N +136 110 t 2024-04-13 20:39:03.023425 0 1 212 \N \N +137 111 t 2024-04-13 20:39:03.023425 0 10 216 \N \N +138 111 t 2024-04-13 20:39:03.023425 0 20 215 \N \N +139 112 t 2024-04-13 20:39:03.023425 0 10 217 \N \N +140 116 t 2024-04-13 20:39:03.023425 0 10 222 \N \N +141 116 t 2024-04-13 20:39:03.023425 0 20 221 \N \N +142 117 t 2024-04-13 20:39:03.023425 0 10 223 \N \N +143 118 t 2024-04-13 20:39:03.023425 0 10 225 \N \N +144 118 t 2024-04-13 20:39:03.023425 0 20 224 \N \N +145 119 t 2024-04-13 20:39:03.023425 0 10 226 \N \N +146 120 t 2024-04-13 20:39:03.023425 0 10 229 \N \N +147 121 t 2024-04-13 20:39:03.023425 0 10 229 \N \N +148 122 t 2024-04-13 20:39:03.023425 0 10 230 \N \N +149 123 t 2024-04-13 20:39:03.023425 0 10 232 \N \N +150 123 t 2024-04-13 20:39:03.023425 0 20 231 \N \N +151 125 t 2024-04-13 20:39:03.023425 0 10 237 \N \N +152 125 t 2024-04-13 20:39:03.023425 0 20 235 \N \N +153 127 t 2024-04-13 20:39:03.023425 0 10 239 \N \N +154 133 t 2024-04-13 20:39:03.023425 0 10 248 \N \N +155 133 t 2024-04-13 20:39:03.023425 0 20 247 \N \N +156 135 t 2024-04-13 20:39:03.023425 0 10 231 \N \N +157 137 t 2024-04-13 20:39:03.023425 0 10 231 \N \N +158 139 t 2024-04-13 20:39:03.023425 0 10 231 \N \N +159 141 t 2024-04-13 20:39:03.023425 0 10 255 \N \N +160 141 t 2024-04-13 20:39:03.023425 0 20 254 \N \N +161 143 t 2024-04-13 20:39:03.023425 0 10 231 \N \N +162 144 t 2024-04-13 20:39:03.023425 0 10 265 \N \N +163 144 t 2024-04-13 20:39:03.023425 0 20 264 \N \N +164 145 t 2024-04-13 20:39:03.023425 0 10 267 \N \N +165 145 t 2024-04-13 20:39:03.023425 0 20 266 \N \N +166 146 t 2024-04-13 20:39:03.023425 0 10 269 \N \N +167 146 t 2024-04-13 20:39:03.023425 0 20 268 \N \N +168 147 t 2024-04-13 20:39:03.023425 0 10 270 \N \N +169 147 t 2024-04-13 20:39:03.023425 0 20 268 \N \N +170 148 t 2024-04-13 20:39:03.023425 0 10 271 \N \N +171 149 t 2024-04-13 20:39:03.023425 0 10 278 \N \N +172 149 t 2024-04-13 20:39:03.023425 0 20 277 \N \N +173 150 t 2024-04-13 20:39:03.023425 0 10 280 \N \N +174 150 t 2024-04-13 20:39:03.023425 0 20 279 \N \N +175 152 t 2024-04-13 20:39:03.023425 0 10 284 \N \N +176 152 t 2024-04-13 20:39:03.023425 0 20 283 \N \N +177 154 t 2024-04-13 20:39:03.023425 0 10 286 \N \N +178 154 t 2024-04-13 20:39:03.023425 0 20 285 \N \N +179 155 t 2024-04-13 20:39:03.023425 0 10 288 \N \N +180 155 t 2024-04-13 20:39:03.023425 0 20 287 \N \N +181 156 t 2024-04-13 20:39:08.573524 0 10 296 \N \N +182 156 t 2024-04-13 20:39:08.573524 0 20 297 \N \N +183 157 t 2024-04-13 20:39:08.573524 0 10 296 \N \N +184 157 t 2024-04-13 20:39:08.573524 0 20 297 \N \N +185 158 t 2024-04-13 20:39:08.573524 0 10 298 \N \N +186 158 t 2024-04-13 20:39:08.573524 0 20 300 \N \N +187 159 t 2024-04-13 20:39:08.573524 0 10 298 \N \N +188 159 t 2024-04-13 20:39:08.573524 0 20 300 \N \N +189 160 t 2024-04-13 20:39:08.573524 0 10 306 \N \N +190 160 t 2024-04-13 20:39:08.573524 0 20 307 \N \N +191 161 t 2024-04-13 20:39:08.573524 0 10 305 \N \N +192 161 t 2024-04-13 20:39:08.573524 0 20 307 \N \N +193 162 t 2024-04-13 20:39:08.573524 0 10 308 \N \N +194 163 t 2024-04-13 20:39:08.573524 0 10 309 \N \N +195 163 t 2024-04-13 20:39:08.573524 0 20 310 \N \N +196 164 t 2024-04-13 20:39:08.573524 0 10 311 \N \N +197 164 t 2024-04-13 20:39:08.573524 0 20 312 \N \N +198 165 t 2024-04-13 20:39:08.573524 0 10 313 \N \N +199 166 t 2024-04-13 20:39:10.340704 0 10 319 \N \N +200 166 t 2024-04-13 20:39:10.340704 0 20 320 \N \N +201 167 t 2024-04-13 20:39:10.340704 0 10 322 \N \N +202 167 t 2024-04-13 20:39:10.340704 0 20 323 \N \N +203 169 t 2024-04-13 20:39:10.936653 0 10 336 \N \N +204 169 t 2024-04-13 20:39:10.936653 0 20 335 \N \N +205 171 t 2024-04-13 20:39:10.936653 0 10 338 \N \N +206 171 t 2024-04-13 20:39:10.936653 0 20 339 \N \N +207 172 t 2024-04-13 20:39:10.936653 0 10 340 \N \N +208 174 t 2024-04-13 20:39:10.936653 0 10 342 \N \N +209 174 t 2024-04-13 20:39:10.936653 0 20 343 \N \N +210 176 t 2024-04-13 20:39:10.936653 0 10 345 \N \N +211 177 t 2024-04-13 20:39:10.936653 0 10 349 \N \N +212 177 t 2024-04-13 20:39:10.936653 0 20 346 \N \N +213 178 t 2024-04-13 20:39:10.936653 0 10 347 \N \N +214 178 t 2024-04-13 20:39:10.936653 0 20 346 \N \N +215 179 t 2024-04-13 20:39:10.936653 0 10 348 \N \N +216 179 t 2024-04-13 20:39:10.936653 0 20 346 \N \N +217 180 t 2024-04-13 20:39:10.936653 0 10 351 \N \N +218 181 t 2024-04-13 20:39:10.936653 0 10 352 \N \N +219 181 t 2024-04-13 20:39:10.936653 0 20 353 \N \N +220 182 t 2024-04-13 20:39:10.936653 0 1 355 \N \N +221 182 t 2024-04-13 20:39:10.936653 0 2 354 \N \N +222 183 t 2024-04-13 20:39:10.936653 0 1 357 \N \N +223 183 t 2024-04-13 20:39:10.936653 0 2 356 \N \N +224 184 t 2024-04-13 20:39:10.936653 0 1 359 \N \N +225 184 t 2024-04-13 20:39:10.936653 0 2 358 \N \N +226 185 t 2024-04-13 20:39:10.936653 0 1 361 \N \N +227 185 t 2024-04-13 20:39:10.936653 0 2 360 \N \N +228 186 t 2024-04-13 20:39:10.936653 0 1 363 \N \N +229 186 t 2024-04-13 20:39:10.936653 0 2 362 \N \N +230 195 t 2024-04-13 20:39:10.936653 0 1 366 \N \N +231 195 t 2024-04-13 20:39:10.936653 0 2 365 \N \N +232 196 t 2024-04-13 20:39:10.936653 0 10 366 \N \N +233 196 t 2024-04-13 20:39:10.936653 0 20 365 \N \N +234 197 t 2024-04-13 20:39:10.936653 0 1 371 \N \N +235 197 t 2024-04-13 20:39:10.936653 0 2 370 \N \N +236 202 t 2024-04-13 20:39:10.936653 0 1 385 \N \N +237 203 t 2024-04-13 20:39:10.936653 0 10 387 \N \N +238 203 t 2024-04-13 20:39:10.936653 0 20 386 \N \N +239 204 t 2024-04-13 20:39:10.936653 0 10 393 \N \N +240 204 t 2024-04-13 20:39:10.936653 0 20 394 \N \N +241 204 t 2024-04-13 20:39:10.936653 0 30 395 \N \N +242 204 t 2024-04-13 20:39:10.936653 0 40 396 \N \N +243 205 t 2024-04-13 20:39:10.936653 0 10 397 \N \N +244 205 t 2024-04-13 20:39:10.936653 0 20 398 \N \N +245 205 t 2024-04-13 20:39:10.936653 0 30 399 \N \N +246 205 t 2024-04-13 20:39:10.936653 0 40 400 \N \N +247 206 t 2024-04-13 20:39:10.936653 0 10 401 \N \N +248 206 t 2024-04-13 20:39:10.936653 0 20 402 \N \N +249 206 t 2024-04-13 20:39:10.936653 0 30 403 \N \N +250 206 t 2024-04-13 20:39:10.936653 0 40 404 \N \N +251 207 t 2024-04-13 20:39:10.936653 0 10 405 \N \N +252 207 t 2024-04-13 20:39:10.936653 0 20 406 \N \N +253 207 t 2024-04-13 20:39:10.936653 0 30 407 \N \N +254 207 t 2024-04-13 20:39:10.936653 0 40 408 \N \N +255 208 t 2024-04-13 20:39:10.936653 0 10 409 \N \N +256 209 t 2024-04-13 20:39:10.936653 0 10 410 \N \N +257 209 t 2024-04-13 20:39:10.936653 0 20 411 \N \N +258 209 t 2024-04-13 20:39:10.936653 0 30 412 \N \N +259 209 t 2024-04-13 20:39:10.936653 0 40 413 \N \N +260 210 t 2024-04-13 20:39:10.936653 0 10 414 \N \N +261 210 t 2024-04-13 20:39:10.936653 0 20 415 \N \N +262 210 t 2024-04-13 20:39:10.936653 0 30 416 \N \N +263 210 t 2024-04-13 20:39:10.936653 0 40 417 \N \N +264 212 t 2024-04-13 20:39:14.878373 0 10 419 \N \N +265 212 t 2024-04-13 20:39:14.878373 0 20 418 \N \N +266 213 t 2024-04-13 20:39:14.878373 0 10 419 \N \N +267 213 t 2024-04-13 20:39:14.878373 0 20 418 \N \N +268 214 t 2024-04-13 20:39:14.878373 0 10 419 \N \N +269 214 t 2024-04-13 20:39:14.878373 0 20 418 \N \N +270 215 t 2024-04-13 20:39:14.878373 0 10 419 \N \N +271 215 t 2024-04-13 20:39:14.878373 0 20 418 \N \N +272 218 t 2024-04-13 20:39:14.878373 0 10 431 \N \N +273 218 t 2024-04-13 20:39:14.878373 0 20 430 \N \N +274 222 t 2024-04-13 20:39:14.878373 0 10 434 \N \N +275 222 t 2024-04-13 20:39:14.878373 0 20 433 \N \N +276 226 t 2024-04-13 20:39:16.958214 0 10 466 \N \N +277 226 t 2024-04-13 20:39:16.958214 0 20 465 \N \N +278 227 t 2024-04-13 20:39:16.958214 0 10 466 \N \N +279 227 t 2024-04-13 20:39:16.958214 0 20 465 \N \N +280 228 t 2024-04-13 20:39:16.958214 0 10 466 \N \N +281 228 t 2024-04-13 20:39:16.958214 0 20 465 \N \N +282 229 t 2024-04-13 20:39:16.958214 0 10 466 \N \N +283 229 t 2024-04-13 20:39:16.958214 0 20 465 \N \N +284 231 t 2024-04-13 20:39:16.958214 0 10 470 \N \N +285 231 t 2024-04-13 20:39:16.958214 0 20 469 \N \N +286 232 t 2024-04-13 20:39:16.958214 0 10 473 \N \N +287 232 t 2024-04-13 20:39:16.958214 0 20 472 \N \N +288 237 t 2024-04-13 20:39:16.958214 0 10 481 \N \N +289 238 t 2024-04-13 20:39:16.958214 0 10 484 \N \N +290 238 t 2024-04-13 20:39:16.958214 0 20 485 \N \N +291 238 t 2024-04-13 20:39:16.958214 0 30 486 \N \N +292 239 t 2024-04-13 20:39:16.958214 0 10 487 \N \N +293 239 t 2024-04-13 20:39:16.958214 0 20 488 \N \N +294 239 t 2024-04-13 20:39:16.958214 0 30 489 \N \N +295 240 t 2024-04-13 20:39:16.958214 0 10 490 \N \N +296 240 t 2024-04-13 20:39:16.958214 0 20 491 \N \N +297 240 t 2024-04-13 20:39:16.958214 0 30 492 \N \N +298 241 t 2024-04-13 20:39:16.958214 0 10 493 \N \N +299 241 t 2024-04-13 20:39:16.958214 0 20 494 \N \N +300 241 t 2024-04-13 20:39:16.958214 0 30 495 \N \N +301 242 t 2024-04-13 20:39:16.958214 0 10 496 \N \N +302 242 t 2024-04-13 20:39:16.958214 0 20 497 \N \N +303 242 t 2024-04-13 20:39:16.958214 0 30 498 \N \N +304 243 t 2024-04-13 20:39:16.958214 0 1 499 \N \N +305 244 t 2024-04-13 20:39:16.958214 0 10 501 \N \N +306 244 t 2024-04-13 20:39:16.958214 0 20 365 \N \N +307 252 t 2024-04-13 20:39:19.14446 0 10 508 \N \N +308 252 t 2024-04-13 20:39:19.14446 0 20 507 \N \N +309 253 t 2024-04-13 20:39:19.14446 0 10 508 \N \N +310 253 t 2024-04-13 20:39:19.14446 0 20 507 \N \N +311 254 t 2024-04-13 20:39:19.14446 0 10 508 \N \N +312 254 t 2024-04-13 20:39:19.14446 0 20 507 \N \N +313 256 t 2024-04-13 20:39:19.14446 0 10 512 \N \N +314 256 t 2024-04-13 20:39:19.14446 0 20 511 \N \N +315 259 t 2024-04-13 20:39:19.14446 0 1 516 \N \N +316 260 t 2024-04-13 20:39:19.14446 0 10 518 \N \N +317 261 t 2024-04-13 20:39:19.14446 0 10 521 \N \N +318 261 t 2024-04-13 20:39:19.14446 0 20 522 \N \N +319 261 t 2024-04-13 20:39:19.14446 0 30 523 \N \N +320 262 t 2024-04-13 20:39:19.14446 0 10 524 \N \N +321 262 t 2024-04-13 20:39:19.14446 0 20 525 \N \N +322 262 t 2024-04-13 20:39:19.14446 0 30 526 \N \N +323 263 t 2024-04-13 20:39:19.14446 0 10 527 \N \N +324 263 t 2024-04-13 20:39:19.14446 0 20 528 \N \N +325 263 t 2024-04-13 20:39:19.14446 0 30 529 \N \N +326 264 t 2024-04-13 20:39:19.14446 0 10 530 \N \N +327 265 t 2024-04-13 20:39:19.14446 0 10 531 \N \N +328 266 t 2024-04-13 20:39:19.14446 0 10 532 \N \N +329 266 t 2024-04-13 20:39:19.14446 0 20 533 \N \N +330 266 t 2024-04-13 20:39:19.14446 0 30 534 \N \N +331 267 t 2024-04-13 20:39:19.14446 0 10 535 \N \N +332 267 t 2024-04-13 20:39:19.14446 0 20 536 \N \N +333 267 t 2024-04-13 20:39:19.14446 0 30 537 \N \N +334 268 t 2024-04-13 20:39:19.14446 0 10 538 \N \N +335 268 t 2024-04-13 20:39:19.14446 0 20 539 \N \N +336 268 t 2024-04-13 20:39:19.14446 0 30 540 \N \N +337 269 t 2024-04-13 20:39:19.14446 0 10 541 \N \N +338 270 t 2024-04-13 20:39:19.14446 0 10 542 \N \N +339 271 t 2024-04-13 20:39:19.14446 0 10 543 \N \N +340 271 t 2024-04-13 20:39:19.14446 0 20 544 \N \N +341 271 t 2024-04-13 20:39:19.14446 0 30 545 \N \N +342 272 t 2024-04-13 20:39:19.14446 0 10 546 \N \N +343 274 t 2024-04-13 20:39:19.14446 0 10 547 \N \N +344 275 t 2024-04-13 20:39:19.14446 0 10 548 \N \N +345 275 t 2024-04-13 20:39:19.14446 0 20 549 \N \N +346 275 t 2024-04-13 20:39:19.14446 0 30 550 \N \N +347 276 t 2024-04-13 20:39:19.14446 0 10 551 \N \N +348 276 t 2024-04-13 20:39:19.14446 0 20 552 \N \N +349 276 t 2024-04-13 20:39:19.14446 0 30 553 \N \N +350 279 t 2024-04-13 20:39:19.14446 0 10 555 \N \N +351 279 t 2024-04-13 20:39:19.14446 0 20 365 \N \N +352 280 t 2024-04-13 20:39:19.14446 0 10 558 \N \N +353 280 t 2024-04-13 20:39:19.14446 0 20 300 \N \N +354 282 t 2024-04-13 20:39:21.814652 0 10 562 \N \N +355 282 t 2024-04-13 20:39:21.814652 0 20 563 \N \N +356 283 t 2024-04-13 20:39:21.814652 0 10 564 \N \N +357 289 t 2024-04-13 20:39:21.814652 0 10 571 \N \N +358 289 t 2024-04-13 20:39:21.814652 0 20 570 \N \N +359 296 t 2024-04-13 20:39:21.814652 0 10 577 \N \N +360 297 t 2024-04-13 20:39:21.814652 0 10 578 \N \N +361 297 t 2024-04-13 20:39:21.814652 0 20 579 \N \N +362 298 t 2024-04-13 20:39:21.814652 0 10 580 \N \N +363 298 t 2024-04-13 20:39:21.814652 0 20 581 \N \N +364 307 t 2024-04-13 20:39:21.814652 0 10 594 \N \N +365 307 t 2024-04-13 20:39:21.814652 0 20 595 \N \N +\. + + +-- +-- Data for Name: ir_action_keyword; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_action_keyword (id, action, create_date, create_uid, keyword, model, write_date, write_uid) FROM stdin; +1 1 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,3 \N \N +2 3 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,4 \N \N +3 5 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,5 \N \N +4 6 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,6 \N \N +5 7 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,7 \N \N +6 8 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,8 \N \N +7 9 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,9 \N \N +8 10 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,11 \N \N +9 11 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,12 \N \N +10 12 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,13 \N \N +11 13 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,14 \N \N +12 14 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,15 \N \N +13 15 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,17 \N \N +14 16 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,18 \N \N +15 17 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,19 \N \N +16 18 2024-04-13 20:27:30.723827 0 form_relate ir.model,-1 \N \N +17 19 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,20 \N \N +18 20 2024-04-13 20:27:30.723827 0 form_relate ir.model.field,-1 \N \N +19 22 2024-04-13 20:27:30.723827 0 form_print ir.model,-1 \N \N +20 23 2024-04-13 20:27:30.723827 0 form_print ir.model,-1 \N \N +21 24 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,21 \N \N +22 25 2024-04-13 20:27:30.723827 0 form_relate ir.model.button,-1 \N \N +23 26 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,22 \N \N +24 27 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,23 \N \N +25 28 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,25 \N \N +26 29 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,26 \N \N +27 30 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,27 \N \N +28 31 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,28 \N \N +29 32 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,29 \N \N +30 33 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,31 \N \N +31 34 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,33 \N \N +32 36 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,34 \N \N +33 37 2024-04-13 20:27:30.723827 0 form_relate ir.action.report,-1 \N \N +34 39 2024-04-13 20:27:30.723827 0 form_action ir.action.report,-1 \N \N +35 39 2024-04-13 20:27:30.723827 0 form_action ir.ui.view,-1 \N \N +36 39 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,35 \N \N +37 40 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,36 \N \N +38 41 2024-04-13 20:27:30.723827 0 form_action ir.action.report,-1 \N \N +39 41 2024-04-13 20:27:30.723827 0 form_action ir.ui.view,-1 \N \N +40 41 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,37 \N \N +41 42 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,38 \N \N +42 43 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,39 \N \N +43 44 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,40 \N \N +44 45 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,42 \N \N +45 46 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,43 \N \N +46 47 2024-04-13 20:27:30.723827 0 form_action ir.module.config_wizard.item,-1 \N \N +47 48 2024-04-13 20:27:30.723827 0 form_action ir.module,-1 \N \N +48 48 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,44 \N \N +49 50 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,45 \N \N +50 51 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,46 \N \N +51 52 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,47 \N \N +52 53 2024-04-13 20:27:30.723827 0 form_relate \N \N \N +53 54 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,48 \N \N +54 55 2024-04-13 20:27:30.723827 0 tree_open ir.ui.menu,49 \N \N +55 56 2024-04-13 20:27:35.518366 0 tree_open ir.ui.menu,51 \N \N +56 57 2024-04-13 20:27:35.518366 0 tree_open ir.ui.menu,52 \N \N +57 60 2024-04-13 20:39:00.134374 0 tree_open ir.ui.menu,54 \N \N +58 61 2024-04-13 20:39:00.134374 0 tree_open ir.ui.menu,55 \N \N +59 62 2024-04-13 20:39:00.134374 0 tree_open ir.ui.menu,56 \N \N +60 63 2024-04-13 20:39:00.134374 0 tree_open ir.ui.menu,57 \N \N +61 64 2024-04-13 20:39:00.134374 0 tree_open country.region,-1 \N \N +62 65 2024-04-13 20:39:00.134374 0 form_relate country.country,-1 \N \N +63 66 2024-04-13 20:39:00.792624 0 tree_open ir.ui.menu,59 \N \N +64 67 2024-04-13 20:39:00.792624 0 tree_open ir.ui.menu,60 \N \N +65 68 2024-04-13 20:39:01.136154 0 tree_open ir.ui.menu,63 \N \N +66 69 2024-04-13 20:39:01.136154 0 tree_open party.category,-1 \N \N +67 70 2024-04-13 20:39:01.136154 0 form_print party.party,-1 \N \N +68 71 2024-04-13 20:39:01.136154 0 form_action party.party,-1 \N \N +69 72 2024-04-13 20:39:01.136154 0 form_action party.party,-1 \N \N +70 73 2024-04-13 20:39:01.136154 0 form_action party.party,-1 \N \N +71 74 2024-04-13 20:39:01.136154 0 tree_open ir.ui.menu,64 \N \N +72 75 2024-04-13 20:39:01.136154 0 tree_open ir.ui.menu,65 \N \N +73 76 2024-04-13 20:39:01.136154 0 tree_open ir.ui.menu,66 \N \N +74 77 2024-04-13 20:39:01.136154 0 tree_open ir.ui.menu,67 \N \N +75 78 2024-04-13 20:39:01.136154 0 tree_open ir.ui.menu,68 \N \N +76 79 2024-04-13 20:39:01.136154 0 tree_open ir.ui.menu,69 \N \N +77 80 2024-04-13 20:39:01.136154 0 tree_open ir.ui.menu,70 \N \N +78 81 2024-04-13 20:39:02.298155 0 tree_open ir.ui.menu,72 \N \N +79 83 2024-04-13 20:39:02.298155 0 tree_open ir.ui.menu,73 \N \N +80 84 2024-04-13 20:39:02.298155 0 form_relate company.employee,-1 \N \N +81 85 2024-04-13 20:39:02.298155 0 form_print party.party,-1 \N \N +82 86 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,81 \N \N +83 87 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,82 \N \N +84 88 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,83 \N \N +85 89 2024-04-13 20:39:03.023425 0 form_print account.account.type,-1 \N \N +86 90 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,84 \N \N +87 91 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,85 \N \N +88 92 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,86 \N \N +89 93 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,87 \N \N +90 94 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,88 \N \N +91 96 2024-04-13 20:39:03.023425 0 tree_open account.account.type,-1 \N \N +92 97 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,89 \N \N +93 98 2024-04-13 20:39:03.023425 0 form_print account.general_ledger.account,-1 \N \N +94 99 2024-04-13 20:39:03.023425 0 form_print account.general_ledger.account,-1 \N \N +95 100 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,90 \N \N +96 102 2024-04-13 20:39:03.023425 0 tree_open account.general_ledger.account,-1 \N \N +97 102 2024-04-13 20:39:03.023425 0 form_relate account.account,-1 \N \N +98 103 2024-04-13 20:39:03.023425 0 tree_open account.general_ledger.account.party,-1 \N \N +99 104 2024-04-13 20:39:03.023425 0 form_relate party.party,-1 \N \N +100 105 2024-04-13 20:39:03.023425 0 tree_open account.general_ledger.account,-1 \N \N +101 105 2024-04-13 20:39:03.023425 0 form_relate account.account,-1 \N \N +102 106 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,91 \N \N +103 107 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,92 \N \N +104 108 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,93 \N \N +105 109 2024-04-13 20:39:03.023425 0 form_print account.aged_balance,-1 \N \N +106 110 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,94 \N \N +107 111 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,96 \N \N +108 112 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,97 \N \N +109 114 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,98 \N \N +110 115 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,99 \N \N +111 116 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,100 \N \N +112 117 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,101 \N \N +113 118 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,103 \N \N +114 119 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,104 \N \N +115 120 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,105 \N \N +116 121 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,106 \N \N +117 122 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,107 \N \N +118 123 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,108 \N \N +119 124 2024-04-13 20:39:03.023425 0 form_relate account.move.reconciliation,-1 \N \N +120 126 2024-04-13 20:39:03.023425 0 tree_open account.account,-1 \N \N +121 126 2024-04-13 20:39:03.023425 0 form_relate account.account,-1 \N \N +122 127 2024-04-13 20:39:03.023425 0 form_relate party.party,-1 \N \N +123 128 2024-04-13 20:39:03.023425 0 tree_open account.journal.period,-1 \N \N +124 128 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,109 \N \N +125 129 2024-04-13 20:39:03.023425 0 form_action account.move.line,-1 \N \N +126 129 2024-04-13 20:39:03.023425 0 form_action account.general_ledger.line,-1 \N \N +127 130 2024-04-13 20:39:03.023425 0 form_action account.move.line,-1 \N \N +128 130 2024-04-13 20:39:03.023425 0 form_action account.general_ledger.line,-1 \N \N +129 131 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,110 \N \N +130 132 2024-04-13 20:39:03.023425 0 form_action account.move,-1 \N \N +131 133 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,111 \N \N +132 134 2024-04-13 20:39:03.023425 0 form_action account.move.line,-1 \N \N +133 136 2024-04-13 20:39:03.023425 0 form_action account.move.line,-1 \N \N +134 138 2024-04-13 20:39:03.023425 0 form_action account.move.line,-1 \N \N +135 140 2024-04-13 20:39:03.023425 0 form_print account.move,-1 \N \N +136 141 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,112 \N \N +137 142 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,113 \N \N +138 144 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,115 \N \N +139 145 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,116 \N \N +140 146 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,117 \N \N +141 147 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,118 \N \N +142 148 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,119 \N \N +143 149 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,120 \N \N +144 150 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,121 \N \N +145 151 2024-04-13 20:39:03.023425 0 form_action account.tax,-1 \N \N +146 151 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,122 \N \N +147 153 2024-04-13 20:39:03.023425 0 tree_open account.tax.code,-1 \N \N +148 154 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,123 \N \N +149 155 2024-04-13 20:39:03.023425 0 tree_open ir.ui.menu,124 \N \N +150 156 2024-04-13 20:39:08.573524 0 tree_open ir.ui.menu,128 \N \N +151 157 2024-04-13 20:39:08.573524 0 tree_open product.category,-1 \N \N +152 158 2024-04-13 20:39:08.573524 0 tree_open ir.ui.menu,129 \N \N +153 159 2024-04-13 20:39:08.573524 0 form_relate product.template,-1 \N \N +154 160 2024-04-13 20:39:08.573524 0 tree_open ir.ui.menu,130 \N \N +155 161 2024-04-13 20:39:08.573524 0 tree_open ir.ui.menu,131 \N \N +156 163 2024-04-13 20:39:08.573524 0 tree_open ir.ui.menu,132 \N \N +157 164 2024-04-13 20:39:08.573524 0 tree_open ir.ui.menu,133 \N \N +158 165 2024-04-13 20:39:08.573524 0 tree_open ir.ui.menu,134 \N \N +159 166 2024-04-13 20:39:10.340704 0 tree_open ir.ui.menu,135 \N \N +160 167 2024-04-13 20:39:10.340704 0 tree_open ir.ui.menu,136 \N \N +161 168 2024-04-13 20:39:10.936653 0 form_action product.product,-1 \N \N +162 168 2024-04-13 20:39:10.936653 0 form_action product.template,-1 \N \N +163 169 2024-04-13 20:39:10.936653 0 form_relate product.template,-1 \N \N +164 169 2024-04-13 20:39:10.936653 0 form_relate product.product,-1 \N \N +165 170 2024-04-13 20:39:10.936653 0 form_action product.product,-1 \N \N +166 170 2024-04-13 20:39:10.936653 0 form_action product.template,-1 \N \N +167 171 2024-04-13 20:39:10.936653 0 form_relate product.product,-1 \N \N +168 171 2024-04-13 20:39:10.936653 0 form_relate product.template,-1 \N \N +169 172 2024-04-13 20:39:10.936653 0 form_relate product.product,-1 \N \N +170 172 2024-04-13 20:39:10.936653 0 form_relate product.template,-1 \N \N +171 173 2024-04-13 20:39:10.936653 0 form_relate stock.shipment.in.return,-1 \N \N +172 173 2024-04-13 20:39:10.936653 0 form_relate stock.shipment.out,-1 \N \N +173 173 2024-04-13 20:39:10.936653 0 form_relate stock.shipment.internal,-1 \N \N +174 174 2024-04-13 20:39:10.936653 0 form_relate product.product,-1 \N \N +175 174 2024-04-13 20:39:10.936653 0 form_relate product.template,-1 \N \N +176 175 2024-04-13 20:39:10.936653 0 tree_open stock.product_quantities_warehouse,-1 \N \N +177 176 2024-04-13 20:39:10.936653 0 form_relate product.product,-1 \N \N +178 176 2024-04-13 20:39:10.936653 0 form_relate product.template,-1 \N \N +179 177 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,140 \N \N +180 178 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,141 \N \N +181 179 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,142 \N \N +182 179 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,143 \N \N +183 180 2024-04-13 20:39:10.936653 0 tree_open stock.location,-1 \N \N +184 180 2024-04-13 20:39:10.936653 0 form_relate stock.location,-1 \N \N +185 181 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,144 \N \N +186 182 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,146 \N \N +187 183 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,147 \N \N +188 184 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,148 \N \N +189 185 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,149 \N \N +190 186 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,150 \N \N +191 187 2024-04-13 20:39:10.936653 0 form_print stock.shipment.out,-1 \N \N +192 188 2024-04-13 20:39:10.936653 0 form_print stock.shipment.out,-1 \N \N +193 189 2024-04-13 20:39:10.936653 0 form_print stock.shipment.in,-1 \N \N +194 190 2024-04-13 20:39:10.936653 0 form_print stock.shipment.out.return,-1 \N \N +195 191 2024-04-13 20:39:10.936653 0 form_print stock.shipment.internal,-1 \N \N +196 195 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,151 \N \N +197 196 2024-04-13 20:39:10.936653 0 form_relate product.product,-1 \N \N +198 196 2024-04-13 20:39:10.936653 0 form_relate product.template,-1 \N \N +199 197 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,152 \N \N +200 198 2024-04-13 20:39:10.936653 0 form_relate stock.inventory,-1 \N \N +201 200 2024-04-13 20:39:10.936653 0 form_relate party.party,-1 \N \N +202 201 2024-04-13 20:39:10.936653 0 form_relate party.party,-1 \N \N +203 202 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,153 \N \N +204 203 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,154 \N \N +205 204 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,155 \N \N +206 205 2024-04-13 20:39:10.936653 0 tree_open stock.reporting.margin.main,-1 \N \N +207 206 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,155 \N \N +208 207 2024-04-13 20:39:10.936653 0 tree_open stock.reporting.margin.product,-1 \N \N +209 208 2024-04-13 20:39:10.936653 0 tree_open ir.ui.menu,155 \N \N +210 209 2024-04-13 20:39:10.936653 0 tree_open stock.reporting.margin.category.tree,-1 \N \N +211 210 2024-04-13 20:39:10.936653 0 tree_open stock.reporting.margin.category,-1 \N \N +212 213 2024-04-13 20:39:14.878373 0 tree_open ir.ui.menu,157 \N \N +213 214 2024-04-13 20:39:14.878373 0 tree_open ir.ui.menu,158 \N \N +214 215 2024-04-13 20:39:14.878373 0 form_relate party.party,-1 \N \N +215 216 2024-04-13 20:39:14.878373 0 form_print account.invoice,-1 \N \N +216 217 2024-04-13 20:39:14.878373 0 form_print account.invoice,-1 \N \N +217 218 2024-04-13 20:39:14.878373 0 tree_open ir.ui.menu,159 \N \N +218 219 2024-04-13 20:39:14.878373 0 form_action account.invoice,-1 \N \N +219 222 2024-04-13 20:39:14.878373 0 tree_open ir.ui.menu,161 \N \N +220 223 2024-04-13 20:39:14.878373 0 form_action account.invoice.payment_term,-1 \N \N +221 223 2024-04-13 20:39:14.878373 0 tree_open ir.ui.menu,162 \N \N +222 226 2024-04-13 20:39:16.958214 0 tree_open ir.ui.menu,165 \N \N +223 227 2024-04-13 20:39:16.958214 0 form_relate account.invoice,-1 \N \N +224 228 2024-04-13 20:39:16.958214 0 form_relate party.party,-1 \N \N +225 229 2024-04-13 20:39:16.958214 0 form_relate stock.shipment.in,-1 \N \N +226 229 2024-04-13 20:39:16.958214 0 form_relate stock.shipment.in.return,-1 \N \N +227 230 2024-04-13 20:39:16.958214 0 form_print purchase.purchase,-1 \N \N +228 231 2024-04-13 20:39:16.958214 0 form_relate purchase.purchase,-1 \N \N +229 231 2024-04-13 20:39:16.958214 0 form_relate product.product,-1 \N \N +230 231 2024-04-13 20:39:16.958214 0 form_relate product.template,-1 \N \N +231 231 2024-04-13 20:39:16.958214 0 form_relate party.party,-1 \N \N +232 232 2024-04-13 20:39:16.958214 0 tree_open ir.ui.menu,166 \N \N +233 233 2024-04-13 20:39:16.958214 0 form_relate purchase.product_supplier,-1 \N \N +234 234 2024-04-13 20:39:16.958214 0 form_action purchase.purchase,-1 \N \N +235 235 2024-04-13 20:39:16.958214 0 tree_open ir.ui.menu,167 \N \N +236 237 2024-04-13 20:39:16.958214 0 tree_open ir.ui.menu,168 \N \N +237 238 2024-04-13 20:39:16.958214 0 tree_open purchase.reporting.main,-1 \N \N +238 239 2024-04-13 20:39:16.958214 0 tree_open ir.ui.menu,168 \N \N +239 240 2024-04-13 20:39:16.958214 0 tree_open purchase.reporting.supplier,-1 \N \N +240 241 2024-04-13 20:39:16.958214 0 tree_open purchase.reporting.supplier,-1 \N \N +241 242 2024-04-13 20:39:16.958214 0 tree_open purchase.reporting.product,-1 \N \N +242 243 2024-04-13 20:39:16.958214 0 tree_open ir.ui.menu,170 \N \N +243 244 2024-04-13 20:39:16.958214 0 form_relate purchase.purchase,-1 \N \N +244 245 2024-04-13 20:39:16.958214 0 form_relate purchase.purchase,-1 \N \N +245 246 2024-04-13 20:39:16.958214 0 form_relate purchase.purchase,-1 \N \N +246 247 2024-04-13 20:39:16.958214 0 form_relate purchase.purchase,-1 \N \N +247 250 2024-04-13 20:39:19.14446 0 form_relate sale.sale,-1 \N \N +248 251 2024-04-13 20:39:19.14446 0 form_relate sale.sale,-1 \N \N +249 252 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,172 \N \N +250 253 2024-04-13 20:39:19.14446 0 form_relate party.party,-1 \N \N +251 254 2024-04-13 20:39:19.14446 0 form_relate account.invoice,-1 \N \N +252 254 2024-04-13 20:39:19.14446 0 form_relate stock.shipment.out,-1 \N \N +253 254 2024-04-13 20:39:19.14446 0 form_relate stock.shipment.out.return,-1 \N \N +254 255 2024-04-13 20:39:19.14446 0 form_print sale.sale,-1 \N \N +255 256 2024-04-13 20:39:19.14446 0 form_relate sale.sale,-1 \N \N +256 256 2024-04-13 20:39:19.14446 0 form_relate product.product,-1 \N \N +257 256 2024-04-13 20:39:19.14446 0 form_relate product.template,-1 \N \N +258 256 2024-04-13 20:39:19.14446 0 form_relate party.party,-1 \N \N +259 257 2024-04-13 20:39:19.14446 0 form_action sale.sale,-1 \N \N +260 259 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,174 \N \N +261 260 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,176 \N \N +262 261 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.main,-1 \N \N +263 262 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,176 \N \N +264 262 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.customer.category.tree,-1 \N \N +265 263 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.customer,-1 \N \N +266 264 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,176 \N \N +267 265 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.customer.category.tree,-1 \N \N +268 266 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.customer.category,-1 \N \N +269 267 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,176 \N \N +270 267 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.product.category.tree,-1 \N \N +271 268 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.product,-1 \N \N +272 269 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,176 \N \N +273 270 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.product.category.tree,-1 \N \N +274 271 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.product.category,-1 \N \N +275 272 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,176 \N \N +276 273 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.region.tree,-1 \N \N +277 277 2024-04-13 20:39:19.14446 0 tree_open sale.reporting.country.tree,-1 \N \N +278 278 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,177 \N \N +279 279 2024-04-13 20:39:19.14446 0 form_relate sale.sale,-1 \N \N +280 280 2024-04-13 20:39:19.14446 0 tree_open ir.ui.menu,178 \N \N +281 281 2024-04-13 20:39:19.14446 0 form_relate sale.sale,-1 \N \N +282 282 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,180 \N \N +283 283 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,181 \N \N +284 284 2024-04-13 20:39:21.814652 0 form_print optical_equipment.equipment,-1 \N \N +285 285 2024-04-13 20:39:21.814652 0 form_print optical_equipment.equipment,-1 \N \N +286 286 2024-04-13 20:39:21.814652 0 form_action optical_equipment.equipment,-1 \N \N +287 287 2024-04-13 20:39:21.814652 0 form_print optical_equipment.maintenance,-1 \N \N +288 288 2024-04-13 20:39:21.814652 0 form_print optical_equipment_maintenance.service,-1 \N \N +289 290 2024-04-13 20:39:21.814652 0 form_action optical_equipment_maintenance.service,-1 \N \N +290 291 2024-04-13 20:39:21.814652 0 form_print optical_equipment.contract,-1 \N \N +291 292 2024-04-13 20:39:21.814652 0 form_print optical_equipment.contract,-1 \N \N +292 289 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,183 \N \N +293 293 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,185 \N \N +294 294 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,186 \N \N +295 295 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,187 \N \N +296 296 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,189 \N \N +297 299 2024-04-13 20:39:21.814652 0 form_print optical_equipment_maintenance.service,-1 \N \N +298 300 2024-04-13 20:39:21.814652 0 form_print optical_equipment_maintenance.service,-1 \N \N +299 301 2024-04-13 20:39:21.814652 0 form_print optical_equipment.maintenance,-1 \N \N +300 302 2024-04-13 20:39:21.814652 0 form_print optical_equipment_maintenance.service,-1 \N \N +301 303 2024-04-13 20:39:21.814652 0 form_print optical_equipment_maintenance.service,-1 \N \N +302 304 2024-04-13 20:39:21.814652 0 form_action optical_equipment_maintenance.service,-1 \N \N +303 297 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,190 \N \N +304 298 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,191 \N \N +305 305 2024-04-13 20:39:21.814652 0 form_print stock.shipment.out,-1 \N \N +306 306 2024-04-13 20:39:21.814652 0 form_print stock.shipment.out,-1 \N \N +307 307 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,193 \N \N +308 308 2024-04-13 20:39:21.814652 0 form_print purchase.purchase,-1 \N \N +309 310 2024-04-13 20:39:21.814652 0 form_print sale.sale,-1 \N \N +310 311 2024-04-13 20:39:21.814652 0 form_print sale.sale,-1 \N \N +311 314 2024-04-13 20:39:21.814652 0 tree_open ir.ui.menu,194 \N \N +\. + + +-- +-- Data for Name: ir_action_report; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_action_report (id, action, create_date, create_uid, direct_print, extension, model, module, record_name, report, report_content_custom, report_name, single, template_extension, translatable, write_date, write_uid) FROM stdin; +21 21 2024-04-13 20:27:30.723827 0 f ir.model ir \N \N \N ir.model.graph f odt t 2024-04-13 20:27:30.723827 0 +187 187 2024-04-13 20:39:10.936653 0 f stock.shipment.out stock \N stock/delivery_note.fodt \N stock.shipment.out.delivery_note f odt t 2024-04-13 20:39:10.936653 0 +23 23 2024-04-13 20:27:30.723827 0 f ir.model ir \N \N \N ir.model.workflow_graph f odt t 2024-04-13 20:27:30.723827 0 +188 188 2024-04-13 20:39:10.936653 0 f stock.shipment.out stock \N stock/picking_list.fodt \N stock.shipment.out.picking_list f odt t 2024-04-13 20:39:10.936653 0 +59 59 2024-04-13 20:27:35.518366 0 f res.user res \N res/email_reset_password.html \N res.user.email_reset_password f html t 2024-04-13 20:27:35.518366 0 +70 70 2024-04-13 20:39:01.136154 0 f party.party party \N party/label.fodt \N party.label f odt t 2024-04-13 20:39:01.136154 0 +85 85 2024-04-13 20:39:02.298155 0 f party.party company \N company/letter.fodt \N party.letter f odt t 2024-04-13 20:39:02.298155 0 +89 89 2024-04-13 20:39:03.023425 0 f account.account.type account \N account/type_statement.fodt \N account.account.type.statement f odt t 2024-04-13 20:39:03.023425 0 +98 98 2024-04-13 20:39:03.023425 0 f account.general_ledger.account account \N account/general_ledger.fodt \N account.general_ledger f odt t 2024-04-13 20:39:03.023425 0 +99 99 2024-04-13 20:39:03.023425 0 f account.general_ledger.account account \N account/trial_balance.fodt \N account.trial_balance f odt t 2024-04-13 20:39:03.023425 0 +109 109 2024-04-13 20:39:03.023425 0 f account.aged_balance account \N account/aged_balance.fodt \N account.aged_balance f odt t 2024-04-13 20:39:03.023425 0 +140 140 2024-04-13 20:39:03.023425 0 f account.move account \N account/general_journal.fodt \N account.move.general_journal f odt t 2024-04-13 20:39:03.023425 0 +189 189 2024-04-13 20:39:10.936653 0 f stock.shipment.in stock \N stock/supplier_restocking_list.fodt \N stock.shipment.in.restocking_list f odt t 2024-04-13 20:39:10.936653 0 +190 190 2024-04-13 20:39:10.936653 0 f stock.shipment.out.return stock \N stock/customer_return_restocking_list.fodt \N stock.shipment.out.return.restocking_list f odt t 2024-04-13 20:39:10.936653 0 +191 191 2024-04-13 20:39:10.936653 0 f stock.shipment.internal stock \N stock/internal_shipment.fodt \N stock.shipment.internal.report f odt t 2024-04-13 20:39:10.936653 0 +217 217 2024-04-13 20:39:14.878373 0 f account.invoice account_invoice \N account_invoice/invoice.fodt \N account.invoice t odt t 2024-04-13 20:39:14.878373 0 +284 284 2024-04-13 20:39:21.814652 0 f optical_equipment.equipment optical_equipment \N optical_equipment/report/CV_Equipment.fodt \N optical_equipment.equipment t odt t 2024-04-13 20:39:21.814652 0 +285 285 2024-04-13 20:39:21.814652 0 f optical_equipment.equipment optical_equipment \N optical_equipment/report/Maintenance_History.fodt \N optical_equipment.equipment t odt t 2024-04-13 20:39:21.814652 0 +287 287 2024-04-13 20:39:21.814652 0 f optical_equipment.maintenance optical_equipment \N optical_equipment/report/Calibration.fodt \N optical_equipment.maintenance t odt t 2024-04-13 20:39:21.814652 0 +255 255 2024-04-13 20:39:19.14446 0 f sale.sale sale \N sale/sale.fodt \N sale.sale f odt t 2024-04-13 20:39:21.814652 0 +288 288 2024-04-13 20:39:21.814652 0 f optical_equipment_maintenance.service optical_equipment \N optical_equipment/report/Calibrations.fodt \N optical_equipment_maintenance.service t odt t 2024-04-13 20:39:21.814652 0 +291 291 2024-04-13 20:39:21.814652 0 f optical_equipment.contract optical_equipment \N optical_equipment/report/Contract.fodt \N optical_equipment.contract t odt t 2024-04-13 20:39:21.814652 0 +292 292 2024-04-13 20:39:21.814652 0 f optical_equipment.contract optical_equipment \N optical_equipment/report/Prorrogation.fodt \N optical_equipment.contract t odt t 2024-04-13 20:39:21.814652 0 +299 299 2024-04-13 20:39:21.814652 0 f optical_equipment_maintenance.service optical_equipment \N optical_equipment/report/Service.fodt \N optical_equipment_maintenance.service t odt t 2024-04-13 20:39:21.814652 0 +300 300 2024-04-13 20:39:21.814652 0 f optical_equipment_maintenance.service optical_equipment \N optical_equipment/report/CVS_Equipments.fodt \N optical_equipment_maintenance.service t odt t 2024-04-13 20:39:21.814652 0 +301 301 2024-04-13 20:39:21.814652 0 f optical_equipment.maintenance optical_equipment \N optical_equipment/report/Maintenance_Service.fodt \N optical_equipment.maintenance t odt t 2024-04-13 20:39:21.814652 0 +302 302 2024-04-13 20:39:21.814652 0 f optical_equipment_maintenance.service optical_equipment \N optical_equipment/report/Maintenance_Timeline.fodt \N optical_equipment_maintenance.service t odt t 2024-04-13 20:39:21.814652 0 +303 303 2024-04-13 20:39:21.814652 0 f optical_equipment_maintenance.service optical_equipment \N optical_equipment/report/Maintenances_Historys.fodt \N optical_equipment_maintenance.service t odt t 2024-04-13 20:39:21.814652 0 +305 305 2024-04-13 20:39:21.814652 0 f stock.shipment.out optical_equipment \N optical_equipment/report/Delivery_Certificated.fodt \N stock.shipment.out.picking_list1 f odt t 2024-04-13 20:39:21.814652 0 +306 306 2024-04-13 20:39:21.814652 0 f stock.shipment.out optical_equipment \N optical_equipment/report/Capacitation.fodt \N stock.shipment.out.picking_list1 f odt t 2024-04-13 20:39:21.814652 0 +230 230 2024-04-13 20:39:16.958214 0 f purchase.purchase purchase \N purchase/purchase.fodt \N purchase.purchase f odt t 2024-04-13 20:39:21.814652 0 +308 308 2024-04-13 20:39:21.814652 0 f purchase.purchase optical_equipment \N optical_equipment/report/Purchase.fodt \N purchase.purchase t odt t 2024-04-13 20:39:21.814652 0 +310 310 2024-04-13 20:39:21.814652 0 f sale.sale optical_equipment \N optical_equipment/report/Sale_Internal.fodt \N sale.sale t odt t 2024-04-13 20:39:21.814652 0 +311 311 2024-04-13 20:39:21.814652 0 f sale.sale optical_equipment \N optical_equipment/report/Sale.fodt \N sale.sale t odt t 2024-04-13 20:39:21.814652 0 +312 312 2024-04-13 20:39:21.814652 0 f account.statement.line optical_equipment \N optical_equipment/report/Payment.fodt \N account.statement.line t odt t 2024-04-13 20:39:21.814652 0 +313 313 2024-04-13 20:39:21.814652 0 f optical_equipment \N optical_equipment/report/balance_sale_party.fods \N optical_equipment.balance_sale_party f ods t 2024-04-13 20:39:21.814652 0 +\. + + +-- +-- Data for Name: ir_action_url; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_action_url (id, action, create_date, create_uid, url, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_action_wizard; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_action_wizard (id, action, create_date, create_uid, model, "window", wiz_name, write_date, write_uid) FROM stdin; +130 130 2024-04-13 20:39:03.023425 0 f account.move.unreconcile_lines 2024-04-13 20:39:03.023425 0 +4 4 2024-04-13 20:27:30.723827 0 \N f ir.ui.view.show 2024-04-13 20:27:30.723827 0 +22 22 2024-04-13 20:27:30.723827 0 ir.model f ir.model.print_model_graph 2024-04-13 20:27:30.723827 0 +35 35 2024-04-13 20:27:30.723827 0 \N t ir.lang.config 2024-04-13 20:27:30.723827 0 +131 131 2024-04-13 20:39:03.023425 0 \N t account.reconcile 2024-04-13 20:39:03.023425 0 +37 37 2024-04-13 20:27:30.723827 0 ir.action.report f ir.translation.report 2024-04-13 20:27:30.723827 0 +39 39 2024-04-13 20:27:30.723827 0 \N f ir.translation.set 2024-04-13 20:27:30.723827 0 +40 40 2024-04-13 20:27:30.723827 0 \N f ir.translation.clean 2024-04-13 20:27:30.723827 0 +132 132 2024-04-13 20:39:03.023425 0 \N f account.move.cancel 2024-04-13 20:39:03.023425 0 +41 41 2024-04-13 20:27:30.723827 0 \N f ir.translation.update 2024-04-13 20:27:30.723827 0 +42 42 2024-04-13 20:27:30.723827 0 \N f ir.translation.export 2024-04-13 20:27:30.723827 0 +47 47 2024-04-13 20:27:30.723827 0 \N t ir.module.config_wizard 2024-04-13 20:27:30.723827 0 +134 134 2024-04-13 20:39:03.023425 0 \N f account.move.line.group 2024-04-13 20:39:03.023425 0 +48 48 2024-04-13 20:27:30.723827 0 \N f ir.module.activate_upgrade 2024-04-13 20:27:30.723827 0 +49 49 2024-04-13 20:27:30.723827 0 \N t ir.module.config 2024-04-13 20:27:30.723827 0 +58 58 2024-04-13 20:27:35.518366 0 \N t res.user.config 2024-04-13 20:27:35.518366 0 +71 71 2024-04-13 20:39:01.136154 0 party.party f party.check_vies 2024-04-13 20:39:01.136154 0 +72 72 2024-04-13 20:39:01.136154 0 party.party f party.replace 2024-04-13 20:39:01.136154 0 +73 73 2024-04-13 20:39:01.136154 0 party.party f party.erase 2024-04-13 20:39:01.136154 0 +82 82 2024-04-13 20:39:02.298155 0 \N t company.company.config 2024-04-13 20:39:02.298155 0 +91 91 2024-04-13 20:39:03.023425 0 \N f account.create_chart 2024-04-13 20:39:03.023425 0 +92 92 2024-04-13 20:39:03.023425 0 \N f account.update_chart 2024-04-13 20:39:03.023425 0 +96 96 2024-04-13 20:39:03.023425 0 account.account.type f account.account.open_type 2024-04-13 20:39:03.023425 0 +103 103 2024-04-13 20:39:03.023425 0 \N f account.general_ledger.account.party.open 2024-04-13 20:39:03.023425 0 +113 113 2024-04-13 20:39:03.023425 0 \N f account.fiscalyear.create_periods 2024-04-13 20:39:03.023425 0 +114 114 2024-04-13 20:39:03.023425 0 \N f account.fiscalyear.balance_non_deferral 2024-04-13 20:39:03.023425 0 +115 115 2024-04-13 20:39:03.023425 0 \N f account.fiscalyear.renew 2024-04-13 20:39:03.023425 0 +126 126 2024-04-13 20:39:03.023425 0 account.account f account.move.open_account 2024-04-13 20:39:03.023425 0 +128 128 2024-04-13 20:39:03.023425 0 \N f account.move.open_journal 2024-04-13 20:39:03.023425 0 +129 129 2024-04-13 20:39:03.023425 0 f account.move.reconcile_lines 2024-04-13 20:39:03.023425 0 +136 136 2024-04-13 20:39:03.023425 0 account.move.line f account.move.line.reschedule 2024-04-13 20:39:03.023425 0 +138 138 2024-04-13 20:39:03.023425 0 account.move.line f account.move.line.delegate 2024-04-13 20:39:03.023425 0 +142 142 2024-04-13 20:39:03.023425 0 \N f account.move.template.create 2024-04-13 20:39:03.023425 0 +151 151 2024-04-13 20:39:03.023425 0 \N f account.tax.test 2024-04-13 20:39:03.023425 0 +153 153 2024-04-13 20:39:03.023425 0 account.tax.code f account.tax.open_code 2024-04-13 20:39:03.023425 0 +168 168 2024-04-13 20:39:10.936653 0 \N f product.recompute_cost_price 2024-04-13 20:39:10.936653 0 +170 170 2024-04-13 20:39:10.936653 0 \N f product.modify_cost_price 2024-04-13 20:39:10.936653 0 +173 173 2024-04-13 20:39:10.936653 0 \N f stock.product_quantities_warehouse.open 2024-04-13 20:39:10.936653 0 +175 175 2024-04-13 20:39:10.936653 0 \N f stock.product_quantities_warehouse.move.open 2024-04-13 20:39:10.936653 0 +192 192 2024-04-13 20:39:10.936653 0 stock.shipment.in.return f stock.shipment.assign 2024-04-13 20:39:10.936653 0 +193 193 2024-04-13 20:39:10.936653 0 stock.shipment.out f stock.shipment.assign 2024-04-13 20:39:10.936653 0 +194 194 2024-04-13 20:39:10.936653 0 stock.shipment.internal f stock.shipment.assign 2024-04-13 20:39:10.936653 0 +199 199 2024-04-13 20:39:10.936653 0 stock.inventory f stock.inventory.count 2024-04-13 20:39:10.936653 0 +211 211 2024-04-13 20:39:14.878373 0 account.invoice f account.invoice.pay 2024-04-13 20:39:14.878373 0 +216 216 2024-04-13 20:39:14.878373 0 account.invoice f account.invoice.refresh_invoice_report 2024-04-13 20:39:14.878373 0 +219 219 2024-04-13 20:39:14.878373 0 account.invoice f account.invoice.credit 2024-04-13 20:39:14.878373 0 +220 220 2024-04-13 20:39:14.878373 0 account.invoice f account.invoice.lines_to_pay.reschedule 2024-04-13 20:39:14.878373 0 +221 221 2024-04-13 20:39:14.878373 0 account.invoice f account.invoice.lines_to_pay.delegate 2024-04-13 20:39:14.878373 0 +223 223 2024-04-13 20:39:14.878373 0 \N f account.invoice.payment_term.test 2024-04-13 20:39:14.878373 0 +224 224 2024-04-13 20:39:16.958214 0 purchase.purchase f purchase.handle.shipment.exception 2024-04-13 20:39:16.958214 0 +225 225 2024-04-13 20:39:16.958214 0 purchase.purchase f purchase.handle.invoice.exception 2024-04-13 20:39:16.958214 0 +234 234 2024-04-13 20:39:16.958214 0 purchase.purchase f purchase.return_purchase 2024-04-13 20:39:16.958214 0 +235 235 2024-04-13 20:39:16.958214 0 \N f purchase.open_supplier 2024-04-13 20:39:16.958214 0 +236 236 2024-04-13 20:39:16.958214 0 purchase.purchase f purchase.modify_header 2024-04-13 20:39:16.958214 0 +248 248 2024-04-13 20:39:19.14446 0 sale.sale f sale.handle.shipment.exception 2024-04-13 20:39:19.14446 0 +249 249 2024-04-13 20:39:19.14446 0 sale.sale f sale.handle.invoice.exception 2024-04-13 20:39:19.14446 0 +257 257 2024-04-13 20:39:19.14446 0 sale.sale f sale.return_sale 2024-04-13 20:39:19.14446 0 +258 258 2024-04-13 20:39:19.14446 0 sale.sale f sale.modify_header 2024-04-13 20:39:19.14446 0 +273 273 2024-04-13 20:39:19.14446 0 sale.reporting.region.tree f sale.reporting.region.tree.open 2024-04-13 20:39:19.14446 0 +277 277 2024-04-13 20:39:19.14446 0 sale.reporting.country.tree f sale.reporting.country.tree.open 2024-04-13 20:39:19.14446 0 +278 278 2024-04-13 20:39:19.14446 0 \N f sale.open_customer 2024-04-13 20:39:19.14446 0 +286 286 2024-04-13 20:39:21.814652 0 optical_equipment.equipment f optical_equipment.change_propietary 2024-04-13 20:39:21.814652 0 +290 290 2024-04-13 20:39:21.814652 0 optical_equipment_maintenance.service f optical_equipment.maintenance.contract 2024-04-13 20:39:21.814652 0 +294 294 2024-04-13 20:39:21.814652 0 \N f optical_equipment_maintenance.assing_agended 2024-04-13 20:39:21.814652 0 +295 295 2024-04-13 20:39:21.814652 0 \N f optical_equipment_maintenance.reassing_agended 2024-04-13 20:39:21.814652 0 +304 304 2024-04-13 20:39:21.814652 0 optical_equipment_maintenance.service f optical_equipment.change_propietary_maintenance 2024-04-13 20:39:21.814652 0 +309 309 2024-04-13 20:39:21.814652 0 \N f optical_equipment.confirm_sale_date 2024-04-13 20:39:21.814652 0 +314 314 2024-04-13 20:39:21.814652 0 \N f optical_equipment.print_balance_sale_party 2024-04-13 20:39:21.814652 0 +\. + + +-- +-- Data for Name: ir_attachment; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_attachment (id, copy_to_resources, create_date, create_uid, data, description, file_id, link, name, resource, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_avatar; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_avatar (id, copy_to_resources, create_date, create_uid, image, image_id, resource, uuid, write_date, write_uid) FROM stdin; +1 \N 2024-04-13 20:27:35.518366 0 \\xffd8ffe000104a46494600010100000100010000ffdb004300080606070605080707070909080a0c140d0c0b0b0c1912130f141d1a1f1e1d1a1c1c20242e2720222c231c1c2837292c30313434341f27393d38323c2e333432ffdb0043010909090c0b0c180d0d1832211c213232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232ffc00011080064006403012200021101031101ffc4001a000100030101010000000000000000000000050607040302ffc4003310000103030105030b0500000000000000000102030405110607122141811415911622315162717292a1a2c234556195b1ffc400190101000301010000000000000000000000000102030405ffc4001e11010003000202030000000000000000000001021112210322415171ffda000c03010002110311003f0080001e9b8c0000000000000000000000000000000000f486096a66643044f9657ae1ac6355ce72ff00089e9097983b2aad372a18925abb7d5411aaeea3e681cc455f56553d3c14e323740004a000000000000000002f5b2eb5f6bd412d7bdb98e8e3f357db7704fa6f145361d271b34c6cf25b9ccd447c8c754aa2f3ca6189d787cc65e59cae47caf48ed33a9a961d43a52e3053b9247c7bfbb8f4a491af14f7e5153a9829a86caef0f966b85b67915cf7af6a62af355e0ffc7ea523555afb9f535751a3711a48af8fe07714f045c7429e2f599a2d7ee22c86001d0c80000000000000001d969b7beeb76a4a18f3bd3cad6653922af15e899534ada7dc194564a3b353e1a92aa395a9ca367044f1c7ca43ecaed7da6f751727b7cca58f758bedbb87f88be259aefab747f794d05ca8d955514ee585ce7d2364c6157288abcb3939af6dbc75b8d6b1ebfaccb4bdd3b9f5250d6abb11b6446c9f03b83be8b9e85db6b36cf3a86eac6f0545a7917ee6fe474f955a03f6783faf6137755a3d61a16a9f6f45735cc5742d56e151ec5ca26396718f72916b4f28b4c62623d663587000ea620000000000000000d974c319a5f672faf95a8923e375539179ab930c4ea9bbe2638f7ba591d23dcae7b955ce55e6aa7c8295a71999fb5ad6dc80d3b64d73fd7dadeef554469f6bbf133102f5e51856727533aaed7dd1a9aba95adc46926fc7f03b8a78671d08600b4464224001280000000000000000000000000000000000000000000000000000000000007fffd9 \N res.user,1 77bdde67840f4a658674e62a7164c0e1 2024-04-13 20:27:35.518366 0 +\. + + +-- +-- Data for Name: ir_avatar_cache; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_avatar_cache (id, avatar, create_date, create_uid, image, image_id, size, write_date, write_uid) FROM stdin; +1 1 2024-04-13 20:37:02.197522 1 \\xffd8ffe000104a46494600010100000100010000ffdb004300080606070605080707070909080a0c140d0c0b0b0c1912130f141d1a1f1e1d1a1c1c20242e2720222c231c1c2837292c30313434341f27393d38323c2e333432ffdb0043010909090c0b0c180d0d1832211c213232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232ffc00011080064006403012200021101031101ffc4001a000100030101010000000000000000000000050607040302ffc4003310000103030105030b0500000000000000000102030405110607122141811415911622315162717292a1a2c234556195b1ffc400190101000301010000000000000000000000000102030405ffc4001e11010003000202030000000000000000000001021112210322415171ffda000c03010002110311003f0080001e9b8c0000000000000000000000000000000000f486096a66643044f9657ae1ac6355ce72ff00089e9097983b2aad372a18925abb7d5411aaeea3e681cc455f56553d3c14e323740004a000000000000000002f5b2fb5f6bd412d7bdb98e8e3f357db7704fa6f145360d291b34c6cf65b9ccd447c8c754aa2f3ca6189d787cc65e59cae47caf48ed33a9a961d43a52e3053b9247c7bfbb8f4a491af14f7e5153a9831a7ecb2f0f966b85b67915cf7af6a62af355e0ffc7ea527555afb9f535751a3711a48af8fe07714f045c7429e2f599a2d7ee22c86001d0c80000000000000001d969b7beeb76a4a18f3bd3cad6653922af15e8995349da75c194564a3b353e1a92aa395a9ca367044f1c7ca446cb2d7da6f751727b7cca58f758bedbb87f88be2596edab3487794d05ca8d955514ee585ce7d2364c6157288abcb3939af6dbc75b8d6b1ebfaccf4c5d3b9f51d0d6abb11b6446c9f03b83be8b9e85db6b36cf3a86eac6f0545a7917ee6fe4747955a07f6783faf6137755a3d61a1aa9f6f45735cc5742d56e151ec5ca26396718f7295b5a7945a631311eb31ac3c0075b100000000000000006c9a6191e98d9d3ebe56a248f8dd54e45e6ae4c313aa6ef898ebdee964748f72b9ee55739579aa9f20a569c6667ed6b5b72034dd93dcff005f6b7bbd5511a7daefc4cc80bd7946159c9d4ceabb5f746a5aea56b711a49bf1fc0ee29e19c7421802d1190890004a0000000000000000000000000000000000000000000000000000000000001fffd9 \N 100 \N \N +2 1 2024-04-13 20:37:02.289486 0 \\xffd8ffe000104a46494600010100000100010000ffdb004300080606070605080707070909080a0c140d0c0b0b0c1912130f141d1a1f1e1d1a1c1c20242e2720222c231c1c2837292c30313434341f27393d38323c2e333432ffdb0043010909090c0b0c180d0d1832211c213232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232ffc0001108001e001e03012200021101031101ffc40017000101010100000000000000000000000000050406ffc4002710000104020102050500000000000000000100020304051112062113153161813241527191ffc400160101010100000000000000000000000000000405ffc40017110101010100000000000000000000000001110031ffda000c03010002110311003f008088ba0e97868c4fb795ca576cf4aa31ad313fd1ef7bb881f0391f85a4b0ba40bb9f45bf378ff2bcd5ba60ed91c8781fc987bb4ff0858106971c57ebe762c6f4f57a3521af3cd24cf9ad0b35c3da0f60c037edb3bf75011107b83359cfe520cc0a16c06b2e083c2b2c647c5bb69d348fb7d3afd6946444084c5bbfffd9 \N 30 \N \N +\. + + +-- +-- Data for Name: ir_cache; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_cache (id, name, "timestamp", create_date, create_uid, write_date, write_uid) FROM stdin; +40 ir.message 2024-04-13 22:44:18.779322 \N \N \N \N +9 ir_model_data.has_model 2024-04-13 22:44:18.780454 \N \N \N \N +14 modelview.view_toolbar_get 2024-04-13 22:44:18.781343 \N \N \N \N +1 ir_ui_view.view_get 2024-04-13 22:44:18.782215 \N \N \N \N +17 ir.translation.get_language 2024-04-13 22:44:18.783121 \N \N \N \N +7 ir.model.button.reset 2024-04-13 22:44:18.784007 \N \N \N \N +15 ir_model_data.get_id 2024-04-13 22:44:18.784882 \N \N \N \N +24 ir.model.field.get_name 2024-04-13 22:44:18.785753 \N \N \N \N +23 ir_rule.domain_get 2024-04-13 22:44:18.786652 \N \N \N \N +26 ir.calendar.day 2024-04-13 22:44:18.787529 \N \N \N \N +11 modelview.fields_view_get 2024-04-13 22:44:18.741983 \N \N \N \N +35 party.address.subdivision_type.get_types 2024-04-13 22:44:18.751044 \N \N \N \N +16 ir.lang 2024-04-13 22:44:18.752207 \N \N \N \N +25 res.user.get_companies 2024-04-13 22:44:18.753821 \N \N \N \N +20 ir.ui.icon.list_icons 2024-04-13 22:44:18.755163 \N \N \N \N +31 modelstorage.count 2024-04-13 22:44:18.75616 \N \N \N \N +39 ir.translation 2024-04-13 22:44:18.757412 \N \N \N \N +37 ir.model.button.view_attributes 2024-04-13 22:44:18.758381 \N \N \N \N +36 ir_ui_view.get_rng 2024-04-13 22:44:18.759297 \N \N \N \N +38 party.address.format.get_format 2024-04-13 22:44:18.760262 \N \N \N \N +13 res_user.get_groups 2024-04-13 22:44:18.761299 \N \N \N \N +30 ir_model_access.get_access 2024-04-13 22:44:18.762199 \N \N \N \N +32 ir.action.report.template 2024-04-13 22:44:18.763171 \N \N \N \N +28 res.user.get_employees 2024-04-13 22:44:18.764181 \N \N \N \N +29 stock.location.default_warehouse 2024-04-13 22:44:18.765077 \N \N \N \N +10 ir_model_field_access.check 2024-04-13 22:44:18.765961 \N \N \N \N +33 ir_session.session_reset 2024-04-13 22:44:18.766891 \N \N \N \N +6 ir.lang.code 2024-04-13 22:44:18.767797 \N \N \N \N +19 ir_configuration.get_language 2024-04-13 22:44:18.768682 \N \N \N \N +22 ir_trigger.get_triggers 2024-04-13 22:44:18.769572 \N \N \N \N +12 account.fiscalyear.find 2024-04-13 22:44:18.770452 \N \N \N \N +27 ir.translation.get_report 2024-04-13 22:44:18.771326 \N \N \N \N +21 ir_action_keyword.get_keyword 2024-04-13 22:44:18.772205 \N \N \N \N +2 _dict_schema_mixin.get_relation_fields 2024-04-13 22:44:18.773095 \N \N \N \N +4 ir.model.button.rules 2024-04-13 22:44:18.773971 \N \N \N \N +34 ir.model.button.groups 2024-04-13 22:44:18.774855 \N \N \N \N +3 ir.calendar.month 2024-04-13 22:44:18.776638 \N \N \N \N +8 ir.model.get_names 2024-04-13 22:44:18.777513 \N \N \N \N +5 _digits_mixin..get_digits 2024-04-13 22:44:18.778385 \N \N \N \N +18 account.period.find 2024-04-13 22:44:18.775737 \N \N \N \N +\. + + +-- +-- Data for Name: ir_calendar_day; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_calendar_day (id, abbreviation, create_date, create_uid, index, name, write_date, write_uid) FROM stdin; +1 Mon 2024-04-13 20:27:30.723827 0 0 Monday \N \N +2 Tue 2024-04-13 20:27:30.723827 0 1 Tuesday \N \N +3 Wed 2024-04-13 20:27:30.723827 0 2 Wednesday \N \N +4 Thu 2024-04-13 20:27:30.723827 0 3 Thursday \N \N +5 Fri 2024-04-13 20:27:30.723827 0 4 Friday \N \N +6 Sat 2024-04-13 20:27:30.723827 0 5 Saturday \N \N +7 Sun 2024-04-13 20:27:30.723827 0 6 Sunday \N \N +\. + + +-- +-- Data for Name: ir_calendar_month; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_calendar_month (id, abbreviation, create_date, create_uid, index, name, write_date, write_uid) FROM stdin; +1 Jan 2024-04-13 20:27:30.723827 0 1 January \N \N +2 Feb 2024-04-13 20:27:30.723827 0 2 February \N \N +3 Mar 2024-04-13 20:27:30.723827 0 3 March \N \N +4 Apr 2024-04-13 20:27:30.723827 0 4 April \N \N +5 May 2024-04-13 20:27:30.723827 0 5 May \N \N +6 Jun 2024-04-13 20:27:30.723827 0 6 June \N \N +7 Jul 2024-04-13 20:27:30.723827 0 7 July \N \N +8 Aug 2024-04-13 20:27:30.723827 0 8 August \N \N +9 Sep 2024-04-13 20:27:30.723827 0 9 September \N \N +10 Oct 2024-04-13 20:27:30.723827 0 10 October \N \N +11 Nov 2024-04-13 20:27:30.723827 0 11 November \N \N +12 Dec 2024-04-13 20:27:30.723827 0 12 December \N \N +\. + + +-- +-- Data for Name: ir_configuration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_configuration (id, language, hostname, create_date, create_uid, write_date, write_uid, product_price_decimal) FROM stdin; +1 en \N 2024-04-13 20:27:37.551053 0 2024-04-13 20:27:37.551053 0 4 +\. + + +-- +-- Data for Name: ir_cron; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_cron (id, active, create_date, create_uid, day, hour, interval_number, interval_type, method, minute, next_call, weekday, write_date, write_uid) FROM stdin; +1 t 2024-04-13 20:27:30.723827 0 \N \N 1 days ir.queue|clean \N \N \N \N \N +2 t 2024-04-13 20:27:30.723827 0 \N \N 1 months ir.error|clean \N \N \N \N \N +3 t 2024-04-13 20:27:35.518366 0 \N \N 5 minutes ir.trigger|trigger_time \N \N \N \N \N +4 t 2024-04-13 20:39:00.792624 0 \N \N 1 days currency.cron|update \N \N \N \N \N +5 t 2024-04-13 20:39:10.936653 0 \N \N 1 days product.product|recompute_cost_price_from_moves \N \N \N \N \N +6 t 2024-04-13 20:39:21.814652 0 \N \N 1 hours optical_equipment.contract|contract_expiration \N \N \N \N \N +\. + + +-- +-- Data for Name: ir_email; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_email (id, body, create_date, create_uid, recipients, recipients_hidden, recipients_secondary, resource, subject, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_email_address; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_email_address (id, address, create_date, create_uid, email, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_email_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_email_template (id, body, create_date, create_uid, model, name, recipients, recipients_hidden, recipients_hidden_pyson, recipients_pyson, recipients_secondary, recipients_secondary_pyson, subject, write_date, write_uid, contact_mechanism) FROM stdin; +\. + + +-- +-- Data for Name: ir_email_template-ir_action_report; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_email_template-ir_action_report" (id, create_date, create_uid, report, template, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_error; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_error (id, create_date, create_uid, description, message, origin, processed_by, solved_by, state, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_export; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_export (id, create_date, create_uid, header, name, records, resource, "user", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_export-res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_export-res_group" (id, create_date, create_uid, export, "group", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_export-write-res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_export-write-res_group" (id, create_date, create_uid, export, "group", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_export_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_export_line (id, create_date, create_uid, export, name, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_lang; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_lang (id, name, code, translatable, parent, active, direction, am, create_date, create_uid, date, decimal_point, "grouping", mon_decimal_point, mon_grouping, mon_thousands_sep, n_cs_precedes, n_sep_by_space, n_sign_posn, negative_sign, p_cs_precedes, p_sep_by_space, p_sign_posn, pg_text_search, pm, positive_sign, thousands_sep, write_date, write_uid) FROM stdin; +2 Bulgarian bg f \N t ltr 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 3, 0] , [3, 3, 0]   f t 1 - f t 1 \N . \N \N +3 Català ca f \N t ltr a. m. 2024-04-13 20:27:30.723827 0 %d/%m/%Y , [3, 3, 0] , [3, 3, 0] . f t 1 - f t 1 \N p. m. \N \N +4 Czech cs f \N t ltr 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 3, 0] , [3, 3, 0]   f t 1 - f t 1 \N \N \N +5 German de f \N t ltr 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 3, 0] , [3, 3, 0] . f t 1 - f t 1 \N . \N \N +6 Spanish es f \N t ltr 2024-04-13 20:27:30.723827 0 %d/%m/%Y , [3, 3, 0] , [3, 3, 0] . f t 1 - f t 1 \N . \N \N +7 Spanish (Latin American) es_419 f \N t ltr 2024-04-13 20:27:30.723827 0 %d/%m/%Y . [3, 3, 0] . [3, 3, 0] , f t 1 - f t 1 \N , \N \N +8 Estonian et f \N t ltr \N 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 3] , [3, 3]   f t 1 - f t 1 \N \N   \N \N +9 Persian fa f \N t rtl 2024-04-13 20:27:30.723827 0 %Y/%m/%d . [3, 0] ٫ [3, 0] ٬ f t 1 - f t 1 \N , \N \N +10 Finnish fi f \N t ltr \N 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 3, 0] , [3, 3, 0]   f t 1 - f t 1 \N \N   \N \N +11 French fr f \N t ltr 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 0] , [3, 0] f t 1 - f t 1 \N \N \N +12 Hungarian hu f \N t ltr 2024-04-13 20:27:30.723827 0 %Y-%m-%d , [3, 3, 0] , [3, 3, 0] . f t 1 - f t 1 \N . \N \N +13 Indonesian id f \N t ltr 2024-04-13 20:27:30.723827 0 %d/%m/%Y , [3, 3] , [3, 3] . t f 1 - t f 1 \N . \N \N +14 Italian it f \N t ltr 2024-04-13 20:27:30.723827 0 %d/%m/%Y , [] , [3, 3, 0] . t t 1 - t t 1 \N \N \N +15 Lao lo f \N t ltr AM 2024-04-13 20:27:30.723827 0 %d/%m/%Y . [3, 3, 0] . [3, 3, 0] , t t 4 - t t 4 \N PM , \N \N +16 Lithuanian lt f \N t ltr 2024-04-13 20:27:30.723827 0 %Y-%m-%d , [3, 3, 0] , [3, 3, 0] . f t 1 - f t 1 \N . \N \N +17 Dutch nl f \N t ltr 2024-04-13 20:27:30.723827 0 %d-%m-%Y , [] , [3, 3, 0] t t 2 - t t 1 \N \N \N +18 Polish pl f \N t ltr 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 3, 0] , [3, 0, 0] f t 1 - f t 1 \N \N \N +19 Portuguese pt f \N t ltr 2024-04-13 20:27:30.723827 0 %d-%m-%Y , [] , [3, 3, 0] . t t 1 - t t 1 \N \N \N +20 Romanian ro f \N t ltr 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3,3] , [3,3] . t t 1 - t t 1 \N . \N \N +21 Russian ru f \N t ltr 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 3, 0] . [3, 3, 0]   f t 1 - f t 1 \N \N \N +22 Slovenian sl f \N t ltr 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [] , [3, 3, 0] f t 1 - f t 1 \N \N \N +23 Turkish tr f \N t ltr \N 2024-04-13 20:27:30.723827 0 %d-%m-%Y , [3, 3, 0] , [3, 3, 0] . f t 1 - f t 1 \N \N . \N \N +24 Ukrainian uk f \N t ltr \N 2024-04-13 20:27:30.723827 0 %d.%m.%Y , [3, 3] , [3, 3]   f t 1 - f t 1 \N \N   \N \N +25 Chinese Simplified zh_CN f \N t ltr 上午 2024-04-13 20:27:30.723827 0 %Y-%m-%d . [3, 0] . [3, 0] , t f 4 - t f 4 \N 下午 , \N \N +1 English en t \N t ltr AM 2024-04-13 20:27:30.723827 0 %m/%d/%Y . [3, 3, 0] . [3, 3, 0] , t f 1 - t f 1 \N PM , 2024-04-13 22:41:09.354963 0 +\. + + +-- +-- Data for Name: ir_message; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_message (id, create_date, create_uid, text, write_date, write_uid) FROM stdin; +1 2024-04-13 20:27:30.723827 0 ID \N \N +2 2024-04-13 20:27:30.723827 0 Created by \N \N +3 2024-04-13 20:27:30.723827 0 Created at \N \N +4 2024-04-13 20:27:30.723827 0 Edited by \N \N +5 2024-04-13 20:27:30.723827 0 Edited at \N \N +6 2024-04-13 20:27:30.723827 0 Record Name \N \N +7 2024-04-13 20:27:30.723827 0 Active \N \N +8 2024-04-13 20:27:30.723827 0 Uncheck to exclude from future use. \N \N +9 2024-04-13 20:27:30.723827 0 Name \N \N +10 2024-04-13 20:27:30.723827 0 String \N \N +11 2024-04-13 20:27:30.723827 0 Help \N \N +12 2024-04-13 20:27:30.723827 0 Type \N \N +13 2024-04-13 20:27:30.723827 0 Boolean \N \N +14 2024-04-13 20:27:30.723827 0 Integer \N \N +15 2024-04-13 20:27:30.723827 0 Char \N \N +16 2024-04-13 20:27:30.723827 0 Float \N \N +17 2024-04-13 20:27:30.723827 0 Numeric \N \N +18 2024-04-13 20:27:30.723827 0 Date \N \N +19 2024-04-13 20:27:30.723827 0 DateTime \N \N +20 2024-04-13 20:27:30.723827 0 Selection \N \N +21 2024-04-13 20:27:30.723827 0 MultiSelection \N \N +22 2024-04-13 20:27:30.723827 0 Digits \N \N +23 2024-04-13 20:27:30.723827 0 Domain \N \N +24 2024-04-13 20:27:30.723827 0 A couple of key and label separated by ":" per line. \N \N +25 2024-04-13 20:27:30.723827 0 Selection Sorted \N \N +26 2024-04-13 20:27:30.723827 0 If the selection must be sorted on label. \N \N +27 2024-04-13 20:27:30.723827 0 Help Selection \N \N +28 2024-04-13 20:27:30.723827 0 The key followed by the help text separated by a ":", one per line. \N \N +29 2024-04-13 20:27:30.723827 0 Selection JSON \N \N +30 2024-04-13 20:27:30.723827 0 Help Selection JSON \N \N +31 2024-04-13 20:27:30.723827 0 Yes \N \N +32 2024-04-13 20:27:30.723827 0 No \N \N +33 2024-04-13 20:27:30.723827 0 Sequence \N \N +34 2024-04-13 20:27:30.723827 0 ID must be positive. \N \N +35 2024-04-13 20:27:30.723827 0 Only one singleton can be created. \N \N +36 2024-04-13 20:27:30.723827 0 You are not allowed to modify the field "%(field)s" in "%(record)s" of "%(model)s". \N \N +37 2024-04-13 20:27:30.723827 0 You are not allowed to delete the record "%(record)s" of "%(model)s". \N \N +38 2024-04-13 20:27:30.723827 0 This record is part of the base configuration. \N \N +39 2024-04-13 20:27:30.723827 0 Relation not found: %(value)r in "%(model)s" (%(column)s). \N \N +40 2024-04-13 20:27:30.723827 0 Too many relations found: %(value)r in "%(model)s" (%(column)s). \N \N +41 2024-04-13 20:27:30.723827 0 Syntax error for value: %(value)r in "%(field)s" of "%(model)s" (%(column)s). \N \N +42 2024-04-13 20:27:30.723827 0 Syntax error for reference: %(value)r in "%(field)s" of "%(model)s" (%(column)s). \N \N +43 2024-04-13 20:27:30.723827 0 Syntax error for XML id: %(value)r in "%(field)s" of "%(model)s" (%(column)s). \N \N +44 2024-04-13 20:27:30.723827 0 The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not valid according to its domain. \N \N +45 2024-04-13 20:27:30.723827 0 A value is required for field "%(field)s" in "%(model)s". \N \N +46 2024-04-13 20:27:30.723827 0 A value is required for field "%(field)s" in "%(record)s" of "%(model)s". \N \N +47 2024-04-13 20:27:30.723827 0 The value "%(value)s" for field "%(field)s" in "%(model)s" is too long (%(size)i > %(max_size)i). \N \N +48 2024-04-13 20:27:30.723827 0 The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is too long (%(size)i > %(max_size)i). \N \N +49 2024-04-13 20:27:30.723827 0 The number of digits in the value "%(value)r" for field "%(field)s" in "%(record)s" of "%(model)s" exceeds the limit of "%(digits)i". \N \N +50 2024-04-13 20:27:30.723827 0 The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" contains some invalid chars "%(chars)s". \N \N +51 2024-04-13 20:27:30.723827 0 The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not one of the allowed options. \N \N +52 2024-04-13 20:27:30.723827 0 The time value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not valid. \N \N +53 2024-04-13 20:27:30.723827 0 The value "%(value)s" for field "%(field)s" in "%(model)s" does not exist. \N \N +54 2024-04-13 20:27:30.723827 0 The records could not be deleted because they are used by field "%(field)s" of "%(model)s". \N \N +55 2024-04-13 20:27:30.723827 0 You are not allowed to access "%(model)s". \N \N +56 2024-04-13 20:27:30.723827 0 You are not allowed to access "%(model)s.%(field)s". \N \N +57 2024-04-13 20:27:30.723827 0 You are not allowed to create records of "%(model)s" because they fail on at least one of these rules:\n%(rules)s \N \N +58 2024-04-13 20:27:30.723827 0 You are not allowed to read records "%(ids)s" of "%(model)s" because of at least one of these rules:\n%(rules)s \N \N +59 2024-04-13 20:27:30.723827 0 You are trying to read records "%(ids)s" of "%(model)s" that don't exist. \N \N +60 2024-04-13 20:27:30.723827 0 You are not allowed to write to records "%(ids)s" of "%(model)s" because of at least one of these rules:\n%(rules)s \N \N +61 2024-04-13 20:27:30.723827 0 You are trying to write to records "%(ids)s" of "%(model)s" that don't exist. \N \N +62 2024-04-13 20:27:30.723827 0 You are not allowed to delete records "%(ids)s" of "%(model)s" because of at lease one of those rules:\n%(rules)s \N \N +63 2024-04-13 20:27:30.723827 0 Invalid domain in schema "%(schema)s". \N \N +64 2024-04-13 20:27:30.723827 0 Invalid selection in schema "%(schema)s". \N \N +65 2024-04-13 20:27:30.723827 0 Invalid help selection in schema "%(schema)s". \N \N +66 2024-04-13 20:27:30.723827 0 Recursion error: Record "%(rec_name)s" with parent "%(parent_rec_name)s" was configured as ancestor of itself. \N \N +67 2024-04-13 20:27:30.723827 0 Missing search function for field "%(field)s" in "%(model)s". \N \N +68 2024-04-13 20:27:30.723827 0 Missing setter function for field "%(field)s" in "%(model)s". \N \N +69 2024-04-13 20:27:30.723827 0 Calling button "%(button)s on "%(model)s" is not allowed. \N \N +70 2024-04-13 20:27:30.723827 0 Invalid XML for view "%(name)s". \N \N +71 2024-04-13 20:27:30.723827 0 Wrong wizard model in keyword action "%(name)s". \N \N +72 2024-04-13 20:27:30.723827 0 Invalid email definition for report "%(name)s". \N \N +73 2024-04-13 20:27:30.723827 0 Invalid record name definition for report "%(report)s" with exception "%(exception)s". \N \N +74 2024-04-13 20:27:30.723827 0 Invalid view "%(view)s" for action "%(action)s". \N \N +75 2024-04-13 20:27:30.723827 0 Invalid domain or search criteria "%(domain)s" for action "%(action)s". \N \N +76 2024-04-13 20:27:30.723827 0 Invalid context "%(context)s" for action "%(action)s". \N \N +77 2024-04-13 20:27:30.723827 0 The condition "%(condition)s" is not a valid PYSON expression for button rule "%(rule)s". \N \N +78 2024-04-13 20:27:30.723827 0 Missing sequence. \N \N +79 2024-04-13 20:27:30.723827 0 Invalid prefix "%(affix)s" for sequence "%(sequence)s". \N \N +80 2024-04-13 20:27:30.723827 0 Invalid suffix "%(affix)s" for sequence "%(sequence)s". \N \N +81 2024-04-13 20:27:30.723827 0 The "Last Timestamp" cannot be in the future for sequence "%s". \N \N +82 2024-04-13 20:27:30.723827 0 You cannot change the sequence type of a sequence instead create a new sequence. \N \N +83 2024-04-13 20:27:30.723827 0 Invalid "Increment Number" (%(number_increment)s) or "Next Number" (%(number_next)s) with exception "%(exception)s". \N \N +84 2024-04-13 20:27:30.723827 0 Invalid grouping "%(grouping)s" for language "%(language)s". \N \N +85 2024-04-13 20:27:30.723827 0 Invalid date format "%(format)s" for language "%(language)s". \N \N +86 2024-04-13 20:27:30.723827 0 The default language "%(language)s" must be translatable. \N \N +87 2024-04-13 20:27:30.723827 0 The default language "%(language)s" can not be deleted. \N \N +88 2024-04-13 20:27:30.723827 0 Invalid domain in rule "%(name)s". \N \N +89 2024-04-13 20:27:30.723827 0 You can not export translation "%(name)s" because it has been overridden by module "%(overriding_module)s". \N \N +90 2024-04-13 20:27:30.723827 0 You can not remove a module that is activated or that is about to be activated. \N \N +91 2024-04-13 20:27:30.723827 0 Some activated modules depend on the ones you are trying to deactivate: \N \N +92 2024-04-13 20:27:30.723827 0 You can not select "On Time" and any other on the same time, they are mutually exclusive. \N \N +93 2024-04-13 20:27:30.723827 0 Condition "%(condition)s" is not a valid PYSON expression for trigger "%(trigger)s". \N \N +94 2024-04-13 20:27:30.723827 0 Failed to save, please retry. \N \N +95 2024-04-13 20:27:30.723827 0 Y \N \N +96 2024-04-13 20:27:30.723827 0 M \N \N +97 2024-04-13 20:27:30.723827 0 w \N \N +98 2024-04-13 20:27:30.723827 0 d \N \N +99 2024-04-13 20:27:30.723827 0 h \N \N +100 2024-04-13 20:27:30.723827 0 m \N \N +101 2024-04-13 20:27:30.723827 0 s \N \N +102 2024-04-13 20:27:30.723827 0 The resources to which this record must be copied. \N \N +103 2024-04-13 20:27:30.723827 0 Attachments \N \N +104 2024-04-13 20:27:30.723827 0 Notes \N \N +105 2024-04-13 20:27:30.723827 0 You are not allowed to execute wizard "%(wizard)s". \N \N +106 2024-04-13 20:27:30.723827 0 You are not allowed to execute wizard "%(wizard)s" on "%(model)s". \N \N +107 2024-04-13 20:27:30.723827 0 Invalid subject in e-mail template "%(template)s" with exception "%(exception)s". \N \N +108 2024-04-13 20:27:30.723827 0 Invalid body in e-mail template "%(template)s" with exception "%(exception)s". \N \N +109 2024-04-13 20:27:30.723827 0 Invalid PYSON %(field)s in e-mail template "%(template)s" with exception "%(exception)s". \N \N +110 2024-04-13 20:27:30.723827 0 The PYSON %(field)s in e-mail template "%(template)s" must generate a list. \N \N +111 2024-04-13 20:27:30.723827 0 Only one avatar is allowed per resource. \N \N +112 2024-04-13 20:27:30.723827 0 The size of an avatar must be unique. \N \N +113 2024-04-13 20:27:30.723827 0 Avatar \N \N +114 2024-04-13 20:27:30.723827 0 Avatars \N \N +115 2024-04-13 20:27:30.723827 0 Avatar URL \N \N +116 2024-04-13 20:27:30.723827 0 The code on language must be unique. \N \N +117 2024-04-13 20:27:30.723827 0 The name of the button must be unique per model. \N \N +118 2024-04-13 20:27:30.723827 0 Invalid domain or search criteria "%(domain)s" for search "%(search)s". \N \N +119 2024-04-13 20:27:30.723827 0 You cannot store optional on view "%(view)s". \N \N +120 2024-04-13 20:27:30.723827 0 %(field)s (string) \N \N +121 2024-04-13 20:27:30.723827 0 %(field)s (model name) \N \N +122 2024-04-13 20:27:35.518366 0 The password must have at least %(length)i characters. \N \N +123 2024-04-13 20:27:35.518366 0 The password is forbidden. \N \N +124 2024-04-13 20:27:35.518366 0 The password cannot be the same as user's name. \N \N +125 2024-04-13 20:27:35.518366 0 The password cannot be the same as user's login. \N \N +126 2024-04-13 20:27:35.518366 0 The password cannot be the same as user's email address. \N \N +127 2024-04-13 20:27:35.518366 0 The email address "%(email)s" for "%(user)s" is not valid. \N \N +128 2024-04-13 20:27:35.518366 0 For logging purposes users cannot be deleted, instead they should be deactivated. \N \N +129 2024-04-13 20:27:35.518366 0 Password for %(login)s \N \N +130 2024-04-13 20:39:00.792624 0 No rate found for currency "%(currency)s" on "%(date)s". \N \N +131 2024-04-13 20:39:00.792624 0 A currency can only have one rate by date. \N \N +132 2024-04-13 20:39:00.792624 0 A currency rate must be positive. \N \N +133 2024-04-13 20:39:01.136154 0 The code on party must be unique. \N \N +134 2024-04-13 20:39:01.136154 0 To change the "%(field)s" for party "%(party)s", you must edit their contact mechanisms. \N \N +135 2024-04-13 20:39:01.136154 0 You cannot change the party of contact mechanism "%(contact)s". \N \N +136 2024-04-13 20:39:01.136154 0 The phone number "%(phone)s" for party "%(party)s" is not valid. \N \N +137 2024-04-13 20:39:01.136154 0 The email address "%(email)s" for party "%(party)s" is not valid. \N \N +138 2024-04-13 20:39:01.136154 0 The %(type)s "%(code)s" for party "%(party)s" is not valid. \N \N +139 2024-04-13 20:39:01.136154 0 The party "%(party)s" has the same %(type)s "%(code)s". \N \N +140 2024-04-13 20:39:01.136154 0 The VIES service is unavailable, try again later. \N \N +141 2024-04-13 20:39:01.136154 0 Parties have different names: "%(source_name)s" vs "%(destination_name)s". \N \N +142 2024-04-13 20:39:01.136154 0 Parties have different tax identifiers: "%(source_code)s" vs "%(destination_code)s". \N \N +143 2024-04-13 20:39:01.136154 0 Party "%(party)s" cannot be erased because they are still active. \N \N +144 2024-04-13 20:39:01.136154 0 You cannot change the party of address "%(address)s". \N \N +145 2024-04-13 20:39:01.136154 0 Invalid format "%(format)s" with exception "%(exception)s". \N \N +146 2024-04-13 20:39:01.136154 0 The name of party category must be unique by parent. \N \N +147 2024-04-13 20:39:01.136154 0 The country code on subdivision type must be unique. \N \N +148 2024-04-13 20:39:01.136154 0 To remove the identifier type "%(type)s" from the configuration, you must change it on "%(identifier)s". \N \N +149 2024-04-13 20:39:03.023425 0 To continue, you must create a period for the date "%(date)s" and company "%(company)s". \N \N +150 2024-04-13 20:39:03.023425 0 To continue, you must reopen the period "%(period)s" of company "%(company)s" for the date "%(date)s". \N \N +151 2024-04-13 20:39:03.023425 0 You cannot modify or delete period "%(period)s" because it contains moves. \N \N +152 2024-04-13 20:39:03.023425 0 You cannot create a period in fiscal year "%(fiscalyear)s" because it is closed. \N \N +153 2024-04-13 20:39:03.023425 0 You cannot reopen period "%(period)s" because its fiscal year "%(fiscalyear)s" is closed. \N \N +154 2024-04-13 20:39:03.023425 0 You cannot change the post move sequence in period "%(period)s" because it has posted moves. \N \N +155 2024-04-13 20:39:03.023425 0 To close period "%(period)s" you must post the moves "%(moves)s". \N \N +156 2024-04-13 20:39:03.023425 0 The periods "%(first)s" and "%(second)s" overlap, you must use different dates. \N \N +157 2024-04-13 20:39:03.023425 0 You cannot use the same post move sequence for the periods "%(first)s" and "%(second)s" because they are from different fiscal years. \N \N +362 2024-04-13 20:39:19.14446 0 Revenue \N \N +158 2024-04-13 20:39:03.023425 0 The dates for period "%(period)s" must be between the dates of its fiscal year "%(fiscalyear)s". \N \N +159 2024-04-13 20:39:03.023425 0 You can create only one journal per period. \N \N +160 2024-04-13 20:39:03.023425 0 You cannot modify or delete journal-period "%(journal_period)s" because it contains moves. \N \N +161 2024-04-13 20:39:03.023425 0 You cannot create a journal-period in closed period "%(period)s". \N \N +162 2024-04-13 20:39:03.023425 0 You cannot reopen journal-period "%(journal_period)s" in closed period "%(period)s". \N \N +163 2024-04-13 20:39:03.023425 0 You cannot set "Update Unit Price" on child tax "%(tax)s". \N \N +164 2024-04-13 20:39:03.023425 0 You cannot add/modify/delete tax lines in closed period "%(period)s". \N \N +165 2024-04-13 20:39:03.023425 0 You cannot change the post move sequence on fiscal year "%(fiscalyear)s" because it contains posted moves. \N \N +166 2024-04-13 20:39:03.023425 0 To continue, you must create a fiscal year for the date "%(date)s" and company "%(company)s". \N \N +167 2024-04-13 20:39:03.023425 0 To continue, you must reopen the fiscal year "%(fiscalyear)s" of company "%(company)s"for the date "%(date)s". \N \N +168 2024-04-13 20:39:03.023425 0 The fiscal years "%(first)s" and "%(second)s" overlap, you must use different dates. \N \N +169 2024-04-13 20:39:03.023425 0 The open fiscal year "%(open)s" can not be before the close fiscal year "%(closed)s". \N \N +170 2024-04-13 20:39:03.023425 0 The fiscal years "%(first)s" and "%(second)s" cannot have the same post move sequence, you must use different sequences. \N \N +171 2024-04-13 20:39:03.023425 0 To close the fiscal year, the balance of account "%(account)s" must be zero. \N \N +172 2024-04-13 20:39:03.023425 0 To close fiscal year "%(fiscalyear)s", you must close all earlier fiscal years. \N \N +173 2024-04-13 20:39:03.023425 0 To reopen fiscal year "%(fiscalyear)s", you must reopen all later fiscal years. \N \N +174 2024-04-13 20:39:03.023425 0 To continue, you must define a receivable account for party "%(party)s". \N \N +175 2024-04-13 20:39:03.023425 0 To continue, you must define a payable account for party "%(party)s". \N \N +176 2024-04-13 20:39:03.023425 0 You cannot erase party "%(party)s" while they have pending receivable/payable with company "%(company)s". \N \N +177 2024-04-13 20:39:03.023425 0 Account can have only one of the debit or credit type set. \N \N +178 2024-04-13 20:39:03.023425 0 You cannot delete account "%(account)s" because it has move lines. \N \N +179 2024-04-13 20:39:03.023425 0 To set a second currency for account "%(account)s", it must not have a type "payable", "revenue", "receivable" nor "expense". \N \N +180 2024-04-13 20:39:03.023425 0 To set a second currency for account "%(account)s", it must be deferral. \N \N +181 2024-04-13 20:39:03.023425 0 To set a second currency for account "%(account)s", its lines must have the same second currency "%(currency)s". \N \N +182 2024-04-13 20:39:03.023425 0 You cannot close account "%(account)s" because it has move lines. \N \N +183 2024-04-13 20:39:03.023425 0 You cannot remove type of account "%(account)s" because it has move lines. \N \N +184 2024-04-13 20:39:03.023425 0 Deferral must be unique by account and fiscal year. \N \N +185 2024-04-13 20:39:03.023425 0 You cannot modify any account deferrals. \N \N +186 2024-04-13 20:39:03.023425 0 A chart of accounts already exists for company "%(company)s". \N \N +187 2024-04-13 20:39:03.023425 0 To post move "%(move)s", you must fill in its lines. \N \N +188 2024-04-13 20:39:03.023425 0 To post move "%(move)s", you must balance all its lines debits and credits. \N \N +189 2024-04-13 20:39:03.023425 0 You cannot modify posted move "%(move)s". \N \N +190 2024-04-13 20:39:03.023425 0 The period of move "%(move)s" is closed.\nUse the current period to cancel the move? \N \N +191 2024-04-13 20:39:03.023425 0 Failed to evaluate expression "%(expression)s" from template "%(template)s" with error:\n"%(error)s" \N \N +192 2024-04-13 20:39:03.023425 0 The value "%(value)s" of "%(expression)s" from template "%(template)s" is not a number. \N \N +193 2024-04-13 20:39:03.023425 0 The keyword name "%(name)s" is not a valid identifier. \N \N +194 2024-04-13 20:39:03.023425 0 You cannot modify any reconciliation. \N \N +195 2024-04-13 20:39:03.023425 0 The reconciliation "%(reconciliation)s" is delegated to the line "%(line)s".\nYou may need to cancel its move "%(move)s". \N \N +196 2024-04-13 20:39:03.023425 0 The reconciliation "%(reconciliation)s" is linked to the write-off line "%(line)s".\nYou may need to cancel its move "%(move)s". \N \N +197 2024-04-13 20:39:03.023425 0 You cannot reconcile non-valid line "%(line)s". \N \N +198 2024-04-13 20:39:03.023425 0 You cannot reconcile line "%(line)s" with others because its account "%(account1)s" is different from "%(account2)s". \N \N +199 2024-04-13 20:39:03.023425 0 To reconcile line "%(line)s", you must set its account "%(account)s" as reconcilable. \N \N +200 2024-04-13 20:39:03.023425 0 You cannot reconcile line "%(line)s" with others because its party "%(party1)s" is different from "%(party2)s". \N \N +201 2024-04-13 20:39:03.023425 0 To reconcile lines, they must have the same debit "%(debit)s" and credit "%(credit)s". \N \N +202 2024-04-13 20:39:03.023425 0 To reconcile lines with "%(amount)s" write-off, you must select a write-off method. \N \N +203 2024-04-13 20:39:03.023425 0 To reconcile lines, you must define a currency exchange journal for "%(company)s". \N \N +204 2024-04-13 20:39:03.023425 0 To reconcile lines, you must define a currency exchange credit account for "%(company)s". \N \N +205 2024-04-13 20:39:03.023425 0 To reconcile lines, you must define a currency exchange debit account for "%(company)s". \N \N +206 2024-04-13 20:39:03.023425 0 You cannot set both debit and credit on the line. \N \N +207 2024-04-13 20:39:03.023425 0 You must set the sign for second currency to match the sign of debit - credit. \N \N +208 2024-04-13 20:39:03.023425 0 You cannot add/modify/delete lines on closed journal-period "%(journal_period)s". \N \N +209 2024-04-13 20:39:03.023425 0 You cannot modify line "%(line)s" from posted move "%(move)s". \N \N +210 2024-04-13 20:39:03.023425 0 You cannot modify reconciled line "%(line)s". \N \N +211 2024-04-13 20:39:03.023425 0 To create a line on account "%(account)s", you must set a type or unclose it. \N \N +212 2024-04-13 20:39:03.023425 0 You cannot reconcile already reconciled line "%(line)s". \N \N +213 2024-04-13 20:39:03.023425 0 To create a line on account "%(account)s", you must set a party on line "%(line)s". \N \N +214 2024-04-13 20:39:03.023425 0 To create a line on account "%(account)s", you must remove the party on line "%(line)s". \N \N +215 2024-04-13 20:39:03.023425 0 Line "%(line)s" can not be grouped. \N \N +216 2024-04-13 20:39:03.023425 0 You cannot group a single line. \N \N +217 2024-04-13 20:39:03.023425 0 You cannot group lines with different parties. \N \N +218 2024-04-13 20:39:03.023425 0 You cannot group lines of different companies. \N \N +219 2024-04-13 20:39:03.023425 0 You cannot group lines of different second currencies. \N \N +220 2024-04-13 20:39:03.023425 0 You cannot group lines from more than 2 different accounts. \N \N +221 2024-04-13 20:39:03.023425 0 You cannot reschedule lines with different origins. \N \N +222 2024-04-13 20:39:03.023425 0 You cannot reschedule lines with different currencies. \N \N +223 2024-04-13 20:39:03.023425 0 You cannot reschedule lines with different accounts. \N \N +224 2024-04-13 20:39:03.023425 0 You cannot reschedule lines with different parties. \N \N +225 2024-04-13 20:39:03.023425 0 To reschedule the lines you must change the terms to have a total amount of %(total_amount)s instead of %(amount)s. \N \N +226 2024-04-13 20:39:03.023425 0 You cannot delegate together lines of different companies. \N \N +227 2024-04-13 20:39:03.023425 0 You cannot delegate together lines with different origins. \N \N +228 2024-04-13 20:39:03.023425 0 The moves "%(moves)s" contain grouped lines, cancelling them will ungroup the lines. \N \N +229 2024-04-13 20:39:03.023425 0 You cannot change the currency of a company which is associated with account moves. \N \N +230 2024-04-13 20:39:03.023425 0 To close period "%(period)s", you must balance the inactive account "%(account)s". \N \N +231 2024-04-13 20:39:03.023425 0 You cannot change the type of journal "%(journal)s" because it has posted moves. \N \N +232 2024-04-13 20:39:08.573524 0 You cannot modify the factor of the unit of measure "%(uom)s". \N \N +233 2024-04-13 20:39:08.573524 0 You cannot modify the rate of the unit of measure"%(uom)s". \N \N +234 2024-04-13 20:39:08.573524 0 You cannot modify the category of the unit of measure "%(uom)s". \N \N +235 2024-04-13 20:39:08.573524 0 You cannot decrease the digits of the unit of measure "%(uom)s". \N \N +236 2024-04-13 20:39:08.573524 0 If the unit of measure is still not used, you can delete it otherwise you can deactivate it and create a new one. \N \N +237 2024-04-13 20:39:08.573524 0 Incompatible factor and rate values on unit of measure"%(uom)s". \N \N +238 2024-04-13 20:39:08.573524 0 Rate and factor can not be both equal to zero. \N \N +239 2024-04-13 20:39:08.573524 0 The %(type)s "%(code)s" for product "%(product)s" is not valid. \N \N +240 2024-04-13 20:39:08.573524 0 Code of active product must be unique. \N \N +241 2024-04-13 20:39:09.955992 0 There is no "%(field)s" defined for "%(name)s". \N \N +242 2024-04-13 20:39:09.955992 0 There is no account category defined on product "%(name)s". \N \N +243 2024-04-13 20:39:10.340704 0 %(label)s: %(value)s \N \N +244 2024-04-13 20:39:10.672188 0 The size of a product image must be unique. \N \N +245 2024-04-13 20:39:10.936653 0 You cannot change the default unit of measure of a product which is associated with stock moves. \N \N +246 2024-04-13 20:39:10.936653 0 You cannot change the type of a product which is associated with stock moves. \N \N +247 2024-04-13 20:39:10.936653 0 You cannot change the cost price of a product which is associated with stock moves.\nYou must use the "Modify Cost Price" wizard. \N \N +248 2024-04-13 20:39:10.936653 0 Invalid cost price "%(cost_price)s" for product "%(product)s" with exception "%(exception)s". \N \N +249 2024-04-13 20:39:10.936653 0 The value "%(value)s" of "%(cost_price)s" for product "%(product)s" is not a number. \N \N +250 2024-04-13 20:39:10.936653 0 You cannot change the type of location "%(location)s" to "%(type)s"\nbecause the type does not support moves and location has existing moves. \N \N +251 2024-04-13 20:39:10.936653 0 To set location "%(location)s" as storage/input/output of warehouse "%(warehouse)s", it must be in the warehouse. \N \N +252 2024-04-13 20:39:10.936653 0 To inactivate location "%(location)s", you must empty it. \N \N +253 2024-04-13 20:39:10.936653 0 You cannot close periods with a date in the future or today. \N \N +254 2024-04-13 20:39:10.936653 0 You cannot close periods with assigned moves in it. \N \N +255 2024-04-13 20:39:10.936653 0 Planned Date \N \N +256 2024-04-13 20:39:10.936653 0 When the stock operation is expected to be completed. \N \N +257 2024-04-13 20:39:10.936653 0 Origin Planned Date \N \N +258 2024-04-13 20:39:10.936653 0 When the stock operation was initially expected to be completed. \N \N +259 2024-04-13 20:39:10.936653 0 Effective Date \N \N +260 2024-04-13 20:39:10.936653 0 When the stock operation was actually completed. \N \N +261 2024-04-13 20:39:10.936653 0 Delay \N \N +262 2024-04-13 20:39:10.936653 0 To pack shipment "%(shipment)s" you must do the inventory moves. \N \N +263 2024-04-13 20:39:10.936653 0 To delete shipment "%(shipment)s" you must cancel it. \N \N +264 2024-04-13 20:39:10.936653 0 The quantities of shipment "%(shipment)s" are different by %(quantities)s. \N \N +265 2024-04-13 20:39:10.936653 0 To delete inventory "%(inventory)s" you must cancel it. \N \N +266 2024-04-13 20:39:10.936653 0 To confirm the inventory "%(inventory)s" you must select an option for empty quantity. \N \N +267 2024-04-13 20:39:10.936653 0 To confirm the inventory "%(inventory)s" you must set a lost and found on a parent of location "%(location)s". \N \N +268 2024-04-13 20:39:10.936653 0 Inventory line "%(line)s" is not unique on inventory "%(inventory)s". \N \N +269 2024-04-13 20:39:10.936653 0 Inventory line quantity must be positive. \N \N +270 2024-04-13 20:39:10.936653 0 To delete inventory line "%(line)s" you must cancel inventory "%(inventory)s". \N \N +271 2024-04-13 20:39:10.936653 0 No existing line found for "%(search)s". \N \N +272 2024-04-13 20:39:10.936653 0 You cannot erase party "%(party)s" while they have pending shipments with company "%(company)s". \N \N +273 2024-04-13 20:39:10.936653 0 To delete stock move "%(move)s" you must cancel it or reset its state to draft. \N \N +274 2024-04-13 20:39:10.936653 0 To modify stock move "%(move)s" you must reopen period "%(period)s". \N \N +275 2024-04-13 20:39:10.936653 0 To modify stock move "%(move)s" you must reset its state to draft. \N \N +276 2024-04-13 20:39:10.936653 0 You cannot modify stock move "%(move)s" because it is done. \N \N +277 2024-04-13 20:39:10.936653 0 You cannot modify stock move "%(move)s" because it is cancelled. \N \N +278 2024-04-13 20:39:10.936653 0 Stock moves "%(moves)s" have no origin. \N \N +279 2024-04-13 20:39:10.936653 0 Move quantity must be positive. \N \N +280 2024-04-13 20:39:10.936653 0 Internal move quantity must be positive. \N \N +281 2024-04-13 20:39:10.936653 0 The source and destination of stock move must be different. \N \N +282 2024-04-13 20:39:10.936653 0 The moves "%(moves)s" have effective dates in the future. \N \N +283 2024-04-13 20:39:10.936653 0 The inventories "%(inventories)s" have dates in the future. \N \N +284 2024-04-13 20:39:10.936653 0 Company \N \N +285 2024-04-13 20:39:10.936653 0 Number \N \N +286 2024-04-13 20:39:10.936653 0 Cost \N \N +287 2024-04-13 20:39:10.936653 0 Revenue \N \N +288 2024-04-13 20:39:10.936653 0 Profit \N \N +289 2024-04-13 20:39:10.936653 0 Margin \N \N +290 2024-04-13 20:39:10.936653 0 Margin Trend \N \N +291 2024-04-13 20:39:10.936653 0 Currency \N \N +292 2024-04-13 20:39:10.936653 0 The product "%(product)s" has still some quantities in locations "%(locations)s" for company "%(company)s". \N \N +293 2024-04-13 20:39:10.936653 0 It is recommended to clear the stock from the storage locations before deactivating the product. \N \N +294 2024-04-13 20:39:14.878373 0 To save payment term "%(payment_term)s", you must append a last remainder line. \N \N +295 2024-04-13 20:39:14.878373 0 To compute terms, you must append a remainder line on payment term "%(payment_term)s". \N \N +296 2024-04-13 20:39:14.878373 0 The ratio and divisor are not consistent on line "%(line)s". \N \N +297 2024-04-13 20:39:14.878373 0 You cannot erase party "%(party)s" while they have pending invoices with company "%(company)s". \N \N +298 2024-04-13 20:39:14.878373 0 The taxes on invoice "%(invoice)s" are not valid, you must save it again to force them to be recalculated. \N \N +299 2024-04-13 20:39:14.878373 0 To post invoice "%(invoice)s", you must define a sequence on fiscal year "%(fiscalyear)s". \N \N +300 2024-04-13 20:39:14.878373 0 To number the invoice "%(invoice)s", you must set an invoice date after "%(date)s" because the sequence "%(sequence)s" has already been used for invoice "%(after_invoice)s". \N \N +301 2024-04-13 20:39:14.878373 0 You cannot modify invoice "%(invoice)s" because it is posted, paid or cancelled. \N \N +302 2024-04-13 20:39:14.878373 0 To delete invoice "%(invoice)s" you must cancel it. \N \N +303 2024-04-13 20:39:14.878373 0 You cannot delete invoice "%(invoice)s" because it has a number. \N \N +304 2024-04-13 20:39:14.878373 0 You cannot cancel customer invoice "%(invoice)s" because it is posted and company setup does not allow it. \N \N +305 2024-04-13 20:39:14.878373 0 Payment lines amount on invoice "%(invoice)s" can not be greater than the invoice amount. \N \N +306 2024-04-13 20:39:14.878373 0 You cannot add/remove payment lines on paid invoice "%(invoice)s". \N \N +307 2024-04-13 20:39:14.878373 0 You cannot refund invoice "%(invoice)s" because it is not posted. \N \N +308 2024-04-13 20:39:14.878373 0 You cannot modify line "%(line)s" because its invoice "%(invoice)s" is posted, paid or cancelled. \N \N +309 2024-04-13 20:39:14.878373 0 You cannot add lines to invoice "%(invoice)s" because it is no longer in a draft state. \N \N +310 2024-04-13 20:39:14.878373 0 You cannot modify tax "%(tax)s" because its invoice "%(invoice)s" is posted, paid or cancelled. \N \N +311 2024-04-13 20:39:14.878373 0 You cannot add taxes to invoice "%(invoice)s" because it is no longer in a draft state. \N \N +312 2024-04-13 20:39:14.878373 0 A tax can be added only once to an invoice line. \N \N +313 2024-04-13 20:39:14.878373 0 You cannot add a partial payment on invoice "%(invoice)s" with an amount greater than the amount to pay "%(amount_to_pay)s". \N \N +314 2024-04-13 20:39:14.878373 0 You cannot overpay invoice "%(invoice)s" because there is no more left to pay. \N \N +315 2024-04-13 20:39:14.878373 0 A payment line can be linked to only one invoice. \N \N +316 2024-04-13 20:39:14.878373 0 The invoice "%(invoice)s" generates a payment date "%(date)s" in the past. \N \N +317 2024-04-13 20:39:14.878373 0 To close the periods you must post the invoices "%(invoices)s". \N \N +318 2024-04-13 20:39:14.878373 0 The invoices "%(invoices)s" have an invoice date in the future. \N \N +319 2024-04-13 20:39:14.878373 0 The invoice "%(invoice)s" is similar to invoice "%(similar)s". \N \N +320 2024-04-13 20:39:14.878373 0 The moves "%(moves)s" have the posted invoices "%(invoices)s" as origin. \N \N +321 2024-04-13 20:39:14.878373 0 Cancelling them will reconcile the move lines thus paying the invoices. You might want to cancel the invoices first. \N \N +322 2024-04-13 20:39:16.958214 0 You are trying to change the purchase unit of measurer on which the purchase prices are based. \N \N +323 2024-04-13 20:39:16.958214 0 You cannot erase party "%(party)s" while they have pending purchases with company "%(company)s". \N \N +324 2024-04-13 20:39:16.958214 0 To get a quote for the purchase "%(purchase)s" you must enter a warehouse. \N \N +325 2024-04-13 20:39:16.958214 0 To delete purchase "%(purchase)s" you must cancel it. \N \N +326 2024-04-13 20:39:16.958214 0 To process purchase "%(purchase)s" you must set a supplier location on party "%(party)s". \N \N +327 2024-04-13 20:39:16.958214 0 To invoice purchase "%(purchase)s" you must define an account expense for product "%(product)s". \N \N +328 2024-04-13 20:39:16.958214 0 To invoice purchase "%(purchase)s" you must configure a default account expense. \N \N +329 2024-04-13 20:39:16.958214 0 To delete line "%(line)s" you must cancel or reset to draft purchase "%(purchase)s". \N \N +330 2024-04-13 20:39:16.958214 0 The purchase line "%(line)s" is moving %(extra)s in addition to the %(quantity)s ordered. \N \N +331 2024-04-13 20:39:16.958214 0 To modify the header of purchase "%(purchase)s", it must be in draft state. \N \N +332 2024-04-13 20:39:16.958214 0 You cannot reset invoice "%(invoice)s" to draft because it was generated by a purchase. \N \N +333 2024-04-13 20:39:16.958214 0 You cannot reset move "%(move)s" to draft because it was generated by a purchase. \N \N +334 2024-04-13 20:39:16.958214 0 You cannot add lines to purchase "%(purchase)s" because it is no longer in a draft state. \N \N +335 2024-04-13 20:39:16.958214 0 A tax can be added only once to a purchase line. \N \N +336 2024-04-13 20:39:16.958214 0 Company \N \N +337 2024-04-13 20:39:16.958214 0 # \N \N +338 2024-04-13 20:39:16.958214 0 Number of purchases. \N \N +339 2024-04-13 20:39:16.958214 0 Expense \N \N +340 2024-04-13 20:39:16.958214 0 Expense Trend \N \N +341 2024-04-13 20:39:16.958214 0 Currency \N \N +342 2024-04-13 20:39:16.958214 0 Date \N \N +343 2024-04-13 20:39:16.958214 0 Time Series \N \N +344 2024-04-13 20:39:19.14446 0 You cannot erase party "%(party)s" while they have pending sales with company "%(company)s". \N \N +345 2024-04-13 20:39:19.14446 0 You cannot reset invoice "%(invoice)s" to draft because it was generated by a sale. \N \N +346 2024-04-13 20:39:19.14446 0 You cannot reset move "%(move)s" to draft because it was generated by a sale. \N \N +347 2024-04-13 20:39:19.14446 0 You cannot use together invoice "%(invoice_method)s" and shipment "%(shipment_method)s" on sale "%(sale)s". \N \N +348 2024-04-13 20:39:19.14446 0 To get a quote for sale "%(sale)s" you must enter an invoice address. \N \N +349 2024-04-13 20:39:19.14446 0 To get a quote for sale "%(sale)s" you must enter a shipment address. \N \N +350 2024-04-13 20:39:19.14446 0 To get a quote for sale "%(sale)s" you must enter a warehouse. \N \N +351 2024-04-13 20:39:19.14446 0 To delete sale "%(sale)s" you must cancel it. \N \N +352 2024-04-13 20:39:19.14446 0 To process sale "%(sale)s" you must set a customer location on party "%(party)s". \N \N +353 2024-04-13 20:39:19.14446 0 To invoice sale "%(sale)s" you must define an account revenue for product "%(product)s". \N \N +354 2024-04-13 20:39:19.14446 0 To invoice sale "%(sale)s" you must configure a default account revenue. \N \N +355 2024-04-13 20:39:19.14446 0 To delete line "%(line)s" you must cancel or reset to draft sale "%(sale)s". \N \N +356 2024-04-13 20:39:19.14446 0 The sale line "%(line)s" is moving %(extra)s in addition to the %(quantity)s ordered. \N \N +357 2024-04-13 20:39:19.14446 0 To modify the header of sale "%(sale)s", it must be in "draft" state. \N \N +358 2024-04-13 20:39:19.14446 0 You cannot add lines to sale "%(sale)s" because it is no longer in a draft state. \N \N +359 2024-04-13 20:39:19.14446 0 Company \N \N +360 2024-04-13 20:39:19.14446 0 # \N \N +361 2024-04-13 20:39:19.14446 0 Number of sales \N \N +363 2024-04-13 20:39:19.14446 0 Revenue Trend \N \N +364 2024-04-13 20:39:19.14446 0 Currency \N \N +365 2024-04-13 20:39:19.14446 0 Date \N \N +366 2024-04-13 20:39:19.14446 0 Time Series \N \N +367 2024-04-13 20:39:19.14446 0 A tax can be added only once to a sale line. \N \N +368 2024-04-13 20:39:21.814652 0 La linea de envio se encuentra sin serial. Debe asignar un equipo a cada linea correspondiente. \N \N +369 2024-04-13 22:12:02.160011 0 Asigne una secuencia para enumerar equipos. \N \N +\. + + +-- +-- Data for Name: ir_model; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model (id, model, name, info, module, create_date, create_uid, global_search_p, write_date, write_uid) FROM stdin; +1 ir.configuration Configuration Configuration ir 2024-04-13 20:27:31.500204 0 \N \N \N +2 ir.translation Translation Translation ir 2024-04-13 20:27:31.500204 0 \N \N \N +3 ir.translation.set.start Set Translation Set Translation ir 2024-04-13 20:27:31.500204 0 \N \N \N +4 ir.translation.set.succeed Set Translation Set Translation ir 2024-04-13 20:27:31.500204 0 \N \N \N +5 ir.translation.clean.start Clean translation Clean translation ir 2024-04-13 20:27:31.500204 0 \N \N \N +6 ir.translation.clean.succeed Clean translation Clean translation ir 2024-04-13 20:27:31.500204 0 \N \N \N +7 ir.translation.update.start Update translation Update translation ir 2024-04-13 20:27:31.500204 0 \N \N \N +8 ir.translation.export.start Export translation Export translation ir 2024-04-13 20:27:31.500204 0 \N \N \N +9 ir.translation.export.result Export translation Export translation ir 2024-04-13 20:27:31.500204 0 \N \N \N +10 ir.sequence.type Sequence type Sequence type ir 2024-04-13 20:27:31.500204 0 \N \N \N +11 ir.sequence Sequence Sequence ir 2024-04-13 20:27:31.500204 0 \N \N \N +12 ir.sequence.strict Sequence Strict Sequence Strict ir 2024-04-13 20:27:31.500204 0 \N \N \N +13 ir.ui.menu UI menu UI menu ir 2024-04-13 20:27:31.500204 0 \N \N \N +117 party.configuration.party_sequence Party Configuration Sequence Party Configuration Sequence party \N \N f \N \N +118 party.configuration.party_lang Party Configuration Lang Party Configuration Lang party \N \N f \N \N +139 account.general_ledger.line General Ledger Line General Ledger Line account \N \N f \N \N +140 account.general_ledger.line.context General Ledger Line Context General Ledger Line Context account \N \N f \N \N +141 account.balance_sheet.context Balance Sheet Context Balance Sheet Context account \N \N f \N \N +142 account.balance_sheet.comparison.context Balance Sheet Context Balance Sheet Context account \N \N f \N \N +143 account.income_statement.context Income Statement Context Income Statement Context account \N \N f \N \N +144 account.create_chart.start Create Chart Create Chart account \N \N f \N \N +145 account.create_chart.account Create Chart Create Chart account \N \N f \N \N +146 account.create_chart.properties Create Chart Create Chart account \N \N f \N \N +192 account.move.template Account Move Template Account Move Template account \N \N f \N \N +193 account.move.template.keyword Account Move Template Keyword Account Move Template Keyword account \N \N f \N \N +194 account.move.line.template Account Move Line Template Account Move Line Template account \N \N f \N \N +195 account.tax.line.template Account Tax Line Template Account Tax Line Template account \N \N f \N \N +196 account.move.template.create.template Create Move from Template Create Move from Template account \N \N f \N \N +197 account.move.template.create.keywords Create Move from Template Create Move from Template account \N \N f \N \N +198 party.party.account Party Account Party Account account \N \N f \N \N +199 account.fiscalyear.create_periods.start Create Periods Start Create Periods Start account \N \N f \N \N +200 account.fiscalyear.renew.start Renew Fiscal Year Start Renew Fiscal Year Start account \N \N f \N \N +276 account.invoice.report.revision Invoice Report Revision Invoice Report Revision account_invoice \N \N f \N \N +277 party.party.payment_term Party Payment Term Party Payment Term account_invoice \N \N f \N \N +364 optical_equipment.maintenance Equipment Maintenance Line Equipment Maintenance Line optical_equipment \N \N f \N \N +150 account.aged_balance Aged Balance Aged Balance account \N \N f \N \N +151 account.configuration Account Configuration Account Configuration account \N \N f \N \N +152 account.configuration.default_account Account Configuration Default Account Account Configuration Default Account account \N \N f \N \N +153 account.configuration.default_tax_rule Account Configuration Default Tax Rule Account Configuration Default Tax Rule account \N \N f \N \N +154 account.configuration.sequence Account Configuration Sequence Account Configuration Sequence account \N \N f \N \N +155 account.configuration.journal Account Configuration Journal Account Configuration Journal account \N \N f \N \N +14 ir.ui.menu.favorite Menu Favorite Menu Favorite ir 2024-04-13 20:27:31.500204 0 \N \N \N +15 ir.ui.view View View ir 2024-04-13 20:27:31.500204 0 \N \N \N +77 res.group Group Group res \N \N f \N \N +78 res.user User User res \N \N f \N \N +79 res.user.login.attempt Login Attempt Login Attempt\n\n This class is separated from the res.user one in order to prevent locking\n the res.user table when in a long running process.\n res \N \N f \N \N +80 res.user.device User Device User Device res \N \N f \N \N +93 country.organization Organization Organization country \N \N f \N \N +94 country.organization.member Organization Member Organization Member country \N \N f \N \N +95 country.region Region Region country \N \N f \N \N +96 country.country Country Country country \N \N f \N \N +97 country.subdivision Subdivision Subdivision country \N \N f \N \N +98 country.postal_code Postal Code Postal Code country \N \N f \N \N +99 currency.currency Currency Currency currency \N \N f \N \N +100 currency.currency.rate Currency Rate Currency Rate currency \N \N f \N \N +101 currency.cron Currency Cron Currency Cron currency \N \N f \N \N +102 currency.cron-currency.currency Currency Cron - Currency Currency Cron - Currency currency \N \N f \N \N +16 ir.ui.view.show.start Show view Show view ir 2024-04-13 20:27:31.500204 0 \N \N \N +17 ir.ui.view_tree_width View Tree Width View Tree Width ir 2024-04-13 20:27:31.500204 0 \N \N \N +18 ir.ui.view_tree_optional View Tree Optional View Tree Optional ir 2024-04-13 20:27:31.500204 0 \N \N \N +19 ir.ui.view_tree_state View Tree State View Tree State ir 2024-04-13 20:27:31.500204 0 \N \N \N +20 ir.ui.view_search View Search View Search ir 2024-04-13 20:27:31.500204 0 \N \N \N +21 ir.ui.icon Icon Icon ir 2024-04-13 20:27:31.500204 0 \N \N \N +22 ir.action Action Action ir 2024-04-13 20:27:31.500204 0 \N \N \N +23 ir.action.keyword Action keyword Action keyword ir 2024-04-13 20:27:31.500204 0 \N \N \N +24 ir.action.report Action report Action report ir 2024-04-13 20:27:31.500204 0 \N \N \N +25 ir.action.act_window Action act window Action act window ir 2024-04-13 20:27:31.500204 0 \N \N \N +26 ir.action.act_window.view Action act window view Action act window view ir 2024-04-13 20:27:31.500204 0 \N \N \N +27 ir.action.act_window.domain Action act window domain Action act window domain ir 2024-04-13 20:27:31.500204 0 \N \N \N +28 ir.action.wizard Action wizard Action wizard ir 2024-04-13 20:27:31.500204 0 \N \N \N +29 ir.action.url Action URL Action URL ir 2024-04-13 20:27:31.500204 0 \N \N \N +30 ir.model Model Model ir 2024-04-13 20:27:31.500204 0 \N \N \N +103 party.category Category Category party \N \N f \N \N +104 party.party Party Party party \N \N f \N \N +105 party.party.lang Party Lang Party Lang party \N \N f \N \N +106 party.party-party.category Party - Category Party - Category party \N \N f \N \N +107 party.identifier Party Identifier Party Identifier party \N \N f \N \N +108 party.check_vies.result Check VIES Check VIES party \N \N f \N \N +109 party.replace.ask Replace Party Replace Party party \N \N f \N \N +110 party.erase.ask Erase Party Erase Party party \N \N f \N \N +148 account.update_chart.succeed Update Chart Update Chart account \N \N f \N \N +149 account.aged_balance.context Aged Balance Context Aged Balance Context account \N \N f \N \N +156 account.period Period Period account \N \N f \N \N +157 account.journal Journal Journal account \N \N f \N \N +158 account.journal.sequence Journal Sequence Journal Sequence account \N \N f \N \N +159 account.journal.open_cash.context Journal Cash Context Journal Cash Context account \N \N f \N \N +160 account.journal.period Journal - Period Journal - Period account \N \N f \N \N +161 account.move Account Move Account Move account \N \N f \N \N +34 ir.model.button Model Button Model Button ir \N \N f \N \N +81 res.user-ir.action User - Action User - Action res \N \N f \N \N +82 res.user-res.group User - Group User - Group res \N \N f \N \N +83 res.user.warning User Warning User Warning res \N \N f \N \N +84 res.user.application User Application User Application res \N \N f \N \N +85 res.user.config.start User Config Init User Config Init res \N \N f \N \N +318 product.sale.context Product Sale Context Product Sale Context sale \N \N f \N \N +319 sale.handle.shipment.exception.ask Handle Shipment Exception Handle Shipment Exception sale \N \N f \N \N +320 sale.handle.invoice.exception.ask Handle Invoice Exception Handle Invoice Exception sale \N \N f \N \N +321 sale.return_sale.start Return Sale Return Sale sale \N \N f \N \N +322 sale.configuration Sale Configuration Sale Configuration sale \N \N f \N \N +323 sale.configuration.sequence Sale Configuration Sequence Sale Configuration Sequence sale \N \N f \N \N +324 sale.configuration.sale_method Sale Configuration Sale Method Sale Configuration Sale Method sale \N \N f \N \N +325 sale.reporting.context Sale Reporting Context Sale Reporting Context sale \N \N f \N \N +326 sale.reporting.main Sale Reporting Sale Reporting sale \N \N f \N \N +327 sale.reporting.main.time_series Sale Reporting Sale Reporting sale \N \N f \N \N +328 sale.reporting.customer Sale Reporting per Customer Sale Reporting per Customer sale \N \N f \N \N +329 sale.reporting.customer.time_series Sale Reporting per Customer Sale Reporting per Customer sale \N \N f \N \N +330 sale.reporting.customer.category Sale Reporting per Customer Category Sale Reporting per Customer Category sale \N \N f \N \N +331 sale.reporting.customer.category.time_series Sale Reporting per Customer Category Sale Reporting per Customer Category sale \N \N f \N \N +332 sale.reporting.customer.category.tree Sale Reporting per Customer Category Sale Reporting per Customer Category sale \N \N f \N \N +333 sale.reporting.product Sale Reporting per Product Sale Reporting per Product sale \N \N f \N \N +334 sale.reporting.product.time_series Sale Reporting per Product Sale Reporting per Product sale \N \N f \N \N +335 sale.reporting.product.category Sale Reporting per Product Category Sale Reporting per Product Category sale \N \N f \N \N +336 sale.reporting.product.category.time_series Sale Reporting per Product Category Sale Reporting per Product Category sale \N \N f \N \N +86 ir.ui.menu-res.group UI Menu - Group UI Menu - Group res \N \N f \N \N +87 ir.action-res.group Action - Group Action - Group res \N \N f \N \N +88 ir.model.button-res.group Model Button - Group Model Button - Group res \N \N f \N \N +89 ir.rule.group-res.group Rule Group - Group Rule Group - Group res \N \N f \N \N +90 ir.sequence.type-res.group Sequence Type - Group Sequence Type - Group res \N \N f \N \N +91 ir.export-res.group Export Group Export Group res \N \N f \N \N +92 ir.export-write-res.group Export Modification Group Export Modification Group res \N \N f \N \N +125 account.fiscalyear Fiscal Year Fiscal Year account \N \N f \N \N +126 account.fiscalyear.balance_non_deferral.start Balance Non-Deferral Balance Non-Deferral account \N \N f \N \N +127 account.account.type.template Account Type Template Account Type Template account \N \N f \N \N +128 account.account.type Account Type Account Type account \N \N f \N \N +129 account.account.template Account Template Account Template account \N \N f \N \N +162 account.move.reconciliation Account Move Reconciliation Lines Account Move Reconciliation Lines account \N \N f \N \N +306 purchase.reporting.product.time_series Purchase Reporting per Product Purchase Reporting per Product purchase \N \N f \N \N +316 product.configuration.default_lead_time Product Default Lead Time Product Default Lead Time sale \N \N f \N \N +31 ir.model.field Model field Model field ir \N \N f \N \N +32 ir.model.access Model access Model access ir \N \N f \N \N +33 ir.model.field.access Model Field Access Model Field Access ir \N \N f \N \N +35 ir.model.button.rule Model Button Rule Model Button Rule ir \N \N f \N \N +36 ir.model.button.click Model Button Click Model Button Click ir \N \N f \N \N +37 ir.model.button-button.reset Model Button Reset Model Button Reset ir \N \N f \N \N +179 account.tax.code Tax Code Tax Code account \N \N f \N \N +202 product.uom Unit of Measure Unit of Measure product \N \N f \N \N +214 product.category.account Category Account Category Account account_product \N \N f \N \N +215 product.category-customer-account.tax Category - Customer Tax Category - Customer Tax account_product \N \N f \N \N +216 product.category-supplier-account.tax Category - Supplier Tax Category - Supplier Tax account_product \N \N f \N \N +222 product.image.cache Product Image Cache Product Image Cache product_image \N \N f \N \N +223 stock.location Stock Location Stock Location stock \N \N f \N \N +224 stock.location.waste Warehouse Waste Location Warehouse Waste Location stock \N \N f \N \N +225 stock.products_by_locations.context Products by Locations Products by Locations stock \N \N f \N \N +226 stock.products_by_locations Products by Locations Products by Locations stock \N \N f \N \N +232 stock.shipment.out.return Customer Return Shipment Customer Return Shipment stock \N \N f \N \N +337 sale.reporting.product.category.tree Sale Reporting per Product Category Sale Reporting per Product Category sale \N \N f \N \N +338 sale.reporting.region.tree Sale Reporting per Region Sale Reporting per Region sale \N \N f \N \N +339 sale.reporting.country Sale Reporting per Country Sale Reporting per Country sale \N \N f \N \N +340 sale.reporting.country.time_series Sale Reporting per Country Sale Reporting per Country sale \N \N f \N \N +341 sale.reporting.country.subdivision Sale Reporting per Subdivision Sale Reporting per Subdivision sale \N \N f \N \N +342 sale.reporting.country.subdivision.time_series Sale Reporting per Subdivision Sale Reporting per Subdivision sale \N \N f \N \N +343 sale.reporting.country.tree Sale Reporting per Country Sale Reporting per Country sale \N \N f \N \N +38 ir.model.data Model data Model data ir \N \N f \N \N +227 stock.location.lead_time Location Lead Time Location Lead Time stock \N \N f \N \N +228 stock.move Stock Move Stock Move stock \N \N f \N \N +229 stock.shipment.in Supplier Shipment Supplier Shipment stock \N \N f \N \N +230 stock.shipment.in.return Supplier Return Shipment Supplier Return Shipment stock \N \N f \N \N +233 stock.shipment.internal Internal Shipment Internal Shipment stock \N \N f \N \N +39 ir.model.log Log Log ir \N \N f \N \N +40 ir.model.print_model_graph.start Print Model Graph Print Model Graph ir \N \N f \N \N +41 ir.attachment Attachment Attachment ir \N \N f \N \N +42 ir.note Note Note ir \N \N f \N \N +43 ir.note.read Note Read Note Read ir \N \N f \N \N +44 ir.avatar Avatar Avatar ir \N \N f \N \N +45 ir.avatar.cache Avatar Cache Avatar Cache ir \N \N f \N \N +217 product.template-product.category.account Template - Account Category Template - Account Category account_product \N \N f \N \N +218 product.attribute.set Product Attribute Set Product Attribute Set product_attribute \N \N f \N \N +219 product.attribute Product Attribute Product Attribute product_attribute \N \N f \N \N +220 product.attribute-product.attribute-set Product Attribute - Set Product Attribute - Set product_attribute \N \N f \N \N +221 product.image Product Image Product Image product_image \N \N f \N \N +231 stock.shipment.out Customer Shipment Customer Shipment stock \N \N f \N \N +234 stock.shipment.assign.partial Assign Shipment Assign Shipment stock \N \N f \N \N +235 party.party.location Party Location Party Location stock \N \N f \N \N +237 stock.period Stock Period Stock Period stock \N \N f \N \N +46 ir.cron Cron Cron ir \N \N f \N \N +47 ir.lang Language Language ir \N \N f \N \N +48 ir.lang.config.start Configure languages Configure languages ir \N \N f \N \N +49 ir.export Export Export ir \N \N f \N \N +50 ir.export.line Export line Export line ir \N \N f \N \N +51 ir.rule.group Rule group Rule group ir \N \N f \N \N +52 ir.rule Rule Rule ir \N \N f \N \N +53 ir.module Module Module ir \N \N f \N \N +54 ir.module.dependency Module dependency Module dependency ir \N \N f \N \N +119 company.company Company Company company \N \N f \N \N +286 purchase.line-account.tax Purchase Line - Tax Purchase Line - Tax purchase \N \N f \N \N +287 purchase.line-ignored-stock.move Purchase Line - Ignored Move Purchase Line - Ignored Move purchase \N \N f \N \N +288 purchase.line-recreated-stock.move Purchase Line - Ignored Move Purchase Line - Ignored Move purchase \N \N f \N \N +289 purchase.product_supplier Product Supplier Product Supplier purchase \N \N f \N \N +290 purchase.product_supplier.price Product Supplier Price Product Supplier Price purchase \N \N f \N \N +291 purchase.handle.shipment.exception.ask Handle Shipment Exception Handle Shipment Exception purchase \N \N f \N \N +292 purchase.handle.invoice.exception.ask Handle Invoice Exception Handle Invoice Exception purchase \N \N f \N \N +293 purchase.configuration Purchase Configuration Purchase Configuration purchase \N \N f \N \N +294 purchase.configuration.sequence Purchase Configuration Sequence Purchase Configuration Sequence purchase \N \N f \N \N +295 purchase.configuration.purchase_method Purchase Configuration Purchase Method Purchase Configuration Purchase Method purchase \N \N f \N \N +296 party.party.customer_code Party Customer Code Party Customer Code purchase \N \N f \N \N +55 ir.module.config_wizard.item Config wizard to run after activating a module Config wizard to run after activating a module ir \N \N f \N \N +56 ir.module.config_wizard.first Module Config Wizard First Module Config Wizard First ir \N \N f \N \N +57 ir.module.config_wizard.other Module Config Wizard Other Module Config Wizard Other ir \N \N f \N \N +58 ir.module.config_wizard.done Module Config Wizard Done Module Config Wizard Done ir \N \N f \N \N +59 ir.module.activate_upgrade.start Module Activate Upgrade Start Module Activate Upgrade Start ir \N \N f \N \N +60 ir.module.activate_upgrade.done Module Activate Upgrade Done Module Activate Upgrade Done ir \N \N f \N \N +61 ir.module.config.start Configure Modules Configure Modules ir \N \N f \N \N +62 ir.cache Cache Cache ir \N \N f \N \N +63 ir.date Date Date ir \N \N f \N \N +64 ir.trigger Trigger Trigger ir \N \N f \N \N +65 ir.trigger.log Trigger Log Trigger Log ir \N \N f \N \N +66 ir.session Session Session ir \N \N f \N \N +67 ir.session.wizard Session Wizard Session Wizard ir \N \N f \N \N +68 ir.queue Queue Queue ir \N \N f \N \N +69 ir.calendar.month Month Month ir \N \N f \N \N +70 ir.calendar.day Day Day ir \N \N f \N \N +120 company.employee Employee Employee company \N \N f \N \N +121 company.company.config.start Company Config Company Config company \N \N f \N \N +122 res.user-company.company User - Company User - Company company \N \N f \N \N +123 res.user-company.employee User - Employee User - Employee company \N \N f \N \N +124 ir.cron-company.company Cron - Company Cron - Company company \N \N f \N \N +130 account.account.template-account.tax.template Account Template - Tax Template Account Template - Tax Template account \N \N f \N \N +131 account.account Account Account account \N \N f \N \N +132 account.account.party Account Party Account Party account \N \N f \N \N +266 account.invoice Invoice Invoice account_invoice \N \N f \N \N +281 account.invoice.line-stock.move Invoice Line - Stock Move Invoice Line - Stock Move account_invoice_stock \N \N f \N \N +282 purchase.purchase Purchase Purchase purchase \N \N f \N \N +283 purchase.purchase-ignored-account.invoice Purchase - Ignored Invoice Purchase - Ignored Invoice purchase \N \N f \N \N +284 purchase.purchase-recreated-account.invoice Purchase - Recreated Invoice Purchase - Recreated Invoice purchase \N \N f \N \N +285 purchase.line Purchase Line Purchase Line purchase \N \N f \N \N +297 party.party.supplier_lead_time Supplier Lead Time Supplier Lead Time purchase \N \N f \N \N +71 ir.message Message Message ir \N \N f \N \N +72 ir.email Email Email ir \N \N f \N \N +73 ir.email.address Email Address Email Address ir \N \N f \N \N +74 ir.email.template Email Template Email Template ir \N \N f \N \N +75 ir.email.template-ir.action.report Email Template - Report Email Template - Report ir \N \N f \N \N +76 ir.error Error Error ir \N \N f \N \N +163 account.configuration.tax_rounding Account Configuration Tax Rounding Account Configuration Tax Rounding account \N \N f \N \N +164 account.move.line Account Move Line Account Move Line account \N \N f \N \N +165 account.move.line.receivable_payable.context Receivable/Payable Line Context Receivable/Payable Line Context account \N \N f \N \N +166 account.move.reconcile.write_off Reconcile Write Off Reconcile Write Off account \N \N f \N \N +167 account.move.open_journal.ask Open Journal Ask Open Journal Ask account \N \N f \N \N +168 account.move.reconcile_lines.writeoff Reconcile Lines Write-Off Reconcile Lines Write-Off account \N \N f \N \N +169 account.reconcile.start Reconcile Reconcile account \N \N f \N \N +170 account.reconcile.show Reconcile Reconcile account \N \N f \N \N +171 account.move.cancel.default Cancel Moves Cancel Moves account \N \N f \N \N +172 account.move.line.group.start Group Lines Group Lines account \N \N f \N \N +173 account.move.line.reschedule.start Reschedule Lines Reschedule Lines account \N \N f \N \N +174 account.move.line.reschedule.preview Reschedule Lines Reschedule Lines account \N \N f \N \N +175 account.move.line.reschedule.term Reschedule Lines Reschedule Lines account \N \N f \N \N +176 account.move.line.delegate.start Delegate Lines Delegate Lines account \N \N f \N \N +177 account.tax.group Tax Group Tax Group account \N \N f \N \N +178 account.tax.code.template Tax Code Template Tax Code Template account \N \N f \N \N +180 account.tax.code.line.template Tax Code Line Template Tax Code Line Template account \N \N f \N \N +181 account.tax.code.line Tax Code Line Tax Code Line account \N \N f \N \N +182 account.tax.code.context Tax Code Context Tax Code Context account \N \N f \N \N +183 account.tax.template Account Tax Template Account Tax Template account \N \N f \N \N +184 account.tax Account Tax \n Account Tax\n\n Type:\n percentage: tax = price * rate\n fixed: tax = amount\n none: tax = none\n account \N \N f \N \N +185 account.tax.line Tax Line Tax Line account \N \N f \N \N +186 account.tax.rule.template Tax Rule Template Tax Rule Template account \N \N f \N \N +187 account.tax.rule Tax Rule Tax Rule account \N \N f \N \N +188 account.tax.rule.line.template Tax Rule Line Template Tax Rule Line Template account \N \N f \N \N +189 account.tax.rule.line Tax Rule Line Tax Rule Line account \N \N f \N \N +190 account.tax.test Test Tax Test Tax account \N \N f \N \N +191 account.tax.test.result Test Tax Test Tax account \N \N f \N \N +201 product.uom.category Unit of Measure Category Unit of Measure Category product \N \N f \N \N +203 product.category Product Category Product Category product \N \N f \N \N +344 optical_equipment.equipment Optical Equipment Optical Equipment optical_equipment \N \N f \N \N +111 party.address Address Address party \N \N f \N \N +112 party.address.format Address Format Address Format party \N \N f \N \N +113 party.address.subdivision_type Address Subdivision Type Address Subdivision Type party \N \N f \N \N +114 party.contact_mechanism Contact Mechanism Contact Mechanism party \N \N f \N \N +115 party.contact_mechanism.language Contact Mechanism Language Contact Mechanism Language party \N \N f \N \N +116 party.configuration Party Configuration Party Configuration party \N \N f \N \N +238 stock.period.cache Stock Period Cache \n Stock Period Cache\n\n It is used to store cached computation of stock quantities.\n stock \N \N f \N \N +239 product.by_location.context Product by Location Product by Location stock \N \N f \N \N +240 stock.product_quantities_warehouse Product Quantities By Warehouse Product Quantities By Warehouse stock \N \N f \N \N +241 stock.product_quantities_warehouse.context Product Quantities By Warehouse Product Quantities By Warehouse stock \N \N f \N \N +264 account.invoice.payment_term.test Test Payment Term Test Payment Term account_invoice \N \N f \N \N +265 account.invoice.payment_term.test.result Test Payment Term Test Payment Term account_invoice \N \N f \N \N +267 account.invoice-additional-account.move Invoice Additional Move Invoice Additional Move account_invoice \N \N f \N \N +268 account.invoice.alternative_payee Invoice Alternative Payee Invoice Alternative Payee account_invoice \N \N f \N \N +269 account.invoice-account.move.line Invoice - Payment Line Invoice - Payment Line account_invoice \N \N f \N \N +298 party.party.supplier_currency Party Supplier Currency Party Supplier Currency purchase \N \N f \N \N +299 purchase.return_purchase.start Return Purchase Return Purchase purchase \N \N f \N \N +300 purchase.reporting.context Purchase Reporting Context Purchase Reporting Context purchase \N \N f \N \N +133 account.account.deferral Account Deferral \n Account Deferral\n\n It is used to deferral the debit/credit of account by fiscal year.\n account \N \N f \N \N +134 account.account-account.tax Account - Tax Account - Tax account \N \N f \N \N +135 account.account.context Account Context Account Context account \N \N f \N \N +136 account.general_ledger.account General Ledger Account General Ledger Account account \N \N f \N \N +137 account.general_ledger.account.context General Ledger Account Context General Ledger Account Context account \N \N f \N \N +138 account.general_ledger.account.party General Ledger Account Party General Ledger Account Party account \N \N f \N \N +204 product.template Product Template Product Template product \N \N f \N \N +205 product.product Product Variant Product Variant product \N \N f \N \N +206 product.identifier Product Identifier Product Identifier product \N \N f \N \N +207 product.list_price Product List Price Product List Price product \N \N f \N \N +208 product.cost_price_method Product Cost Price Method Product Cost Price Method product \N \N f \N \N +209 product.cost_price Product Cost Price Product Cost Price product \N \N f \N \N +210 product.template-product.category Template - Category Template - Category product \N \N f \N \N +211 product.template-product.category.all Template - Category All Template - Category All product \N \N f \N \N +212 product.configuration Product Configuration Product Configuration product \N \N f \N \N +213 product.configuration.default_cost_price_method Product Configuration Default Cost Price Method Product Configuration Default Cost Price Method product \N \N f \N \N +236 party.party-delivered_to-stock.location Party Delivered to Warehouse Party Delivered to Warehouse stock \N \N f \N \N +243 product.recompute_cost_price.start Recompute Cost Price Recompute Cost Price stock \N \N f \N \N +261 account.invoice.payment_term Payment Term Payment Term account_invoice \N \N f \N \N +262 account.invoice.payment_term.line Payment Term Line Payment Term Line account_invoice \N \N f \N \N +263 account.invoice.payment_term.line.delta Payment Term Line Relative Delta Payment Term Line Relative Delta account_invoice \N \N f \N \N +270 account.invoice.line Invoice Line Invoice Line account_invoice \N \N f \N \N +271 account.invoice.line-account.tax Invoice Line - Tax Invoice Line - Tax account_invoice \N \N f \N \N +272 account.invoice.tax Invoice Tax Invoice Tax account_invoice \N \N f \N \N +273 account.invoice.pay.start Pay Invoice Pay Invoice account_invoice \N \N f \N \N +274 account.invoice.pay.ask Pay Invoice Pay Invoice account_invoice \N \N f \N \N +275 account.invoice.credit.start Credit Invoice Credit Invoice account_invoice \N \N f \N \N +348 optical_equipment.contract-optical_equipment.equipment Optical Equipment - Contracs Equipment Optical Equipment - Contracs Equipment optical_equipment \N \N f \N \N +349 optical_equipment.maintenance-optical_equipment.equipment Optical Equipment - Equipment - Maintenance Optical Equipment - Equipment - Maintenance optical_equipment \N \N f \N \N +350 optical_equipment.change_propietary.form Change of Propietary Equipment Change of Propietary Equipment optical_equipment \N \N f \N \N +351 optical_equipment.equipment-change_propietary.form Change Equipment Change Equipment optical_equipment \N \N f \N \N +352 optical_equipment_maintenance.agended Agended maintenance service Agended maintenance service optical_equipment \N \N f \N \N +353 optical_equipment_maintenance.reagended Agended maintenance service Agended maintenance service optical_equipment \N \N f \N \N +354 optical_equipment_maintenance.service-maintenance.diary Service Maintenance - Agended Service Maintenance - Agended optical_equipment \N \N f \N \N +355 optical_equipment.maintenance.calibration Calibration of Maintenance Calibration of Maintenance optical_equipment \N \N f \N \N +356 optical_equipment.maintenance.calibration_sample Samples of Calibration Samples of Calibration optical_equipment \N \N f \N \N +357 optical_equipment.configuration Equipment Configuration Equipment Configuration optical_equipment \N \N f \N \N +358 optical_equipment_maintenance.diary Diary Diary optical_equipment \N \N f \N \N +359 optical_equipment_create.contract Create Contract Inicial Create Contract Inicial optical_equipment \N \N f \N \N +360 optical_equipment.product_pattern Pattern K of equipment Pattern K of equipment optical_equipment \N \N f \N \N +361 optical_equipment.use_pattern Use Pattern Use Pattern optical_equipment \N \N f \N \N +147 account.update_chart.start Update Chart Update Chart account \N \N f \N \N +242 stock.product_quantities_warehouse.move Product Quantities By Warehouse Moves Product Quantities By Warehouse Moves stock \N \N f \N \N +244 product.cost_price.revision Product Cost Price Revision Product Cost Price Revision stock \N \N f \N \N +245 product.modify_cost_price.start Modify Cost Price Modify Cost Price stock \N \N f \N \N +246 stock.inventory Stock Inventory Stock Inventory stock \N \N f \N \N +247 stock.inventory.line Stock Inventory Line Stock Inventory Line stock \N \N f \N \N +248 stock.inventory.count.search Stock Inventory Count Stock Inventory Count stock \N \N f \N \N +249 stock.inventory.count.quantity Stock Inventory Count Stock Inventory Count stock \N \N f \N \N +250 stock.configuration Stock Configuration Stock Configuration stock \N \N f \N \N +251 stock.configuration.sequence Stock Configuration Sequence Stock Configuration Sequence stock \N \N f \N \N +252 stock.configuration.location Stock Configuration Location Stock Configuration Location stock \N \N f \N \N +253 stock.reporting.margin.context Stock Reporting Margin Context Stock Reporting Margin Context stock \N \N f \N \N +254 stock.reporting.margin.main Stock Reporting Margin Stock Reporting Margin stock \N \N f \N \N +255 stock.reporting.margin.main.time_series Stock Reporting Margin Stock Reporting Margin stock \N \N f \N \N +307 sale.sale Sale Sale sale \N \N f \N \N +310 sale.line Sale Line Sale Line sale \N \N f \N \N +345 optical_equipment.equipment-party.party Optical Equipment - Party Optical Equipment - Party optical_equipment \N \N f \N \N +362 optical_equipment.confirm_sale_date.form Confirmacíon Fecha de Venta Confirmacíon Fecha de Venta optical_equipment \N \N f \N \N +363 optical_equipment_maintenance.service Equipment Maintenance Service Equipment Maintenance Service optical_equipment \N \N f \N \N +346 optical_equipment.contract Contracts Contracts optical_equipment \N \N f \N \N +347 optical_equipment_maintenance.service-equipment.contract Contract - Maintenance Services Contract - Maintenance Services optical_equipment \N \N f \N \N +256 stock.reporting.margin.product Stock Reporting Margin per Product Stock Reporting Margin per Product stock \N \N f \N \N +257 stock.reporting.margin.product.time_series Stock Reporting Margin per Product Stock Reporting Margin per Product stock \N \N f \N \N +258 stock.reporting.margin.category Stock Reporting Margin per Category Stock Reporting Margin per Category stock \N \N f \N \N +259 stock.reporting.margin.category.time_series Stock Reporting Margin per Category Stock Reporting Margin per Category stock \N \N f \N \N +260 stock.reporting.margin.category.tree Stock Reporting Margin per Category Stock Reporting Margin per Category stock \N \N f \N \N +278 account.configuration.default_payment_term Account Configuration Default Payment Term Account Configuration Default Payment Term account_invoice \N \N f \N \N +279 account.fiscalyear.invoice_sequence Invoice Sequence Invoice Sequence account_invoice \N \N f \N \N +280 account.invoice.payment.method Payment Method Payment Method account_invoice \N \N f \N \N +301 purchase.reporting.main Purchase Reporting Purchase Reporting purchase \N \N f \N \N +302 purchase.reporting.main.time_series Purchase Reporting Purchase Reporting purchase \N \N f \N \N +303 purchase.reporting.supplier Purchase Reporting per Supplier Purchase Reporting per Supplier purchase \N \N f \N \N +304 purchase.reporting.supplier.time_series Purchase Reporting per Supplier Purchase Reporting per Supplier purchase \N \N f \N \N +305 purchase.reporting.product Purchase Reporting per Product Purchase Reporting per Product purchase \N \N f \N \N +308 sale.sale-ignored-account.invoice Sale - Ignored Invoice Sale - Ignored Invoice sale \N \N f \N \N +309 sale.sale-recreated-account.invoice Sale - Recreated Invoice Sale - Recreated Invoice sale \N \N f \N \N +311 sale.line-account.tax Sale Line - Tax Sale Line - Tax sale \N \N f \N \N +312 sale.line-ignored-stock.move Sale Line - Ignored Move Sale Line - Ignored Move sale \N \N f \N \N +313 sale.line-recreated-stock.move Sale Line - Recreated Move Sale Line - Recreated Move sale \N \N f \N \N +314 party.party.customer_currency Party Customer Currency Party Customer Currency sale \N \N f \N \N +315 party.party.sale_method Party Sale Method Party Sale Method sale \N \N f \N \N +317 product.lead_time Product Lead Time Product Lead Time sale \N \N f \N \N +365 optical_equipment.maintenance.line Maintenance Line Maintenance Line optical_equipment \N \N f \N \N +366 optical_equipment_maintenance.activity Maintenance Activitys Maintenance Activitys optical_equipment \N \N f \N \N +367 optical_equipment.change_propietary_maintenance.form Change of Propietary Equipment Change of Propietary Equipment optical_equipment \N \N f \N \N +368 optical_equipment.print_balance_sale_party.start Balance Party Start Balance Party Start optical_equipment \N \N f \N \N +\. + + +-- +-- Data for Name: ir_model_access; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model_access (id, active, create_date, create_uid, description, "group", model, perm_create, perm_delete, perm_read, perm_write, write_date, write_uid) FROM stdin; +1 t 2024-04-13 20:27:30.723827 0 \N \N 72 t f t f \N \N +2 t 2024-04-13 20:27:35.518366 0 \N \N 77 f f t f \N \N +3 t 2024-04-13 20:27:35.518366 0 \N 1 77 t t t t \N \N +4 t 2024-04-13 20:27:35.518366 0 \N \N 78 f f t f \N \N +5 t 2024-04-13 20:27:35.518366 0 \N 1 78 t t t t \N \N +6 t 2024-04-13 20:27:35.518366 0 \N \N 10 f f t f \N \N +7 t 2024-04-13 20:27:35.518366 0 \N 1 10 t t t t \N \N +8 t 2024-04-13 20:27:35.518366 0 \N \N 21 f f t f \N \N +9 t 2024-04-13 20:27:35.518366 0 \N 1 21 t t t t \N \N +10 t 2024-04-13 20:27:35.518366 0 \N \N 13 f f t f \N \N +11 t 2024-04-13 20:27:35.518366 0 \N 1 13 t t t t \N \N +12 t 2024-04-13 20:27:35.518366 0 \N \N 14 f f t f \N \N +13 t 2024-04-13 20:27:35.518366 0 \N 1 14 t t t t \N \N +14 t 2024-04-13 20:27:35.518366 0 \N \N 15 f f t f \N \N +15 t 2024-04-13 20:27:35.518366 0 \N 1 15 t t t t \N \N +16 t 2024-04-13 20:27:35.518366 0 \N \N 22 f f t f \N \N +17 t 2024-04-13 20:27:35.518366 0 \N 1 22 t t t t \N \N +18 t 2024-04-13 20:27:35.518366 0 \N \N 30 f f t f \N \N +19 t 2024-04-13 20:27:35.518366 0 \N 1 30 t t t t \N \N +20 t 2024-04-13 20:27:35.518366 0 \N \N 38 f f t f \N \N +21 t 2024-04-13 20:27:35.518366 0 \N \N 39 f f t f \N \N +22 t 2024-04-13 20:27:35.518366 0 \N \N 46 f f t f \N \N +23 t 2024-04-13 20:27:35.518366 0 \N 1 46 t t t t \N \N +24 t 2024-04-13 20:27:35.518366 0 \N \N 68 f f f f \N \N +25 t 2024-04-13 20:27:35.518366 0 \N 1 68 f f t f \N \N +26 t 2024-04-13 20:27:35.518366 0 \N \N 47 f f t f \N \N +27 t 2024-04-13 20:27:35.518366 0 \N 1 47 t t t t \N \N +28 t 2024-04-13 20:27:35.518366 0 \N \N 2 f f t f \N \N +29 t 2024-04-13 20:27:35.518366 0 \N 1 2 t t t t \N \N +30 t 2024-04-13 20:27:35.518366 0 \N \N 51 f f t f \N \N +31 t 2024-04-13 20:27:35.518366 0 \N 1 51 t t t t \N \N +32 t 2024-04-13 20:27:35.518366 0 \N \N 53 f f t f \N \N +33 t 2024-04-13 20:27:35.518366 0 \N 1 53 t t t t \N \N +34 t 2024-04-13 20:27:35.518366 0 \N \N 64 f f t f \N \N +35 t 2024-04-13 20:27:35.518366 0 \N 1 64 t t t t \N \N +36 t 2024-04-13 20:27:35.518366 0 \N \N 19 f f f f \N \N +37 t 2024-04-13 20:27:35.518366 0 \N 1 19 t t t t \N \N +38 t 2024-04-13 20:27:35.518366 0 \N \N 20 f f f f \N \N +39 t 2024-04-13 20:27:35.518366 0 \N 1 20 t t t t \N \N +40 t 2024-04-13 20:27:35.518366 0 \N \N 71 f f t f \N \N +41 t 2024-04-13 20:27:35.518366 0 \N 1 71 t t t t \N \N +42 t 2024-04-13 20:27:35.518366 0 \N \N 49 f f t f \N \N +43 t 2024-04-13 20:27:35.518366 0 \N 1 49 t t t t \N \N +44 t 2024-04-13 20:27:35.518366 0 \N \N 74 f f t f \N \N +45 t 2024-04-13 20:27:35.518366 0 \N 1 74 t t t t \N \N +46 t 2024-04-13 20:27:35.518366 0 \N \N 76 f f f f \N \N +47 t 2024-04-13 20:27:35.518366 0 \N 1 76 f t t t \N \N +48 t 2024-04-13 20:39:00.134374 0 \N \N 93 f f t f \N \N +49 t 2024-04-13 20:39:00.134374 0 \N 1 93 t t t t \N \N +50 t 2024-04-13 20:39:00.134374 0 \N \N 95 f f t f \N \N +51 t 2024-04-13 20:39:00.134374 0 \N 1 95 t t t t \N \N +52 t 2024-04-13 20:39:00.134374 0 \N \N 96 f f t f \N \N +53 t 2024-04-13 20:39:00.134374 0 \N 1 96 t t t t \N \N +54 t 2024-04-13 20:39:00.134374 0 \N \N 97 f f t f \N \N +55 t 2024-04-13 20:39:00.134374 0 \N 1 97 t t t t \N \N +56 t 2024-04-13 20:39:00.134374 0 \N \N 98 f f t f \N \N +57 t 2024-04-13 20:39:00.134374 0 \N 1 98 t t t t \N \N +58 t 2024-04-13 20:39:00.792624 0 \N \N 99 f f t f \N \N +59 t 2024-04-13 20:39:00.792624 0 \N 2 99 t t t t \N \N +60 t 2024-04-13 20:39:00.792624 0 \N \N 101 f f t f \N \N +61 t 2024-04-13 20:39:00.792624 0 \N 2 101 t t t t \N \N +62 t 2024-04-13 20:39:01.136154 0 \N \N 103 f f t f \N \N +63 t 2024-04-13 20:39:01.136154 0 \N 3 103 t t t t \N \N +64 t 2024-04-13 20:39:01.136154 0 \N \N 112 f f t f \N \N +65 t 2024-04-13 20:39:01.136154 0 \N 3 112 t t t t \N \N +66 t 2024-04-13 20:39:01.136154 0 \N \N 113 f f t f \N \N +67 t 2024-04-13 20:39:01.136154 0 \N 3 113 t t t t \N \N +68 t 2024-04-13 20:39:01.136154 0 \N \N 116 f f t f \N \N +69 t 2024-04-13 20:39:01.136154 0 \N 3 116 f f t t \N \N +70 t 2024-04-13 20:39:02.298155 0 \N \N 119 f f t f \N \N +71 t 2024-04-13 20:39:02.298155 0 \N 4 119 t t t t \N \N +72 t 2024-04-13 20:39:02.298155 0 \N \N 120 f f t f \N \N +73 t 2024-04-13 20:39:02.298155 0 \N 5 120 t t t t \N \N +74 t 2024-04-13 20:39:03.023425 0 \N \N 128 f f t f \N \N +75 t 2024-04-13 20:39:03.023425 0 \N 8 128 t t t t \N \N +76 t 2024-04-13 20:39:03.023425 0 \N \N 129 f f t f \N \N +77 t 2024-04-13 20:39:03.023425 0 \N \N 131 f f t f \N \N +78 t 2024-04-13 20:39:03.023425 0 \N 8 131 t t t t \N \N +79 t 2024-04-13 20:39:03.023425 0 \N \N 136 f f f f \N \N +80 t 2024-04-13 20:39:03.023425 0 \N 6 136 f f t f \N \N +81 t 2024-04-13 20:39:03.023425 0 \N \N 138 f f f f \N \N +82 t 2024-04-13 20:39:03.023425 0 \N 6 138 f f t f \N \N +83 t 2024-04-13 20:39:03.023425 0 \N \N 150 f f f f \N \N +84 t 2024-04-13 20:39:03.023425 0 \N 6 150 f f t f \N \N +85 t 2024-04-13 20:39:03.023425 0 \N \N 151 f f t f \N \N +86 t 2024-04-13 20:39:03.023425 0 \N 8 151 f f t t \N \N +87 t 2024-04-13 20:39:03.023425 0 \N \N 125 f f t f \N \N +88 t 2024-04-13 20:39:03.023425 0 \N 8 125 t t t t \N \N +89 t 2024-04-13 20:39:03.023425 0 \N \N 157 f f t f \N \N +90 t 2024-04-13 20:39:03.023425 0 \N 8 157 t t t t \N \N +91 t 2024-04-13 20:39:03.023425 0 \N \N 160 f f t f \N \N +92 t 2024-04-13 20:39:03.023425 0 \N 6 160 t f t t \N \N +93 t 2024-04-13 20:39:03.023425 0 \N 8 160 t t t t \N \N +94 t 2024-04-13 20:39:03.023425 0 \N \N 161 f f f f \N \N +95 t 2024-04-13 20:39:03.023425 0 \N 6 161 t f t t \N \N +96 t 2024-04-13 20:39:03.023425 0 \N 8 161 t t t t \N \N +97 t 2024-04-13 20:39:03.023425 0 \N \N 162 f f f f \N \N +98 t 2024-04-13 20:39:03.023425 0 \N 6 162 t f t f \N \N +99 t 2024-04-13 20:39:03.023425 0 \N 8 162 t t t t \N \N +100 t 2024-04-13 20:39:03.023425 0 \N \N 166 f f t f \N \N +101 t 2024-04-13 20:39:03.023425 0 \N 8 166 t t t t \N \N +102 t 2024-04-13 20:39:03.023425 0 \N \N 192 f f f f \N \N +103 t 2024-04-13 20:39:03.023425 0 \N 6 192 f f t f \N \N +104 t 2024-04-13 20:39:03.023425 0 \N 8 192 t t t t \N \N +105 t 2024-04-13 20:39:03.023425 0 \N \N 177 f f t f \N \N +106 t 2024-04-13 20:39:03.023425 0 \N 8 177 t t t t \N \N +107 t 2024-04-13 20:39:03.023425 0 \N \N 178 f f t f \N \N +108 t 2024-04-13 20:39:03.023425 0 \N \N 179 f f t f \N \N +109 t 2024-04-13 20:39:03.023425 0 \N 8 179 t t t t \N \N +110 t 2024-04-13 20:39:03.023425 0 \N \N 183 f f t f \N \N +111 t 2024-04-13 20:39:03.023425 0 \N \N 184 f f t f \N \N +112 t 2024-04-13 20:39:03.023425 0 \N 8 184 t t t t \N \N +113 t 2024-04-13 20:39:03.023425 0 \N \N 186 f f t f \N \N +114 t 2024-04-13 20:39:03.023425 0 \N \N 187 f f t f \N \N +115 t 2024-04-13 20:39:03.023425 0 \N 8 187 t t t t \N \N +116 t 2024-04-13 20:39:08.573524 0 \N \N 204 f f t f \N \N +117 t 2024-04-13 20:39:08.573524 0 \N 9 204 t t t t \N \N +118 t 2024-04-13 20:39:08.573524 0 \N \N 203 f f t f \N \N +119 t 2024-04-13 20:39:08.573524 0 \N 9 203 t t t t \N \N +120 t 2024-04-13 20:39:08.573524 0 \N \N 202 f f t f \N \N +121 t 2024-04-13 20:39:08.573524 0 \N 9 202 t t t t \N \N +122 t 2024-04-13 20:39:08.573524 0 \N \N 201 f f t f \N \N +123 t 2024-04-13 20:39:08.573524 0 \N 9 201 t t t t \N \N +124 t 2024-04-13 20:39:08.573524 0 \N \N 212 f f t f \N \N +125 t 2024-04-13 20:39:08.573524 0 \N 9 212 f f t t \N \N +126 t 2024-04-13 20:39:10.340704 0 \N \N 218 f f t f \N \N +127 t 2024-04-13 20:39:10.340704 0 \N 9 218 t t t t \N \N +128 t 2024-04-13 20:39:10.340704 0 \N \N 219 f f t f \N \N +129 t 2024-04-13 20:39:10.340704 0 \N 9 219 t t t t \N \N +130 t 2024-04-13 20:39:10.936653 0 \N \N 244 f f t f \N \N +131 t 2024-04-13 20:39:10.936653 0 \N 9 244 t t t t \N \N +132 t 2024-04-13 20:39:10.936653 0 \N \N 240 f f f f \N \N +133 t 2024-04-13 20:39:10.936653 0 \N 11 240 f f t f \N \N +134 t 2024-04-13 20:39:10.936653 0 \N \N 242 f f f f \N \N +135 t 2024-04-13 20:39:10.936653 0 \N 11 242 f f t f \N \N +136 t 2024-04-13 20:39:10.936653 0 \N \N 223 f f t f \N \N +137 t 2024-04-13 20:39:10.936653 0 \N 12 223 t t t t \N \N +138 t 2024-04-13 20:39:10.936653 0 \N \N 227 f f t f \N \N +139 t 2024-04-13 20:39:10.936653 0 \N 12 227 t t t t \N \N +140 t 2024-04-13 20:39:10.936653 0 \N \N 229 f f f f \N \N +141 t 2024-04-13 20:39:10.936653 0 \N 11 229 t f t t \N \N +142 t 2024-04-13 20:39:10.936653 0 \N 12 229 t t t t \N \N +143 t 2024-04-13 20:39:10.936653 0 \N \N 231 f f f f \N \N +144 t 2024-04-13 20:39:10.936653 0 \N 11 231 t f t t \N \N +145 t 2024-04-13 20:39:10.936653 0 \N 12 231 t t t t \N \N +146 t 2024-04-13 20:39:10.936653 0 \N \N 233 f f f f \N \N +147 t 2024-04-13 20:39:10.936653 0 \N 11 233 t f t t \N \N +148 t 2024-04-13 20:39:10.936653 0 \N 12 233 t t t t \N \N +149 t 2024-04-13 20:39:10.936653 0 \N \N 232 f f f f \N \N +150 t 2024-04-13 20:39:10.936653 0 \N 11 232 t f t t \N \N +151 t 2024-04-13 20:39:10.936653 0 \N 12 232 t t t t \N \N +152 t 2024-04-13 20:39:10.936653 0 \N \N 230 f f f f \N \N +153 t 2024-04-13 20:39:10.936653 0 \N 11 230 t f t t \N \N +154 t 2024-04-13 20:39:10.936653 0 \N 12 230 t t t t \N \N +155 t 2024-04-13 20:39:10.936653 0 \N \N 228 f f f f \N \N +156 t 2024-04-13 20:39:10.936653 0 \N 11 228 t t t t \N \N +157 t 2024-04-13 20:39:10.936653 0 \N \N 246 f f f f \N \N +158 t 2024-04-13 20:39:10.936653 0 \N 11 246 t t t t \N \N +159 t 2024-04-13 20:39:10.936653 0 \N \N 250 f f t f \N \N +160 t 2024-04-13 20:39:10.936653 0 \N 12 250 f f t t \N \N +161 t 2024-04-13 20:39:10.936653 0 \N \N 237 f f f f \N \N +162 t 2024-04-13 20:39:10.936653 0 \N 11 237 f f t f \N \N +163 t 2024-04-13 20:39:10.936653 0 \N 12 237 t t t t \N \N +164 t 2024-04-13 20:39:10.936653 0 \N \N 238 f f f f \N \N +165 t 2024-04-13 20:39:10.936653 0 \N 11 238 f f t f \N \N +166 t 2024-04-13 20:39:10.936653 0 \N 12 238 t t t t \N \N +167 t 2024-04-13 20:39:10.936653 0 \N \N 254 f f f f \N \N +168 t 2024-04-13 20:39:10.936653 0 \N 9 254 f f t f \N \N +169 t 2024-04-13 20:39:10.936653 0 \N \N 255 f f f f \N \N +170 t 2024-04-13 20:39:10.936653 0 \N 9 255 f f t f \N \N +171 t 2024-04-13 20:39:10.936653 0 \N \N 256 f f f f \N \N +172 t 2024-04-13 20:39:10.936653 0 \N 9 256 f f t f \N \N +173 t 2024-04-13 20:39:10.936653 0 \N \N 257 f f f f \N \N +174 t 2024-04-13 20:39:10.936653 0 \N 9 257 f f t f \N \N +175 t 2024-04-13 20:39:10.936653 0 \N \N 260 f f f f \N \N +176 t 2024-04-13 20:39:10.936653 0 \N 9 260 f f t f \N \N +177 t 2024-04-13 20:39:10.936653 0 \N \N 258 f f f f \N \N +178 t 2024-04-13 20:39:10.936653 0 \N 9 258 f f t f \N \N +179 t 2024-04-13 20:39:10.936653 0 \N \N 259 f f f f \N \N +180 t 2024-04-13 20:39:10.936653 0 \N 9 259 f f t f \N \N +181 t 2024-04-13 20:39:14.878373 0 \N \N 266 f f f f \N \N +182 t 2024-04-13 20:39:14.878373 0 \N 6 266 t t t t \N \N +183 t 2024-04-13 20:39:14.878373 0 \N \N 276 f f t f \N \N +184 t 2024-04-13 20:39:14.878373 0 \N \N 270 f f f f \N \N +185 t 2024-04-13 20:39:14.878373 0 \N 6 270 t t t t \N \N +186 t 2024-04-13 20:39:14.878373 0 \N \N 280 f f t f \N \N +187 t 2024-04-13 20:39:14.878373 0 \N 8 280 t t t t \N \N +188 t 2024-04-13 20:39:14.878373 0 \N \N 261 f f t f \N \N +189 t 2024-04-13 20:39:14.878373 0 \N 8 261 t t t t \N \N +190 t 2024-04-13 20:39:14.878373 0 \N \N 279 f f t f \N \N +191 t 2024-04-13 20:39:14.878373 0 \N 8 279 t t t t \N \N +192 t 2024-04-13 20:39:16.677742 0 \N 6 228 f f t f \N \N +193 t 2024-04-13 20:39:16.958214 0 \N \N 282 f f f f \N \N +194 t 2024-04-13 20:39:16.958214 0 \N 14 282 t t t t \N \N +195 t 2024-04-13 20:39:16.958214 0 \N 6 282 f f t f \N \N +196 t 2024-04-13 20:39:16.958214 0 \N 11 282 f f t f \N \N +197 t 2024-04-13 20:39:16.958214 0 \N 11 285 f f t f \N \N +198 t 2024-04-13 20:39:16.958214 0 \N \N 289 f f t f \N \N +199 t 2024-04-13 20:39:16.958214 0 \N 14 289 t t t t \N \N +200 t 2024-04-13 20:39:16.958214 0 \N \N 301 f f f f \N \N +201 t 2024-04-13 20:39:16.958214 0 \N 14 301 f f t f \N \N +202 t 2024-04-13 20:39:16.958214 0 \N \N 302 f f f f \N \N +203 t 2024-04-13 20:39:16.958214 0 \N 14 302 f f t f \N \N +204 t 2024-04-13 20:39:16.958214 0 \N \N 303 f f f f \N \N +205 t 2024-04-13 20:39:16.958214 0 \N 14 303 f f t f \N \N +206 t 2024-04-13 20:39:16.958214 0 \N \N 304 f f f f \N \N +207 t 2024-04-13 20:39:16.958214 0 \N 14 304 f f t f \N \N +208 t 2024-04-13 20:39:16.958214 0 \N \N 305 f f f f \N \N +209 t 2024-04-13 20:39:16.958214 0 \N 14 305 f f t f \N \N +210 t 2024-04-13 20:39:16.958214 0 \N \N 306 f f f f \N \N +211 t 2024-04-13 20:39:16.958214 0 \N 14 306 f f t f \N \N +212 t 2024-04-13 20:39:16.958214 0 \N \N 293 f f t f \N \N +213 t 2024-04-13 20:39:16.958214 0 \N 15 293 f f t t \N \N +214 t 2024-04-13 20:39:16.958214 0 \N 14 228 f f t f \N \N +215 t 2024-04-13 20:39:16.958214 0 \N 14 229 f f t f \N \N +216 t 2024-04-13 20:39:16.958214 0 \N 14 230 f f t f \N \N +217 t 2024-04-13 20:39:16.958214 0 \N 14 266 f f t f \N \N +218 t 2024-04-13 20:39:16.958214 0 \N 14 270 f f t f \N \N +219 t 2024-04-13 20:39:19.14446 0 \N \N 307 f f f f \N \N +220 t 2024-04-13 20:39:19.14446 0 \N 16 307 t t t t \N \N +221 t 2024-04-13 20:39:19.14446 0 \N \N 322 f f t f \N \N +222 t 2024-04-13 20:39:19.14446 0 \N 17 322 f f t t \N \N +223 t 2024-04-13 20:39:19.14446 0 \N \N 326 f f f f \N \N +224 t 2024-04-13 20:39:19.14446 0 \N 16 326 f f t f \N \N +225 t 2024-04-13 20:39:19.14446 0 \N \N 327 f f f f \N \N +226 t 2024-04-13 20:39:19.14446 0 \N 16 327 f f t f \N \N +227 t 2024-04-13 20:39:19.14446 0 \N \N 328 f f f f \N \N +228 t 2024-04-13 20:39:19.14446 0 \N 16 328 f f t f \N \N +229 t 2024-04-13 20:39:19.14446 0 \N \N 329 f f f f \N \N +230 t 2024-04-13 20:39:19.14446 0 \N 16 329 f f t f \N \N +231 t 2024-04-13 20:39:19.14446 0 \N \N 330 f f f f \N \N +232 t 2024-04-13 20:39:19.14446 0 \N 16 330 f f t f \N \N +233 t 2024-04-13 20:39:19.14446 0 \N \N 331 f f f f \N \N +234 t 2024-04-13 20:39:19.14446 0 \N 16 331 f f t f \N \N +235 t 2024-04-13 20:39:19.14446 0 \N \N 333 f f f f \N \N +236 t 2024-04-13 20:39:19.14446 0 \N 16 333 f f t f \N \N +237 t 2024-04-13 20:39:19.14446 0 \N \N 334 f f f f \N \N +238 t 2024-04-13 20:39:19.14446 0 \N 16 334 f f t f \N \N +239 t 2024-04-13 20:39:19.14446 0 \N \N 335 f f f f \N \N +240 t 2024-04-13 20:39:19.14446 0 \N 16 335 f f t f \N \N +241 t 2024-04-13 20:39:19.14446 0 \N \N 336 f f f f \N \N +242 t 2024-04-13 20:39:19.14446 0 \N 16 336 f f t f \N \N +243 t 2024-04-13 20:39:19.14446 0 \N \N 343 f f f f \N \N +244 t 2024-04-13 20:39:19.14446 0 \N 16 343 f f t f \N \N +245 t 2024-04-13 20:39:19.14446 0 \N \N 340 f f f f \N \N +246 t 2024-04-13 20:39:19.14446 0 \N 16 340 f f t f \N \N +247 t 2024-04-13 20:39:19.14446 0 \N \N 342 f f f f \N \N +248 t 2024-04-13 20:39:19.14446 0 \N 16 342 f f t f \N \N +249 t 2024-04-13 20:39:19.14446 0 \N 16 228 f f t f \N \N +250 t 2024-04-13 20:39:19.14446 0 \N 16 231 f f t f \N \N +251 t 2024-04-13 20:39:19.14446 0 \N 16 232 f f t f \N \N +252 t 2024-04-13 20:39:19.14446 0 \N 16 266 f f t f \N \N +253 t 2024-04-13 20:39:19.14446 0 \N 16 270 f f t f \N \N +\. + + +-- +-- Data for Name: ir_model_button; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model_button (id, active, confirm, create_date, create_uid, help, model, name, string, write_date, write_uid) FROM stdin; +1 t \N 2024-04-13 20:27:30.723827 0 \N 15 show Show \N \N +2 t \N 2024-04-13 20:27:30.723827 0 \N 38 sync Sync \N \N +3 t \N 2024-04-13 20:27:30.723827 0 \N 46 run_once Run Once \N \N +4 t Are you sure you want to load languages' translations? 2024-04-13 20:27:30.723827 0 \N 47 load_translations Load translations \N \N +5 t Are you sure you want to remove languages' translations? 2024-04-13 20:27:30.723827 0 \N 47 unload_translations Unload translations \N \N +6 t \N 2024-04-13 20:27:30.723827 0 \N 53 activate Mark for Activation \N \N +7 t \N 2024-04-13 20:27:30.723827 0 \N 53 activate_cancel Cancel Activation \N \N +8 t \N 2024-04-13 20:27:30.723827 0 \N 53 deactivate Mark for Deactivation (beta) \N \N +9 t \N 2024-04-13 20:27:30.723827 0 \N 53 deactivate_cancel Cancel Deactivation \N \N +10 t \N 2024-04-13 20:27:30.723827 0 \N 53 upgrade Mark for Upgrade \N \N +11 t \N 2024-04-13 20:27:30.723827 0 \N 53 upgrade_cancel Cancel Upgrade \N \N +12 t \N 2024-04-13 20:27:30.723827 0 \N 76 open Open \N \N +13 t \N 2024-04-13 20:27:30.723827 0 \N 76 process Process \N \N +14 t \N 2024-04-13 20:27:30.723827 0 \N 76 solve Solve \N \N +15 t \N 2024-04-13 20:27:35.518366 0 Send by email a new temporary password to the user 78 reset_password Reset Password \N \N +16 t \N 2024-04-13 20:27:35.518366 0 \N 84 validate_ Validate \N \N +17 t \N 2024-04-13 20:27:35.518366 0 \N 84 cancel Cancel \N \N +18 t \N 2024-04-13 20:39:00.792624 0 \N 101 run Run \N \N +19 t \N 2024-04-13 20:39:03.023425 0 \N 125 create_periods Create Periods \N \N +20 t \N 2024-04-13 20:39:03.023425 0 \N 125 reopen Re-Open \N \N +21 t \N 2024-04-13 20:39:03.023425 0 \N 125 close Close \N \N +22 t Are you sure you want to lock the fiscal year? 2024-04-13 20:39:03.023425 0 \N 125 lock_ Lock \N \N +23 t \N 2024-04-13 20:39:03.023425 0 \N 156 close Close \N \N +24 t \N 2024-04-13 20:39:03.023425 0 \N 156 reopen Re-Open \N \N +25 t Are you sure you want to lock the period? 2024-04-13 20:39:03.023425 0 \N 156 lock_ Lock \N \N +26 t \N 2024-04-13 20:39:03.023425 0 \N 160 open \N \N \N +27 t \N 2024-04-13 20:39:03.023425 0 \N 160 close \N \N \N +28 t \N 2024-04-13 20:39:03.023425 0 \N 160 reopen \N \N \N +29 t \N 2024-04-13 20:39:03.023425 0 \N 161 post Post \N \N +30 t \N 2024-04-13 20:39:08.573524 0 \N 203 add_products Add products \N \N +31 t \N 2024-04-13 20:39:10.936653 0 \N 229 cancel Cancel \N \N +32 t \N 2024-04-13 20:39:10.936653 0 \N 229 draft Reset to Draft \N \N +33 t Are you sure you want to receive the shipment? 2024-04-13 20:39:10.936653 0 \N 229 receive Receive \N \N +34 t \N 2024-04-13 20:39:10.936653 0 \N 229 done Done \N \N +35 t \N 2024-04-13 20:39:10.936653 0 \N 231 cancel Cancel \N \N +36 t \N 2024-04-13 20:39:10.936653 0 \N 231 draft Draft \N \N +37 t \N 2024-04-13 20:39:10.936653 0 \N 231 wait Wait \N \N +38 t \N 2024-04-13 20:39:10.936653 0 \N 231 pick Pick \N \N +39 t \N 2024-04-13 20:39:10.936653 0 \N 231 pack Pack \N \N +40 t Are you sure you want to complete the shipment? 2024-04-13 20:39:10.936653 0 \N 231 done Done \N \N +41 t \N 2024-04-13 20:39:10.936653 0 \N 231 assign_try \N \N \N +42 t \N 2024-04-13 20:39:10.936653 0 \N 231 assign_force \N \N \N +43 t \N 2024-04-13 20:39:10.936653 0 \N 231 assign_wizard Assign \N \N +44 t \N 2024-04-13 20:39:10.936653 0 \N 233 cancel Cancel \N \N +45 t \N 2024-04-13 20:39:10.936653 0 \N 233 draft Draft \N \N +46 t \N 2024-04-13 20:39:10.936653 0 \N 233 wait Wait \N \N +47 t \N 2024-04-13 20:39:10.936653 0 \N 233 done Done \N \N +48 t \N 2024-04-13 20:39:10.936653 0 \N 233 assign_try \N \N \N +49 t \N 2024-04-13 20:39:10.936653 0 \N 233 assign_force \N \N \N +50 t \N 2024-04-13 20:39:10.936653 0 \N 233 assign_wizard Assign \N \N +51 t \N 2024-04-13 20:39:10.936653 0 \N 233 ship Ship \N \N +52 t \N 2024-04-13 20:39:10.936653 0 \N 232 cancel Cancel \N \N +53 t \N 2024-04-13 20:39:10.936653 0 \N 232 draft Draft \N \N +54 t Are you sure you want to receive the shipment? 2024-04-13 20:39:10.936653 0 \N 232 receive Receive \N \N +55 t \N 2024-04-13 20:39:10.936653 0 \N 232 done Done \N \N +56 t \N 2024-04-13 20:39:10.936653 0 \N 230 cancel Cancel \N \N +57 t \N 2024-04-13 20:39:10.936653 0 \N 230 draft Draft \N \N +58 t \N 2024-04-13 20:39:10.936653 0 \N 230 wait Wait \N \N +59 t Are you sure you want to complete the shipment? 2024-04-13 20:39:10.936653 0 \N 230 done Done \N \N +60 t \N 2024-04-13 20:39:10.936653 0 \N 230 assign_try \N \N \N +61 t \N 2024-04-13 20:39:10.936653 0 \N 230 assign_force \N \N \N +62 t \N 2024-04-13 20:39:10.936653 0 \N 230 assign_wizard Assign \N \N +63 t Are you sure you want to cancel the move? 2024-04-13 20:39:10.936653 0 \N 228 cancel Cancel \N \N +64 t \N 2024-04-13 20:39:10.936653 0 \N 228 draft Reset to Draft \N \N +65 t Are you sure you want to complete the move? 2024-04-13 20:39:10.936653 0 \N 228 do Do \N \N +66 t Are you sure you want to confirm the inventory? 2024-04-13 20:39:10.936653 0 \N 246 confirm Confirm \N \N +67 t Are you sure you want to cancel the inventory? 2024-04-13 20:39:10.936653 0 \N 246 cancel Cancel \N \N +68 t \N 2024-04-13 20:39:10.936653 0 Add an inventory line for each missing products 246 complete_lines Complete \N \N +69 t \N 2024-04-13 20:39:10.936653 0 Launch the wizard to count products 246 do_count Count \N \N +70 t \N 2024-04-13 20:39:10.936653 0 \N 237 draft Draft \N \N +71 t \N 2024-04-13 20:39:10.936653 0 \N 237 close Close \N \N +72 t Are you sure you want to cancel the invoices? 2024-04-13 20:39:14.878373 0 Cancel the invoice 266 cancel Cancel \N \N +73 t \N 2024-04-13 20:39:14.878373 0 \N 266 draft Draft \N \N +74 t \N 2024-04-13 20:39:14.878373 0 Also known as Pro Forma 266 validate_invoice Validate \N \N +75 t Are you sure you want to post the invoices? 2024-04-13 20:39:14.878373 0 \N 266 post Post \N \N +76 t \N 2024-04-13 20:39:14.878373 0 \N 266 pay Pay \N \N +77 t \N 2024-04-13 20:39:14.878373 0 \N 266 reschedule_lines_to_pay Reschedule \N \N +78 t \N 2024-04-13 20:39:14.878373 0 \N 266 delegate_lines_to_pay Modify Payee \N \N +79 t \N 2024-04-13 20:39:14.878373 0 \N 266 process Process \N \N +80 t \N 2024-04-13 20:39:16.958214 0 \N 282 cancel Cancel \N \N +81 t \N 2024-04-13 20:39:16.958214 0 \N 282 draft Draft \N \N +82 t \N 2024-04-13 20:39:16.958214 0 \N 282 quote Quote \N \N +83 t \N 2024-04-13 20:39:16.958214 0 \N 282 confirm Confirm \N \N +84 t \N 2024-04-13 20:39:16.958214 0 \N 282 process Process \N \N +85 t \N 2024-04-13 20:39:16.958214 0 \N 282 manual_invoice Create Invoice \N \N +86 t \N 2024-04-13 20:39:16.958214 0 \N 282 modify_header Modify Header \N \N +87 t \N 2024-04-13 20:39:16.958214 0 \N 282 handle_invoice_exception Handle Invoice Exception \N \N +88 t \N 2024-04-13 20:39:16.958214 0 \N 282 handle_shipment_exception Handle Shipment Exception \N \N +89 t \N 2024-04-13 20:39:19.14446 0 \N 307 cancel Cancel \N \N +90 t \N 2024-04-13 20:39:19.14446 0 \N 307 draft Draft \N \N +91 t \N 2024-04-13 20:39:19.14446 0 \N 307 quote Quote \N \N +92 t \N 2024-04-13 20:39:19.14446 0 \N 307 confirm Confirm \N \N +93 t \N 2024-04-13 20:39:19.14446 0 \N 307 process Process \N \N +94 t \N 2024-04-13 20:39:19.14446 0 \N 307 manual_invoice Create Invoice \N \N +95 t \N 2024-04-13 20:39:19.14446 0 \N 307 manual_shipment Create Shipment \N \N +96 t \N 2024-04-13 20:39:19.14446 0 \N 307 modify_header Modify Header \N \N +97 t \N 2024-04-13 20:39:19.14446 0 \N 307 handle_shipment_exception Handle Shipment Exception \N \N +98 t \N 2024-04-13 20:39:19.14446 0 \N 307 handle_invoice_exception Handle Invoice Exception \N \N +99 t \N 2024-04-13 20:39:21.814652 0 \N 344 draft Draft \N \N +100 t Are you sure you want to registred these equipments? 2024-04-13 20:39:21.814652 0 \N 344 registred Registred \N \N +101 t \N 2024-04-13 20:39:21.814652 0 \N 346 draft Draft \N \N +102 t \N 2024-04-13 20:39:21.814652 0 \N 346 running Run \N \N +103 t \N 2024-04-13 20:39:21.814652 0 \N 346 closed Closed \N \N +104 t \N 2024-04-13 20:39:21.814652 0 \N 346 cancelled Cancel \N \N +105 t \N 2024-04-13 20:39:21.814652 0 \N 363 assing_agended Assing Agended \N \N +106 t \N 2024-04-13 20:39:21.814652 0 \N 363 reassing_agended Reassing Agended \N \N +107 t \N 2024-04-13 20:39:21.814652 0 \N 363 draft Draft \N \N +108 t \N 2024-04-13 20:39:21.814652 0 \N 363 in_progress In progress \N \N +109 t \N 2024-04-13 20:39:21.814652 0 \N 363 finished Finished \N \N +110 t \N 2024-04-13 20:39:21.814652 0 \N 364 in_progress In progress \N \N +111 t \N 2024-04-13 20:39:21.814652 0 \N 364 finished Finished \N \N +112 t \N 2024-04-13 20:39:21.814652 0 \N 364 samples Generate Samples \N \N +113 t \N 2024-04-13 20:39:21.814652 0 \N 364 calibrate Calibrate \N \N +114 t \N 2024-04-13 20:39:21.814652 0 \N 231 maintenance_initial Maintenance Initial \N \N +115 t \N 2024-04-13 20:39:21.814652 0 \N 282 create_equipments Create Equipments \N \N +116 t \N 2024-04-13 20:39:21.814652 0 \N 307 report Estado de Cuenta \N \N +\. + + +-- +-- Data for Name: ir_model_button-button_reset; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_model_button-button_reset" (id, button, button_ruled, create_date, create_uid, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_model_button-res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_model_button-res_group" (id, active, button, create_date, create_uid, "group", write_date, write_uid) FROM stdin; +1 t 6 2024-04-13 20:27:35.518366 0 1 \N \N +2 t 7 2024-04-13 20:27:35.518366 0 1 \N \N +3 t 8 2024-04-13 20:27:35.518366 0 1 \N \N +4 t 9 2024-04-13 20:27:35.518366 0 1 \N \N +5 t 10 2024-04-13 20:27:35.518366 0 1 \N \N +6 t 11 2024-04-13 20:27:35.518366 0 1 \N \N +7 t 3 2024-04-13 20:27:35.518366 0 1 \N \N +8 t 2 2024-04-13 20:27:35.518366 0 1 \N \N +9 t 1 2024-04-13 20:27:35.518366 0 1 \N \N +10 t 42 2024-04-13 20:39:10.936653 0 13 \N \N +11 t 49 2024-04-13 20:39:10.936653 0 13 \N \N +12 t 50 2024-04-13 20:39:10.936653 0 11 \N \N +13 t 61 2024-04-13 20:39:10.936653 0 13 \N \N +14 t 79 2024-04-13 20:39:14.878373 0 8 \N \N +15 t 84 2024-04-13 20:39:16.958214 0 15 \N \N +16 t 85 2024-04-13 20:39:16.958214 0 14 \N \N +17 t 85 2024-04-13 20:39:16.958214 0 6 \N \N +18 t 93 2024-04-13 20:39:19.14446 0 17 \N \N +19 t 94 2024-04-13 20:39:19.14446 0 16 \N \N +20 t 94 2024-04-13 20:39:19.14446 0 6 \N \N +21 t 95 2024-04-13 20:39:19.14446 0 16 \N \N +22 t 95 2024-04-13 20:39:19.14446 0 11 \N \N +\. + + +-- +-- Data for Name: ir_model_button_click; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model_button_click (id, active, button, create_date, create_uid, record_id, write_date, write_uid, "user") FROM stdin; +\. + + +-- +-- Data for Name: ir_model_button_rule; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model_button_rule (id, button, condition, create_date, create_uid, description, number_user, write_date, write_uid, "group") FROM stdin; +\. + + +-- +-- Data for Name: ir_model_data; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model_data (id, create_date, create_uid, db_id, fs_id, fs_values, model, module, noupdate, "values", write_date, write_uid) FROM stdin; +1 2024-04-13 20:27:30.723827 0 1 lang_en [["am","AM"],["code","en"],["date","%m/%d/%Y"],["decimal_point","."],["grouping","[3, 3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep",","],["n_cs_precedes",true],["n_sep_by_space",false],["n_sign_posn",1],["name","English"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",false],["p_sign_posn",1],["pm","PM"],["positive_sign",""],["thousands_sep",","]] ir.lang ir f [["am","AM"],["code","en"],["date","%m/%d/%Y"],["decimal_point","."],["grouping","[3, 3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep",","],["n_cs_precedes",true],["n_sep_by_space",false],["n_sign_posn",1],["name","English"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",false],["p_sign_posn",1],["pm","PM"],["positive_sign",""],["thousands_sep",","]] \N \N +2 2024-04-13 20:27:30.723827 0 1 board_icon [["name","tryton-board"],["path","ui/icons/tryton-board.svg"]] ir.ui.icon ir f [["name","tryton-board"],["path","ui/icons/tryton-board.svg"]] \N \N +3 2024-04-13 20:27:30.723827 0 2 calendar_icon [["name","tryton-calendar"],["path","ui/icons/tryton-calendar.svg"]] ir.ui.icon ir f [["name","tryton-calendar"],["path","ui/icons/tryton-calendar.svg"]] \N \N +4 2024-04-13 20:27:30.723827 0 3 folder_icon [["name","tryton-folder"],["path","ui/icons/tryton-folder.svg"]] ir.ui.icon ir f [["name","tryton-folder"],["path","ui/icons/tryton-folder.svg"]] \N \N +5 2024-04-13 20:27:30.723827 0 4 form_icon [["name","tryton-form"],["path","ui/icons/tryton-form.svg"]] ir.ui.icon ir f [["name","tryton-form"],["path","ui/icons/tryton-form.svg"]] \N \N +6 2024-04-13 20:27:30.723827 0 5 graph_icon [["name","tryton-graph"],["path","ui/icons/tryton-graph.svg"]] ir.ui.icon ir f [["name","tryton-graph"],["path","ui/icons/tryton-graph.svg"]] \N \N +7 2024-04-13 20:27:30.723827 0 6 list_icon [["name","tryton-list"],["path","ui/icons/tryton-list.svg"]] ir.ui.icon ir f [["name","tryton-list"],["path","ui/icons/tryton-list.svg"]] \N \N +8 2024-04-13 20:27:30.723827 0 7 settings_icon [["name","tryton-settings"],["path","ui/icons/tryton-settings.svg"]] ir.ui.icon ir f [["name","tryton-settings"],["path","ui/icons/tryton-settings.svg"]] \N \N +9 2024-04-13 20:27:30.723827 0 8 tree_icon [["name","tryton-tree"],["path","ui/icons/tryton-tree.svg"]] ir.ui.icon ir f [["name","tryton-tree"],["path","ui/icons/tryton-tree.svg"]] \N \N +10 2024-04-13 20:27:30.723827 0 1 menu_administration [["icon","tryton-settings"],["name","Administration"],["sequence",9999]] ir.ui.menu ir f [["icon","tryton-settings"],["name","Administration"],["sequence",9999]] \N \N +11 2024-04-13 20:27:30.723827 0 2 menu_ui [["icon","tryton-folder"],["name","User Interface"],["parent",1],["sequence",50]] ir.ui.menu ir f [["icon","tryton-folder"],["name","User Interface"],["parent",1],["sequence",50]] \N \N +12 2024-04-13 20:27:30.723827 0 1 icon_view_tree [["model","ir.ui.icon"],["name","icon_view_list"],["type","tree"]] ir.ui.view ir f [["model","ir.ui.icon"],["name","icon_view_list"],["type","tree"]] \N \N +13 2024-04-13 20:27:30.723827 0 2 icon_view_form [["model","ir.ui.icon"],["name","icon_view_form"],["type","form"]] ir.ui.view ir f [["model","ir.ui.icon"],["name","icon_view_form"],["type","form"]] \N \N +14 2024-04-13 20:27:30.723827 0 1 act_icon_form [["name","Icons"],["res_model","ir.ui.icon"]] ir.action.act_window ir f [["name","Icons"],["res_model","ir.ui.icon"]] \N \N +15 2024-04-13 20:27:30.723827 0 1 act_icon_form_view1 [["act_window",1],["sequence",10],["view",1]] ir.action.act_window.view ir f [["act_window",1],["sequence",10],["view",1]] \N \N +16 2024-04-13 20:27:30.723827 0 2 act_icon_form_view2 [["act_window",1],["sequence",20],["view",2]] ir.action.act_window.view ir f [["act_window",1],["sequence",20],["view",2]] \N \N +17 2024-04-13 20:27:30.723827 0 3 menu_icon_form [["action","ir.action.act_window,1"],["icon","tryton-list"],["name","Icons"],["parent",2],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,1"],["icon","tryton-list"],["name","Icons"],["parent",2],["sequence",20]] \N \N +18 2024-04-13 20:27:30.723827 0 3 menu_view_tree_tree [["field_childs","childs"],["model","ir.ui.menu"],["name","ui_menu_tree"],["priority",20],["type","tree"]] ir.ui.view ir f [["field_childs","childs"],["model","ir.ui.menu"],["name","ui_menu_tree"],["priority",20],["type","tree"]] \N \N +19 2024-04-13 20:27:30.723827 0 4 menu_view_list [["model","ir.ui.menu"],["name","ui_menu_list"],["priority",10],["type","tree"]] ir.ui.view ir f [["model","ir.ui.menu"],["name","ui_menu_list"],["priority",10],["type","tree"]] \N \N +20 2024-04-13 20:27:30.723827 0 5 menu_view_form [["model","ir.ui.menu"],["name","ui_menu_form"],["type","form"]] ir.ui.view ir f [["model","ir.ui.menu"],["name","ui_menu_form"],["type","form"]] \N \N +21 2024-04-13 20:27:30.723827 0 2 act_menu_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Menu"],["res_model","ir.ui.menu"],["usage","menu"]] ir.action.act_window ir f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Menu"],["res_model","ir.ui.menu"],["usage","menu"]] \N \N +22 2024-04-13 20:27:30.723827 0 3 act_menu_tree_view1 [["act_window",2],["sequence",1],["view",3]] ir.action.act_window.view ir f [["act_window",2],["sequence",1],["view",3]] \N \N +23 2024-04-13 20:27:30.723827 0 3 act_menu_list [["name","Menu"],["res_model","ir.ui.menu"]] ir.action.act_window ir f [["name","Menu"],["res_model","ir.ui.menu"]] \N \N +24 2024-04-13 20:27:30.723827 0 4 act_menu_list_view1 [["act_window",3],["sequence",10],["view",4]] ir.action.act_window.view ir f [["act_window",3],["sequence",10],["view",4]] \N \N +25 2024-04-13 20:27:30.723827 0 5 act_menu_list_view2 [["act_window",3],["sequence",20],["view",5]] ir.action.act_window.view ir f [["act_window",3],["sequence",20],["view",5]] \N \N +26 2024-04-13 20:27:30.723827 0 4 menu_menu_list [["action","ir.action.act_window,3"],["icon","tryton-list"],["name","Menu"],["parent",2],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,3"],["icon","tryton-list"],["name","Menu"],["parent",2],["sequence",10]] \N \N +27 2024-04-13 20:27:30.723827 0 6 menu_favorite_view_list [["model","ir.ui.menu.favorite"],["name","ui_menu_favorite_list"],["type","tree"]] ir.ui.view ir f [["model","ir.ui.menu.favorite"],["name","ui_menu_favorite_list"],["type","tree"]] \N \N +28 2024-04-13 20:27:30.723827 0 7 menu_favorite_view_form [["model","ir.ui.menu.favorite"],["name","ui_menu_favorite_form"],["type","form"]] ir.ui.view ir f [["model","ir.ui.menu.favorite"],["name","ui_menu_favorite_form"],["type","form"]] \N \N +29 2024-04-13 20:27:30.723827 0 4 act_view_show [["name","Show View"],["wiz_name","ir.ui.view.show"]] ir.action.wizard ir f [["name","Show View"],["wiz_name","ir.ui.view.show"]] \N \N +30 2024-04-13 20:27:30.723827 0 8 view_view_form [["model","ir.ui.view"],["name","ui_view_form"],["type","form"]] ir.ui.view ir f [["model","ir.ui.view"],["name","ui_view_form"],["type","form"]] \N \N +31 2024-04-13 20:27:30.723827 0 9 view_view_tree [["model","ir.ui.view"],["name","ui_view_list"],["type","tree"]] ir.ui.view ir f [["model","ir.ui.view"],["name","ui_view_list"],["type","tree"]] \N \N +32 2024-04-13 20:27:30.723827 0 5 act_view_form [["name","Views"],["res_model","ir.ui.view"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Views"],["res_model","ir.ui.view"],["type","ir.action.act_window"]] \N \N +33 2024-04-13 20:27:30.723827 0 6 act_view_form_view1 [["act_window",5],["sequence",1],["view",9]] ir.action.act_window.view ir f [["act_window",5],["sequence",1],["view",9]] \N \N +34 2024-04-13 20:27:30.723827 0 7 act_view_form_view2 [["act_window",5],["sequence",2],["view",8]] ir.action.act_window.view ir f [["act_window",5],["sequence",2],["view",8]] \N \N +35 2024-04-13 20:27:30.723827 0 5 menu_view [["action","ir.action.act_window,5"],["icon","tryton-list"],["name","Views"],["parent",2],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,5"],["icon","tryton-list"],["name","Views"],["parent",2],["sequence",10]] \N \N +36 2024-04-13 20:27:30.723827 0 1 view_show_button [["model",15],["name","show"],["string","Show"]] ir.model.button ir f [["model",15],["name","show"],["string","Show"]] \N \N +37 2024-04-13 20:27:30.723827 0 10 view_tree_width_view_form [["model","ir.ui.view_tree_width"],["name","ui_view_tree_width_form"],["type","form"]] ir.ui.view ir f [["model","ir.ui.view_tree_width"],["name","ui_view_tree_width_form"],["type","form"]] \N \N +38 2024-04-13 20:27:30.723827 0 11 view_tree_width_view_tree [["model","ir.ui.view_tree_width"],["name","ui_view_tree_width_list"],["type","tree"]] ir.ui.view ir f [["model","ir.ui.view_tree_width"],["name","ui_view_tree_width_list"],["type","tree"]] \N \N +39 2024-04-13 20:27:30.723827 0 6 act_view_tree_width_form [["name","View Tree Width"],["res_model","ir.ui.view_tree_width"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","View Tree Width"],["res_model","ir.ui.view_tree_width"],["type","ir.action.act_window"]] \N \N +40 2024-04-13 20:27:30.723827 0 8 act_view_tree_width_form_view1 [["act_window",6],["sequence",1],["view",11]] ir.action.act_window.view ir f [["act_window",6],["sequence",1],["view",11]] \N \N +41 2024-04-13 20:27:30.723827 0 9 act_view_tree_width_form_view2 [["act_window",6],["sequence",2],["view",10]] ir.action.act_window.view ir f [["act_window",6],["sequence",2],["view",10]] \N \N +42 2024-04-13 20:27:30.723827 0 6 menu_view_tree_width [["action","ir.action.act_window,6"],["icon","tryton-list"],["name","View Tree Width"],["parent",2],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,6"],["icon","tryton-list"],["name","View Tree Width"],["parent",2],["sequence",50]] \N \N +43 2024-04-13 20:27:30.723827 0 12 view_tree_optional_view_form [["model","ir.ui.view_tree_optional"],["name","ui_view_tree_optional_form"],["type","form"]] ir.ui.view ir f [["model","ir.ui.view_tree_optional"],["name","ui_view_tree_optional_form"],["type","form"]] \N \N +44 2024-04-13 20:27:30.723827 0 13 view_tree_optional_view_tree [["model","ir.ui.view_tree_optional"],["name","ui_view_tree_optional_list"],["type","tree"]] ir.ui.view ir f [["model","ir.ui.view_tree_optional"],["name","ui_view_tree_optional_list"],["type","tree"]] \N \N +45 2024-04-13 20:27:30.723827 0 7 act_view_tree_optional_form [["name","View Tree Optional"],["res_model","ir.ui.view_tree_optional"]] ir.action.act_window ir f [["name","View Tree Optional"],["res_model","ir.ui.view_tree_optional"]] \N \N +46 2024-04-13 20:27:30.723827 0 10 act_view_tree_optional_form_view1 [["act_window",7],["sequence",10],["view",13]] ir.action.act_window.view ir f [["act_window",7],["sequence",10],["view",13]] \N \N +47 2024-04-13 20:27:30.723827 0 11 act_view_tree_optional_form_view2 [["act_window",7],["sequence",20],["view",12]] ir.action.act_window.view ir f [["act_window",7],["sequence",20],["view",12]] \N \N +48 2024-04-13 20:27:30.723827 0 7 menu_view_tree_optional [["action","ir.action.act_window,7"],["icon","tryton-list"],["name","View Tree Optional"],["parent",2],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,7"],["icon","tryton-list"],["name","View Tree Optional"],["parent",2],["sequence",50]] \N \N +49 2024-04-13 20:27:30.723827 0 14 view_tree_state_form [["model","ir.ui.view_tree_state"],["name","ui_view_tree_state_form"],["type","form"]] ir.ui.view ir f [["model","ir.ui.view_tree_state"],["name","ui_view_tree_state_form"],["type","form"]] \N \N +50 2024-04-13 20:27:30.723827 0 15 view_tree_state_tree [["model","ir.ui.view_tree_state"],["name","ui_view_tree_state_list"],["type","tree"]] ir.ui.view ir f [["model","ir.ui.view_tree_state"],["name","ui_view_tree_state_list"],["type","tree"]] \N \N +51 2024-04-13 20:27:30.723827 0 8 act_view_tree_state [["name","Tree State"],["res_model","ir.ui.view_tree_state"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Tree State"],["res_model","ir.ui.view_tree_state"],["type","ir.action.act_window"]] \N \N +52 2024-04-13 20:27:30.723827 0 12 act_view_tree_state_tree [["act_window",8],["sequence",10],["view",15]] ir.action.act_window.view ir f [["act_window",8],["sequence",10],["view",15]] \N \N +53 2024-04-13 20:27:30.723827 0 13 act_view_tree_state_form [["act_window",8],["sequence",20],["view",14]] ir.action.act_window.view ir f [["act_window",8],["sequence",20],["view",14]] \N \N +54 2024-04-13 20:27:30.723827 0 8 menu_view_tree_state [["action","ir.action.act_window,8"],["icon","tryton-list"],["name","Tree State"],["parent",2],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,8"],["icon","tryton-list"],["name","Tree State"],["parent",2],["sequence",50]] \N \N +55 2024-04-13 20:27:30.723827 0 16 view_search_form [["model","ir.ui.view_search"],["name","ui_view_search_form"],["type","form"]] ir.ui.view ir f [["model","ir.ui.view_search"],["name","ui_view_search_form"],["type","form"]] \N \N +56 2024-04-13 20:27:30.723827 0 17 view_search_tree [["model","ir.ui.view_search"],["name","ui_view_search_list"],["type","tree"]] ir.ui.view ir f [["model","ir.ui.view_search"],["name","ui_view_search_list"],["type","tree"]] \N \N +57 2024-04-13 20:27:30.723827 0 9 act_view_search [["name","View Search"],["res_model","ir.ui.view_search"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","View Search"],["res_model","ir.ui.view_search"],["type","ir.action.act_window"]] \N \N +58 2024-04-13 20:27:30.723827 0 14 act_view_search_tree [["act_window",9],["sequence",10],["view",17]] ir.action.act_window.view ir f [["act_window",9],["sequence",10],["view",17]] \N \N +59 2024-04-13 20:27:30.723827 0 15 act_view_search_form [["act_window",9],["sequence",20],["view",16]] ir.action.act_window.view ir f [["act_window",9],["sequence",20],["view",16]] \N \N +60 2024-04-13 20:27:30.723827 0 9 menu_view_search [["action","ir.action.act_window,9"],["icon","tryton-list"],["name","View Search"],["parent",2],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,9"],["icon","tryton-list"],["name","View Search"],["parent",2],["sequence",50]] \N \N +61 2024-04-13 20:27:30.723827 0 10 menu_action [["icon","tryton-folder"],["name","Actions"],["parent",2],["sequence",50]] ir.ui.menu ir f [["icon","tryton-folder"],["name","Actions"],["parent",2],["sequence",50]] \N \N +62 2024-04-13 20:27:30.723827 0 18 action_view_form [["model","ir.action"],["name","action_form"],["type","form"]] ir.ui.view ir f [["model","ir.action"],["name","action_form"],["type","form"]] \N \N +63 2024-04-13 20:27:30.723827 0 19 action_view_tree [["model","ir.action"],["name","action_list"],["type","tree"]] ir.ui.view ir f [["model","ir.action"],["name","action_list"],["type","tree"]] \N \N +444 2024-04-13 20:27:30.723827 0 98 msg_timedelta_d [["text","d"]] ir.message ir f [["text","d"]] \N \N +64 2024-04-13 20:27:30.723827 0 10 act_action_form [["name","Actions"],["res_model","ir.action"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Actions"],["res_model","ir.action"],["type","ir.action.act_window"]] \N \N +65 2024-04-13 20:27:30.723827 0 16 act_action_form_view1 [["act_window",10],["sequence",1],["view",19]] ir.action.act_window.view ir f [["act_window",10],["sequence",1],["view",19]] \N \N +66 2024-04-13 20:27:30.723827 0 17 act_action_form_view2 [["act_window",10],["sequence",2],["view",18]] ir.action.act_window.view ir f [["act_window",10],["sequence",2],["view",18]] \N \N +67 2024-04-13 20:27:30.723827 0 11 menu_act_action [["action","ir.action.act_window,10"],["icon","tryton-list"],["name","Actions"],["parent",10],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,10"],["icon","tryton-list"],["name","Actions"],["parent",10],["sequence",10]] \N \N +68 2024-04-13 20:27:30.723827 0 20 action_keyword_view_list [["model","ir.action.keyword"],["name","action_keyword_list"],["type","tree"]] ir.ui.view ir f [["model","ir.action.keyword"],["name","action_keyword_list"],["type","tree"]] \N \N +69 2024-04-13 20:27:30.723827 0 21 action_keyword_view_form [["model","ir.action.keyword"],["name","action_keyword_form"],["type","form"]] ir.ui.view ir f [["model","ir.action.keyword"],["name","action_keyword_form"],["type","form"]] \N \N +70 2024-04-13 20:27:30.723827 0 22 action_report_view_form [["inherit",18],["model","ir.action.report"],["name","action_report_form"],["type",null]] ir.ui.view ir f [["inherit",18],["model","ir.action.report"],["name","action_report_form"],["type",null]] \N \N +71 2024-04-13 20:27:30.723827 0 23 action_report_view_tree [["inherit",19],["model","ir.action.report"],["name","action_report_list"],["type",null]] ir.ui.view ir f [["inherit",19],["model","ir.action.report"],["name","action_report_list"],["type",null]] \N \N +72 2024-04-13 20:27:30.723827 0 11 act_action_report_form [["name","Reports"],["res_model","ir.action.report"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Reports"],["res_model","ir.action.report"],["type","ir.action.act_window"]] \N \N +73 2024-04-13 20:27:30.723827 0 18 act_action_report_form_view1 [["act_window",11],["sequence",1],["view",23]] ir.action.act_window.view ir f [["act_window",11],["sequence",1],["view",23]] \N \N +74 2024-04-13 20:27:30.723827 0 19 act_action_report_form_view2 [["act_window",11],["sequence",2],["view",22]] ir.action.act_window.view ir f [["act_window",11],["sequence",2],["view",22]] \N \N +75 2024-04-13 20:27:30.723827 0 12 menu_action_report_form [["action","ir.action.act_window,11"],["icon","tryton-list"],["name","Reports"],["parent",10],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,11"],["icon","tryton-list"],["name","Reports"],["parent",10],["sequence",20]] \N \N +76 2024-04-13 20:27:30.723827 0 24 action_act_window_view_form [["inherit",18],["model","ir.action.act_window"],["name","action_act_window_form"],["type",null]] ir.ui.view ir f [["inherit",18],["model","ir.action.act_window"],["name","action_act_window_form"],["type",null]] \N \N +77 2024-04-13 20:27:30.723827 0 25 action_act_window_view_tree [["inherit",19],["model","ir.action.act_window"],["name","action_act_window_list"],["type",null]] ir.ui.view ir f [["inherit",19],["model","ir.action.act_window"],["name","action_act_window_list"],["type",null]] \N \N +78 2024-04-13 20:27:30.723827 0 12 act_action_act_window_form [["name","Window Actions"],["res_model","ir.action.act_window"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Window Actions"],["res_model","ir.action.act_window"],["type","ir.action.act_window"]] \N \N +79 2024-04-13 20:27:30.723827 0 20 act_action_act_window_view1 [["act_window",12],["sequence",1],["view",25]] ir.action.act_window.view ir f [["act_window",12],["sequence",1],["view",25]] \N \N +80 2024-04-13 20:27:30.723827 0 21 act_action_act_window_view2 [["act_window",12],["sequence",2],["view",24]] ir.action.act_window.view ir f [["act_window",12],["sequence",2],["view",24]] \N \N +81 2024-04-13 20:27:30.723827 0 13 menu_action_act_window [["action","ir.action.act_window,12"],["icon","tryton-list"],["name","Window Actions"],["parent",10],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,12"],["icon","tryton-list"],["name","Window Actions"],["parent",10],["sequence",20]] \N \N +82 2024-04-13 20:27:30.723827 0 26 act_window_view_view_form [["model","ir.action.act_window.view"],["name","action_act_window_view_form"],["type","form"]] ir.ui.view ir f [["model","ir.action.act_window.view"],["name","action_act_window_view_form"],["type","form"]] \N \N +83 2024-04-13 20:27:30.723827 0 27 act_window_view_view_list [["model","ir.action.act_window.view"],["name","action_act_window_view_list"],["priority",10],["type","tree"]] ir.ui.view ir f [["model","ir.action.act_window.view"],["name","action_act_window_view_list"],["priority",10],["type","tree"]] \N \N +84 2024-04-13 20:27:30.723827 0 28 act_window_view_view_list2 [["model","ir.action.act_window.view"],["name","action_act_window_view_list2"],["priority",20],["type","tree"]] ir.ui.view ir f [["model","ir.action.act_window.view"],["name","action_act_window_view_list2"],["priority",20],["type","tree"]] \N \N +85 2024-04-13 20:27:30.723827 0 29 act_window_domain_view_form [["model","ir.action.act_window.domain"],["name","action_act_window_domain_form"],["type","form"]] ir.ui.view ir f [["model","ir.action.act_window.domain"],["name","action_act_window_domain_form"],["type","form"]] \N \N +86 2024-04-13 20:27:30.723827 0 30 act_window_domain_view_list [["model","ir.action.act_window.domain"],["name","action_act_window_domain_list"],["priority",10],["type","tree"]] ir.ui.view ir f [["model","ir.action.act_window.domain"],["name","action_act_window_domain_list"],["priority",10],["type","tree"]] \N \N +87 2024-04-13 20:27:30.723827 0 31 act_window_domain_view_list2 [["model","ir.action.act_window.domain"],["name","action_act_window_domain_list2"],["priority",20],["type","tree"]] ir.ui.view ir f [["model","ir.action.act_window.domain"],["name","action_act_window_domain_list2"],["priority",20],["type","tree"]] \N \N +88 2024-04-13 20:27:30.723827 0 32 action_wizard_view_form [["inherit",18],["model","ir.action.wizard"],["name","action_wizard_form"],["type",null]] ir.ui.view ir f [["inherit",18],["model","ir.action.wizard"],["name","action_wizard_form"],["type",null]] \N \N +89 2024-04-13 20:27:30.723827 0 33 action_wizard_view_tree [["inherit",19],["model","ir.action.wizard"],["name","action_wizard_list"],["type",null]] ir.ui.view ir f [["inherit",19],["model","ir.action.wizard"],["name","action_wizard_list"],["type",null]] \N \N +90 2024-04-13 20:27:30.723827 0 13 act_action_wizard_form [["name","Wizards"],["res_model","ir.action.wizard"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Wizards"],["res_model","ir.action.wizard"],["type","ir.action.act_window"]] \N \N +91 2024-04-13 20:27:30.723827 0 22 act_action_wizard_form_view1 [["act_window",13],["sequence",1],["view",33]] ir.action.act_window.view ir f [["act_window",13],["sequence",1],["view",33]] \N \N +92 2024-04-13 20:27:30.723827 0 23 act_action_wizard_form_view2 [["act_window",13],["sequence",2],["view",32]] ir.action.act_window.view ir f [["act_window",13],["sequence",2],["view",32]] \N \N +445 2024-04-13 20:27:30.723827 0 99 msg_timedelta_h [["text","h"]] ir.message ir f [["text","h"]] \N \N +93 2024-04-13 20:27:30.723827 0 14 menu_action_wizard [["action","ir.action.act_window,13"],["icon","tryton-list"],["name","Wizards"],["parent",10]] ir.ui.menu ir f [["action","ir.action.act_window,13"],["icon","tryton-list"],["name","Wizards"],["parent",10]] \N \N +94 2024-04-13 20:27:30.723827 0 34 action_url_view_form [["inherit",18],["model","ir.action.url"],["name","action_url_form"],["type",null]] ir.ui.view ir f [["inherit",18],["model","ir.action.url"],["name","action_url_form"],["type",null]] \N \N +95 2024-04-13 20:27:30.723827 0 35 action_url_view_tree [["inherit",19],["model","ir.action.url"],["name","action_url_list"],["type",null]] ir.ui.view ir f [["inherit",19],["model","ir.action.url"],["name","action_url_list"],["type",null]] \N \N +96 2024-04-13 20:27:30.723827 0 14 act_action_url_form [["name","URLs"],["res_model","ir.action.url"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","URLs"],["res_model","ir.action.url"],["type","ir.action.act_window"]] \N \N +97 2024-04-13 20:27:30.723827 0 24 act_action_url_form_view1 [["act_window",14],["sequence",1],["view",35]] ir.action.act_window.view ir f [["act_window",14],["sequence",1],["view",35]] \N \N +98 2024-04-13 20:27:30.723827 0 25 act_action_url_form_view2 [["act_window",14],["sequence",2],["view",34]] ir.action.act_window.view ir f [["act_window",14],["sequence",2],["view",34]] \N \N +99 2024-04-13 20:27:30.723827 0 15 menu_action_url [["action","ir.action.act_window,14"],["icon","tryton-list"],["name","URLs"],["parent",10],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,14"],["icon","tryton-list"],["name","URLs"],["parent",10],["sequence",20]] \N \N +100 2024-04-13 20:27:30.723827 0 16 menu_models [["icon","tryton-folder"],["name","Models"],["parent",1],["sequence",50]] ir.ui.menu ir f [["icon","tryton-folder"],["name","Models"],["parent",1],["sequence",50]] \N \N +101 2024-04-13 20:27:30.723827 0 36 model_view_form [["model","ir.model"],["name","model_form"],["type","form"]] ir.ui.view ir f [["model","ir.model"],["name","model_form"],["type","form"]] \N \N +102 2024-04-13 20:27:30.723827 0 37 model_view_tree [["model","ir.model"],["name","model_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model"],["name","model_list"],["type","tree"]] \N \N +103 2024-04-13 20:27:30.723827 0 15 act_model_form [["name","Models"],["res_model","ir.model"]] ir.action.act_window ir f [["name","Models"],["res_model","ir.model"]] \N \N +104 2024-04-13 20:27:30.723827 0 26 act_model_form_view1 [["act_window",15],["sequence",1],["view",37]] ir.action.act_window.view ir f [["act_window",15],["sequence",1],["view",37]] \N \N +105 2024-04-13 20:27:30.723827 0 27 act_model_form_view2 [["act_window",15],["sequence",2],["view",36]] ir.action.act_window.view ir f [["act_window",15],["sequence",2],["view",36]] \N \N +106 2024-04-13 20:27:30.723827 0 17 menu_model_form [["action","ir.action.act_window,15"],["icon","tryton-list"],["name","Models"],["parent",16],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,15"],["icon","tryton-list"],["name","Models"],["parent",16],["sequence",10]] \N \N +107 2024-04-13 20:27:30.723827 0 38 model_fields_view_form [["model","ir.model.field"],["name","model_field_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.field"],["name","model_field_form"],["type","form"]] \N \N +108 2024-04-13 20:27:30.723827 0 39 model_fields_view_tree [["model","ir.model.field"],["name","model_field_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model.field"],["name","model_field_list"],["type","tree"]] \N \N +109 2024-04-13 20:27:30.723827 0 16 act_model_fields_form [["name","Fields"],["res_model","ir.model.field"]] ir.action.act_window ir f [["name","Fields"],["res_model","ir.model.field"]] \N \N +110 2024-04-13 20:27:30.723827 0 28 act_model_fields_form_view1 [["act_window",16],["sequence",1],["view",39]] ir.action.act_window.view ir f [["act_window",16],["sequence",1],["view",39]] \N \N +111 2024-04-13 20:27:30.723827 0 29 act_model_fields_form_view2 [["act_window",16],["sequence",2],["view",38]] ir.action.act_window.view ir f [["act_window",16],["sequence",2],["view",38]] \N \N +112 2024-04-13 20:27:30.723827 0 18 model_model_fields_form [["action","ir.action.act_window,16"],["icon","tryton-list"],["name","Fields"],["parent",17],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,16"],["icon","tryton-list"],["name","Fields"],["parent",17],["sequence",20]] \N \N +113 2024-04-13 20:27:30.723827 0 40 model_access_view_tree [["model","ir.model.access"],["name","model_access_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model.access"],["name","model_access_list"],["type","tree"]] \N \N +114 2024-04-13 20:27:30.723827 0 41 model_access_view_form [["model","ir.model.access"],["name","model_access_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.access"],["name","model_access_form"],["type","form"]] \N \N +115 2024-04-13 20:27:30.723827 0 17 act_model_access_form [["name","Models Access"],["res_model","ir.model.access"]] ir.action.act_window ir f [["name","Models Access"],["res_model","ir.model.access"]] \N \N +116 2024-04-13 20:27:30.723827 0 30 act_model_access_form_view1 [["act_window",17],["sequence",1],["view",40]] ir.action.act_window.view ir f [["act_window",17],["sequence",1],["view",40]] \N \N +117 2024-04-13 20:27:30.723827 0 31 act_model_access_form_view2 [["act_window",17],["sequence",2],["view",41]] ir.action.act_window.view ir f [["act_window",17],["sequence",2],["view",41]] \N \N +118 2024-04-13 20:27:30.723827 0 19 menu_model_access_form [["action","ir.action.act_window,17"],["icon","tryton-list"],["name","Models Access"],["parent",16],["sequence",30]] ir.ui.menu ir f [["action","ir.action.act_window,17"],["icon","tryton-list"],["name","Models Access"],["parent",16],["sequence",30]] \N \N +119 2024-04-13 20:27:30.723827 0 18 act_model_access_form_relate_model [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"model\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"model\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Access"],["res_model","ir.model.access"]] ir.action.act_window ir f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"model\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"model\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Access"],["res_model","ir.model.access"]] \N \N +120 2024-04-13 20:27:30.723827 0 16 act_model_access_form_relate_model_keyword1 [["action",18],["keyword","form_relate"],["model","ir.model,-1"]] ir.action.keyword ir f [["action",18],["keyword","form_relate"],["model","ir.model,-1"]] \N \N +121 2024-04-13 20:27:30.723827 0 42 model_field_access_view_tree [["model","ir.model.field.access"],["name","model_field_access_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model.field.access"],["name","model_field_access_list"],["type","tree"]] \N \N +178 2024-04-13 20:27:30.723827 0 44 act_sequence_type_form_view1 [["act_window",30],["sequence",1],["view",60]] ir.action.act_window.view ir f [["act_window",30],["sequence",1],["view",60]] \N \N +122 2024-04-13 20:27:30.723827 0 43 model_field_access_view_form [["model","ir.model.field.access"],["name","model_field_access_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.field.access"],["name","model_field_access_form"],["type","form"]] \N \N +123 2024-04-13 20:27:30.723827 0 19 act_model_field_access_form [["name","Fields Access"],["res_model","ir.model.field.access"]] ir.action.act_window ir f [["name","Fields Access"],["res_model","ir.model.field.access"]] \N \N +124 2024-04-13 20:27:30.723827 0 32 act_model_field_access_form_view1 [["act_window",19],["sequence",10],["view",42]] ir.action.act_window.view ir f [["act_window",19],["sequence",10],["view",42]] \N \N +125 2024-04-13 20:27:30.723827 0 33 act_model_field_access_form_view2 [["act_window",19],["sequence",20],["view",43]] ir.action.act_window.view ir f [["act_window",19],["sequence",20],["view",43]] \N \N +126 2024-04-13 20:27:30.723827 0 20 menu_model_field_access_form [["action","ir.action.act_window,19"],["icon","tryton-list"],["name","Fields Access"],["parent",19],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,19"],["icon","tryton-list"],["name","Fields Access"],["parent",19],["sequence",10]] \N \N +127 2024-04-13 20:27:30.723827 0 20 act_model_field_access_form_relate_field [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"field\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"field\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Access"],["res_model","ir.model.field.access"]] ir.action.act_window ir f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"field\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"field\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Access"],["res_model","ir.model.field.access"]] \N \N +128 2024-04-13 20:27:30.723827 0 18 act_modelfield__access_form_relate_field_keyword1 [["action",20],["keyword","form_relate"],["model","ir.model.field,-1"]] ir.action.keyword ir f [["action",20],["keyword","form_relate"],["model","ir.model.field,-1"]] \N \N +129 2024-04-13 20:27:30.723827 0 21 report_model_graph [["model","ir.model"],["name","Graph"],["report_name","ir.model.graph"]] ir.action.report ir f [["model","ir.model"],["name","Graph"],["report_name","ir.model.graph"]] \N \N +130 2024-04-13 20:27:30.723827 0 44 print_model_graph_start_view_form [["model","ir.model.print_model_graph.start"],["name","model_print_model_graph_start_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.print_model_graph.start"],["name","model_print_model_graph_start_form"],["type","form"]] \N \N +131 2024-04-13 20:27:30.723827 0 22 print_model_graph [["model","ir.model"],["name","Graph"],["wiz_name","ir.model.print_model_graph"]] ir.action.wizard ir f [["model","ir.model"],["name","Graph"],["wiz_name","ir.model.print_model_graph"]] \N \N +132 2024-04-13 20:27:30.723827 0 19 print_model_graph_keyword [["action",22],["keyword","form_print"],["model","ir.model,-1"]] ir.action.keyword ir f [["action",22],["keyword","form_print"],["model","ir.model,-1"]] \N \N +133 2024-04-13 20:27:30.723827 0 23 report_model_workflow_graph [["model","ir.model"],["name","Workflow Graph"],["report_name","ir.model.workflow_graph"]] ir.action.report ir f [["model","ir.model"],["name","Workflow Graph"],["report_name","ir.model.workflow_graph"]] \N \N +134 2024-04-13 20:27:30.723827 0 20 print_model_workflow_graph_keyword [["action",23],["keyword","form_print"],["model","ir.model,-1"]] ir.action.keyword ir f [["action",23],["keyword","form_print"],["model","ir.model,-1"]] \N \N +135 2024-04-13 20:27:30.723827 0 45 model_button_view_list [["model","ir.model.button"],["name","model_button_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model.button"],["name","model_button_list"],["type","tree"]] \N \N +136 2024-04-13 20:27:30.723827 0 46 model_button_view_form [["model","ir.model.button"],["name","model_button_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.button"],["name","model_button_form"],["type","form"]] \N \N +137 2024-04-13 20:27:30.723827 0 24 act_model_button_form [["name","Buttons"],["res_model","ir.model.button"]] ir.action.act_window ir f [["name","Buttons"],["res_model","ir.model.button"]] \N \N +138 2024-04-13 20:27:30.723827 0 34 act_model_button_form_view1 [["act_window",24],["sequence",10],["view",45]] ir.action.act_window.view ir f [["act_window",24],["sequence",10],["view",45]] \N \N +139 2024-04-13 20:27:30.723827 0 35 act_model_button_form_view2 [["act_window",24],["sequence",20],["view",46]] ir.action.act_window.view ir f [["act_window",24],["sequence",20],["view",46]] \N \N +140 2024-04-13 20:27:30.723827 0 21 menu_model_button_form [["action","ir.action.act_window,24"],["icon","tryton-list"],["name","Buttons"],["parent",19],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,24"],["icon","tryton-list"],["name","Buttons"],["parent",19],["sequence",20]] \N \N +141 2024-04-13 20:27:30.723827 0 47 model_button_rule_view_list [["model","ir.model.button.rule"],["name","model_button_rule_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model.button.rule"],["name","model_button_rule_list"],["type","tree"]] \N \N +142 2024-04-13 20:27:30.723827 0 48 model_button_rule_view_form [["model","ir.model.button.rule"],["name","model_button_rule_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.button.rule"],["name","model_button_rule_form"],["type","form"]] \N \N +143 2024-04-13 20:27:30.723827 0 49 model_button_click_view_list [["model","ir.model.button.click"],["name","model_button_click_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model.button.click"],["name","model_button_click_list"],["type","tree"]] \N \N +144 2024-04-13 20:27:30.723827 0 50 model_button_click_view_form [["model","ir.model.button.click"],["name","model_button_click_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.button.click"],["name","model_button_click_form"],["type","form"]] \N \N +145 2024-04-13 20:27:30.723827 0 25 act_model_button_click_form_relate_model_button [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"button\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"button\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Clicks"],["res_model","ir.model.button.click"]] ir.action.act_window ir f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"button\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"button\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Clicks"],["res_model","ir.model.button.click"]] \N \N +179 2024-04-13 20:27:30.723827 0 45 act_sequence_type_form_view2 [["act_window",30],["sequence",2],["view",59]] ir.action.act_window.view ir f [["act_window",30],["sequence",2],["view",59]] \N \N +146 2024-04-13 20:27:30.723827 0 22 act_model_button_click_form_relate_model_button_keyword1 [["action",25],["keyword","form_relate"],["model","ir.model.button,-1"]] ir.action.keyword ir f [["action",25],["keyword","form_relate"],["model","ir.model.button,-1"]] \N \N +147 2024-04-13 20:27:30.723827 0 51 model_data_view_list [["model","ir.model.data"],["name","model_data_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model.data"],["name","model_data_list"],["type","tree"]] \N \N +148 2024-04-13 20:27:30.723827 0 52 model_data_view_form [["model","ir.model.data"],["name","model_data_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.data"],["name","model_data_form"],["type","form"]] \N \N +149 2024-04-13 20:27:30.723827 0 26 act_model_data_form [["name","Data"],["res_model","ir.model.data"]] ir.action.act_window ir f [["name","Data"],["res_model","ir.model.data"]] \N \N +150 2024-04-13 20:27:30.723827 0 36 act_model_data_form_view1 [["act_window",26],["sequence",10],["view",51]] ir.action.act_window.view ir f [["act_window",26],["sequence",10],["view",51]] \N \N +151 2024-04-13 20:27:30.723827 0 37 act_model_data_form_view2 [["act_window",26],["sequence",20],["view",52]] ir.action.act_window.view ir f [["act_window",26],["sequence",20],["view",52]] \N \N +152 2024-04-13 20:27:30.723827 0 1 act_model_data_form_domain_out_of_sync [["act_window",26],["count",true],["domain","[[\\"out_of_sync\\", \\"=\\", true]]"],["name","Out of Sync"],["sequence",10]] ir.action.act_window.domain ir f [["act_window",26],["count",true],["domain","[[\\"out_of_sync\\", \\"=\\", true]]"],["name","Out of Sync"],["sequence",10]] \N \N +153 2024-04-13 20:27:30.723827 0 2 act_model_data_form_domain_all [["act_window",26],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain ir f [["act_window",26],["domain",""],["name","All"],["sequence",9999]] \N \N +154 2024-04-13 20:27:30.723827 0 22 menu_model_data_form [["action","ir.action.act_window,26"],["icon","tryton-list"],["name","Data"],["parent",17],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,26"],["icon","tryton-list"],["name","Data"],["parent",17],["sequence",50]] \N \N +155 2024-04-13 20:27:30.723827 0 2 model_data_sync_button [["model",38],["name","sync"],["string","Sync"]] ir.model.button ir f [["model",38],["name","sync"],["string","Sync"]] \N \N +156 2024-04-13 20:27:30.723827 0 53 model_log_view_form [["model","ir.model.log"],["name","model_log_form"],["type","form"]] ir.ui.view ir f [["model","ir.model.log"],["name","model_log_form"],["type","form"]] \N \N +157 2024-04-13 20:27:30.723827 0 54 model_log_view_list [["model","ir.model.log"],["name","model_log_list"],["type","tree"]] ir.ui.view ir f [["model","ir.model.log"],["name","model_log_list"],["type","tree"]] \N \N +158 2024-04-13 20:27:30.723827 0 27 act_model_log_form [["name","Logs"],["res_model","ir.model.log"]] ir.action.act_window ir f [["name","Logs"],["res_model","ir.model.log"]] \N \N +159 2024-04-13 20:27:30.723827 0 38 act_model_log_form_view1 [["act_window",27],["sequence",10],["view",54]] ir.action.act_window.view ir f [["act_window",27],["sequence",10],["view",54]] \N \N +160 2024-04-13 20:27:30.723827 0 39 act_model_log_form_view2 [["act_window",27],["sequence",20],["view",53]] ir.action.act_window.view ir f [["act_window",27],["sequence",20],["view",53]] \N \N +161 2024-04-13 20:27:30.723827 0 23 menu_model_log_form [["action","ir.action.act_window,27"],["icon","tryton-list"],["name","Logs"],["parent",17],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,27"],["icon","tryton-list"],["name","Logs"],["parent",17],["sequence",50]] \N \N +162 2024-04-13 20:27:30.723827 0 24 menu_sequences [["icon","tryton-folder"],["name","Sequences"],["parent",1],["sequence",20]] ir.ui.menu ir f [["icon","tryton-folder"],["name","Sequences"],["parent",1],["sequence",20]] \N \N +163 2024-04-13 20:27:30.723827 0 55 sequence_view_form [["model","ir.sequence"],["name","sequence_form"],["type","form"]] ir.ui.view ir f [["model","ir.sequence"],["name","sequence_form"],["type","form"]] \N \N +164 2024-04-13 20:27:30.723827 0 56 sequence_view_tree [["model","ir.sequence"],["name","sequence_list"],["type","tree"]] ir.ui.view ir f [["model","ir.sequence"],["name","sequence_list"],["type","tree"]] \N \N +165 2024-04-13 20:27:30.723827 0 28 act_sequence_form [["context",""],["name","Sequences"],["res_model","ir.sequence"],["type","ir.action.act_window"]] ir.action.act_window ir f [["context",""],["name","Sequences"],["res_model","ir.sequence"],["type","ir.action.act_window"]] \N \N +166 2024-04-13 20:27:30.723827 0 40 act_sequence_form_view1 [["act_window",28],["sequence",1],["view",56]] ir.action.act_window.view ir f [["act_window",28],["sequence",1],["view",56]] \N \N +167 2024-04-13 20:27:30.723827 0 41 act_sequence_form_view2 [["act_window",28],["sequence",2],["view",55]] ir.action.act_window.view ir f [["act_window",28],["sequence",2],["view",55]] \N \N +168 2024-04-13 20:27:30.723827 0 25 menu_sequence_form [["action","ir.action.act_window,28"],["icon","tryton-list"],["name","Sequences"],["parent",24],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,28"],["icon","tryton-list"],["name","Sequences"],["parent",24],["sequence",10]] \N \N +169 2024-04-13 20:27:30.723827 0 57 sequence_strict_view_form [["inherit",55],["model","ir.sequence.strict"],["type",null]] ir.ui.view ir f [["inherit",55],["model","ir.sequence.strict"],["type",null]] \N \N +170 2024-04-13 20:27:30.723827 0 58 sequence_strict_view_tree [["inherit",56],["model","ir.sequence.strict"],["type",null]] ir.ui.view ir f [["inherit",56],["model","ir.sequence.strict"],["type",null]] \N \N +171 2024-04-13 20:27:30.723827 0 29 act_sequence_strict_form [["context",""],["name","Sequences Strict"],["res_model","ir.sequence.strict"],["type","ir.action.act_window"]] ir.action.act_window ir f [["context",""],["name","Sequences Strict"],["res_model","ir.sequence.strict"],["type","ir.action.act_window"]] \N \N +172 2024-04-13 20:27:30.723827 0 42 act_sequence_strict_form_view1 [["act_window",29],["sequence",1],["view",58]] ir.action.act_window.view ir f [["act_window",29],["sequence",1],["view",58]] \N \N +173 2024-04-13 20:27:30.723827 0 43 act_sequence_strict_form_view2 [["act_window",29],["sequence",2],["view",57]] ir.action.act_window.view ir f [["act_window",29],["sequence",2],["view",57]] \N \N +174 2024-04-13 20:27:30.723827 0 26 menu_sequence_strict_form [["action","ir.action.act_window,29"],["icon","tryton-list"],["name","Sequences Strict"],["parent",24],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,29"],["icon","tryton-list"],["name","Sequences Strict"],["parent",24],["sequence",10]] \N \N +175 2024-04-13 20:27:30.723827 0 59 sequence_type_view_form [["model","ir.sequence.type"],["name","sequence_type_form"],["type","form"]] ir.ui.view ir f [["model","ir.sequence.type"],["name","sequence_type_form"],["type","form"]] \N \N +176 2024-04-13 20:27:30.723827 0 60 sequence_type_view_tree [["model","ir.sequence.type"],["name","sequence_type_list"],["type","tree"]] ir.ui.view ir f [["model","ir.sequence.type"],["name","sequence_type_list"],["type","tree"]] \N \N +177 2024-04-13 20:27:30.723827 0 30 act_sequence_type_form [["name","Types"],["res_model","ir.sequence.type"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Types"],["res_model","ir.sequence.type"],["type","ir.action.act_window"]] \N \N +180 2024-04-13 20:27:30.723827 0 27 menu_ir_sequence_type [["action","ir.action.act_window,30"],["icon","tryton-list"],["name","Types"],["parent",24],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,30"],["icon","tryton-list"],["name","Types"],["parent",24],["sequence",20]] \N \N +181 2024-04-13 20:27:30.723827 0 61 attachment_view_form [["model","ir.attachment"],["name","attachment_form"],["type","form"]] ir.ui.view ir f [["model","ir.attachment"],["name","attachment_form"],["type","form"]] \N \N +182 2024-04-13 20:27:30.723827 0 62 attachment_view_form_preview [["model","ir.attachment"],["name","attachment_form_preview"],["priority",50],["type","form"]] ir.ui.view ir f [["model","ir.attachment"],["name","attachment_form_preview"],["priority",50],["type","form"]] \N \N +183 2024-04-13 20:27:30.723827 0 63 attachment_view_tree [["model","ir.attachment"],["name","attachment_list"],["type","tree"]] ir.ui.view ir f [["model","ir.attachment"],["name","attachment_list"],["type","tree"]] \N \N +184 2024-04-13 20:27:30.723827 0 31 act_attachment_form [["name","Attachments"],["res_model","ir.attachment"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Attachments"],["res_model","ir.attachment"],["type","ir.action.act_window"]] \N \N +185 2024-04-13 20:27:30.723827 0 46 act_attachment_form_view1 [["act_window",31],["sequence",1],["view",63]] ir.action.act_window.view ir f [["act_window",31],["sequence",1],["view",63]] \N \N +186 2024-04-13 20:27:30.723827 0 47 act_attachment_form_view2 [["act_window",31],["sequence",2],["view",61]] ir.action.act_window.view ir f [["act_window",31],["sequence",2],["view",61]] \N \N +187 2024-04-13 20:27:30.723827 0 28 menu_attachment_form [["action","ir.action.act_window,31"],["icon","tryton-list"],["name","Attachments"],["parent",16],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,31"],["icon","tryton-list"],["name","Attachments"],["parent",16],["sequence",50]] \N \N +188 2024-04-13 20:27:30.723827 0 64 note_view_form [["model","ir.note"],["name","note_form"],["type","form"]] ir.ui.view ir f [["model","ir.note"],["name","note_form"],["type","form"]] \N \N +189 2024-04-13 20:27:30.723827 0 65 note_view_list [["model","ir.note"],["name","note_list"],["type","tree"]] ir.ui.view ir f [["model","ir.note"],["name","note_list"],["type","tree"]] \N \N +190 2024-04-13 20:27:30.723827 0 32 act_note_form [["name","Notes"],["res_model","ir.note"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Notes"],["res_model","ir.note"],["type","ir.action.act_window"]] \N \N +191 2024-04-13 20:27:30.723827 0 48 act_note_form_view1 [["act_window",32],["sequence",1],["view",65]] ir.action.act_window.view ir f [["act_window",32],["sequence",1],["view",65]] \N \N +192 2024-04-13 20:27:30.723827 0 49 act_note_form_view2 [["act_window",32],["sequence",2],["view",64]] ir.action.act_window.view ir f [["act_window",32],["sequence",2],["view",64]] \N \N +193 2024-04-13 20:27:30.723827 0 29 menu_note_form [["action","ir.action.act_window,32"],["icon","tryton-list"],["name","Notes"],["parent",16],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,32"],["icon","tryton-list"],["name","Notes"],["parent",16],["sequence",50]] \N \N +194 2024-04-13 20:27:30.723827 0 30 menu_scheduler [["icon","tryton-folder"],["name","Scheduler"],["parent",1],["sequence",50]] ir.ui.menu ir f [["icon","tryton-folder"],["name","Scheduler"],["parent",1],["sequence",50]] \N \N +195 2024-04-13 20:27:30.723827 0 66 cron_view_tree [["model","ir.cron"],["name","cron_list"],["type","tree"]] ir.ui.view ir f [["model","ir.cron"],["name","cron_list"],["type","tree"]] \N \N +196 2024-04-13 20:27:30.723827 0 67 cron_view_form [["model","ir.cron"],["name","cron_form"],["type","form"]] ir.ui.view ir f [["model","ir.cron"],["name","cron_form"],["type","form"]] \N \N +197 2024-04-13 20:27:30.723827 0 33 act_cron_form [["context",""],["name","Actions"],["res_model","ir.cron"]] ir.action.act_window ir f [["context",""],["name","Actions"],["res_model","ir.cron"]] \N \N +198 2024-04-13 20:27:30.723827 0 50 act_cron_form_view1 [["act_window",33],["sequence",1],["view",66]] ir.action.act_window.view ir f [["act_window",33],["sequence",1],["view",66]] \N \N +199 2024-04-13 20:27:30.723827 0 51 act_cron_form_view2 [["act_window",33],["sequence",2],["view",67]] ir.action.act_window.view ir f [["act_window",33],["sequence",2],["view",67]] \N \N +200 2024-04-13 20:27:30.723827 0 31 menu_cron_form [["action","ir.action.act_window,33"],["icon","tryton-list"],["name","Actions"],["parent",30],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,33"],["icon","tryton-list"],["name","Actions"],["parent",30],["sequence",10]] \N \N +201 2024-04-13 20:27:30.723827 0 3 cron_run_once_button [["model",46],["name","run_once"],["string","Run Once"]] ir.model.button ir f [["model",46],["name","run_once"],["string","Run Once"]] \N \N +202 2024-04-13 20:27:30.723827 0 32 menu_localization [["icon","tryton-folder"],["name","Localization"],["parent",1],["sequence",30]] ir.ui.menu ir f [["icon","tryton-folder"],["name","Localization"],["parent",1],["sequence",30]] \N \N +203 2024-04-13 20:27:30.723827 0 2 lang_bg [["am",""],["code","bg"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Bulgarian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] ir.lang ir f [["am",""],["code","bg"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Bulgarian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] \N \N +204 2024-04-13 20:27:30.723827 0 3 lang_ca [["am","a. m."],["code","ca"],["date","%d/%m/%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Catal\\u00e0"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm","p. m."],["positive_sign",""],["thousands_sep"," "]] ir.lang ir f [["am","a. m."],["code","ca"],["date","%d/%m/%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Catal\\u00e0"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm","p. m."],["positive_sign",""],["thousands_sep"," "]] \N \N +244 2024-04-13 20:27:30.723827 0 55 act_translation_form_view2 [["act_window",36],["sequence",2],["view",71]] ir.action.act_window.view ir f [["act_window",36],["sequence",2],["view",71]] \N \N +245 2024-04-13 20:27:30.723827 0 34 menu_translation_form [["action","ir.action.act_window,36"],["icon","tryton-list"],["name","Translations"],["parent",32],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,36"],["icon","tryton-list"],["name","Translations"],["parent",32],["sequence",20]] \N \N +446 2024-04-13 20:27:30.723827 0 100 msg_timedelta_m [["text","m"]] ir.message ir f [["text","m"]] \N \N +205 2024-04-13 20:27:30.723827 0 4 lang_cs [["am",""],["code","cs"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Czech"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] ir.lang ir f [["am",""],["code","cs"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Czech"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] \N \N +206 2024-04-13 20:27:30.723827 0 5 lang_de [["am",""],["code","de"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","German"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] ir.lang ir f [["am",""],["code","de"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","German"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] \N \N +207 2024-04-13 20:27:30.723827 0 6 lang_es [["am",""],["code","es"],["date","%d/%m/%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Spanish"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] ir.lang ir f [["am",""],["code","es"],["date","%d/%m/%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Spanish"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] \N \N +208 2024-04-13 20:27:30.723827 0 7 lang_es_419 [["am",""],["code","es_419"],["date","%d/%m/%Y"],["decimal_point","."],["grouping","[3, 3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep",","],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Spanish (Latin American)"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",","]] ir.lang ir f [["am",""],["code","es_419"],["date","%d/%m/%Y"],["decimal_point","."],["grouping","[3, 3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep",","],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Spanish (Latin American)"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",","]] \N \N +209 2024-04-13 20:27:30.723827 0 8 lang_et [["code","et"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3]"],["mon_decimal_point",","],["mon_grouping","[3, 3]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Estonian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["positive_sign",""],["thousands_sep","\\u00a0"]] ir.lang ir f [["code","et"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3]"],["mon_decimal_point",","],["mon_grouping","[3, 3]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Estonian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["positive_sign",""],["thousands_sep","\\u00a0"]] \N \N +210 2024-04-13 20:27:30.723827 0 9 lang_fa [["am",""],["code","fa"],["date","%Y/%m/%d"],["decimal_point","."],["direction","rtl"],["grouping","[3, 0]"],["mon_decimal_point","\\u066b"],["mon_grouping","[3, 0]"],["mon_thousands_sep","\\u066c"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Persian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",","]] ir.lang ir f [["am",""],["code","fa"],["date","%Y/%m/%d"],["decimal_point","."],["direction","rtl"],["grouping","[3, 0]"],["mon_decimal_point","\\u066b"],["mon_grouping","[3, 0]"],["mon_thousands_sep","\\u066c"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Persian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",","]] \N \N +211 2024-04-13 20:27:30.723827 0 10 lang_fi [["code","fi"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Finnish"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["positive_sign",""],["thousands_sep","\\u00a0"]] ir.lang ir f [["code","fi"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Finnish"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["positive_sign",""],["thousands_sep","\\u00a0"]] \N \N +212 2024-04-13 20:27:30.723827 0 11 lang_fr [["am",""],["code","fr"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 0]"],["mon_thousands_sep"," "],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","French"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] ir.lang ir f [["am",""],["code","fr"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 0]"],["mon_thousands_sep"," "],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","French"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] \N \N +213 2024-04-13 20:27:30.723827 0 12 lang_hu [["am",""],["code","hu"],["date","%Y-%m-%d"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Hungarian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] ir.lang ir f [["am",""],["code","hu"],["date","%Y-%m-%d"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Hungarian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] \N \N +214 2024-04-13 20:27:30.723827 0 13 lang_id [["am",""],["code","id"],["date","%d/%m/%Y"],["decimal_point",","],["grouping","[3, 3]"],["mon_decimal_point",","],["mon_grouping","[3, 3]"],["mon_thousands_sep","."],["n_cs_precedes",true],["n_sep_by_space",false],["n_sign_posn",1],["name","Indonesian"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",false],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] ir.lang ir f [["am",""],["code","id"],["date","%d/%m/%Y"],["decimal_point",","],["grouping","[3, 3]"],["mon_decimal_point",","],["mon_grouping","[3, 3]"],["mon_thousands_sep","."],["n_cs_precedes",true],["n_sep_by_space",false],["n_sign_posn",1],["name","Indonesian"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",false],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] \N \N +215 2024-04-13 20:27:30.723827 0 14 lang_it [["am",""],["code","it"],["date","%d/%m/%Y"],["decimal_point",","],["grouping","[]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",1],["name","Italian"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",""]] ir.lang ir f [["am",""],["code","it"],["date","%d/%m/%Y"],["decimal_point",","],["grouping","[]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",1],["name","Italian"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",""]] \N \N +216 2024-04-13 20:27:30.723827 0 15 lang_lo [["am","AM"],["code","lo"],["date","%d/%m/%Y"],["decimal_point","."],["grouping","[3, 3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep",","],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",4],["name","Lao"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",4],["pm","PM"],["positive_sign",""],["thousands_sep",","]] ir.lang ir f [["am","AM"],["code","lo"],["date","%d/%m/%Y"],["decimal_point","."],["grouping","[3, 3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep",","],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",4],["name","Lao"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",4],["pm","PM"],["positive_sign",""],["thousands_sep",","]] \N \N +217 2024-04-13 20:27:30.723827 0 16 lang_lt [["am",""],["code","lt"],["date","%Y-%m-%d"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Lithuanian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] ir.lang ir f [["am",""],["code","lt"],["date","%Y-%m-%d"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Lithuanian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] \N \N +218 2024-04-13 20:27:30.723827 0 17 lang_nl [["am",""],["code","nl"],["date","%d-%m-%Y"],["decimal_point",","],["grouping","[]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep"," "],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",2],["name","Dutch"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",""]] ir.lang ir f [["am",""],["code","nl"],["date","%d-%m-%Y"],["decimal_point",","],["grouping","[]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep"," "],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",2],["name","Dutch"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",""]] \N \N +219 2024-04-13 20:27:30.723827 0 18 lang_pl [["am",""],["code","pl"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 0, 0]"],["mon_thousands_sep"," "],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Polish"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] ir.lang ir f [["am",""],["code","pl"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 0, 0]"],["mon_thousands_sep"," "],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Polish"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] \N \N +220 2024-04-13 20:27:30.723827 0 19 lang_pt [["am",""],["code","pt"],["date","%d-%m-%Y"],["decimal_point",","],["grouping","[]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",1],["name","Portuguese"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",""]] ir.lang ir f [["am",""],["code","pt"],["date","%d-%m-%Y"],["decimal_point",","],["grouping","[]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",1],["name","Portuguese"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep",""]] \N \N +221 2024-04-13 20:27:30.723827 0 20 lang_ro [["am",""],["code","ro"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3,3]"],["mon_decimal_point",","],["mon_grouping","[3,3]"],["mon_thousands_sep","."],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",1],["name","Romanian"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] ir.lang ir f [["am",""],["code","ro"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3,3]"],["mon_decimal_point",","],["mon_grouping","[3,3]"],["mon_thousands_sep","."],["n_cs_precedes",true],["n_sep_by_space",true],["n_sign_posn",1],["name","Romanian"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep","."]] \N \N +222 2024-04-13 20:27:30.723827 0 21 lang_ru [["am",""],["code","ru"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Russian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] ir.lang ir f [["am",""],["code","ru"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","\\u00a0"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Russian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] \N \N +443 2024-04-13 20:27:30.723827 0 97 msg_timedelta_w [["text","w"]] ir.message ir f [["text","w"]] \N \N +223 2024-04-13 20:27:30.723827 0 22 lang_sl [["am",""],["code","sl"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep"," "],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Slovenian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] ir.lang ir f [["am",""],["code","sl"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep"," "],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Slovenian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["pm",""],["positive_sign",""],["thousands_sep"," "]] \N \N +224 2024-04-13 20:27:30.723827 0 23 lang_tr [["code","tr"],["date","%d-%m-%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Turkish"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["positive_sign",""],["thousands_sep","."]] ir.lang ir f [["code","tr"],["date","%d-%m-%Y"],["decimal_point",","],["grouping","[3, 3, 0]"],["mon_decimal_point",","],["mon_grouping","[3, 3, 0]"],["mon_thousands_sep","."],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Turkish"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["positive_sign",""],["thousands_sep","."]] \N \N +225 2024-04-13 20:27:30.723827 0 24 lang_uk [["code","uk"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3]"],["mon_decimal_point",","],["mon_grouping","[3, 3]"],["mon_thousands_sep","\\u202f"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Ukrainian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["positive_sign",""],["thousands_sep","\\u202f"]] ir.lang ir f [["code","uk"],["date","%d.%m.%Y"],["decimal_point",","],["grouping","[3, 3]"],["mon_decimal_point",","],["mon_grouping","[3, 3]"],["mon_thousands_sep","\\u202f"],["n_cs_precedes",false],["n_sep_by_space",true],["n_sign_posn",1],["name","Ukrainian"],["negative_sign","-"],["p_cs_precedes",false],["p_sep_by_space",true],["p_sign_posn",1],["positive_sign",""],["thousands_sep","\\u202f"]] \N \N +226 2024-04-13 20:27:30.723827 0 25 lang_zh_CN [["am","\\u4e0a\\u5348"],["code","zh_CN"],["date","%Y-%m-%d"],["decimal_point","."],["grouping","[3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 0]"],["mon_thousands_sep",","],["n_cs_precedes",true],["n_sep_by_space",false],["n_sign_posn",4],["name","Chinese Simplified"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",false],["p_sign_posn",4],["pm","\\u4e0b\\u5348"],["positive_sign",""],["thousands_sep",","]] ir.lang ir f [["am","\\u4e0a\\u5348"],["code","zh_CN"],["date","%Y-%m-%d"],["decimal_point","."],["grouping","[3, 0]"],["mon_decimal_point","."],["mon_grouping","[3, 0]"],["mon_thousands_sep",","],["n_cs_precedes",true],["n_sep_by_space",false],["n_sign_posn",4],["name","Chinese Simplified"],["negative_sign","-"],["p_cs_precedes",true],["p_sep_by_space",false],["p_sign_posn",4],["pm","\\u4e0b\\u5348"],["positive_sign",""],["thousands_sep",","]] \N \N +227 2024-04-13 20:27:30.723827 0 68 lang_view_tree [["model","ir.lang"],["name","lang_list"],["type","tree"]] ir.ui.view ir f [["model","ir.lang"],["name","lang_list"],["type","tree"]] \N \N +228 2024-04-13 20:27:30.723827 0 69 lang_view_form [["model","ir.lang"],["name","lang_form"],["type","form"]] ir.ui.view ir f [["model","ir.lang"],["name","lang_form"],["type","form"]] \N \N +229 2024-04-13 20:27:30.723827 0 34 act_lang_form [["context",""],["name","Languages"],["res_model","ir.lang"]] ir.action.act_window ir f [["context",""],["name","Languages"],["res_model","ir.lang"]] \N \N +230 2024-04-13 20:27:30.723827 0 52 act_lang_form_view1 [["act_window",34],["sequence",1],["view",68]] ir.action.act_window.view ir f [["act_window",34],["sequence",1],["view",68]] \N \N +231 2024-04-13 20:27:30.723827 0 53 act_lang_form_view2 [["act_window",34],["sequence",2],["view",69]] ir.action.act_window.view ir f [["act_window",34],["sequence",2],["view",69]] \N \N +232 2024-04-13 20:27:30.723827 0 33 menu_lang_form [["action","ir.action.act_window,34"],["icon","tryton-list"],["name","Languages"],["parent",32],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,34"],["icon","tryton-list"],["name","Languages"],["parent",32],["sequence",10]] \N \N +233 2024-04-13 20:27:30.723827 0 4 lang_load_translations_button [["confirm","Are you sure you want to load languages' translations?"],["model",47],["name","load_translations"],["string","Load translations"]] ir.model.button ir f [["confirm","Are you sure you want to load languages' translations?"],["model",47],["name","load_translations"],["string","Load translations"]] \N \N +234 2024-04-13 20:27:30.723827 0 5 lang_unload_translations_button [["confirm","Are you sure you want to remove languages' translations?"],["model",47],["name","unload_translations"],["string","Unload translations"]] ir.model.button ir f [["confirm","Are you sure you want to remove languages' translations?"],["model",47],["name","unload_translations"],["string","Unload translations"]] \N \N +235 2024-04-13 20:27:30.723827 0 70 lang_config_start_view_form [["model","ir.lang.config.start"],["name","lang_config_start_form"],["type","form"]] ir.ui.view ir f [["model","ir.lang.config.start"],["name","lang_config_start_form"],["type","form"]] \N \N +236 2024-04-13 20:27:30.723827 0 35 act_lang_config [["name","Configure Languages"],["window",true],["wiz_name","ir.lang.config"]] ir.action.wizard ir f [["name","Configure Languages"],["window",true],["wiz_name","ir.lang.config"]] \N \N +237 2024-04-13 20:27:30.723827 0 1 config_wizard_item_lang [["action",35]] ir.module.config_wizard.item ir f [["action",35]] \N \N +238 2024-04-13 20:27:30.723827 0 71 translation_view_form [["model","ir.translation"],["name","translation_form"],["type","form"]] ir.ui.view ir f [["model","ir.translation"],["name","translation_form"],["type","form"]] \N \N +239 2024-04-13 20:27:30.723827 0 72 translation_view_tree [["model","ir.translation"],["name","translation_list"],["type","tree"]] ir.ui.view ir f [["model","ir.translation"],["name","translation_list"],["type","tree"]] \N \N +240 2024-04-13 20:27:30.723827 0 36 act_translation_form [["domain",null],["name","Translations"],["res_model","ir.translation"]] ir.action.act_window ir f [["domain",null],["name","Translations"],["res_model","ir.translation"]] \N \N +241 2024-04-13 20:27:30.723827 0 3 act_translation_form_domain_module [["act_window",36],["domain","[[\\"module\\", \\"!=\\", null]]"],["name","Modules"],["sequence",10]] ir.action.act_window.domain ir f [["act_window",36],["domain","[[\\"module\\", \\"!=\\", null]]"],["name","Modules"],["sequence",10]] \N \N +242 2024-04-13 20:27:30.723827 0 4 act_translation_form_domain_local [["act_window",36],["domain","[[\\"module\\", \\"=\\", null]]"],["name","Local"],["sequence",20]] ir.action.act_window.domain ir f [["act_window",36],["domain","[[\\"module\\", \\"=\\", null]]"],["name","Local"],["sequence",20]] \N \N +243 2024-04-13 20:27:30.723827 0 54 act_translation_form_view1 [["act_window",36],["sequence",1],["view",72]] ir.action.act_window.view ir f [["act_window",36],["sequence",1],["view",72]] \N \N +246 2024-04-13 20:27:30.723827 0 37 wizard_translation_report [["model","ir.action.report"],["name","Translations"],["wiz_name","ir.translation.report"]] ir.action.wizard ir f [["model","ir.action.report"],["name","Translations"],["wiz_name","ir.translation.report"]] \N \N +247 2024-04-13 20:27:30.723827 0 33 wizard_translation_report_keyword1 [["action",37],["keyword","form_relate"],["model","ir.action.report,-1"]] ir.action.keyword ir f [["action",37],["keyword","form_relate"],["model","ir.action.report,-1"]] \N \N +248 2024-04-13 20:27:30.723827 0 38 act_translation_report [["name","Translations"],["res_model","ir.translation"]] ir.action.act_window ir f [["name","Translations"],["res_model","ir.translation"]] \N \N +249 2024-04-13 20:27:30.723827 0 73 translation_set_start_view_form [["model","ir.translation.set.start"],["name","translation_set_start_form"],["type","form"]] ir.ui.view ir f [["model","ir.translation.set.start"],["name","translation_set_start_form"],["type","form"]] \N \N +250 2024-04-13 20:27:30.723827 0 74 translation_set_succeed_view_form [["model","ir.translation.set.succeed"],["name","translation_set_succeed_form"],["type","form"]] ir.ui.view ir f [["model","ir.translation.set.succeed"],["name","translation_set_succeed_form"],["type","form"]] \N \N +251 2024-04-13 20:27:30.723827 0 39 act_translation_set [["name","Set Translations"],["wiz_name","ir.translation.set"]] ir.action.wizard ir f [["name","Set Translations"],["wiz_name","ir.translation.set"]] \N \N +252 2024-04-13 20:27:30.723827 0 34 act_translation_set_keyword_report [["action",39],["keyword","form_action"],["model","ir.action.report,-1"]] ir.action.keyword ir f [["action",39],["keyword","form_action"],["model","ir.action.report,-1"]] \N \N +253 2024-04-13 20:27:30.723827 0 35 act_translation_set_keyword_view [["action",39],["keyword","form_action"],["model","ir.ui.view,-1"]] ir.action.keyword ir f [["action",39],["keyword","form_action"],["model","ir.ui.view,-1"]] \N \N +254 2024-04-13 20:27:30.723827 0 35 menu_translation_set [["action","ir.action.wizard,39"],["icon","tryton-launch"],["name","Set Translations"],["parent",32],["sequence",90]] ir.ui.menu ir f [["action","ir.action.wizard,39"],["icon","tryton-launch"],["name","Set Translations"],["parent",32],["sequence",90]] \N \N +255 2024-04-13 20:27:30.723827 0 75 translation_clean_start_view_form [["model","ir.translation.clean.start"],["name","translation_clean_start_form"],["type","form"]] ir.ui.view ir f [["model","ir.translation.clean.start"],["name","translation_clean_start_form"],["type","form"]] \N \N +256 2024-04-13 20:27:30.723827 0 76 translation_clean_succeed_view_form [["model","ir.translation.clean.succeed"],["name","translation_clean_succeed_form"],["type","form"]] ir.ui.view ir f [["model","ir.translation.clean.succeed"],["name","translation_clean_succeed_form"],["type","form"]] \N \N +257 2024-04-13 20:27:30.723827 0 40 act_translation_clean [["name","Clean Translations"],["wiz_name","ir.translation.clean"]] ir.action.wizard ir f [["name","Clean Translations"],["wiz_name","ir.translation.clean"]] \N \N +258 2024-04-13 20:27:30.723827 0 36 menu_translation_clean [["action","ir.action.wizard,40"],["icon","tryton-launch"],["name","Clean Translations"],["parent",32],["sequence",91]] ir.ui.menu ir f [["action","ir.action.wizard,40"],["icon","tryton-launch"],["name","Clean Translations"],["parent",32],["sequence",91]] \N \N +259 2024-04-13 20:27:30.723827 0 77 translation_update_start_view_form [["model","ir.translation.update.start"],["name","translation_update_start_form"],["type","form"]] ir.ui.view ir f [["model","ir.translation.update.start"],["name","translation_update_start_form"],["type","form"]] \N \N +260 2024-04-13 20:27:30.723827 0 41 act_translation_update [["name","Synchronize Translations"],["wiz_name","ir.translation.update"]] ir.action.wizard ir f [["name","Synchronize Translations"],["wiz_name","ir.translation.update"]] \N \N +261 2024-04-13 20:27:30.723827 0 38 act_translation_update_keyword_report [["action",41],["keyword","form_action"],["model","ir.action.report,-1"]] ir.action.keyword ir f [["action",41],["keyword","form_action"],["model","ir.action.report,-1"]] \N \N +262 2024-04-13 20:27:30.723827 0 39 act_translation_update_keyword_view [["action",41],["keyword","form_action"],["model","ir.ui.view,-1"]] ir.action.keyword ir f [["action",41],["keyword","form_action"],["model","ir.ui.view,-1"]] \N \N +263 2024-04-13 20:27:30.723827 0 37 menu_translation_update [["action","ir.action.wizard,41"],["icon","tryton-launch"],["name","Synchronize Translations"],["parent",32],["sequence",92]] ir.ui.menu ir f [["action","ir.action.wizard,41"],["icon","tryton-launch"],["name","Synchronize Translations"],["parent",32],["sequence",92]] \N \N +264 2024-04-13 20:27:30.723827 0 78 translation_export_start_view_form [["model","ir.translation.export.start"],["name","translation_export_start_form"],["type","form"]] ir.ui.view ir f [["model","ir.translation.export.start"],["name","translation_export_start_form"],["type","form"]] \N \N +265 2024-04-13 20:27:30.723827 0 79 translation_export_result_view_form [["model","ir.translation.export.result"],["name","translation_export_result_form"],["type","form"]] ir.ui.view ir f [["model","ir.translation.export.result"],["name","translation_export_result_form"],["type","form"]] \N \N +266 2024-04-13 20:27:30.723827 0 42 act_translation_export [["name","Export Translations"],["wiz_name","ir.translation.export"]] ir.action.wizard ir f [["name","Export Translations"],["wiz_name","ir.translation.export"]] \N \N +267 2024-04-13 20:27:30.723827 0 38 menu_translation_export [["action","ir.action.wizard,42"],["icon","tryton-launch"],["name","Export Translations"],["parent",32],["sequence",93]] ir.ui.menu ir f [["action","ir.action.wizard,42"],["icon","tryton-launch"],["name","Export Translations"],["parent",32],["sequence",93]] \N \N +268 2024-04-13 20:27:30.723827 0 80 export_view_form [["model","ir.export"],["name","export_form"],["type","form"]] ir.ui.view ir f [["model","ir.export"],["name","export_form"],["type","form"]] \N \N +269 2024-04-13 20:27:30.723827 0 81 export_view_tree [["model","ir.export"],["name","export_list"],["type","tree"]] ir.ui.view ir f [["model","ir.export"],["name","export_list"],["type","tree"]] \N \N +270 2024-04-13 20:27:30.723827 0 43 act_export_form [["name","Exports"],["res_model","ir.export"],["type","ir.action.act_window"]] ir.action.act_window ir f [["name","Exports"],["res_model","ir.export"],["type","ir.action.act_window"]] \N \N +271 2024-04-13 20:27:30.723827 0 56 act_export_form_view1 [["act_window",43],["sequence",1],["view",81]] ir.action.act_window.view ir f [["act_window",43],["sequence",1],["view",81]] \N \N +272 2024-04-13 20:27:30.723827 0 57 act_export_form_view2 [["act_window",43],["sequence",2],["view",80]] ir.action.act_window.view ir f [["act_window",43],["sequence",2],["view",80]] \N \N +273 2024-04-13 20:27:30.723827 0 39 menu_export_form [["action","ir.action.act_window,43"],["icon","tryton-list"],["name","Exports"],["parent",16],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,43"],["icon","tryton-list"],["name","Exports"],["parent",16],["sequence",50]] \N \N +274 2024-04-13 20:27:30.723827 0 82 export_line_view_form [["model","ir.export.line"],["name","export_line_form"],["type","form"]] ir.ui.view ir f [["model","ir.export.line"],["name","export_line_form"],["type","form"]] \N \N +275 2024-04-13 20:27:30.723827 0 83 export_line_view_tree [["model","ir.export.line"],["name","export_line_list"],["type","tree"]] ir.ui.view ir f [["model","ir.export.line"],["name","export_line_list"],["type","tree"]] \N \N +276 2024-04-13 20:27:30.723827 0 84 rule_group_view_form [["model","ir.rule.group"],["name","rule_group_form"],["type","form"]] ir.ui.view ir f [["model","ir.rule.group"],["name","rule_group_form"],["type","form"]] \N \N +277 2024-04-13 20:27:30.723827 0 85 rule_group_view_tree [["model","ir.rule.group"],["name","rule_group_list"],["type","tree"]] ir.ui.view ir f [["model","ir.rule.group"],["name","rule_group_list"],["type","tree"]] \N \N +278 2024-04-13 20:27:30.723827 0 44 act_rule_group_form [["name","Record Rules"],["res_model","ir.rule.group"]] ir.action.act_window ir f [["name","Record Rules"],["res_model","ir.rule.group"]] \N \N +279 2024-04-13 20:27:30.723827 0 58 act_rule_group_form_view1 [["act_window",44],["sequence",1],["view",85]] ir.action.act_window.view ir f [["act_window",44],["sequence",1],["view",85]] \N \N +280 2024-04-13 20:27:30.723827 0 59 act_rule_group_form_view2 [["act_window",44],["sequence",2],["view",84]] ir.action.act_window.view ir f [["act_window",44],["sequence",2],["view",84]] \N \N +281 2024-04-13 20:27:30.723827 0 40 menu_rule_group_form [["action","ir.action.act_window,44"],["icon","tryton-list"],["name","Record Rules"],["parent",16],["sequence",30]] ir.ui.menu ir f [["action","ir.action.act_window,44"],["icon","tryton-list"],["name","Record Rules"],["parent",16],["sequence",30]] \N \N +282 2024-04-13 20:27:30.723827 0 86 rule_view_form [["model","ir.rule"],["name","rule_form"],["type","form"]] ir.ui.view ir f [["model","ir.rule"],["name","rule_form"],["type","form"]] \N \N +283 2024-04-13 20:27:30.723827 0 87 rule_view_tree [["model","ir.rule"],["name","rule_list"],["type","tree"]] ir.ui.view ir f [["model","ir.rule"],["name","rule_list"],["type","tree"]] \N \N +284 2024-04-13 20:27:30.723827 0 41 menu_modules [["icon","tryton-folder"],["name","Modules"],["parent",1],["sequence",20]] ir.ui.menu ir f [["icon","tryton-folder"],["name","Modules"],["parent",1],["sequence",20]] \N \N +285 2024-04-13 20:27:30.723827 0 88 module_view_form [["model","ir.module"],["name","module_form"],["type","form"]] ir.ui.view ir f [["model","ir.module"],["name","module_form"],["type","form"]] \N \N +286 2024-04-13 20:27:30.723827 0 89 module_view_tree [["model","ir.module"],["name","module_list"],["type","tree"]] ir.ui.view ir f [["model","ir.module"],["name","module_list"],["type","tree"]] \N \N +287 2024-04-13 20:27:30.723827 0 45 act_module_form [["domain","[[\\"name\\", \\"!=\\", \\"tests\\"]]"],["name","Modules"],["res_model","ir.module"],["type","ir.action.act_window"]] ir.action.act_window ir f [["domain","[[\\"name\\", \\"!=\\", \\"tests\\"]]"],["name","Modules"],["res_model","ir.module"],["type","ir.action.act_window"]] \N \N +288 2024-04-13 20:27:30.723827 0 60 act_module_form_view1 [["act_window",45],["sequence",1],["view",89]] ir.action.act_window.view ir f [["act_window",45],["sequence",1],["view",89]] \N \N +289 2024-04-13 20:27:30.723827 0 61 act_module_form_view2 [["act_window",45],["sequence",2],["view",88]] ir.action.act_window.view ir f [["act_window",45],["sequence",2],["view",88]] \N \N +290 2024-04-13 20:27:30.723827 0 42 menu_module_form [["action","ir.action.act_window,45"],["icon","tryton-list"],["name","Modules"],["parent",41],["sequence",10]] ir.ui.menu ir f [["action","ir.action.act_window,45"],["icon","tryton-list"],["name","Modules"],["parent",41],["sequence",10]] \N \N +291 2024-04-13 20:27:30.723827 0 6 module_activate_button [["model",53],["name","activate"],["string","Mark for Activation"]] ir.model.button ir f [["model",53],["name","activate"],["string","Mark for Activation"]] \N \N +292 2024-04-13 20:27:30.723827 0 7 module_activate_cancel_button [["model",53],["name","activate_cancel"],["string","Cancel Activation"]] ir.model.button ir f [["model",53],["name","activate_cancel"],["string","Cancel Activation"]] \N \N +293 2024-04-13 20:27:30.723827 0 8 module_deactivate_button [["model",53],["name","deactivate"],["string","Mark for Deactivation (beta)"]] ir.model.button ir f [["model",53],["name","deactivate"],["string","Mark for Deactivation (beta)"]] \N \N +294 2024-04-13 20:27:30.723827 0 9 module_deactivate_cancel_button [["model",53],["name","deactivate_cancel"],["string","Cancel Deactivation"]] ir.model.button ir f [["model",53],["name","deactivate_cancel"],["string","Cancel Deactivation"]] \N \N +295 2024-04-13 20:27:30.723827 0 10 module_upgrade_button [["model",53],["name","upgrade"],["string","Mark for Upgrade"]] ir.model.button ir f [["model",53],["name","upgrade"],["string","Mark for Upgrade"]] \N \N +296 2024-04-13 20:27:30.723827 0 11 module_upgrade_cancel_button [["model",53],["name","upgrade_cancel"],["string","Cancel Upgrade"]] ir.model.button ir f [["model",53],["name","upgrade_cancel"],["string","Cancel Upgrade"]] \N \N +297 2024-04-13 20:27:30.723827 0 90 module_dependency_view_form [["model","ir.module.dependency"],["name","module_dependency_form"],["type","form"]] ir.ui.view ir f [["model","ir.module.dependency"],["name","module_dependency_form"],["type","form"]] \N \N +298 2024-04-13 20:27:30.723827 0 91 module_dependency_view_list [["model","ir.module.dependency"],["name","module_dependency_list"],["type","tree"]] ir.ui.view ir f [["model","ir.module.dependency"],["name","module_dependency_list"],["type","tree"]] \N \N +299 2024-04-13 20:27:30.723827 0 92 config_wizard_item_view_tree [["model","ir.module.config_wizard.item"],["name","module_config_wizard_item_list"],["type","tree"]] ir.ui.view ir f [["model","ir.module.config_wizard.item"],["name","module_config_wizard_item_list"],["type","tree"]] \N \N +300 2024-04-13 20:27:30.723827 0 46 act_config_wizard_item_form [["name","Config Wizard Items"],["res_model","ir.module.config_wizard.item"]] ir.action.act_window ir f [["name","Config Wizard Items"],["res_model","ir.module.config_wizard.item"]] \N \N +301 2024-04-13 20:27:30.723827 0 62 act_config_wizard_item_form_view1 [["act_window",46],["sequence",10],["view",92]] ir.action.act_window.view ir f [["act_window",46],["sequence",10],["view",92]] \N \N +302 2024-04-13 20:27:30.723827 0 43 menu_config_wizard_item_form [["action","ir.action.act_window,46"],["icon","tryton-list"],["name","Config Wizard Items"],["parent",41],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,46"],["icon","tryton-list"],["name","Config Wizard Items"],["parent",41],["sequence",50]] \N \N +303 2024-04-13 20:27:30.723827 0 47 act_module_config_wizard [["name","Module Configuration"],["window",true],["wiz_name","ir.module.config_wizard"]] ir.action.wizard ir f [["name","Module Configuration"],["window",true],["wiz_name","ir.module.config_wizard"]] \N \N +304 2024-04-13 20:27:30.723827 0 46 act_module_config_wizard_keyword [["action",47],["keyword","form_action"],["model","ir.module.config_wizard.item,-1"]] ir.action.keyword ir f [["action",47],["keyword","form_action"],["model","ir.module.config_wizard.item,-1"]] \N \N +305 2024-04-13 20:27:30.723827 0 93 module_config_wizard_first_view_form [["model","ir.module.config_wizard.first"],["name","module_config_wizard_first_form"],["type","form"]] ir.ui.view ir f [["model","ir.module.config_wizard.first"],["name","module_config_wizard_first_form"],["type","form"]] \N \N +306 2024-04-13 20:27:30.723827 0 94 module_config_wizard_other_view_form [["model","ir.module.config_wizard.other"],["name","module_config_wizard_other_form"],["type","form"]] ir.ui.view ir f [["model","ir.module.config_wizard.other"],["name","module_config_wizard_other_form"],["type","form"]] \N \N +307 2024-04-13 20:27:30.723827 0 95 module_config_wizard_done_view_form [["model","ir.module.config_wizard.done"],["name","module_config_wizard_done_form"],["type","form"]] ir.ui.view ir f [["model","ir.module.config_wizard.done"],["name","module_config_wizard_done_form"],["type","form"]] \N \N +308 2024-04-13 20:27:30.723827 0 48 act_module_activate_upgrade [["name","Perform Pending Activation/Upgrade"],["wiz_name","ir.module.activate_upgrade"]] ir.action.wizard ir f [["name","Perform Pending Activation/Upgrade"],["wiz_name","ir.module.activate_upgrade"]] \N \N +309 2024-04-13 20:27:30.723827 0 47 act_module_activate_upgrade_keyword1 [["action",48],["keyword","form_action"],["model","ir.module,-1"]] ir.action.keyword ir f [["action",48],["keyword","form_action"],["model","ir.module,-1"]] \N \N +310 2024-04-13 20:27:30.723827 0 96 module_activate_upgrade_start_view_form [["model","ir.module.activate_upgrade.start"],["name","module_activate_upgrade_start_form"],["type","form"]] ir.ui.view ir f [["model","ir.module.activate_upgrade.start"],["name","module_activate_upgrade_start_form"],["type","form"]] \N \N +311 2024-04-13 20:27:30.723827 0 97 module_activate_upgrade_done_view_form [["model","ir.module.activate_upgrade.done"],["name","module_activate_upgrade_done_form"],["type","form"]] ir.ui.view ir f [["model","ir.module.activate_upgrade.done"],["name","module_activate_upgrade_done_form"],["type","form"]] \N \N +312 2024-04-13 20:27:30.723827 0 44 menu_module_activate_upgrade [["action","ir.action.wizard,48"],["icon","tryton-launch"],["name","Perform Pending Activation/Upgrade"],["parent",41],["sequence",90]] ir.ui.menu ir f [["action","ir.action.wizard,48"],["icon","tryton-launch"],["name","Perform Pending Activation/Upgrade"],["parent",41],["sequence",90]] \N \N +313 2024-04-13 20:27:30.723827 0 49 act_module_config [["name","Configure Modules"],["window",true],["wiz_name","ir.module.config"]] ir.action.wizard ir f [["name","Configure Modules"],["window",true],["wiz_name","ir.module.config"]] \N \N +314 2024-04-13 20:27:30.723827 0 98 module_config_start_view_form [["model","ir.module.config.start"],["name","module_config_start_form"],["type","form"]] ir.ui.view ir f [["model","ir.module.config.start"],["name","module_config_start_form"],["type","form"]] \N \N +315 2024-04-13 20:27:30.723827 0 2 config_wizard_item_module [["action",49],["sequence",10000]] ir.module.config_wizard.item ir f [["action",49],["sequence",10000]] \N \N +316 2024-04-13 20:27:30.723827 0 99 trigger_view_form [["model","ir.trigger"],["name","trigger_form"],["type","form"]] ir.ui.view ir f [["model","ir.trigger"],["name","trigger_form"],["type","form"]] \N \N +317 2024-04-13 20:27:30.723827 0 100 trigger_view_tree [["model","ir.trigger"],["name","trigger_list"],["type","tree"]] ir.ui.view ir f [["model","ir.trigger"],["name","trigger_list"],["type","tree"]] \N \N +318 2024-04-13 20:27:30.723827 0 50 act_trigger_form [["name","Triggers"],["res_model","ir.trigger"]] ir.action.act_window ir f [["name","Triggers"],["res_model","ir.trigger"]] \N \N +319 2024-04-13 20:27:30.723827 0 63 act_trigger_form_view1 [["act_window",50],["sequence",10],["view",100]] ir.action.act_window.view ir f [["act_window",50],["sequence",10],["view",100]] \N \N +320 2024-04-13 20:27:30.723827 0 64 act_trigger_form_view2 [["act_window",50],["sequence",20],["view",99]] ir.action.act_window.view ir f [["act_window",50],["sequence",20],["view",99]] \N \N +321 2024-04-13 20:27:30.723827 0 45 menu_trigger_form [["action","ir.action.act_window,50"],["icon","tryton-list"],["name","Triggers"],["parent",16],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,50"],["icon","tryton-list"],["name","Triggers"],["parent",16],["sequence",50]] \N \N +322 2024-04-13 20:27:30.723827 0 1 January [["abbreviation","Jan"],["index",1],["name","January"]] ir.calendar.month ir f [["abbreviation","Jan"],["index",1],["name","January"]] \N \N +323 2024-04-13 20:27:30.723827 0 2 February [["abbreviation","Feb"],["index",2],["name","February"]] ir.calendar.month ir f [["abbreviation","Feb"],["index",2],["name","February"]] \N \N +324 2024-04-13 20:27:30.723827 0 3 March [["abbreviation","Mar"],["index",3],["name","March"]] ir.calendar.month ir f [["abbreviation","Mar"],["index",3],["name","March"]] \N \N +325 2024-04-13 20:27:30.723827 0 4 April [["abbreviation","Apr"],["index",4],["name","April"]] ir.calendar.month ir f [["abbreviation","Apr"],["index",4],["name","April"]] \N \N +326 2024-04-13 20:27:30.723827 0 5 May [["abbreviation","May"],["index",5],["name","May"]] ir.calendar.month ir f [["abbreviation","May"],["index",5],["name","May"]] \N \N +327 2024-04-13 20:27:30.723827 0 6 June [["abbreviation","Jun"],["index",6],["name","June"]] ir.calendar.month ir f [["abbreviation","Jun"],["index",6],["name","June"]] \N \N +328 2024-04-13 20:27:30.723827 0 7 July [["abbreviation","Jul"],["index",7],["name","July"]] ir.calendar.month ir f [["abbreviation","Jul"],["index",7],["name","July"]] \N \N +329 2024-04-13 20:27:30.723827 0 8 August [["abbreviation","Aug"],["index",8],["name","August"]] ir.calendar.month ir f [["abbreviation","Aug"],["index",8],["name","August"]] \N \N +330 2024-04-13 20:27:30.723827 0 9 September [["abbreviation","Sep"],["index",9],["name","September"]] ir.calendar.month ir f [["abbreviation","Sep"],["index",9],["name","September"]] \N \N +331 2024-04-13 20:27:30.723827 0 10 October [["abbreviation","Oct"],["index",10],["name","October"]] ir.calendar.month ir f [["abbreviation","Oct"],["index",10],["name","October"]] \N \N +332 2024-04-13 20:27:30.723827 0 11 November [["abbreviation","Nov"],["index",11],["name","November"]] ir.calendar.month ir f [["abbreviation","Nov"],["index",11],["name","November"]] \N \N +333 2024-04-13 20:27:30.723827 0 12 December [["abbreviation","Dec"],["index",12],["name","December"]] ir.calendar.month ir f [["abbreviation","Dec"],["index",12],["name","December"]] \N \N +334 2024-04-13 20:27:30.723827 0 1 Monday [["abbreviation","Mon"],["index",0],["name","Monday"]] ir.calendar.day ir f [["abbreviation","Mon"],["index",0],["name","Monday"]] \N \N +335 2024-04-13 20:27:30.723827 0 2 Tuesday [["abbreviation","Tue"],["index",1],["name","Tuesday"]] ir.calendar.day ir f [["abbreviation","Tue"],["index",1],["name","Tuesday"]] \N \N +336 2024-04-13 20:27:30.723827 0 3 Wednesday [["abbreviation","Wed"],["index",2],["name","Wednesday"]] ir.calendar.day ir f [["abbreviation","Wed"],["index",2],["name","Wednesday"]] \N \N +337 2024-04-13 20:27:30.723827 0 4 Thursday [["abbreviation","Thu"],["index",3],["name","Thursday"]] ir.calendar.day ir f [["abbreviation","Thu"],["index",3],["name","Thursday"]] \N \N +338 2024-04-13 20:27:30.723827 0 5 Friday [["abbreviation","Fri"],["index",4],["name","Friday"]] ir.calendar.day ir f [["abbreviation","Fri"],["index",4],["name","Friday"]] \N \N +339 2024-04-13 20:27:30.723827 0 6 Saturday [["abbreviation","Sat"],["index",5],["name","Saturday"]] ir.calendar.day ir f [["abbreviation","Sat"],["index",5],["name","Saturday"]] \N \N +340 2024-04-13 20:27:30.723827 0 7 Sunday [["abbreviation","Sun"],["index",6],["name","Sunday"]] ir.calendar.day ir f [["abbreviation","Sun"],["index",6],["name","Sunday"]] \N \N +341 2024-04-13 20:27:30.723827 0 101 message_view_tree [["model","ir.message"],["name","message_list"],["type","tree"]] ir.ui.view ir f [["model","ir.message"],["name","message_list"],["type","tree"]] \N \N +342 2024-04-13 20:27:30.723827 0 102 message_view_form [["model","ir.message"],["name","message_form"],["type","form"]] ir.ui.view ir f [["model","ir.message"],["name","message_form"],["type","form"]] \N \N +343 2024-04-13 20:27:30.723827 0 51 act_message_form [["name","Messages"],["res_model","ir.message"]] ir.action.act_window ir f [["name","Messages"],["res_model","ir.message"]] \N \N +344 2024-04-13 20:27:30.723827 0 65 act_message_form_view1 [["act_window",51],["sequence",10],["view",101]] ir.action.act_window.view ir f [["act_window",51],["sequence",10],["view",101]] \N \N +345 2024-04-13 20:27:30.723827 0 66 act_message_form_view2 [["act_window",51],["sequence",20],["view",102]] ir.action.act_window.view ir f [["act_window",51],["sequence",20],["view",102]] \N \N +346 2024-04-13 20:27:30.723827 0 46 menu_message_form [["action","ir.action.act_window,51"],["icon","tryton-list"],["name","Messages"],["parent",32],["sequence",20]] ir.ui.menu ir f [["action","ir.action.act_window,51"],["icon","tryton-list"],["name","Messages"],["parent",32],["sequence",20]] \N \N +347 2024-04-13 20:27:30.723827 0 1 msg_ID [["text","ID"]] ir.message ir f [["text","ID"]] \N \N +348 2024-04-13 20:27:30.723827 0 2 msg_created_by [["text","Created by"]] ir.message ir f [["text","Created by"]] \N \N +349 2024-04-13 20:27:30.723827 0 3 msg_created_at [["text","Created at"]] ir.message ir f [["text","Created at"]] \N \N +350 2024-04-13 20:27:30.723827 0 4 msg_edited_by [["text","Edited by"]] ir.message ir f [["text","Edited by"]] \N \N +351 2024-04-13 20:27:30.723827 0 5 msg_edited_at [["text","Edited at"]] ir.message ir f [["text","Edited at"]] \N \N +352 2024-04-13 20:27:30.723827 0 6 msg_record_name [["text","Record Name"]] ir.message ir f [["text","Record Name"]] \N \N +353 2024-04-13 20:27:30.723827 0 7 msg_active [["text","Active"]] ir.message ir f [["text","Active"]] \N \N +354 2024-04-13 20:27:30.723827 0 8 msg_active_help [["text","Uncheck to exclude from future use."]] ir.message ir f [["text","Uncheck to exclude from future use."]] \N \N +355 2024-04-13 20:27:30.723827 0 9 msg_dict_schema_name [["text","Name"]] ir.message ir f [["text","Name"]] \N \N +356 2024-04-13 20:27:30.723827 0 10 msg_dict_schema_string [["text","String"]] ir.message ir f [["text","String"]] \N \N +357 2024-04-13 20:27:30.723827 0 11 msg_dict_schema_help [["text","Help"]] ir.message ir f [["text","Help"]] \N \N +358 2024-04-13 20:27:30.723827 0 12 msg_dict_schema_type [["text","Type"]] ir.message ir f [["text","Type"]] \N \N +359 2024-04-13 20:27:30.723827 0 13 msg_dict_schema_boolean [["text","Boolean"]] ir.message ir f [["text","Boolean"]] \N \N +360 2024-04-13 20:27:30.723827 0 14 msg_dict_schema_integer [["text","Integer"]] ir.message ir f [["text","Integer"]] \N \N +361 2024-04-13 20:27:30.723827 0 15 msg_dict_schema_char [["text","Char"]] ir.message ir f [["text","Char"]] \N \N +362 2024-04-13 20:27:30.723827 0 16 msg_dict_schema_float [["text","Float"]] ir.message ir f [["text","Float"]] \N \N +363 2024-04-13 20:27:30.723827 0 17 msg_dict_schema_numeric [["text","Numeric"]] ir.message ir f [["text","Numeric"]] \N \N +364 2024-04-13 20:27:30.723827 0 18 msg_dict_schema_date [["text","Date"]] ir.message ir f [["text","Date"]] \N \N +365 2024-04-13 20:27:30.723827 0 19 msg_dict_schema_datetime [["text","DateTime"]] ir.message ir f [["text","DateTime"]] \N \N +366 2024-04-13 20:27:30.723827 0 20 msg_dict_schema_selection [["text","Selection"]] ir.message ir f [["text","Selection"]] \N \N +367 2024-04-13 20:27:30.723827 0 21 msg_dict_schema_multiselection [["text","MultiSelection"]] ir.message ir f [["text","MultiSelection"]] \N \N +368 2024-04-13 20:27:30.723827 0 22 msg_dict_schema_digits [["text","Digits"]] ir.message ir f [["text","Digits"]] \N \N +369 2024-04-13 20:27:30.723827 0 23 msg_dict_schema_domain [["text","Domain"]] ir.message ir f [["text","Domain"]] \N \N +370 2024-04-13 20:27:30.723827 0 24 msg_dict_schema_selection_help [["text","A couple of key and label separated by \\":\\" per line."]] ir.message ir f [["text","A couple of key and label separated by \\":\\" per line."]] \N \N +371 2024-04-13 20:27:30.723827 0 25 msg_dict_schema_selection_sorted [["text","Selection Sorted"]] ir.message ir f [["text","Selection Sorted"]] \N \N +372 2024-04-13 20:27:30.723827 0 26 msg_dict_schema_selection_sorted_help [["text","If the selection must be sorted on label."]] ir.message ir f [["text","If the selection must be sorted on label."]] \N \N +373 2024-04-13 20:27:30.723827 0 27 msg_dict_schema_help_selection [["text","Help Selection"]] ir.message ir f [["text","Help Selection"]] \N \N +374 2024-04-13 20:27:30.723827 0 28 msg_dict_schema_help_selection_help [["text","The key followed by the help text separated by a \\":\\", one per line."]] ir.message ir f [["text","The key followed by the help text separated by a \\":\\", one per line."]] \N \N +375 2024-04-13 20:27:30.723827 0 29 msg_dict_schema_selection_json [["text","Selection JSON"]] ir.message ir f [["text","Selection JSON"]] \N \N +376 2024-04-13 20:27:30.723827 0 30 msg_dict_schema_help_selection_json [["text","Help Selection JSON"]] ir.message ir f [["text","Help Selection JSON"]] \N \N +377 2024-04-13 20:27:30.723827 0 31 msg_dict_yes [["text","Yes"]] ir.message ir f [["text","Yes"]] \N \N +378 2024-04-13 20:27:30.723827 0 32 msg_dict_no [["text","No"]] ir.message ir f [["text","No"]] \N \N +379 2024-04-13 20:27:30.723827 0 33 msg_sequence [["text","Sequence"]] ir.message ir f [["text","Sequence"]] \N \N +380 2024-04-13 20:27:30.723827 0 34 msg_id_positive [["text","ID must be positive."]] ir.message ir f [["text","ID must be positive."]] \N \N +381 2024-04-13 20:27:30.723827 0 35 msg_singleton [["text","Only one singleton can be created."]] ir.message ir f [["text","Only one singleton can be created."]] \N \N +382 2024-04-13 20:27:30.723827 0 36 msg_write_xml_record [["text","You are not allowed to modify the field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\"."]] ir.message ir f [["text","You are not allowed to modify the field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\"."]] \N \N +383 2024-04-13 20:27:30.723827 0 37 msg_delete_xml_record [["text","You are not allowed to delete the record \\"%(record)s\\" of \\"%(model)s\\"."]] ir.message ir f [["text","You are not allowed to delete the record \\"%(record)s\\" of \\"%(model)s\\"."]] \N \N +384 2024-04-13 20:27:30.723827 0 38 msg_base_config_record [["text","This record is part of the base configuration."]] ir.message ir f [["text","This record is part of the base configuration."]] \N \N +385 2024-04-13 20:27:30.723827 0 39 msg_relation_not_found [["text","Relation not found: %(value)r in \\"%(model)s\\" (%(column)s)."]] ir.message ir f [["text","Relation not found: %(value)r in \\"%(model)s\\" (%(column)s)."]] \N \N +386 2024-04-13 20:27:30.723827 0 40 msg_too_many_relations_found [["text","Too many relations found: %(value)r in \\"%(model)s\\" (%(column)s)."]] ir.message ir f [["text","Too many relations found: %(value)r in \\"%(model)s\\" (%(column)s)."]] \N \N +387 2024-04-13 20:27:30.723827 0 41 msg_value_syntax_error [["text","Syntax error for value: %(value)r in \\"%(field)s\\" of \\"%(model)s\\" (%(column)s)."]] ir.message ir f [["text","Syntax error for value: %(value)r in \\"%(field)s\\" of \\"%(model)s\\" (%(column)s)."]] \N \N +388 2024-04-13 20:27:30.723827 0 42 msg_reference_syntax_error [["text","Syntax error for reference: %(value)r in \\"%(field)s\\" of \\"%(model)s\\" (%(column)s)."]] ir.message ir f [["text","Syntax error for reference: %(value)r in \\"%(field)s\\" of \\"%(model)s\\" (%(column)s)."]] \N \N +389 2024-04-13 20:27:30.723827 0 43 msg_xml_id_syntax_error [["text","Syntax error for XML id: %(value)r in \\"%(field)s\\" of \\"%(model)s\\" (%(column)s)."]] ir.message ir f [["text","Syntax error for XML id: %(value)r in \\"%(field)s\\" of \\"%(model)s\\" (%(column)s)."]] \N \N +390 2024-04-13 20:27:30.723827 0 44 msg_domain_validation_record [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" is not valid according to its domain."]] ir.message ir f [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" is not valid according to its domain."]] \N \N +391 2024-04-13 20:27:30.723827 0 45 msg_required_validation [["text","A value is required for field \\"%(field)s\\" in \\"%(model)s\\"."]] ir.message ir f [["text","A value is required for field \\"%(field)s\\" in \\"%(model)s\\"."]] \N \N +392 2024-04-13 20:27:30.723827 0 46 msg_required_validation_record [["text","A value is required for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\"."]] ir.message ir f [["text","A value is required for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\"."]] \N \N +393 2024-04-13 20:27:30.723827 0 47 msg_size_validation [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(model)s\\" is too long (%(size)i > %(max_size)i)."]] ir.message ir f [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(model)s\\" is too long (%(size)i > %(max_size)i)."]] \N \N +394 2024-04-13 20:27:30.723827 0 48 msg_size_validation_record [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" is too long (%(size)i > %(max_size)i)."]] ir.message ir f [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" is too long (%(size)i > %(max_size)i)."]] \N \N +395 2024-04-13 20:27:30.723827 0 49 msg_digits_validation_record [["text","The number of digits in the value \\"%(value)r\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" exceeds the limit of \\"%(digits)i\\"."]] ir.message ir f [["text","The number of digits in the value \\"%(value)r\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" exceeds the limit of \\"%(digits)i\\"."]] \N \N +396 2024-04-13 20:27:30.723827 0 50 msg_forbidden_char_validation_record [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" contains some invalid chars \\"%(chars)s\\"."]] ir.message ir f [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" contains some invalid chars \\"%(chars)s\\"."]] \N \N +397 2024-04-13 20:27:30.723827 0 51 msg_selection_validation_record [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" is not one of the allowed options."]] ir.message ir f [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" is not one of the allowed options."]] \N \N +398 2024-04-13 20:27:30.723827 0 52 msg_time_format_validation_record [["text","The time value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" is not valid."]] ir.message ir f [["text","The time value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(record)s\\" of \\"%(model)s\\" is not valid."]] \N \N +399 2024-04-13 20:27:30.723827 0 53 msg_foreign_model_missing [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(model)s\\" does not exist."]] ir.message ir f [["text","The value \\"%(value)s\\" for field \\"%(field)s\\" in \\"%(model)s\\" does not exist."]] \N \N +400 2024-04-13 20:27:30.723827 0 54 msg_foreign_model_exist [["text","The records could not be deleted because they are used by field \\"%(field)s\\" of \\"%(model)s\\"."]] ir.message ir f [["text","The records could not be deleted because they are used by field \\"%(field)s\\" of \\"%(model)s\\"."]] \N \N +401 2024-04-13 20:27:30.723827 0 55 msg_access_rule_error [["text","You are not allowed to access \\"%(model)s\\"."]] ir.message ir f [["text","You are not allowed to access \\"%(model)s\\"."]] \N \N +402 2024-04-13 20:27:30.723827 0 56 msg_access_rule_field_error [["text","You are not allowed to access \\"%(model)s.%(field)s\\"."]] ir.message ir f [["text","You are not allowed to access \\"%(model)s.%(field)s\\"."]] \N \N +403 2024-04-13 20:27:30.723827 0 57 msg_create_rule_error [["text","You are not allowed to create records of \\"%(model)s\\" because they fail on at least one of these rules:\\n%(rules)s"]] ir.message ir f [["text","You are not allowed to create records of \\"%(model)s\\" because they fail on at least one of these rules:\\n%(rules)s"]] \N \N +404 2024-04-13 20:27:30.723827 0 58 msg_read_rule_error [["text","You are not allowed to read records \\"%(ids)s\\" of \\"%(model)s\\" because of at least one of these rules:\\n%(rules)s"]] ir.message ir f [["text","You are not allowed to read records \\"%(ids)s\\" of \\"%(model)s\\" because of at least one of these rules:\\n%(rules)s"]] \N \N +405 2024-04-13 20:27:30.723827 0 59 msg_read_error [["text","You are trying to read records \\"%(ids)s\\" of \\"%(model)s\\" that don't exist."]] ir.message ir f [["text","You are trying to read records \\"%(ids)s\\" of \\"%(model)s\\" that don't exist."]] \N \N +406 2024-04-13 20:27:30.723827 0 60 msg_write_rule_error [["text","You are not allowed to write to records \\"%(ids)s\\" of \\"%(model)s\\" because of at least one of these rules:\\n%(rules)s"]] ir.message ir f [["text","You are not allowed to write to records \\"%(ids)s\\" of \\"%(model)s\\" because of at least one of these rules:\\n%(rules)s"]] \N \N +407 2024-04-13 20:27:30.723827 0 61 msg_write_error [["text","You are trying to write to records \\"%(ids)s\\" of \\"%(model)s\\" that don't exist."]] ir.message ir f [["text","You are trying to write to records \\"%(ids)s\\" of \\"%(model)s\\" that don't exist."]] \N \N +408 2024-04-13 20:27:30.723827 0 62 msg_delete_rule_error [["text","You are not allowed to delete records \\"%(ids)s\\" of \\"%(model)s\\" because of at lease one of those rules:\\n%(rules)s"]] ir.message ir f [["text","You are not allowed to delete records \\"%(ids)s\\" of \\"%(model)s\\" because of at lease one of those rules:\\n%(rules)s"]] \N \N +409 2024-04-13 20:27:30.723827 0 63 msg_dict_schema_invalid_domain [["text","Invalid domain in schema \\"%(schema)s\\"."]] ir.message ir f [["text","Invalid domain in schema \\"%(schema)s\\"."]] \N \N +410 2024-04-13 20:27:30.723827 0 64 msg_dict_schema_invalid_selection [["text","Invalid selection in schema \\"%(schema)s\\"."]] ir.message ir f [["text","Invalid selection in schema \\"%(schema)s\\"."]] \N \N +411 2024-04-13 20:27:30.723827 0 65 msg_dict_schema_invalid_help_selection [["text","Invalid help selection in schema \\"%(schema)s\\"."]] ir.message ir f [["text","Invalid help selection in schema \\"%(schema)s\\"."]] \N \N +412 2024-04-13 20:27:30.723827 0 66 msg_recursion_error [["text","Recursion error: Record \\"%(rec_name)s\\" with parent \\"%(parent_rec_name)s\\" was configured as ancestor of itself."]] ir.message ir f [["text","Recursion error: Record \\"%(rec_name)s\\" with parent \\"%(parent_rec_name)s\\" was configured as ancestor of itself."]] \N \N +413 2024-04-13 20:27:30.723827 0 67 msg_search_function_missing [["text","Missing search function for field \\"%(field)s\\" in \\"%(model)s\\"."]] ir.message ir f [["text","Missing search function for field \\"%(field)s\\" in \\"%(model)s\\"."]] \N \N +414 2024-04-13 20:27:30.723827 0 68 msg_setter_function_missing [["text","Missing setter function for field \\"%(field)s\\" in \\"%(model)s\\"."]] ir.message ir f [["text","Missing setter function for field \\"%(field)s\\" in \\"%(model)s\\"."]] \N \N +415 2024-04-13 20:27:30.723827 0 69 msg_access_button_error [["text","Calling button \\"%(button)s on \\"%(model)s\\" is not allowed."]] ir.message ir f [["text","Calling button \\"%(button)s on \\"%(model)s\\" is not allowed."]] \N \N +416 2024-04-13 20:27:30.723827 0 70 msg_view_invalid_xml [["text","Invalid XML for view \\"%(name)s\\"."]] ir.message ir f [["text","Invalid XML for view \\"%(name)s\\"."]] \N \N +417 2024-04-13 20:27:30.723827 0 71 msg_action_wrong_wizard_model [["text","Wrong wizard model in keyword action \\"%(name)s\\"."]] ir.message ir f [["text","Wrong wizard model in keyword action \\"%(name)s\\"."]] \N \N +418 2024-04-13 20:27:30.723827 0 72 msg_report_invalid_email [["text","Invalid email definition for report \\"%(name)s\\"."]] ir.message ir f [["text","Invalid email definition for report \\"%(name)s\\"."]] \N \N +419 2024-04-13 20:27:30.723827 0 73 msg_report_invalid_record_name [["text","Invalid record name definition for report \\"%(report)s\\" with exception \\"%(exception)s\\"."]] ir.message ir f [["text","Invalid record name definition for report \\"%(report)s\\" with exception \\"%(exception)s\\"."]] \N \N +420 2024-04-13 20:27:30.723827 0 74 msg_action_invalid_views [["text","Invalid view \\"%(view)s\\" for action \\"%(action)s\\"."]] ir.message ir f [["text","Invalid view \\"%(view)s\\" for action \\"%(action)s\\"."]] \N \N +421 2024-04-13 20:27:30.723827 0 75 msg_action_invalid_domain [["text","Invalid domain or search criteria \\"%(domain)s\\" for action \\"%(action)s\\"."]] ir.message ir f [["text","Invalid domain or search criteria \\"%(domain)s\\" for action \\"%(action)s\\"."]] \N \N +422 2024-04-13 20:27:30.723827 0 76 msg_action_invalid_context [["text","Invalid context \\"%(context)s\\" for action \\"%(action)s\\"."]] ir.message ir f [["text","Invalid context \\"%(context)s\\" for action \\"%(action)s\\"."]] \N \N +423 2024-04-13 20:27:30.723827 0 77 msg_model_invalid_condition [["text","The condition \\"%(condition)s\\" is not a valid PYSON expression for button rule \\"%(rule)s\\"."]] ir.message ir f [["text","The condition \\"%(condition)s\\" is not a valid PYSON expression for button rule \\"%(rule)s\\"."]] \N \N +424 2024-04-13 20:27:30.723827 0 78 msg_sequence_missing [["text","Missing sequence."]] ir.message ir f [["text","Missing sequence."]] \N \N +425 2024-04-13 20:27:30.723827 0 79 msg_sequence_invalid_prefix [["text","Invalid prefix \\"%(affix)s\\" for sequence \\"%(sequence)s\\"."]] ir.message ir f [["text","Invalid prefix \\"%(affix)s\\" for sequence \\"%(sequence)s\\"."]] \N \N +426 2024-04-13 20:27:30.723827 0 80 msg_sequence_invalid_suffix [["text","Invalid suffix \\"%(affix)s\\" for sequence \\"%(sequence)s\\"."]] ir.message ir f [["text","Invalid suffix \\"%(affix)s\\" for sequence \\"%(sequence)s\\"."]] \N \N +427 2024-04-13 20:27:30.723827 0 81 msg_sequence_last_timestamp_future [["text","The \\"Last Timestamp\\" cannot be in the future for sequence \\"%s\\"."]] ir.message ir f [["text","The \\"Last Timestamp\\" cannot be in the future for sequence \\"%s\\"."]] \N \N +428 2024-04-13 20:27:30.723827 0 82 msg_sequence_change_sequence_type [["text","You cannot change the sequence type of a sequence instead create a new sequence."]] ir.message ir f [["text","You cannot change the sequence type of a sequence instead create a new sequence."]] \N \N +429 2024-04-13 20:27:30.723827 0 83 msg_sequence_invalid_number_increment_next [["text","Invalid \\"Increment Number\\" (%(number_increment)s) or \\"Next Number\\" (%(number_next)s) with exception \\"%(exception)s\\"."]] ir.message ir f [["text","Invalid \\"Increment Number\\" (%(number_increment)s) or \\"Next Number\\" (%(number_next)s) with exception \\"%(exception)s\\"."]] \N \N +430 2024-04-13 20:27:30.723827 0 84 msg_language_invalid_grouping [["text","Invalid grouping \\"%(grouping)s\\" for language \\"%(language)s\\"."]] ir.message ir f [["text","Invalid grouping \\"%(grouping)s\\" for language \\"%(language)s\\"."]] \N \N +431 2024-04-13 20:27:30.723827 0 85 msg_language_invalid_date [["text","Invalid date format \\"%(format)s\\" for language \\"%(language)s\\"."]] ir.message ir f [["text","Invalid date format \\"%(format)s\\" for language \\"%(language)s\\"."]] \N \N +432 2024-04-13 20:27:30.723827 0 86 msg_language_default_translatable [["text","The default language \\"%(language)s\\" must be translatable."]] ir.message ir f [["text","The default language \\"%(language)s\\" must be translatable."]] \N \N +433 2024-04-13 20:27:30.723827 0 87 msg_language_delete_default [["text","The default language \\"%(language)s\\" can not be deleted."]] ir.message ir f [["text","The default language \\"%(language)s\\" can not be deleted."]] \N \N +434 2024-04-13 20:27:30.723827 0 88 msg_rule_invalid_domain [["text","Invalid domain in rule \\"%(name)s\\"."]] ir.message ir f [["text","Invalid domain in rule \\"%(name)s\\"."]] \N \N +435 2024-04-13 20:27:30.723827 0 89 msg_translation_overridden [["text","You can not export translation \\"%(name)s\\" because it has been overridden by module \\"%(overriding_module)s\\"."]] ir.message ir f [["text","You can not export translation \\"%(name)s\\" because it has been overridden by module \\"%(overriding_module)s\\"."]] \N \N +436 2024-04-13 20:27:30.723827 0 90 msg_module_delete_state [["text","You can not remove a module that is activated or that is about to be activated."]] ir.message ir f [["text","You can not remove a module that is activated or that is about to be activated."]] \N \N +437 2024-04-13 20:27:30.723827 0 91 msg_module_deactivate_dependency [["text","Some activated modules depend on the ones you are trying to deactivate:"]] ir.message ir f [["text","Some activated modules depend on the ones you are trying to deactivate:"]] \N \N +438 2024-04-13 20:27:30.723827 0 92 msg_trigger_exclusive [["text","You can not select \\"On Time\\" and any other on the same time, they are mutually exclusive."]] ir.message ir f [["text","You can not select \\"On Time\\" and any other on the same time, they are mutually exclusive."]] \N \N +439 2024-04-13 20:27:30.723827 0 93 msg_trigger_invalid_condition [["text","Condition \\"%(condition)s\\" is not a valid PYSON expression for trigger \\"%(trigger)s\\"."]] ir.message ir f [["text","Condition \\"%(condition)s\\" is not a valid PYSON expression for trigger \\"%(trigger)s\\"."]] \N \N +440 2024-04-13 20:27:30.723827 0 94 msg_html_editor_save_fail [["text","Failed to save, please retry."]] ir.message ir f [["text","Failed to save, please retry."]] \N \N +441 2024-04-13 20:27:30.723827 0 95 msg_timedelta_Y [["text","Y"]] ir.message ir f [["text","Y"]] \N \N +442 2024-04-13 20:27:30.723827 0 96 msg_timedelta_M [["text","M"]] ir.message ir f [["text","M"]] \N \N +447 2024-04-13 20:27:30.723827 0 101 msg_timedelta_s [["text","s"]] ir.message ir f [["text","s"]] \N \N +448 2024-04-13 20:27:30.723827 0 102 msg_resource_copy_help [["text","The resources to which this record must be copied."]] ir.message ir f [["text","The resources to which this record must be copied."]] \N \N +449 2024-04-13 20:27:30.723827 0 103 msg_attachments [["text","Attachments"]] ir.message ir f [["text","Attachments"]] \N \N +450 2024-04-13 20:27:30.723827 0 104 msg_notes [["text","Notes"]] ir.message ir f [["text","Notes"]] \N \N +451 2024-04-13 20:27:30.723827 0 105 msg_access_wizard_error [["text","You are not allowed to execute wizard \\"%(wizard)s\\"."]] ir.message ir f [["text","You are not allowed to execute wizard \\"%(wizard)s\\"."]] \N \N +452 2024-04-13 20:27:30.723827 0 106 msg_access_wizard_model_error [["text","You are not allowed to execute wizard \\"%(wizard)s\\" on \\"%(model)s\\"."]] ir.message ir f [["text","You are not allowed to execute wizard \\"%(wizard)s\\" on \\"%(model)s\\"."]] \N \N +453 2024-04-13 20:27:30.723827 0 107 msg_email_template_invalid_subject [["text","Invalid subject in e-mail template \\"%(template)s\\" with exception \\"%(exception)s\\"."]] ir.message ir f [["text","Invalid subject in e-mail template \\"%(template)s\\" with exception \\"%(exception)s\\"."]] \N \N +454 2024-04-13 20:27:30.723827 0 108 msg_email_template_invalid_body [["text","Invalid body in e-mail template \\"%(template)s\\" with exception \\"%(exception)s\\"."]] ir.message ir f [["text","Invalid body in e-mail template \\"%(template)s\\" with exception \\"%(exception)s\\"."]] \N \N +455 2024-04-13 20:27:30.723827 0 109 msg_email_template_invalid_field_pyson [["text","Invalid PYSON %(field)s in e-mail template \\"%(template)s\\" with exception \\"%(exception)s\\"."]] ir.message ir f [["text","Invalid PYSON %(field)s in e-mail template \\"%(template)s\\" with exception \\"%(exception)s\\"."]] \N \N +456 2024-04-13 20:27:30.723827 0 110 msg_email_template_invalid_field_pyson_type [["text","The PYSON %(field)s in e-mail template \\"%(template)s\\" must generate a list."]] ir.message ir f [["text","The PYSON %(field)s in e-mail template \\"%(template)s\\" must generate a list."]] \N \N +457 2024-04-13 20:27:30.723827 0 111 msg_avatar_resource_unique [["text","Only one avatar is allowed per resource."]] ir.message ir f [["text","Only one avatar is allowed per resource."]] \N \N +458 2024-04-13 20:27:30.723827 0 112 msg_avatar_size_unique [["text","The size of an avatar must be unique."]] ir.message ir f [["text","The size of an avatar must be unique."]] \N \N +459 2024-04-13 20:27:30.723827 0 113 msg_avatar [["text","Avatar"]] ir.message ir f [["text","Avatar"]] \N \N +460 2024-04-13 20:27:30.723827 0 114 msg_avatars [["text","Avatars"]] ir.message ir f [["text","Avatars"]] \N \N +461 2024-04-13 20:27:30.723827 0 115 msg_avatar_url [["text","Avatar URL"]] ir.message ir f [["text","Avatar URL"]] \N \N +462 2024-04-13 20:27:30.723827 0 116 msg_language_code_unique [["text","The code on language must be unique."]] ir.message ir f [["text","The code on language must be unique."]] \N \N +463 2024-04-13 20:27:30.723827 0 117 msg_button_name_unique [["text","The name of the button must be unique per model."]] ir.message ir f [["text","The name of the button must be unique per model."]] \N \N +464 2024-04-13 20:27:30.723827 0 118 msg_view_search_invalid_domain [["text","Invalid domain or search criteria \\"%(domain)s\\" for search \\"%(search)s\\"."]] ir.message ir f [["text","Invalid domain or search criteria \\"%(domain)s\\" for search \\"%(search)s\\"."]] \N \N +465 2024-04-13 20:27:30.723827 0 119 msg_view_tree_optional_type [["text","You cannot store optional on view \\"%(view)s\\"."]] ir.message ir f [["text","You cannot store optional on view \\"%(view)s\\"."]] \N \N +466 2024-04-13 20:27:30.723827 0 120 msg_field_string [["text","%(field)s (string)"]] ir.message ir f [["text","%(field)s (string)"]] \N \N +467 2024-04-13 20:27:30.723827 0 121 msg_field_model_name [["text","%(field)s (model name)"]] ir.message ir f [["text","%(field)s (model name)"]] \N \N +468 2024-04-13 20:27:30.723827 0 1 cron_queue_clean [["interval_number",1],["interval_type","days"],["method","ir.queue|clean"]] ir.cron ir t [["interval_number",1],["interval_type","days"],["method","ir.queue|clean"]] \N \N +469 2024-04-13 20:27:30.723827 0 103 email_view_form [["model","ir.email"],["name","email_form"],["type","form"]] ir.ui.view ir f [["model","ir.email"],["name","email_form"],["type","form"]] \N \N +470 2024-04-13 20:27:30.723827 0 104 email_view_list [["model","ir.email"],["name","email_list"],["type","tree"]] ir.ui.view ir f [["model","ir.email"],["name","email_list"],["type","tree"]] \N \N +471 2024-04-13 20:27:30.723827 0 52 act_email_form [["name","E-mails"],["res_model","ir.email"]] ir.action.act_window ir f [["name","E-mails"],["res_model","ir.email"]] \N \N +472 2024-04-13 20:27:30.723827 0 67 act_email_form_view1 [["act_window",52],["sequence",10],["view",104]] ir.action.act_window.view ir f [["act_window",52],["sequence",10],["view",104]] \N \N +473 2024-04-13 20:27:30.723827 0 68 act_email_form_view2 [["act_window",52],["sequence",20],["view",103]] ir.action.act_window.view ir f [["act_window",52],["sequence",20],["view",103]] \N \N +474 2024-04-13 20:27:30.723827 0 47 menu_email_form [["action","ir.action.act_window,52"],["icon","tryton-list"],["name","E-mails"],["parent",16],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,52"],["icon","tryton-list"],["name","E-mails"],["parent",16],["sequence",50]] \N \N +475 2024-04-13 20:27:30.723827 0 1 access_email [["model",72],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access ir f [["model",72],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +476 2024-04-13 20:27:30.723827 0 53 act_email_form_relate [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"resource.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}, {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}], \\"t\\": [\\"resource\\", \\"=\\", [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]]}]"],["name","E-mail Archives"],["res_model","ir.email"]] ir.action.act_window ir f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"resource.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}, {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}], \\"t\\": [\\"resource\\", \\"=\\", [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]]}]"],["name","E-mail Archives"],["res_model","ir.email"]] \N \N +477 2024-04-13 20:27:30.723827 0 69 act_email_form_relate_view1 [["act_window",53],["sequence",10],["view",104]] ir.action.act_window.view ir f [["act_window",53],["sequence",10],["view",104]] \N \N +478 2024-04-13 20:27:30.723827 0 70 act_email_form_relate_view2 [["act_window",53],["sequence",20],["view",103]] ir.action.act_window.view ir f [["act_window",53],["sequence",20],["view",103]] \N \N +479 2024-04-13 20:27:30.723827 0 52 act_email_form_relate_keyword1 [["action",53],["keyword","form_relate"]] ir.action.keyword ir f [["action",53],["keyword","form_relate"]] \N \N +480 2024-04-13 20:27:30.723827 0 105 email_template_view_form [["model","ir.email.template"],["name","email_template_form"],["type","form"]] ir.ui.view ir f [["model","ir.email.template"],["name","email_template_form"],["type","form"]] \N \N +481 2024-04-13 20:27:30.723827 0 106 email_template_view_list [["model","ir.email.template"],["name","email_template_list"],["type","tree"]] ir.ui.view ir f [["model","ir.email.template"],["name","email_template_list"],["type","tree"]] \N \N +482 2024-04-13 20:27:30.723827 0 54 act_email_template_form [["name","E-mail Templates"],["res_model","ir.email.template"]] ir.action.act_window ir f [["name","E-mail Templates"],["res_model","ir.email.template"]] \N \N +483 2024-04-13 20:27:30.723827 0 71 act_email_template_form_view1 [["act_window",54],["sequence",10],["view",106]] ir.action.act_window.view ir f [["act_window",54],["sequence",10],["view",106]] \N \N +484 2024-04-13 20:27:30.723827 0 72 act_email_template_form_view2 [["act_window",54],["sequence",20],["view",105]] ir.action.act_window.view ir f [["act_window",54],["sequence",20],["view",105]] \N \N +485 2024-04-13 20:27:30.723827 0 48 menu_email_template_form [["action","ir.action.act_window,54"],["icon","tryton-list"],["name","E-mail Templates"],["parent",10],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,54"],["icon","tryton-list"],["name","E-mail Templates"],["parent",10],["sequence",50]] \N \N +486 2024-04-13 20:27:30.723827 0 107 error_view_list [["model","ir.error"],["name","error_list"],["type","tree"]] ir.ui.view ir f [["model","ir.error"],["name","error_list"],["type","tree"]] \N \N +487 2024-04-13 20:27:30.723827 0 108 error_view_form [["model","ir.error"],["name","error_form"],["type","form"]] ir.ui.view ir f [["model","ir.error"],["name","error_form"],["type","form"]] \N \N +488 2024-04-13 20:27:30.723827 0 55 act_error_form [["name","Errors"],["res_model","ir.error"]] ir.action.act_window ir f [["name","Errors"],["res_model","ir.error"]] \N \N +489 2024-04-13 20:27:30.723827 0 73 act_error_form_view1 [["act_window",55],["sequence",10],["view",107]] ir.action.act_window.view ir f [["act_window",55],["sequence",10],["view",107]] \N \N +490 2024-04-13 20:27:30.723827 0 74 act_error_form_view2 [["act_window",55],["sequence",20],["view",108]] ir.action.act_window.view ir f [["act_window",55],["sequence",20],["view",108]] \N \N +491 2024-04-13 20:27:30.723827 0 5 act_error_form_domain_open [["act_window",55],["count",true],["domain","[[\\"state\\", \\"=\\", \\"open\\"]]"],["name","Open"],["sequence",10]] ir.action.act_window.domain ir f [["act_window",55],["count",true],["domain","[[\\"state\\", \\"=\\", \\"open\\"]]"],["name","Open"],["sequence",10]] \N \N +492 2024-04-13 20:27:30.723827 0 6 act_error_form_domain_processing [["act_window",55],["count",true],["domain","[[\\"state\\", \\"=\\", \\"processing\\"]]"],["name","Processing"],["sequence",20]] ir.action.act_window.domain ir f [["act_window",55],["count",true],["domain","[[\\"state\\", \\"=\\", \\"processing\\"]]"],["name","Processing"],["sequence",20]] \N \N +493 2024-04-13 20:27:30.723827 0 7 act_error_form_domain_all [["act_window",55],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain ir f [["act_window",55],["domain",""],["name","All"],["sequence",9999]] \N \N +494 2024-04-13 20:27:30.723827 0 49 menu_error_form [["action","ir.action.act_window,55"],["icon","tryton-list"],["name","Errors"],["parent",30],["sequence",50]] ir.ui.menu ir f [["action","ir.action.act_window,55"],["icon","tryton-list"],["name","Errors"],["parent",30],["sequence",50]] \N \N +495 2024-04-13 20:27:30.723827 0 12 error_open_button [["model",76],["name","open"],["string","Open"]] ir.model.button ir f [["model",76],["name","open"],["string","Open"]] \N \N +496 2024-04-13 20:27:30.723827 0 13 error_process_button [["model",76],["name","process"],["string","Process"]] ir.model.button ir f [["model",76],["name","process"],["string","Process"]] \N \N +497 2024-04-13 20:27:30.723827 0 14 error_solve_button [["model",76],["name","solve"],["string","Solve"]] ir.model.button ir f [["model",76],["name","solve"],["string","Solve"]] \N \N +498 2024-04-13 20:27:30.723827 0 2 cron_error_clean [["interval_number",1],["interval_type","months"],["method","ir.error|clean"]] ir.cron ir t [["interval_number",1],["interval_type","months"],["method","ir.error|clean"]] \N \N +499 2024-04-13 20:27:35.518366 0 50 menu_res [["icon","tryton-folder"],["name","Users"],["parent",1],["sequence",10]] ir.ui.menu res f [["icon","tryton-folder"],["name","Users"],["parent",1],["sequence",10]] \N \N +500 2024-04-13 20:27:35.518366 0 1 group_admin [["name","Administration"]] res.group res f [["name","Administration"]] \N \N +501 2024-04-13 20:27:35.518366 0 109 group_view_form [["model","res.group"],["name","group_form"],["type","form"]] ir.ui.view res f [["model","res.group"],["name","group_form"],["type","form"]] \N \N +502 2024-04-13 20:27:35.518366 0 110 group_view_tree [["model","res.group"],["name","group_list"],["type","tree"]] ir.ui.view res f [["model","res.group"],["name","group_list"],["type","tree"]] \N \N +503 2024-04-13 20:27:35.518366 0 56 act_group_form [["name","Groups"],["res_model","res.group"],["type","ir.action.act_window"]] ir.action.act_window res f [["name","Groups"],["res_model","res.group"],["type","ir.action.act_window"]] \N \N +504 2024-04-13 20:27:35.518366 0 75 act_group_form_view1 [["act_window",56],["sequence",1],["view",110]] ir.action.act_window.view res f [["act_window",56],["sequence",1],["view",110]] \N \N +505 2024-04-13 20:27:35.518366 0 76 act_group_form_view2 [["act_window",56],["sequence",2],["view",109]] ir.action.act_window.view res f [["act_window",56],["sequence",2],["view",109]] \N \N +506 2024-04-13 20:27:35.518366 0 51 menu_group_form [["action","ir.action.act_window,56"],["icon","tryton-list"],["name","Groups"],["parent",50],["sequence",20]] ir.ui.menu res f [["action","ir.action.act_window,56"],["icon","tryton-list"],["name","Groups"],["parent",50],["sequence",20]] \N \N +507 2024-04-13 20:27:35.518366 0 2 access_group [["model",77],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",77],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +508 2024-04-13 20:27:35.518366 0 3 access_group_admin [["group",1],["model",77],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",77],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +510 2024-04-13 20:27:35.518366 0 1 user_admin_group_admin [["group",1],["user",1]] res.user-res.group res f [["group",1],["user",1]] \N \N +511 2024-04-13 20:27:35.518366 0 111 user_view_form [["model","res.user"],["name","user_form"],["type","form"]] ir.ui.view res f [["model","res.user"],["name","user_form"],["type","form"]] \N \N +512 2024-04-13 20:27:35.518366 0 112 user_view_form_preferences [["model","res.user"],["name","user_form_preferences"],["priority",20],["type","form"]] ir.ui.view res f [["model","res.user"],["name","user_form_preferences"],["priority",20],["type","form"]] \N \N +513 2024-04-13 20:27:35.518366 0 113 user_view_tree [["model","res.user"],["name","user_list"],["type","tree"]] ir.ui.view res f [["model","res.user"],["name","user_list"],["type","tree"]] \N \N +514 2024-04-13 20:27:35.518366 0 57 act_user_form [["name","Users"],["res_model","res.user"],["type","ir.action.act_window"]] ir.action.act_window res f [["name","Users"],["res_model","res.user"],["type","ir.action.act_window"]] \N \N +515 2024-04-13 20:27:35.518366 0 77 act_user_form_view1 [["act_window",57],["sequence",1],["view",113]] ir.action.act_window.view res f [["act_window",57],["sequence",1],["view",113]] \N \N +516 2024-04-13 20:27:35.518366 0 78 act_user_form_view2 [["act_window",57],["sequence",2],["view",111]] ir.action.act_window.view res f [["act_window",57],["sequence",2],["view",111]] \N \N +517 2024-04-13 20:27:35.518366 0 52 menu_user_form [["action","ir.action.act_window,57"],["icon","tryton-list"],["name","Users"],["parent",50],["sequence",10]] ir.ui.menu res f [["action","ir.action.act_window,57"],["icon","tryton-list"],["name","Users"],["parent",50],["sequence",10]] \N \N +518 2024-04-13 20:27:35.518366 0 4 access_user [["model",78],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",78],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +519 2024-04-13 20:27:35.518366 0 5 access_user_admin [["group",1],["model",78],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",78],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +520 2024-04-13 20:27:35.518366 0 15 user_reset_password_button [["help","Send by email a new temporary password to the user"],["model",78],["name","reset_password"],["string","Reset Password"]] ir.model.button res f [["help","Send by email a new temporary password to the user"],["model",78],["name","reset_password"],["string","Reset Password"]] \N \N +521 2024-04-13 20:27:35.518366 0 114 user_config_start_view_form [["model","res.user.config.start"],["name","user_config_start_form"],["type","form"]] ir.ui.view res f [["model","res.user.config.start"],["name","user_config_start_form"],["type","form"]] \N \N +522 2024-04-13 20:27:35.518366 0 58 act_user_config [["name","Configure Users"],["window",true],["wiz_name","res.user.config"]] ir.action.wizard res f [["name","Configure Users"],["window",true],["wiz_name","res.user.config"]] \N \N +523 2024-04-13 20:27:35.518366 0 3 config_wizard_item_user [["action",58]] ir.module.config_wizard.item res f [["action",58]] \N \N +524 2024-04-13 20:27:35.518366 0 115 user_warning_view_form [["model","res.user.warning"],["name","user_warning_form"],["type","form"]] ir.ui.view res f [["model","res.user.warning"],["name","user_warning_form"],["type","form"]] \N \N +525 2024-04-13 20:27:35.518366 0 116 user_warning_view_tree [["model","res.user.warning"],["name","user_warning_tree"],["type","tree"]] ir.ui.view res f [["model","res.user.warning"],["name","user_warning_tree"],["type","tree"]] \N \N +526 2024-04-13 20:27:35.518366 0 1 rule_group_user_warning [["global_p",true],["model",83],["name","Own warning"]] ir.rule.group res f [["global_p",true],["model",83],["name","Own warning"]] \N \N +527 2024-04-13 20:27:35.518366 0 1 rule_user_warning1 [["domain","[[\\"user\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"user_id\\"}]]"],["rule_group",1]] ir.rule res f [["domain","[[\\"user\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"user_id\\"}]]"],["rule_group",1]] \N \N +528 2024-04-13 20:27:35.518366 0 117 user_application_view_form [["model","res.user.application"],["name","user_application_form"],["type","form"]] ir.ui.view res f [["model","res.user.application"],["name","user_application_form"],["type","form"]] \N \N +529 2024-04-13 20:27:35.518366 0 118 user_application_view_list [["model","res.user.application"],["name","user_application_list"],["type","tree"]] ir.ui.view res f [["model","res.user.application"],["name","user_application_list"],["type","tree"]] \N \N +530 2024-04-13 20:27:35.518366 0 2 rule_group_user_application [["default_p",true],["global_p",false],["model",84],["name","Own user application"]] ir.rule.group res f [["default_p",true],["global_p",false],["model",84],["name","Own user application"]] \N \N +531 2024-04-13 20:27:35.518366 0 2 rule_user_application1 [["domain","[[\\"user\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"user_id\\"}]]"],["rule_group",2]] ir.rule res f [["domain","[[\\"user\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"user_id\\"}]]"],["rule_group",2]] \N \N +532 2024-04-13 20:27:35.518366 0 3 rule_group_user_application_admin [["default_p",false],["global_p",false],["model",84],["name","Any user application"]] ir.rule.group res f [["default_p",false],["global_p",false],["model",84],["name","Any user application"]] \N \N +533 2024-04-13 20:27:35.518366 0 3 rule_user_application_admin1 [["domain","[]"],["rule_group",3]] ir.rule res f [["domain","[]"],["rule_group",3]] \N \N +534 2024-04-13 20:27:35.518366 0 1 rule_user_application_admin_admin [["group",1],["rule_group",3]] ir.rule.group-res.group res f [["group",1],["rule_group",3]] \N \N +535 2024-04-13 20:27:35.518366 0 59 report_email_reset_password [["model","res.user"],["name","Reset Password"],["report","res/email_reset_password.html"],["report_name","res.user.email_reset_password"],["template_extension","html"]] ir.action.report res f [["model","res.user"],["name","Reset Password"],["report","res/email_reset_password.html"],["report_name","res.user.email_reset_password"],["template_extension","html"]] \N \N +536 2024-04-13 20:27:35.518366 0 16 user_application_validate_button [["model",84],["name","validate_"],["string","Validate"]] ir.model.button res f [["model",84],["name","validate_"],["string","Validate"]] \N \N +537 2024-04-13 20:27:35.518366 0 17 user_application_cancel_button [["model",84],["name","cancel"],["string","Cancel"]] ir.model.button res f [["model",84],["name","cancel"],["string","Cancel"]] \N \N +538 2024-04-13 20:27:35.518366 0 6 access_ir_sequence_type [["model",10],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",10],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +539 2024-04-13 20:27:35.518366 0 7 access_ir_sequence_type_admin [["group",1],["model",10],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",10],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +540 2024-04-13 20:27:35.518366 0 8 access_ir_ui_icon [["model",21],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",21],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +600 2024-04-13 20:27:35.518366 0 120 export_view_form [["inherit",80],["model","ir.export"],["name","export_form"]] ir.ui.view res f [["inherit",80],["model","ir.export"],["name","export_form"]] \N \N +541 2024-04-13 20:27:35.518366 0 9 access_ir_ui_icon_admin [["group",1],["model",21],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",21],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +542 2024-04-13 20:27:35.518366 0 10 access_ir_ui_menu [["model",13],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",13],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +543 2024-04-13 20:27:35.518366 0 11 access_ir_ui_menu_admin [["group",1],["model",13],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",13],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +544 2024-04-13 20:27:35.518366 0 12 access_ir_ui_menu_favorite [["model",14],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",14],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +545 2024-04-13 20:27:35.518366 0 13 access_ir_ui_menu_favorite_admin [["group",1],["model",14],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",14],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +546 2024-04-13 20:27:35.518366 0 14 access_ir_ui_view [["model",15],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",15],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +547 2024-04-13 20:27:35.518366 0 15 access_ir_ui_view_admin [["group",1],["model",15],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",15],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +548 2024-04-13 20:27:35.518366 0 16 access_ir_action [["model",22],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",22],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +549 2024-04-13 20:27:35.518366 0 17 access_ir_action_admin [["group",1],["model",22],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",22],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +550 2024-04-13 20:27:35.518366 0 18 access_ir_model [["model",30],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",30],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +551 2024-04-13 20:27:35.518366 0 19 access_ir_model_admin [["group",1],["model",30],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",30],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +552 2024-04-13 20:27:35.518366 0 20 access_ir_model_data [["model",38],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",38],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +553 2024-04-13 20:27:35.518366 0 21 access_ir_model_log [["model",39],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",39],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +554 2024-04-13 20:27:35.518366 0 22 access_ir_cron [["model",46],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",46],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +555 2024-04-13 20:27:35.518366 0 23 access_ir_cron_admin [["group",1],["model",46],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",46],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +556 2024-04-13 20:27:35.518366 0 24 access_ir_queue [["model",68],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access res f [["model",68],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +557 2024-04-13 20:27:35.518366 0 25 access_ir_queue_admin [["group",1],["model",68],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["group",1],["model",68],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +558 2024-04-13 20:27:35.518366 0 26 access_ir_lang [["model",47],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",47],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +559 2024-04-13 20:27:35.518366 0 27 access_ir_lang_admin [["group",1],["model",47],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",47],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +560 2024-04-13 20:27:35.518366 0 28 access_ir_translation [["model",2],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",2],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +561 2024-04-13 20:27:35.518366 0 29 access_ir_translation_admin [["group",1],["model",2],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",2],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +562 2024-04-13 20:27:35.518366 0 30 access_ir_rule_group [["model",51],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",51],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +563 2024-04-13 20:27:35.518366 0 31 access_ir_rule_group_admin [["group",1],["model",51],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",51],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +564 2024-04-13 20:27:35.518366 0 32 access_ir_module [["model",53],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",53],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +565 2024-04-13 20:27:35.518366 0 33 access_ir_module_admin [["group",1],["model",53],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",53],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +566 2024-04-13 20:27:35.518366 0 34 access_ir_trigger [["model",64],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",64],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +567 2024-04-13 20:27:35.518366 0 35 access_ir_trigger_admin [["group",1],["model",64],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",64],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +568 2024-04-13 20:27:35.518366 0 4 rule_group_menu [["global_p",true],["model",13],["name","User in groups"]] ir.rule.group res f [["global_p",true],["model",13],["name","User in groups"]] \N \N +569 2024-04-13 20:27:35.518366 0 4 rule_menu1 [["domain","[[\\"groups\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"groups\\"}]]"],["rule_group",4]] ir.rule res f [["domain","[[\\"groups\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"groups\\"}]]"],["rule_group",4]] \N \N +570 2024-04-13 20:27:35.518366 0 5 rule_menu2 [["domain","[[\\"groups\\", \\"=\\", null]]"],["rule_group",4]] ir.rule res f [["domain","[[\\"groups\\", \\"=\\", null]]"],["rule_group",4]] \N \N +571 2024-04-13 20:27:35.518366 0 5 rule_group_action [["global_p",true],["model",22],["name","User in groups"]] ir.rule.group res f [["global_p",true],["model",22],["name","User in groups"]] \N \N +572 2024-04-13 20:27:35.518366 0 6 rule_action1 [["domain","[[\\"groups\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"groups\\"}]]"],["rule_group",5]] ir.rule res f [["domain","[[\\"groups\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"groups\\"}]]"],["rule_group",5]] \N \N +573 2024-04-13 20:27:35.518366 0 7 rule_action2 [["domain","[[\\"groups\\", \\"=\\", null]]"],["rule_group",5]] ir.rule res f [["domain","[[\\"groups\\", \\"=\\", null]]"],["rule_group",5]] \N \N +574 2024-04-13 20:27:35.518366 0 1 act_module_activate_upgrade_group_admin [["action",48],["group",1]] ir.action-res.group res f [["action",48],["group",1]] \N \N +575 2024-04-13 20:27:35.518366 0 2 act_translation_update_group_admin [["action",41],["group",1]] ir.action-res.group res f [["action",41],["group",1]] \N \N +576 2024-04-13 20:27:35.518366 0 3 act_translation_export_group_admin [["action",42],["group",1]] ir.action-res.group res f [["action",42],["group",1]] \N \N +577 2024-04-13 20:27:35.518366 0 4 act_lang_config [["action",35],["group",1]] ir.action-res.group res f [["action",35],["group",1]] \N \N +578 2024-04-13 20:27:35.518366 0 1 menu_administration_group_admin [["group",1],["menu",1]] ir.ui.menu-res.group res f [["group",1],["menu",1]] \N \N +579 2024-04-13 20:27:35.518366 0 1 module_activate_button_group_admin [["button",6],["group",1]] ir.model.button-res.group res f [["button",6],["group",1]] \N \N +580 2024-04-13 20:27:35.518366 0 2 module_activate_cancel_button_group_admin [["button",7],["group",1]] ir.model.button-res.group res f [["button",7],["group",1]] \N \N +581 2024-04-13 20:27:35.518366 0 3 module_deactivate_button_group_admin [["button",8],["group",1]] ir.model.button-res.group res f [["button",8],["group",1]] \N \N +582 2024-04-13 20:27:35.518366 0 4 module_deactivate_cancel_button_group_admin [["button",9],["group",1]] ir.model.button-res.group res f [["button",9],["group",1]] \N \N +583 2024-04-13 20:27:35.518366 0 5 module_upgrade_button_group_admin [["button",10],["group",1]] ir.model.button-res.group res f [["button",10],["group",1]] \N \N +584 2024-04-13 20:27:35.518366 0 6 module_upgrade_cancel_button_group_admin [["button",11],["group",1]] ir.model.button-res.group res f [["button",11],["group",1]] \N \N +585 2024-04-13 20:27:35.518366 0 7 cron_run_once_button_group_admin [["button",3],["group",1]] ir.model.button-res.group res f [["button",3],["group",1]] \N \N +586 2024-04-13 20:27:35.518366 0 8 model_data_sync_button_group_admin [["button",2],["group",1]] ir.model.button-res.group res f [["button",2],["group",1]] \N \N +587 2024-04-13 20:27:35.518366 0 9 view_show_button_group_admin [["button",1],["group",1]] ir.model.button-res.group res f [["button",1],["group",1]] \N \N +588 2024-04-13 20:27:35.518366 0 119 sequence_type_view_form [["inherit",59],["model","ir.sequence.type"],["name","sequence_type_form"]] ir.ui.view res f [["inherit",59],["model","ir.sequence.type"],["name","sequence_type_form"]] \N \N +589 2024-04-13 20:27:35.518366 0 6 rule_group_sequence [["global_p",true],["model",11],["name","User in groups"],["perm_read",false]] ir.rule.group res f [["global_p",true],["model",11],["name","User in groups"],["perm_read",false]] \N \N +590 2024-04-13 20:27:35.518366 0 8 rule_sequence [["domain","[[\\"sequence_type.groups\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"groups\\"}]]"],["rule_group",6]] ir.rule res f [["domain","[[\\"sequence_type.groups\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"groups\\"}]]"],["rule_group",6]] \N \N +591 2024-04-13 20:27:35.518366 0 7 rule_group_sequence_strict [["global_p",true],["model",12],["name","User in groups"],["perm_read",false]] ir.rule.group res f [["global_p",true],["model",12],["name","User in groups"],["perm_read",false]] \N \N +592 2024-04-13 20:27:35.518366 0 9 rule_sequence_strict [["domain","[[\\"sequence_type.groups\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"groups\\"}]]"],["rule_group",7]] ir.rule res f [["domain","[[\\"sequence_type.groups\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"groups\\"}]]"],["rule_group",7]] \N \N +593 2024-04-13 20:27:35.518366 0 3 cron_trigger_time [["interval_number",5],["interval_type","minutes"],["method","ir.trigger|trigger_time"]] ir.cron res f [["interval_number",5],["interval_type","minutes"],["method","ir.trigger|trigger_time"]] \N \N +594 2024-04-13 20:27:35.518366 0 36 rule_default_view_tree_state [["model",19],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access res f [["model",19],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +595 2024-04-13 20:27:35.518366 0 37 rule_group_view_tree_state [["group",1],["model",19],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",19],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +596 2024-04-13 20:27:35.518366 0 38 access_ir_ui_view_search [["model",20],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access res f [["model",20],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +597 2024-04-13 20:27:35.518366 0 39 access_ir_ui_view_search_admin [["group",1],["model",20],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",20],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +598 2024-04-13 20:27:35.518366 0 40 access_message [["model",71],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",71],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +599 2024-04-13 20:27:35.518366 0 41 access_message_group_admin [["group",1],["model",71],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",71],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +601 2024-04-13 20:27:35.518366 0 121 export_view_list [["inherit",81],["model","ir.export"],["name","export_list"]] ir.ui.view res f [["inherit",81],["model","ir.export"],["name","export_list"]] \N \N +602 2024-04-13 20:27:35.518366 0 42 access_ir_export [["model",49],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",49],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +603 2024-04-13 20:27:35.518366 0 43 access_ir_export_admin [["group",1],["model",49],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",49],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +604 2024-04-13 20:27:35.518366 0 44 access_ir_email_template [["model",74],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access res f [["model",74],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +605 2024-04-13 20:27:35.518366 0 45 access_ir_email_template_admin [["group",1],["model",74],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",74],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +606 2024-04-13 20:27:35.518366 0 46 access_ir_error [["model",76],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access res f [["model",76],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +607 2024-04-13 20:27:35.518366 0 47 access_ir_error_admin [["group",1],["model",76],["perm_create",false],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access res f [["group",1],["model",76],["perm_create",false],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +608 2024-04-13 20:27:35.518366 0 122 msg_password_length [["text","The password must have at least %(length)i characters."]] ir.message res f [["text","The password must have at least %(length)i characters."]] \N \N +609 2024-04-13 20:27:35.518366 0 123 msg_password_forbidden [["text","The password is forbidden."]] ir.message res f [["text","The password is forbidden."]] \N \N +610 2024-04-13 20:27:35.518366 0 124 msg_password_name [["text","The password cannot be the same as user's name."]] ir.message res f [["text","The password cannot be the same as user's name."]] \N \N +611 2024-04-13 20:27:35.518366 0 125 msg_password_login [["text","The password cannot be the same as user's login."]] ir.message res f [["text","The password cannot be the same as user's login."]] \N \N +612 2024-04-13 20:27:35.518366 0 126 msg_password_email [["text","The password cannot be the same as user's email address."]] ir.message res f [["text","The password cannot be the same as user's email address."]] \N \N +613 2024-04-13 20:27:35.518366 0 127 msg_email_invalid [["text","The email address \\"%(email)s\\" for \\"%(user)s\\" is not valid."]] ir.message res f [["text","The email address \\"%(email)s\\" for \\"%(user)s\\" is not valid."]] \N \N +614 2024-04-13 20:27:35.518366 0 128 msg_user_delete_forbidden [["text","For logging purposes users cannot be deleted, instead they should be deactivated."]] ir.message res f [["text","For logging purposes users cannot be deleted, instead they should be deactivated."]] \N \N +615 2024-04-13 20:27:35.518366 0 129 msg_user_password [["text","Password for %(login)s"]] ir.message res f [["text","Password for %(login)s"]] \N \N +616 2024-04-13 20:39:00.134374 0 9 country_icon [["name","tryton-country"],["path","icons/tryton-country.svg"]] ir.ui.icon country f [["name","tryton-country"],["path","icons/tryton-country.svg"]] \N \N +617 2024-04-13 20:39:00.134374 0 53 menu_country [["icon","tryton-country"],["name","Countries"],["parent",1],["sequence",30]] ir.ui.menu country f [["icon","tryton-country"],["name","Countries"],["parent",1],["sequence",30]] \N \N +618 2024-04-13 20:39:00.134374 0 2 menu_country_group_admin [["group",1],["menu",53]] ir.ui.menu-res.group country f [["group",1],["menu",53]] \N \N +619 2024-04-13 20:39:00.134374 0 122 organization_view_form [["model","country.organization"],["name","organization_form"],["type","form"]] ir.ui.view country f [["model","country.organization"],["name","organization_form"],["type","form"]] \N \N +620 2024-04-13 20:39:00.134374 0 123 organization_view_list [["model","country.organization"],["name","organization_list"],["type","tree"]] ir.ui.view country f [["model","country.organization"],["name","organization_list"],["type","tree"]] \N \N +621 2024-04-13 20:39:00.134374 0 60 act_organization_form [["name","Organizations"],["res_model","country.organization"]] ir.action.act_window country f [["name","Organizations"],["res_model","country.organization"]] \N \N +622 2024-04-13 20:39:00.134374 0 79 act_organization_form_view1 [["act_window",60],["sequence",10],["view",123]] ir.action.act_window.view country f [["act_window",60],["sequence",10],["view",123]] \N \N +623 2024-04-13 20:39:00.134374 0 80 act_organization_form_view2 [["act_window",60],["sequence",20],["view",122]] ir.action.act_window.view country f [["act_window",60],["sequence",20],["view",122]] \N \N +624 2024-04-13 20:39:00.134374 0 54 menu_organization_form [["action","ir.action.act_window,60"],["icon","tryton-list"],["name","Organizations"],["parent",53],["sequence",20]] ir.ui.menu country f [["action","ir.action.act_window,60"],["icon","tryton-list"],["name","Organizations"],["parent",53],["sequence",20]] \N \N +625 2024-04-13 20:39:00.134374 0 48 access_organization [["model",93],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access country f [["model",93],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +626 2024-04-13 20:39:00.134374 0 49 access_organization_admin [["group",1],["model",93],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access country f [["group",1],["model",93],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +627 2024-04-13 20:39:00.134374 0 124 organization_member_view_form [["model","country.organization.member"],["name","organization_member_form"],["type","form"]] ir.ui.view country f [["model","country.organization.member"],["name","organization_member_form"],["type","form"]] \N \N +628 2024-04-13 20:39:00.134374 0 125 organization_member_view_list [["model","country.organization.member"],["name","organization_member_list"],["type","tree"]] ir.ui.view country f [["model","country.organization.member"],["name","organization_member_list"],["type","tree"]] \N \N +629 2024-04-13 20:39:00.134374 0 126 region_view_form [["model","country.region"],["name","region_form"],["type","form"]] ir.ui.view country f [["model","country.region"],["name","region_form"],["type","form"]] \N \N +630 2024-04-13 20:39:00.134374 0 127 region_view_list [["model","country.region"],["name","region_list"],["priority",10],["type","tree"]] ir.ui.view country f [["model","country.region"],["name","region_list"],["priority",10],["type","tree"]] \N \N +659 2024-04-13 20:39:00.134374 0 87 act_postal_code_form_view1 [["act_window",65],["sequence",10],["view",134]] ir.action.act_window.view country f [["act_window",65],["sequence",10],["view",134]] \N \N +631 2024-04-13 20:39:00.134374 0 128 region_view_tree [["field_childs","subregions"],["model","country.region"],["name","region_tree"],["priority",20],["type","tree"]] ir.ui.view country f [["field_childs","subregions"],["model","country.region"],["name","region_tree"],["priority",20],["type","tree"]] \N \N +632 2024-04-13 20:39:00.134374 0 61 act_region_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Areas"],["res_model","country.region"]] ir.action.act_window country f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Areas"],["res_model","country.region"]] \N \N +633 2024-04-13 20:39:00.134374 0 81 act_region_tree_view1 [["act_window",61],["sequence",10],["view",128]] ir.action.act_window.view country f [["act_window",61],["sequence",10],["view",128]] \N \N +634 2024-04-13 20:39:00.134374 0 82 act_region_tree_view2 [["act_window",61],["sequence",20],["view",126]] ir.action.act_window.view country f [["act_window",61],["sequence",20],["view",126]] \N \N +635 2024-04-13 20:39:00.134374 0 55 menu_region_tree [["action","ir.action.act_window,61"],["icon","tryton-tree"],["name","Areas"],["parent",53],["sequence",20]] ir.ui.menu country f [["action","ir.action.act_window,61"],["icon","tryton-tree"],["name","Areas"],["parent",53],["sequence",20]] \N \N +636 2024-04-13 20:39:00.134374 0 62 act_region_form [["name","Regions"],["res_model","country.region"]] ir.action.act_window country f [["name","Regions"],["res_model","country.region"]] \N \N +637 2024-04-13 20:39:00.134374 0 83 act_region_form_view1 [["act_window",62],["sequence",10],["view",127]] ir.action.act_window.view country f [["act_window",62],["sequence",10],["view",127]] \N \N +638 2024-04-13 20:39:00.134374 0 84 act_region_form_view2 [["act_window",62],["sequence",20],["view",126]] ir.action.act_window.view country f [["act_window",62],["sequence",20],["view",126]] \N \N +639 2024-04-13 20:39:00.134374 0 56 menu_region_form [["action","ir.action.act_window,62"],["icon","tryton-list"],["name","Regions"],["parent",55],["sequence",10]] ir.ui.menu country f [["action","ir.action.act_window,62"],["icon","tryton-list"],["name","Regions"],["parent",55],["sequence",10]] \N \N +640 2024-04-13 20:39:00.134374 0 50 access_region [["model",95],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access country f [["model",95],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +641 2024-04-13 20:39:00.134374 0 51 access_region_admin [["group",1],["model",95],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access country f [["group",1],["model",95],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +642 2024-04-13 20:39:00.134374 0 129 country_view_form [["model","country.country"],["name","country_form"],["type","form"]] ir.ui.view country f [["model","country.country"],["name","country_form"],["type","form"]] \N \N +643 2024-04-13 20:39:00.134374 0 130 country_view_tree [["model","country.country"],["name","country_tree"],["type","tree"]] ir.ui.view country f [["model","country.country"],["name","country_tree"],["type","tree"]] \N \N +644 2024-04-13 20:39:00.134374 0 63 act_country_form [["name","Countries"],["res_model","country.country"]] ir.action.act_window country f [["name","Countries"],["res_model","country.country"]] \N \N +645 2024-04-13 20:39:00.134374 0 85 act_country_form_view1 [["act_window",63],["sequence",10],["view",130]] ir.action.act_window.view country f [["act_window",63],["sequence",10],["view",130]] \N \N +646 2024-04-13 20:39:00.134374 0 86 act_country_form_view2 [["act_window",63],["sequence",20],["view",129]] ir.action.act_window.view country f [["act_window",63],["sequence",20],["view",129]] \N \N +647 2024-04-13 20:39:00.134374 0 57 menu_country_form [["action","ir.action.act_window,63"],["icon","tryton-list"],["name","Countries"],["parent",53],["sequence",10]] ir.ui.menu country f [["action","ir.action.act_window,63"],["icon","tryton-list"],["name","Countries"],["parent",53],["sequence",10]] \N \N +648 2024-04-13 20:39:00.134374 0 64 act_country_by_region [["domain","[[\\"region\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]"],["name","Countries by Region"],["res_model","country.country"]] ir.action.act_window country f [["domain","[[\\"region\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]"],["name","Countries by Region"],["res_model","country.country"]] \N \N +649 2024-04-13 20:39:00.134374 0 61 act_country_by_region_keyword1 [["action",64],["keyword","tree_open"],["model","country.region,-1"]] ir.action.keyword country f [["action",64],["keyword","tree_open"],["model","country.region,-1"]] \N \N +650 2024-04-13 20:39:00.134374 0 52 access_country [["model",96],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access country f [["model",96],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +651 2024-04-13 20:39:00.134374 0 53 access_country_admin [["group",1],["model",96],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access country f [["group",1],["model",96],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +652 2024-04-13 20:39:00.134374 0 131 subdivision_view_form [["model","country.subdivision"],["name","subdivision_form"],["type","form"]] ir.ui.view country f [["model","country.subdivision"],["name","subdivision_form"],["type","form"]] \N \N +653 2024-04-13 20:39:00.134374 0 132 subdivision_view_tree [["model","country.subdivision"],["name","subdivision_tree"],["type","tree"]] ir.ui.view country f [["model","country.subdivision"],["name","subdivision_tree"],["type","tree"]] \N \N +654 2024-04-13 20:39:00.134374 0 54 access_subdivision [["model",97],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access country f [["model",97],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +655 2024-04-13 20:39:00.134374 0 55 access_subdivision_admin [["group",1],["model",97],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access country f [["group",1],["model",97],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +656 2024-04-13 20:39:00.134374 0 133 postal_code_view_form [["model","country.postal_code"],["name","postal_code_form"],["type","form"]] ir.ui.view country f [["model","country.postal_code"],["name","postal_code_form"],["type","form"]] \N \N +657 2024-04-13 20:39:00.134374 0 134 postal_code_view_list [["model","country.postal_code"],["name","postal_code_list"],["type","tree"]] ir.ui.view country f [["model","country.postal_code"],["name","postal_code_list"],["type","tree"]] \N \N +658 2024-04-13 20:39:00.134374 0 65 act_postal_code_form [["domain","[[\\"country\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Postal Codes"],["res_model","country.postal_code"]] ir.action.act_window country f [["domain","[[\\"country\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Postal Codes"],["res_model","country.postal_code"]] \N \N +921 2024-04-13 20:39:02.298155 0 5 group_employee_admin [["name","Employee Administration"]] res.group company f [["name","Employee Administration"]] \N \N +660 2024-04-13 20:39:00.134374 0 88 act_postal_code_form_view2 [["act_window",65],["sequence",20],["view",133]] ir.action.act_window.view country f [["act_window",65],["sequence",20],["view",133]] \N \N +661 2024-04-13 20:39:00.134374 0 62 act_postal_code_form_keyword1 [["action",65],["keyword","form_relate"],["model","country.country,-1"]] ir.action.keyword country f [["action",65],["keyword","form_relate"],["model","country.country,-1"]] \N \N +662 2024-04-13 20:39:00.134374 0 56 access_postal_code [["model",98],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access country f [["model",98],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +663 2024-04-13 20:39:00.134374 0 57 access_postal_code_admin [["group",1],["model",98],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access country f [["group",1],["model",98],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +664 2024-04-13 20:39:00.134374 0 1 organization_eu [["code","EU"],["name","European Union"]] country.organization country f [["code","EU"],["name","European Union"]] \N \N +665 2024-04-13 20:39:00.134374 0 2 organization_benelux [["code","Benelux"],["name","Benelux Union"]] country.organization country f [["code","Benelux"],["name","Benelux Union"]] \N \N +666 2024-04-13 20:39:00.134374 0 3 organization_nafta [["code","NAFTA"],["name","North American Free Trade Agreement"]] country.organization country f [["code","NAFTA"],["name","North American Free Trade Agreement"]] \N \N +667 2024-04-13 20:39:00.134374 0 4 organization_mercosur [["code","Mercosur"],["name","Southern Common Market"]] country.organization country f [["code","Mercosur"],["name","Southern Common Market"]] \N \N +668 2024-04-13 20:39:00.134374 0 5 organization_can [["code","CAN"],["name","Andean Community"]] country.organization country f [["code","CAN"],["name","Andean Community"]] \N \N +669 2024-04-13 20:39:00.134374 0 6 organization_caricom [["code","CARICOM"],["name","Caribbean Community"]] country.organization country f [["code","CARICOM"],["name","Caribbean Community"]] \N \N +670 2024-04-13 20:39:00.134374 0 7 organization_apec [["code","APEC"],["name","Asia-Pacific Economic Cooperation"]] country.organization country f [["code","APEC"],["name","Asia-Pacific Economic Cooperation"]] \N \N +671 2024-04-13 20:39:00.134374 0 8 organization_asean [["code","ASEAN"],["name","Association of Southeast Asian Nations"]] country.organization country f [["code","ASEAN"],["name","Association of Southeast Asian Nations"]] \N \N +672 2024-04-13 20:39:00.134374 0 9 organization_safta [["code","SAFTA"],["name","South Asian Free Trade Area"]] country.organization country f [["code","SAFTA"],["name","South Asian Free Trade Area"]] \N \N +673 2024-04-13 20:39:00.134374 0 10 organization_gcc [["code","GCC"],["name","Cooperation Council for the Arab States of the Gulf"]] country.organization country f [["code","GCC"],["name","Cooperation Council for the Arab States of the Gulf"]] \N \N +674 2024-04-13 20:39:00.134374 0 11 organization_cemac [["code","CEMAC"],["name","Economic and Monetary Community of Central Africa"]] country.organization country f [["code","CEMAC"],["name","Economic and Monetary Community of Central Africa"]] \N \N +675 2024-04-13 20:39:00.134374 0 12 organization_eccas [["code","ECCAS"],["name","Economic Community of Central African States"]] country.organization country f [["code","ECCAS"],["name","Economic Community of Central African States"]] \N \N +676 2024-04-13 20:39:00.134374 0 13 organization_ecowas [["code","ECOWAS"],["name","Economic Community of West African States"]] country.organization country f [["code","ECOWAS"],["name","Economic Community of West African States"]] \N \N +677 2024-04-13 20:39:00.134374 0 14 organization_cen-sad [["code","CEN-SAD"],["name","Community of Sahel\\u2013Saharan States"]] country.organization country f [["code","CEN-SAD"],["name","Community of Sahel\\u2013Saharan States"]] \N \N +678 2024-04-13 20:39:00.134374 0 15 organization_comesa [["code","COMESA"],["name","Common Market for Eastern and Southern Africa"]] country.organization country f [["code","COMESA"],["name","Common Market for Eastern and Southern Africa"]] \N \N +679 2024-04-13 20:39:00.134374 0 16 organization_eac [["code","EAC"],["name","East African Community"]] country.organization country f [["code","EAC"],["name","East African Community"]] \N \N +680 2024-04-13 20:39:00.134374 0 17 organization_igad [["code","IGAD"],["name","Intergovernmental Authority on Development"]] country.organization country f [["code","IGAD"],["name","Intergovernmental Authority on Development"]] \N \N +681 2024-04-13 20:39:00.134374 0 18 organization_sadc [["code","SADC"],["name","Southern African Development Community"]] country.organization country f [["code","SADC"],["name","Southern African Development Community"]] \N \N +682 2024-04-13 20:39:00.134374 0 19 organization_amu [["code","AMU"],["name","Arab Maghreb Union"]] country.organization country f [["code","AMU"],["name","Arab Maghreb Union"]] \N \N +683 2024-04-13 20:39:00.134374 0 1 region_world [["code_numeric","001"],["name","World"]] country.region country f [["code_numeric","001"],["name","World"]] \N \N +684 2024-04-13 20:39:00.134374 0 2 region_africa [["code_numeric","002"],["name","Africa"],["parent",1]] country.region country f [["code_numeric","002"],["name","Africa"],["parent",1]] \N \N +685 2024-04-13 20:39:00.134374 0 3 region_antarctica [["code_numeric","010"],["name","Antarctica"],["parent",1]] country.region country f [["code_numeric","010"],["name","Antarctica"],["parent",1]] \N \N +686 2024-04-13 20:39:00.134374 0 4 region_americas [["code_numeric","019"],["name","Americas"],["parent",1]] country.region country f [["code_numeric","019"],["name","Americas"],["parent",1]] \N \N +687 2024-04-13 20:39:00.134374 0 5 region_asia [["code_numeric","142"],["name","Asia"],["parent",1]] country.region country f [["code_numeric","142"],["name","Asia"],["parent",1]] \N \N +688 2024-04-13 20:39:00.134374 0 6 region_europe [["code_numeric","150"],["name","Europe"],["parent",1]] country.region country f [["code_numeric","150"],["name","Europe"],["parent",1]] \N \N +689 2024-04-13 20:39:00.134374 0 7 region_oceania [["code_numeric","009"],["name","Oceania"],["parent",1]] country.region country f [["code_numeric","009"],["name","Oceania"],["parent",1]] \N \N +690 2024-04-13 20:39:00.134374 0 8 region_northern_africa [["code_numeric","015"],["name","Northern Africa"],["parent",2]] country.region country f [["code_numeric","015"],["name","Northern Africa"],["parent",2]] \N \N +691 2024-04-13 20:39:00.134374 0 9 region_sub-saharan_africa [["code_numeric","202"],["name","Sub-Saharan Africa"],["parent",2]] country.region country f [["code_numeric","202"],["name","Sub-Saharan Africa"],["parent",2]] \N \N +692 2024-04-13 20:39:00.134374 0 10 region_north_america [["code_numeric","003"],["name","North America"],["parent",4]] country.region country f [["code_numeric","003"],["name","North America"],["parent",4]] \N \N +693 2024-04-13 20:39:00.134374 0 11 region_latin_america_caribbean [["code_numeric","419"],["name","Latin America and the Caribbean"],["parent",4]] country.region country f [["code_numeric","419"],["name","Latin America and the Caribbean"],["parent",4]] \N \N +694 2024-04-13 20:39:00.134374 0 12 region_eastern_asia [["code_numeric","030"],["name","Eastern Asia"],["parent",5]] country.region country f [["code_numeric","030"],["name","Eastern Asia"],["parent",5]] \N \N +695 2024-04-13 20:39:00.134374 0 13 region_southern_asia [["code_numeric","034"],["name","Southern Asia"],["parent",5]] country.region country f [["code_numeric","034"],["name","Southern Asia"],["parent",5]] \N \N +696 2024-04-13 20:39:00.134374 0 14 region_south-eastern_asia [["code_numeric","035"],["name","South-eastern Asia"],["parent",5]] country.region country f [["code_numeric","035"],["name","South-eastern Asia"],["parent",5]] \N \N +697 2024-04-13 20:39:00.134374 0 15 region_central_asia [["code_numeric","143"],["name","Central Asia"],["parent",5]] country.region country f [["code_numeric","143"],["name","Central Asia"],["parent",5]] \N \N +698 2024-04-13 20:39:00.134374 0 16 region_western_asia [["code_numeric","145"],["name","Western Asia"],["parent",5]] country.region country f [["code_numeric","145"],["name","Western Asia"],["parent",5]] \N \N +699 2024-04-13 20:39:00.134374 0 17 region_southern_europe [["code_numeric","039"],["name","Southern Europe"],["parent",6]] country.region country f [["code_numeric","039"],["name","Southern Europe"],["parent",6]] \N \N +700 2024-04-13 20:39:00.134374 0 18 region_eastern_europe [["code_numeric","151"],["name","Eastern Europe"],["parent",6]] country.region country f [["code_numeric","151"],["name","Eastern Europe"],["parent",6]] \N \N +701 2024-04-13 20:39:00.134374 0 19 region_northern_europe [["code_numeric","154"],["name","Northern Europe"],["parent",6]] country.region country f [["code_numeric","154"],["name","Northern Europe"],["parent",6]] \N \N +702 2024-04-13 20:39:00.134374 0 20 region_western_europe [["code_numeric","155"],["name","Western Europe"],["parent",6]] country.region country f [["code_numeric","155"],["name","Western Europe"],["parent",6]] \N \N +703 2024-04-13 20:39:00.134374 0 21 region_australia_new_zealand [["code_numeric","053"],["name","Australia and New Zealand"],["parent",7]] country.region country f [["code_numeric","053"],["name","Australia and New Zealand"],["parent",7]] \N \N +704 2024-04-13 20:39:00.134374 0 22 region_melanesia [["code_numeric","054"],["name","Melanesia"],["parent",7]] country.region country f [["code_numeric","054"],["name","Melanesia"],["parent",7]] \N \N +705 2024-04-13 20:39:00.134374 0 23 region_micronesia [["code_numeric","057"],["name","Micronesia"],["parent",7]] country.region country f [["code_numeric","057"],["name","Micronesia"],["parent",7]] \N \N +706 2024-04-13 20:39:00.134374 0 24 region_polynesia [["code_numeric","061"],["name","Polynesia"],["parent",7]] country.region country f [["code_numeric","061"],["name","Polynesia"],["parent",7]] \N \N +707 2024-04-13 20:39:00.134374 0 25 region_western_africa [["code_numeric","011"],["name","Western Africa"],["parent",9]] country.region country f [["code_numeric","011"],["name","Western Africa"],["parent",9]] \N \N +708 2024-04-13 20:39:00.134374 0 26 region_eastern_africa [["code_numeric","014"],["name","Eastern Africa"],["parent",9]] country.region country f [["code_numeric","014"],["name","Eastern Africa"],["parent",9]] \N \N +709 2024-04-13 20:39:00.134374 0 27 region_middle_africa [["code_numeric","017"],["name","Middle Africa"],["parent",9]] country.region country f [["code_numeric","017"],["name","Middle Africa"],["parent",9]] \N \N +710 2024-04-13 20:39:00.134374 0 28 region_southern_africa [["code_numeric","018"],["name","Southern Africa"],["parent",9]] country.region country f [["code_numeric","018"],["name","Southern Africa"],["parent",9]] \N \N +711 2024-04-13 20:39:00.134374 0 29 region_northern_america [["code_numeric","021"],["name","Northern America"],["parent",10]] country.region country f [["code_numeric","021"],["name","Northern America"],["parent",10]] \N \N +712 2024-04-13 20:39:00.134374 0 30 region_south_america [["code_numeric","005"],["name","South America"],["parent",11]] country.region country f [["code_numeric","005"],["name","South America"],["parent",11]] \N \N +713 2024-04-13 20:39:00.134374 0 31 region_central_america [["code_numeric","013"],["name","Central America"],["parent",11]] country.region country f [["code_numeric","013"],["name","Central America"],["parent",11]] \N \N +714 2024-04-13 20:39:00.134374 0 32 region_caribbean [["code_numeric","029"],["name","Caribbean"],["parent",11]] country.region country f [["code_numeric","029"],["name","Caribbean"],["parent",11]] \N \N +715 2024-04-13 20:39:00.134374 0 33 region_channel_islands [["code_numeric","830"],["name","Channel Islands"],["parent",19]] country.region country f [["code_numeric","830"],["name","Channel Islands"],["parent",19]] \N \N +716 2024-04-13 20:39:00.792624 0 2 group_currency_admin [["name","Currency Administration"]] res.group currency f [["name","Currency Administration"]] \N \N +717 2024-04-13 20:39:00.792624 0 2 user_admin_group_currency_admin [["group",2],["user",1]] res.user-res.group currency f [["group",2],["user",1]] \N \N +718 2024-04-13 20:39:00.792624 0 10 currency_icon [["name","tryton-currency"],["path","icons/tryton-currency.svg"]] ir.ui.icon currency f [["name","tryton-currency"],["path","icons/tryton-currency.svg"]] \N \N +719 2024-04-13 20:39:00.792624 0 58 menu_currency [["icon","tryton-currency"],["name","Currencies"],["sequence",50]] ir.ui.menu currency f [["icon","tryton-currency"],["name","Currencies"],["sequence",50]] \N \N +720 2024-04-13 20:39:00.792624 0 3 menu_currency_group_currency_admin [["group",2],["menu",58]] ir.ui.menu-res.group currency f [["group",2],["menu",58]] \N \N +721 2024-04-13 20:39:00.792624 0 135 currency_view_form [["model","currency.currency"],["name","currency_form"],["type","form"]] ir.ui.view currency f [["model","currency.currency"],["name","currency_form"],["type","form"]] \N \N +722 2024-04-13 20:39:00.792624 0 136 currency_view_tree [["model","currency.currency"],["name","currency_tree"],["type","tree"]] ir.ui.view currency f [["model","currency.currency"],["name","currency_tree"],["type","tree"]] \N \N +723 2024-04-13 20:39:00.792624 0 66 act_currency_form [["name","Currencies"],["res_model","currency.currency"]] ir.action.act_window currency f [["name","Currencies"],["res_model","currency.currency"]] \N \N +724 2024-04-13 20:39:00.792624 0 89 act_currency_form_view1 [["act_window",66],["sequence",10],["view",136]] ir.action.act_window.view currency f [["act_window",66],["sequence",10],["view",136]] \N \N +725 2024-04-13 20:39:00.792624 0 90 act_currency_form_view2 [["act_window",66],["sequence",20],["view",135]] ir.action.act_window.view currency f [["act_window",66],["sequence",20],["view",135]] \N \N +726 2024-04-13 20:39:00.792624 0 59 menu_currency_form [["action","ir.action.act_window,66"],["icon","tryton-list"],["name","Currencies"],["parent",58],["sequence",10]] ir.ui.menu currency f [["action","ir.action.act_window,66"],["icon","tryton-list"],["name","Currencies"],["parent",58],["sequence",10]] \N \N +727 2024-04-13 20:39:00.792624 0 58 access_currency [["model",99],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access currency f [["model",99],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +728 2024-04-13 20:39:00.792624 0 59 access_currency_currency_admin [["group",2],["model",99],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access currency f [["group",2],["model",99],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +729 2024-04-13 20:39:00.792624 0 137 currency_rate_view_list [["model","currency.currency.rate"],["name","currency_rate_list"],["type","tree"]] ir.ui.view currency f [["model","currency.currency.rate"],["name","currency_rate_list"],["type","tree"]] \N \N +730 2024-04-13 20:39:00.792624 0 138 currency_rate_view_form [["model","currency.currency.rate"],["name","currency_rate_form"],["type","form"]] ir.ui.view currency f [["model","currency.currency.rate"],["name","currency_rate_form"],["type","form"]] \N \N +731 2024-04-13 20:39:00.792624 0 139 currency_rate_view_graph [["model","currency.currency.rate"],["name","currency_rate_graph"],["type","graph"]] ir.ui.view currency f [["model","currency.currency.rate"],["name","currency_rate_graph"],["type","graph"]] \N \N +732 2024-04-13 20:39:00.792624 0 140 cron_view_list [["model","currency.cron"],["name","cron_list"],["type","tree"]] ir.ui.view currency f [["model","currency.cron"],["name","cron_list"],["type","tree"]] \N \N +733 2024-04-13 20:39:00.792624 0 141 cron_view_form [["model","currency.cron"],["name","cron_form"],["type","form"]] ir.ui.view currency f [["model","currency.cron"],["name","cron_form"],["type","form"]] \N \N +734 2024-04-13 20:39:00.792624 0 67 act_cron_form [["name","Scheduled Rate Updates"],["res_model","currency.cron"]] ir.action.act_window currency f [["name","Scheduled Rate Updates"],["res_model","currency.cron"]] \N \N +735 2024-04-13 20:39:00.792624 0 91 act_cron_form_view1 [["act_window",67],["sequence",10],["view",140]] ir.action.act_window.view currency f [["act_window",67],["sequence",10],["view",140]] \N \N +736 2024-04-13 20:39:00.792624 0 92 act_cron_form_view2 [["act_window",67],["sequence",20],["view",141]] ir.action.act_window.view currency f [["act_window",67],["sequence",20],["view",141]] \N \N +737 2024-04-13 20:39:00.792624 0 60 menu_cron_form [["action","ir.action.act_window,67"],["icon","tryton-list"],["name","Scheduled Rate Updates"],["parent",58],["sequence",20]] ir.ui.menu currency f [["action","ir.action.act_window,67"],["icon","tryton-list"],["name","Scheduled Rate Updates"],["parent",58],["sequence",20]] \N \N +738 2024-04-13 20:39:00.792624 0 60 access_cron [["model",101],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access currency f [["model",101],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +739 2024-04-13 20:39:00.792624 0 61 access_cron_currency_admin [["group",2],["model",101],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access currency f [["group",2],["model",101],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +740 2024-04-13 20:39:00.792624 0 18 cron_run_button [["model",101],["name","run"],["string","Run"]] ir.model.button currency f [["model",101],["name","run"],["string","Run"]] \N \N +741 2024-04-13 20:39:00.792624 0 4 cron_cron [["interval_number",1],["interval_type","days"],["method","currency.cron|update"]] ir.cron currency f [["interval_number",1],["interval_type","days"],["method","currency.cron|update"]] \N \N +742 2024-04-13 20:39:00.792624 0 130 msg_no_rate [["text","No rate found for currency \\"%(currency)s\\" on \\"%(date)s\\"."]] ir.message currency f [["text","No rate found for currency \\"%(currency)s\\" on \\"%(date)s\\"."]] \N \N +743 2024-04-13 20:39:00.792624 0 131 msg_currency_unique_rate_date [["text","A currency can only have one rate by date."]] ir.message currency f [["text","A currency can only have one rate by date."]] \N \N +744 2024-04-13 20:39:00.792624 0 132 msg_currency_rate_positive [["text","A currency rate must be positive."]] ir.message currency f [["text","A currency rate must be positive."]] \N \N +745 2024-04-13 20:39:01.136154 0 3 group_party_admin [["name","Party Administration"]] res.group party f [["name","Party Administration"]] \N \N +746 2024-04-13 20:39:01.136154 0 3 user_admin_group_party_admin [["group",3],["user",1]] res.user-res.group party f [["group",3],["user",1]] \N \N +747 2024-04-13 20:39:01.136154 0 11 party_icon [["name","tryton-party"],["path","icons/tryton-party.svg"]] ir.ui.icon party f [["name","tryton-party"],["path","icons/tryton-party.svg"]] \N \N +748 2024-04-13 20:39:01.136154 0 61 menu_party [["icon","tryton-party"],["name","Parties"],["sequence",10]] ir.ui.menu party f [["icon","tryton-party"],["name","Parties"],["sequence",10]] \N \N +749 2024-04-13 20:39:01.136154 0 62 menu_configuration [["icon","tryton-settings"],["name","Configuration"],["parent",61],["sequence",0]] ir.ui.menu party f [["icon","tryton-settings"],["name","Configuration"],["parent",61],["sequence",0]] \N \N +750 2024-04-13 20:39:01.136154 0 4 menu_party_group_party_admin [["group",3],["menu",62]] ir.ui.menu-res.group party f [["group",3],["menu",62]] \N \N +751 2024-04-13 20:39:01.136154 0 142 party_view_tree [["model","party.party"],["name","party_tree"],["type","tree"]] ir.ui.view party f [["model","party.party"],["name","party_tree"],["type","tree"]] \N \N +752 2024-04-13 20:39:01.136154 0 143 party_view_form [["model","party.party"],["name","party_form"],["type","form"]] ir.ui.view party f [["model","party.party"],["name","party_form"],["type","form"]] \N \N +753 2024-04-13 20:39:01.136154 0 68 act_party_form [["name","Parties"],["res_model","party.party"]] ir.action.act_window party f [["name","Parties"],["res_model","party.party"]] \N \N +754 2024-04-13 20:39:01.136154 0 93 act_party_form_view1 [["act_window",68],["sequence",10],["view",142]] ir.action.act_window.view party f [["act_window",68],["sequence",10],["view",142]] \N \N +755 2024-04-13 20:39:01.136154 0 94 act_party_form_view2 [["act_window",68],["sequence",20],["view",143]] ir.action.act_window.view party f [["act_window",68],["sequence",20],["view",143]] \N \N +756 2024-04-13 20:39:01.136154 0 63 menu_party_form [["action","ir.action.act_window,68"],["icon","tryton-list"],["name","Parties"],["parent",61],["sequence",10]] ir.ui.menu party f [["action","ir.action.act_window,68"],["icon","tryton-list"],["name","Parties"],["parent",61],["sequence",10]] \N \N +757 2024-04-13 20:39:01.136154 0 69 act_party_by_category [["context","{\\"categories\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}"],["domain","[[\\"categories\\", \\"child_of\\", [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}], \\"parent\\"]]"],["name","Parties by Category"],["res_model","party.party"]] ir.action.act_window party f [["context","{\\"categories\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}"],["domain","[[\\"categories\\", \\"child_of\\", [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}], \\"parent\\"]]"],["name","Parties by Category"],["res_model","party.party"]] \N \N +758 2024-04-13 20:39:01.136154 0 66 act_party_by_category_keyword1 [["action",69],["keyword","tree_open"],["model","party.category,-1"]] ir.action.keyword party f [["action",69],["keyword","tree_open"],["model","party.category,-1"]] \N \N +922 2024-04-13 20:39:02.298155 0 5 user_admin_employee_admin [["group",5],["user",1]] res.user-res.group company f [["group",5],["user",1]] \N \N +759 2024-04-13 20:39:01.136154 0 70 report_label [["model","party.party"],["name","Labels"],["report","party/label.fodt"],["report_name","party.label"]] ir.action.report party f [["model","party.party"],["name","Labels"],["report","party/label.fodt"],["report_name","party.label"]] \N \N +760 2024-04-13 20:39:01.136154 0 67 report_label_party [["action",70],["keyword","form_print"],["model","party.party,-1"]] ir.action.keyword party f [["action",70],["keyword","form_print"],["model","party.party,-1"]] \N \N +761 2024-04-13 20:39:01.136154 0 1 sequence_type_party [["name","Party"]] ir.sequence.type party f [["name","Party"]] \N \N +762 2024-04-13 20:39:01.136154 0 1 sequence_type_party_group_admin [["group",1],["sequence_type",1]] ir.sequence.type-res.group party f [["group",1],["sequence_type",1]] \N \N +763 2024-04-13 20:39:01.136154 0 2 sequence_type_party_group_party_admin [["group",3],["sequence_type",1]] ir.sequence.type-res.group party f [["group",3],["sequence_type",1]] \N \N +764 2024-04-13 20:39:01.136154 0 1 sequence_party [["name","Party"],["sequence_type",1]] ir.sequence party f [["name","Party"],["sequence_type",1]] \N \N +765 2024-04-13 20:39:01.136154 0 144 identifier_form [["model","party.identifier"],["name","identifier_form"],["type","form"]] ir.ui.view party f [["model","party.identifier"],["name","identifier_form"],["type","form"]] \N \N +766 2024-04-13 20:39:01.136154 0 145 identifier_list [["model","party.identifier"],["name","identifier_list"],["priority",10],["type","tree"]] ir.ui.view party f [["model","party.identifier"],["name","identifier_list"],["priority",10],["type","tree"]] \N \N +767 2024-04-13 20:39:01.136154 0 146 identifier_list_sequence [["model","party.identifier"],["name","identifier_list_sequence"],["priority",20],["type","tree"]] ir.ui.view party f [["model","party.identifier"],["name","identifier_list_sequence"],["priority",20],["type","tree"]] \N \N +768 2024-04-13 20:39:01.136154 0 71 wizard_check_vies [["model","party.party"],["name","Check VIES"],["wiz_name","party.check_vies"]] ir.action.wizard party f [["model","party.party"],["name","Check VIES"],["wiz_name","party.check_vies"]] \N \N +769 2024-04-13 20:39:01.136154 0 68 check_vies_keyword [["action",71],["keyword","form_action"],["model","party.party,-1"]] ir.action.keyword party f [["action",71],["keyword","form_action"],["model","party.party,-1"]] \N \N +770 2024-04-13 20:39:01.136154 0 147 check_vies_result [["model","party.check_vies.result"],["name","check_vies_result"],["type","form"]] ir.ui.view party f [["model","party.check_vies.result"],["name","check_vies_result"],["type","form"]] \N \N +771 2024-04-13 20:39:01.136154 0 72 wizard_replace [["model","party.party"],["name","Replace"],["wiz_name","party.replace"]] ir.action.wizard party f [["model","party.party"],["name","Replace"],["wiz_name","party.replace"]] \N \N +772 2024-04-13 20:39:01.136154 0 5 wizard_replace-group_party_admin [["action",72],["group",3]] ir.action-res.group party f [["action",72],["group",3]] \N \N +773 2024-04-13 20:39:01.136154 0 69 wizard_replace_keyword1 [["action",72],["keyword","form_action"],["model","party.party,-1"]] ir.action.keyword party f [["action",72],["keyword","form_action"],["model","party.party,-1"]] \N \N +774 2024-04-13 20:39:01.136154 0 148 replace_ask_view_form [["model","party.replace.ask"],["name","replace_ask_form"],["type","form"]] ir.ui.view party f [["model","party.replace.ask"],["name","replace_ask_form"],["type","form"]] \N \N +775 2024-04-13 20:39:01.136154 0 73 wizard_erase [["model","party.party"],["name","Erase"],["wiz_name","party.erase"]] ir.action.wizard party f [["model","party.party"],["name","Erase"],["wiz_name","party.erase"]] \N \N +776 2024-04-13 20:39:01.136154 0 6 wizard_erase-group_party_admin [["action",73],["group",3]] ir.action-res.group party f [["action",73],["group",3]] \N \N +777 2024-04-13 20:39:01.136154 0 70 wizard_erase_keyword1 [["action",73],["keyword","form_action"],["model","party.party,-1"]] ir.action.keyword party f [["action",73],["keyword","form_action"],["model","party.party,-1"]] \N \N +778 2024-04-13 20:39:01.136154 0 149 erase_ask_view_form [["model","party.erase.ask"],["name","erase_ask_form"],["type","form"]] ir.ui.view party f [["model","party.erase.ask"],["name","erase_ask_form"],["type","form"]] \N \N +779 2024-04-13 20:39:01.136154 0 150 category_view_form [["model","party.category"],["name","category_form"],["type","form"]] ir.ui.view party f [["model","party.category"],["name","category_form"],["type","form"]] \N \N +780 2024-04-13 20:39:01.136154 0 151 category_view_tree [["field_childs","childs"],["model","party.category"],["name","category_tree"],["type","tree"]] ir.ui.view party f [["field_childs","childs"],["model","party.category"],["name","category_tree"],["type","tree"]] \N \N +781 2024-04-13 20:39:01.136154 0 152 category_view_list [["model","party.category"],["name","category_list"],["priority",10],["type","tree"]] ir.ui.view party f [["model","party.category"],["name","category_list"],["priority",10],["type","tree"]] \N \N +782 2024-04-13 20:39:01.136154 0 74 act_category_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Categories"],["res_model","party.category"]] ir.action.act_window party f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Categories"],["res_model","party.category"]] \N \N +783 2024-04-13 20:39:01.136154 0 95 act_category_tree_view1 [["act_window",74],["sequence",10],["view",151]] ir.action.act_window.view party f [["act_window",74],["sequence",10],["view",151]] \N \N +784 2024-04-13 20:39:01.136154 0 96 act_category_tree_view2 [["act_window",74],["sequence",20],["view",150]] ir.action.act_window.view party f [["act_window",74],["sequence",20],["view",150]] \N \N +785 2024-04-13 20:39:01.136154 0 64 menu_category_tree [["action","ir.action.act_window,74"],["icon","tryton-tree"],["name","Categories"],["parent",61],["sequence",50]] ir.ui.menu party f [["action","ir.action.act_window,74"],["icon","tryton-tree"],["name","Categories"],["parent",61],["sequence",50]] \N \N +786 2024-04-13 20:39:01.136154 0 75 act_category_list [["name","Categories"],["res_model","party.category"]] ir.action.act_window party f [["name","Categories"],["res_model","party.category"]] \N \N +787 2024-04-13 20:39:01.136154 0 97 act_category_list_view1 [["act_window",75],["sequence",10],["view",152]] ir.action.act_window.view party f [["act_window",75],["sequence",10],["view",152]] \N \N +788 2024-04-13 20:39:01.136154 0 98 act_category_list_view2 [["act_window",75],["sequence",20],["view",150]] ir.action.act_window.view party f [["act_window",75],["sequence",20],["view",150]] \N \N +789 2024-04-13 20:39:01.136154 0 65 menu_category_list [["action","ir.action.act_window,75"],["icon","tryton-list"],["name","Categories"],["parent",64],["sequence",10]] ir.ui.menu party f [["action","ir.action.act_window,75"],["icon","tryton-list"],["name","Categories"],["parent",64],["sequence",10]] \N \N +790 2024-04-13 20:39:01.136154 0 62 access_party_category [["model",103],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access party f [["model",103],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +923 2024-04-13 20:39:02.298155 0 12 company_icon [["name","tryton-company"],["path","icons/tryton-company.svg"]] ir.ui.icon company f [["name","tryton-company"],["path","icons/tryton-company.svg"]] \N \N +791 2024-04-13 20:39:01.136154 0 63 access_party_category_admin [["group",3],["model",103],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access party f [["group",3],["model",103],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +792 2024-04-13 20:39:01.136154 0 153 address_view_tree [["model","party.address"],["name","address_tree"],["priority",10],["type","tree"]] ir.ui.view party f [["model","party.address"],["name","address_tree"],["priority",10],["type","tree"]] \N \N +793 2024-04-13 20:39:01.136154 0 154 address_view_tree_sequence [["model","party.address"],["name","address_tree_sequence"],["priority",20],["type","tree"]] ir.ui.view party f [["model","party.address"],["name","address_tree_sequence"],["priority",20],["type","tree"]] \N \N +794 2024-04-13 20:39:01.136154 0 155 address_view_form [["model","party.address"],["name","address_form"],["type","form"]] ir.ui.view party f [["model","party.address"],["name","address_form"],["type","form"]] \N \N +795 2024-04-13 20:39:01.136154 0 156 address_view_form_simple [["model","party.address"],["name","address_form_simple"],["type","form"]] ir.ui.view party f [["model","party.address"],["name","address_form_simple"],["type","form"]] \N \N +796 2024-04-13 20:39:01.136154 0 76 act_address_form [["name","Addresses"],["res_model","party.address"]] ir.action.act_window party f [["name","Addresses"],["res_model","party.address"]] \N \N +797 2024-04-13 20:39:01.136154 0 99 act_address_form_view1 [["act_window",76],["sequence",10],["view",153]] ir.action.act_window.view party f [["act_window",76],["sequence",10],["view",153]] \N \N +798 2024-04-13 20:39:01.136154 0 100 act_address_form_view2 [["act_window",76],["sequence",20],["view",155]] ir.action.act_window.view party f [["act_window",76],["sequence",20],["view",155]] \N \N +799 2024-04-13 20:39:01.136154 0 66 menu_address_form [["action","ir.action.act_window,76"],["icon","tryton-list"],["name","Addresses"],["parent",61],["sequence",20]] ir.ui.menu party f [["action","ir.action.act_window,76"],["icon","tryton-list"],["name","Addresses"],["parent",61],["sequence",20]] \N \N +800 2024-04-13 20:39:01.136154 0 157 address_format_view_list [["model","party.address.format"],["name","address_format_list"],["type","tree"]] ir.ui.view party f [["model","party.address.format"],["name","address_format_list"],["type","tree"]] \N \N +801 2024-04-13 20:39:01.136154 0 158 address_format_view_form [["model","party.address.format"],["name","address_format_form"],["type","form"]] ir.ui.view party f [["model","party.address.format"],["name","address_format_form"],["type","form"]] \N \N +802 2024-04-13 20:39:01.136154 0 77 act_address_format_form [["name","Address Formats"],["res_model","party.address.format"]] ir.action.act_window party f [["name","Address Formats"],["res_model","party.address.format"]] \N \N +803 2024-04-13 20:39:01.136154 0 101 act_address_format_form_view1 [["act_window",77],["sequence",10],["view",157]] ir.action.act_window.view party f [["act_window",77],["sequence",10],["view",157]] \N \N +804 2024-04-13 20:39:01.136154 0 102 act_address_format_form_view2 [["act_window",77],["sequence",20],["view",158]] ir.action.act_window.view party f [["act_window",77],["sequence",20],["view",158]] \N \N +805 2024-04-13 20:39:01.136154 0 67 menu_address_format_form [["action","ir.action.act_window,77"],["icon","tryton-list"],["name","Address Formats"],["parent",62],["sequence",50]] ir.ui.menu party f [["action","ir.action.act_window,77"],["icon","tryton-list"],["name","Address Formats"],["parent",62],["sequence",50]] \N \N +806 2024-04-13 20:39:01.136154 0 64 access_address_format [["model",112],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access party f [["model",112],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +807 2024-04-13 20:39:01.136154 0 65 access_address_format_admin [["group",3],["model",112],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access party f [["group",3],["model",112],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +808 2024-04-13 20:39:01.136154 0 159 address_subdivision_type_view_list [["model","party.address.subdivision_type"],["name","address_subdivision_type_list"],["type","tree"]] ir.ui.view party f [["model","party.address.subdivision_type"],["name","address_subdivision_type_list"],["type","tree"]] \N \N +809 2024-04-13 20:39:01.136154 0 160 address_subdivision_type_view_form [["model","party.address.subdivision_type"],["name","address_subdivision_type_form"],["type","form"]] ir.ui.view party f [["model","party.address.subdivision_type"],["name","address_subdivision_type_form"],["type","form"]] \N \N +810 2024-04-13 20:39:01.136154 0 78 act_address_subdivision_type_form [["name","Address Subdivision Types"],["res_model","party.address.subdivision_type"]] ir.action.act_window party f [["name","Address Subdivision Types"],["res_model","party.address.subdivision_type"]] \N \N +811 2024-04-13 20:39:01.136154 0 103 act_address_subdivision_type_form_view1 [["act_window",78],["sequence",10],["view",159]] ir.action.act_window.view party f [["act_window",78],["sequence",10],["view",159]] \N \N +812 2024-04-13 20:39:01.136154 0 104 act_address_subdivision_type_form_view2 [["act_window",78],["sequence",20],["view",160]] ir.action.act_window.view party f [["act_window",78],["sequence",20],["view",160]] \N \N +813 2024-04-13 20:39:01.136154 0 68 menu_address_subdivision_type_form [["action","ir.action.act_window,78"],["icon","tryton-list"],["name","Address Subdivision Types"],["parent",62],["sequence",50]] ir.ui.menu party f [["action","ir.action.act_window,78"],["icon","tryton-list"],["name","Address Subdivision Types"],["parent",62],["sequence",50]] \N \N +814 2024-04-13 20:39:01.136154 0 66 access_address_subdivision_type [["model",113],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access party f [["model",113],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +815 2024-04-13 20:39:01.136154 0 67 access_address_subdivision_type_admin [["group",3],["model",113],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access party f [["group",3],["model",113],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +816 2024-04-13 20:39:01.136154 0 1 address_format_ar [["country_code","AR"],["format_","${party_name}\\n${name}\\n${street}\\n${subdivision}\\n${POSTAL_CODE}, ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","AR"],["format_","${party_name}\\n${name}\\n${street}\\n${subdivision}\\n${POSTAL_CODE}, ${city}\\n${COUNTRY}"]] \N \N +817 2024-04-13 20:39:01.136154 0 2 address_format_au [["country_code","AU"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${subdivision}\\n${CITY} ${SUBDIVISION} ${POSTAL_CODE}\\n${COUNTRY}"]] party.address.format party t [["country_code","AU"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${subdivision}\\n${CITY} ${SUBDIVISION} ${POSTAL_CODE}\\n${COUNTRY}"]] \N \N +818 2024-04-13 20:39:01.136154 0 3 address_format_at [["country_code","AT"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","AT"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +819 2024-04-13 20:39:01.136154 0 4 address_format_bd [["country_code","BD"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${city}-${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","BD"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${city}-${postal_code}\\n${COUNTRY}"]] \N \N +820 2024-04-13 20:39:01.136154 0 5 address_format_by [["country_code","BY"],["format_","${party_name}\\n${name}\\n${street}\\n${postal_code}, ${city}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","BY"],["format_","${party_name}\\n${name}\\n${street}\\n${postal_code}, ${city}\\n${subdivision}\\n${COUNTRY}"]] \N \N +821 2024-04-13 20:39:01.136154 0 6 address_format_be [["country_code","BE"],["format_","${attn}\\n${party_name}\\n${name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","BE"],["format_","${attn}\\n${party_name}\\n${name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +822 2024-04-13 20:39:01.136154 0 7 address_format_br [["country_code","BR"],["format_","${party_name}\\n${street}\\n${name}\\n${city} - ${subdivision_code}\\n${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","BR"],["format_","${party_name}\\n${street}\\n${name}\\n${city} - ${subdivision_code}\\n${postal_code}\\n${COUNTRY}"]] \N \N +823 2024-04-13 20:39:01.136154 0 8 address_format_bg [["country_code","BG"],["format_","${party_name}\\n${street}\\n${name}\\n${postal_code} ${city}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","BG"],["format_","${party_name}\\n${street}\\n${name}\\n${postal_code} ${city}\\n${subdivision}\\n${COUNTRY}"]] \N \N +824 2024-04-13 20:39:01.136154 0 9 address_format_ca_fr [["country_code","CA"],["format_","${attn}\\n${party_name}\\n${name}\\n${street}\\n${city} (${subdivision}) ${postal_code}\\n${COUNTRY}"],["language_code","fr"]] party.address.format party t [["country_code","CA"],["format_","${attn}\\n${party_name}\\n${name}\\n${street}\\n${city} (${subdivision}) ${postal_code}\\n${COUNTRY}"],["language_code","fr"]] \N \N +825 2024-04-13 20:39:01.136154 0 10 address_format_ca [["country_code","CA"],["format_","${ATTN}\\n${PARTY_NAME}\\n${NAME}\\n${STREET}\\n${CITY} ${SUBDIVISION_CODE} ${POSTAL_CODE}\\n${COUNTRY}"]] party.address.format party t [["country_code","CA"],["format_","${ATTN}\\n${PARTY_NAME}\\n${NAME}\\n${STREET}\\n${CITY} ${SUBDIVISION_CODE} ${POSTAL_CODE}\\n${COUNTRY}"]] \N \N +826 2024-04-13 20:39:01.136154 0 11 address_format_cl [["country_code","CL"],["format_","${party_name}\\n${street}\\n${name}\\n${postal_code}\\n${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","CL"],["format_","${party_name}\\n${street}\\n${name}\\n${postal_code}\\n${city}\\n${COUNTRY}"]] \N \N +827 2024-04-13 20:39:01.136154 0 12 address_format_cn_zh_CN [["country_code","CN"],["format_","${COUNTRY} ${POSTAL_CODE}\\n${subdivision}${city}${street}${name}\\n${party_name}"],["language_code","zh"]] party.address.format party t [["country_code","CN"],["format_","${COUNTRY} ${POSTAL_CODE}\\n${subdivision}${city}${street}${name}\\n${party_name}"],["language_code","zh"]] \N \N +828 2024-04-13 20:39:01.136154 0 13 address_format_cn [["country_code","CN"],["format_","${COUNTRY} ${POSTAL_CODE}\\n${subdivision}, ${city}, ${street}, ${name}\\n${party_name}"]] party.address.format party t [["country_code","CN"],["format_","${COUNTRY} ${POSTAL_CODE}\\n${subdivision}, ${city}, ${street}, ${name}\\n${party_name}"]] \N \N +829 2024-04-13 20:39:01.136154 0 14 address_format_hr [["country_code","HR"],["format_","${party_name}\\n${street}\\n${COUNTRY_CODE}-${POSTAL_CODE} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","HR"],["format_","${party_name}\\n${street}\\n${COUNTRY_CODE}-${POSTAL_CODE} ${city}\\n${COUNTRY}"]] \N \N +830 2024-04-13 20:39:01.136154 0 15 address_format_cz [["country_code","CZ"],["format_","${party_name}\\n${attn}\\n${street}\\n${COUNTRY_CODE}-${POSTAL_CODE} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","CZ"],["format_","${party_name}\\n${attn}\\n${street}\\n${COUNTRY_CODE}-${POSTAL_CODE} ${city}\\n${COUNTRY}"]] \N \N +831 2024-04-13 20:39:01.136154 0 16 address_format_dk [["country_code","DK"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","DK"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +832 2024-04-13 20:39:01.136154 0 17 address_format_ee [["country_code","EE"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","EE"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +833 2024-04-13 20:39:01.136154 0 18 address_format_fi [["country_code","FI"],["format_","${attn}\\n${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","FI"],["format_","${attn}\\n${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +834 2024-04-13 20:39:01.136154 0 19 address_format_fr [["country_code","FR"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${POSTAL_CODE} ${CITY}\\n${COUNTRY}"]] party.address.format party t [["country_code","FR"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${POSTAL_CODE} ${CITY}\\n${COUNTRY}"]] \N \N +835 2024-04-13 20:39:01.136154 0 20 address_format_de [["country_code","DE"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","DE"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +836 2024-04-13 20:39:01.136154 0 21 address_format_gr [["country_code","GR"],["format_","${party_name}\\n${street}\\n${COUNTRY_CODE}-${POSTAL_CODE} ${CITY}\\n${COUNTRY}"]] party.address.format party t [["country_code","GR"],["format_","${party_name}\\n${street}\\n${COUNTRY_CODE}-${POSTAL_CODE} ${CITY}\\n${COUNTRY}"]] \N \N +837 2024-04-13 20:39:01.136154 0 22 address_format_hk [["country_code","HK"],["format_","${party_name}\\n${name}\\n${street}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","HK"],["format_","${party_name}\\n${name}\\n${street}\\n${subdivision}\\n${COUNTRY}"]] \N \N +838 2024-04-13 20:39:01.136154 0 23 address_format_hu [["country_code","HU"],["format_","${party_name}\\n${city}\\n${street}\\n${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","HU"],["format_","${party_name}\\n${city}\\n${street}\\n${postal_code}\\n${COUNTRY}"]] \N \N +839 2024-04-13 20:39:01.136154 0 24 address_format_is [["country_code","IS"],["format_","${party_name}\\n${street}\\n${name}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","IS"],["format_","${party_name}\\n${street}\\n${name}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +840 2024-04-13 20:39:01.136154 0 25 address_format_in [["country_code","IN"],["format_","${party_name}\\n${name}\\n${street}\\n${CITY} ${postal_code}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","IN"],["format_","${party_name}\\n${name}\\n${street}\\n${CITY} ${postal_code}\\n${subdivision}\\n${COUNTRY}"]] \N \N +841 2024-04-13 20:39:01.136154 0 26 address_format_id [["country_code","ID"],["format_","${party_name}\\n${name}\\n${street}\\n${city} ${postal_code}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","ID"],["format_","${party_name}\\n${name}\\n${street}\\n${city} ${postal_code}\\n${subdivision}\\n${COUNTRY}"]] \N \N +842 2024-04-13 20:39:01.136154 0 27 address_format_ir [["country_code","IR"],["format_","${party_name}\\n${name}\\n${city}\\n${street}\\n${subdivision}\\n${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","IR"],["format_","${party_name}\\n${name}\\n${city}\\n${street}\\n${subdivision}\\n${postal_code}\\n${COUNTRY}"]] \N \N +843 2024-04-13 20:39:01.136154 0 28 address_format_iq [["country_code","IQ"],["format_","${party_name}\\n${street}\\n${name}\\n${subdivision}\\n${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","IQ"],["format_","${party_name}\\n${street}\\n${name}\\n${subdivision}\\n${postal_code}\\n${COUNTRY}"]] \N \N +844 2024-04-13 20:39:01.136154 0 29 address_format_ie [["country_code","IE"],["format_","${party_name}\\n${street}\\n${city} ${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","IE"],["format_","${party_name}\\n${street}\\n${city} ${postal_code}\\n${COUNTRY}"]] \N \N +845 2024-04-13 20:39:01.136154 0 30 address_format_il [["country_code","IL"],["format_","${party_name}\\n${street}\\n${city} ${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","IL"],["format_","${party_name}\\n${street}\\n${city} ${postal_code}\\n${COUNTRY}"]] \N \N +846 2024-04-13 20:39:01.136154 0 31 address_format_it [["country_code","IT"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${postal_code} ${city} ${SUBDIVISION_CODE}\\n${COUNTRY}"]] party.address.format party t [["country_code","IT"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${postal_code} ${city} ${SUBDIVISION_CODE}\\n${COUNTRY}"]] \N \N +847 2024-04-13 20:39:01.136154 0 32 address_format_jp_jp [["country_code","JP"],["format_","${COUNTRY}\\n${postal_code}\\n${subdivision}${city}${street}\\n${party_name}"],["language_code","jp"]] party.address.format party t [["country_code","JP"],["format_","${COUNTRY}\\n${postal_code}\\n${subdivision}${city}${street}\\n${party_name}"],["language_code","jp"]] \N \N +848 2024-04-13 20:39:01.136154 0 33 address_format_jp [["country_code","JP"],["format_","${party_name}\\n${street}\\n${city}, ${SUBDIVISION} ${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","JP"],["format_","${party_name}\\n${street}\\n${city}, ${SUBDIVISION} ${postal_code}\\n${COUNTRY}"]] \N \N +849 2024-04-13 20:39:01.136154 0 34 address_format_kr_ko [["country_code","KR"],["format_","${COUNTRY}\\n${street}\\n${party_name}\\n${postal_code}"],["language_code","ko"]] party.address.format party t [["country_code","KR"],["format_","${COUNTRY}\\n${street}\\n${party_name}\\n${postal_code}"],["language_code","ko"]] \N \N +850 2024-04-13 20:39:01.136154 0 35 address_format_kr [["country_code","KR"],["format_","${party_name}\\n${street}\\n${city}, ${subdivision} ${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","KR"],["format_","${party_name}\\n${street}\\n${city}, ${subdivision} ${postal_code}\\n${COUNTRY}"]] \N \N +851 2024-04-13 20:39:01.136154 0 36 address_format_lv [["country_code","LV"],["format_","${party_name}\\n${street}\\n${city}\\n${subdivision}\\n${COUNTRY_CODE}-${POSTAL_CODE}\\n${COUNTRY}"]] party.address.format party t [["country_code","LV"],["format_","${party_name}\\n${street}\\n${city}\\n${subdivision}\\n${COUNTRY_CODE}-${POSTAL_CODE}\\n${COUNTRY}"]] \N \N +852 2024-04-13 20:39:01.136154 0 37 address_format_mo_zh_CN [["country_code","MO"],["format_","${COUNTRY}\\n${city}\\n${street}\\n${party_name}"],["language_code","zh"]] party.address.format party t [["country_code","MO"],["format_","${COUNTRY}\\n${city}\\n${street}\\n${party_name}"],["language_code","zh"]] \N \N +853 2024-04-13 20:39:01.136154 0 38 address_format_mo [["country_code","MO"],["format_","${party_name}\\n${street}\\n${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","MO"],["format_","${party_name}\\n${street}\\n${city}\\n${COUNTRY}"]] \N \N +854 2024-04-13 20:39:01.136154 0 39 address_format_my [["country_code","MY"],["format_","${attn}\\n${party_name}\\n${name}\\n${street}\\n${postal_code} ${CITY}\\n${SUBDIVISION}\\n${COUNTRY}"]] party.address.format party t [["country_code","MY"],["format_","${attn}\\n${party_name}\\n${name}\\n${street}\\n${postal_code} ${CITY}\\n${SUBDIVISION}\\n${COUNTRY}"]] \N \N +855 2024-04-13 20:39:01.136154 0 40 address_format_mx [["country_code","MX"],["format_","${attn}\\n${party_name}\\n${street}\\n${name}\\n${postal_code}, ${city}, ${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","MX"],["format_","${attn}\\n${party_name}\\n${street}\\n${name}\\n${postal_code}, ${city}, ${subdivision}\\n${COUNTRY}"]] \N \N +856 2024-04-13 20:39:01.136154 0 41 address_format_nl [["country_code","NL"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${postal_code} ${CITY}\\n${COUNTRY}"]] party.address.format party t [["country_code","NL"],["format_","${party_name}\\n${attn}\\n${name}\\n${street}\\n${postal_code} ${CITY}\\n${COUNTRY}"]] \N \N +857 2024-04-13 20:39:01.136154 0 42 address_format_nz [["country_code","NZ"],["format_","${party_name}\\n${street}\\n${city} ${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","NZ"],["format_","${party_name}\\n${street}\\n${city} ${postal_code}\\n${COUNTRY}"]] \N \N +858 2024-04-13 20:39:01.136154 0 43 address_format_no [["country_code","NO"],["format_","${party_name}\\n${street}\\n${postal_code} ${CITY}\\n${COUNTRY}"]] party.address.format party t [["country_code","NO"],["format_","${party_name}\\n${street}\\n${postal_code} ${CITY}\\n${COUNTRY}"]] \N \N +859 2024-04-13 20:39:01.136154 0 44 address_format_om [["country_code","OM"],["format_","${party_name}\\n${street}\\n${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","OM"],["format_","${party_name}\\n${street}\\n${city}\\n${COUNTRY}"]] \N \N +860 2024-04-13 20:39:01.136154 0 45 address_format_pk [["country_code","PK"],["format_","${party_name}\\n${street}\\n${city}\\n${postal_code}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","PK"],["format_","${party_name}\\n${street}\\n${city}\\n${postal_code}\\n${subdivision}\\n${COUNTRY}"]] \N \N +861 2024-04-13 20:39:01.136154 0 46 address_format_pe [["country_code","PE"],["format_","${party_name}\\n${street}\\n${name}\\n${city}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","PE"],["format_","${party_name}\\n${street}\\n${name}\\n${city}\\n${subdivision}\\n${COUNTRY}"]] \N \N +862 2024-04-13 20:39:01.136154 0 47 address_format_ph [["country_code","PH"],["format_","${party_name}\\n${street}\\n${postal_code} ${CITY}\\n${COUNTRY}"]] party.address.format party t [["country_code","PH"],["format_","${party_name}\\n${street}\\n${postal_code} ${CITY}\\n${COUNTRY}"]] \N \N +863 2024-04-13 20:39:01.136154 0 48 address_format_pl [["country_code","PL"],["format_","${attn} ${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","PL"],["format_","${attn} ${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +864 2024-04-13 20:39:01.136154 0 49 address_format_pt [["country_code","PT"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","PT"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +865 2024-04-13 20:39:01.136154 0 50 address_format_qa [["country_code","QA"],["format_","${party_name}\\n${street}\\n${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","QA"],["format_","${party_name}\\n${street}\\n${city}\\n${COUNTRY}"]] \N \N +866 2024-04-13 20:39:01.136154 0 51 address_format_ro [["country_code","RO"],["format_","${attn} ${party_name}\\n${street}\\n${city}\\n${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","RO"],["format_","${attn} ${party_name}\\n${street}\\n${city}\\n${postal_code}\\n${COUNTRY}"]] \N \N +867 2024-04-13 20:39:01.136154 0 52 address_format_ru [["country_code","RU"],["format_","${party_name}\\n${street}\\n${city}\\n${subdivision}\\n${COUNTRY}\\n${postal_code}"]] party.address.format party t [["country_code","RU"],["format_","${party_name}\\n${street}\\n${city}\\n${subdivision}\\n${COUNTRY}\\n${postal_code}"]] \N \N +868 2024-04-13 20:39:01.136154 0 53 address_format_sa [["country_code","SA"],["format_","${party_name}\\n${street}\\n${city} ${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","SA"],["format_","${party_name}\\n${street}\\n${city} ${postal_code}\\n${COUNTRY}"]] \N \N +869 2024-04-13 20:39:01.136154 0 54 address_format_rs [["country_code","RS"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","RS"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +870 2024-04-13 20:39:01.136154 0 55 address_format_sg [["country_code","SG"],["format_","${party_name}\\n${street}\\n${name}\\n${CITY} ${POSTAL_CODE}\\n${COUNTRY}"]] party.address.format party t [["country_code","SG"],["format_","${party_name}\\n${street}\\n${name}\\n${CITY} ${POSTAL_CODE}\\n${COUNTRY}"]] \N \N +871 2024-04-13 20:39:01.136154 0 56 address_format_sk [["country_code","SK"],["format_","${attn}\\n${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","SK"],["format_","${attn}\\n${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +872 2024-04-13 20:39:01.136154 0 57 address_format_sl [["country_code","SL"],["format_","${party_name}\\n${attn}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","SL"],["format_","${party_name}\\n${attn}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +873 2024-04-13 20:39:01.136154 0 58 address_format_es [["country_code","ES"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","ES"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${subdivision}\\n${COUNTRY}"]] \N \N +874 2024-04-13 20:39:01.136154 0 59 address_format_lk [["country_code","LK"],["format_","${party_name}\\n${street}\\n${CITY}\\n${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","LK"],["format_","${party_name}\\n${street}\\n${CITY}\\n${postal_code}\\n${COUNTRY}"]] \N \N +875 2024-04-13 20:39:01.136154 0 60 address_format_se [["country_code","SE"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","SE"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +876 2024-04-13 20:39:01.136154 0 61 address_format_ch [["country_code","CH"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] party.address.format party t [["country_code","CH"],["format_","${party_name}\\n${street}\\n${postal_code} ${city}\\n${COUNTRY}"]] \N \N +877 2024-04-13 20:39:01.136154 0 62 address_format_tw_zh_CN [["country_code","TW"],["format_","${COUNTRY}\\n${postal_code}\\n${street}\\n${party_name}"],["language_code","zh"]] party.address.format party t [["country_code","TW"],["format_","${COUNTRY}\\n${postal_code}\\n${street}\\n${party_name}"],["language_code","zh"]] \N \N +878 2024-04-13 20:39:01.136154 0 63 address_format_tw [["country_code","TW"],["format_","${party_name}\\n${street}\\n${city}, ${subdivision} ${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","TW"],["format_","${party_name}\\n${street}\\n${city}, ${subdivision} ${postal_code}\\n${COUNTRY}"]] \N \N +879 2024-04-13 20:39:01.136154 0 64 address_format_th [["country_code","TH"],["format_","${party_name}\\n${street}\\n${name}\\n${subdivision}\\n${COUNTRY}\\n${postal_code}"]] party.address.format party t [["country_code","TH"],["format_","${party_name}\\n${street}\\n${name}\\n${subdivision}\\n${COUNTRY}\\n${postal_code}"]] \N \N +880 2024-04-13 20:39:01.136154 0 65 address_format_tr [["country_code","TR"],["format_","${party_name}\\n${attn}\\n${street}\\n${name}\\n${postal_code} ${city} ${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","TR"],["format_","${party_name}\\n${attn}\\n${street}\\n${name}\\n${postal_code} ${city} ${subdivision}\\n${COUNTRY}"]] \N \N +881 2024-04-13 20:39:01.136154 0 66 address_format_ua [["country_code","UA"],["format_","${party_name}\\n${street}\\n${city}\\n${subdivision}\\n${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","UA"],["format_","${party_name}\\n${street}\\n${city}\\n${subdivision}\\n${postal_code}\\n${COUNTRY}"]] \N \N +882 2024-04-13 20:39:01.136154 0 67 address_format_gb [["country_code","GB"],["format_","${party_name}\\n${street}\\n${CITY}\\n${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","GB"],["format_","${party_name}\\n${street}\\n${CITY}\\n${postal_code}\\n${COUNTRY}"]] \N \N +883 2024-04-13 20:39:01.136154 0 68 address_format_us [["country_code","US"],["format_","${attn}\\n${party_name}\\n${street}\\n${city}, ${subdivision_code} ${postal_code}\\n${COUNTRY}"]] party.address.format party t [["country_code","US"],["format_","${attn}\\n${party_name}\\n${street}\\n${city}, ${subdivision_code} ${postal_code}\\n${COUNTRY}"]] \N \N +884 2024-04-13 20:39:01.136154 0 69 address_format_vn [["country_code","VN"],["format_","${party_name}\\n${street}\\n${city}\\n${subdivision}\\n${COUNTRY}"]] party.address.format party t [["country_code","VN"],["format_","${party_name}\\n${street}\\n${city}\\n${subdivision}\\n${COUNTRY}"]] \N \N +885 2024-04-13 20:39:01.136154 0 1 address_subdivision_type_id [["country_code","ID"],["types",["autonomous province","province","special district","special region"]]] party.address.subdivision_type party t [["country_code","ID"],["types",["autonomous province","province","special district","special region"]]] \N \N +886 2024-04-13 20:39:01.136154 0 2 address_subdivision_it [["country_code","IT"],["types",["province"]]] party.address.subdivision_type party t [["country_code","IT"],["types",["province"]]] \N \N +887 2024-04-13 20:39:01.136154 0 3 address_subdivision_es [["country_code","ES"],["types",["autonomous city","province"]]] party.address.subdivision_type party t [["country_code","ES"],["types",["autonomous city","province"]]] \N \N +888 2024-04-13 20:39:01.136154 0 161 contact_mechanism_view_tree [["model","party.contact_mechanism"],["name","contact_mechanism_tree"],["priority",10],["type","tree"]] ir.ui.view party f [["model","party.contact_mechanism"],["name","contact_mechanism_tree"],["priority",10],["type","tree"]] \N \N +889 2024-04-13 20:39:01.136154 0 162 contact_mechanism_view_tree_sequence [["model","party.contact_mechanism"],["name","contact_mechanism_tree_sequence"],["priority",20],["type","tree"]] ir.ui.view party f [["model","party.contact_mechanism"],["name","contact_mechanism_tree_sequence"],["priority",20],["type","tree"]] \N \N +890 2024-04-13 20:39:01.136154 0 163 contact_mechanism_view_form [["model","party.contact_mechanism"],["name","contact_mechanism_form"],["type","form"]] ir.ui.view party f [["model","party.contact_mechanism"],["name","contact_mechanism_form"],["type","form"]] \N \N +891 2024-04-13 20:39:01.136154 0 79 act_contact_mechanism_form [["name","Contact Mechanisms"],["res_model","party.contact_mechanism"]] ir.action.act_window party f [["name","Contact Mechanisms"],["res_model","party.contact_mechanism"]] \N \N +892 2024-04-13 20:39:01.136154 0 105 act_contact_mechanism_form_view1 [["act_window",79],["sequence",10],["view",161]] ir.action.act_window.view party f [["act_window",79],["sequence",10],["view",161]] \N \N +893 2024-04-13 20:39:01.136154 0 106 act_contact_mechanism_form_view2 [["act_window",79],["sequence",20],["view",163]] ir.action.act_window.view party f [["act_window",79],["sequence",20],["view",163]] \N \N +894 2024-04-13 20:39:01.136154 0 69 menu_contact_mechanism_form [["action","ir.action.act_window,79"],["icon","tryton-list"],["name","Contact Mechanisms"],["parent",61],["sequence",20]] ir.ui.menu party f [["action","ir.action.act_window,79"],["icon","tryton-list"],["name","Contact Mechanisms"],["parent",61],["sequence",20]] \N \N +895 2024-04-13 20:39:01.136154 0 164 party_configuration_view_form [["model","party.configuration"],["name","configuration_form"],["type","form"]] ir.ui.view party f [["model","party.configuration"],["name","configuration_form"],["type","form"]] \N \N +896 2024-04-13 20:39:01.136154 0 80 act_party_configuration_form [["name","Configuration"],["res_model","party.configuration"]] ir.action.act_window party f [["name","Configuration"],["res_model","party.configuration"]] \N \N +897 2024-04-13 20:39:01.136154 0 107 act_party_configuration_view1 [["act_window",80],["sequence",1],["view",164]] ir.action.act_window.view party f [["act_window",80],["sequence",1],["view",164]] \N \N +898 2024-04-13 20:39:01.136154 0 70 menu_party_configuration [["action","ir.action.act_window,80"],["icon","tryton-list"],["name","Configuration"],["parent",62],["sequence",10]] ir.ui.menu party f [["action","ir.action.act_window,80"],["icon","tryton-list"],["name","Configuration"],["parent",62],["sequence",10]] \N \N +899 2024-04-13 20:39:01.136154 0 68 access_party_configuration [["model",116],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access party f [["model",116],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +900 2024-04-13 20:39:01.136154 0 69 access_party_configuration_party_admin [["group",3],["model",116],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access party f [["group",3],["model",116],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +901 2024-04-13 20:39:01.136154 0 1 configuration_party_sequence [["party_sequence",1]] party.configuration.party_sequence party t [["party_sequence",1]] \N \N +902 2024-04-13 20:39:01.136154 0 165 email_template_view_form [["inherit",105],["model","ir.email.template"],["name","email_template_form"]] ir.ui.view party f [["inherit",105],["model","ir.email.template"],["name","email_template_form"]] \N \N +903 2024-04-13 20:39:01.136154 0 133 msg_party_code_unique [["text","The code on party must be unique."]] ir.message party f [["text","The code on party must be unique."]] \N \N +904 2024-04-13 20:39:01.136154 0 134 msg_party_set_contact_mechanism [["text","To change the \\"%(field)s\\" for party \\"%(party)s\\", you must edit their contact mechanisms."]] ir.message party f [["text","To change the \\"%(field)s\\" for party \\"%(party)s\\", you must edit their contact mechanisms."]] \N \N +905 2024-04-13 20:39:01.136154 0 135 msg_contact_mechanism_change_party [["text","You cannot change the party of contact mechanism \\"%(contact)s\\"."]] ir.message party f [["text","You cannot change the party of contact mechanism \\"%(contact)s\\"."]] \N \N +906 2024-04-13 20:39:01.136154 0 136 msg_invalid_phone_number [["text","The phone number \\"%(phone)s\\" for party \\"%(party)s\\" is not valid."]] ir.message party f [["text","The phone number \\"%(phone)s\\" for party \\"%(party)s\\" is not valid."]] \N \N +907 2024-04-13 20:39:01.136154 0 137 msg_email_invalid [["text","The email address \\"%(email)s\\" for party \\"%(party)s\\" is not valid."]] ir.message party f [["text","The email address \\"%(email)s\\" for party \\"%(party)s\\" is not valid."]] \N \N +908 2024-04-13 20:39:01.136154 0 138 msg_invalid_code [["text","The %(type)s \\"%(code)s\\" for party \\"%(party)s\\" is not valid."]] ir.message party f [["text","The %(type)s \\"%(code)s\\" for party \\"%(party)s\\" is not valid."]] \N \N +909 2024-04-13 20:39:01.136154 0 139 msg_party_identifier_duplicate [["text","The party \\"%(party)s\\" has the same %(type)s \\"%(code)s\\"."]] ir.message party f [["text","The party \\"%(party)s\\" has the same %(type)s \\"%(code)s\\"."]] \N \N +910 2024-04-13 20:39:01.136154 0 140 msg_vies_unavailable [["text","The VIES service is unavailable, try again later."]] ir.message party f [["text","The VIES service is unavailable, try again later."]] \N \N +911 2024-04-13 20:39:01.136154 0 141 msg_different_name [["text","Parties have different names: \\"%(source_name)s\\" vs \\"%(destination_name)s\\"."]] ir.message party f [["text","Parties have different names: \\"%(source_name)s\\" vs \\"%(destination_name)s\\"."]] \N \N +912 2024-04-13 20:39:01.136154 0 142 msg_different_tax_identifier [["text","Parties have different tax identifiers: \\"%(source_code)s\\" vs \\"%(destination_code)s\\"."]] ir.message party f [["text","Parties have different tax identifiers: \\"%(source_code)s\\" vs \\"%(destination_code)s\\"."]] \N \N +913 2024-04-13 20:39:01.136154 0 143 msg_erase_active_party [["text","Party \\"%(party)s\\" cannot be erased because they are still active."]] ir.message party f [["text","Party \\"%(party)s\\" cannot be erased because they are still active."]] \N \N +914 2024-04-13 20:39:01.136154 0 144 msg_address_change_party [["text","You cannot change the party of address \\"%(address)s\\"."]] ir.message party f [["text","You cannot change the party of address \\"%(address)s\\"."]] \N \N +915 2024-04-13 20:39:01.136154 0 145 msg_invalid_format [["text","Invalid format \\"%(format)s\\" with exception \\"%(exception)s\\"."]] ir.message party f [["text","Invalid format \\"%(format)s\\" with exception \\"%(exception)s\\"."]] \N \N +916 2024-04-13 20:39:01.136154 0 146 msg_category_name_unique [["text","The name of party category must be unique by parent."]] ir.message party f [["text","The name of party category must be unique by parent."]] \N \N +917 2024-04-13 20:39:01.136154 0 147 msg_address_subdivision_country_code_unique [["text","The country code on subdivision type must be unique."]] ir.message party f [["text","The country code on subdivision type must be unique."]] \N \N +918 2024-04-13 20:39:01.136154 0 148 msg_identifier_type_remove [["text","To remove the identifier type \\"%(type)s\\" from the configuration, you must change it on \\"%(identifier)s\\"."]] ir.message party f [["text","To remove the identifier type \\"%(type)s\\" from the configuration, you must change it on \\"%(identifier)s\\"."]] \N \N +919 2024-04-13 20:39:02.298155 0 4 group_company_admin [["name","Company Administration"]] res.group company f [["name","Company Administration"]] \N \N +920 2024-04-13 20:39:02.298155 0 4 user_admin_company_admin [["group",4],["user",1]] res.user-res.group company f [["group",4],["user",1]] \N \N +924 2024-04-13 20:39:02.298155 0 71 menu_company [["icon","tryton-company"],["name","Companies"],["sequence",20]] ir.ui.menu company f [["icon","tryton-company"],["name","Companies"],["sequence",20]] \N \N +925 2024-04-13 20:39:02.298155 0 5 menu_currency_group_company_admin [["group",4],["menu",71]] ir.ui.menu-res.group company f [["group",4],["menu",71]] \N \N +926 2024-04-13 20:39:02.298155 0 6 menu_currency_group_employee_admin [["group",5],["menu",71]] ir.ui.menu-res.group company f [["group",5],["menu",71]] \N \N +927 2024-04-13 20:39:02.298155 0 166 company_view_form [["inherit",null],["model","company.company"],["name","company_form"],["type","form"]] ir.ui.view company f [["inherit",null],["model","company.company"],["name","company_form"],["type","form"]] \N \N +928 2024-04-13 20:39:02.298155 0 167 company_view_list [["model","company.company"],["name","company_list"],["priority",10],["type","tree"]] ir.ui.view company f [["model","company.company"],["name","company_list"],["priority",10],["type","tree"]] \N \N +929 2024-04-13 20:39:02.298155 0 81 act_company_list [["name","Companies"],["res_model","company.company"]] ir.action.act_window company f [["name","Companies"],["res_model","company.company"]] \N \N +930 2024-04-13 20:39:02.298155 0 108 act_company_list_view1 [["act_window",81],["sequence",10],["view",167]] ir.action.act_window.view company f [["act_window",81],["sequence",10],["view",167]] \N \N +931 2024-04-13 20:39:02.298155 0 109 act_company_list_view2 [["act_window",81],["sequence",20],["view",166]] ir.action.act_window.view company f [["act_window",81],["sequence",20],["view",166]] \N \N +932 2024-04-13 20:39:02.298155 0 72 menu_company_list [["action","ir.action.act_window,81"],["icon","tryton-list"],["name","Companies"],["parent",71],["sequence",10]] ir.ui.menu company f [["action","ir.action.act_window,81"],["icon","tryton-list"],["name","Companies"],["parent",71],["sequence",10]] \N \N +933 2024-04-13 20:39:02.298155 0 70 access_company [["model",119],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access company f [["model",119],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +934 2024-04-13 20:39:02.298155 0 71 access_company_admin [["group",4],["model",119],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access company f [["group",4],["model",119],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +935 2024-04-13 20:39:02.298155 0 168 user_view_form [["inherit",111],["model","res.user"],["name","user_form"]] ir.ui.view company f [["inherit",111],["model","res.user"],["name","user_form"]] \N \N +936 2024-04-13 20:39:02.298155 0 169 user_view_form_preferences [["inherit",112],["model","res.user"],["name","user_form_preferences"]] ir.ui.view company f [["inherit",112],["model","res.user"],["name","user_form_preferences"]] \N \N +937 2024-04-13 20:39:02.298155 0 170 company_config_start_view_form [["model","company.company.config.start"],["name","company_config_start_form"],["type","form"]] ir.ui.view company f [["model","company.company.config.start"],["name","company_config_start_form"],["type","form"]] \N \N +938 2024-04-13 20:39:02.298155 0 82 act_company_config [["name","Configure Company"],["window",true],["wiz_name","company.company.config"]] ir.action.wizard company f [["name","Configure Company"],["window",true],["wiz_name","company.company.config"]] \N \N +939 2024-04-13 20:39:02.298155 0 4 config_wizard_item_company [["action",82]] ir.module.config_wizard.item company f [["action",82]] \N \N +940 2024-04-13 20:39:02.298155 0 171 employee_view_form [["inherit",null],["model","company.employee"],["name","employee_form"],["priority",10],["type","form"]] ir.ui.view company f [["inherit",null],["model","company.employee"],["name","employee_form"],["priority",10],["type","form"]] \N \N +941 2024-04-13 20:39:02.298155 0 172 employee_view_tree [["model","company.employee"],["name","employee_tree"],["type","tree"]] ir.ui.view company f [["model","company.employee"],["name","employee_tree"],["type","tree"]] \N \N +942 2024-04-13 20:39:02.298155 0 83 act_employee_form [["name","Employees"],["res_model","company.employee"]] ir.action.act_window company f [["name","Employees"],["res_model","company.employee"]] \N \N +943 2024-04-13 20:39:02.298155 0 110 act_employee_form_view1 [["act_window",83],["sequence",10],["view",172]] ir.action.act_window.view company f [["act_window",83],["sequence",10],["view",172]] \N \N +944 2024-04-13 20:39:02.298155 0 111 act_employee_form_view2 [["act_window",83],["sequence",20],["view",171]] ir.action.act_window.view company f [["act_window",83],["sequence",20],["view",171]] \N \N +945 2024-04-13 20:39:02.298155 0 73 menu_employee_form [["action","ir.action.act_window,83"],["icon","tryton-list"],["name","Employees"],["parent",71],["sequence",20]] ir.ui.menu company f [["action","ir.action.act_window,83"],["icon","tryton-list"],["name","Employees"],["parent",71],["sequence",20]] \N \N +946 2024-04-13 20:39:02.298155 0 84 act_employee_subordinates [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"supervisor\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"supervisor\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Supervised by"],["res_model","company.employee"]] ir.action.act_window company f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"supervisor\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"supervisor\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Supervised by"],["res_model","company.employee"]] \N \N +947 2024-04-13 20:39:02.298155 0 112 act_employee_subordinates_view1 [["act_window",84],["sequence",10],["view",172]] ir.action.act_window.view company f [["act_window",84],["sequence",10],["view",172]] \N \N +948 2024-04-13 20:39:02.298155 0 113 act_employee_subordinates_view2 [["act_window",84],["sequence",20],["view",171]] ir.action.act_window.view company f [["act_window",84],["sequence",20],["view",171]] \N \N +949 2024-04-13 20:39:02.298155 0 80 act_employee_subordinates_keyword1 [["action",84],["keyword","form_relate"],["model","company.employee,-1"]] ir.action.keyword company f [["action",84],["keyword","form_relate"],["model","company.employee,-1"]] \N \N +950 2024-04-13 20:39:02.298155 0 72 access_employee [["model",120],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access company f [["model",120],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +951 2024-04-13 20:39:02.298155 0 73 access_employee_admin [["group",5],["model",120],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access company f [["group",5],["model",120],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +952 2024-04-13 20:39:02.298155 0 85 report_letter [["model","party.party"],["name","Letter"],["report","company/letter.fodt"],["report_name","party.letter"]] ir.action.report company f [["model","party.party"],["name","Letter"],["report","company/letter.fodt"],["report_name","party.letter"]] \N \N +953 2024-04-13 20:39:02.298155 0 81 report_letter_party [["action",85],["keyword","form_print"],["model","party.party,-1"]] ir.action.keyword company f [["action",85],["keyword","form_print"],["model","party.party,-1"]] \N \N +954 2024-04-13 20:39:02.298155 0 173 sequence_view_form [["inherit",55],["model","ir.sequence"],["name","sequence_form"]] ir.ui.view company f [["inherit",55],["model","ir.sequence"],["name","sequence_form"]] \N \N +955 2024-04-13 20:39:02.298155 0 174 sequence_view_tree [["inherit",56],["model","ir.sequence"],["name","sequence_tree"]] ir.ui.view company f [["inherit",56],["model","ir.sequence"],["name","sequence_tree"]] \N \N +956 2024-04-13 20:39:02.298155 0 175 sequence_strict_view_form [["inherit",55],["model","ir.sequence.strict"],["name","sequence_form"]] ir.ui.view company f [["inherit",55],["model","ir.sequence.strict"],["name","sequence_form"]] \N \N +957 2024-04-13 20:39:02.298155 0 176 sequence_strict_view_tree [["inherit",56],["model","ir.sequence.strict"],["name","sequence_tree"]] ir.ui.view company f [["inherit",56],["model","ir.sequence.strict"],["name","sequence_tree"]] \N \N +958 2024-04-13 20:39:02.298155 0 8 rule_group_sequence_companies [["global_p",true],["model",11],["name","User in companies"]] ir.rule.group company f [["global_p",true],["model",11],["name","User in companies"]] \N \N +959 2024-04-13 20:39:02.298155 0 10 rule_sequence_companies1 [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",8]] ir.rule company f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",8]] \N \N +960 2024-04-13 20:39:02.298155 0 11 rule_sequence_comapnies2 [["domain","[[\\"company\\", \\"=\\", null]]"],["rule_group",8]] ir.rule company f [["domain","[[\\"company\\", \\"=\\", null]]"],["rule_group",8]] \N \N +961 2024-04-13 20:39:02.298155 0 9 rule_group_sequence_strict_companies [["global_p",true],["model",12],["name","User in companies"]] ir.rule.group company f [["global_p",true],["model",12],["name","User in companies"]] \N \N +962 2024-04-13 20:39:02.298155 0 12 rule_sequence_strict_companies1 [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",9]] ir.rule company f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",9]] \N \N +963 2024-04-13 20:39:02.298155 0 13 rule_sequence_strict_companies2 [["domain","[[\\"company\\", \\"=\\", null]]"],["rule_group",9]] ir.rule company f [["domain","[[\\"company\\", \\"=\\", null]]"],["rule_group",9]] \N \N +964 2024-04-13 20:39:02.298155 0 177 cron_view_form [["inherit",67],["model","ir.cron"],["name","cron_form"]] ir.ui.view company f [["inherit",67],["model","ir.cron"],["name","cron_form"]] \N \N +965 2024-04-13 20:39:03.023425 0 6 group_account [["name","Account"]] res.group account f [["name","Account"]] \N \N +966 2024-04-13 20:39:03.023425 0 7 group_account_party [["name","Accounting Party"],["parent",6]] res.group account f [["name","Accounting Party"],["parent",6]] \N \N +967 2024-04-13 20:39:03.023425 0 8 group_account_admin [["name","Account Administration"],["parent",6]] res.group account f [["name","Account Administration"],["parent",6]] \N \N +968 2024-04-13 20:39:03.023425 0 6 user_admin_group_account [["group",6],["user",1]] res.user-res.group account f [["group",6],["user",1]] \N \N +969 2024-04-13 20:39:03.023425 0 7 user_admin_group_account_party [["group",7],["user",1]] res.user-res.group account f [["group",7],["user",1]] \N \N +970 2024-04-13 20:39:03.023425 0 8 user_admin_group_account_admin [["group",8],["user",1]] res.user-res.group account f [["group",8],["user",1]] \N \N +971 2024-04-13 20:39:03.023425 0 13 account_icon [["name","tryton-account"],["path","icons/tryton-account.svg"]] ir.ui.icon account f [["name","tryton-account"],["path","icons/tryton-account.svg"]] \N \N +972 2024-04-13 20:39:03.023425 0 14 account_open_icon [["name","tryton-account-open"],["path","icons/tryton-account-open.svg"]] ir.ui.icon account f [["name","tryton-account-open"],["path","icons/tryton-account-open.svg"]] \N \N +973 2024-04-13 20:39:03.023425 0 15 account_close_icon [["name","tryton-account-close"],["path","icons/tryton-account-close.svg"]] ir.ui.icon account f [["name","tryton-account-close"],["path","icons/tryton-account-close.svg"]] \N \N +974 2024-04-13 20:39:03.023425 0 16 account_block_icon [["name","tryton-account-block"],["path","icons/tryton-account-block.svg"]] ir.ui.icon account f [["name","tryton-account-block"],["path","icons/tryton-account-block.svg"]] \N \N +975 2024-04-13 20:39:03.023425 0 74 menu_account [["icon","tryton-account"],["name","Financial"],["sequence",60]] ir.ui.menu account f [["icon","tryton-account"],["name","Financial"],["sequence",60]] \N \N +976 2024-04-13 20:39:03.023425 0 7 menu_account_group_account [["group",6],["menu",74]] ir.ui.menu-res.group account f [["group",6],["menu",74]] \N \N +977 2024-04-13 20:39:03.023425 0 8 menu_account_group_account_admin [["group",8],["menu",74]] ir.ui.menu-res.group account f [["group",8],["menu",74]] \N \N +978 2024-04-13 20:39:03.023425 0 75 menu_account_configuration [["icon","tryton-settings"],["name","Configuration"],["parent",74],["sequence",0]] ir.ui.menu account f [["icon","tryton-settings"],["name","Configuration"],["parent",74],["sequence",0]] \N \N +979 2024-04-13 20:39:03.023425 0 9 menu_account_configuration_group_account_admin [["group",8],["menu",75]] ir.ui.menu-res.group account f [["group",8],["menu",75]] \N \N +980 2024-04-13 20:39:03.023425 0 76 menu_templates [["icon","tryton-folder"],["name","Templates"],["parent",75],["sequence",10]] ir.ui.menu account f [["icon","tryton-folder"],["name","Templates"],["parent",75],["sequence",10]] \N \N +981 2024-04-13 20:39:03.023425 0 77 menu_general_account_configuration [["icon","tryton-folder"],["name","General Account"],["parent",75],["sequence",20]] ir.ui.menu account f [["icon","tryton-folder"],["name","General Account"],["parent",75],["sequence",20]] \N \N +982 2024-04-13 20:39:03.023425 0 78 menu_entries [["icon","tryton-folder"],["name","Entries"],["parent",74],["sequence",30]] ir.ui.menu account f [["icon","tryton-folder"],["name","Entries"],["parent",74],["sequence",30]] \N \N +983 2024-04-13 20:39:03.023425 0 79 menu_processing [["icon","tryton-folder"],["name","Processing"],["parent",74],["sequence",50]] ir.ui.menu account f [["icon","tryton-folder"],["name","Processing"],["parent",74],["sequence",50]] \N \N +984 2024-04-13 20:39:03.023425 0 80 menu_reporting [["icon","tryton-folder"],["name","Reporting"],["parent",74],["sequence",100]] ir.ui.menu account f [["icon","tryton-folder"],["name","Reporting"],["parent",74],["sequence",100]] \N \N +985 2024-04-13 20:39:03.023425 0 178 account_type_template_view_form [["model","account.account.type.template"],["name","account_type_template_form"],["type","form"]] ir.ui.view account f [["model","account.account.type.template"],["name","account_type_template_form"],["type","form"]] \N \N +986 2024-04-13 20:39:03.023425 0 179 account_type_template_view_list [["model","account.account.type.template"],["name","account_type_template_list"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.account.type.template"],["name","account_type_template_list"],["priority",10],["type","tree"]] \N \N +987 2024-04-13 20:39:03.023425 0 180 account_type_template_view_tree [["field_childs","childs"],["model","account.account.type.template"],["name","account_type_template_tree"],["priority",20],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.account.type.template"],["name","account_type_template_tree"],["priority",20],["type","tree"]] \N \N +988 2024-04-13 20:39:03.023425 0 86 act_account_type_template_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Account Types"],["res_model","account.account.type.template"]] ir.action.act_window account f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Account Types"],["res_model","account.account.type.template"]] \N \N +989 2024-04-13 20:39:03.023425 0 114 act_account_type_template_tree_view1 [["act_window",86],["sequence",10],["view",180]] ir.action.act_window.view account f [["act_window",86],["sequence",10],["view",180]] \N \N +990 2024-04-13 20:39:03.023425 0 115 act_account_type_template_tree_view2 [["act_window",86],["sequence",20],["view",178]] ir.action.act_window.view account f [["act_window",86],["sequence",20],["view",178]] \N \N +991 2024-04-13 20:39:03.023425 0 81 menu_account_type_template_tree [["action","ir.action.act_window,86"],["icon","tryton-tree"],["name","Account Types"],["parent",76],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,86"],["icon","tryton-tree"],["name","Account Types"],["parent",76],["sequence",10]] \N \N +992 2024-04-13 20:39:03.023425 0 181 account_type_view_form [["model","account.account.type"],["name","account_type_form"],["type","form"]] ir.ui.view account f [["model","account.account.type"],["name","account_type_form"],["type","form"]] \N \N +993 2024-04-13 20:39:03.023425 0 182 account_type_view_tree [["field_childs","childs"],["model","account.account.type"],["name","account_type_tree"],["priority",20],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.account.type"],["name","account_type_tree"],["priority",20],["type","tree"]] \N \N +994 2024-04-13 20:39:03.023425 0 183 account_type_view_list [["model","account.account.type"],["name","account_type_list"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.account.type"],["name","account_type_list"],["priority",10],["type","tree"]] \N \N +995 2024-04-13 20:39:03.023425 0 87 act_account_type_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Account Types"],["res_model","account.account.type"]] ir.action.act_window account f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Account Types"],["res_model","account.account.type"]] \N \N +996 2024-04-13 20:39:03.023425 0 116 act_account_type_tree_view1 [["act_window",87],["sequence",10],["view",182]] ir.action.act_window.view account f [["act_window",87],["sequence",10],["view",182]] \N \N +997 2024-04-13 20:39:03.023425 0 117 act_account_type_tree_view2 [["act_window",87],["sequence",20],["view",181]] ir.action.act_window.view account f [["act_window",87],["sequence",20],["view",181]] \N \N +998 2024-04-13 20:39:03.023425 0 82 menu_account_type_tree [["action","ir.action.act_window,87"],["icon","tryton-tree"],["name","Account Types"],["parent",77],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,87"],["icon","tryton-tree"],["name","Account Types"],["parent",77],["sequence",10]] \N \N +999 2024-04-13 20:39:03.023425 0 88 act_account_type_list [["name","Account Types"],["res_model","account.account.type"]] ir.action.act_window account f [["name","Account Types"],["res_model","account.account.type"]] \N \N +1000 2024-04-13 20:39:03.023425 0 118 act_account_type_list_view1 [["act_window",88],["sequence",10],["view",183]] ir.action.act_window.view account f [["act_window",88],["sequence",10],["view",183]] \N \N +1001 2024-04-13 20:39:03.023425 0 119 act_account_type_list_view2 [["act_window",88],["sequence",20],["view",181]] ir.action.act_window.view account f [["act_window",88],["sequence",20],["view",181]] \N \N +1002 2024-04-13 20:39:03.023425 0 83 menu_account_type_list [["action","ir.action.act_window,88"],["icon","tryton-list"],["name","Account Types"],["parent",82],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,88"],["icon","tryton-list"],["name","Account Types"],["parent",82],["sequence",10]] \N \N +1003 2024-04-13 20:39:03.023425 0 74 access_account_type [["model",128],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",128],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1004 2024-04-13 20:39:03.023425 0 75 access_account_type_account_admin [["group",8],["model",128],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",128],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1005 2024-04-13 20:39:03.023425 0 1 access_account_type_amount [["field",1342],["perm_read",false]] ir.model.field.access account f [["field",1342],["perm_read",false]] \N \N +1006 2024-04-13 20:39:03.023425 0 2 access_account_type_amount_account [["field",1342],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1342],["group",6],["perm_read",true]] \N \N +1007 2024-04-13 20:39:03.023425 0 3 access_account_type_amount_cmp [["field",1343],["perm_read",false]] ir.model.field.access account f [["field",1343],["perm_read",false]] \N \N +1008 2024-04-13 20:39:03.023425 0 4 access_account_type_amount_cmp_account [["field",1343],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1343],["group",6],["perm_read",true]] \N \N +1009 2024-04-13 20:39:03.023425 0 10 rule_group_account_type_companies [["global_p",true],["model",128],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",128],["name","User in companies"]] \N \N +1010 2024-04-13 20:39:03.023425 0 14 rule_account_type_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",10]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",10]] \N \N +1011 2024-04-13 20:39:03.023425 0 89 report_account_type_statement [["model","account.account.type"],["name","Statement"],["records","listed"],["report","account/type_statement.fodt"],["report_name","account.account.type.statement"]] ir.action.report account f [["model","account.account.type"],["name","Statement"],["records","listed"],["report","account/type_statement.fodt"],["report_name","account.account.type.statement"]] \N \N +1012 2024-04-13 20:39:03.023425 0 85 report_account_type_statement_keyword [["action",89],["keyword","form_print"],["model","account.account.type,-1"]] ir.action.keyword account f [["action",89],["keyword","form_print"],["model","account.account.type,-1"]] \N \N +1013 2024-04-13 20:39:03.023425 0 7 report_account_type_statement_group_account [["action",89],["group",6]] ir.action-res.group account f [["action",89],["group",6]] \N \N +1014 2024-04-13 20:39:03.023425 0 184 account_template_view_form [["model","account.account.template"],["name","account_template_form"],["type","form"]] ir.ui.view account f [["model","account.account.template"],["name","account_template_form"],["type","form"]] \N \N +1015 2024-04-13 20:39:03.023425 0 185 account_template_view_list [["model","account.account.template"],["name","account_template_list"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.account.template"],["name","account_template_list"],["priority",10],["type","tree"]] \N \N +1016 2024-04-13 20:39:03.023425 0 186 account_template_view_tree [["field_childs","childs"],["model","account.account.template"],["name","account_template_tree"],["priority",20],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.account.template"],["name","account_template_tree"],["priority",20],["type","tree"]] \N \N +1017 2024-04-13 20:39:03.023425 0 90 act_account_template_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Accounts"],["res_model","account.account.template"]] ir.action.act_window account f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Accounts"],["res_model","account.account.template"]] \N \N +1018 2024-04-13 20:39:03.023425 0 120 act_account_template_tree_view1 [["act_window",90],["sequence",10],["view",186]] ir.action.act_window.view account f [["act_window",90],["sequence",10],["view",186]] \N \N +1019 2024-04-13 20:39:03.023425 0 121 act_account_template_tree_view2 [["act_window",90],["sequence",20],["view",184]] ir.action.act_window.view account f [["act_window",90],["sequence",20],["view",184]] \N \N +1020 2024-04-13 20:39:03.023425 0 84 menu_account_template_tree [["action","ir.action.act_window,90"],["icon","tryton-tree"],["name","Accounts"],["parent",76],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,90"],["icon","tryton-tree"],["name","Accounts"],["parent",76],["sequence",20]] \N \N +1021 2024-04-13 20:39:03.023425 0 76 access_account_template [["model",129],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",129],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1022 2024-04-13 20:39:03.023425 0 187 account_deferral_view_form [["model","account.account.deferral"],["name","account_deferral_form"],["type","form"]] ir.ui.view account f [["model","account.account.deferral"],["name","account_deferral_form"],["type","form"]] \N \N +1023 2024-04-13 20:39:03.023425 0 188 account_deferral_view_tree [["model","account.account.deferral"],["name","account_deferral_tree"],["type","tree"]] ir.ui.view account f [["model","account.account.deferral"],["name","account_deferral_tree"],["type","tree"]] \N \N +1024 2024-04-13 20:39:03.023425 0 189 create_chart_start_view_form [["model","account.create_chart.start"],["name","create_chart_start_form"],["type","form"]] ir.ui.view account f [["model","account.create_chart.start"],["name","create_chart_start_form"],["type","form"]] \N \N +1025 2024-04-13 20:39:03.023425 0 190 create_chart_account_view_form [["model","account.create_chart.account"],["name","create_chart_account_form"],["type","form"]] ir.ui.view account f [["model","account.create_chart.account"],["name","create_chart_account_form"],["type","form"]] \N \N +1026 2024-04-13 20:39:03.023425 0 191 create_chart_properties_view_form [["model","account.create_chart.properties"],["name","create_chart_properties_form"],["type","form"]] ir.ui.view account f [["model","account.create_chart.properties"],["name","create_chart_properties_form"],["type","form"]] \N \N +1027 2024-04-13 20:39:03.023425 0 91 wizard_create_chart [["name","Create Chart of Accounts from Template"],["wiz_name","account.create_chart"]] ir.action.wizard account f [["name","Create Chart of Accounts from Template"],["wiz_name","account.create_chart"]] \N \N +1028 2024-04-13 20:39:03.023425 0 85 menu_create_chart [["action","ir.action.wizard,91"],["icon","tryton-launch"],["name","Create Chart of Accounts from Template"],["parent",76],["sequence",90]] ir.ui.menu account f [["action","ir.action.wizard,91"],["icon","tryton-launch"],["name","Create Chart of Accounts from Template"],["parent",76],["sequence",90]] \N \N +1029 2024-04-13 20:39:03.023425 0 5 config_wizard_item_chart_account [["action",91]] ir.module.config_wizard.item account f [["action",91]] \N \N +1030 2024-04-13 20:39:03.023425 0 192 update_chart_start_view_form [["model","account.update_chart.start"],["name","update_chart_start_form"],["type","form"]] ir.ui.view account f [["model","account.update_chart.start"],["name","update_chart_start_form"],["type","form"]] \N \N +1031 2024-04-13 20:39:03.023425 0 193 update_chart_succeed_view_form [["model","account.update_chart.succeed"],["name","update_chart_succeed_form"],["type","form"]] ir.ui.view account f [["model","account.update_chart.succeed"],["name","update_chart_succeed_form"],["type","form"]] \N \N +1032 2024-04-13 20:39:03.023425 0 92 wizard_update_chart [["name","Update Chart of Accounts from Template"],["wiz_name","account.update_chart"]] ir.action.wizard account f [["name","Update Chart of Accounts from Template"],["wiz_name","account.update_chart"]] \N \N +1033 2024-04-13 20:39:03.023425 0 86 menu_update_chart [["action","ir.action.wizard,92"],["icon","tryton-launch"],["name","Update Chart of Accounts from Template"],["parent",76],["sequence",90]] ir.ui.menu account f [["action","ir.action.wizard,92"],["icon","tryton-launch"],["name","Update Chart of Accounts from Template"],["parent",76],["sequence",90]] \N \N +1034 2024-04-13 20:39:03.023425 0 194 account_view_form [["model","account.account"],["name","account_form"],["type","form"]] ir.ui.view account f [["model","account.account"],["name","account_form"],["type","form"]] \N \N +1035 2024-04-13 20:39:03.023425 0 195 account_view_tree [["field_childs","childs"],["model","account.account"],["name","account_tree"],["priority",20],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.account"],["name","account_tree"],["priority",20],["type","tree"]] \N \N +1036 2024-04-13 20:39:03.023425 0 196 account_view_list [["model","account.account"],["name","account_list"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.account"],["name","account_list"],["priority",10],["type","tree"]] \N \N +1037 2024-04-13 20:39:03.023425 0 93 act_account_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Accounts"],["res_model","account.account"]] ir.action.act_window account f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Accounts"],["res_model","account.account"]] \N \N +1038 2024-04-13 20:39:03.023425 0 122 act_account_tree_view1 [["act_window",93],["sequence",10],["view",195]] ir.action.act_window.view account f [["act_window",93],["sequence",10],["view",195]] \N \N +1039 2024-04-13 20:39:03.023425 0 123 act_account_tree_view2 [["act_window",93],["sequence",20],["view",194]] ir.action.act_window.view account f [["act_window",93],["sequence",20],["view",194]] \N \N +1040 2024-04-13 20:39:03.023425 0 87 menu_account_tree [["action","ir.action.act_window,93"],["icon","tryton-tree"],["name","Accounts"],["parent",77],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,93"],["icon","tryton-tree"],["name","Accounts"],["parent",77],["sequence",20]] \N \N +1041 2024-04-13 20:39:03.023425 0 94 act_account_list [["name","Accounts"],["res_model","account.account"]] ir.action.act_window account f [["name","Accounts"],["res_model","account.account"]] \N \N +1042 2024-04-13 20:39:03.023425 0 124 act_account_list_view1 [["act_window",94],["sequence",10],["view",196]] ir.action.act_window.view account f [["act_window",94],["sequence",10],["view",196]] \N \N +1043 2024-04-13 20:39:03.023425 0 125 act_account_list_view2 [["act_window",94],["sequence",20],["view",194]] ir.action.act_window.view account f [["act_window",94],["sequence",20],["view",194]] \N \N +1044 2024-04-13 20:39:03.023425 0 88 menu_account_list [["action","ir.action.act_window,94"],["icon","tryton-list"],["name","Accounts"],["parent",87],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,94"],["icon","tryton-list"],["name","Accounts"],["parent",87],["sequence",10]] \N \N +1045 2024-04-13 20:39:03.023425 0 197 account_view_list_balance_sheet [["model","account.account"],["name","account_list_balance_sheet"],["priority",20],["type","tree"]] ir.ui.view account f [["model","account.account"],["name","account_list_balance_sheet"],["priority",20],["type","tree"]] \N \N +1046 2024-04-13 20:39:03.023425 0 95 act_account_balance_sheet [["context_domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"company\\"}]]"],["context_model","account.balance_sheet.context"],["domain","[[\\"OR\\", [\\"type\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"parent\\"], [\\"debit_type\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"parent\\"]], [\\"type\\", \\"!=\\", null], [\\"closed\\", \\"!=\\", true]]"],["name","Accounts"],["res_model","account.account"]] ir.action.act_window account f [["context_domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"company\\"}]]"],["context_model","account.balance_sheet.context"],["domain","[[\\"OR\\", [\\"type\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"parent\\"], [\\"debit_type\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"parent\\"]], [\\"type\\", \\"!=\\", null], [\\"closed\\", \\"!=\\", true]]"],["name","Accounts"],["res_model","account.account"]] \N \N +1047 2024-04-13 20:39:03.023425 0 126 act_account_list2_view1 [["act_window",95],["sequence",10],["view",197]] ir.action.act_window.view account f [["act_window",95],["sequence",10],["view",197]] \N \N +1048 2024-04-13 20:39:03.023425 0 96 act_open_type [["model","account.account.type"],["name","Open Type"],["wiz_name","account.account.open_type"]] ir.action.wizard account f [["model","account.account.type"],["name","Open Type"],["wiz_name","account.account.open_type"]] \N \N +1049 2024-04-13 20:39:03.023425 0 91 act_open_type_keyword [["action",96],["keyword","tree_open"],["model","account.account.type,-1"]] ir.action.keyword account f [["action",96],["keyword","tree_open"],["model","account.account.type,-1"]] \N \N +1050 2024-04-13 20:39:03.023425 0 198 account_view_tree_chart [["field_childs","childs"],["model","account.account"],["name","account_tree_chart"],["priority",20],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.account"],["name","account_tree_chart"],["priority",20],["type","tree"]] \N \N +1051 2024-04-13 20:39:03.023425 0 97 act_account_tree_chart [["context_model","account.account.context"],["domain","[[\\"parent\\", \\"=\\", null], [\\"context_company\\", \\"=\\", true]]"],["name","Chart of Accounts"],["res_model","account.account"]] ir.action.act_window account f [["context_model","account.account.context"],["domain","[[\\"parent\\", \\"=\\", null], [\\"context_company\\", \\"=\\", true]]"],["name","Chart of Accounts"],["res_model","account.account"]] \N \N +1052 2024-04-13 20:39:03.023425 0 127 act_account_tree_chart_view1 [["act_window",97],["sequence",10],["view",198]] ir.action.act_window.view account f [["act_window",97],["sequence",10],["view",198]] \N \N +1053 2024-04-13 20:39:03.023425 0 89 menu_account_tree_chart [["action","ir.action.act_window,97"],["icon","tryton-tree"],["name","Chart of Accounts"],["parent",80],["sequence",30]] ir.ui.menu account f [["action","ir.action.act_window,97"],["icon","tryton-tree"],["name","Chart of Accounts"],["parent",80],["sequence",30]] \N \N +1054 2024-04-13 20:39:03.023425 0 77 access_account [["model",131],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",131],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1055 2024-04-13 20:39:03.023425 0 78 access_account_account_admin [["group",8],["model",131],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",131],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1056 2024-04-13 20:39:03.023425 0 5 access_account_balance [["field",1398],["perm_read",false]] ir.model.field.access account f [["field",1398],["perm_read",false]] \N \N +1057 2024-04-13 20:39:03.023425 0 6 access_account_balance_account [["field",1398],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1398],["group",6],["perm_read",true]] \N \N +1058 2024-04-13 20:39:03.023425 0 7 access_account_credit [["field",1406],["perm_read",false]] ir.model.field.access account f [["field",1406],["perm_read",false]] \N \N +1059 2024-04-13 20:39:03.023425 0 8 access_account_credit_account [["field",1406],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1406],["group",6],["perm_read",true]] \N \N +1060 2024-04-13 20:39:03.023425 0 9 access_account_debit [["field",1409],["perm_read",false]] ir.model.field.access account f [["field",1409],["perm_read",false]] \N \N +1061 2024-04-13 20:39:03.023425 0 10 access_account_debit_account [["field",1409],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1409],["group",6],["perm_read",true]] \N \N +1062 2024-04-13 20:39:03.023425 0 11 access_account_amount_second_currency [["field",1397],["perm_read",false]] ir.model.field.access account f [["field",1397],["perm_read",false]] \N \N +1063 2024-04-13 20:39:03.023425 0 12 access_account_amount_second_currency_account [["field",1397],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1397],["group",6],["perm_read",true]] \N \N +1064 2024-04-13 20:39:03.023425 0 11 rule_group_account_companies [["global_p",true],["model",131],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",131],["name","User in companies"]] \N \N +1065 2024-04-13 20:39:03.023425 0 15 rule_account_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",11]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",11]] \N \N +1066 2024-04-13 20:39:03.023425 0 199 account_context_view_form [["model","account.account.context"],["name","account_context_form"],["type","form"]] ir.ui.view account f [["model","account.account.context"],["name","account_context_form"],["type","form"]] \N \N +1067 2024-04-13 20:39:03.023425 0 98 report_general_ledger [["model","account.general_ledger.account"],["name","General Ledger"],["records","listed"],["report","account/general_ledger.fodt"],["report_name","account.general_ledger"]] ir.action.report account f [["model","account.general_ledger.account"],["name","General Ledger"],["records","listed"],["report","account/general_ledger.fodt"],["report_name","account.general_ledger"]] \N \N +1068 2024-04-13 20:39:03.023425 0 93 report_general_ledger_keyword [["action",98],["keyword","form_print"],["model","account.general_ledger.account,-1"]] ir.action.keyword account f [["action",98],["keyword","form_print"],["model","account.general_ledger.account,-1"]] \N \N +1069 2024-04-13 20:39:03.023425 0 99 report_trial_balance [["model","account.general_ledger.account"],["name","Trial Balance"],["records","listed"],["report","account/trial_balance.fodt"],["report_name","account.trial_balance"]] ir.action.report account f [["model","account.general_ledger.account"],["name","Trial Balance"],["records","listed"],["report","account/trial_balance.fodt"],["report_name","account.trial_balance"]] \N \N +1070 2024-04-13 20:39:03.023425 0 94 report_trial_balance_keyword [["action",99],["keyword","form_print"],["model","account.general_ledger.account,-1"]] ir.action.keyword account f [["action",99],["keyword","form_print"],["model","account.general_ledger.account,-1"]] \N \N +1071 2024-04-13 20:39:03.023425 0 200 general_ledger_account_view_list [["model","account.general_ledger.account"],["name","general_ledger_account_list"],["type","tree"]] ir.ui.view account f [["model","account.general_ledger.account"],["name","general_ledger_account_list"],["type","tree"]] \N \N +1072 2024-04-13 20:39:03.023425 0 100 act_general_ledger_account_form [["context_model","account.general_ledger.account.context"],["name","General Ledger - Accounts"],["res_model","account.general_ledger.account"],["search_value","[[\\"line_count\\", \\"!=\\", 0]]"]] ir.action.act_window account f [["context_model","account.general_ledger.account.context"],["name","General Ledger - Accounts"],["res_model","account.general_ledger.account"],["search_value","[[\\"line_count\\", \\"!=\\", 0]]"]] \N \N +1073 2024-04-13 20:39:03.023425 0 128 act_general_ledger_account_form_view1 [["act_window",100],["sequence",10],["view",200]] ir.action.act_window.view account f [["act_window",100],["sequence",10],["view",200]] \N \N +1074 2024-04-13 20:39:03.023425 0 90 menu_general_ledger [["action","ir.action.act_window,100"],["icon","tryton-list"],["name","General Ledger"],["parent",80],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,100"],["icon","tryton-list"],["name","General Ledger"],["parent",80],["sequence",10]] \N \N +1075 2024-04-13 20:39:03.023425 0 101 act_account_general_ledger [["context_domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"company\\"}]]"],["context_model","account.general_ledger.account.context"],["domain","[\\"OR\\", [\\"type\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"parent\\"], [\\"debit_type\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"parent\\"]]"],["name","Accounts"],["res_model","account.general_ledger.account"]] ir.action.act_window account f [["context_domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"company\\"}]]"],["context_model","account.general_ledger.account.context"],["domain","[\\"OR\\", [\\"type\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"parent\\"], [\\"debit_type\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"parent\\"]]"],["name","Accounts"],["res_model","account.general_ledger.account"]] \N \N +1076 2024-04-13 20:39:03.023425 0 129 act_account_general_ledger_view1 [["act_window",101],["sequence",10],["view",200]] ir.action.act_window.view account f [["act_window",101],["sequence",10],["view",200]] \N \N +1077 2024-04-13 20:39:03.023425 0 79 access_general_ledger_account [["model",136],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access account f [["model",136],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1078 2024-04-13 20:39:03.023425 0 80 access_general_ledger_account_account [["group",6],["model",136],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["group",6],["model",136],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1079 2024-04-13 20:39:03.023425 0 12 rule_group_general_ledger_account_companies [["global_p",true],["model",136],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",136],["name","User in companies"]] \N \N +1080 2024-04-13 20:39:03.023425 0 16 rule_general_ledger_account_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",12]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",12]] \N \N +1081 2024-04-13 20:39:03.023425 0 201 general_ledger_account_party_view_list [["inherit",200],["model","account.general_ledger.account.party"],["name","general_ledger_account_party_list"]] ir.ui.view account f [["inherit",200],["model","account.general_ledger.account.party"],["name","general_ledger_account_party_list"]] \N \N +1082 2024-04-13 20:39:03.023425 0 102 act_general_ledger_account_party_form [["context_model","account.general_ledger.account.context"],["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"account\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"account\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","General Ledger - Account Parties"],["res_model","account.general_ledger.account.party"]] ir.action.act_window account f [["context_model","account.general_ledger.account.context"],["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"account\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"account\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","General Ledger - Account Parties"],["res_model","account.general_ledger.account.party"]] \N \N +1083 2024-04-13 20:39:03.023425 0 130 act_general_ledger_account_party_form_view1 [["act_window",102],["sequence",10],["view",201]] ir.action.act_window.view account f [["act_window",102],["sequence",10],["view",201]] \N \N +1084 2024-04-13 20:39:03.023425 0 96 act_general_ledger_account_party_form_keyword1 [["action",102],["keyword","tree_open"],["model","account.general_ledger.account,-1"]] ir.action.keyword account f [["action",102],["keyword","tree_open"],["model","account.general_ledger.account,-1"]] \N \N +1085 2024-04-13 20:39:03.023425 0 97 act_general_ledger_account_party_form_keyword_account [["action",102],["keyword","form_relate"],["model","account.account,-1"]] ir.action.keyword account f [["action",102],["keyword","form_relate"],["model","account.account,-1"]] \N \N +1086 2024-04-13 20:39:03.023425 0 103 act_general_ledger_account_party_open [["name","Open General Ledger Account Parties"],["wiz_name","account.general_ledger.account.party.open"]] ir.action.wizard account f [["name","Open General Ledger Account Parties"],["wiz_name","account.general_ledger.account.party.open"]] \N \N +1087 2024-04-13 20:39:03.023425 0 98 act_general_ledger_account_party_open_keyword1 [["action",103],["keyword","tree_open"],["model","account.general_ledger.account.party,-1"]] ir.action.keyword account f [["action",103],["keyword","tree_open"],["model","account.general_ledger.account.party,-1"]] \N \N +1088 2024-04-13 20:39:03.023425 0 104 act_general_ledger_account_party_form_party [["context_model","account.general_ledger.account.context"],["domain","[[\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Accounts"],["res_model","account.general_ledger.account.party"]] ir.action.act_window account f [["context_model","account.general_ledger.account.context"],["domain","[[\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Accounts"],["res_model","account.general_ledger.account.party"]] \N \N +1089 2024-04-13 20:39:03.023425 0 131 act_general_ledger_account_party_form_party_view1 [["act_window",104],["sequence",10],["view",201]] ir.action.act_window.view account f [["act_window",104],["sequence",10],["view",201]] \N \N +1090 2024-04-13 20:39:03.023425 0 99 act_general_ledger_account_party_form_party_relate_keyword1 [["action",104],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword account f [["action",104],["keyword","form_relate"],["model","party.party,-1"]] \N \N +1091 2024-04-13 20:39:03.023425 0 81 access_general_ledger_account_party [["model",138],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access account f [["model",138],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1092 2024-04-13 20:39:03.023425 0 82 access_general_ledger_account_account_party [["group",6],["model",138],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["group",6],["model",138],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1093 2024-04-13 20:39:03.023425 0 13 rule_group_general_ledger_account_party_companies [["global_p",true],["model",138],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",138],["name","User in companies"]] \N \N +1094 2024-04-13 20:39:03.023425 0 17 rule_general_ledger_account_party_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",13]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",13]] \N \N +1095 2024-04-13 20:39:03.023425 0 202 general_ledger_line_view_list [["model","account.general_ledger.line"],["name","general_ledger_line_list"],["type","tree"]] ir.ui.view account f [["model","account.general_ledger.line"],["name","general_ledger_line_list"],["type","tree"]] \N \N +1096 2024-04-13 20:39:03.023425 0 105 act_general_ledger_line_form [["context_model","account.general_ledger.line.context"],["domain","[[\\"account\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]]"],["name","General Ledger - Lines"],["res_model","account.general_ledger.line"]] ir.action.act_window account f [["context_model","account.general_ledger.line.context"],["domain","[[\\"account\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]]"],["name","General Ledger - Lines"],["res_model","account.general_ledger.line"]] \N \N +1097 2024-04-13 20:39:03.023425 0 132 act_general_ledger_line_form_view1 [["act_window",105],["sequence",10],["view",202]] ir.action.act_window.view account f [["act_window",105],["sequence",10],["view",202]] \N \N +1098 2024-04-13 20:39:03.023425 0 100 act_general_ledger_line_form_keyword [["action",105],["keyword","tree_open"],["model","account.general_ledger.account,-1"]] ir.action.keyword account f [["action",105],["keyword","tree_open"],["model","account.general_ledger.account,-1"]] \N \N +1099 2024-04-13 20:39:03.023425 0 101 act_general_ledger_line_form_keyword_account [["action",105],["keyword","form_relate"],["model","account.account,-1"]] ir.action.keyword account f [["action",105],["keyword","form_relate"],["model","account.account,-1"]] \N \N +1100 2024-04-13 20:39:03.023425 0 14 rule_group_general_ledger_line_companies [["global_p",true],["model",139],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",139],["name","User in companies"]] \N \N +1101 2024-04-13 20:39:03.023425 0 18 rule_general_ledger_line_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",14]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",14]] \N \N +1102 2024-04-13 20:39:03.023425 0 203 general_ledger_account_context_view_form [["model","account.general_ledger.account.context"],["name","general_ledger_account_context_form"],["type","form"]] ir.ui.view account f [["model","account.general_ledger.account.context"],["name","general_ledger_account_context_form"],["type","form"]] \N \N +1103 2024-04-13 20:39:03.023425 0 204 general_ledger_line_context_view_form [["inherit",203],["model","account.general_ledger.line.context"],["name","general_ledger_line_context_form"]] ir.ui.view account f [["inherit",203],["model","account.general_ledger.line.context"],["name","general_ledger_line_context_form"]] \N \N +1104 2024-04-13 20:39:03.023425 0 205 account_balance_sheet_view_tree [["field_childs","childs"],["model","account.account.type"],["name","account_balance_sheet_tree"],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.account.type"],["name","account_balance_sheet_tree"],["type","tree"]] \N \N +1105 2024-04-13 20:39:03.023425 0 106 act_account_balance_sheet_tree [["context","{\\"cumulate\\": true}"],["context_domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"company\\"}]]"],["context_model","account.balance_sheet.comparison.context"],["domain","[[\\"statement\\", \\"=\\", \\"balance\\"], [\\"OR\\", [\\"parent\\", \\"=\\", null], [\\"parent.statement\\", \\"!=\\", \\"balance\\"], [\\"parent.statement\\", \\"=\\", null]]]"],["name","Balance Sheet"],["res_model","account.account.type"]] ir.action.act_window account f [["context","{\\"cumulate\\": true}"],["context_domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"company\\"}]]"],["context_model","account.balance_sheet.comparison.context"],["domain","[[\\"statement\\", \\"=\\", \\"balance\\"], [\\"OR\\", [\\"parent\\", \\"=\\", null], [\\"parent.statement\\", \\"!=\\", \\"balance\\"], [\\"parent.statement\\", \\"=\\", null]]]"],["name","Balance Sheet"],["res_model","account.account.type"]] \N \N +1106 2024-04-13 20:39:03.023425 0 133 act_balance_sheet_view1 [["act_window",106],["sequence",10],["view",205]] ir.action.act_window.view account f [["act_window",106],["sequence",10],["view",205]] \N \N +1107 2024-04-13 20:39:03.023425 0 91 menu_open_balance_sheet [["action","ir.action.act_window,106"],["icon","tryton-tree"],["name","Balance Sheet"],["parent",80],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,106"],["icon","tryton-tree"],["name","Balance Sheet"],["parent",80],["sequence",20]] \N \N +1108 2024-04-13 20:39:03.023425 0 206 balance_sheet_context_view_form [["model","account.balance_sheet.context"],["name","balance_sheet_context_form"],["type","form"]] ir.ui.view account f [["model","account.balance_sheet.context"],["name","balance_sheet_context_form"],["type","form"]] \N \N +1109 2024-04-13 20:39:03.023425 0 207 balance_sheet_comparison_context_view_form [["inherit",206],["model","account.balance_sheet.comparison.context"],["name","balance_sheet_context_comparison_form"]] ir.ui.view account f [["inherit",206],["model","account.balance_sheet.comparison.context"],["name","balance_sheet_context_comparison_form"]] \N \N +1110 2024-04-13 20:39:03.023425 0 208 account_income_statement_view_tree [["field_childs","childs"],["model","account.account.type"],["name","account_income_statement_tree"],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.account.type"],["name","account_income_statement_tree"],["type","tree"]] \N \N +1111 2024-04-13 20:39:03.023425 0 107 act_account_income_statement_tree [["context_domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"company\\"}]]"],["context_model","account.income_statement.context"],["domain","[[\\"statement\\", \\"=\\", \\"income\\"], [\\"OR\\", [\\"parent\\", \\"=\\", null], [\\"parent.statement\\", \\"!=\\", \\"income\\"], [\\"parent.statement\\", \\"=\\", null]]]"],["name","Income Statement"],["res_model","account.account.type"]] ir.action.act_window account f [["context_domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"company\\"}]]"],["context_model","account.income_statement.context"],["domain","[[\\"statement\\", \\"=\\", \\"income\\"], [\\"OR\\", [\\"parent\\", \\"=\\", null], [\\"parent.statement\\", \\"!=\\", \\"income\\"], [\\"parent.statement\\", \\"=\\", null]]]"],["name","Income Statement"],["res_model","account.account.type"]] \N \N +1112 2024-04-13 20:39:03.023425 0 134 act_income_statement_view1 [["act_window",107],["sequence",10],["view",208]] ir.action.act_window.view account f [["act_window",107],["sequence",10],["view",208]] \N \N +1113 2024-04-13 20:39:03.023425 0 92 menu_open_income_statement [["action","ir.action.act_window,107"],["icon","tryton-tree"],["name","Income Statement"],["parent",80],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,107"],["icon","tryton-tree"],["name","Income Statement"],["parent",80],["sequence",20]] \N \N +1114 2024-04-13 20:39:03.023425 0 209 income_statement_context_view_form [["model","account.income_statement.context"],["name","income_statement_context_form"],["type","form"]] ir.ui.view account f [["model","account.income_statement.context"],["name","income_statement_context_form"],["type","form"]] \N \N +1115 2024-04-13 20:39:03.023425 0 210 aged_balance_view_list [["model","account.aged_balance"],["name","aged_balance_list"],["type","tree"]] ir.ui.view account f [["model","account.aged_balance"],["name","aged_balance_list"],["type","tree"]] \N \N +1116 2024-04-13 20:39:03.023425 0 108 act_aged_balance_list [["context_model","account.aged_balance.context"],["name","Aged Balance"],["res_model","account.aged_balance"]] ir.action.act_window account f [["context_model","account.aged_balance.context"],["name","Aged Balance"],["res_model","account.aged_balance"]] \N \N +1117 2024-04-13 20:39:03.023425 0 135 act_aged_balance_list_view1 [["act_window",108],["sequence",10],["view",210]] ir.action.act_window.view account f [["act_window",108],["sequence",10],["view",210]] \N \N +1118 2024-04-13 20:39:03.023425 0 93 menu_aged_balance [["action","ir.action.act_window,108"],["icon","tryton-list"],["name","Aged Balance"],["parent",80],["sequence",50]] ir.ui.menu account f [["action","ir.action.act_window,108"],["icon","tryton-list"],["name","Aged Balance"],["parent",80],["sequence",50]] \N \N +1119 2024-04-13 20:39:03.023425 0 83 access_aged_balance [["model",150],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access account f [["model",150],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1120 2024-04-13 20:39:03.023425 0 84 access_aged_balance_account [["group",6],["model",150],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["group",6],["model",150],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1121 2024-04-13 20:39:03.023425 0 15 rule_group_aged_balance_companies [["global_p",true],["model",150],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",150],["name","User in companies"]] \N \N +1122 2024-04-13 20:39:03.023425 0 19 rule_aged_balance_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",15]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",15]] \N \N +1123 2024-04-13 20:39:03.023425 0 211 aged_balance_context_view_form [["model","account.aged_balance.context"],["name","aged_balance_context_form"],["type","form"]] ir.ui.view account f [["model","account.aged_balance.context"],["name","aged_balance_context_form"],["type","form"]] \N \N +1124 2024-04-13 20:39:03.023425 0 109 report_aged_balance [["model","account.aged_balance"],["name","Aged Balance"],["report","account/aged_balance.fodt"],["report_name","account.aged_balance"]] ir.action.report account f [["model","account.aged_balance"],["name","Aged Balance"],["report","account/aged_balance.fodt"],["report_name","account.aged_balance"]] \N \N +1125 2024-04-13 20:39:03.023425 0 105 report_aged_balance_keyword [["action",109],["keyword","form_print"],["model","account.aged_balance,-1"]] ir.action.keyword account f [["action",109],["keyword","form_print"],["model","account.aged_balance,-1"]] \N \N +1126 2024-04-13 20:39:03.023425 0 212 configuration_view_form [["model","account.configuration"],["name","configuration_form"],["type","form"]] ir.ui.view account f [["model","account.configuration"],["name","configuration_form"],["type","form"]] \N \N +1127 2024-04-13 20:39:03.023425 0 110 act_configuration_form [["name","Configuration"],["res_model","account.configuration"]] ir.action.act_window account f [["name","Configuration"],["res_model","account.configuration"]] \N \N +1128 2024-04-13 20:39:03.023425 0 136 act_configuration_view1 [["act_window",110],["sequence",1],["view",212]] ir.action.act_window.view account f [["act_window",110],["sequence",1],["view",212]] \N \N +1129 2024-04-13 20:39:03.023425 0 94 menuitem_account_configuration [["action","ir.action.act_window,110"],["icon","tryton-list"],["name","Configuration"],["parent",75],["sequence",0]] ir.ui.menu account f [["action","ir.action.act_window,110"],["icon","tryton-list"],["name","Configuration"],["parent",75],["sequence",0]] \N \N +1130 2024-04-13 20:39:03.023425 0 85 access_account_configuration [["model",151],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",151],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1131 2024-04-13 20:39:03.023425 0 86 access_account_configuration_account_admin [["group",8],["model",151],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",151],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1132 2024-04-13 20:39:03.023425 0 213 company_view_list [["inherit",167],["model","company.company"],["name","company_list"]] ir.ui.view account f [["inherit",167],["model","company.company"],["name","company_list"]] \N \N +1133 2024-04-13 20:39:03.023425 0 214 company_view_form [["inherit",166],["model","company.company"],["name","company_form"]] ir.ui.view account f [["inherit",166],["model","company.company"],["name","company_form"]] \N \N +1134 2024-04-13 20:39:03.023425 0 13 access_company_receivable [["field",1322],["perm_read",false]] ir.model.field.access account f [["field",1322],["perm_read",false]] \N \N +1135 2024-04-13 20:39:03.023425 0 14 access_company_receivable_account [["field",1322],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1322],["group",6],["perm_read",true]] \N \N +1136 2024-04-13 20:39:03.023425 0 15 access_company_payable [["field",1320],["perm_read",false]] ir.model.field.access account f [["field",1320],["perm_read",false]] \N \N +1137 2024-04-13 20:39:03.023425 0 16 access_company_payable_account [["field",1320],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1320],["group",6],["perm_read",true]] \N \N +1138 2024-04-13 20:39:03.023425 0 17 access_company_receivable_today [["field",1323],["perm_read",false]] ir.model.field.access account f [["field",1323],["perm_read",false]] \N \N +1139 2024-04-13 20:39:03.023425 0 18 access_company_receivable_today_account [["field",1323],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1323],["group",6],["perm_read",true]] \N \N +1140 2024-04-13 20:39:03.023425 0 19 access_company_payable_today [["field",1321],["perm_read",false]] ir.model.field.access account f [["field",1321],["perm_read",false]] \N \N +1141 2024-04-13 20:39:03.023425 0 20 access_company_payable_today_account [["field",1321],["group",6],["perm_read",true]] ir.model.field.access account f [["field",1321],["group",6],["perm_read",true]] \N \N +1142 2024-04-13 20:39:03.023425 0 95 menu_fiscalyear_configuration [["icon","tryton-folder"],["name","Fiscal Years"],["parent",75],["sequence",30]] ir.ui.menu account f [["icon","tryton-folder"],["name","Fiscal Years"],["parent",75],["sequence",30]] \N \N +1143 2024-04-13 20:39:03.023425 0 215 fiscalyear_view_form [["model","account.fiscalyear"],["name","fiscalyear_form"],["type","form"]] ir.ui.view account f [["model","account.fiscalyear"],["name","fiscalyear_form"],["type","form"]] \N \N +1144 2024-04-13 20:39:03.023425 0 216 fiscalyear_view_tree [["model","account.fiscalyear"],["name","fiscalyear_tree"],["type","tree"]] ir.ui.view account f [["model","account.fiscalyear"],["name","fiscalyear_tree"],["type","tree"]] \N \N +1145 2024-04-13 20:39:03.023425 0 217 fiscalyear_view_list_close [["model","account.fiscalyear"],["name","fiscalyear_list_close"],["type","tree"]] ir.ui.view account f [["model","account.fiscalyear"],["name","fiscalyear_list_close"],["type","tree"]] \N \N +1146 2024-04-13 20:39:03.023425 0 111 act_fiscalyear_form [["name","Fiscal Years"],["res_model","account.fiscalyear"]] ir.action.act_window account f [["name","Fiscal Years"],["res_model","account.fiscalyear"]] \N \N +1147 2024-04-13 20:39:03.023425 0 137 act_fiscalyear_form_view1 [["act_window",111],["sequence",10],["view",216]] ir.action.act_window.view account f [["act_window",111],["sequence",10],["view",216]] \N \N +1148 2024-04-13 20:39:03.023425 0 138 act_fiscalyear_form_view2 [["act_window",111],["sequence",20],["view",215]] ir.action.act_window.view account f [["act_window",111],["sequence",20],["view",215]] \N \N +1149 2024-04-13 20:39:03.023425 0 96 menu_fiscalyear_form [["action","ir.action.act_window,111"],["icon","tryton-list"],["name","Fiscal Years"],["parent",95],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,111"],["icon","tryton-list"],["name","Fiscal Years"],["parent",95],["sequence",10]] \N \N +1150 2024-04-13 20:39:03.023425 0 87 access_fiscalyear [["model",125],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",125],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1151 2024-04-13 20:39:03.023425 0 88 access_fiscalyear_account_admin [["group",8],["model",125],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",125],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1152 2024-04-13 20:39:03.023425 0 19 fiscalyear_create_periods_button [["model",125],["name","create_periods"],["string","Create Periods"]] ir.model.button account f [["model",125],["name","create_periods"],["string","Create Periods"]] \N \N +1153 2024-04-13 20:39:03.023425 0 20 fiscalyear_reopen_button [["model",125],["name","reopen"],["string","Re-Open"]] ir.model.button account f [["model",125],["name","reopen"],["string","Re-Open"]] \N \N +1154 2024-04-13 20:39:03.023425 0 21 fiscalyear_close_button [["model",125],["name","close"],["string","Close"]] ir.model.button account f [["model",125],["name","close"],["string","Close"]] \N \N +1155 2024-04-13 20:39:03.023425 0 22 fiscalyear_lock_button [["confirm","Are you sure you want to lock the fiscal year?"],["model",125],["name","lock_"],["string","Lock"]] ir.model.button account f [["confirm","Are you sure you want to lock the fiscal year?"],["model",125],["name","lock_"],["string","Lock"]] \N \N +1156 2024-04-13 20:39:03.023425 0 16 rule_group_fiscalyear_companies [["global_p",true],["model",125],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",125],["name","User in companies"]] \N \N +1157 2024-04-13 20:39:03.023425 0 20 rule_fiscalyear_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",16]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",16]] \N \N +1158 2024-04-13 20:39:03.023425 0 112 act_fiscalyear_form_close [["name","Close Fiscal Years"],["res_model","account.fiscalyear"],["search_value","[[\\"state\\", \\"=\\", \\"open\\"]]"]] ir.action.act_window account f [["name","Close Fiscal Years"],["res_model","account.fiscalyear"],["search_value","[[\\"state\\", \\"=\\", \\"open\\"]]"]] \N \N +1159 2024-04-13 20:39:03.023425 0 139 act_fiscalyear_form_close_view1 [["act_window",112],["sequence",10],["view",217]] ir.action.act_window.view account f [["act_window",112],["sequence",10],["view",217]] \N \N +1160 2024-04-13 20:39:03.023425 0 97 menu_close_fiscalyear [["action","ir.action.act_window,112"],["icon","tryton-list"],["name","Close Fiscal Years"],["parent",79],["sequence",50]] ir.ui.menu account f [["action","ir.action.act_window,112"],["icon","tryton-list"],["name","Close Fiscal Years"],["parent",79],["sequence",50]] \N \N +1161 2024-04-13 20:39:03.023425 0 218 fiscalyear_create_periods_start_view_form [["model","account.fiscalyear.create_periods.start"],["name","fiscalyear_create_periods_start_form"],["type","form"]] ir.ui.view account f [["model","account.fiscalyear.create_periods.start"],["name","fiscalyear_create_periods_start_form"],["type","form"]] \N \N +1162 2024-04-13 20:39:03.023425 0 113 act_create_periods [["name","Create Periods"],["wiz_name","account.fiscalyear.create_periods"]] ir.action.wizard account f [["name","Create Periods"],["wiz_name","account.fiscalyear.create_periods"]] \N \N +1163 2024-04-13 20:39:03.023425 0 219 fiscalyear_balance_non_deferral_start_view_form [["model","account.fiscalyear.balance_non_deferral.start"],["name","fiscalyear_balance_non_deferral_start_form"],["type","form"]] ir.ui.view account f [["model","account.fiscalyear.balance_non_deferral.start"],["name","fiscalyear_balance_non_deferral_start_form"],["type","form"]] \N \N +1164 2024-04-13 20:39:03.023425 0 114 act_balance_non_deferral [["name","Balance Non-Deferral"],["wiz_name","account.fiscalyear.balance_non_deferral"]] ir.action.wizard account f [["name","Balance Non-Deferral"],["wiz_name","account.fiscalyear.balance_non_deferral"]] \N \N +1165 2024-04-13 20:39:03.023425 0 98 menu_balance_non_deferral [["action","ir.action.wizard,114"],["icon","tryton-launch"],["name","Balance Non-Deferral"],["parent",79],["sequence",40]] ir.ui.menu account f [["action","ir.action.wizard,114"],["icon","tryton-launch"],["name","Balance Non-Deferral"],["parent",79],["sequence",40]] \N \N +1166 2024-04-13 20:39:03.023425 0 220 fiscalyear_renew_start_view_form [["model","account.fiscalyear.renew.start"],["name","renew_fiscalyear_start_form"],["type","form"]] ir.ui.view account f [["model","account.fiscalyear.renew.start"],["name","renew_fiscalyear_start_form"],["type","form"]] \N \N +1167 2024-04-13 20:39:03.023425 0 115 act_renew_fiscalyear [["name","Renew Fiscal Year"],["wiz_name","account.fiscalyear.renew"]] ir.action.wizard account f [["name","Renew Fiscal Year"],["wiz_name","account.fiscalyear.renew"]] \N \N +1168 2024-04-13 20:39:03.023425 0 8 act_renew_fiscalyear_group_admin [["action",115],["group",8]] ir.action-res.group account f [["action",115],["group",8]] \N \N +1169 2024-04-13 20:39:03.023425 0 99 menu_renew_fiscalyear [["action","ir.action.wizard,115"],["icon","tryton-launch"],["name","Renew Fiscal Year"],["parent",95],["sequence",90]] ir.ui.menu account f [["action","ir.action.wizard,115"],["icon","tryton-launch"],["name","Renew Fiscal Year"],["parent",95],["sequence",90]] \N \N +1170 2024-04-13 20:39:03.023425 0 221 period_view_form [["model","account.period"],["name","period_form"],["type","form"]] ir.ui.view account f [["model","account.period"],["name","period_form"],["type","form"]] \N \N +1171 2024-04-13 20:39:03.023425 0 222 period_view_tree [["model","account.period"],["name","period_tree"],["type","tree"]] ir.ui.view account f [["model","account.period"],["name","period_tree"],["type","tree"]] \N \N +1172 2024-04-13 20:39:03.023425 0 223 period_view_list_close [["model","account.period"],["name","period_list_close"],["type","tree"]] ir.ui.view account f [["model","account.period"],["name","period_list_close"],["type","tree"]] \N \N +1173 2024-04-13 20:39:03.023425 0 116 act_period_form [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Periods"],["res_model","account.period"]] ir.action.act_window account f [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Periods"],["res_model","account.period"]] \N \N +1174 2024-04-13 20:39:03.023425 0 140 act_period_form_view1 [["act_window",116],["sequence",10],["view",222]] ir.action.act_window.view account f [["act_window",116],["sequence",10],["view",222]] \N \N +1175 2024-04-13 20:39:03.023425 0 141 act_period_form_view2 [["act_window",116],["sequence",20],["view",221]] ir.action.act_window.view account f [["act_window",116],["sequence",20],["view",221]] \N \N +1176 2024-04-13 20:39:03.023425 0 100 menu_period_form [["action","ir.action.act_window,116"],["icon","tryton-list"],["name","Periods"],["parent",95],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,116"],["icon","tryton-list"],["name","Periods"],["parent",95],["sequence",20]] \N \N +1177 2024-04-13 20:39:03.023425 0 23 period_close_button [["model",156],["name","close"],["string","Close"]] ir.model.button account f [["model",156],["name","close"],["string","Close"]] \N \N +1178 2024-04-13 20:39:03.023425 0 24 period_reopen_button [["model",156],["name","reopen"],["string","Re-Open"]] ir.model.button account f [["model",156],["name","reopen"],["string","Re-Open"]] \N \N +1179 2024-04-13 20:39:03.023425 0 25 period_lock_button [["confirm","Are you sure you want to lock the period?"],["model",156],["name","lock_"],["string","Lock"]] ir.model.button account f [["confirm","Are you sure you want to lock the period?"],["model",156],["name","lock_"],["string","Lock"]] \N \N +1180 2024-04-13 20:39:03.023425 0 117 act_period_form_close [["name","Close Periods"],["order","[[\\"start_date\\", \\"ASC\\"], [\\"id\\", \\"ASC\\"]]"],["res_model","account.period"],["search_value","[[\\"state\\", \\"=\\", \\"open\\"]]"]] ir.action.act_window account f [["name","Close Periods"],["order","[[\\"start_date\\", \\"ASC\\"], [\\"id\\", \\"ASC\\"]]"],["res_model","account.period"],["search_value","[[\\"state\\", \\"=\\", \\"open\\"]]"]] \N \N +1181 2024-04-13 20:39:03.023425 0 142 act_period_form_close_view1 [["act_window",117],["sequence",10],["view",223]] ir.action.act_window.view account f [["act_window",117],["sequence",10],["view",223]] \N \N +1182 2024-04-13 20:39:03.023425 0 101 menu_close_period [["action","ir.action.act_window,117"],["icon","tryton-list"],["name","Close Periods"],["parent",79],["sequence",30]] ir.ui.menu account f [["action","ir.action.act_window,117"],["icon","tryton-list"],["name","Close Periods"],["parent",79],["sequence",30]] \N \N +1183 2024-04-13 20:39:03.023425 0 17 rule_group_period_companies [["global_p",true],["model",156],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",156],["name","User in companies"]] \N \N +1184 2024-04-13 20:39:03.023425 0 21 rule_period_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",17]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",17]] \N \N +1185 2024-04-13 20:39:03.023425 0 102 menu_journal_configuration [["icon","tryton-folder"],["name","Journals"],["parent",75],["sequence",50]] ir.ui.menu account f [["icon","tryton-folder"],["name","Journals"],["parent",75],["sequence",50]] \N \N +1186 2024-04-13 20:39:03.023425 0 224 journal_view_form [["model","account.journal"],["name","journal_form"],["type","form"]] ir.ui.view account f [["model","account.journal"],["name","journal_form"],["type","form"]] \N \N +1187 2024-04-13 20:39:03.023425 0 225 journal_view_tree [["model","account.journal"],["name","journal_tree"],["type","tree"]] ir.ui.view account f [["model","account.journal"],["name","journal_tree"],["type","tree"]] \N \N +1188 2024-04-13 20:39:03.023425 0 226 journal_view_list_cash [["model","account.journal"],["name","journal_list_cash"],["priority",20],["type","tree"]] ir.ui.view account f [["model","account.journal"],["name","journal_list_cash"],["priority",20],["type","tree"]] \N \N +1189 2024-04-13 20:39:03.023425 0 118 act_journal_form [["name","Journals"],["res_model","account.journal"]] ir.action.act_window account f [["name","Journals"],["res_model","account.journal"]] \N \N +1190 2024-04-13 20:39:03.023425 0 143 act_journal_form_view1 [["act_window",118],["sequence",10],["view",225]] ir.action.act_window.view account f [["act_window",118],["sequence",10],["view",225]] \N \N +1191 2024-04-13 20:39:03.023425 0 144 act_journal_form_view2 [["act_window",118],["sequence",20],["view",224]] ir.action.act_window.view account f [["act_window",118],["sequence",20],["view",224]] \N \N +1192 2024-04-13 20:39:03.023425 0 103 menu_journal_form [["action","ir.action.act_window,118"],["icon","tryton-list"],["name","Journals"],["parent",102],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,118"],["icon","tryton-list"],["name","Journals"],["parent",102],["sequence",10]] \N \N +1296 2024-04-13 20:39:03.023425 0 20 rule_group_reconcile_writeoff_companies [["global_p",true],["model",166],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",166],["name","User in companies"]] \N \N +1193 2024-04-13 20:39:03.023425 0 227 journal_cash_context_view_form [["model","account.journal.open_cash.context"],["name","journal_open_cash_context"],["type","form"]] ir.ui.view account f [["model","account.journal.open_cash.context"],["name","journal_open_cash_context"],["type","form"]] \N \N +1194 2024-04-13 20:39:03.023425 0 119 act_journal_open_cash [["context_model","account.journal.open_cash.context"],["domain","[[\\"type\\", \\"=\\", \\"cash\\"]]"],["name","Journals Cash"],["res_model","account.journal"]] ir.action.act_window account f [["context_model","account.journal.open_cash.context"],["domain","[[\\"type\\", \\"=\\", \\"cash\\"]]"],["name","Journals Cash"],["res_model","account.journal"]] \N \N +1195 2024-04-13 20:39:03.023425 0 145 act_journal_open_cash_view1 [["act_window",119],["sequence",10],["view",226]] ir.action.act_window.view account f [["act_window",119],["sequence",10],["view",226]] \N \N +1196 2024-04-13 20:39:03.023425 0 104 menu_journal_open_cash [["action","ir.action.act_window,119"],["icon","tryton-list"],["name","Journals Cash"],["parent",80],["sequence",50]] ir.ui.menu account f [["action","ir.action.act_window,119"],["icon","tryton-list"],["name","Journals Cash"],["parent",80],["sequence",50]] \N \N +1197 2024-04-13 20:39:03.023425 0 89 access_journal [["model",157],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",157],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1198 2024-04-13 20:39:03.023425 0 90 access_journal_account_admin [["group",8],["model",157],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",157],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1199 2024-04-13 20:39:03.023425 0 2 sequence_type_account_journal [["name","Account Journal"]] ir.sequence.type account f [["name","Account Journal"]] \N \N +1200 2024-04-13 20:39:03.023425 0 3 sequence_type_account_journal_group_admin [["group",1],["sequence_type",2]] ir.sequence.type-res.group account f [["group",1],["sequence_type",2]] \N \N +1201 2024-04-13 20:39:03.023425 0 4 sequence_type_account_journal_group_account_admin [["group",8],["sequence_type",2]] ir.sequence.type-res.group account f [["group",8],["sequence_type",2]] \N \N +1202 2024-04-13 20:39:03.023425 0 2 sequence_account_journal [["company",null],["name","Default Account Journal"],["sequence_type",2]] ir.sequence account f [["company",null],["name","Default Account Journal"],["sequence_type",2]] \N \N +1203 2024-04-13 20:39:03.023425 0 228 journal_period_view_form [["model","account.journal.period"],["name","journal_period_form"],["type","form"]] ir.ui.view account f [["model","account.journal.period"],["name","journal_period_form"],["type","form"]] \N \N +1204 2024-04-13 20:39:03.023425 0 229 journal_period_view_tree [["model","account.journal.period"],["name","journal_period_tree"],["type","tree"]] ir.ui.view account f [["model","account.journal.period"],["name","journal_period_tree"],["type","tree"]] \N \N +1205 2024-04-13 20:39:03.023425 0 230 journal_period_view_list_close [["model","account.journal.period"],["name","journal_period_list_close"],["type","tree"]] ir.ui.view account f [["model","account.journal.period"],["name","journal_period_list_close"],["type","tree"]] \N \N +1206 2024-04-13 20:39:03.023425 0 120 act_journal_period_tree [["domain","[[\\"period.fiscalyear.company.id\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Journals - Periods"],["res_model","account.journal.period"]] ir.action.act_window account f [["domain","[[\\"period.fiscalyear.company.id\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Journals - Periods"],["res_model","account.journal.period"]] \N \N +1207 2024-04-13 20:39:03.023425 0 146 act_journal_period_tree_view1 [["act_window",120],["sequence",10],["view",229]] ir.action.act_window.view account f [["act_window",120],["sequence",10],["view",229]] \N \N +1208 2024-04-13 20:39:03.023425 0 105 menu_journal_period_tree [["action","ir.action.act_window,120"],["icon","tryton-list"],["name","Journals - Periods"],["parent",80],["sequence",50]] ir.ui.menu account f [["action","ir.action.act_window,120"],["icon","tryton-list"],["name","Journals - Periods"],["parent",80],["sequence",50]] \N \N +1209 2024-04-13 20:39:03.023425 0 121 act_journal_period_tree2 [["domain","[[\\"period.fiscalyear.company.id\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Journals - Periods"],["res_model","account.journal.period"],["search_value","[[\\"state\\", \\"=\\", \\"open\\"]]"]] ir.action.act_window account f [["domain","[[\\"period.fiscalyear.company.id\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Journals - Periods"],["res_model","account.journal.period"],["search_value","[[\\"state\\", \\"=\\", \\"open\\"]]"]] \N \N +1210 2024-04-13 20:39:03.023425 0 147 act_journal_period_tree2_view1 [["act_window",121],["sequence",10],["view",229]] ir.action.act_window.view account f [["act_window",121],["sequence",10],["view",229]] \N \N +1211 2024-04-13 20:39:03.023425 0 106 menu_journal_period_tree2 [["action","ir.action.act_window,121"],["icon","tryton-list"],["name","Journals - Periods"],["parent",78],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,121"],["icon","tryton-list"],["name","Journals - Periods"],["parent",78],["sequence",20]] \N \N +1212 2024-04-13 20:39:03.023425 0 122 act_journal_period_form_close [["name","Close Journals - Periods"],["res_model","account.journal.period"],["search_value","[[\\"state\\", \\"=\\", \\"open\\"]]"]] ir.action.act_window account f [["name","Close Journals - Periods"],["res_model","account.journal.period"],["search_value","[[\\"state\\", \\"=\\", \\"open\\"]]"]] \N \N +1213 2024-04-13 20:39:03.023425 0 148 act_journal_period_form_close_view1 [["act_window",122],["sequence",10],["view",230]] ir.action.act_window.view account f [["act_window",122],["sequence",10],["view",230]] \N \N +1214 2024-04-13 20:39:03.023425 0 107 menu_close_journal_period [["action","ir.action.act_window,122"],["icon","tryton-list"],["name","Close Journals - Periods"],["parent",79],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,122"],["icon","tryton-list"],["name","Close Journals - Periods"],["parent",79],["sequence",20]] \N \N +1215 2024-04-13 20:39:03.023425 0 91 access_journal_period [["model",160],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",160],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1216 2024-04-13 20:39:03.023425 0 92 access_journal_period_account [["group",6],["model",160],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",6],["model",160],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1291 2024-04-13 20:39:03.023425 0 248 reconcile_writeoff_view_list [["model","account.move.reconcile.write_off"],["name","writeoff_tree"],["type","tree"]] ir.ui.view account f [["model","account.move.reconcile.write_off"],["name","writeoff_tree"],["type","tree"]] \N \N +1217 2024-04-13 20:39:03.023425 0 93 access_journal_period_account_admin [["group",8],["model",160],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",160],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1218 2024-04-13 20:39:03.023425 0 26 journal_period_open_button [["model",160],["name","open"]] ir.model.button account f [["model",160],["name","open"]] \N \N +1219 2024-04-13 20:39:03.023425 0 27 journal_period_close_button [["model",160],["name","close"]] ir.model.button account f [["model",160],["name","close"]] \N \N +1220 2024-04-13 20:39:03.023425 0 28 journal_period_reopen_button [["model",160],["name","reopen"]] ir.model.button account f [["model",160],["name","reopen"]] \N \N +1221 2024-04-13 20:39:03.023425 0 1 journal_revenue [["code","REV"],["name","Revenue"],["type","revenue"]] account.journal account t [["code","REV"],["name","Revenue"],["type","revenue"]] \N \N +1222 2024-04-13 20:39:03.023425 0 2 journal_expense [["code","EXP"],["name","Expense"],["type","expense"]] account.journal account t [["code","EXP"],["name","Expense"],["type","expense"]] \N \N +1223 2024-04-13 20:39:03.023425 0 3 journal_cash [["code","CASH"],["name","Cash"],["type","cash"]] account.journal account t [["code","CASH"],["name","Cash"],["type","cash"]] \N \N +1224 2024-04-13 20:39:03.023425 0 4 journal_stock [["code","STO"],["name","Stock"],["type","general"]] account.journal account t [["code","STO"],["name","Stock"],["type","general"]] \N \N +1225 2024-04-13 20:39:03.023425 0 5 journal_miscellaneous [["code","MISC"],["name","Miscellaneous"],["type","general"]] account.journal account t [["code","MISC"],["name","Miscellaneous"],["type","general"]] \N \N +1226 2024-04-13 20:39:03.023425 0 6 journal_currency_exchange [["code","EXC"],["name","Currency Exchange"],["type","write-off"]] account.journal account t [["code","EXC"],["name","Currency Exchange"],["type","write-off"]] \N \N +1227 2024-04-13 20:39:03.023425 0 231 move_view_form [["model","account.move"],["name","move_form"],["type","form"]] ir.ui.view account f [["model","account.move"],["name","move_form"],["type","form"]] \N \N +1228 2024-04-13 20:39:03.023425 0 232 move_view_tree [["model","account.move"],["name","move_tree"],["type","tree"]] ir.ui.view account f [["model","account.move"],["name","move_tree"],["type","tree"]] \N \N +1229 2024-04-13 20:39:03.023425 0 123 act_move_form [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Account Moves"],["res_model","account.move"],["search_value","[[\\"create_date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"DateTime\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dh\\": 0, \\"dm\\": 0, \\"dms\\": 0, \\"ds\\": 0, \\"dy\\": -1, \\"h\\": 0, \\"m\\": 0, \\"ms\\": 0, \\"s\\": 0, \\"start\\": null, \\"y\\": null}]]"]] ir.action.act_window account f [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Account Moves"],["res_model","account.move"],["search_value","[[\\"create_date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"DateTime\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dh\\": 0, \\"dm\\": 0, \\"dms\\": 0, \\"ds\\": 0, \\"dy\\": -1, \\"h\\": 0, \\"m\\": 0, \\"ms\\": 0, \\"s\\": 0, \\"start\\": null, \\"y\\": null}]]"]] \N \N +1230 2024-04-13 20:39:03.023425 0 149 act_move_form_view1 [["act_window",123],["sequence",10],["view",232]] ir.action.act_window.view account f [["act_window",123],["sequence",10],["view",232]] \N \N +1231 2024-04-13 20:39:03.023425 0 150 act_move_form_view2 [["act_window",123],["sequence",20],["view",231]] ir.action.act_window.view account f [["act_window",123],["sequence",20],["view",231]] \N \N +1232 2024-04-13 20:39:03.023425 0 108 menu_move_form [["action","ir.action.act_window,123"],["icon","tryton-list"],["name","Account Moves"],["parent",78],["sequence",50]] ir.ui.menu account f [["action","ir.action.act_window,123"],["icon","tryton-list"],["name","Account Moves"],["parent",78],["sequence",50]] \N \N +1233 2024-04-13 20:39:03.023425 0 18 rule_group_move_companies [["global_p",true],["model",161],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",161],["name","User in companies"]] \N \N +1234 2024-04-13 20:39:03.023425 0 22 rule_move_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",18]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",18]] \N \N +1235 2024-04-13 20:39:03.023425 0 94 access_move [["model",161],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access account f [["model",161],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1236 2024-04-13 20:39:03.023425 0 95 access_move_account [["group",6],["model",161],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",6],["model",161],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1237 2024-04-13 20:39:03.023425 0 96 access_move_account_admin [["group",8],["model",161],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",161],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1238 2024-04-13 20:39:03.023425 0 29 move_post_button [["model",161],["name","post"],["string","Post"]] ir.model.button account f [["model",161],["name","post"],["string","Post"]] \N \N +1239 2024-04-13 20:39:03.023425 0 3 sequence_type_account_move [["name","Account Move"]] ir.sequence.type account f [["name","Account Move"]] \N \N +1240 2024-04-13 20:39:03.023425 0 5 sequence_type_account_move_group_admin [["group",1],["sequence_type",3]] ir.sequence.type-res.group account f [["group",1],["sequence_type",3]] \N \N +1241 2024-04-13 20:39:03.023425 0 6 sequence_type_account_move_group_account_admin [["group",8],["sequence_type",3]] ir.sequence.type-res.group account f [["group",8],["sequence_type",3]] \N \N +1242 2024-04-13 20:39:03.023425 0 233 move_reconciliation_view_form [["model","account.move.reconciliation"],["name","move_reconciliation_form"],["type","form"]] ir.ui.view account f [["model","account.move.reconciliation"],["name","move_reconciliation_form"],["type","form"]] \N \N +1243 2024-04-13 20:39:03.023425 0 234 move_reconciliation_view_tree [["model","account.move.reconciliation"],["name","move_reconciliation_tree"],["type","tree"]] ir.ui.view account f [["model","account.move.reconciliation"],["name","move_reconciliation_tree"],["type","tree"]] \N \N +1292 2024-04-13 20:39:03.023425 0 133 act_reconcile_writeoff_form [["name","Write-off Methods"],["res_model","account.move.reconcile.write_off"]] ir.action.act_window account f [["name","Write-off Methods"],["res_model","account.move.reconcile.write_off"]] \N \N +1293 2024-04-13 20:39:03.023425 0 154 act_reconcile_writeoff_form_view1 [["act_window",133],["sequence",10],["view",248]] ir.action.act_window.view account f [["act_window",133],["sequence",10],["view",248]] \N \N +1466 2024-04-13 20:39:03.023425 0 6 account_template_cash_en [["name","Main Cash"],["parent",1],["type",4]] account.account.template account f [["name","Main Cash"],["parent",1],["type",4]] \N \N +1244 2024-04-13 20:39:03.023425 0 124 act_move_reconciliation_lines [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"reconciliation\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"reconciliation\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Reconciliation Lines"],["res_model","account.move.line"]] ir.action.act_window account f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"reconciliation\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"reconciliation\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Reconciliation Lines"],["res_model","account.move.line"]] \N \N +1245 2024-04-13 20:39:03.023425 0 119 act_move_reconciliation_lines_keyword1 [["action",124],["keyword","form_relate"],["model","account.move.reconciliation,-1"]] ir.action.keyword account f [["action",124],["keyword","form_relate"],["model","account.move.reconciliation,-1"]] \N \N +1246 2024-04-13 20:39:03.023425 0 19 rule_group_move_reconciliation_companies [["global_p",true],["model",162],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",162],["name","User in companies"]] \N \N +1247 2024-04-13 20:39:03.023425 0 23 rule_move_reconciliation_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",19]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",19]] \N \N +1248 2024-04-13 20:39:03.023425 0 97 access_move_reconciliation [["model",162],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access account f [["model",162],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1249 2024-04-13 20:39:03.023425 0 98 access_move_reconciliation_account [["group",6],["model",162],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["group",6],["model",162],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1250 2024-04-13 20:39:03.023425 0 99 access_move_reconciliation_account_admin [["group",8],["model",162],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",162],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1251 2024-04-13 20:39:03.023425 0 4 sequence_type_account_move_reconciliation [["name","Account Move Reconciliation"]] ir.sequence.type account f [["name","Account Move Reconciliation"]] \N \N +1252 2024-04-13 20:39:03.023425 0 7 sequence_type_account_move_reconciliation_group_admin [["group",1],["sequence_type",4]] ir.sequence.type-res.group account f [["group",1],["sequence_type",4]] \N \N +1253 2024-04-13 20:39:03.023425 0 8 sequence_type_account_move_reconciliation_group_account_admin [["group",8],["sequence_type",4]] ir.sequence.type-res.group account f [["group",8],["sequence_type",4]] \N \N +1254 2024-04-13 20:39:03.023425 0 3 sequence_account_move_reconciliation [["name","Default Account Move Reconciliation"],["sequence_type",4]] ir.sequence account f [["name","Default Account Move Reconciliation"],["sequence_type",4]] \N \N +1255 2024-04-13 20:39:03.023425 0 235 move_line_view_form [["model","account.move.line"],["name","move_line_form"],["priority",10],["type","form"]] ir.ui.view account f [["model","account.move.line"],["name","move_line_form"],["priority",10],["type","form"]] \N \N +1256 2024-04-13 20:39:03.023425 0 236 move_line_view_form_move [["model","account.move.line"],["name","move_line_form_move"],["priority",20],["type","form"]] ir.ui.view account f [["model","account.move.line"],["name","move_line_form_move"],["priority",20],["type","form"]] \N \N +1257 2024-04-13 20:39:03.023425 0 237 move_line_view_tree [["model","account.move.line"],["name","move_line_tree"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.move.line"],["name","move_line_tree"],["priority",10],["type","tree"]] \N \N +1258 2024-04-13 20:39:03.023425 0 238 move_line_view_tree_move [["model","account.move.line"],["name","move_line_tree_move"],["priority",20],["type","tree"]] ir.ui.view account f [["model","account.move.line"],["name","move_line_tree_move"],["priority",20],["type","tree"]] \N \N +1259 2024-04-13 20:39:03.023425 0 239 move_line_view_list_payable_receivable [["model","account.move.line"],["name","move_line_list_payable_receivable"],["priority",30],["type","tree"]] ir.ui.view account f [["model","account.move.line"],["name","move_line_list_payable_receivable"],["priority",30],["type","tree"]] \N \N +1260 2024-04-13 20:39:03.023425 0 240 move_line_view_list_reconcile [["model","account.move.line"],["name","move_line_list_reconcile"],["priority",30],["type","tree"]] ir.ui.view account f [["model","account.move.line"],["name","move_line_list_reconcile"],["priority",30],["type","tree"]] \N \N +1261 2024-04-13 20:39:03.023425 0 125 act_move_line_form [["domain","[[\\"account\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}], [\\"state\\", \\"=\\", \\"valid\\"]]"],["name","Account Move Lines"],["res_model","account.move.line"]] ir.action.act_window account f [["domain","[[\\"account\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}], [\\"state\\", \\"=\\", \\"valid\\"]]"],["name","Account Move Lines"],["res_model","account.move.line"]] \N \N +1262 2024-04-13 20:39:03.023425 0 151 act_move_line_form_view1 [["act_window",125],["sequence",10],["view",237]] ir.action.act_window.view account f [["act_window",125],["sequence",10],["view",237]] \N \N +1263 2024-04-13 20:39:03.023425 0 152 act_move_line_form_view2 [["act_window",125],["sequence",20],["view",235]] ir.action.act_window.view account f [["act_window",125],["sequence",20],["view",235]] \N \N +1264 2024-04-13 20:39:03.023425 0 126 act_open_account [["model","account.account"],["name","Open Move Account"],["wiz_name","account.move.open_account"]] ir.action.wizard account f [["model","account.account"],["name","Open Move Account"],["wiz_name","account.move.open_account"]] \N \N +1265 2024-04-13 20:39:03.023425 0 120 act_open_account_keyword1 [["action",126],["keyword","tree_open"],["model","account.account,-1"]] ir.action.keyword account f [["action",126],["keyword","tree_open"],["model","account.account,-1"]] \N \N +1266 2024-04-13 20:39:03.023425 0 121 act_open_account_keyword2 [["action",126],["keyword","form_relate"],["model","account.account,-1"]] ir.action.keyword account f [["action",126],["keyword","form_relate"],["model","account.account,-1"]] \N \N +1294 2024-04-13 20:39:03.023425 0 155 act_reconcile_writeoff_form_view2 [["act_window",133],["sequence",20],["view",247]] ir.action.act_window.view account f [["act_window",133],["sequence",20],["view",247]] \N \N +1295 2024-04-13 20:39:03.023425 0 111 menu_reconcile_writeoff_form [["action","ir.action.act_window,133"],["icon","tryton-list"],["name","Write-off Methods"],["parent",102],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,133"],["icon","tryton-list"],["name","Write-off Methods"],["parent",102],["sequence",20]] \N \N +1267 2024-04-13 20:39:03.023425 0 127 act_move_line_payable_receivable [["context_domain","[[\\"OR\\", {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Eval\\", \\"d\\": true, \\"v\\": \\"receivable\\"}, \\"e\\": [\\"id\\", \\"<\\", 0], \\"t\\": [\\"account.type.receivable\\", \\"=\\", true]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Eval\\", \\"d\\": true, \\"v\\": \\"payable\\"}, \\"e\\": [\\"id\\", \\"<\\", 0], \\"t\\": [\\"account.type.payable\\", \\"=\\", true]}], {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Eval\\", \\"d\\": false, \\"v\\": \\"reconciled\\"}, \\"e\\": [\\"reconciliation\\", \\"=\\", null], \\"t\\": []}]"],["context_model","account.move.line.receivable_payable.context"],["domain","[[\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], [\\"company\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Payable/Receivable Lines"],["order","[[\\"maturity_date\\", \\"ASC\\"], [\\"date\\", \\"DESC\\"], [\\"id\\", \\"DESC\\"]]"],["res_model","account.move.line"],["search_value",""]] ir.action.act_window account f [["context_domain","[[\\"OR\\", {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Eval\\", \\"d\\": true, \\"v\\": \\"receivable\\"}, \\"e\\": [\\"id\\", \\"<\\", 0], \\"t\\": [\\"account.type.receivable\\", \\"=\\", true]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Eval\\", \\"d\\": true, \\"v\\": \\"payable\\"}, \\"e\\": [\\"id\\", \\"<\\", 0], \\"t\\": [\\"account.type.payable\\", \\"=\\", true]}], {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Eval\\", \\"d\\": false, \\"v\\": \\"reconciled\\"}, \\"e\\": [\\"reconciliation\\", \\"=\\", null], \\"t\\": []}]"],["context_model","account.move.line.receivable_payable.context"],["domain","[[\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], [\\"company\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Payable/Receivable Lines"],["order","[[\\"maturity_date\\", \\"ASC\\"], [\\"date\\", \\"DESC\\"], [\\"id\\", \\"DESC\\"]]"],["res_model","account.move.line"],["search_value",""]] \N \N +1268 2024-04-13 20:39:03.023425 0 153 act_move_line_payable_receivable_view1 [["act_window",127],["sequence",10],["view",239]] ir.action.act_window.view account f [["act_window",127],["sequence",10],["view",239]] \N \N +1269 2024-04-13 20:39:03.023425 0 122 act_move_line_payable_receivable_keyword1 [["action",127],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword account f [["action",127],["keyword","form_relate"],["model","party.party,-1"]] \N \N +1270 2024-04-13 20:39:03.023425 0 9 act_move_line_payable-group_account [["action",127],["group",6]] ir.action-res.group account f [["action",127],["group",6]] \N \N +1271 2024-04-13 20:39:03.023425 0 241 move_line_receivable_payable_context_view_form [["model","account.move.line.receivable_payable.context"],["name","move_line_receivable_payable_context_form"],["type","form"]] ir.ui.view account f [["model","account.move.line.receivable_payable.context"],["name","move_line_receivable_payable_context_form"],["type","form"]] \N \N +1272 2024-04-13 20:39:03.023425 0 242 open_journal_ask_view_form [["model","account.move.open_journal.ask"],["name","open_journal_ask_form"],["type","form"]] ir.ui.view account f [["model","account.move.open_journal.ask"],["name","open_journal_ask_form"],["type","form"]] \N \N +1273 2024-04-13 20:39:03.023425 0 128 act_open_journal [["name","Open Journal"],["wiz_name","account.move.open_journal"]] ir.action.wizard account f [["name","Open Journal"],["wiz_name","account.move.open_journal"]] \N \N +1274 2024-04-13 20:39:03.023425 0 123 act_open_journal_keyword [["action",128],["keyword","tree_open"],["model","account.journal.period,-1"]] ir.action.keyword account f [["action",128],["keyword","tree_open"],["model","account.journal.period,-1"]] \N \N +1275 2024-04-13 20:39:03.023425 0 109 menu_open_journal [["action","ir.action.wizard,128"],["icon","tryton-list"],["name","Open Journal"],["parent",78],["sequence",20]] ir.ui.menu account f [["action","ir.action.wizard,128"],["icon","tryton-list"],["name","Open Journal"],["parent",78],["sequence",20]] \N \N +1276 2024-04-13 20:39:03.023425 0 243 reconcile_lines_writeoff_view_form [["model","account.move.reconcile_lines.writeoff"],["name","reconcile_lines_writeoff_form"],["type","form"]] ir.ui.view account f [["model","account.move.reconcile_lines.writeoff"],["name","reconcile_lines_writeoff_form"],["type","form"]] \N \N +1277 2024-04-13 20:39:03.023425 0 129 act_reconcile_lines [["model",""],["name","Reconcile Lines"],["wiz_name","account.move.reconcile_lines"]] ir.action.wizard account f [["model",""],["name","Reconcile Lines"],["wiz_name","account.move.reconcile_lines"]] \N \N +1278 2024-04-13 20:39:03.023425 0 125 act_reconcile_lines_keyword [["action",129],["keyword","form_action"],["model","account.move.line,-1"]] ir.action.keyword account f [["action",129],["keyword","form_action"],["model","account.move.line,-1"]] \N \N +1279 2024-04-13 20:39:03.023425 0 126 act_reconcile_lines_keyword_general_ledger_line [["action",129],["keyword","form_action"],["model","account.general_ledger.line,-1"]] ir.action.keyword account f [["action",129],["keyword","form_action"],["model","account.general_ledger.line,-1"]] \N \N +1280 2024-04-13 20:39:03.023425 0 130 act_unreconcile_lines [["model",""],["name","Unreconcile Lines"],["wiz_name","account.move.unreconcile_lines"]] ir.action.wizard account f [["model",""],["name","Unreconcile Lines"],["wiz_name","account.move.unreconcile_lines"]] \N \N +1281 2024-04-13 20:39:03.023425 0 127 act_unreconcile_lines_keyword [["action",130],["keyword","form_action"],["model","account.move.line,-1"]] ir.action.keyword account f [["action",130],["keyword","form_action"],["model","account.move.line,-1"]] \N \N +1282 2024-04-13 20:39:03.023425 0 128 act_unreconcile_lines_keyword_general_ledger_line [["action",130],["keyword","form_action"],["model","account.general_ledger.line,-1"]] ir.action.keyword account f [["action",130],["keyword","form_action"],["model","account.general_ledger.line,-1"]] \N \N +1283 2024-04-13 20:39:03.023425 0 131 act_reconcile [["name","Reconcile Accounts"],["window",true],["wiz_name","account.reconcile"]] ir.action.wizard account f [["name","Reconcile Accounts"],["window",true],["wiz_name","account.reconcile"]] \N \N +1284 2024-04-13 20:39:03.023425 0 110 menu_reconcile [["action","ir.action.wizard,131"],["icon","tryton-launch"],["name","Reconcile Accounts"],["parent",79],["sequence",20]] ir.ui.menu account f [["action","ir.action.wizard,131"],["icon","tryton-launch"],["name","Reconcile Accounts"],["parent",79],["sequence",20]] \N \N +1285 2024-04-13 20:39:03.023425 0 244 reconcile_start_view_form [["model","account.reconcile.start"],["name","reconcile_start_form"],["type","form"]] ir.ui.view account f [["model","account.reconcile.start"],["name","reconcile_start_form"],["type","form"]] \N \N +1286 2024-04-13 20:39:03.023425 0 245 reconcile_show_view_form [["model","account.reconcile.show"],["name","reconcile_show_form"],["type","form"]] ir.ui.view account f [["model","account.reconcile.show"],["name","reconcile_show_form"],["type","form"]] \N \N +1287 2024-04-13 20:39:03.023425 0 132 act_cancel_moves [["name","Cancel Moves"],["wiz_name","account.move.cancel"]] ir.action.wizard account f [["name","Cancel Moves"],["wiz_name","account.move.cancel"]] \N \N +1288 2024-04-13 20:39:03.023425 0 130 act_cancel_moves_keyword1 [["action",132],["keyword","form_action"],["model","account.move,-1"]] ir.action.keyword account f [["action",132],["keyword","form_action"],["model","account.move,-1"]] \N \N +1289 2024-04-13 20:39:03.023425 0 246 move_cancel_default_view_form [["model","account.move.cancel.default"],["name","move_cancel_default_form"],["type","form"]] ir.ui.view account f [["model","account.move.cancel.default"],["name","move_cancel_default_form"],["type","form"]] \N \N +1290 2024-04-13 20:39:03.023425 0 247 reconcile_writeoff_view_form [["model","account.move.reconcile.write_off"],["name","writeoff_form"],["type","form"]] ir.ui.view account f [["model","account.move.reconcile.write_off"],["name","writeoff_form"],["type","form"]] \N \N +1297 2024-04-13 20:39:03.023425 0 24 rule_reconcile_writeoff_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",20]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",20]] \N \N +1298 2024-04-13 20:39:03.023425 0 100 access_reconcile_writeoff [["model",166],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",166],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1299 2024-04-13 20:39:03.023425 0 101 access_reconcile_writeoff_account_admin [["group",8],["model",166],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",166],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1300 2024-04-13 20:39:03.023425 0 134 act_group_lines_wizard [["name","Group Lines"],["wiz_name","account.move.line.group"]] ir.action.wizard account f [["name","Group Lines"],["wiz_name","account.move.line.group"]] \N \N +1301 2024-04-13 20:39:03.023425 0 132 act_group_lines_keyword1 [["action",134],["keyword","form_action"],["model","account.move.line,-1"]] ir.action.keyword account f [["action",134],["keyword","form_action"],["model","account.move.line,-1"]] \N \N +1302 2024-04-13 20:39:03.023425 0 249 move_line_group_start_view_form [["model","account.move.line.group.start"],["name","move_line_group_start_form"],["type","form"]] ir.ui.view account f [["model","account.move.line.group.start"],["name","move_line_group_start_form"],["type","form"]] \N \N +1303 2024-04-13 20:39:03.023425 0 135 act_move_form_grouping [["name","Grouped Account Move"],["res_model","account.move"]] ir.action.act_window account f [["name","Grouped Account Move"],["res_model","account.move"]] \N \N +1304 2024-04-13 20:39:03.023425 0 156 act_move_form_grouping_view1 [["act_window",135],["sequence",10],["view",231]] ir.action.act_window.view account f [["act_window",135],["sequence",10],["view",231]] \N \N +1305 2024-04-13 20:39:03.023425 0 136 act_reschedule_lines_wizard [["model","account.move.line"],["name","Reschedule Lines"],["wiz_name","account.move.line.reschedule"]] ir.action.wizard account f [["model","account.move.line"],["name","Reschedule Lines"],["wiz_name","account.move.line.reschedule"]] \N \N +1306 2024-04-13 20:39:03.023425 0 133 act_reschedule_lines_keyword1 [["action",136],["keyword","form_action"],["model","account.move.line,-1"]] ir.action.keyword account f [["action",136],["keyword","form_action"],["model","account.move.line,-1"]] \N \N +1307 2024-04-13 20:39:03.023425 0 250 move_line_reschedule_start_view_form [["model","account.move.line.reschedule.start"],["name","move_line_reschedule_start_form"],["type","form"]] ir.ui.view account f [["model","account.move.line.reschedule.start"],["name","move_line_reschedule_start_form"],["type","form"]] \N \N +1308 2024-04-13 20:39:03.023425 0 251 move_line_reschedule_preview_view_form [["model","account.move.line.reschedule.preview"],["name","move_line_reschedule_preview_form"],["type","form"]] ir.ui.view account f [["model","account.move.line.reschedule.preview"],["name","move_line_reschedule_preview_form"],["type","form"]] \N \N +1309 2024-04-13 20:39:03.023425 0 252 move_line_reschedule_term_view_list [["model","account.move.line.reschedule.term"],["name","move_line_reschedule_term_list"],["type","tree"]] ir.ui.view account f [["model","account.move.line.reschedule.term"],["name","move_line_reschedule_term_list"],["type","tree"]] \N \N +1310 2024-04-13 20:39:03.023425 0 137 act_move_form_rescheduling [["name","Reschedule Account Move"],["res_model","account.move"]] ir.action.act_window account f [["name","Reschedule Account Move"],["res_model","account.move"]] \N \N +1311 2024-04-13 20:39:03.023425 0 157 act_move_form_rescheduling_view1 [["act_window",137],["sequence",10],["view",231]] ir.action.act_window.view account f [["act_window",137],["sequence",10],["view",231]] \N \N +1312 2024-04-13 20:39:03.023425 0 138 act_delegate_lines_wizard [["model","account.move.line"],["name","Delegate Lines"],["wiz_name","account.move.line.delegate"]] ir.action.wizard account f [["model","account.move.line"],["name","Delegate Lines"],["wiz_name","account.move.line.delegate"]] \N \N +1313 2024-04-13 20:39:03.023425 0 134 act_delegate_lines_keyword1 [["action",138],["keyword","form_action"],["model","account.move.line,-1"]] ir.action.keyword account f [["action",138],["keyword","form_action"],["model","account.move.line,-1"]] \N \N +1314 2024-04-13 20:39:03.023425 0 253 move_line_delegate_start_view_form [["model","account.move.line.delegate.start"],["name","move_line_delegate_start_form"],["type","form"]] ir.ui.view account f [["model","account.move.line.delegate.start"],["name","move_line_delegate_start_form"],["type","form"]] \N \N +1315 2024-04-13 20:39:03.023425 0 139 act_move_form_delegate [["name","Delegate Account Move"],["res_model","account.move"]] ir.action.act_window account f [["name","Delegate Account Move"],["res_model","account.move"]] \N \N +1316 2024-04-13 20:39:03.023425 0 158 act_move_form_delegate_view1 [["act_window",139],["sequence",10],["view",231]] ir.action.act_window.view account f [["act_window",139],["sequence",10],["view",231]] \N \N +1317 2024-04-13 20:39:03.023425 0 140 report_general_journal [["model","account.move"],["name","General Journal"],["report","account/general_journal.fodt"],["report_name","account.move.general_journal"]] ir.action.report account f [["model","account.move"],["name","General Journal"],["report","account/general_journal.fodt"],["report_name","account.move.general_journal"]] \N \N +1318 2024-04-13 20:39:03.023425 0 135 report_general_journal_keyword [["action",140],["keyword","form_print"],["model","account.move,-1"]] ir.action.keyword account f [["action",140],["keyword","form_print"],["model","account.move,-1"]] \N \N +1319 2024-04-13 20:39:03.023425 0 254 move_template_view_form [["model","account.move.template"],["name","move_template_form"],["type","form"]] ir.ui.view account f [["model","account.move.template"],["name","move_template_form"],["type","form"]] \N \N +1320 2024-04-13 20:39:03.023425 0 255 move_template_view_list [["model","account.move.template"],["name","move_template_list"],["type","tree"]] ir.ui.view account f [["model","account.move.template"],["name","move_template_list"],["type","tree"]] \N \N +1321 2024-04-13 20:39:03.023425 0 141 act_move_template_form [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Moves"],["res_model","account.move.template"]] ir.action.act_window account f [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Get\\", \\"d\\": -1, \\"k\\": \\"company\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}]]"],["name","Moves"],["res_model","account.move.template"]] \N \N +1322 2024-04-13 20:39:03.023425 0 159 act_move_template_form_view1 [["act_window",141],["sequence",10],["view",255]] ir.action.act_window.view account f [["act_window",141],["sequence",10],["view",255]] \N \N +1323 2024-04-13 20:39:03.023425 0 160 act_move_template_form_view2 [["act_window",141],["sequence",20],["view",254]] ir.action.act_window.view account f [["act_window",141],["sequence",20],["view",254]] \N \N +1324 2024-04-13 20:39:03.023425 0 112 menu_move_template_form [["action","ir.action.act_window,141"],["icon","tryton-list"],["name","Moves"],["parent",76],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,141"],["icon","tryton-list"],["name","Moves"],["parent",76],["sequence",10]] \N \N +1325 2024-04-13 20:39:03.023425 0 21 rule_group_move_template_companies [["global_p",true],["model",192],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",192],["name","User in companies"]] \N \N +1326 2024-04-13 20:39:03.023425 0 25 rule_move_template_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",21]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",21]] \N \N +1327 2024-04-13 20:39:03.023425 0 102 access_move_template [["model",192],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access account f [["model",192],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1328 2024-04-13 20:39:03.023425 0 103 access_move_template_account [["group",6],["model",192],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["group",6],["model",192],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1329 2024-04-13 20:39:03.023425 0 104 access_move_template_account_admin [["group",8],["model",192],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",192],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1330 2024-04-13 20:39:03.023425 0 256 move_template_keyword_view_form [["model","account.move.template.keyword"],["name","move_template_keyword_form"],["type","form"]] ir.ui.view account f [["model","account.move.template.keyword"],["name","move_template_keyword_form"],["type","form"]] \N \N +1331 2024-04-13 20:39:03.023425 0 257 move_template_keyword_view_list [["model","account.move.template.keyword"],["name","move_template_keyword_list"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.move.template.keyword"],["name","move_template_keyword_list"],["priority",10],["type","tree"]] \N \N +1332 2024-04-13 20:39:03.023425 0 258 move_template_keyword_view_list_sequence [["model","account.move.template.keyword"],["name","move_template_keyword_list_sequence"],["priority",20],["type","tree"]] ir.ui.view account f [["model","account.move.template.keyword"],["name","move_template_keyword_list_sequence"],["priority",20],["type","tree"]] \N \N +1333 2024-04-13 20:39:03.023425 0 259 move_line_template_view_form [["model","account.move.line.template"],["name","move_line_template_form"],["type","form"]] ir.ui.view account f [["model","account.move.line.template"],["name","move_line_template_form"],["type","form"]] \N \N +1334 2024-04-13 20:39:03.023425 0 260 move_line_template_view_list [["model","account.move.line.template"],["name","move_line_template_list"],["type","tree"]] ir.ui.view account f [["model","account.move.line.template"],["name","move_line_template_list"],["type","tree"]] \N \N +1335 2024-04-13 20:39:03.023425 0 261 tax_line_template_view_form [["model","account.tax.line.template"],["name","tax_line_template_form"],["type","form"]] ir.ui.view account f [["model","account.tax.line.template"],["name","tax_line_template_form"],["type","form"]] \N \N +1336 2024-04-13 20:39:03.023425 0 262 tax_line_template_view_list [["model","account.tax.line.template"],["name","tax_line_template_list"],["type","tree"]] ir.ui.view account f [["model","account.tax.line.template"],["name","tax_line_template_list"],["type","tree"]] \N \N +1337 2024-04-13 20:39:03.023425 0 263 move_template_create_template_view_form [["model","account.move.template.create.template"],["name","move_template_create_template_form"],["type","form"]] ir.ui.view account f [["model","account.move.template.create.template"],["name","move_template_create_template_form"],["type","form"]] \N \N +1338 2024-04-13 20:39:03.023425 0 142 act_move_template_create [["name","Create Move from Template"],["wiz_name","account.move.template.create"]] ir.action.wizard account f [["name","Create Move from Template"],["wiz_name","account.move.template.create"]] \N \N +1339 2024-04-13 20:39:03.023425 0 113 menu_move_template_create [["action","ir.action.wizard,142"],["icon","tryton-launch"],["name","Create Move from Template"],["parent",78],["sequence",20]] ir.ui.menu account f [["action","ir.action.wizard,142"],["icon","tryton-launch"],["name","Create Move from Template"],["parent",78],["sequence",20]] \N \N +1340 2024-04-13 20:39:03.023425 0 143 act_move_from_template [["name","Account Move"],["res_model","account.move"]] ir.action.act_window account f [["name","Account Move"],["res_model","account.move"]] \N \N +1341 2024-04-13 20:39:03.023425 0 161 act_move_from_template_view1 [["act_window",143],["sequence",10],["view",231]] ir.action.act_window.view account f [["act_window",143],["sequence",10],["view",231]] \N \N +1342 2024-04-13 20:39:03.023425 0 114 menu_taxes [["icon","tryton-folder"],["name","Taxes"],["parent",75],["sequence",50]] ir.ui.menu account f [["icon","tryton-folder"],["name","Taxes"],["parent",75],["sequence",50]] \N \N +1343 2024-04-13 20:39:03.023425 0 264 tax_group_view_form [["model","account.tax.group"],["name","tax_group_form"],["type","form"]] ir.ui.view account f [["model","account.tax.group"],["name","tax_group_form"],["type","form"]] \N \N +1344 2024-04-13 20:39:03.023425 0 265 tax_group_view_tree [["model","account.tax.group"],["name","tax_group_tree"],["type","tree"]] ir.ui.view account f [["model","account.tax.group"],["name","tax_group_tree"],["type","tree"]] \N \N +1345 2024-04-13 20:39:03.023425 0 144 act_tax_group_form [["name","Groups"],["res_model","account.tax.group"]] ir.action.act_window account f [["name","Groups"],["res_model","account.tax.group"]] \N \N +1346 2024-04-13 20:39:03.023425 0 162 act_tax_group_form_view1 [["act_window",144],["sequence",10],["view",265]] ir.action.act_window.view account f [["act_window",144],["sequence",10],["view",265]] \N \N +1347 2024-04-13 20:39:03.023425 0 163 act_tax_group_form_view2 [["act_window",144],["sequence",20],["view",264]] ir.action.act_window.view account f [["act_window",144],["sequence",20],["view",264]] \N \N +1348 2024-04-13 20:39:03.023425 0 115 menu_tax_group_form [["action","ir.action.act_window,144"],["icon","tryton-list"],["name","Groups"],["parent",114],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,144"],["icon","tryton-list"],["name","Groups"],["parent",114],["sequence",20]] \N \N +1349 2024-04-13 20:39:03.023425 0 105 access_tax_group [["model",177],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",177],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1350 2024-04-13 20:39:03.023425 0 106 access_tax_group_account_admin [["group",8],["model",177],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",177],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1467 2024-04-13 20:39:03.023425 0 7 account_template_tax_en [["name","Main Tax"],["parent",1],["type",10]] account.account.template account f [["name","Main Tax"],["parent",1],["type",10]] \N \N +1351 2024-04-13 20:39:03.023425 0 266 tax_code_template_view_form [["model","account.tax.code.template"],["name","tax_code_template_form"],["type","form"]] ir.ui.view account f [["model","account.tax.code.template"],["name","tax_code_template_form"],["type","form"]] \N \N +1352 2024-04-13 20:39:03.023425 0 267 tax_code_template_view_tree [["field_childs","childs"],["model","account.tax.code.template"],["name","tax_code_template_tree"],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.tax.code.template"],["name","tax_code_template_tree"],["type","tree"]] \N \N +1353 2024-04-13 20:39:03.023425 0 145 act_tax_code_template_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Tax Codes"],["res_model","account.tax.code.template"]] ir.action.act_window account f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Tax Codes"],["res_model","account.tax.code.template"]] \N \N +1354 2024-04-13 20:39:03.023425 0 164 act_tax_code_template_tree_view1 [["act_window",145],["sequence",10],["view",267]] ir.action.act_window.view account f [["act_window",145],["sequence",10],["view",267]] \N \N +1355 2024-04-13 20:39:03.023425 0 165 act_tax_code_template_tree_view2 [["act_window",145],["sequence",20],["view",266]] ir.action.act_window.view account f [["act_window",145],["sequence",20],["view",266]] \N \N +1356 2024-04-13 20:39:03.023425 0 116 menu_tax_code_template_tree [["action","ir.action.act_window,145"],["icon","tryton-tree"],["name","Tax Codes"],["parent",76],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,145"],["icon","tryton-tree"],["name","Tax Codes"],["parent",76],["sequence",20]] \N \N +1357 2024-04-13 20:39:03.023425 0 107 access_tax_code_template [["model",178],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",178],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1358 2024-04-13 20:39:03.023425 0 268 tax_code_view_form [["model","account.tax.code"],["name","tax_code_form"],["type","form"]] ir.ui.view account f [["model","account.tax.code"],["name","tax_code_form"],["type","form"]] \N \N +1359 2024-04-13 20:39:03.023425 0 269 tax_code_view_tree [["field_childs","childs"],["model","account.tax.code"],["name","tax_code_tree"],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.tax.code"],["name","tax_code_tree"],["type","tree"]] \N \N +1360 2024-04-13 20:39:03.023425 0 270 tax_code_view_list [["model","account.tax.code"],["name","tax_code_list"],["type","tree"]] ir.ui.view account f [["model","account.tax.code"],["name","tax_code_list"],["type","tree"]] \N \N +1361 2024-04-13 20:39:03.023425 0 146 act_tax_code_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Codes"],["res_model","account.tax.code"]] ir.action.act_window account f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Codes"],["res_model","account.tax.code"]] \N \N +1362 2024-04-13 20:39:03.023425 0 166 act_tax_code_tree_view1 [["act_window",146],["sequence",10],["view",269]] ir.action.act_window.view account f [["act_window",146],["sequence",10],["view",269]] \N \N +1363 2024-04-13 20:39:03.023425 0 167 act_tax_code_tree_view2 [["act_window",146],["sequence",20],["view",268]] ir.action.act_window.view account f [["act_window",146],["sequence",20],["view",268]] \N \N +1364 2024-04-13 20:39:03.023425 0 117 menu_tax_code_tree [["action","ir.action.act_window,146"],["icon","tryton-tree"],["name","Codes"],["parent",114],["sequence",20]] ir.ui.menu account f [["action","ir.action.act_window,146"],["icon","tryton-tree"],["name","Codes"],["parent",114],["sequence",20]] \N \N +1365 2024-04-13 20:39:03.023425 0 147 act_tax_code_list [["name","Codes"],["res_model","account.tax.code"]] ir.action.act_window account f [["name","Codes"],["res_model","account.tax.code"]] \N \N +1366 2024-04-13 20:39:03.023425 0 168 act_tax_code_list_view1 [["act_window",147],["sequence",10],["view",270]] ir.action.act_window.view account f [["act_window",147],["sequence",10],["view",270]] \N \N +1367 2024-04-13 20:39:03.023425 0 169 act_tax_code_list_view2 [["act_window",147],["sequence",20],["view",268]] ir.action.act_window.view account f [["act_window",147],["sequence",20],["view",268]] \N \N +1368 2024-04-13 20:39:03.023425 0 118 menu_tax_code_list [["action","ir.action.act_window,147"],["icon","tryton-list"],["name","Codes"],["parent",117],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,147"],["icon","tryton-list"],["name","Codes"],["parent",117],["sequence",10]] \N \N +1369 2024-04-13 20:39:03.023425 0 271 tax_code_view_tree_chart [["field_childs","childs"],["model","account.tax.code"],["name","tax_code_tree_chart"],["type","tree"]] ir.ui.view account f [["field_childs","childs"],["model","account.tax.code"],["name","tax_code_tree_chart"],["type","tree"]] \N \N +1370 2024-04-13 20:39:03.023425 0 148 act_tax_code_tree_chart [["context_model","account.tax.code.context"],["domain","[[\\"parent\\", \\"=\\", null], [\\"context_company\\", \\"=\\", true]]"],["name","Chart of Tax Codes"],["res_model","account.tax.code"]] ir.action.act_window account f [["context_model","account.tax.code.context"],["domain","[[\\"parent\\", \\"=\\", null], [\\"context_company\\", \\"=\\", true]]"],["name","Chart of Tax Codes"],["res_model","account.tax.code"]] \N \N +1371 2024-04-13 20:39:03.023425 0 170 act_tax_code_tree_chart_view1 [["act_window",148],["sequence",10],["view",271]] ir.action.act_window.view account f [["act_window",148],["sequence",10],["view",271]] \N \N +1372 2024-04-13 20:39:03.023425 0 119 menu_tax_code_tree_chart [["action","ir.action.act_window,148"],["icon","tryton-tree"],["name","Chart of Tax Codes"],["parent",80],["sequence",30]] ir.ui.menu account f [["action","ir.action.act_window,148"],["icon","tryton-tree"],["name","Chart of Tax Codes"],["parent",80],["sequence",30]] \N \N +1373 2024-04-13 20:39:03.023425 0 272 tax_code_context_view_form [["model","account.tax.code.context"],["name","tax_code_context_form"],["type","form"]] ir.ui.view account f [["model","account.tax.code.context"],["name","tax_code_context_form"],["type","form"]] \N \N +1374 2024-04-13 20:39:03.023425 0 108 access_tax_code [["model",179],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",179],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1375 2024-04-13 20:39:03.023425 0 109 access_tax_code_account_admin [["group",8],["model",179],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",179],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1376 2024-04-13 20:39:03.023425 0 22 rule_group_tax_code_companies [["global_p",true],["model",179],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",179],["name","User in companies"]] \N \N +1377 2024-04-13 20:39:03.023425 0 26 rule_tax_code_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",22]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",22]] \N \N +1378 2024-04-13 20:39:03.023425 0 273 tax_code_line_template_view_form [["model","account.tax.code.line.template"],["name","tax_code_line_template_form"],["type","form"]] ir.ui.view account f [["model","account.tax.code.line.template"],["name","tax_code_line_template_form"],["type","form"]] \N \N +1379 2024-04-13 20:39:03.023425 0 274 tax_code_line_template_view_list [["model","account.tax.code.line.template"],["name","tax_code_line_template_list"],["type","tree"]] ir.ui.view account f [["model","account.tax.code.line.template"],["name","tax_code_line_template_list"],["type","tree"]] \N \N +1380 2024-04-13 20:39:03.023425 0 275 tax_code_line_view_form [["model","account.tax.code.line"],["name","tax_code_line_form"],["type","form"]] ir.ui.view account f [["model","account.tax.code.line"],["name","tax_code_line_form"],["type","form"]] \N \N +1381 2024-04-13 20:39:03.023425 0 276 tax_code_line_view_list [["model","account.tax.code.line"],["name","tax_code_line_list"],["type","tree"]] ir.ui.view account f [["model","account.tax.code.line"],["name","tax_code_line_list"],["type","tree"]] \N \N +1382 2024-04-13 20:39:03.023425 0 277 tax_template_view_form [["model","account.tax.template"],["name","tax_template_form"],["type","form"]] ir.ui.view account f [["model","account.tax.template"],["name","tax_template_form"],["type","form"]] \N \N +1383 2024-04-13 20:39:03.023425 0 278 tax_template_view_list [["model","account.tax.template"],["name","tax_template_list"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.tax.template"],["name","tax_template_list"],["priority",10],["type","tree"]] \N \N +1384 2024-04-13 20:39:03.023425 0 149 act_tax_template_list [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Taxes"],["res_model","account.tax.template"]] ir.action.act_window account f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Taxes"],["res_model","account.tax.template"]] \N \N +1385 2024-04-13 20:39:03.023425 0 171 act_tax_template_list_view1 [["act_window",149],["sequence",10],["view",278]] ir.action.act_window.view account f [["act_window",149],["sequence",10],["view",278]] \N \N +1386 2024-04-13 20:39:03.023425 0 172 act_tax_template_list_view2 [["act_window",149],["sequence",20],["view",277]] ir.action.act_window.view account f [["act_window",149],["sequence",20],["view",277]] \N \N +1387 2024-04-13 20:39:03.023425 0 120 menu_tax_template_list [["action","ir.action.act_window,149"],["icon","tryton-list"],["name","Taxes"],["parent",76],["sequence",40]] ir.ui.menu account f [["action","ir.action.act_window,149"],["icon","tryton-list"],["name","Taxes"],["parent",76],["sequence",40]] \N \N +1388 2024-04-13 20:39:03.023425 0 110 access_tax_template [["model",183],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",183],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1389 2024-04-13 20:39:03.023425 0 279 tax_view_form [["model","account.tax"],["name","tax_form"],["type","form"]] ir.ui.view account f [["model","account.tax"],["name","tax_form"],["type","form"]] \N \N +1390 2024-04-13 20:39:03.023425 0 280 tax_view_list [["model","account.tax"],["name","tax_list"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.tax"],["name","tax_list"],["priority",10],["type","tree"]] \N \N +1391 2024-04-13 20:39:03.023425 0 150 act_tax_list [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"company\\"}], [\\"parent\\", \\"=\\", null]]"],["name","Taxes"],["res_model","account.tax"]] ir.action.act_window account f [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"company\\"}], [\\"parent\\", \\"=\\", null]]"],["name","Taxes"],["res_model","account.tax"]] \N \N +1392 2024-04-13 20:39:03.023425 0 173 act_tax_list_view1 [["act_window",150],["sequence",10],["view",280]] ir.action.act_window.view account f [["act_window",150],["sequence",10],["view",280]] \N \N +1393 2024-04-13 20:39:03.023425 0 174 act_tax_list_view2 [["act_window",150],["sequence",20],["view",279]] ir.action.act_window.view account f [["act_window",150],["sequence",20],["view",279]] \N \N +1394 2024-04-13 20:39:03.023425 0 121 menu_tax_list [["action","ir.action.act_window,150"],["icon","tryton-list"],["name","Taxes"],["parent",114],["sequence",10]] ir.ui.menu account f [["action","ir.action.act_window,150"],["icon","tryton-list"],["name","Taxes"],["parent",114],["sequence",10]] \N \N +1395 2024-04-13 20:39:03.023425 0 111 access_tax [["model",184],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",184],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1396 2024-04-13 20:39:03.023425 0 112 access_tax_account_admin [["group",8],["model",184],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",184],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1397 2024-04-13 20:39:03.023425 0 23 rule_group_tax_companies [["global_p",true],["model",184],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",184],["name","User in companies"]] \N \N +1398 2024-04-13 20:39:03.023425 0 27 rule_tax_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",23]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",23]] \N \N +1399 2024-04-13 20:39:03.023425 0 151 wizard_tax_test [["name","Test Tax"],["wiz_name","account.tax.test"]] ir.action.wizard account f [["name","Test Tax"],["wiz_name","account.tax.test"]] \N \N +1400 2024-04-13 20:39:03.023425 0 145 wizard_tax_test_keyword1 [["action",151],["keyword","form_action"],["model","account.tax,-1"]] ir.action.keyword account f [["action",151],["keyword","form_action"],["model","account.tax,-1"]] \N \N +1401 2024-04-13 20:39:03.023425 0 122 menu_tax_test [["action","ir.action.wizard,151"],["icon","tryton-launch"],["name","Test Tax"],["parent",114],["sequence",90]] ir.ui.menu account f [["action","ir.action.wizard,151"],["icon","tryton-launch"],["name","Test Tax"],["parent",114],["sequence",90]] \N \N +1402 2024-04-13 20:39:03.023425 0 281 tax_test_view_form [["model","account.tax.test"],["name","tax_test_form"],["type","form"]] ir.ui.view account f [["model","account.tax.test"],["name","tax_test_form"],["type","form"]] \N \N +1403 2024-04-13 20:39:03.023425 0 282 tax_test_result_view_list [["model","account.tax.test.result"],["name","tax_test_result_list"],["type","tree"]] ir.ui.view account f [["model","account.tax.test.result"],["name","tax_test_result_list"],["type","tree"]] \N \N +1404 2024-04-13 20:39:03.023425 0 283 tax_line_view_form [["model","account.tax.line"],["name","tax_line_form"],["type","form"]] ir.ui.view account f [["model","account.tax.line"],["name","tax_line_form"],["type","form"]] \N \N +1405 2024-04-13 20:39:03.023425 0 284 tax_line_view_tree [["model","account.tax.line"],["name","tax_line_tree"],["type","tree"]] ir.ui.view account f [["model","account.tax.line"],["name","tax_line_tree"],["type","tree"]] \N \N +1406 2024-04-13 20:39:03.023425 0 152 act_tax_line_form [["name","Tax Lines"],["res_model","account.tax.line"]] ir.action.act_window account f [["name","Tax Lines"],["res_model","account.tax.line"]] \N \N +1407 2024-04-13 20:39:03.023425 0 175 act_tax_line_form_view1 [["act_window",152],["sequence",10],["view",284]] ir.action.act_window.view account f [["act_window",152],["sequence",10],["view",284]] \N \N +1408 2024-04-13 20:39:03.023425 0 176 act_tax_line_form_view2 [["act_window",152],["sequence",20],["view",283]] ir.action.act_window.view account f [["act_window",152],["sequence",20],["view",283]] \N \N +1409 2024-04-13 20:39:03.023425 0 153 act_open_tax_code [["model","account.tax.code"],["name","Open Tax Code"],["wiz_name","account.tax.open_code"]] ir.action.wizard account f [["model","account.tax.code"],["name","Open Tax Code"],["wiz_name","account.tax.open_code"]] \N \N +1410 2024-04-13 20:39:03.023425 0 147 act_open_tax_code_keyword [["action",153],["keyword","tree_open"],["model","account.tax.code,-1"]] ir.action.keyword account f [["action",153],["keyword","tree_open"],["model","account.tax.code,-1"]] \N \N +1411 2024-04-13 20:39:03.023425 0 285 tax_rule_template_view_form [["model","account.tax.rule.template"],["name","tax_rule_template_form"],["type","form"]] ir.ui.view account f [["model","account.tax.rule.template"],["name","tax_rule_template_form"],["type","form"]] \N \N +1412 2024-04-13 20:39:03.023425 0 286 tax_rule_template_view_tree [["model","account.tax.rule.template"],["name","tax_rule_template_tree"],["type","tree"]] ir.ui.view account f [["model","account.tax.rule.template"],["name","tax_rule_template_tree"],["type","tree"]] \N \N +1413 2024-04-13 20:39:03.023425 0 154 act_tax_rule_template_form [["name","Tax Rules"],["res_model","account.tax.rule.template"]] ir.action.act_window account f [["name","Tax Rules"],["res_model","account.tax.rule.template"]] \N \N +1414 2024-04-13 20:39:03.023425 0 177 act_tax_rule_template_form_view1 [["act_window",154],["sequence",10],["view",286]] ir.action.act_window.view account f [["act_window",154],["sequence",10],["view",286]] \N \N +1415 2024-04-13 20:39:03.023425 0 178 act_tax_rule_template_form_view2 [["act_window",154],["sequence",20],["view",285]] ir.action.act_window.view account f [["act_window",154],["sequence",20],["view",285]] \N \N +1416 2024-04-13 20:39:03.023425 0 123 menu_tax_rule_template_form [["action","ir.action.act_window,154"],["icon","tryton-list"],["name","Tax Rules"],["parent",76],["sequence",50]] ir.ui.menu account f [["action","ir.action.act_window,154"],["icon","tryton-list"],["name","Tax Rules"],["parent",76],["sequence",50]] \N \N +1417 2024-04-13 20:39:03.023425 0 113 access_tax_rule_template [["model",186],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",186],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1418 2024-04-13 20:39:03.023425 0 287 tax_rule_view_form [["model","account.tax.rule"],["name","tax_rule_form"],["type","form"]] ir.ui.view account f [["model","account.tax.rule"],["name","tax_rule_form"],["type","form"]] \N \N +1419 2024-04-13 20:39:03.023425 0 288 tax_rule_view_tree [["model","account.tax.rule"],["name","tax_rule_tree"],["type","tree"]] ir.ui.view account f [["model","account.tax.rule"],["name","tax_rule_tree"],["type","tree"]] \N \N +1420 2024-04-13 20:39:03.023425 0 155 act_tax_rule_form [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"company\\"}]]"],["name","Rules"],["res_model","account.tax.rule"]] ir.action.act_window account f [["domain","[[\\"company\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"company\\"}]]"],["name","Rules"],["res_model","account.tax.rule"]] \N \N +1421 2024-04-13 20:39:03.023425 0 179 act_tax_rule_form_view1 [["act_window",155],["sequence",10],["view",288]] ir.action.act_window.view account f [["act_window",155],["sequence",10],["view",288]] \N \N +1422 2024-04-13 20:39:03.023425 0 180 act_tax_rule_form_view2 [["act_window",155],["sequence",20],["view",287]] ir.action.act_window.view account f [["act_window",155],["sequence",20],["view",287]] \N \N +1423 2024-04-13 20:39:03.023425 0 124 menu_tax_rule_form [["action","ir.action.act_window,155"],["icon","tryton-list"],["name","Rules"],["parent",114],["sequence",50]] ir.ui.menu account f [["action","ir.action.act_window,155"],["icon","tryton-list"],["name","Rules"],["parent",114],["sequence",50]] \N \N +1424 2024-04-13 20:39:03.023425 0 114 access_tax_rule [["model",187],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account f [["model",187],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1425 2024-04-13 20:39:03.023425 0 115 access_tax_rule_account_admin [["group",8],["model",187],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account f [["group",8],["model",187],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1426 2024-04-13 20:39:03.023425 0 24 rule_group_tax_rule_companies [["global_p",true],["model",187],["name","User in companies"]] ir.rule.group account f [["global_p",true],["model",187],["name","User in companies"]] \N \N +1427 2024-04-13 20:39:03.023425 0 28 rule_tax_rule_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",24]] ir.rule account f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",24]] \N \N +1428 2024-04-13 20:39:03.023425 0 289 tax_rule_line_template_view_form [["model","account.tax.rule.line.template"],["name","tax_rule_line_template_form"],["type","form"]] ir.ui.view account f [["model","account.tax.rule.line.template"],["name","tax_rule_line_template_form"],["type","form"]] \N \N +1429 2024-04-13 20:39:03.023425 0 290 tax_rule_line_template_view_tree [["model","account.tax.rule.line.template"],["name","tax_rule_line_template_tree"],["type","tree"]] ir.ui.view account f [["model","account.tax.rule.line.template"],["name","tax_rule_line_template_tree"],["type","tree"]] \N \N +1430 2024-04-13 20:39:03.023425 0 291 tax_rule_line_view_form [["model","account.tax.rule.line"],["name","tax_rule_line_form"],["type","form"]] ir.ui.view account f [["model","account.tax.rule.line"],["name","tax_rule_line_form"],["type","form"]] \N \N +1431 2024-04-13 20:39:03.023425 0 292 tax_rule_line_view_tree [["model","account.tax.rule.line"],["name","tax_rule_line_tree"],["priority",10],["type","tree"]] ir.ui.view account f [["model","account.tax.rule.line"],["name","tax_rule_line_tree"],["priority",10],["type","tree"]] \N \N +1432 2024-04-13 20:39:03.023425 0 293 tax_rule_line_view_tree_sequence [["model","account.tax.rule.line"],["name","tax_rule_line_tree_sequence"],["priority",20],["type","tree"]] ir.ui.view account f [["model","account.tax.rule.line"],["name","tax_rule_line_tree_sequence"],["priority",20],["type","tree"]] \N \N +1433 2024-04-13 20:39:03.023425 0 294 party_view_tree [["inherit",142],["model","party.party"],["name","party_tree"]] ir.ui.view account f [["inherit",142],["model","party.party"],["name","party_tree"]] \N \N +1434 2024-04-13 20:39:03.023425 0 295 party_view_form [["inherit",143],["model","party.party"],["name","party_form"]] ir.ui.view account f [["inherit",143],["model","party.party"],["name","party_form"]] \N \N +1435 2024-04-13 20:39:03.023425 0 21 access_party_accounts [["field",2151],["perm_read",true],["perm_write",false]] ir.model.field.access account f [["field",2151],["perm_read",true],["perm_write",false]] \N \N +1436 2024-04-13 20:39:03.023425 0 22 access_party_accounts_account_party [["field",2151],["group",7],["perm_read",true],["perm_write",true]] ir.model.field.access account f [["field",2151],["group",7],["perm_read",true],["perm_write",true]] \N \N +1437 2024-04-13 20:39:03.023425 0 23 access_party_account_payable [["field",2149],["perm_read",true],["perm_write",false]] ir.model.field.access account f [["field",2149],["perm_read",true],["perm_write",false]] \N \N +1438 2024-04-13 20:39:03.023425 0 24 access_party_account_payable_account_party [["field",2149],["group",7],["perm_read",true],["perm_write",true]] ir.model.field.access account f [["field",2149],["group",7],["perm_read",true],["perm_write",true]] \N \N +1439 2024-04-13 20:39:03.023425 0 25 access_party_account_receivable [["field",2150],["perm_read",true],["perm_write",false]] ir.model.field.access account f [["field",2150],["perm_read",true],["perm_write",false]] \N \N +1440 2024-04-13 20:39:03.023425 0 26 access_party_account_receivable_account_party [["field",2150],["group",7],["perm_read",true],["perm_write",true]] ir.model.field.access account f [["field",2150],["group",7],["perm_read",true],["perm_write",true]] \N \N +1441 2024-04-13 20:39:03.023425 0 27 access_party_customer_tax_rule [["field",2153],["perm_read",true],["perm_write",false]] ir.model.field.access account f [["field",2153],["perm_read",true],["perm_write",false]] \N \N +1442 2024-04-13 20:39:03.023425 0 28 access_party_customer_tax_rule_account_party [["field",2153],["group",7],["perm_read",true],["perm_write",true]] ir.model.field.access account f [["field",2153],["group",7],["perm_read",true],["perm_write",true]] \N \N +1443 2024-04-13 20:39:03.023425 0 29 access_party_supplier_tax_rule [["field",2158],["perm_read",true],["perm_write",false]] ir.model.field.access account f [["field",2158],["perm_read",true],["perm_write",false]] \N \N +1444 2024-04-13 20:39:03.023425 0 30 access_party_supplier_tax_rule_account_party [["field",2158],["group",7],["perm_read",true],["perm_write",true]] ir.model.field.access account f [["field",2158],["group",7],["perm_read",true],["perm_write",true]] \N \N +1445 2024-04-13 20:39:03.023425 0 1 account_type_template_minimal_en [["name","Minimal Account Type Chart"],["sequence",10],["statement",null]] account.account.type.template account f [["name","Minimal Account Type Chart"],["sequence",10],["statement",null]] \N \N +1446 2024-04-13 20:39:03.023425 0 2 account_type_template_asset_en [["assets",true],["name","Asset"],["parent",1],["sequence",10],["statement","balance"]] account.account.type.template account f [["assets",true],["name","Asset"],["parent",1],["sequence",10],["statement","balance"]] \N \N +1447 2024-04-13 20:39:03.023425 0 3 account_type_template_asset_current_en [["assets",true],["name","Current"],["parent",2],["sequence",10],["statement","balance"]] account.account.type.template account f [["assets",true],["name","Current"],["parent",2],["sequence",10],["statement","balance"]] \N \N +1448 2024-04-13 20:39:03.023425 0 4 account_type_template_asset_current_cash_en [["assets",true],["name","Cash"],["parent",3],["sequence",10],["statement","balance"]] account.account.type.template account f [["assets",true],["name","Cash"],["parent",3],["sequence",10],["statement","balance"]] \N \N +1449 2024-04-13 20:39:03.023425 0 5 account_type_template_asset_current_receivable_en [["assets",true],["name","Receivable"],["parent",3],["receivable",true],["sequence",20],["statement","balance"]] account.account.type.template account f [["assets",true],["name","Receivable"],["parent",3],["receivable",true],["sequence",20],["statement","balance"]] \N \N +1450 2024-04-13 20:39:03.023425 0 6 account_type_template_asset_long_term_en [["assets",true],["name","Long-term"],["parent",2],["sequence",20],["statement","balance"]] account.account.type.template account f [["assets",true],["name","Long-term"],["parent",2],["sequence",20],["statement","balance"]] \N \N +1451 2024-04-13 20:39:03.023425 0 7 account_type_template_liability_en [["name","Liability"],["parent",1],["sequence",20],["statement","balance"]] account.account.type.template account f [["name","Liability"],["parent",1],["sequence",20],["statement","balance"]] \N \N +1452 2024-04-13 20:39:03.023425 0 8 account_type_template_liability_current_en [["name","Current"],["parent",7],["sequence",10],["statement","balance"]] account.account.type.template account f [["name","Current"],["parent",7],["sequence",10],["statement","balance"]] \N \N +1453 2024-04-13 20:39:03.023425 0 9 account_type_template_liability_current_payable_en [["name","Payable"],["parent",8],["payable",true],["sequence",10],["statement","balance"]] account.account.type.template account f [["name","Payable"],["parent",8],["payable",true],["sequence",10],["statement","balance"]] \N \N +1454 2024-04-13 20:39:03.023425 0 10 account_type_template_liability_current_tax_en [["name","Tax"],["parent",8],["sequence",20],["statement","balance"]] account.account.type.template account f [["name","Tax"],["parent",8],["sequence",20],["statement","balance"]] \N \N +1455 2024-04-13 20:39:03.023425 0 11 account_type_template_liability_long_term_en [["name","Long-term"],["parent",7],["sequence",20],["statement","balance"]] account.account.type.template account f [["name","Long-term"],["parent",7],["sequence",20],["statement","balance"]] \N \N +1456 2024-04-13 20:39:03.023425 0 12 account_type_template_equity_en [["name","Equity"],["parent",1],["sequence",30],["statement","balance"]] account.account.type.template account f [["name","Equity"],["parent",1],["sequence",30],["statement","balance"]] \N \N +1457 2024-04-13 20:39:03.023425 0 13 account_type_template_income_en [["name","Income"],["parent",12],["sequence",40],["statement","income"]] account.account.type.template account f [["name","Income"],["parent",12],["sequence",40],["statement","income"]] \N \N +1458 2024-04-13 20:39:03.023425 0 14 account_type_template_revenue_en [["name","Revenue"],["parent",13],["revenue",true],["sequence",10],["statement","income"]] account.account.type.template account f [["name","Revenue"],["parent",13],["revenue",true],["sequence",10],["statement","income"]] \N \N +1459 2024-04-13 20:39:03.023425 0 15 account_type_template_expense_en [["expense",true],["name","Expense"],["parent",13],["sequence",20],["statement","income"]] account.account.type.template account f [["expense",true],["name","Expense"],["parent",13],["sequence",20],["statement","income"]] \N \N +1460 2024-04-13 20:39:03.023425 0 16 account_type_template_off_balance_en [["name","Off-Balance"],["parent",1],["sequence",60],["statement","off-balance"]] account.account.type.template account f [["name","Off-Balance"],["parent",1],["sequence",60],["statement","off-balance"]] \N \N +1461 2024-04-13 20:39:03.023425 0 1 account_template_root_en [["closed",true],["name","Minimal Account Chart"],["type",1]] account.account.template account f [["closed",true],["name","Minimal Account Chart"],["type",1]] \N \N +1462 2024-04-13 20:39:03.023425 0 2 account_template_receivable_en [["name","Main Receivable"],["parent",1],["party_required",true],["reconcile",true],["type",5]] account.account.template account f [["name","Main Receivable"],["parent",1],["party_required",true],["reconcile",true],["type",5]] \N \N +1463 2024-04-13 20:39:03.023425 0 3 account_template_payable_en [["name","Main Payable"],["parent",1],["party_required",true],["reconcile",true],["type",9]] account.account.template account f [["name","Main Payable"],["parent",1],["party_required",true],["reconcile",true],["type",9]] \N \N +1464 2024-04-13 20:39:03.023425 0 4 account_template_revenue_en [["name","Main Revenue"],["parent",1],["type",14]] account.account.template account f [["name","Main Revenue"],["parent",1],["type",14]] \N \N +1465 2024-04-13 20:39:03.023425 0 5 account_template_expense_en [["name","Main Expense"],["parent",1],["type",15]] account.account.template account f [["name","Main Expense"],["parent",1],["type",15]] \N \N +1468 2024-04-13 20:39:03.023425 0 149 msg_no_period_date [["text","To continue, you must create a period for the date \\"%(date)s\\" and company \\"%(company)s\\"."]] ir.message account f [["text","To continue, you must create a period for the date \\"%(date)s\\" and company \\"%(company)s\\"."]] \N \N +1469 2024-04-13 20:39:03.023425 0 150 msg_no_open_period_date [["text","To continue, you must reopen the period \\"%(period)s\\" of company \\"%(company)s\\" for the date \\"%(date)s\\"."]] ir.message account f [["text","To continue, you must reopen the period \\"%(period)s\\" of company \\"%(company)s\\" for the date \\"%(date)s\\"."]] \N \N +1470 2024-04-13 20:39:03.023425 0 151 msg_modify_delete_period_moves [["text","You cannot modify or delete period \\"%(period)s\\" because it contains moves."]] ir.message account f [["text","You cannot modify or delete period \\"%(period)s\\" because it contains moves."]] \N \N +1471 2024-04-13 20:39:03.023425 0 152 msg_create_period_closed_fiscalyear [["text","You cannot create a period in fiscal year \\"%(fiscalyear)s\\" because it is closed."]] ir.message account f [["text","You cannot create a period in fiscal year \\"%(fiscalyear)s\\" because it is closed."]] \N \N +1472 2024-04-13 20:39:03.023425 0 153 msg_open_period_closed_fiscalyear [["text","You cannot reopen period \\"%(period)s\\" because its fiscal year \\"%(fiscalyear)s\\" is closed."]] ir.message account f [["text","You cannot reopen period \\"%(period)s\\" because its fiscal year \\"%(fiscalyear)s\\" is closed."]] \N \N +1473 2024-04-13 20:39:03.023425 0 154 msg_change_period_post_move_sequence [["text","You cannot change the post move sequence in period \\"%(period)s\\" because it has posted moves."]] ir.message account f [["text","You cannot change the post move sequence in period \\"%(period)s\\" because it has posted moves."]] \N \N +1474 2024-04-13 20:39:03.023425 0 155 msg_close_period_non_posted_moves [["text","To close period \\"%(period)s\\" you must post the moves \\"%(moves)s\\"."]] ir.message account f [["text","To close period \\"%(period)s\\" you must post the moves \\"%(moves)s\\"."]] \N \N +1475 2024-04-13 20:39:03.023425 0 156 msg_period_overlap [["text","The periods \\"%(first)s\\" and \\"%(second)s\\" overlap, you must use different dates."]] ir.message account f [["text","The periods \\"%(first)s\\" and \\"%(second)s\\" overlap, you must use different dates."]] \N \N +1476 2024-04-13 20:39:03.023425 0 157 msg_period_same_sequence [["text","You cannot use the same post move sequence for the periods \\"%(first)s\\" and \\"%(second)s\\" because they are from different fiscal years."]] ir.message account f [["text","You cannot use the same post move sequence for the periods \\"%(first)s\\" and \\"%(second)s\\" because they are from different fiscal years."]] \N \N +1477 2024-04-13 20:39:03.023425 0 158 msg_period_fiscalyear_dates [["text","The dates for period \\"%(period)s\\" must be between the dates of its fiscal year \\"%(fiscalyear)s\\"."]] ir.message account f [["text","The dates for period \\"%(period)s\\" must be between the dates of its fiscal year \\"%(fiscalyear)s\\"."]] \N \N +1478 2024-04-13 20:39:03.023425 0 159 msg_journal_period_unique [["text","You can create only one journal per period."]] ir.message account f [["text","You can create only one journal per period."]] \N \N +1479 2024-04-13 20:39:03.023425 0 160 msg_modify_delete_journal_period_moves [["text","You cannot modify or delete journal-period \\"%(journal_period)s\\" because it contains moves."]] ir.message account f [["text","You cannot modify or delete journal-period \\"%(journal_period)s\\" because it contains moves."]] \N \N +1480 2024-04-13 20:39:03.023425 0 161 msg_create_journal_period_closed_period [["text","You cannot create a journal-period in closed period \\"%(period)s\\"."]] ir.message account f [["text","You cannot create a journal-period in closed period \\"%(period)s\\"."]] \N \N +1481 2024-04-13 20:39:03.023425 0 162 msg_open_journal_period_closed_period [["text","You cannot reopen journal-period \\"%(journal_period)s\\" in closed period \\"%(period)s\\"."]] ir.message account f [["text","You cannot reopen journal-period \\"%(journal_period)s\\" in closed period \\"%(period)s\\"."]] \N \N +1482 2024-04-13 20:39:03.023425 0 163 msg_tax_update_unit_price_with_parent [["text","You cannot set \\"Update Unit Price\\" on child tax \\"%(tax)s\\"."]] ir.message account f [["text","You cannot set \\"Update Unit Price\\" on child tax \\"%(tax)s\\"."]] \N \N +1483 2024-04-13 20:39:03.023425 0 164 msg_modify_tax_line_closed_period [["text","You cannot add/modify/delete tax lines in closed period \\"%(period)s\\"."]] ir.message account f [["text","You cannot add/modify/delete tax lines in closed period \\"%(period)s\\"."]] \N \N +1484 2024-04-13 20:39:03.023425 0 165 msg_change_fiscalyear_post_move_sequence [["text","You cannot change the post move sequence on fiscal year \\"%(fiscalyear)s\\" because it contains posted moves."]] ir.message account f [["text","You cannot change the post move sequence on fiscal year \\"%(fiscalyear)s\\" because it contains posted moves."]] \N \N +1485 2024-04-13 20:39:03.023425 0 166 msg_no_fiscalyear_date [["text","To continue, you must create a fiscal year for the date \\"%(date)s\\" and company \\"%(company)s\\"."]] ir.message account f [["text","To continue, you must create a fiscal year for the date \\"%(date)s\\" and company \\"%(company)s\\"."]] \N \N +1486 2024-04-13 20:39:03.023425 0 167 msg_no_open_fiscalyear_date [["text","To continue, you must reopen the fiscal year \\"%(fiscalyear)s\\" of company \\"%(company)s\\"for the date \\"%(date)s\\"."]] ir.message account f [["text","To continue, you must reopen the fiscal year \\"%(fiscalyear)s\\" of company \\"%(company)s\\"for the date \\"%(date)s\\"."]] \N \N +1487 2024-04-13 20:39:03.023425 0 168 msg_fiscalyear_overlap [["text","The fiscal years \\"%(first)s\\" and \\"%(second)s\\" overlap, you must use different dates."]] ir.message account f [["text","The fiscal years \\"%(first)s\\" and \\"%(second)s\\" overlap, you must use different dates."]] \N \N +1488 2024-04-13 20:39:03.023425 0 169 msg_open_fiscalyear_earlier [["text","The open fiscal year \\"%(open)s\\" can not be before the close fiscal year \\"%(closed)s\\"."]] ir.message account f [["text","The open fiscal year \\"%(open)s\\" can not be before the close fiscal year \\"%(closed)s\\"."]] \N \N +1489 2024-04-13 20:39:03.023425 0 170 msg_fiscalyear_different_post_move_sequence [["text","The fiscal years \\"%(first)s\\" and \\"%(second)s\\" cannot have the same post move sequence, you must use different sequences."]] ir.message account f [["text","The fiscal years \\"%(first)s\\" and \\"%(second)s\\" cannot have the same post move sequence, you must use different sequences."]] \N \N +1490 2024-04-13 20:39:03.023425 0 171 msg_close_fiscalyear_account_balance_not_zero [["text","To close the fiscal year, the balance of account \\"%(account)s\\" must be zero."]] ir.message account f [["text","To close the fiscal year, the balance of account \\"%(account)s\\" must be zero."]] \N \N +1491 2024-04-13 20:39:03.023425 0 172 msg_close_fiscalyear_earlier [["text","To close fiscal year \\"%(fiscalyear)s\\", you must close all earlier fiscal years."]] ir.message account f [["text","To close fiscal year \\"%(fiscalyear)s\\", you must close all earlier fiscal years."]] \N \N +1492 2024-04-13 20:39:03.023425 0 173 msg_reopen_fiscalyear_later [["text","To reopen fiscal year \\"%(fiscalyear)s\\", you must reopen all later fiscal years."]] ir.message account f [["text","To reopen fiscal year \\"%(fiscalyear)s\\", you must reopen all later fiscal years."]] \N \N +1493 2024-04-13 20:39:03.023425 0 174 msg_party_missing_receivable_account [["text","To continue, you must define a receivable account for party \\"%(party)s\\"."]] ir.message account f [["text","To continue, you must define a receivable account for party \\"%(party)s\\"."]] \N \N +1494 2024-04-13 20:39:03.023425 0 175 msg_party_missing_payable_account [["text","To continue, you must define a payable account for party \\"%(party)s\\"."]] ir.message account f [["text","To continue, you must define a payable account for party \\"%(party)s\\"."]] \N \N +1495 2024-04-13 20:39:03.023425 0 176 msg_erase_party_receivable_payable [["text","You cannot erase party \\"%(party)s\\" while they have pending receivable/payable with company \\"%(company)s\\"."]] ir.message account f [["text","You cannot erase party \\"%(party)s\\" while they have pending receivable/payable with company \\"%(company)s\\"."]] \N \N +1496 2024-04-13 20:39:03.023425 0 177 msg_only_one_debit_credit_types [["text","Account can have only one of the debit or credit type set."]] ir.message account f [["text","Account can have only one of the debit or credit type set."]] \N \N +1497 2024-04-13 20:39:03.023425 0 178 msg_delete_account_with_move_lines [["text","You cannot delete account \\"%(account)s\\" because it has move lines."]] ir.message account f [["text","You cannot delete account \\"%(account)s\\" because it has move lines."]] \N \N +1498 2024-04-13 20:39:03.023425 0 179 msg_account_invalid_type_second_currency [["text","To set a second currency for account \\"%(account)s\\", it must not have a type \\"payable\\", \\"revenue\\", \\"receivable\\" nor \\"expense\\"."]] ir.message account f [["text","To set a second currency for account \\"%(account)s\\", it must not have a type \\"payable\\", \\"revenue\\", \\"receivable\\" nor \\"expense\\"."]] \N \N +1499 2024-04-13 20:39:03.023425 0 180 msg_account_invalid_deferral_second_currency [["text","To set a second currency for account \\"%(account)s\\", it must be deferral."]] ir.message account f [["text","To set a second currency for account \\"%(account)s\\", it must be deferral."]] \N \N +1500 2024-04-13 20:39:03.023425 0 181 msg_account_invalid_lines_second_currency [["text","To set a second currency for account \\"%(account)s\\", its lines must have the same second currency \\"%(currency)s\\"."]] ir.message account f [["text","To set a second currency for account \\"%(account)s\\", its lines must have the same second currency \\"%(currency)s\\"."]] \N \N +1501 2024-04-13 20:39:03.023425 0 182 msg_account_closed_lines [["text","You cannot close account \\"%(account)s\\" because it has move lines."]] ir.message account f [["text","You cannot close account \\"%(account)s\\" because it has move lines."]] \N \N +1502 2024-04-13 20:39:03.023425 0 183 msg_account_no_type_lines [["text","You cannot remove type of account \\"%(account)s\\" because it has move lines."]] ir.message account f [["text","You cannot remove type of account \\"%(account)s\\" because it has move lines."]] \N \N +1503 2024-04-13 20:39:03.023425 0 184 msg_deferral_unique [["text","Deferral must be unique by account and fiscal year."]] ir.message account f [["text","Deferral must be unique by account and fiscal year."]] \N \N +1504 2024-04-13 20:39:03.023425 0 185 msg_write_deferral [["text","You cannot modify any account deferrals."]] ir.message account f [["text","You cannot modify any account deferrals."]] \N \N +1505 2024-04-13 20:39:03.023425 0 186 msg_account_chart_exists [["text","A chart of accounts already exists for company \\"%(company)s\\"."]] ir.message account f [["text","A chart of accounts already exists for company \\"%(company)s\\"."]] \N \N +1506 2024-04-13 20:39:03.023425 0 187 msg_post_empty_move [["text","To post move \\"%(move)s\\", you must fill in its lines."]] ir.message account f [["text","To post move \\"%(move)s\\", you must fill in its lines."]] \N \N +1507 2024-04-13 20:39:03.023425 0 188 msg_post_unbalanced_move [["text","To post move \\"%(move)s\\", you must balance all its lines debits and credits."]] ir.message account f [["text","To post move \\"%(move)s\\", you must balance all its lines debits and credits."]] \N \N +1508 2024-04-13 20:39:03.023425 0 189 msg_modify_posted_moved [["text","You cannot modify posted move \\"%(move)s\\"."]] ir.message account f [["text","You cannot modify posted move \\"%(move)s\\"."]] \N \N +1509 2024-04-13 20:39:03.023425 0 190 msg_move_cancel_closed_period [["text","The period of move \\"%(move)s\\" is closed.\\nUse the current period to cancel the move?"]] ir.message account f [["text","The period of move \\"%(move)s\\" is closed.\\nUse the current period to cancel the move?"]] \N \N +1510 2024-04-13 20:39:03.023425 0 191 msg_move_template_invalid_expression [["text","Failed to evaluate expression \\"%(expression)s\\" from template \\"%(template)s\\" with error:\\n\\"%(error)s\\""]] ir.message account f [["text","Failed to evaluate expression \\"%(expression)s\\" from template \\"%(template)s\\" with error:\\n\\"%(error)s\\""]] \N \N +1511 2024-04-13 20:39:03.023425 0 192 msg_move_template_expression_not_number [["text","The value \\"%(value)s\\" of \\"%(expression)s\\" from template \\"%(template)s\\" is not a number."]] ir.message account f [["text","The value \\"%(value)s\\" of \\"%(expression)s\\" from template \\"%(template)s\\" is not a number."]] \N \N +1512 2024-04-13 20:39:03.023425 0 193 msg_move_template_keyword_name_not_identifier [["text","The keyword name \\"%(name)s\\" is not a valid identifier."]] ir.message account f [["text","The keyword name \\"%(name)s\\" is not a valid identifier."]] \N \N +1513 2024-04-13 20:39:03.023425 0 194 msg_write_reconciliation [["text","You cannot modify any reconciliation."]] ir.message account f [["text","You cannot modify any reconciliation."]] \N \N +1514 2024-04-13 20:39:03.023425 0 195 msg_reconciliation_delete_delegated [["text","The reconciliation \\"%(reconciliation)s\\" is delegated to the line \\"%(line)s\\".\\nYou may need to cancel its move \\"%(move)s\\"."]] ir.message account f [["text","The reconciliation \\"%(reconciliation)s\\" is delegated to the line \\"%(line)s\\".\\nYou may need to cancel its move \\"%(move)s\\"."]] \N \N +1515 2024-04-13 20:39:03.023425 0 196 msg_reconciliation_delete_write_off [["text","The reconciliation \\"%(reconciliation)s\\" is linked to the write-off line \\"%(line)s\\".\\nYou may need to cancel its move \\"%(move)s\\"."]] ir.message account f [["text","The reconciliation \\"%(reconciliation)s\\" is linked to the write-off line \\"%(line)s\\".\\nYou may need to cancel its move \\"%(move)s\\"."]] \N \N +1516 2024-04-13 20:39:03.023425 0 197 msg_reconciliation_line_not_valid [["text","You cannot reconcile non-valid line \\"%(line)s\\"."]] ir.message account f [["text","You cannot reconcile non-valid line \\"%(line)s\\"."]] \N \N +1517 2024-04-13 20:39:03.023425 0 198 msg_reconciliation_different_accounts [["text","You cannot reconcile line \\"%(line)s\\" with others because its account \\"%(account1)s\\" is different from \\"%(account2)s\\"."]] ir.message account f [["text","You cannot reconcile line \\"%(line)s\\" with others because its account \\"%(account1)s\\" is different from \\"%(account2)s\\"."]] \N \N +1518 2024-04-13 20:39:03.023425 0 199 msg_reconciliation_account_not_reconcile [["text","To reconcile line \\"%(line)s\\", you must set its account \\"%(account)s\\" as reconcilable."]] ir.message account f [["text","To reconcile line \\"%(line)s\\", you must set its account \\"%(account)s\\" as reconcilable."]] \N \N +1519 2024-04-13 20:39:03.023425 0 200 msg_reconciliation_different_parties [["text","You cannot reconcile line \\"%(line)s\\" with others because its party \\"%(party1)s\\" is different from \\"%(party2)s\\"."]] ir.message account f [["text","You cannot reconcile line \\"%(line)s\\" with others because its party \\"%(party1)s\\" is different from \\"%(party2)s\\"."]] \N \N +1520 2024-04-13 20:39:03.023425 0 201 msg_reconciliation_unbalanced [["text","To reconcile lines, they must have the same debit \\"%(debit)s\\" and credit \\"%(credit)s\\"."]] ir.message account f [["text","To reconcile lines, they must have the same debit \\"%(debit)s\\" and credit \\"%(credit)s\\"."]] \N \N +1521 2024-04-13 20:39:03.023425 0 202 msg_reconciliation_write_off_missing [["text","To reconcile lines with \\"%(amount)s\\" write-off, you must select a write-off method."]] ir.message account f [["text","To reconcile lines with \\"%(amount)s\\" write-off, you must select a write-off method."]] \N \N +1522 2024-04-13 20:39:03.023425 0 203 msg_reconciliation_currency_exchange_journal_missing [["text","To reconcile lines, you must define a currency exchange journal for \\"%(company)s\\"."]] ir.message account f [["text","To reconcile lines, you must define a currency exchange journal for \\"%(company)s\\"."]] \N \N +1523 2024-04-13 20:39:03.023425 0 204 msg_reconciliation_currency_exchange_credit_account_missing [["text","To reconcile lines, you must define a currency exchange credit account for \\"%(company)s\\"."]] ir.message account f [["text","To reconcile lines, you must define a currency exchange credit account for \\"%(company)s\\"."]] \N \N +1524 2024-04-13 20:39:03.023425 0 205 msg_reconciliation_currency_exchange_debit_account_missing [["text","To reconcile lines, you must define a currency exchange debit account for \\"%(company)s\\"."]] ir.message account f [["text","To reconcile lines, you must define a currency exchange debit account for \\"%(company)s\\"."]] \N \N +1525 2024-04-13 20:39:03.023425 0 206 msg_line_debit_credit [["text","You cannot set both debit and credit on the line."]] ir.message account f [["text","You cannot set both debit and credit on the line."]] \N \N +1526 2024-04-13 20:39:03.023425 0 207 msg_line_second_currency_sign [["text","You must set the sign for second currency to match the sign of debit - credit."]] ir.message account f [["text","You must set the sign for second currency to match the sign of debit - credit."]] \N \N +1527 2024-04-13 20:39:03.023425 0 208 msg_modify_line_closed_journal_period [["text","You cannot add/modify/delete lines on closed journal-period \\"%(journal_period)s\\"."]] ir.message account f [["text","You cannot add/modify/delete lines on closed journal-period \\"%(journal_period)s\\"."]] \N \N +1528 2024-04-13 20:39:03.023425 0 209 msg_modify_line_posted_move [["text","You cannot modify line \\"%(line)s\\" from posted move \\"%(move)s\\"."]] ir.message account f [["text","You cannot modify line \\"%(line)s\\" from posted move \\"%(move)s\\"."]] \N \N +1529 2024-04-13 20:39:03.023425 0 210 msg_modify_line_reconciled [["text","You cannot modify reconciled line \\"%(line)s\\"."]] ir.message account f [["text","You cannot modify reconciled line \\"%(line)s\\"."]] \N \N +1530 2024-04-13 20:39:03.023425 0 211 msg_line_closed_account [["text","To create a line on account \\"%(account)s\\", you must set a type or unclose it."]] ir.message account f [["text","To create a line on account \\"%(account)s\\", you must set a type or unclose it."]] \N \N +1531 2024-04-13 20:39:03.023425 0 212 msg_line_already_reconciled [["text","You cannot reconcile already reconciled line \\"%(line)s\\"."]] ir.message account f [["text","You cannot reconcile already reconciled line \\"%(line)s\\"."]] \N \N +1532 2024-04-13 20:39:03.023425 0 213 msg_line_party_required [["text","To create a line on account \\"%(account)s\\", you must set a party on line \\"%(line)s\\"."]] ir.message account f [["text","To create a line on account \\"%(account)s\\", you must set a party on line \\"%(line)s\\"."]] \N \N +1533 2024-04-13 20:39:03.023425 0 214 msg_line_party_set [["text","To create a line on account \\"%(account)s\\", you must remove the party on line \\"%(line)s\\"."]] ir.message account f [["text","To create a line on account \\"%(account)s\\", you must remove the party on line \\"%(line)s\\"."]] \N \N +1534 2024-04-13 20:39:03.023425 0 215 msg_group_line [["text","Line \\"%(line)s\\" can not be grouped."]] ir.message account f [["text","Line \\"%(line)s\\" can not be grouped."]] \N \N +1535 2024-04-13 20:39:03.023425 0 216 msg_group_line_single [["text","You cannot group a single line."]] ir.message account f [["text","You cannot group a single line."]] \N \N +1536 2024-04-13 20:39:03.023425 0 217 msg_group_line_many_parties [["text","You cannot group lines with different parties."]] ir.message account f [["text","You cannot group lines with different parties."]] \N \N +1537 2024-04-13 20:39:03.023425 0 218 msg_group_line_same_company [["text","You cannot group lines of different companies."]] ir.message account f [["text","You cannot group lines of different companies."]] \N \N +1538 2024-04-13 20:39:03.023425 0 219 msg_group_line_same_second_currency [["text","You cannot group lines of different second currencies."]] ir.message account f [["text","You cannot group lines of different second currencies."]] \N \N +1539 2024-04-13 20:39:03.023425 0 220 msg_group_line_maximum_account [["text","You cannot group lines from more than 2 different accounts."]] ir.message account f [["text","You cannot group lines from more than 2 different accounts."]] \N \N +1540 2024-04-13 20:39:03.023425 0 221 msg_reschedule_line_same_origins [["text","You cannot reschedule lines with different origins."]] ir.message account f [["text","You cannot reschedule lines with different origins."]] \N \N +1541 2024-04-13 20:39:03.023425 0 222 msg_reschedule_line_same_currency [["text","You cannot reschedule lines with different currencies."]] ir.message account f [["text","You cannot reschedule lines with different currencies."]] \N \N +1542 2024-04-13 20:39:03.023425 0 223 msg_reschedule_line_same_account [["text","You cannot reschedule lines with different accounts."]] ir.message account f [["text","You cannot reschedule lines with different accounts."]] \N \N +1543 2024-04-13 20:39:03.023425 0 224 msg_reschedule_line_same_party [["text","You cannot reschedule lines with different parties."]] ir.message account f [["text","You cannot reschedule lines with different parties."]] \N \N +1544 2024-04-13 20:39:03.023425 0 225 msg_reschedule_line_wrong_amount [["text","To reschedule the lines you must change the terms to have a total amount of %(total_amount)s instead of %(amount)s."]] ir.message account f [["text","To reschedule the lines you must change the terms to have a total amount of %(total_amount)s instead of %(amount)s."]] \N \N +1545 2024-04-13 20:39:03.023425 0 226 msg_delegate_line_same_company [["text","You cannot delegate together lines of different companies."]] ir.message account f [["text","You cannot delegate together lines of different companies."]] \N \N +1546 2024-04-13 20:39:03.023425 0 227 msg_delegate_line_same_origins [["text","You cannot delegate together lines with different origins."]] ir.message account f [["text","You cannot delegate together lines with different origins."]] \N \N +1547 2024-04-13 20:39:03.023425 0 228 msg_cancel_line_delegated [["text","The moves \\"%(moves)s\\" contain grouped lines, cancelling them will ungroup the lines."]] ir.message account f [["text","The moves \\"%(moves)s\\" contain grouped lines, cancelling them will ungroup the lines."]] \N \N +1548 2024-04-13 20:39:03.023425 0 229 msg_company_change_currency [["text","You cannot change the currency of a company which is associated with account moves."]] ir.message account f [["text","You cannot change the currency of a company which is associated with account moves."]] \N \N +1549 2024-04-13 20:39:03.023425 0 230 msg_close_period_inactive_accounts [["text","To close period \\"%(period)s\\", you must balance the inactive account \\"%(account)s\\"."]] ir.message account f [["text","To close period \\"%(period)s\\", you must balance the inactive account \\"%(account)s\\"."]] \N \N +1550 2024-04-13 20:39:03.023425 0 231 msg_journal_account_moves [["text","You cannot change the type of journal \\"%(journal)s\\" because it has posted moves."]] ir.message account f [["text","You cannot change the type of journal \\"%(journal)s\\" because it has posted moves."]] \N \N +1551 2024-04-13 20:39:08.573524 0 9 group_product_admin [["name","Product Administration"]] res.group product f [["name","Product Administration"]] \N \N +1552 2024-04-13 20:39:08.573524 0 9 user_admin_group_product_admin [["group",9],["user",1]] res.user-res.group product f [["group",9],["user",1]] \N \N +1553 2024-04-13 20:39:08.573524 0 17 product_icon [["name","tryton-product"],["path","icons/tryton-product.svg"]] ir.ui.icon product f [["name","tryton-product"],["path","icons/tryton-product.svg"]] \N \N +1554 2024-04-13 20:39:08.573524 0 125 menu_main_product [["icon","tryton-product"],["name","Products"],["sequence",30]] ir.ui.menu product f [["icon","tryton-product"],["name","Products"],["sequence",30]] \N \N +1555 2024-04-13 20:39:08.573524 0 126 menu_configuration [["icon","tryton-settings"],["name","Configuration"],["parent",125],["sequence",0]] ir.ui.menu product f [["icon","tryton-settings"],["name","Configuration"],["parent",125],["sequence",0]] \N \N +1556 2024-04-13 20:39:08.573524 0 10 menu_product_group_product_admin [["group",9],["menu",126]] ir.ui.menu-res.group product f [["group",9],["menu",126]] \N \N +1557 2024-04-13 20:39:08.573524 0 127 menu_reporting [["icon","tryton-folder"],["name","Reporting"],["parent",125],["sequence",100]] ir.ui.menu product f [["icon","tryton-folder"],["name","Reporting"],["parent",125],["sequence",100]] \N \N +1558 2024-04-13 20:39:08.573524 0 296 template_view_tree [["model","product.template"],["name","template_tree"],["type","tree"]] ir.ui.view product f [["model","product.template"],["name","template_tree"],["type","tree"]] \N \N +1559 2024-04-13 20:39:08.573524 0 297 template_view_form [["model","product.template"],["name","template_form"],["type","form"]] ir.ui.view product f [["model","product.template"],["name","template_form"],["type","form"]] \N \N +1560 2024-04-13 20:39:08.573524 0 156 act_template_form [["name","Products"],["res_model","product.template"]] ir.action.act_window product f [["name","Products"],["res_model","product.template"]] \N \N +1561 2024-04-13 20:39:08.573524 0 181 act_template_list_view [["act_window",156],["sequence",10],["view",296]] ir.action.act_window.view product f [["act_window",156],["sequence",10],["view",296]] \N \N +1562 2024-04-13 20:39:08.573524 0 182 act_template_form_view [["act_window",156],["sequence",20],["view",297]] ir.action.act_window.view product f [["act_window",156],["sequence",20],["view",297]] \N \N +1563 2024-04-13 20:39:08.573524 0 128 menu_template [["action","ir.action.act_window,156"],["icon","tryton-list"],["name","Products"],["parent",125],["sequence",10]] ir.ui.menu product f [["action","ir.action.act_window,156"],["icon","tryton-list"],["name","Products"],["parent",125],["sequence",10]] \N \N +1564 2024-04-13 20:39:08.573524 0 157 act_template_by_category [["context","{\\"categories\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}"],["domain","[[\\"categories_all\\", \\"child_of\\", [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}], \\"parent\\"]]"],["name","Product by Category"],["res_model","product.template"]] ir.action.act_window product f [["context","{\\"categories\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}"],["domain","[[\\"categories_all\\", \\"child_of\\", [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}], \\"parent\\"]]"],["name","Product by Category"],["res_model","product.template"]] \N \N +1565 2024-04-13 20:39:08.573524 0 183 act_template_by_category_view1 [["act_window",157],["sequence",10],["view",296]] ir.action.act_window.view product f [["act_window",157],["sequence",10],["view",296]] \N \N +1566 2024-04-13 20:39:08.573524 0 184 act_template_by_category_view2 [["act_window",157],["sequence",20],["view",297]] ir.action.act_window.view product f [["act_window",157],["sequence",20],["view",297]] \N \N +1567 2024-04-13 20:39:08.573524 0 151 act_template_by_category_keyword1 [["action",157],["keyword","tree_open"],["model","product.category,-1"]] ir.action.keyword product f [["action",157],["keyword","tree_open"],["model","product.category,-1"]] \N \N +1568 2024-04-13 20:39:08.573524 0 298 product_view_tree [["inherit",296],["model","product.product"],["name","product_tree"],["priority",10],["type",null]] ir.ui.view product f [["inherit",296],["model","product.product"],["name","product_tree"],["priority",10],["type",null]] \N \N +1569 2024-04-13 20:39:08.573524 0 299 product_view_tree_simple [["model","product.product"],["name","product_tree_simple"],["priority",20],["type","tree"]] ir.ui.view product f [["model","product.product"],["name","product_tree_simple"],["priority",20],["type","tree"]] \N \N +1570 2024-04-13 20:39:08.573524 0 300 product_view_form [["inherit",297],["model","product.product"],["name","product_form"],["priority",10],["type",null]] ir.ui.view product f [["inherit",297],["model","product.product"],["name","product_form"],["priority",10],["type",null]] \N \N +1571 2024-04-13 20:39:08.573524 0 301 product_view_form_simple [["model","product.product"],["name","product_form_simple"],["priority",20],["type","form"]] ir.ui.view product f [["model","product.product"],["name","product_form_simple"],["priority",20],["type","form"]] \N \N +1572 2024-04-13 20:39:08.573524 0 158 act_product_form [["name","Variants"],["res_model","product.product"]] ir.action.act_window product f [["name","Variants"],["res_model","product.product"]] \N \N +1573 2024-04-13 20:39:08.573524 0 185 act_product_list_view [["act_window",158],["sequence",10],["view",298]] ir.action.act_window.view product f [["act_window",158],["sequence",10],["view",298]] \N \N +1574 2024-04-13 20:39:08.573524 0 186 act_product_form_view [["act_window",158],["sequence",20],["view",300]] ir.action.act_window.view product f [["act_window",158],["sequence",20],["view",300]] \N \N +1575 2024-04-13 20:39:08.573524 0 129 menu_product [["action","ir.action.act_window,158"],["icon","tryton-list"],["name","Variants"],["parent",128],["sequence",10]] ir.ui.menu product f [["action","ir.action.act_window,158"],["icon","tryton-list"],["name","Variants"],["parent",128],["sequence",10]] \N \N +1576 2024-04-13 20:39:08.573524 0 116 access_product_template [["model",204],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access product f [["model",204],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1577 2024-04-13 20:39:08.573524 0 117 access_product_template_admin [["group",9],["model",204],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access product f [["group",9],["model",204],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1578 2024-04-13 20:39:08.573524 0 159 act_product_from_template [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"template\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"template\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Variants"],["res_model","product.product"]] ir.action.act_window product f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"template\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"template\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Variants"],["res_model","product.product"]] \N \N +1579 2024-04-13 20:39:08.573524 0 187 act_product_from_template_list_view [["act_window",159],["sequence",10],["view",298]] ir.action.act_window.view product f [["act_window",159],["sequence",10],["view",298]] \N \N +1580 2024-04-13 20:39:08.573524 0 188 act_productfrom_template_form_view [["act_window",159],["sequence",20],["view",300]] ir.action.act_window.view product f [["act_window",159],["sequence",20],["view",300]] \N \N +1581 2024-04-13 20:39:08.573524 0 153 act_product_from_template_keyword1 [["action",159],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword product f [["action",159],["keyword","form_relate"],["model","product.template,-1"]] \N \N +1582 2024-04-13 20:39:08.573524 0 302 identifier_view_form [["model","product.identifier"],["name","identifier_form"],["type","form"]] ir.ui.view product f [["model","product.identifier"],["name","identifier_form"],["type","form"]] \N \N +1583 2024-04-13 20:39:08.573524 0 303 identifier_view_list [["model","product.identifier"],["name","identifier_list"],["priority",10],["type","tree"]] ir.ui.view product f [["model","product.identifier"],["name","identifier_list"],["priority",10],["type","tree"]] \N \N +1584 2024-04-13 20:39:08.573524 0 304 identifier_view_list_sequence [["model","product.identifier"],["name","identifier_list_sequence"],["priority",20],["type","tree"]] ir.ui.view product f [["model","product.identifier"],["name","identifier_list_sequence"],["priority",20],["type","tree"]] \N \N +1585 2024-04-13 20:39:08.573524 0 5 sequence_type_product [["name","Variant"]] ir.sequence.type product f [["name","Variant"]] \N \N +1586 2024-04-13 20:39:08.573524 0 9 sequence_type_product_group_admin [["group",1],["sequence_type",5]] ir.sequence.type-res.group product f [["group",1],["sequence_type",5]] \N \N +1587 2024-04-13 20:39:08.573524 0 10 sequence_type_product_group_product_admin [["group",9],["sequence_type",5]] ir.sequence.type-res.group product f [["group",9],["sequence_type",5]] \N \N +1588 2024-04-13 20:39:08.573524 0 6 sequence_type_template [["name","Product"]] ir.sequence.type product f [["name","Product"]] \N \N +1589 2024-04-13 20:39:08.573524 0 11 sequence_type_template_group_admin [["group",1],["sequence_type",6]] ir.sequence.type-res.group product f [["group",1],["sequence_type",6]] \N \N +1590 2024-04-13 20:39:08.573524 0 12 sequence_type_template_group_template_admin [["group",9],["sequence_type",6]] ir.sequence.type-res.group product f [["group",9],["sequence_type",6]] \N \N +1591 2024-04-13 20:39:08.573524 0 305 category_view_list [["model","product.category"],["name","category_list"],["priority",10],["type","tree"]] ir.ui.view product f [["model","product.category"],["name","category_list"],["priority",10],["type","tree"]] \N \N +1592 2024-04-13 20:39:08.573524 0 306 category_view_tree [["field_childs","childs"],["model","product.category"],["name","category_tree"],["priority",20],["type","tree"]] ir.ui.view product f [["field_childs","childs"],["model","product.category"],["name","category_tree"],["priority",20],["type","tree"]] \N \N +1593 2024-04-13 20:39:08.573524 0 307 category_view_form [["model","product.category"],["name","category_form"],["priority",10],["type","form"]] ir.ui.view product f [["model","product.category"],["name","category_form"],["priority",10],["type","form"]] \N \N +1594 2024-04-13 20:39:08.573524 0 308 category_view_form_product [["model","product.category"],["name","category_product_form"],["priority",20],["type","form"]] ir.ui.view product f [["model","product.category"],["name","category_product_form"],["priority",20],["type","form"]] \N \N +1595 2024-04-13 20:39:08.573524 0 160 act_category_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Categories"],["res_model","product.category"]] ir.action.act_window product f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Categories"],["res_model","product.category"]] \N \N +1596 2024-04-13 20:39:08.573524 0 189 act_category_tree_view1 [["act_window",160],["sequence",10],["view",306]] ir.action.act_window.view product f [["act_window",160],["sequence",10],["view",306]] \N \N +1597 2024-04-13 20:39:08.573524 0 190 act_category_tree_view2 [["act_window",160],["sequence",20],["view",307]] ir.action.act_window.view product f [["act_window",160],["sequence",20],["view",307]] \N \N +1598 2024-04-13 20:39:08.573524 0 130 menu_category_tree [["action","ir.action.act_window,160"],["icon","tryton-tree"],["name","Categories"],["parent",125],["sequence",20]] ir.ui.menu product f [["action","ir.action.act_window,160"],["icon","tryton-tree"],["name","Categories"],["parent",125],["sequence",20]] \N \N +1599 2024-04-13 20:39:08.573524 0 161 act_category_list [["name","Categories"],["res_model","product.category"]] ir.action.act_window product f [["name","Categories"],["res_model","product.category"]] \N \N +1600 2024-04-13 20:39:08.573524 0 191 act_category_list_view1 [["act_window",161],["sequence",10],["view",305]] ir.action.act_window.view product f [["act_window",161],["sequence",10],["view",305]] \N \N +1601 2024-04-13 20:39:08.573524 0 192 act_category_list_view2 [["act_window",161],["sequence",20],["view",307]] ir.action.act_window.view product f [["act_window",161],["sequence",20],["view",307]] \N \N +1602 2024-04-13 20:39:08.573524 0 131 menu_category_list [["action","ir.action.act_window,161"],["icon","tryton-list"],["name","Categories"],["parent",130],["sequence",10]] ir.ui.menu product f [["action","ir.action.act_window,161"],["icon","tryton-list"],["name","Categories"],["parent",130],["sequence",10]] \N \N +1603 2024-04-13 20:39:08.573524 0 162 act_category_product [["name","Add products"],["res_model","product.category"]] ir.action.act_window product f [["name","Add products"],["res_model","product.category"]] \N \N +1604 2024-04-13 20:39:08.573524 0 193 act_category_product_view1 [["act_window",162],["sequence",10],["view",308]] ir.action.act_window.view product f [["act_window",162],["sequence",10],["view",308]] \N \N +1605 2024-04-13 20:39:08.573524 0 30 category_add_products_button [["model",203],["name","add_products"],["string","Add products"]] ir.model.button product f [["model",203],["name","add_products"],["string","Add products"]] \N \N +1606 2024-04-13 20:39:08.573524 0 118 access_product_category [["model",203],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access product f [["model",203],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1607 2024-04-13 20:39:08.573524 0 119 access_product_category_admin [["group",9],["model",203],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access product f [["group",9],["model",203],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1608 2024-04-13 20:39:08.573524 0 309 uom_view_tree [["model","product.uom"],["name","uom_tree"],["type","tree"]] ir.ui.view product f [["model","product.uom"],["name","uom_tree"],["type","tree"]] \N \N +1609 2024-04-13 20:39:08.573524 0 310 uom_view_form [["model","product.uom"],["name","uom_form"],["type","form"]] ir.ui.view product f [["model","product.uom"],["name","uom_form"],["type","form"]] \N \N +1610 2024-04-13 20:39:08.573524 0 163 act_uom_form [["name","Units of Measure"],["res_model","product.uom"]] ir.action.act_window product f [["name","Units of Measure"],["res_model","product.uom"]] \N \N +1611 2024-04-13 20:39:08.573524 0 194 act_uom_form_view1 [["act_window",163],["sequence",10],["view",309]] ir.action.act_window.view product f [["act_window",163],["sequence",10],["view",309]] \N \N +1612 2024-04-13 20:39:08.573524 0 195 act_uom_form_view2 [["act_window",163],["sequence",20],["view",310]] ir.action.act_window.view product f [["act_window",163],["sequence",20],["view",310]] \N \N +1613 2024-04-13 20:39:08.573524 0 132 menu_uom_form [["action","ir.action.act_window,163"],["icon","tryton-list"],["name","Units of Measure"],["parent",126],["sequence",50]] ir.ui.menu product f [["action","ir.action.act_window,163"],["icon","tryton-list"],["name","Units of Measure"],["parent",126],["sequence",50]] \N \N +1614 2024-04-13 20:39:08.573524 0 311 uom_category_view_tree [["model","product.uom.category"],["name","uom_category_tree"],["type","tree"]] ir.ui.view product f [["model","product.uom.category"],["name","uom_category_tree"],["type","tree"]] \N \N +1615 2024-04-13 20:39:08.573524 0 312 uom_category_view_form [["model","product.uom.category"],["name","uom_category_form"],["type","form"]] ir.ui.view product f [["model","product.uom.category"],["name","uom_category_form"],["type","form"]] \N \N +1616 2024-04-13 20:39:08.573524 0 164 act_uom_category_form [["name","Categories"],["res_model","product.uom.category"]] ir.action.act_window product f [["name","Categories"],["res_model","product.uom.category"]] \N \N +1617 2024-04-13 20:39:08.573524 0 196 act_uom_category_form_view1 [["act_window",164],["sequence",10],["view",311]] ir.action.act_window.view product f [["act_window",164],["sequence",10],["view",311]] \N \N +1618 2024-04-13 20:39:08.573524 0 197 act_uom_category_form_view2 [["act_window",164],["sequence",20],["view",312]] ir.action.act_window.view product f [["act_window",164],["sequence",20],["view",312]] \N \N +1619 2024-04-13 20:39:08.573524 0 133 menu_uom_category_form [["action","ir.action.act_window,164"],["icon","tryton-list"],["name","Categories"],["parent",132],["sequence",20]] ir.ui.menu product f [["action","ir.action.act_window,164"],["icon","tryton-list"],["name","Categories"],["parent",132],["sequence",20]] \N \N +1620 2024-04-13 20:39:08.573524 0 1 uom_cat_unit [["name","Units"]] product.uom.category product t [["name","Units"]] \N \N +1621 2024-04-13 20:39:08.573524 0 1 uom_unit [["category",1],["digits",0],["factor",1.0],["name","Unit"],["rate",1.0],["rounding",1.0],["symbol","u"]] product.uom product t [["category",1],["digits",0],["factor",1.0],["name","Unit"],["rate",1.0],["rounding",1.0],["symbol","u"]] \N \N +1622 2024-04-13 20:39:08.573524 0 2 uom_cat_weight [["name","Weight"]] product.uom.category product t [["name","Weight"]] \N \N +1623 2024-04-13 20:39:08.573524 0 2 uom_kilogram [["category",2],["factor",1.0],["name","Kilogram"],["rate",1.0],["symbol","kg"]] product.uom product t [["category",2],["factor",1.0],["name","Kilogram"],["rate",1.0],["symbol","kg"]] \N \N +1624 2024-04-13 20:39:08.573524 0 3 uom_gram [["category",2],["factor",0.001],["name","Gram"],["rate",1000.0],["symbol","g"]] product.uom product t [["category",2],["factor",0.001],["name","Gram"],["rate",1000.0],["symbol","g"]] \N \N +1625 2024-04-13 20:39:08.573524 0 4 uom_carat [["category",2],["factor",0.0002],["name","Carat"],["rate",5000.0],["symbol","c"]] product.uom product t [["category",2],["factor",0.0002],["name","Carat"],["rate",5000.0],["symbol","c"]] \N \N +1626 2024-04-13 20:39:08.573524 0 5 uom_pound [["category",2],["factor",0.45359237],["name","Pound"],["rate",2.204622621849],["symbol","lb"]] product.uom product t [["category",2],["factor",0.45359237],["name","Pound"],["rate",2.204622621849],["symbol","lb"]] \N \N +1627 2024-04-13 20:39:08.573524 0 6 uom_ounce [["category",2],["factor",0.028349523125],["name","Ounce"],["rate",35.27396194958],["symbol","oz"]] product.uom product t [["category",2],["factor",0.028349523125],["name","Ounce"],["rate",35.27396194958],["symbol","oz"]] \N \N +1628 2024-04-13 20:39:08.573524 0 3 uom_cat_time [["name","Time"]] product.uom.category product t [["name","Time"]] \N \N +1629 2024-04-13 20:39:08.573524 0 7 uom_second [["category",3],["factor",0.000277777778],["name","Second"],["rate",3600.0],["symbol","s"]] product.uom product t [["category",3],["factor",0.000277777778],["name","Second"],["rate",3600.0],["symbol","s"]] \N \N +1630 2024-04-13 20:39:08.573524 0 8 uom_minute [["category",3],["factor",0.016666666667],["name","Minute"],["rate",60.0],["symbol","min"]] product.uom product t [["category",3],["factor",0.016666666667],["name","Minute"],["rate",60.0],["symbol","min"]] \N \N +1631 2024-04-13 20:39:08.573524 0 9 uom_hour [["category",3],["factor",1.0],["name","Hour"],["rate",1.0],["symbol","h"]] product.uom product t [["category",3],["factor",1.0],["name","Hour"],["rate",1.0],["symbol","h"]] \N \N +1632 2024-04-13 20:39:08.573524 0 10 uom_day [["category",3],["factor",24.0],["name","Day"],["rate",0.041666666667],["symbol","d"]] product.uom product t [["category",3],["factor",24.0],["name","Day"],["rate",0.041666666667],["symbol","d"]] \N \N +1633 2024-04-13 20:39:08.573524 0 4 uom_cat_length [["name","Length"]] product.uom.category product t [["name","Length"]] \N \N +1634 2024-04-13 20:39:08.573524 0 11 uom_meter [["category",4],["factor",1.0],["name","Meter"],["rate",1.0],["symbol","m"]] product.uom product t [["category",4],["factor",1.0],["name","Meter"],["rate",1.0],["symbol","m"]] \N \N +1635 2024-04-13 20:39:08.573524 0 12 uom_kilometer [["category",4],["factor",1000.0],["name","Kilometer"],["rate",0.001],["symbol","km"]] product.uom product t [["category",4],["factor",1000.0],["name","Kilometer"],["rate",0.001],["symbol","km"]] \N \N +1636 2024-04-13 20:39:08.573524 0 13 uom_centimeter [["category",4],["factor",0.01],["name","Centimeter"],["rate",100.0],["symbol","cm"]] product.uom product t [["category",4],["factor",0.01],["name","Centimeter"],["rate",100.0],["symbol","cm"]] \N \N +1637 2024-04-13 20:39:08.573524 0 14 uom_millimeter [["category",4],["factor",0.001],["name","Millimeter"],["rate",1000.0],["symbol","mm"]] product.uom product t [["category",4],["factor",0.001],["name","Millimeter"],["rate",1000.0],["symbol","mm"]] \N \N +1638 2024-04-13 20:39:08.573524 0 15 uom_foot [["category",4],["factor",0.3048],["name","Foot"],["rate",3.280839895013],["symbol","ft"]] product.uom product t [["category",4],["factor",0.3048],["name","Foot"],["rate",3.280839895013],["symbol","ft"]] \N \N +1639 2024-04-13 20:39:08.573524 0 16 uom_yard [["category",4],["factor",0.9144],["name","Yard"],["rate",1.093613298338],["symbol","yd"]] product.uom product t [["category",4],["factor",0.9144],["name","Yard"],["rate",1.093613298338],["symbol","yd"]] \N \N +1640 2024-04-13 20:39:08.573524 0 17 uom_inch [["category",4],["factor",0.0254],["name","Inch"],["rate",39.370078740157],["symbol","in"]] product.uom product t [["category",4],["factor",0.0254],["name","Inch"],["rate",39.370078740157],["symbol","in"]] \N \N +1641 2024-04-13 20:39:08.573524 0 18 uom_mile [["category",4],["factor",1609.344],["name","Mile"],["rate",0.000621371192],["symbol","mi"]] product.uom product t [["category",4],["factor",1609.344],["name","Mile"],["rate",0.000621371192],["symbol","mi"]] \N \N +1642 2024-04-13 20:39:08.573524 0 5 uom_cat_volume [["name","Volume"]] product.uom.category product t [["name","Volume"]] \N \N +1643 2024-04-13 20:39:08.573524 0 19 uom_cubic_meter [["category",5],["factor",1000.0],["name","Cubic meter"],["rate",0.001],["symbol","m\\u00b3"]] product.uom product t [["category",5],["factor",1000.0],["name","Cubic meter"],["rate",0.001],["symbol","m\\u00b3"]] \N \N +1644 2024-04-13 20:39:08.573524 0 20 uom_liter [["category",5],["factor",1.0],["name","Liter"],["rate",1.0],["symbol","l"]] product.uom product t [["category",5],["factor",1.0],["name","Liter"],["rate",1.0],["symbol","l"]] \N \N +1645 2024-04-13 20:39:08.573524 0 21 uom_cubic_centimeter [["category",5],["factor",0.001],["name","Cubic centimeter"],["rate",1000.0],["symbol","cm\\u00b3"]] product.uom product t [["category",5],["factor",0.001],["name","Cubic centimeter"],["rate",1000.0],["symbol","cm\\u00b3"]] \N \N +1646 2024-04-13 20:39:08.573524 0 22 uom_cubic_inch [["category",5],["factor",0.016387064],["name","Cubic inch"],["rate",61.023744094732],["symbol","in\\u00b3"]] product.uom product t [["category",5],["factor",0.016387064],["name","Cubic inch"],["rate",61.023744094732],["symbol","in\\u00b3"]] \N \N +1647 2024-04-13 20:39:08.573524 0 23 uom_cubic_foot [["category",5],["factor",28.316846592],["name","Cubic foot"],["rate",0.035314666721],["symbol","ft\\u00b3"]] product.uom product t [["category",5],["factor",28.316846592],["name","Cubic foot"],["rate",0.035314666721],["symbol","ft\\u00b3"]] \N \N +1648 2024-04-13 20:39:08.573524 0 24 uom_gallon [["category",5],["factor",3.785411784],["name","Gallon"],["rate",0.264172052358],["symbol","gal"]] product.uom product t [["category",5],["factor",3.785411784],["name","Gallon"],["rate",0.264172052358],["symbol","gal"]] \N \N +1649 2024-04-13 20:39:08.573524 0 6 uom_cat_surface [["name","Surface"]] product.uom.category product t [["name","Surface"]] \N \N +1650 2024-04-13 20:39:08.573524 0 25 uom_square_meter [["category",6],["factor",1.0],["name","Square meter"],["rate",1.0],["symbol","m\\u00b2"]] product.uom product t [["category",6],["factor",1.0],["name","Square meter"],["rate",1.0],["symbol","m\\u00b2"]] \N \N +1651 2024-04-13 20:39:08.573524 0 26 uom_square_centimeter [["category",6],["factor",0.0001],["name","Square centimeter"],["rate",10000.0],["symbol","cm\\u00b2"]] product.uom product t [["category",6],["factor",0.0001],["name","Square centimeter"],["rate",10000.0],["symbol","cm\\u00b2"]] \N \N +1652 2024-04-13 20:39:08.573524 0 27 uom_are [["category",6],["factor",100.0],["name","Are"],["rate",0.01],["symbol","a"]] product.uom product t [["category",6],["factor",100.0],["name","Are"],["rate",0.01],["symbol","a"]] \N \N +1653 2024-04-13 20:39:08.573524 0 28 uom_hectare [["category",6],["factor",10000.0],["name","Hectare"],["rate",0.0001],["symbol","ha"]] product.uom product t [["category",6],["factor",10000.0],["name","Hectare"],["rate",0.0001],["symbol","ha"]] \N \N +1654 2024-04-13 20:39:08.573524 0 29 uom_square_inch [["category",6],["factor",0.00064516],["name","Square inch"],["rate",1550.0031000062],["symbol","in\\u00b2"]] product.uom product t [["category",6],["factor",0.00064516],["name","Square inch"],["rate",1550.0031000062],["symbol","in\\u00b2"]] \N \N +1655 2024-04-13 20:39:08.573524 0 30 uom_square_foot [["category",6],["factor",0.09290304],["name","Square foot"],["rate",10.76391041671],["symbol","ft\\u00b2"]] product.uom product t [["category",6],["factor",0.09290304],["name","Square foot"],["rate",10.76391041671],["symbol","ft\\u00b2"]] \N \N +1656 2024-04-13 20:39:08.573524 0 31 uom_square_yard [["category",6],["factor",0.83612736],["name","Square yard"],["rate",1.195990046301],["symbol","yd\\u00b2"]] product.uom product t [["category",6],["factor",0.83612736],["name","Square yard"],["rate",1.195990046301],["symbol","yd\\u00b2"]] \N \N +1657 2024-04-13 20:39:08.573524 0 7 uom_cat_energy [["name","Energy"]] product.uom.category product t [["name","Energy"]] \N \N +1658 2024-04-13 20:39:08.573524 0 32 uom_energy_joule [["category",7],["factor",1.0],["name","Joule"],["rate",1.0],["symbol","J"]] product.uom product t [["category",7],["factor",1.0],["name","Joule"],["rate",1.0],["symbol","J"]] \N \N +1659 2024-04-13 20:39:08.573524 0 33 uom_energy_megajoule [["category",7],["factor",1000000.0],["name","Megajoule"],["rate",1e-06],["symbol","MJ"]] product.uom product t [["category",7],["factor",1000000.0],["name","Megajoule"],["rate",1e-06],["symbol","MJ"]] \N \N +1660 2024-04-13 20:39:08.573524 0 34 uom_energy_kwh [["category",7],["factor",3600000.0],["name","Kilowatt-hour"],["rate",2.77778e-07],["symbol","kW\\u22c5h"]] product.uom product t [["category",7],["factor",3600000.0],["name","Kilowatt-hour"],["rate",2.77778e-07],["symbol","kW\\u22c5h"]] \N \N +1661 2024-04-13 20:39:08.573524 0 35 uom_energy_mwh [["category",7],["factor",3600000000.0],["name","Megawatt-hour"],["rate",2.78e-10],["symbol","MW\\u22c5h"]] product.uom product t [["category",7],["factor",3600000000.0],["name","Megawatt-hour"],["rate",2.78e-10],["symbol","MW\\u22c5h"]] \N \N +1662 2024-04-13 20:39:08.573524 0 120 access_uom [["model",202],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access product t [["model",202],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1663 2024-04-13 20:39:08.573524 0 121 access_uom_admin [["group",9],["model",202],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access product t [["group",9],["model",202],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1664 2024-04-13 20:39:08.573524 0 122 access_uom_category [["model",201],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access product t [["model",201],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1665 2024-04-13 20:39:08.573524 0 123 access_uom_category_admin [["group",9],["model",201],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access product t [["group",9],["model",201],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1666 2024-04-13 20:39:08.573524 0 313 product_configuration_view_form [["model","product.configuration"],["name","configuration_form"],["type","form"]] ir.ui.view product f [["model","product.configuration"],["name","configuration_form"],["type","form"]] \N \N +1667 2024-04-13 20:39:08.573524 0 165 act_product_configuration_form [["name","Configuration"],["res_model","product.configuration"]] ir.action.act_window product f [["name","Configuration"],["res_model","product.configuration"]] \N \N +1668 2024-04-13 20:39:08.573524 0 198 act_product_configuration_form_view1 [["act_window",165],["sequence",10],["view",313]] ir.action.act_window.view product f [["act_window",165],["sequence",10],["view",313]] \N \N +1669 2024-04-13 20:39:08.573524 0 134 menu_product_configuration [["action","ir.action.act_window,165"],["icon","tryton-list"],["name","Configuration"],["parent",126],["sequence",10]] ir.ui.menu product f [["action","ir.action.act_window,165"],["icon","tryton-list"],["name","Configuration"],["parent",126],["sequence",10]] \N \N +1670 2024-04-13 20:39:08.573524 0 11 menu_product_configuration_group_product_admin [["group",9],["menu",134]] ir.ui.menu-res.group product f [["group",9],["menu",134]] \N \N +1671 2024-04-13 20:39:08.573524 0 124 access_product_configuration [["model",212],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access product f [["model",212],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1672 2024-04-13 20:39:08.573524 0 125 access_product_configuration_product_admin [["group",9],["model",212],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access product f [["group",9],["model",212],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1673 2024-04-13 20:39:08.573524 0 1 cost_price_method [["default_cost_price_method","fixed"]] product.configuration.default_cost_price_method product t [["default_cost_price_method","fixed"]] \N \N +1674 2024-04-13 20:39:08.573524 0 232 msg_uom_modify_factor [["text","You cannot modify the factor of the unit of measure \\"%(uom)s\\"."]] ir.message product f [["text","You cannot modify the factor of the unit of measure \\"%(uom)s\\"."]] \N \N +1675 2024-04-13 20:39:08.573524 0 233 msg_uom_modify_rate [["text","You cannot modify the rate of the unit of measure\\"%(uom)s\\"."]] ir.message product f [["text","You cannot modify the rate of the unit of measure\\"%(uom)s\\"."]] \N \N +1676 2024-04-13 20:39:08.573524 0 234 msg_uom_modify_category [["text","You cannot modify the category of the unit of measure \\"%(uom)s\\"."]] ir.message product f [["text","You cannot modify the category of the unit of measure \\"%(uom)s\\"."]] \N \N +1677 2024-04-13 20:39:08.573524 0 235 msg_uom_decrease_digits [["text","You cannot decrease the digits of the unit of measure \\"%(uom)s\\"."]] ir.message product f [["text","You cannot decrease the digits of the unit of measure \\"%(uom)s\\"."]] \N \N +1678 2024-04-13 20:39:08.573524 0 236 msg_uom_modify_options [["text","If the unit of measure is still not used, you can delete it otherwise you can deactivate it and create a new one."]] ir.message product f [["text","If the unit of measure is still not used, you can delete it otherwise you can deactivate it and create a new one."]] \N \N +1679 2024-04-13 20:39:08.573524 0 237 msg_uom_incompatible_factor_rate [["text","Incompatible factor and rate values on unit of measure\\"%(uom)s\\"."]] ir.message product f [["text","Incompatible factor and rate values on unit of measure\\"%(uom)s\\"."]] \N \N +1680 2024-04-13 20:39:08.573524 0 238 msg_uom_no_zero_factor_rate [["text","Rate and factor can not be both equal to zero."]] ir.message product f [["text","Rate and factor can not be both equal to zero."]] \N \N +1681 2024-04-13 20:39:08.573524 0 239 msg_invalid_code [["text","The %(type)s \\"%(code)s\\" for product \\"%(product)s\\" is not valid."]] ir.message product f [["text","The %(type)s \\"%(code)s\\" for product \\"%(product)s\\" is not valid."]] \N \N +1682 2024-04-13 20:39:08.573524 0 240 msg_product_code_unique [["text","Code of active product must be unique."]] ir.message product f [["text","Code of active product must be unique."]] \N \N +1683 2024-04-13 20:39:09.955992 0 10 group_account_product_admin [["name","Account Product Administration"],["parent",9]] res.group account_product f [["name","Account Product Administration"],["parent",9]] \N \N +1684 2024-04-13 20:39:09.955992 0 10 user_admin_group_account_product_admin [["group",10],["user",1]] res.user-res.group account_product f [["group",10],["user",1]] \N \N +1685 2024-04-13 20:39:09.955992 0 314 create_chart_properties_view_form [["inherit",191],["model","account.create_chart.properties"],["name","create_chart_properties_form"]] ir.ui.view account_product f [["inherit",191],["model","account.create_chart.properties"],["name","create_chart_properties_form"]] \N \N +1686 2024-04-13 20:39:09.955992 0 315 category_view_form [["inherit",307],["model","product.category"],["name","category_form"]] ir.ui.view account_product f [["inherit",307],["model","product.category"],["name","category_form"]] \N \N +1687 2024-04-13 20:39:09.955992 0 25 rule_group_category_default [["default_p",true],["global_p",false],["model",203],["name","Not accounting category"],["perm_read",false]] ir.rule.group account_product f [["default_p",true],["global_p",false],["model",203],["name","Not accounting category"],["perm_read",false]] \N \N +1688 2024-04-13 20:39:09.955992 0 29 rule_category_default_non_accounting [["domain","[[\\"accounting\\", \\"=\\", false]]"],["rule_group",25]] ir.rule account_product f [["domain","[[\\"accounting\\", \\"=\\", false]]"],["rule_group",25]] \N \N +1689 2024-04-13 20:39:09.955992 0 26 rule_group_category_accounting [["global_p",false],["model",203],["name","Any category"],["perm_read",false]] ir.rule.group account_product f [["global_p",false],["model",203],["name","Any category"],["perm_read",false]] \N \N +1690 2024-04-13 20:39:09.955992 0 2 rule_group_category_account-account_product_admin [["group",10],["rule_group",26]] ir.rule.group-res.group account_product f [["group",10],["rule_group",26]] \N \N +1691 2024-04-13 20:39:09.955992 0 30 rule_category_accounting_accounting [["domain","[[\\"accounting\\", \\"=\\", true]]"],["rule_group",26]] ir.rule account_product f [["domain","[[\\"accounting\\", \\"=\\", true]]"],["rule_group",26]] \N \N +1692 2024-04-13 20:39:09.955992 0 316 template_view_form [["inherit",297],["model","product.template"],["name","template_form"]] ir.ui.view account_product f [["inherit",297],["model","product.template"],["name","template_form"]] \N \N +1693 2024-04-13 20:39:09.955992 0 317 template_view_tree [["inherit",296],["model","product.template"],["name","template_tree"]] ir.ui.view account_product f [["inherit",296],["model","product.template"],["name","template_tree"]] \N \N +1694 2024-04-13 20:39:09.955992 0 31 access_template_account_category [["field",2374],["perm_read",true],["perm_write",false]] ir.model.field.access account_product f [["field",2374],["perm_read",true],["perm_write",false]] \N \N +1695 2024-04-13 20:39:09.955992 0 32 access_template_account_category_account_product_admin [["field",2374],["group",10],["perm_read",true],["perm_write",true]] ir.model.field.access account_product f [["field",2374],["group",10],["perm_read",true],["perm_write",true]] \N \N +1696 2024-04-13 20:39:09.955992 0 318 configuration_view_form [["inherit",212],["model","account.configuration"],["name","configuration_form"]] ir.ui.view account_product f [["inherit",212],["model","account.configuration"],["name","configuration_form"]] \N \N +1697 2024-04-13 20:39:09.955992 0 241 msg_missing_account [["text","There is no \\"%(field)s\\" defined for \\"%(name)s\\"."]] ir.message account_product f [["text","There is no \\"%(field)s\\" defined for \\"%(name)s\\"."]] \N \N +1698 2024-04-13 20:39:09.955992 0 242 msg_missing_taxes [["text","There is no account category defined on product \\"%(name)s\\"."]] ir.message account_product f [["text","There is no account category defined on product \\"%(name)s\\"."]] \N \N +1699 2024-04-13 20:39:10.340704 0 319 attribute_set_view_list [["model","product.attribute.set"],["name","attribute_set_list"],["type","tree"]] ir.ui.view product_attribute f [["model","product.attribute.set"],["name","attribute_set_list"],["type","tree"]] \N \N +1700 2024-04-13 20:39:10.340704 0 320 attribute_set_view_form [["model","product.attribute.set"],["name","attribute_set_form"],["type","form"]] ir.ui.view product_attribute f [["model","product.attribute.set"],["name","attribute_set_form"],["type","form"]] \N \N +1701 2024-04-13 20:39:10.340704 0 166 act_attribute_set_form [["name","Attribute Sets"],["res_model","product.attribute.set"]] ir.action.act_window product_attribute f [["name","Attribute Sets"],["res_model","product.attribute.set"]] \N \N +1702 2024-04-13 20:39:10.340704 0 199 act_attribute_set_list_view [["act_window",166],["sequence",10],["view",319]] ir.action.act_window.view product_attribute f [["act_window",166],["sequence",10],["view",319]] \N \N +1703 2024-04-13 20:39:10.340704 0 200 act_attribute_set_form_view [["act_window",166],["sequence",20],["view",320]] ir.action.act_window.view product_attribute f [["act_window",166],["sequence",20],["view",320]] \N \N +1704 2024-04-13 20:39:10.340704 0 135 menu_attribute_set [["action","ir.action.act_window,166"],["icon","tryton-list"],["name","Attribute Sets"],["parent",126],["sequence",50]] ir.ui.menu product_attribute f [["action","ir.action.act_window,166"],["icon","tryton-list"],["name","Attribute Sets"],["parent",126],["sequence",50]] \N \N +1705 2024-04-13 20:39:10.340704 0 126 access_attribute_set [["model",218],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access product_attribute f [["model",218],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1706 2024-04-13 20:39:10.340704 0 127 access_attribute_set_admin [["group",9],["model",218],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access product_attribute f [["group",9],["model",218],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1707 2024-04-13 20:39:10.340704 0 321 attribute_view_list_simple [["model","product.attribute"],["name","attribute_list_simple"],["priority",10],["type","tree"]] ir.ui.view product_attribute f [["model","product.attribute"],["name","attribute_list_simple"],["priority",10],["type","tree"]] \N \N +1708 2024-04-13 20:39:10.340704 0 322 attribute_view_list [["model","product.attribute"],["name","attribute_list"],["priority",20],["type","tree"]] ir.ui.view product_attribute f [["model","product.attribute"],["name","attribute_list"],["priority",20],["type","tree"]] \N \N +1709 2024-04-13 20:39:10.340704 0 323 attribute_view_form [["model","product.attribute"],["name","attribute_form"],["type","form"]] ir.ui.view product_attribute f [["model","product.attribute"],["name","attribute_form"],["type","form"]] \N \N +1710 2024-04-13 20:39:10.340704 0 167 act_attribute_form [["name","Attributes"],["res_model","product.attribute"]] ir.action.act_window product_attribute f [["name","Attributes"],["res_model","product.attribute"]] \N \N +1711 2024-04-13 20:39:10.340704 0 201 act_attribute_list_view [["act_window",167],["sequence",10],["view",322]] ir.action.act_window.view product_attribute f [["act_window",167],["sequence",10],["view",322]] \N \N +1712 2024-04-13 20:39:10.340704 0 202 act_attribute_form_view [["act_window",167],["sequence",20],["view",323]] ir.action.act_window.view product_attribute f [["act_window",167],["sequence",20],["view",323]] \N \N +1713 2024-04-13 20:39:10.340704 0 136 menu_attribute [["action","ir.action.act_window,167"],["icon","tryton-list"],["name","Attributes"],["parent",135],["sequence",10]] ir.ui.menu product_attribute f [["action","ir.action.act_window,167"],["icon","tryton-list"],["name","Attributes"],["parent",135],["sequence",10]] \N \N +1714 2024-04-13 20:39:10.340704 0 128 access_attribute [["model",219],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access product_attribute f [["model",219],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1715 2024-04-13 20:39:10.340704 0 129 access_attribute_admin [["group",9],["model",219],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access product_attribute f [["group",9],["model",219],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1716 2024-04-13 20:39:10.340704 0 324 template_view_tree [["inherit",296],["model","product.template"],["name","template_tree"]] ir.ui.view product_attribute f [["inherit",296],["model","product.template"],["name","template_tree"]] \N \N +1717 2024-04-13 20:39:10.340704 0 325 template_view_form [["inherit",297],["model","product.template"],["name","template_form"]] ir.ui.view product_attribute f [["inherit",297],["model","product.template"],["name","template_form"]] \N \N +1718 2024-04-13 20:39:10.340704 0 326 product_view_tree [["inherit",298],["model","product.product"],["name","product_tree"]] ir.ui.view product_attribute f [["inherit",298],["model","product.product"],["name","product_tree"]] \N \N +1719 2024-04-13 20:39:10.340704 0 327 product_view_form [["inherit",300],["model","product.product"],["name","product_form"]] ir.ui.view product_attribute f [["inherit",300],["model","product.product"],["name","product_form"]] \N \N +1720 2024-04-13 20:39:10.340704 0 243 msg_label_value [["text","%(label)s: %(value)s"]] ir.message product_attribute f [["text","%(label)s: %(value)s"]] \N \N +1721 2024-04-13 20:39:10.672188 0 328 template_view_list [["inherit",296],["model","product.template"],["name","template_list"]] ir.ui.view product_image f [["inherit",296],["model","product.template"],["name","template_list"]] \N \N +1722 2024-04-13 20:39:10.672188 0 329 template_view_form [["inherit",297],["model","product.template"],["name","template_form"]] ir.ui.view product_image f [["inherit",297],["model","product.template"],["name","template_form"]] \N \N +1723 2024-04-13 20:39:10.672188 0 330 image_view_list [["model","product.image"],["name","image_list"],["type","tree"]] ir.ui.view product_image f [["model","product.image"],["name","image_list"],["type","tree"]] \N \N +1724 2024-04-13 20:39:10.672188 0 331 image_view_form [["model","product.image"],["name","image_form"],["type","form"]] ir.ui.view product_image f [["model","product.image"],["name","image_form"],["type","form"]] \N \N +1725 2024-04-13 20:39:10.672188 0 332 image_view_list_form [["model","product.image"],["name","image_form"],["type","list-form"]] ir.ui.view product_image f [["model","product.image"],["name","image_form"],["type","list-form"]] \N \N +1726 2024-04-13 20:39:10.672188 0 244 msg_product_image_size_unique [["text","The size of a product image must be unique."]] ir.message product_image f [["text","The size of a product image must be unique."]] \N \N +1727 2024-04-13 20:39:10.806513 0 333 template_view_form [["inherit",297],["model","product.template"],["name","template_form"]] ir.ui.view product_measurements f [["inherit",297],["model","product.template"],["name","template_form"]] \N \N +1728 2024-04-13 20:39:10.936653 0 11 group_stock [["name","Stock"]] res.group stock f [["name","Stock"]] \N \N +1729 2024-04-13 20:39:10.936653 0 12 group_stock_admin [["name","Stock Administration"],["parent",11]] res.group stock f [["name","Stock Administration"],["parent",11]] \N \N +1730 2024-04-13 20:39:10.936653 0 13 group_stock_force_assignment [["name","Stock Force Assignment"],["parent",11]] res.group stock f [["name","Stock Force Assignment"],["parent",11]] \N \N +1731 2024-04-13 20:39:10.936653 0 11 user_admin_group_stock_admin [["group",12],["user",1]] res.user-res.group stock f [["group",12],["user",1]] \N \N +1732 2024-04-13 20:39:10.936653 0 12 user_admin_group_stock [["group",11],["user",1]] res.user-res.group stock f [["group",11],["user",1]] \N \N +1733 2024-04-13 20:39:10.936653 0 13 user_admin_group_stock_force_assignment [["group",13],["user",1]] res.user-res.group stock f [["group",13],["user",1]] \N \N +1734 2024-04-13 20:39:10.936653 0 18 stock_icon [["name","tryton-stock"],["path","icons/tryton-stock.svg"]] ir.ui.icon stock f [["name","tryton-stock"],["path","icons/tryton-stock.svg"]] \N \N +1735 2024-04-13 20:39:10.936653 0 19 stock_shipment_in [["name","tryton-shipment-in"],["path","icons/tryton-shipment-in.svg"]] ir.ui.icon stock f [["name","tryton-shipment-in"],["path","icons/tryton-shipment-in.svg"]] \N \N +1736 2024-04-13 20:39:10.936653 0 20 stock_shipment_out [["name","tryton-shipment-out"],["path","icons/tryton-shipment-out.svg"]] ir.ui.icon stock f [["name","tryton-shipment-out"],["path","icons/tryton-shipment-out.svg"]] \N \N +1737 2024-04-13 20:39:10.936653 0 137 menu_stock [["icon","tryton-stock"],["name","Inventory & Stock"],["sequence",60]] ir.ui.menu stock f [["icon","tryton-stock"],["name","Inventory & Stock"],["sequence",60]] \N \N +1738 2024-04-13 20:39:10.936653 0 12 menu_stock_group_stock [["group",11],["menu",137]] ir.ui.menu-res.group stock f [["group",11],["menu",137]] \N \N +1739 2024-04-13 20:39:10.936653 0 138 menu_configuration [["icon","tryton-settings"],["name","Configuration"],["parent",137],["sequence",0]] ir.ui.menu stock f [["icon","tryton-settings"],["name","Configuration"],["parent",137],["sequence",0]] \N \N +1740 2024-04-13 20:39:10.936653 0 13 menu_configuration_group_stock_admin [["group",12],["menu",138]] ir.ui.menu-res.group stock f [["group",12],["menu",138]] \N \N +1741 2024-04-13 20:39:10.936653 0 139 menu_reporting [["active",false],["icon","tryton-folder"],["name","Reporting"],["parent",137],["sequence",100]] ir.ui.menu stock f [["active",false],["icon","tryton-folder"],["name","Reporting"],["parent",137],["sequence",100]] \N \N +1742 2024-04-13 20:39:10.936653 0 168 wizard_recompute_cost_price [["name","Recompute Cost Price"],["wiz_name","product.recompute_cost_price"]] ir.action.wizard stock f [["name","Recompute Cost Price"],["wiz_name","product.recompute_cost_price"]] \N \N +1743 2024-04-13 20:39:10.936653 0 161 wizard_recompute_cost_price_product_keyword1 [["action",168],["keyword","form_action"],["model","product.product,-1"]] ir.action.keyword stock f [["action",168],["keyword","form_action"],["model","product.product,-1"]] \N \N +1744 2024-04-13 20:39:10.936653 0 162 wizard_recompute_cost_price_template_keyword1 [["action",168],["keyword","form_action"],["model","product.template,-1"]] ir.action.keyword stock f [["action",168],["keyword","form_action"],["model","product.template,-1"]] \N \N +1745 2024-04-13 20:39:10.936653 0 10 wizard_recompute_cost_price-group_product_admin [["action",168],["group",9]] ir.action-res.group stock f [["action",168],["group",9]] \N \N +1746 2024-04-13 20:39:10.936653 0 334 recompute_cost_price_start_view_form [["model","product.recompute_cost_price.start"],["name","recompute_cost_price_start_form"],["type","form"]] ir.ui.view stock f [["model","product.recompute_cost_price.start"],["name","recompute_cost_price_start_form"],["type","form"]] \N \N +1747 2024-04-13 20:39:10.936653 0 5 cron_recompute_cost_price_from_moves [["interval_number",1],["interval_type","days"],["method","product.product|recompute_cost_price_from_moves"]] ir.cron stock f [["interval_number",1],["interval_type","days"],["method","product.product|recompute_cost_price_from_moves"]] \N \N +1748 2024-04-13 20:39:10.936653 0 335 product_cost_price_revision_view_form [["model","product.cost_price.revision"],["name","product_cost_price_revision_form"],["type","form"]] ir.ui.view stock f [["model","product.cost_price.revision"],["name","product_cost_price_revision_form"],["type","form"]] \N \N +1749 2024-04-13 20:39:10.936653 0 336 product_cost_price_revision_view_list [["model","product.cost_price.revision"],["name","product_cost_price_revision_list"],["type","tree"]] ir.ui.view stock f [["model","product.cost_price.revision"],["name","product_cost_price_revision_list"],["type","tree"]] \N \N +1750 2024-04-13 20:39:10.936653 0 169 act_product_cost_price_revision [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": \\"product\\", \\"t\\": \\"template\\"}, \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}], \\"t\\": [{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": \\"product\\", \\"t\\": \\"template\\"}, \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]}]"],["name","Cost Price Revision"],["res_model","product.cost_price.revision"]] ir.action.act_window stock f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": \\"product\\", \\"t\\": \\"template\\"}, \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}], \\"t\\": [{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": \\"product\\", \\"t\\": \\"template\\"}, \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]}]"],["name","Cost Price Revision"],["res_model","product.cost_price.revision"]] \N \N +1751 2024-04-13 20:39:10.936653 0 203 act_product_cost_price_revision_list_view [["act_window",169],["sequence",10],["view",336]] ir.action.act_window.view stock f [["act_window",169],["sequence",10],["view",336]] \N \N +1752 2024-04-13 20:39:10.936653 0 204 act_product_cost_price_revision_form_view [["act_window",169],["sequence",20],["view",335]] ir.action.act_window.view stock f [["act_window",169],["sequence",20],["view",335]] \N \N +1753 2024-04-13 20:39:10.936653 0 163 act_product_cost_price_revision_keyword1 [["action",169],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword stock f [["action",169],["keyword","form_relate"],["model","product.template,-1"]] \N \N +1754 2024-04-13 20:39:10.936653 0 164 act_product_cost_price_revision_keyword2 [["action",169],["keyword","form_relate"],["model","product.product,-1"]] ir.action.keyword stock f [["action",169],["keyword","form_relate"],["model","product.product,-1"]] \N \N +1755 2024-04-13 20:39:10.936653 0 27 rule_group_product_cost_price_revision_companies [["global_p",true],["model",244],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",244],["name","User in companies"]] \N \N +1756 2024-04-13 20:39:10.936653 0 31 rule_product_cost_price_revision_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",27]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",27]] \N \N +1757 2024-04-13 20:39:10.936653 0 130 access_product_cost_price_revision [["model",244],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["model",244],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1758 2024-04-13 20:39:10.936653 0 131 access_product_cost_price_revision_admin [["group",9],["model",244],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",9],["model",244],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1759 2024-04-13 20:39:10.936653 0 337 product_modify_cost_price_start_form [["model","product.modify_cost_price.start"],["name","product_modify_cost_price_start_form"],["type","form"]] ir.ui.view stock f [["model","product.modify_cost_price.start"],["name","product_modify_cost_price_start_form"],["type","form"]] \N \N +1760 2024-04-13 20:39:10.936653 0 170 wizard_product_modify_cost_price [["name","Modify Cost Price"],["wiz_name","product.modify_cost_price"]] ir.action.wizard stock f [["name","Modify Cost Price"],["wiz_name","product.modify_cost_price"]] \N \N +1761 2024-04-13 20:39:10.936653 0 165 product_modify_cost_price_keyword1 [["action",170],["keyword","form_action"],["model","product.product,-1"]] ir.action.keyword stock f [["action",170],["keyword","form_action"],["model","product.product,-1"]] \N \N +1762 2024-04-13 20:39:10.936653 0 166 product_modify_cost_price_keyword2 [["action",170],["keyword","form_action"],["model","product.template,-1"]] ir.action.keyword stock f [["action",170],["keyword","form_action"],["model","product.template,-1"]] \N \N +1763 2024-04-13 20:39:10.936653 0 11 wizard_product_modify_cost_price-group_account [["action",170],["group",9]] ir.action-res.group stock f [["action",170],["group",9]] \N \N +1764 2024-04-13 20:39:10.936653 0 338 location_quantity_view_tree [["field_childs","childs"],["model","stock.location"],["name","location_quantity_tree"],["priority",20],["type","tree"]] ir.ui.view stock f [["field_childs","childs"],["model","stock.location"],["name","location_quantity_tree"],["priority",20],["type","tree"]] \N \N +1765 2024-04-13 20:39:10.936653 0 339 location_quantity_view_form [["model","stock.location"],["name","location_quantity_form"],["priority",20],["type","form"]] ir.ui.view stock f [["model","stock.location"],["name","location_quantity_form"],["priority",20],["type","form"]] \N \N +1766 2024-04-13 20:39:10.936653 0 340 location_quantity_view_list [["model","stock.location"],["name","location_quantity_tree"],["priority",20],["type","tree"]] ir.ui.view stock f [["model","stock.location"],["name","location_quantity_tree"],["priority",20],["type","tree"]] \N \N +1767 2024-04-13 20:39:10.936653 0 171 act_location_quantity_tree [["context","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": {\\"product\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"stock_skip_warehouse\\": false}, \\"t\\": {\\"product_template\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"stock_skip_warehouse\\": false}}"],["context_model","product.by_location.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Locations Tree Quantity"],["res_model","stock.location"]] ir.action.act_window stock f [["context","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": {\\"product\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"stock_skip_warehouse\\": false}, \\"t\\": {\\"product_template\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"stock_skip_warehouse\\": false}}"],["context_model","product.by_location.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Locations Tree Quantity"],["res_model","stock.location"]] \N \N +1768 2024-04-13 20:39:10.936653 0 205 act_location_quantity_tree_view1 [["act_window",171],["sequence",10],["view",338]] ir.action.act_window.view stock f [["act_window",171],["sequence",10],["view",338]] \N \N +1769 2024-04-13 20:39:10.936653 0 206 act_location_quantity_tree_view2 [["act_window",171],["sequence",20],["view",339]] ir.action.act_window.view stock f [["act_window",171],["sequence",20],["view",339]] \N \N +1770 2024-04-13 20:39:10.936653 0 167 act_location_quantity_tree_keyword1 [["action",171],["keyword","form_relate"],["model","product.product,-1"]] ir.action.keyword stock f [["action",171],["keyword","form_relate"],["model","product.product,-1"]] \N \N +1771 2024-04-13 20:39:10.936653 0 168 act_location_quantity_tree_keyword2 [["action",171],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword stock f [["action",171],["keyword","form_relate"],["model","product.template,-1"]] \N \N +1772 2024-04-13 20:39:10.936653 0 12 act_location-quantity_tree-group_stock [["action",171],["group",11]] ir.action-res.group stock f [["action",171],["group",11]] \N \N +1773 2024-04-13 20:39:10.936653 0 172 act_location_quantity_list [["context","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": {\\"product\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"stock_skip_warehouse\\": false, \\"with_childs\\": false}, \\"t\\": {\\"product_template\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"stock_skip_warehouse\\": false, \\"with_childs\\": false}}"],["context_model","product.by_location.context"],["name","Locations List Quantity"],["res_model","stock.location"],["search_value","[\\"OR\\", [\\"quantity\\", \\"!=\\", 0], [\\"forecast_quantity\\", \\"!=\\", 0]]"]] ir.action.act_window stock f [["context","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": {\\"product\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"stock_skip_warehouse\\": false, \\"with_childs\\": false}, \\"t\\": {\\"product_template\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"stock_skip_warehouse\\": false, \\"with_childs\\": false}}"],["context_model","product.by_location.context"],["name","Locations List Quantity"],["res_model","stock.location"],["search_value","[\\"OR\\", [\\"quantity\\", \\"!=\\", 0], [\\"forecast_quantity\\", \\"!=\\", 0]]"]] \N \N +1774 2024-04-13 20:39:10.936653 0 207 act_location_quantity_list_view [["act_window",172],["sequence",10],["view",340]] ir.action.act_window.view stock f [["act_window",172],["sequence",10],["view",340]] \N \N +1775 2024-04-13 20:39:10.936653 0 169 act_location_quantity_list_keyword1 [["action",172],["keyword","form_relate"],["model","product.product,-1"]] ir.action.keyword stock f [["action",172],["keyword","form_relate"],["model","product.product,-1"]] \N \N +1776 2024-04-13 20:39:10.936653 0 170 act_location_quantity_list_keyword2 [["action",172],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword stock f [["action",172],["keyword","form_relate"],["model","product.template,-1"]] \N \N +1777 2024-04-13 20:39:10.936653 0 13 act_location-quantity_list-group_stock [["action",172],["group",11]] ir.action-res.group stock f [["action",172],["group",11]] \N \N +1778 2024-04-13 20:39:10.936653 0 341 product_by_location_context_view_form [["model","product.by_location.context"],["name","product_by_location_context_form"],["type","form"]] ir.ui.view stock f [["model","product.by_location.context"],["name","product_by_location_context_form"],["type","form"]] \N \N +1779 2024-04-13 20:39:10.936653 0 173 wizard_open_product_quantities_by_warehouse [["name","Products Quantities By Warehouse"],["wiz_name","stock.product_quantities_warehouse.open"]] ir.action.wizard stock f [["name","Products Quantities By Warehouse"],["wiz_name","stock.product_quantities_warehouse.open"]] \N \N +1780 2024-04-13 20:39:10.936653 0 171 wizard_open_product_quantities_by_warehouse_keyword_shipment_in_return [["action",173],["keyword","form_relate"],["model","stock.shipment.in.return,-1"]] ir.action.keyword stock f [["action",173],["keyword","form_relate"],["model","stock.shipment.in.return,-1"]] \N \N +1781 2024-04-13 20:39:10.936653 0 172 wizard_open_product_quantities_by_warehouse_keyword_shipment_out [["action",173],["keyword","form_relate"],["model","stock.shipment.out,-1"]] ir.action.keyword stock f [["action",173],["keyword","form_relate"],["model","stock.shipment.out,-1"]] \N \N +1782 2024-04-13 20:39:10.936653 0 173 wizard_open_product_quantities_by_warehouse_keyword_shipment_internal [["action",173],["keyword","form_relate"],["model","stock.shipment.internal,-1"]] ir.action.keyword stock f [["action",173],["keyword","form_relate"],["model","stock.shipment.internal,-1"]] \N \N +1783 2024-04-13 20:39:10.936653 0 342 product_quantities_warehouse_view_graph [["model","stock.product_quantities_warehouse"],["name","product_quantities_warehouse_graph"],["type","graph"]] ir.ui.view stock f [["model","stock.product_quantities_warehouse"],["name","product_quantities_warehouse_graph"],["type","graph"]] \N \N +1784 2024-04-13 20:39:10.936653 0 343 product_quantities_warehouse_view_list [["model","stock.product_quantities_warehouse"],["name","product_quantities_warehouse_list"],["type","tree"]] ir.ui.view stock f [["model","stock.product_quantities_warehouse"],["name","product_quantities_warehouse_list"],["type","tree"]] \N \N +1785 2024-04-13 20:39:10.936653 0 174 act_product_quantities_warehouse [["context","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": {\\"product\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}, \\"t\\": {\\"product_template\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}}"],["context_model","stock.product_quantities_warehouse.context"],["name","Product Quantities By Warehouse"],["res_model","stock.product_quantities_warehouse"],["search_value","[[\\"date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"Date\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dy\\": 0, \\"start\\": null, \\"y\\": null}]]"]] ir.action.act_window stock f [["context","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": {\\"product\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}, \\"t\\": {\\"product_template\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}}"],["context_model","stock.product_quantities_warehouse.context"],["name","Product Quantities By Warehouse"],["res_model","stock.product_quantities_warehouse"],["search_value","[[\\"date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"Date\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dy\\": 0, \\"start\\": null, \\"y\\": null}]]"]] \N \N +1786 2024-04-13 20:39:10.936653 0 208 act_product_quantities_warehouse_graph_view [["act_window",174],["sequence",10],["view",342]] ir.action.act_window.view stock f [["act_window",174],["sequence",10],["view",342]] \N \N +1787 2024-04-13 20:39:10.936653 0 209 act_product_quantities_warehouse_list_view [["act_window",174],["sequence",20],["view",343]] ir.action.act_window.view stock f [["act_window",174],["sequence",20],["view",343]] \N \N +1788 2024-04-13 20:39:10.936653 0 28 rule_group_product_quantities_warehouse_companies [["global_p",true],["model",240],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",240],["name","User in companies"]] \N \N +1789 2024-04-13 20:39:10.936653 0 32 rule_product_quantities_warehouse_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",28]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",28]] \N \N +1790 2024-04-13 20:39:10.936653 0 132 access_product_quantities_warehouse [["model",240],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",240],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1791 2024-04-13 20:39:10.936653 0 133 access_product_quantities_warehouse_group_stock [["group",11],["model",240],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",11],["model",240],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1792 2024-04-13 20:39:10.936653 0 344 product_quantities_warehouse_context_view_form [["model","stock.product_quantities_warehouse.context"],["name","product_quantities_warehouse_context_form"],["type","form"]] ir.ui.view stock f [["model","stock.product_quantities_warehouse.context"],["name","product_quantities_warehouse_context_form"],["type","form"]] \N \N +1793 2024-04-13 20:39:10.936653 0 174 act_product_quantities_warehouse_keyword1 [["action",174],["keyword","form_relate"],["model","product.product,-1"]] ir.action.keyword stock f [["action",174],["keyword","form_relate"],["model","product.product,-1"]] \N \N +1794 2024-04-13 20:39:10.936653 0 175 act_product_quantities_warehouse_keyword2 [["action",174],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword stock f [["action",174],["keyword","form_relate"],["model","product.template,-1"]] \N \N +1795 2024-04-13 20:39:10.936653 0 14 act_product_quantities_warehouse-group_stock [["action",174],["group",11]] ir.action-res.group stock f [["action",174],["group",11]] \N \N +1796 2024-04-13 20:39:10.936653 0 175 wizard_open_product_quantities_by_warehouse_move [["name","Stock Moves"],["wiz_name","stock.product_quantities_warehouse.move.open"]] ir.action.wizard stock f [["name","Stock Moves"],["wiz_name","stock.product_quantities_warehouse.move.open"]] \N \N +1797 2024-04-13 20:39:10.936653 0 176 wizard_open_product_quantities_by_warehouse_move_keyword1 [["action",175],["keyword","tree_open"],["model","stock.product_quantities_warehouse,-1"]] ir.action.keyword stock f [["action",175],["keyword","tree_open"],["model","stock.product_quantities_warehouse,-1"]] \N \N +1798 2024-04-13 20:39:10.936653 0 345 product_quantities_warehouse_move_view_list [["model","stock.product_quantities_warehouse.move"],["name","product_quantities_warehouse_move_list"],["type","tree"]] ir.ui.view stock f [["model","stock.product_quantities_warehouse.move"],["name","product_quantities_warehouse_move_list"],["type","tree"]] \N \N +1799 2024-04-13 20:39:10.936653 0 176 act_product_quantities_warehouse_move [["context","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": {\\"product\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}, \\"t\\": {\\"product_template\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}}"],["context_model","stock.product_quantities_warehouse.context"],["name","Stock Moves By Warehouse"],["res_model","stock.product_quantities_warehouse.move"],["search_value","[[\\"date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"Date\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dy\\": 0, \\"start\\": null, \\"y\\": null}]]"]] ir.action.act_window stock f [["context","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": {\\"product\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}, \\"t\\": {\\"product_template\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}}"],["context_model","stock.product_quantities_warehouse.context"],["name","Stock Moves By Warehouse"],["res_model","stock.product_quantities_warehouse.move"],["search_value","[[\\"date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"Date\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dy\\": 0, \\"start\\": null, \\"y\\": null}]]"]] \N \N +1800 2024-04-13 20:39:10.936653 0 210 act_product_quantities_warehouse_move_list_view [["act_window",176],["sequence",10],["view",345]] ir.action.act_window.view stock f [["act_window",176],["sequence",10],["view",345]] \N \N +1801 2024-04-13 20:39:10.936653 0 177 act_product_quantities_warehouse_move_keyword1 [["action",176],["keyword","form_relate"],["model","product.product,-1"]] ir.action.keyword stock f [["action",176],["keyword","form_relate"],["model","product.product,-1"]] \N \N +1802 2024-04-13 20:39:10.936653 0 178 act_product_quantities_warehouse_move_keyword2 [["action",176],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword stock f [["action",176],["keyword","form_relate"],["model","product.template,-1"]] \N \N +1803 2024-04-13 20:39:10.936653 0 15 act_product_quantities_warehouse_move-group_stock [["action",176],["group",11]] ir.action-res.group stock f [["action",176],["group",11]] \N \N +1804 2024-04-13 20:39:10.936653 0 29 rule_group_product_quantities_warehouse_move_companies [["global_p",true],["model",242],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",242],["name","User in companies"]] \N \N +1805 2024-04-13 20:39:10.936653 0 33 rule_product_quantities_warehouse_move_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",29]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",29]] \N \N +1806 2024-04-13 20:39:10.936653 0 134 access_product_quantities_warehouse_move [["model",242],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",242],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1807 2024-04-13 20:39:10.936653 0 135 access_product_quantities_warehouse_move_group_stock [["group",11],["model",242],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",11],["model",242],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1808 2024-04-13 20:39:10.936653 0 346 location_view_form [["model","stock.location"],["name","location_form"],["type","form"]] ir.ui.view stock f [["model","stock.location"],["name","location_form"],["type","form"]] \N \N +1809 2024-04-13 20:39:10.936653 0 347 location_view_tree [["field_childs","childs"],["model","stock.location"],["name","location_tree"],["priority",20],["type","tree"]] ir.ui.view stock f [["field_childs","childs"],["model","stock.location"],["name","location_tree"],["priority",20],["type","tree"]] \N \N +1810 2024-04-13 20:39:10.936653 0 348 location_view_list [["model","stock.location"],["name","location_list"],["priority",10],["type","tree"]] ir.ui.view stock f [["model","stock.location"],["name","location_list"],["priority",10],["type","tree"]] \N \N +1811 2024-04-13 20:39:10.936653 0 349 location_view_list_warehouse [["model","stock.location"],["name","location_tree"],["priority",20],["type","tree"]] ir.ui.view stock f [["model","stock.location"],["name","location_tree"],["priority",20],["type","tree"]] \N \N +1812 2024-04-13 20:39:10.936653 0 177 act_warehouse_list [["context","{\\"stock_skip_warehouse\\": false, \\"with_childs\\": true}"],["domain","[[\\"type\\", \\"=\\", \\"warehouse\\"]]"],["name","Warehouses"],["res_model","stock.location"]] ir.action.act_window stock f [["context","{\\"stock_skip_warehouse\\": false, \\"with_childs\\": true}"],["domain","[[\\"type\\", \\"=\\", \\"warehouse\\"]]"],["name","Warehouses"],["res_model","stock.location"]] \N \N +1813 2024-04-13 20:39:10.936653 0 211 act_warehouse_list_view1 [["act_window",177],["sequence",10],["view",349]] ir.action.act_window.view stock f [["act_window",177],["sequence",10],["view",349]] \N \N +1814 2024-04-13 20:39:10.936653 0 212 act_warehouse_list_view2 [["act_window",177],["sequence",20],["view",346]] ir.action.act_window.view stock f [["act_window",177],["sequence",20],["view",346]] \N \N +1815 2024-04-13 20:39:10.936653 0 140 menu_warehouse_list [["action","ir.action.act_window,177"],["icon","tryton-list"],["name","Warehouses"],["parent",137],["sequence",30]] ir.ui.menu stock f [["action","ir.action.act_window,177"],["icon","tryton-list"],["name","Warehouses"],["parent",137],["sequence",30]] \N \N +1816 2024-04-13 20:39:10.936653 0 178 act_location_tree [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Locations"],["res_model","stock.location"]] ir.action.act_window stock f [["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Locations"],["res_model","stock.location"]] \N \N +1817 2024-04-13 20:39:10.936653 0 213 act_location_tree_view1 [["act_window",178],["sequence",10],["view",347]] ir.action.act_window.view stock f [["act_window",178],["sequence",10],["view",347]] \N \N +1818 2024-04-13 20:39:10.936653 0 214 act_location_tree_view2 [["act_window",178],["sequence",20],["view",346]] ir.action.act_window.view stock f [["act_window",178],["sequence",20],["view",346]] \N \N +1819 2024-04-13 20:39:10.936653 0 141 menu_location_tree [["action","ir.action.act_window,178"],["icon","tryton-tree"],["name","Locations"],["parent",137],["sequence",30]] ir.ui.menu stock f [["action","ir.action.act_window,178"],["icon","tryton-tree"],["name","Locations"],["parent",137],["sequence",30]] \N \N +1820 2024-04-13 20:39:10.936653 0 179 act_location_form [["name","Locations"],["res_model","stock.location"]] ir.action.act_window stock f [["name","Locations"],["res_model","stock.location"]] \N \N +1821 2024-04-13 20:39:10.936653 0 215 act_location_form_view1 [["act_window",179],["sequence",10],["view",348]] ir.action.act_window.view stock f [["act_window",179],["sequence",10],["view",348]] \N \N +1822 2024-04-13 20:39:10.936653 0 216 act_location_form_view2 [["act_window",179],["sequence",20],["view",346]] ir.action.act_window.view stock f [["act_window",179],["sequence",20],["view",346]] \N \N +1823 2024-04-13 20:39:10.936653 0 142 menu_location_form [["action","ir.action.act_window,179"],["icon","tryton-list"],["name","Locations"],["parent",138],["sequence",20]] ir.ui.menu stock f [["action","ir.action.act_window,179"],["icon","tryton-list"],["name","Locations"],["parent",138],["sequence",20]] \N \N +1824 2024-04-13 20:39:10.936653 0 143 menu_location_form2 [["action","ir.action.act_window,179"],["icon","tryton-list"],["name","Locations"],["parent",141],["sequence",10]] ir.ui.menu stock f [["action","ir.action.act_window,179"],["icon","tryton-list"],["name","Locations"],["parent",141],["sequence",10]] \N \N +1825 2024-04-13 20:39:10.936653 0 350 products_by_locations_context_view_form [["model","stock.products_by_locations.context"],["name","products_by_locations_context_form"],["type","form"]] ir.ui.view stock f [["model","stock.products_by_locations.context"],["name","products_by_locations_context_form"],["type","form"]] \N \N +1826 2024-04-13 20:39:10.936653 0 351 products_by_locations_view_list [["model","stock.products_by_locations"],["name","products_by_locations_list"],["type","tree"]] ir.ui.view stock f [["model","stock.products_by_locations"],["name","products_by_locations_list"],["type","tree"]] \N \N +1827 2024-04-13 20:39:10.936653 0 180 act_products_by_locations_relate [["context","{\\"locations\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}"],["context_model","stock.products_by_locations.context"],["domain","[\\"OR\\", [\\"quantity\\", \\"!=\\", 0.0], [\\"forecast_quantity\\", \\"!=\\", 0.0]]"],["name","Products by Locations"],["res_model","stock.products_by_locations"],["search_value","[[\\"consumable\\", \\"=\\", false]]"]] ir.action.act_window stock f [["context","{\\"locations\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}}"],["context_model","stock.products_by_locations.context"],["domain","[\\"OR\\", [\\"quantity\\", \\"!=\\", 0.0], [\\"forecast_quantity\\", \\"!=\\", 0.0]]"],["name","Products by Locations"],["res_model","stock.products_by_locations"],["search_value","[[\\"consumable\\", \\"=\\", false]]"]] \N \N +1828 2024-04-13 20:39:10.936653 0 217 act_products_by_locations_relate_view1 [["act_window",180],["sequence",10],["view",351]] ir.action.act_window.view stock f [["act_window",180],["sequence",10],["view",351]] \N \N +1829 2024-04-13 20:39:10.936653 0 183 act_products_by_locations_relate_keyword1 [["action",180],["keyword","tree_open"],["model","stock.location,-1"]] ir.action.keyword stock f [["action",180],["keyword","tree_open"],["model","stock.location,-1"]] \N \N +1830 2024-04-13 20:39:10.936653 0 184 act_products_by_locations_relate_keyword2 [["action",180],["keyword","form_relate"],["model","stock.location,-1"]] ir.action.keyword stock f [["action",180],["keyword","form_relate"],["model","stock.location,-1"]] \N \N +1831 2024-04-13 20:39:10.936653 0 136 access_location [["model",223],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["model",223],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1832 2024-04-13 20:39:10.936653 0 137 access_location_admin [["group",12],["model",223],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",223],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1833 2024-04-13 20:39:10.936653 0 352 location_lead_time_view_list [["model","stock.location.lead_time"],["name","location_lead_time_list"],["type","tree"]] ir.ui.view stock f [["model","stock.location.lead_time"],["name","location_lead_time_list"],["type","tree"]] \N \N +1834 2024-04-13 20:39:10.936653 0 353 location_lead_time_view_form [["model","stock.location.lead_time"],["name","location_lead_time_form"],["type","form"]] ir.ui.view stock f [["model","stock.location.lead_time"],["name","location_lead_time_form"],["type","form"]] \N \N +1835 2024-04-13 20:39:10.936653 0 181 act_location_lead_time_form [["name","Location Lead Times"],["res_model","stock.location.lead_time"]] ir.action.act_window stock f [["name","Location Lead Times"],["res_model","stock.location.lead_time"]] \N \N +1836 2024-04-13 20:39:10.936653 0 218 act_location_lead_time_form_view1 [["act_window",181],["sequence",10],["view",352]] ir.action.act_window.view stock f [["act_window",181],["sequence",10],["view",352]] \N \N +1837 2024-04-13 20:39:10.936653 0 219 act_location_lead_time_form_view2 [["act_window",181],["sequence",20],["view",353]] ir.action.act_window.view stock f [["act_window",181],["sequence",20],["view",353]] \N \N +1838 2024-04-13 20:39:10.936653 0 144 menu_location_lead_time_form [["action","ir.action.act_window,181"],["icon","tryton-list"],["name","Location Lead Times"],["parent",138],["sequence",50]] ir.ui.menu stock f [["action","ir.action.act_window,181"],["icon","tryton-list"],["name","Location Lead Times"],["parent",138],["sequence",50]] \N \N +1839 2024-04-13 20:39:10.936653 0 138 access_location_lead_time [["model",227],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["model",227],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +1840 2024-04-13 20:39:10.936653 0 139 access_location_lead_time_admin [["group",12],["model",227],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",227],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1841 2024-04-13 20:39:10.936653 0 1 location_input [["code","IN"],["name","Input Zone"],["type","storage"]] stock.location stock t [["code","IN"],["name","Input Zone"],["type","storage"]] \N \N +1842 2024-04-13 20:39:10.936653 0 2 location_output [["code","OUT"],["name","Output Zone"],["type","storage"]] stock.location stock t [["code","OUT"],["name","Output Zone"],["type","storage"]] \N \N +1843 2024-04-13 20:39:10.936653 0 3 location_storage [["code","STO"],["name","Storage Zone"],["type","storage"]] stock.location stock t [["code","STO"],["name","Storage Zone"],["type","storage"]] \N \N +1844 2024-04-13 20:39:10.936653 0 4 location_lost_found [["name","Lost and Found"],["type","lost_found"]] stock.location stock t [["name","Lost and Found"],["type","lost_found"]] \N \N +1845 2024-04-13 20:39:10.936653 0 5 location_warehouse [["code","WH"],["input_location",1],["lost_found_location",4],["name","Warehouse"],["output_location",2],["storage_location",3],["type","warehouse"]] stock.location stock t [["code","WH"],["input_location",1],["lost_found_location",4],["name","Warehouse"],["output_location",2],["storage_location",3],["type","warehouse"]] \N \N +1846 2024-04-13 20:39:10.936653 0 6 location_supplier [["code","SUP"],["name","Supplier"],["type","supplier"]] stock.location stock t [["code","SUP"],["name","Supplier"],["type","supplier"]] \N \N +1847 2024-04-13 20:39:10.936653 0 7 location_customer [["code","CUS"],["name","Customer"],["type","customer"]] stock.location stock t [["code","CUS"],["name","Customer"],["type","customer"]] \N \N +1848 2024-04-13 20:39:10.936653 0 8 location_transit [["name","Transit"],["type","storage"]] stock.location stock t [["name","Transit"],["type","storage"]] \N \N +1849 2024-04-13 20:39:10.936653 0 145 menu_shipment [["icon","tryton-folder"],["name","Shipments"],["parent",137],["sequence",10]] ir.ui.menu stock f [["icon","tryton-folder"],["name","Shipments"],["parent",137],["sequence",10]] \N \N +1850 2024-04-13 20:39:10.936653 0 354 shipment_in_view_form [["model","stock.shipment.in"],["name","shipment_in_form"],["type","form"]] ir.ui.view stock f [["model","stock.shipment.in"],["name","shipment_in_form"],["type","form"]] \N \N +1851 2024-04-13 20:39:10.936653 0 355 shipment_in_view_tree [["model","stock.shipment.in"],["name","shipment_in_tree"],["type","tree"]] ir.ui.view stock f [["model","stock.shipment.in"],["name","shipment_in_tree"],["type","tree"]] \N \N +1852 2024-04-13 20:39:10.936653 0 182 act_shipment_in_form [["name","Supplier Shipments"],["res_model","stock.shipment.in"],["search_value",""]] ir.action.act_window stock f [["name","Supplier Shipments"],["res_model","stock.shipment.in"],["search_value",""]] \N \N +1853 2024-04-13 20:39:10.936653 0 220 act_shipment_in_form_view1 [["act_window",182],["sequence",1],["view",355]] ir.action.act_window.view stock f [["act_window",182],["sequence",1],["view",355]] \N \N +1854 2024-04-13 20:39:10.936653 0 221 act_shipment_in_form_view2 [["act_window",182],["sequence",2],["view",354]] ir.action.act_window.view stock f [["act_window",182],["sequence",2],["view",354]] \N \N +1855 2024-04-13 20:39:10.936653 0 8 act_shipment_in_form_domain_draft [["act_window",182],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain stock f [["act_window",182],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +1856 2024-04-13 20:39:10.936653 0 9 act_shipment_in_form_domain_received [["act_window",182],["count",true],["domain","[[\\"state\\", \\"=\\", \\"received\\"]]"],["name","Received"],["sequence",20]] ir.action.act_window.domain stock f [["act_window",182],["count",true],["domain","[[\\"state\\", \\"=\\", \\"received\\"]]"],["name","Received"],["sequence",20]] \N \N +1857 2024-04-13 20:39:10.936653 0 10 act_shipment_in_form_domain_all [["act_window",182],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain stock f [["act_window",182],["domain",""],["name","All"],["sequence",9999]] \N \N +1858 2024-04-13 20:39:10.936653 0 146 menu_shipment_in_form [["action","ir.action.act_window,182"],["icon","tryton-list"],["name","Supplier Shipments"],["parent",145],["sequence",10]] ir.ui.menu stock f [["action","ir.action.act_window,182"],["icon","tryton-list"],["name","Supplier Shipments"],["parent",145],["sequence",10]] \N \N +1859 2024-04-13 20:39:10.936653 0 356 shipment_in_return_view_form [["model","stock.shipment.in.return"],["name","shipment_in_return_form"],["type","form"]] ir.ui.view stock f [["model","stock.shipment.in.return"],["name","shipment_in_return_form"],["type","form"]] \N \N +1860 2024-04-13 20:39:10.936653 0 357 shipment_in_return_view_tree [["model","stock.shipment.in.return"],["name","shipment_in_return_tree"],["type","tree"]] ir.ui.view stock f [["model","stock.shipment.in.return"],["name","shipment_in_return_tree"],["type","tree"]] \N \N +1861 2024-04-13 20:39:10.936653 0 183 act_shipment_in_return_form [["name","Supplier Returns"],["res_model","stock.shipment.in.return"],["search_value",""]] ir.action.act_window stock f [["name","Supplier Returns"],["res_model","stock.shipment.in.return"],["search_value",""]] \N \N +1862 2024-04-13 20:39:10.936653 0 222 act_shipment_in_return_form_view1 [["act_window",183],["sequence",1],["view",357]] ir.action.act_window.view stock f [["act_window",183],["sequence",1],["view",357]] \N \N +1863 2024-04-13 20:39:10.936653 0 223 act_shipment_in_return_form_view2 [["act_window",183],["sequence",2],["view",356]] ir.action.act_window.view stock f [["act_window",183],["sequence",2],["view",356]] \N \N +1864 2024-04-13 20:39:10.936653 0 11 act_shipment_in_return_form_domain_draft [["act_window",183],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain stock f [["act_window",183],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +1865 2024-04-13 20:39:10.936653 0 12 act_shipment_in_return_form_domain_waiting [["act_window",183],["count",true],["domain","[[\\"state\\", \\"=\\", \\"waiting\\"]]"],["name","Waiting"],["sequence",20]] ir.action.act_window.domain stock f [["act_window",183],["count",true],["domain","[[\\"state\\", \\"=\\", \\"waiting\\"]]"],["name","Waiting"],["sequence",20]] \N \N +1866 2024-04-13 20:39:10.936653 0 13 act_shipment_in_return_form_domain_available [["act_window",183],["count",true],["domain","[[\\"partially_assigned\\", \\"=\\", \\"True\\"]]"],["name","Partially Assigned"],["sequence",30]] ir.action.act_window.domain stock f [["act_window",183],["count",true],["domain","[[\\"partially_assigned\\", \\"=\\", \\"True\\"]]"],["name","Partially Assigned"],["sequence",30]] \N \N +1867 2024-04-13 20:39:10.936653 0 14 act_shipment_in_return_form_domain_assigned [["act_window",183],["count",true],["domain","[[\\"state\\", \\"=\\", \\"assigned\\"]]"],["name","Assigned"],["sequence",40]] ir.action.act_window.domain stock f [["act_window",183],["count",true],["domain","[[\\"state\\", \\"=\\", \\"assigned\\"]]"],["name","Assigned"],["sequence",40]] \N \N +1868 2024-04-13 20:39:10.936653 0 15 act_shipment_in_return_form_domain_all [["act_window",183],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain stock f [["act_window",183],["domain",""],["name","All"],["sequence",9999]] \N \N +1869 2024-04-13 20:39:10.936653 0 147 menu_shipment_in_return_form [["action","ir.action.act_window,183"],["icon","tryton-list"],["name","Supplier Returns"],["parent",145],["sequence",10]] ir.ui.menu stock f [["action","ir.action.act_window,183"],["icon","tryton-list"],["name","Supplier Returns"],["parent",145],["sequence",10]] \N \N +1870 2024-04-13 20:39:10.936653 0 358 shipment_out_view_form [["model","stock.shipment.out"],["name","shipment_out_form"],["type","form"]] ir.ui.view stock f [["model","stock.shipment.out"],["name","shipment_out_form"],["type","form"]] \N \N +1871 2024-04-13 20:39:10.936653 0 359 shipment_out_view_tree [["model","stock.shipment.out"],["name","shipment_out_tree"],["type","tree"]] ir.ui.view stock f [["model","stock.shipment.out"],["name","shipment_out_tree"],["type","tree"]] \N \N +1872 2024-04-13 20:39:10.936653 0 184 act_shipment_out_form [["name","Customer Shipments"],["res_model","stock.shipment.out"],["search_value",""]] ir.action.act_window stock f [["name","Customer Shipments"],["res_model","stock.shipment.out"],["search_value",""]] \N \N +1873 2024-04-13 20:39:10.936653 0 224 act_shipment_out_form_view1 [["act_window",184],["sequence",1],["view",359]] ir.action.act_window.view stock f [["act_window",184],["sequence",1],["view",359]] \N \N +1874 2024-04-13 20:39:10.936653 0 225 act_shipment_out_form_view2 [["act_window",184],["sequence",2],["view",358]] ir.action.act_window.view stock f [["act_window",184],["sequence",2],["view",358]] \N \N +1875 2024-04-13 20:39:10.936653 0 16 act_shipment_out_form_domain_draft [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain stock f [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +1876 2024-04-13 20:39:10.936653 0 17 act_shipment_out_form_domain_waiting [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"waiting\\"]]"],["name","Waiting"],["sequence",20]] ir.action.act_window.domain stock f [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"waiting\\"]]"],["name","Waiting"],["sequence",20]] \N \N +1877 2024-04-13 20:39:10.936653 0 18 act_shipment_out_form_domain_available [["act_window",184],["count",true],["domain","[[\\"partially_assigned\\", \\"=\\", true]]"],["name","Partially Assigned"],["sequence",30]] ir.action.act_window.domain stock f [["act_window",184],["count",true],["domain","[[\\"partially_assigned\\", \\"=\\", true]]"],["name","Partially Assigned"],["sequence",30]] \N \N +1878 2024-04-13 20:39:10.936653 0 19 act_shipment_out_form_domain_assigned [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"assigned\\"]]"],["name","Assigned"],["sequence",40]] ir.action.act_window.domain stock f [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"assigned\\"]]"],["name","Assigned"],["sequence",40]] \N \N +1879 2024-04-13 20:39:10.936653 0 20 act_shipment_out_form_domain_picked [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"picked\\"]]"],["name","Picked"],["sequence",50]] ir.action.act_window.domain stock f [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"picked\\"]]"],["name","Picked"],["sequence",50]] \N \N +1880 2024-04-13 20:39:10.936653 0 21 act_shipment_out_form_domain_packed [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"packed\\"]]"],["name","Packed"],["sequence",60]] ir.action.act_window.domain stock f [["act_window",184],["count",true],["domain","[[\\"state\\", \\"=\\", \\"packed\\"]]"],["name","Packed"],["sequence",60]] \N \N +1881 2024-04-13 20:39:10.936653 0 22 act_shipment_out_form_domain_all [["act_window",184],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain stock f [["act_window",184],["domain",""],["name","All"],["sequence",9999]] \N \N +1882 2024-04-13 20:39:10.936653 0 148 menu_shipment_out_form [["action","ir.action.act_window,184"],["icon","tryton-list"],["name","Customer Shipments"],["parent",145],["sequence",10]] ir.ui.menu stock f [["action","ir.action.act_window,184"],["icon","tryton-list"],["name","Customer Shipments"],["parent",145],["sequence",10]] \N \N +1883 2024-04-13 20:39:10.936653 0 360 shipment_internal_view_form [["model","stock.shipment.internal"],["name","shipment_internal_form"],["type","form"]] ir.ui.view stock f [["model","stock.shipment.internal"],["name","shipment_internal_form"],["type","form"]] \N \N +1884 2024-04-13 20:39:10.936653 0 361 shipment_internal_view_tree [["model","stock.shipment.internal"],["name","shipment_internal_tree"],["type","tree"]] ir.ui.view stock f [["model","stock.shipment.internal"],["name","shipment_internal_tree"],["type","tree"]] \N \N +1885 2024-04-13 20:39:10.936653 0 185 act_shipment_internal_form [["name","Internal Shipments"],["res_model","stock.shipment.internal"],["search_value",""]] ir.action.act_window stock f [["name","Internal Shipments"],["res_model","stock.shipment.internal"],["search_value",""]] \N \N +1886 2024-04-13 20:39:10.936653 0 226 act_shipment_internal_form_view1 [["act_window",185],["sequence",1],["view",361]] ir.action.act_window.view stock f [["act_window",185],["sequence",1],["view",361]] \N \N +1887 2024-04-13 20:39:10.936653 0 227 act_shipment_internal_form_view2 [["act_window",185],["sequence",2],["view",360]] ir.action.act_window.view stock f [["act_window",185],["sequence",2],["view",360]] \N \N +1888 2024-04-13 20:39:10.936653 0 23 act_shipment_internal_form_domain_requests [["act_window",185],["count",true],["domain","[[\\"state\\", \\"=\\", \\"request\\"]]"],["name","Requests"],["sequence",5]] ir.action.act_window.domain stock f [["act_window",185],["count",true],["domain","[[\\"state\\", \\"=\\", \\"request\\"]]"],["name","Requests"],["sequence",5]] \N \N +1889 2024-04-13 20:39:10.936653 0 24 act_shipment_internal_form_domain_draft [["act_window",185],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain stock f [["act_window",185],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +1890 2024-04-13 20:39:10.936653 0 25 act_shipment_internal_form_domain_waiting [["act_window",185],["count",true],["domain","[[\\"state\\", \\"=\\", \\"waiting\\"]]"],["name","Waiting"],["sequence",20]] ir.action.act_window.domain stock f [["act_window",185],["count",true],["domain","[[\\"state\\", \\"=\\", \\"waiting\\"]]"],["name","Waiting"],["sequence",20]] \N \N +1891 2024-04-13 20:39:10.936653 0 26 act_shipment_internal_form_domain_available [["act_window",185],["count",true],["domain","[[\\"partially_assigned\\", \\"=\\", true]]"],["name","Partially Assigned"],["sequence",30]] ir.action.act_window.domain stock f [["act_window",185],["count",true],["domain","[[\\"partially_assigned\\", \\"=\\", true]]"],["name","Partially Assigned"],["sequence",30]] \N \N +1892 2024-04-13 20:39:10.936653 0 27 act_shipment_internal_form_domain_assigned [["act_window",185],["count",true],["domain","[[\\"state\\", \\"=\\", \\"assigned\\"]]"],["name","Assigned"],["sequence",40]] ir.action.act_window.domain stock f [["act_window",185],["count",true],["domain","[[\\"state\\", \\"=\\", \\"assigned\\"]]"],["name","Assigned"],["sequence",40]] \N \N +1893 2024-04-13 20:39:10.936653 0 28 act_shipment_internal_form_domain_shipped [["act_window",185],["domain","[[\\"state\\", \\"=\\", \\"shipped\\"]]"],["name","Shipped"],["sequence",50]] ir.action.act_window.domain stock f [["act_window",185],["domain","[[\\"state\\", \\"=\\", \\"shipped\\"]]"],["name","Shipped"],["sequence",50]] \N \N +1894 2024-04-13 20:39:10.936653 0 29 act_shipment_internal_form_domain_all [["act_window",185],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain stock f [["act_window",185],["domain",""],["name","All"],["sequence",9999]] \N \N +1895 2024-04-13 20:39:10.936653 0 149 menu_shipment_internal_form [["action","ir.action.act_window,185"],["icon","tryton-list"],["name","Internal Shipments"],["parent",145],["sequence",20]] ir.ui.menu stock f [["action","ir.action.act_window,185"],["icon","tryton-list"],["name","Internal Shipments"],["parent",145],["sequence",20]] \N \N +1896 2024-04-13 20:39:10.936653 0 362 shipment_out_return_view_form [["model","stock.shipment.out.return"],["name","shipment_out_return_form"],["type","form"]] ir.ui.view stock f [["model","stock.shipment.out.return"],["name","shipment_out_return_form"],["type","form"]] \N \N +1897 2024-04-13 20:39:10.936653 0 363 shipment_out_return_view_tree [["model","stock.shipment.out.return"],["name","shipment_out_return_tree"],["type","tree"]] ir.ui.view stock f [["model","stock.shipment.out.return"],["name","shipment_out_return_tree"],["type","tree"]] \N \N +1898 2024-04-13 20:39:10.936653 0 186 act_shipment_out_return_form [["name","Customer Returns"],["res_model","stock.shipment.out.return"],["search_value",""]] ir.action.act_window stock f [["name","Customer Returns"],["res_model","stock.shipment.out.return"],["search_value",""]] \N \N +1899 2024-04-13 20:39:10.936653 0 228 act_shipment_out_return_form_view1 [["act_window",186],["sequence",1],["view",363]] ir.action.act_window.view stock f [["act_window",186],["sequence",1],["view",363]] \N \N +1900 2024-04-13 20:39:10.936653 0 229 act_shipment_out_return_form_view2 [["act_window",186],["sequence",2],["view",362]] ir.action.act_window.view stock f [["act_window",186],["sequence",2],["view",362]] \N \N +1901 2024-04-13 20:39:10.936653 0 30 act_shipment_out_return_form_domain_draft [["act_window",186],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain stock f [["act_window",186],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +1902 2024-04-13 20:39:10.936653 0 31 act_shipment_out_return_form_domain_received [["act_window",186],["count",true],["domain","[[\\"state\\", \\"=\\", \\"received\\"]]"],["name","Received"],["sequence",20]] ir.action.act_window.domain stock f [["act_window",186],["count",true],["domain","[[\\"state\\", \\"=\\", \\"received\\"]]"],["name","Received"],["sequence",20]] \N \N +1903 2024-04-13 20:39:10.936653 0 32 act_shipment_out_return_form_domain_all [["act_window",186],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain stock f [["act_window",186],["domain",""],["name","All"],["sequence",9999]] \N \N +1904 2024-04-13 20:39:10.936653 0 150 menu_shipment_out_return_form [["action","ir.action.act_window,186"],["icon","tryton-list"],["name","Customer Returns"],["parent",145],["sequence",10]] ir.ui.menu stock f [["action","ir.action.act_window,186"],["icon","tryton-list"],["name","Customer Returns"],["parent",145],["sequence",10]] \N \N +1905 2024-04-13 20:39:10.936653 0 187 report_shipment_out_delivery_note [["model","stock.shipment.out"],["name","Delivery Note"],["report","stock/delivery_note.fodt"],["report_name","stock.shipment.out.delivery_note"]] ir.action.report stock f [["model","stock.shipment.out"],["name","Delivery Note"],["report","stock/delivery_note.fodt"],["report_name","stock.shipment.out.delivery_note"]] \N \N +1906 2024-04-13 20:39:10.936653 0 191 report_shipment_out_delivery_note_keyword [["action",187],["keyword","form_print"],["model","stock.shipment.out,-1"]] ir.action.keyword stock f [["action",187],["keyword","form_print"],["model","stock.shipment.out,-1"]] \N \N +1907 2024-04-13 20:39:10.936653 0 188 report_shipment_out_picking_list [["model","stock.shipment.out"],["name","Picking List"],["report","stock/picking_list.fodt"],["report_name","stock.shipment.out.picking_list"]] ir.action.report stock f [["model","stock.shipment.out"],["name","Picking List"],["report","stock/picking_list.fodt"],["report_name","stock.shipment.out.picking_list"]] \N \N +1908 2024-04-13 20:39:10.936653 0 192 report_shipment_out_picking_list_keyword [["action",188],["keyword","form_print"],["model","stock.shipment.out,-1"]] ir.action.keyword stock f [["action",188],["keyword","form_print"],["model","stock.shipment.out,-1"]] \N \N +1909 2024-04-13 20:39:10.936653 0 189 report_shipment_in_restocking_list [["model","stock.shipment.in"],["name","Restocking List"],["report","stock/supplier_restocking_list.fodt"],["report_name","stock.shipment.in.restocking_list"]] ir.action.report stock f [["model","stock.shipment.in"],["name","Restocking List"],["report","stock/supplier_restocking_list.fodt"],["report_name","stock.shipment.in.restocking_list"]] \N \N +1910 2024-04-13 20:39:10.936653 0 193 report_shipment_in_restocking_list_keyword [["action",189],["keyword","form_print"],["model","stock.shipment.in,-1"]] ir.action.keyword stock f [["action",189],["keyword","form_print"],["model","stock.shipment.in,-1"]] \N \N +1911 2024-04-13 20:39:10.936653 0 190 report_shipment_out_return_restocking_list [["model","stock.shipment.out.return"],["name","Restocking List"],["report","stock/customer_return_restocking_list.fodt"],["report_name","stock.shipment.out.return.restocking_list"]] ir.action.report stock f [["model","stock.shipment.out.return"],["name","Restocking List"],["report","stock/customer_return_restocking_list.fodt"],["report_name","stock.shipment.out.return.restocking_list"]] \N \N +1912 2024-04-13 20:39:10.936653 0 194 report_shipment_out_return_restocking_list_keyword [["action",190],["keyword","form_print"],["model","stock.shipment.out.return,-1"]] ir.action.keyword stock f [["action",190],["keyword","form_print"],["model","stock.shipment.out.return,-1"]] \N \N +1913 2024-04-13 20:39:10.936653 0 191 report_shipment_internal [["model","stock.shipment.internal"],["name","Internal Shipment"],["report","stock/internal_shipment.fodt"],["report_name","stock.shipment.internal.report"]] ir.action.report stock f [["model","stock.shipment.internal"],["name","Internal Shipment"],["report","stock/internal_shipment.fodt"],["report_name","stock.shipment.internal.report"]] \N \N +1914 2024-04-13 20:39:10.936653 0 195 report_shipment_internal_keyword [["action",191],["keyword","form_print"],["model","stock.shipment.internal,-1"]] ir.action.keyword stock f [["action",191],["keyword","form_print"],["model","stock.shipment.internal,-1"]] \N \N +1915 2024-04-13 20:39:10.936653 0 7 sequence_type_shipment_out [["name","Customer Shipment"]] ir.sequence.type stock f [["name","Customer Shipment"]] \N \N +1916 2024-04-13 20:39:10.936653 0 13 sequence_type_shipment_out_group_admin [["group",1],["sequence_type",7]] ir.sequence.type-res.group stock f [["group",1],["sequence_type",7]] \N \N +1917 2024-04-13 20:39:10.936653 0 14 sequence_type_shipment_out_group_stock_admin [["group",12],["sequence_type",7]] ir.sequence.type-res.group stock f [["group",12],["sequence_type",7]] \N \N +1918 2024-04-13 20:39:10.936653 0 4 sequence_shipment_out [["name","Customer Shipment"],["sequence_type",7]] ir.sequence stock f [["name","Customer Shipment"],["sequence_type",7]] \N \N +1919 2024-04-13 20:39:10.936653 0 8 sequence_type_shipment_in [["name","Supplier Shipment"]] ir.sequence.type stock f [["name","Supplier Shipment"]] \N \N +1920 2024-04-13 20:39:10.936653 0 15 sequence_type_shipment_in_group_admin [["group",1],["sequence_type",8]] ir.sequence.type-res.group stock f [["group",1],["sequence_type",8]] \N \N +1921 2024-04-13 20:39:10.936653 0 16 sequence_type_shipment_in_group_stock_admin [["group",12],["sequence_type",8]] ir.sequence.type-res.group stock f [["group",12],["sequence_type",8]] \N \N +1922 2024-04-13 20:39:10.936653 0 5 sequence_shipment_in [["name","Supplier Shipment"],["sequence_type",8]] ir.sequence stock f [["name","Supplier Shipment"],["sequence_type",8]] \N \N +1923 2024-04-13 20:39:10.936653 0 9 sequence_type_shipment_internal [["name","Internal Shipment"]] ir.sequence.type stock f [["name","Internal Shipment"]] \N \N +1924 2024-04-13 20:39:10.936653 0 17 sequence_type_shipment_internal_group_admin [["group",1],["sequence_type",9]] ir.sequence.type-res.group stock f [["group",1],["sequence_type",9]] \N \N +1925 2024-04-13 20:39:10.936653 0 18 sequence_type_shipment_internal_group_stock_admin [["group",12],["sequence_type",9]] ir.sequence.type-res.group stock f [["group",12],["sequence_type",9]] \N \N +1926 2024-04-13 20:39:10.936653 0 6 sequence_shipment_internal [["name","Internal Shipment"],["sequence_type",9]] ir.sequence stock f [["name","Internal Shipment"],["sequence_type",9]] \N \N +1927 2024-04-13 20:39:10.936653 0 10 sequence_type_shipment_out_return [["name","Customer Return Shipment"]] ir.sequence.type stock f [["name","Customer Return Shipment"]] \N \N +1928 2024-04-13 20:39:10.936653 0 19 sequence_type_shipment_out_return_group_admin [["group",1],["sequence_type",10]] ir.sequence.type-res.group stock f [["group",1],["sequence_type",10]] \N \N +1929 2024-04-13 20:39:10.936653 0 20 sequence_type_shipment_out_return_group_stock_admin [["group",12],["sequence_type",10]] ir.sequence.type-res.group stock f [["group",12],["sequence_type",10]] \N \N +1930 2024-04-13 20:39:10.936653 0 7 sequence_shipment_out_return [["name","Customer Return Shipment"],["sequence_type",10]] ir.sequence stock f [["name","Customer Return Shipment"],["sequence_type",10]] \N \N +1931 2024-04-13 20:39:10.936653 0 11 sequence_type_shipment_in_return [["name","Supplier Return Shipment"]] ir.sequence.type stock f [["name","Supplier Return Shipment"]] \N \N +1932 2024-04-13 20:39:10.936653 0 21 sequence_type_shipment_in_return_group_admin [["group",1],["sequence_type",11]] ir.sequence.type-res.group stock f [["group",1],["sequence_type",11]] \N \N +1933 2024-04-13 20:39:10.936653 0 22 sequence_type_shipment_in_return_group_stock_admin [["group",12],["sequence_type",11]] ir.sequence.type-res.group stock f [["group",12],["sequence_type",11]] \N \N +1934 2024-04-13 20:39:10.936653 0 8 sequence_shipment_in_return [["name","Supplier Return Shipment"],["sequence_type",11]] ir.sequence stock f [["name","Supplier Return Shipment"],["sequence_type",11]] \N \N +1935 2024-04-13 20:39:10.936653 0 140 access_shipment_in [["model",229],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",229],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1936 2024-04-13 20:39:10.936653 0 141 access_shipment_in_group_stock [["group",11],["model",229],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",11],["model",229],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1937 2024-04-13 20:39:10.936653 0 142 access_shipment_in_group_stock_admin [["group",12],["model",229],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",229],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1938 2024-04-13 20:39:10.936653 0 31 shipment_in_cancel_button [["model",229],["name","cancel"],["string","Cancel"]] ir.model.button stock f [["model",229],["name","cancel"],["string","Cancel"]] \N \N +1939 2024-04-13 20:39:10.936653 0 32 shipment_in_draft_button [["model",229],["name","draft"],["string","Reset to Draft"]] ir.model.button stock f [["model",229],["name","draft"],["string","Reset to Draft"]] \N \N +1940 2024-04-13 20:39:10.936653 0 33 shipment_in_receive_button [["confirm","Are you sure you want to receive the shipment?"],["model",229],["name","receive"],["string","Receive"]] ir.model.button stock f [["confirm","Are you sure you want to receive the shipment?"],["model",229],["name","receive"],["string","Receive"]] \N \N +1941 2024-04-13 20:39:10.936653 0 34 shipment_in_done_button [["model",229],["name","done"],["string","Done"]] ir.model.button stock f [["model",229],["name","done"],["string","Done"]] \N \N +1942 2024-04-13 20:39:10.936653 0 143 access_shipment_out [["model",231],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",231],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1943 2024-04-13 20:39:10.936653 0 144 access_shipment_out_group_stock [["group",11],["model",231],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",11],["model",231],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1944 2024-04-13 20:39:10.936653 0 145 access_shipment_out_group_stock_admin [["group",12],["model",231],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",231],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1945 2024-04-13 20:39:10.936653 0 35 shipment_out_cancel_button [["model",231],["name","cancel"],["string","Cancel"]] ir.model.button stock f [["model",231],["name","cancel"],["string","Cancel"]] \N \N +1946 2024-04-13 20:39:10.936653 0 36 shipment_out_draft_button [["model",231],["name","draft"],["string","Draft"]] ir.model.button stock f [["model",231],["name","draft"],["string","Draft"]] \N \N +1947 2024-04-13 20:39:10.936653 0 37 shipment_out_wait_button [["model",231],["name","wait"],["string","Wait"]] ir.model.button stock f [["model",231],["name","wait"],["string","Wait"]] \N \N +1948 2024-04-13 20:39:10.936653 0 38 shipment_out_pick_button [["model",231],["name","pick"],["string","Pick"]] ir.model.button stock f [["model",231],["name","pick"],["string","Pick"]] \N \N +1949 2024-04-13 20:39:10.936653 0 39 shipment_out_pack_button [["model",231],["name","pack"],["string","Pack"]] ir.model.button stock f [["model",231],["name","pack"],["string","Pack"]] \N \N +1950 2024-04-13 20:39:10.936653 0 40 shipment_out_done_button [["confirm","Are you sure you want to complete the shipment?"],["model",231],["name","done"],["string","Done"]] ir.model.button stock f [["confirm","Are you sure you want to complete the shipment?"],["model",231],["name","done"],["string","Done"]] \N \N +1951 2024-04-13 20:39:10.936653 0 41 shipment_out_assign_try_button [["model",231],["name","assign_try"]] ir.model.button stock f [["model",231],["name","assign_try"]] \N \N +1952 2024-04-13 20:39:10.936653 0 42 shipment_out_assign_force_button [["model",231],["name","assign_force"]] ir.model.button stock f [["model",231],["name","assign_force"]] \N \N +1953 2024-04-13 20:39:10.936653 0 10 shipment_out_assign_force_button_group_stock_force_assignment [["button",42],["group",13]] ir.model.button-res.group stock f [["button",42],["group",13]] \N \N +1954 2024-04-13 20:39:10.936653 0 43 shipment_out_assign_wizard_button [["model",231],["name","assign_wizard"],["string","Assign"]] ir.model.button stock f [["model",231],["name","assign_wizard"],["string","Assign"]] \N \N +1955 2024-04-13 20:39:10.936653 0 146 access_shipment_internal [["model",233],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",233],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1956 2024-04-13 20:39:10.936653 0 147 access_shipment_internal_group_stock [["group",11],["model",233],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",11],["model",233],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1957 2024-04-13 20:39:10.936653 0 148 access_shipment_internal_group_stock_admin [["group",12],["model",233],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",233],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1958 2024-04-13 20:39:10.936653 0 44 shipment_internal_cancel_button [["model",233],["name","cancel"],["string","Cancel"]] ir.model.button stock f [["model",233],["name","cancel"],["string","Cancel"]] \N \N +1959 2024-04-13 20:39:10.936653 0 45 shipment_internal_draft_button [["model",233],["name","draft"],["string","Draft"]] ir.model.button stock f [["model",233],["name","draft"],["string","Draft"]] \N \N +1960 2024-04-13 20:39:10.936653 0 46 shipment_internal_wait_button [["model",233],["name","wait"],["string","Wait"]] ir.model.button stock f [["model",233],["name","wait"],["string","Wait"]] \N \N +1961 2024-04-13 20:39:10.936653 0 47 shipment_internal_done_button [["model",233],["name","done"],["string","Done"]] ir.model.button stock f [["model",233],["name","done"],["string","Done"]] \N \N +1962 2024-04-13 20:39:10.936653 0 48 shipment_internal_assign_try_button [["model",233],["name","assign_try"]] ir.model.button stock f [["model",233],["name","assign_try"]] \N \N +1963 2024-04-13 20:39:10.936653 0 49 shipment_internal_assign_force_button [["model",233],["name","assign_force"]] ir.model.button stock f [["model",233],["name","assign_force"]] \N \N +1964 2024-04-13 20:39:10.936653 0 11 shipment_internal_assign_force_button_group_stock_force_assignment [["button",49],["group",13]] ir.model.button-res.group stock f [["button",49],["group",13]] \N \N +1965 2024-04-13 20:39:10.936653 0 50 shipment_internal_assign_wizard_button [["model",233],["name","assign_wizard"],["string","Assign"]] ir.model.button stock f [["model",233],["name","assign_wizard"],["string","Assign"]] \N \N +1966 2024-04-13 20:39:10.936653 0 12 shipment_internal_assign_wizard_button_group_stock [["button",50],["group",11]] ir.model.button-res.group stock f [["button",50],["group",11]] \N \N +1967 2024-04-13 20:39:10.936653 0 51 shipment_internal_ship_button [["model",233],["name","ship"],["string","Ship"]] ir.model.button stock f [["model",233],["name","ship"],["string","Ship"]] \N \N +1968 2024-04-13 20:39:10.936653 0 149 access_shipment_out_return [["model",232],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",232],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1969 2024-04-13 20:39:10.936653 0 150 access_shipment_out_return_group_stock [["group",11],["model",232],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",11],["model",232],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1970 2024-04-13 20:39:10.936653 0 151 access_shipment_out_return_group_stock_admin [["group",12],["model",232],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",232],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1971 2024-04-13 20:39:10.936653 0 52 shipment_out_return_cancel_button [["model",232],["name","cancel"],["string","Cancel"]] ir.model.button stock f [["model",232],["name","cancel"],["string","Cancel"]] \N \N +1972 2024-04-13 20:39:10.936653 0 53 shipment_out_return_draft_button [["model",232],["name","draft"],["string","Draft"]] ir.model.button stock f [["model",232],["name","draft"],["string","Draft"]] \N \N +1973 2024-04-13 20:39:10.936653 0 54 shipment_out_return_receive_button [["confirm","Are you sure you want to receive the shipment?"],["model",232],["name","receive"],["string","Receive"]] ir.model.button stock f [["confirm","Are you sure you want to receive the shipment?"],["model",232],["name","receive"],["string","Receive"]] \N \N +1974 2024-04-13 20:39:10.936653 0 55 shipment_out_return_done_button [["model",232],["name","done"],["string","Done"]] ir.model.button stock f [["model",232],["name","done"],["string","Done"]] \N \N +1975 2024-04-13 20:39:10.936653 0 152 access_shipment_in_return [["model",230],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",230],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +1976 2024-04-13 20:39:10.936653 0 153 access_shipment_in_return_group_stock [["group",11],["model",230],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",11],["model",230],["perm_create",true],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +1977 2024-04-13 20:39:10.936653 0 154 access_shipment_in_return_group_stock_admin [["group",12],["model",230],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",230],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +1978 2024-04-13 20:39:10.936653 0 56 shipment_in_return_cancel_button [["model",230],["name","cancel"],["string","Cancel"]] ir.model.button stock f [["model",230],["name","cancel"],["string","Cancel"]] \N \N +1979 2024-04-13 20:39:10.936653 0 57 shipment_in_return_draft_button [["model",230],["name","draft"],["string","Draft"]] ir.model.button stock f [["model",230],["name","draft"],["string","Draft"]] \N \N +1980 2024-04-13 20:39:10.936653 0 58 shipment_in_return_wait_button [["model",230],["name","wait"],["string","Wait"]] ir.model.button stock f [["model",230],["name","wait"],["string","Wait"]] \N \N +1981 2024-04-13 20:39:10.936653 0 59 shipment_in_return_done_button [["confirm","Are you sure you want to complete the shipment?"],["model",230],["name","done"],["string","Done"]] ir.model.button stock f [["confirm","Are you sure you want to complete the shipment?"],["model",230],["name","done"],["string","Done"]] \N \N +1982 2024-04-13 20:39:10.936653 0 60 shipment_in_return_assign_try_button [["model",230],["name","assign_try"]] ir.model.button stock f [["model",230],["name","assign_try"]] \N \N +1983 2024-04-13 20:39:10.936653 0 61 shipment_in_return_assign_force_button [["model",230],["name","assign_force"]] ir.model.button stock f [["model",230],["name","assign_force"]] \N \N +1984 2024-04-13 20:39:10.936653 0 13 shipment_in_return_assign_force_button_group_stock_force_assignment [["button",61],["group",13]] ir.model.button-res.group stock f [["button",61],["group",13]] \N \N +1985 2024-04-13 20:39:10.936653 0 62 shipment_in_return_assign_wizard_button [["model",230],["name","assign_wizard"],["string","Assign"]] ir.model.button stock f [["model",230],["name","assign_wizard"],["string","Assign"]] \N \N +1986 2024-04-13 20:39:10.936653 0 30 rule_group_shipment_in_companies [["global_p",true],["model",229],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",229],["name","User in companies"]] \N \N +1987 2024-04-13 20:39:10.936653 0 34 rule_shipment_in_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",30]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",30]] \N \N +1988 2024-04-13 20:39:10.936653 0 31 rule_group_shipment_in_return_companies [["global_p",true],["model",230],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",230],["name","User in companies"]] \N \N +1989 2024-04-13 20:39:10.936653 0 35 rule_shipment_in_return_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",31]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",31]] \N \N +1990 2024-04-13 20:39:10.936653 0 32 rule_group_shipment_out_companies [["global_p",true],["model",231],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",231],["name","User in companies"]] \N \N +2085 2024-04-13 20:39:10.936653 0 388 period_cache_view_form [["model","stock.period.cache"],["name","period_cache_form"],["type","form"]] ir.ui.view stock f [["model","stock.period.cache"],["name","period_cache_form"],["type","form"]] \N \N +1991 2024-04-13 20:39:10.936653 0 36 rule_shipment_out_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",32]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",32]] \N \N +1992 2024-04-13 20:39:10.936653 0 33 rule_group_shipment_out_return_companies [["global_p",true],["model",232],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",232],["name","User in companies"]] \N \N +1993 2024-04-13 20:39:10.936653 0 37 rule_shipment_out_return_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",33]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",33]] \N \N +1994 2024-04-13 20:39:10.936653 0 34 rule_group_shipment_internal_companies [["global_p",true],["model",233],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",233],["name","User in companies"]] \N \N +1995 2024-04-13 20:39:10.936653 0 38 rule_shipment_internal_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",34]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",34]] \N \N +1996 2024-04-13 20:39:10.936653 0 364 shipment_assign_partial_view_form [["model","stock.shipment.assign.partial"],["name","shipment_assign_partial_form"],["type","form"]] ir.ui.view stock f [["model","stock.shipment.assign.partial"],["name","shipment_assign_partial_form"],["type","form"]] \N \N +1997 2024-04-13 20:39:10.936653 0 192 wizard_shipment_in_return_assign [["model","stock.shipment.in.return"],["name","Assign Supplier Return Shipment"],["wiz_name","stock.shipment.assign"]] ir.action.wizard stock f [["model","stock.shipment.in.return"],["name","Assign Supplier Return Shipment"],["wiz_name","stock.shipment.assign"]] \N \N +1998 2024-04-13 20:39:10.936653 0 193 wizard_shipment_out_assign [["model","stock.shipment.out"],["name","Assign Customer Shipment"],["wiz_name","stock.shipment.assign"]] ir.action.wizard stock f [["model","stock.shipment.out"],["name","Assign Customer Shipment"],["wiz_name","stock.shipment.assign"]] \N \N +1999 2024-04-13 20:39:10.936653 0 194 wizard_shipment_internal_assign [["model","stock.shipment.internal"],["name","Assign Internal Shipment"],["wiz_name","stock.shipment.assign"]] ir.action.wizard stock f [["model","stock.shipment.internal"],["name","Assign Internal Shipment"],["wiz_name","stock.shipment.assign"]] \N \N +2000 2024-04-13 20:39:10.936653 0 365 move_view_form [["model","stock.move"],["name","move_form"],["type","form"]] ir.ui.view stock f [["model","stock.move"],["name","move_form"],["type","form"]] \N \N +2001 2024-04-13 20:39:10.936653 0 366 move_view_tree [["model","stock.move"],["name","move_tree"],["priority",10],["type","tree"]] ir.ui.view stock f [["model","stock.move"],["name","move_tree"],["priority",10],["type","tree"]] \N \N +2002 2024-04-13 20:39:10.936653 0 367 move_view_tree_simple [["model","stock.move"],["name","move_tree_simple"],["priority",20],["type","tree"]] ir.ui.view stock f [["model","stock.move"],["name","move_tree_simple"],["priority",20],["type","tree"]] \N \N +2003 2024-04-13 20:39:10.936653 0 368 move_view_list_shipment_in [["model","stock.move"],["name","move_list_shipment_in"],["priority",20],["type","tree"]] ir.ui.view stock f [["model","stock.move"],["name","move_list_shipment_in"],["priority",20],["type","tree"]] \N \N +2004 2024-04-13 20:39:10.936653 0 369 move_view_list_shipment [["model","stock.move"],["name","move_list_shipment"],["priority",20],["type","tree"]] ir.ui.view stock f [["model","stock.move"],["name","move_list_shipment"],["priority",20],["type","tree"]] \N \N +2005 2024-04-13 20:39:10.936653 0 195 act_move_form [["name","Moves"],["res_model","stock.move"],["search_value","[[\\"create_date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"DateTime\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dh\\": 0, \\"dm\\": 0, \\"dms\\": 0, \\"ds\\": 0, \\"dy\\": -1, \\"h\\": 0, \\"m\\": 0, \\"ms\\": 0, \\"s\\": 0, \\"start\\": null, \\"y\\": null}]]"]] ir.action.act_window stock f [["name","Moves"],["res_model","stock.move"],["search_value","[[\\"create_date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"DateTime\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dh\\": 0, \\"dm\\": 0, \\"dms\\": 0, \\"ds\\": 0, \\"dy\\": -1, \\"h\\": 0, \\"m\\": 0, \\"ms\\": 0, \\"s\\": 0, \\"start\\": null, \\"y\\": null}]]"]] \N \N +2006 2024-04-13 20:39:10.936653 0 230 act_move_form_view1 [["act_window",195],["sequence",1],["view",366]] ir.action.act_window.view stock f [["act_window",195],["sequence",1],["view",366]] \N \N +2007 2024-04-13 20:39:10.936653 0 231 act_move_form_view2 [["act_window",195],["sequence",2],["view",365]] ir.action.act_window.view stock f [["act_window",195],["sequence",2],["view",365]] \N \N +2008 2024-04-13 20:39:10.936653 0 33 act_move_form_domain_all [["act_window",195],["domain",""],["name","All"],["sequence",10]] ir.action.act_window.domain stock f [["act_window",195],["domain",""],["name","All"],["sequence",10]] \N \N +2009 2024-04-13 20:39:10.936653 0 34 act_move_form_domain_from_supplier [["act_window",195],["domain","[[\\"from_location.type\\", \\"=\\", \\"supplier\\"]]"],["name","From Suppliers"],["sequence",20]] ir.action.act_window.domain stock f [["act_window",195],["domain","[[\\"from_location.type\\", \\"=\\", \\"supplier\\"]]"],["name","From Suppliers"],["sequence",20]] \N \N +2010 2024-04-13 20:39:10.936653 0 35 act_move_form_domain_from_supplier_waiting [["act_window",195],["count",true],["domain","[[\\"from_location.type\\", \\"=\\", \\"supplier\\"], [\\"state\\", \\"=\\", \\"draft\\"], [\\"shipment\\", \\"=\\", null]]"],["name","From Suppliers Waiting"],["sequence",30]] ir.action.act_window.domain stock f [["act_window",195],["count",true],["domain","[[\\"from_location.type\\", \\"=\\", \\"supplier\\"], [\\"state\\", \\"=\\", \\"draft\\"], [\\"shipment\\", \\"=\\", null]]"],["name","From Suppliers Waiting"],["sequence",30]] \N \N +2011 2024-04-13 20:39:10.936653 0 36 act_move_form_domain_to_customer [["act_window",195],["domain","[[\\"to_location.type\\", \\"=\\", \\"customer\\"]]"],["name","To Customers"],["sequence",40]] ir.action.act_window.domain stock f [["act_window",195],["domain","[[\\"to_location.type\\", \\"=\\", \\"customer\\"]]"],["name","To Customers"],["sequence",40]] \N \N +2012 2024-04-13 20:39:10.936653 0 151 menu_move_form [["action","ir.action.act_window,195"],["icon","tryton-list"],["name","Moves"],["parent",137],["sequence",50]] ir.ui.menu stock f [["action","ir.action.act_window,195"],["icon","tryton-list"],["name","Moves"],["parent",137],["sequence",50]] \N \N +2013 2024-04-13 20:39:10.936653 0 14 menu_move_form_group_stock [["group",12],["menu",151]] ir.ui.menu-res.group stock f [["group",12],["menu",151]] \N \N +2014 2024-04-13 20:39:10.936653 0 35 rule_group_move_companies [["global_p",true],["model",228],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",228],["name","User in companies"]] \N \N +2015 2024-04-13 20:39:10.936653 0 39 rule_move_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",35]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",35]] \N \N +2016 2024-04-13 20:39:10.936653 0 155 access_move [["model",228],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",228],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2017 2024-04-13 20:39:10.936653 0 156 access_move_group_stock [["group",11],["model",228],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",11],["model",228],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2018 2024-04-13 20:39:10.936653 0 63 move_cancel_button [["confirm","Are you sure you want to cancel the move?"],["model",228],["name","cancel"],["string","Cancel"]] ir.model.button stock f [["confirm","Are you sure you want to cancel the move?"],["model",228],["name","cancel"],["string","Cancel"]] \N \N +2019 2024-04-13 20:39:10.936653 0 64 move_draft_button [["model",228],["name","draft"],["string","Reset to Draft"]] ir.model.button stock f [["model",228],["name","draft"],["string","Reset to Draft"]] \N \N +2020 2024-04-13 20:39:10.936653 0 65 move_do_button [["confirm","Are you sure you want to complete the move?"],["model",228],["name","do"],["string","Do"]] ir.model.button stock f [["confirm","Are you sure you want to complete the move?"],["model",228],["name","do"],["string","Do"]] \N \N +2021 2024-04-13 20:39:10.936653 0 196 act_product_moves [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": \\"product\\", \\"t\\": \\"product.template\\"}, \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}], \\"t\\": [{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": \\"product\\", \\"t\\": \\"product.template\\"}, \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]}]"],["name","Stock Moves"],["order","[[\\"effective_date\\", \\"DESC NULLS FIRST\\"]]"],["res_model","stock.move"]] ir.action.act_window stock f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": \\"product\\", \\"t\\": \\"product.template\\"}, \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}], \\"t\\": [{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": \\"product\\", \\"t\\": \\"product.template\\"}, \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]}]"],["name","Stock Moves"],["order","[[\\"effective_date\\", \\"DESC NULLS FIRST\\"]]"],["res_model","stock.move"]] \N \N +2022 2024-04-13 20:39:10.936653 0 232 act_product_moves_view1 [["act_window",196],["sequence",10],["view",366]] ir.action.act_window.view stock f [["act_window",196],["sequence",10],["view",366]] \N \N +2023 2024-04-13 20:39:10.936653 0 233 act_product_moves_view2 [["act_window",196],["sequence",20],["view",365]] ir.action.act_window.view stock f [["act_window",196],["sequence",20],["view",365]] \N \N +2024 2024-04-13 20:39:10.936653 0 197 act_product_moves_keyword1 [["action",196],["keyword","form_relate"],["model","product.product,-1"]] ir.action.keyword stock f [["action",196],["keyword","form_relate"],["model","product.product,-1"]] \N \N +2025 2024-04-13 20:39:10.936653 0 198 act_product_moves_keyword2 [["action",196],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword stock f [["action",196],["keyword","form_relate"],["model","product.template,-1"]] \N \N +2026 2024-04-13 20:39:10.936653 0 370 inventory_view_form [["model","stock.inventory"],["name","inventory_form"],["type","form"]] ir.ui.view stock f [["model","stock.inventory"],["name","inventory_form"],["type","form"]] \N \N +2027 2024-04-13 20:39:10.936653 0 371 inventory_view_tree [["model","stock.inventory"],["name","inventory_tree"],["type","tree"]] ir.ui.view stock f [["model","stock.inventory"],["name","inventory_tree"],["type","tree"]] \N \N +2028 2024-04-13 20:39:10.936653 0 197 act_inventory_form [["name","Inventories"],["res_model","stock.inventory"],["search_value","[[\\"create_date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"DateTime\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dh\\": 0, \\"dm\\": 0, \\"dms\\": 0, \\"ds\\": 0, \\"dy\\": -1, \\"h\\": 0, \\"m\\": 0, \\"ms\\": 0, \\"s\\": 0, \\"start\\": null, \\"y\\": null}]]"]] ir.action.act_window stock f [["name","Inventories"],["res_model","stock.inventory"],["search_value","[[\\"create_date\\", \\">=\\", {\\"M\\": null, \\"__class__\\": \\"DateTime\\", \\"d\\": null, \\"dM\\": 0, \\"dd\\": 0, \\"dh\\": 0, \\"dm\\": 0, \\"dms\\": 0, \\"ds\\": 0, \\"dy\\": -1, \\"h\\": 0, \\"m\\": 0, \\"ms\\": 0, \\"s\\": 0, \\"start\\": null, \\"y\\": null}]]"]] \N \N +2029 2024-04-13 20:39:10.936653 0 234 act_inventory_form_view1 [["act_window",197],["sequence",1],["view",371]] ir.action.act_window.view stock f [["act_window",197],["sequence",1],["view",371]] \N \N +2030 2024-04-13 20:39:10.936653 0 235 act_inventory_form_view2 [["act_window",197],["sequence",2],["view",370]] ir.action.act_window.view stock f [["act_window",197],["sequence",2],["view",370]] \N \N +2031 2024-04-13 20:39:10.936653 0 37 act_inventory_form_domain_draft [["act_window",197],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain stock f [["act_window",197],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2032 2024-04-13 20:39:10.936653 0 38 act_inventory_form_domain_all [["act_window",197],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain stock f [["act_window",197],["domain",""],["name","All"],["sequence",9999]] \N \N +2033 2024-04-13 20:39:10.936653 0 152 menu_inventory_form [["action","ir.action.act_window,197"],["icon","tryton-list"],["name","Inventories"],["parent",137],["sequence",20]] ir.ui.menu stock f [["action","ir.action.act_window,197"],["icon","tryton-list"],["name","Inventories"],["parent",137],["sequence",20]] \N \N +2034 2024-04-13 20:39:10.936653 0 372 inventory_line_view_form [["model","stock.inventory.line"],["name","inventory_line_form"],["type","form"]] ir.ui.view stock f [["model","stock.inventory.line"],["name","inventory_line_form"],["type","form"]] \N \N +2035 2024-04-13 20:39:10.936653 0 373 inventory_line_view_tree [["model","stock.inventory.line"],["name","inventory_line_tree"],["priority",10],["type","tree"]] ir.ui.view stock f [["model","stock.inventory.line"],["name","inventory_line_tree"],["priority",10],["type","tree"]] \N \N +2036 2024-04-13 20:39:10.936653 0 374 inventory_line_view_list_simple [["model","stock.inventory.line"],["name","inventory_line_list_simple"],["priority",20],["type","tree"]] ir.ui.view stock f [["model","stock.inventory.line"],["name","inventory_line_list_simple"],["priority",20],["type","tree"]] \N \N +2086 2024-04-13 20:39:10.936653 0 389 period_cache_view_list [["model","stock.period.cache"],["name","period_cache_list"],["type","tree"]] ir.ui.view stock f [["model","stock.period.cache"],["name","period_cache_list"],["type","tree"]] \N \N +2037 2024-04-13 20:39:10.936653 0 198 act_inventory_line_relate [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"inventory\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"inventory\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Inventory Lines"],["res_model","stock.inventory.line"]] ir.action.act_window stock f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"inventory\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"inventory\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Inventory Lines"],["res_model","stock.inventory.line"]] \N \N +2038 2024-04-13 20:39:10.936653 0 200 act_inventory_line_relate_keyword1 [["action",198],["keyword","form_relate"],["model","stock.inventory,-1"]] ir.action.keyword stock f [["action",198],["keyword","form_relate"],["model","stock.inventory,-1"]] \N \N +2039 2024-04-13 20:39:10.936653 0 36 rule_group_inventory_companies [["global_p",true],["model",246],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",246],["name","User in companies"]] \N \N +2040 2024-04-13 20:39:10.936653 0 40 rule_inventory_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",36]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",36]] \N \N +2041 2024-04-13 20:39:10.936653 0 157 access_inventory [["model",246],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",246],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2042 2024-04-13 20:39:10.936653 0 158 access_inventory_group_stock [["group",11],["model",246],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",11],["model",246],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2043 2024-04-13 20:39:10.936653 0 66 inventory_confirm_button [["confirm","Are you sure you want to confirm the inventory?"],["model",246],["name","confirm"],["string","Confirm"]] ir.model.button stock f [["confirm","Are you sure you want to confirm the inventory?"],["model",246],["name","confirm"],["string","Confirm"]] \N \N +2044 2024-04-13 20:39:10.936653 0 67 inventory_cancel_button [["confirm","Are you sure you want to cancel the inventory?"],["model",246],["name","cancel"],["string","Cancel"]] ir.model.button stock f [["confirm","Are you sure you want to cancel the inventory?"],["model",246],["name","cancel"],["string","Cancel"]] \N \N +2045 2024-04-13 20:39:10.936653 0 68 inventory_complete_lines_button [["help","Add an inventory line for each missing products"],["model",246],["name","complete_lines"],["string","Complete"]] ir.model.button stock f [["help","Add an inventory line for each missing products"],["model",246],["name","complete_lines"],["string","Complete"]] \N \N +2046 2024-04-13 20:39:10.936653 0 69 inventory_count_button [["help","Launch the wizard to count products"],["model",246],["name","do_count"],["string","Count"]] ir.model.button stock f [["help","Launch the wizard to count products"],["model",246],["name","do_count"],["string","Count"]] \N \N +2047 2024-04-13 20:39:10.936653 0 199 wizard_inventory_count [["model","stock.inventory"],["name","Count"],["wiz_name","stock.inventory.count"]] ir.action.wizard stock f [["model","stock.inventory"],["name","Count"],["wiz_name","stock.inventory.count"]] \N \N +2048 2024-04-13 20:39:10.936653 0 375 inventory_count_search_view_form [["model","stock.inventory.count.search"],["name","inventory_count_search_form"],["type","form"]] ir.ui.view stock f [["model","stock.inventory.count.search"],["name","inventory_count_search_form"],["type","form"]] \N \N +2049 2024-04-13 20:39:10.936653 0 376 inventory_count_quantity_view_form [["model","stock.inventory.count.quantity"],["name","inventory_count_quantity_form"],["type","form"]] ir.ui.view stock f [["model","stock.inventory.count.quantity"],["name","inventory_count_quantity_form"],["type","form"]] \N \N +2050 2024-04-13 20:39:10.936653 0 12 sequence_type_inventory [["name","Inventory"]] ir.sequence.type stock f [["name","Inventory"]] \N \N +2051 2024-04-13 20:39:10.936653 0 23 sequence_type_inventory_group_admin [["group",1],["sequence_type",12]] ir.sequence.type-res.group stock f [["group",1],["sequence_type",12]] \N \N +2052 2024-04-13 20:39:10.936653 0 24 sequence_type_inventory_group_stock_admin [["group",12],["sequence_type",12]] ir.sequence.type-res.group stock f [["group",12],["sequence_type",12]] \N \N +2053 2024-04-13 20:39:10.936653 0 9 sequence_inventory [["name","Inventory"],["sequence_type",12]] ir.sequence stock f [["name","Inventory"],["sequence_type",12]] \N \N +2054 2024-04-13 20:39:10.936653 0 377 party_party_view_form [["inherit",143],["model","party.party"],["name","party_form"]] ir.ui.view stock f [["inherit",143],["model","party.party"],["name","party_form"]] \N \N +2055 2024-04-13 20:39:10.936653 0 378 address_view_tree [["inherit",153],["model","party.address"],["name","party_address_tree"]] ir.ui.view stock f [["inherit",153],["model","party.address"],["name","party_address_tree"]] \N \N +2056 2024-04-13 20:39:10.936653 0 379 address_view_form [["inherit",155],["model","party.address"],["name","party_address_form"]] ir.ui.view stock f [["inherit",155],["model","party.address"],["name","party_address_form"]] \N \N +2057 2024-04-13 20:39:10.936653 0 380 address_view_form_simple [["inherit",156],["model","party.address"],["name","party_address_form"]] ir.ui.view stock f [["inherit",156],["model","party.address"],["name","party_address_form"]] \N \N +2058 2024-04-13 20:39:10.936653 0 381 address_view_tree_sequence [["inherit",154],["model","party.address"],["name","party_address_tree"]] ir.ui.view stock f [["inherit",154],["model","party.address"],["name","party_address_tree"]] \N \N +2059 2024-04-13 20:39:10.936653 0 382 contact_mechanism_view_tree [["inherit",161],["model","party.contact_mechanism"],["name","party_contact_mechanism_tree"]] ir.ui.view stock f [["inherit",161],["model","party.contact_mechanism"],["name","party_contact_mechanism_tree"]] \N \N +2060 2024-04-13 20:39:10.936653 0 383 contact_mechanism_view_form [["inherit",163],["model","party.contact_mechanism"],["name","party_contact_mechanism_form"]] ir.ui.view stock f [["inherit",163],["model","party.contact_mechanism"],["name","party_contact_mechanism_form"]] \N \N +2061 2024-04-13 20:39:10.936653 0 384 contact_mechanism_view_tree_sequence [["inherit",162],["model","party.contact_mechanism"],["name","party_contact_mechanism_tree"]] ir.ui.view stock f [["inherit",162],["model","party.contact_mechanism"],["name","party_contact_mechanism_tree"]] \N \N +2087 2024-04-13 20:39:10.936653 0 164 access_period_cache_cache [["model",238],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",238],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2062 2024-04-13 20:39:10.936653 0 200 act_shipment_out_form2 [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"customer\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"customer\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Customer Shipments"],["res_model","stock.shipment.out"],["search_value","[[\\"state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"]] ir.action.act_window stock f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"customer\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"customer\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Customer Shipments"],["res_model","stock.shipment.out"],["search_value","[[\\"state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"]] \N \N +2063 2024-04-13 20:39:10.936653 0 201 act_open_purchase_keyword1 [["action",200],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword stock f [["action",200],["keyword","form_relate"],["model","party.party,-1"]] \N \N +2064 2024-04-13 20:39:10.936653 0 201 act_shipment_out_form3 [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"supplier\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"supplier\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Supplier Shipments"],["res_model","stock.shipment.in"],["search_value","[[\\"state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"]] ir.action.act_window stock f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"supplier\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"supplier\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Supplier Shipments"],["res_model","stock.shipment.in"],["search_value","[[\\"state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"]] \N \N +2065 2024-04-13 20:39:10.936653 0 202 act_open_purchase_keyword2 [["action",201],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword stock f [["action",201],["keyword","form_relate"],["model","party.party,-1"]] \N \N +2066 2024-04-13 20:39:10.936653 0 385 stock_configuration_view_form [["model","stock.configuration"],["name","configuration_form"],["type","form"]] ir.ui.view stock f [["model","stock.configuration"],["name","configuration_form"],["type","form"]] \N \N +2067 2024-04-13 20:39:10.936653 0 202 act_stock_configuration_form [["name","Configuration"],["res_model","stock.configuration"]] ir.action.act_window stock f [["name","Configuration"],["res_model","stock.configuration"]] \N \N +2068 2024-04-13 20:39:10.936653 0 236 act_stock_configuration_view1 [["act_window",202],["sequence",1],["view",385]] ir.action.act_window.view stock f [["act_window",202],["sequence",1],["view",385]] \N \N +2069 2024-04-13 20:39:10.936653 0 153 menu_stock_configuration [["action","ir.action.act_window,202"],["icon","tryton-list"],["name","Configuration"],["parent",138],["sequence",10]] ir.ui.menu stock f [["action","ir.action.act_window,202"],["icon","tryton-list"],["name","Configuration"],["parent",138],["sequence",10]] \N \N +2070 2024-04-13 20:39:10.936653 0 159 access_configuration [["model",250],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["model",250],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2071 2024-04-13 20:39:10.936653 0 160 access_configuration_admin [["group",12],["model",250],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",250],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +2072 2024-04-13 20:39:10.936653 0 386 period_view_form [["model","stock.period"],["name","period_form"],["type","form"]] ir.ui.view stock f [["model","stock.period"],["name","period_form"],["type","form"]] \N \N +2073 2024-04-13 20:39:10.936653 0 387 period_view_list [["model","stock.period"],["name","period_list"],["type","tree"]] ir.ui.view stock f [["model","stock.period"],["name","period_list"],["type","tree"]] \N \N +2074 2024-04-13 20:39:10.936653 0 203 act_period_list [["name","Periods"],["res_model","stock.period"]] ir.action.act_window stock f [["name","Periods"],["res_model","stock.period"]] \N \N +2075 2024-04-13 20:39:10.936653 0 237 act_period_list_view1 [["act_window",203],["sequence",10],["view",387]] ir.action.act_window.view stock f [["act_window",203],["sequence",10],["view",387]] \N \N +2076 2024-04-13 20:39:10.936653 0 238 act_period_list_view2 [["act_window",203],["sequence",20],["view",386]] ir.action.act_window.view stock f [["act_window",203],["sequence",20],["view",386]] \N \N +2077 2024-04-13 20:39:10.936653 0 154 menu_period_list [["action","ir.action.act_window,203"],["icon","tryton-list"],["name","Periods"],["parent",138],["sequence",30]] ir.ui.menu stock f [["action","ir.action.act_window,203"],["icon","tryton-list"],["name","Periods"],["parent",138],["sequence",30]] \N \N +2078 2024-04-13 20:39:10.936653 0 37 rule_group_period_companies [["global_p",true],["model",237],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",237],["name","User in companies"]] \N \N +2079 2024-04-13 20:39:10.936653 0 41 rule_period_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",37]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",37]] \N \N +2080 2024-04-13 20:39:10.936653 0 161 access_period [["model",237],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",237],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2081 2024-04-13 20:39:10.936653 0 162 access_period_stock [["group",11],["model",237],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",11],["model",237],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2082 2024-04-13 20:39:10.936653 0 163 access_period_admin [["group",12],["model",237],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",237],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2083 2024-04-13 20:39:10.936653 0 70 period_draft_button [["model",237],["name","draft"],["string","Draft"]] ir.model.button stock f [["model",237],["name","draft"],["string","Draft"]] \N \N +2084 2024-04-13 20:39:10.936653 0 71 period_close_button [["model",237],["name","close"],["string","Close"]] ir.model.button stock f [["model",237],["name","close"],["string","Close"]] \N \N +2088 2024-04-13 20:39:10.936653 0 165 access_period_cache_cache_stock [["group",11],["model",238],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",11],["model",238],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2089 2024-04-13 20:39:10.936653 0 166 access_period_cache_admin [["group",12],["model",238],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access stock f [["group",12],["model",238],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2090 2024-04-13 20:39:10.936653 0 245 msg_product_change_default_uom [["text","You cannot change the default unit of measure of a product which is associated with stock moves."]] ir.message stock f [["text","You cannot change the default unit of measure of a product which is associated with stock moves."]] \N \N +2091 2024-04-13 20:39:10.936653 0 246 msg_product_change_type [["text","You cannot change the type of a product which is associated with stock moves."]] ir.message stock f [["text","You cannot change the type of a product which is associated with stock moves."]] \N \N +2092 2024-04-13 20:39:10.936653 0 247 msg_product_change_cost_price [["text","You cannot change the cost price of a product which is associated with stock moves.\\nYou must use the \\"Modify Cost Price\\" wizard."]] ir.message stock f [["text","You cannot change the cost price of a product which is associated with stock moves.\\nYou must use the \\"Modify Cost Price\\" wizard."]] \N \N +2093 2024-04-13 20:39:10.936653 0 248 msg_invalid_cost_price [["text","Invalid cost price \\"%(cost_price)s\\" for product \\"%(product)s\\" with exception \\"%(exception)s\\"."]] ir.message stock f [["text","Invalid cost price \\"%(cost_price)s\\" for product \\"%(product)s\\" with exception \\"%(exception)s\\"."]] \N \N +2094 2024-04-13 20:39:10.936653 0 249 msg_invalid_cost_price_not_number [["text","The value \\"%(value)s\\" of \\"%(cost_price)s\\" for product \\"%(product)s\\" is not a number."]] ir.message stock f [["text","The value \\"%(value)s\\" of \\"%(cost_price)s\\" for product \\"%(product)s\\" is not a number."]] \N \N +2095 2024-04-13 20:39:10.936653 0 250 msg_location_invalid_type_for_moves [["text","You cannot change the type of location \\"%(location)s\\" to \\"%(type)s\\"\\nbecause the type does not support moves and location has existing moves."]] ir.message stock f [["text","You cannot change the type of location \\"%(location)s\\" to \\"%(type)s\\"\\nbecause the type does not support moves and location has existing moves."]] \N \N +2096 2024-04-13 20:39:10.936653 0 251 msg_location_child_of_warehouse [["text","To set location \\"%(location)s\\" as storage/input/output of warehouse \\"%(warehouse)s\\", it must be in the warehouse."]] ir.message stock f [["text","To set location \\"%(location)s\\" as storage/input/output of warehouse \\"%(warehouse)s\\", it must be in the warehouse."]] \N \N +2097 2024-04-13 20:39:10.936653 0 252 msg_location_inactive_not_empty [["text","To inactivate location \\"%(location)s\\", you must empty it."]] ir.message stock f [["text","To inactivate location \\"%(location)s\\", you must empty it."]] \N \N +2098 2024-04-13 20:39:10.936653 0 253 msg_period_close_date [["text","You cannot close periods with a date in the future or today."]] ir.message stock f [["text","You cannot close periods with a date in the future or today."]] \N \N +2099 2024-04-13 20:39:10.936653 0 254 msg_period_close_assigned_move [["text","You cannot close periods with assigned moves in it."]] ir.message stock f [["text","You cannot close periods with assigned moves in it."]] \N \N +2100 2024-04-13 20:39:10.936653 0 255 msg_shipment_planned_date [["text","Planned Date"]] ir.message stock f [["text","Planned Date"]] \N \N +2101 2024-04-13 20:39:10.936653 0 256 msg_shipment_planned_date_help [["text","When the stock operation is expected to be completed."]] ir.message stock f [["text","When the stock operation is expected to be completed."]] \N \N +2102 2024-04-13 20:39:10.936653 0 257 msg_shipment_origin_planned_date [["text","Origin Planned Date"]] ir.message stock f [["text","Origin Planned Date"]] \N \N +2103 2024-04-13 20:39:10.936653 0 258 msg_shipment_origin_planned_date_help [["text","When the stock operation was initially expected to be completed."]] ir.message stock f [["text","When the stock operation was initially expected to be completed."]] \N \N +2104 2024-04-13 20:39:10.936653 0 259 msg_shipment_effective_date [["text","Effective Date"]] ir.message stock f [["text","Effective Date"]] \N \N +2105 2024-04-13 20:39:10.936653 0 260 msg_shipment_effective_date_help [["text","When the stock operation was actually completed."]] ir.message stock f [["text","When the stock operation was actually completed."]] \N \N +2106 2024-04-13 20:39:10.936653 0 261 msg_shipment_delay [["text","Delay"]] ir.message stock f [["text","Delay"]] \N \N +2107 2024-04-13 20:39:10.936653 0 262 msg_shipment_pack_inventory_done [["text","To pack shipment \\"%(shipment)s\\" you must do the inventory moves."]] ir.message stock f [["text","To pack shipment \\"%(shipment)s\\" you must do the inventory moves."]] \N \N +2108 2024-04-13 20:39:10.936653 0 263 msg_shipment_delete_cancel [["text","To delete shipment \\"%(shipment)s\\" you must cancel it."]] ir.message stock f [["text","To delete shipment \\"%(shipment)s\\" you must cancel it."]] \N \N +2109 2024-04-13 20:39:10.936653 0 264 msg_shipment_check_quantity [["text","The quantities of shipment \\"%(shipment)s\\" are different by %(quantities)s."]] ir.message stock f [["text","The quantities of shipment \\"%(shipment)s\\" are different by %(quantities)s."]] \N \N +2110 2024-04-13 20:39:10.936653 0 265 msg_inventory_delete_cancel [["text","To delete inventory \\"%(inventory)s\\" you must cancel it."]] ir.message stock f [["text","To delete inventory \\"%(inventory)s\\" you must cancel it."]] \N \N +2111 2024-04-13 20:39:10.936653 0 266 msg_inventory_missing_empty_quantity [["text","To confirm the inventory \\"%(inventory)s\\" you must select an option for empty quantity."]] ir.message stock f [["text","To confirm the inventory \\"%(inventory)s\\" you must select an option for empty quantity."]] \N \N +2112 2024-04-13 20:39:10.936653 0 267 msg_inventory_location_missing_lost_found [["text","To confirm the inventory \\"%(inventory)s\\" you must set a lost and found on a parent of location \\"%(location)s\\"."]] ir.message stock f [["text","To confirm the inventory \\"%(inventory)s\\" you must set a lost and found on a parent of location \\"%(location)s\\"."]] \N \N +2113 2024-04-13 20:39:10.936653 0 268 msg_inventory_line_unique [["text","Inventory line \\"%(line)s\\" is not unique on inventory \\"%(inventory)s\\"."]] ir.message stock f [["text","Inventory line \\"%(line)s\\" is not unique on inventory \\"%(inventory)s\\"."]] \N \N +2114 2024-04-13 20:39:10.936653 0 269 msg_inventory_line_quantity_positive [["text","Inventory line quantity must be positive."]] ir.message stock f [["text","Inventory line quantity must be positive."]] \N \N +2115 2024-04-13 20:39:10.936653 0 270 msg_inventory_line_delete_cancel [["text","To delete inventory line \\"%(line)s\\" you must cancel inventory \\"%(inventory)s\\"."]] ir.message stock f [["text","To delete inventory line \\"%(line)s\\" you must cancel inventory \\"%(inventory)s\\"."]] \N \N +2116 2024-04-13 20:39:10.936653 0 271 msg_inventory_count_create_line [["text","No existing line found for \\"%(search)s\\"."]] ir.message stock f [["text","No existing line found for \\"%(search)s\\"."]] \N \N +2117 2024-04-13 20:39:10.936653 0 272 msg_erase_party_shipment [["text","You cannot erase party \\"%(party)s\\" while they have pending shipments with company \\"%(company)s\\"."]] ir.message stock f [["text","You cannot erase party \\"%(party)s\\" while they have pending shipments with company \\"%(company)s\\"."]] \N \N +2118 2024-04-13 20:39:10.936653 0 273 msg_move_delete_draft_cancel [["text","To delete stock move \\"%(move)s\\" you must cancel it or reset its state to draft."]] ir.message stock f [["text","To delete stock move \\"%(move)s\\" you must cancel it or reset its state to draft."]] \N \N +2119 2024-04-13 20:39:10.936653 0 274 msg_move_modify_period_close [["text","To modify stock move \\"%(move)s\\" you must reopen period \\"%(period)s\\"."]] ir.message stock f [["text","To modify stock move \\"%(move)s\\" you must reopen period \\"%(period)s\\"."]] \N \N +2120 2024-04-13 20:39:10.936653 0 275 msg_move_modify_assigned [["text","To modify stock move \\"%(move)s\\" you must reset its state to draft."]] ir.message stock f [["text","To modify stock move \\"%(move)s\\" you must reset its state to draft."]] \N \N +2121 2024-04-13 20:39:10.936653 0 276 msg_move_modify_done [["text","You cannot modify stock move \\"%(move)s\\" because it is done."]] ir.message stock f [["text","You cannot modify stock move \\"%(move)s\\" because it is done."]] \N \N +2122 2024-04-13 20:39:10.936653 0 277 msg_move_modify_cancelled [["text","You cannot modify stock move \\"%(move)s\\" because it is cancelled."]] ir.message stock f [["text","You cannot modify stock move \\"%(move)s\\" because it is cancelled."]] \N \N +2123 2024-04-13 20:39:10.936653 0 278 msg_move_no_origin [["text","Stock moves \\"%(moves)s\\" have no origin."]] ir.message stock f [["text","Stock moves \\"%(moves)s\\" have no origin."]] \N \N +2124 2024-04-13 20:39:10.936653 0 279 msg_move_quantity_positive [["text","Move quantity must be positive."]] ir.message stock f [["text","Move quantity must be positive."]] \N \N +2125 2024-04-13 20:39:10.936653 0 280 msg_move_internal_quantity_positive [["text","Internal move quantity must be positive."]] ir.message stock f [["text","Internal move quantity must be positive."]] \N \N +2126 2024-04-13 20:39:10.936653 0 281 msg_move_from_to_location [["text","The source and destination of stock move must be different."]] ir.message stock f [["text","The source and destination of stock move must be different."]] \N \N +2127 2024-04-13 20:39:10.936653 0 282 msg_move_effective_date_in_the_future [["text","The moves \\"%(moves)s\\" have effective dates in the future."]] ir.message stock f [["text","The moves \\"%(moves)s\\" have effective dates in the future."]] \N \N +2128 2024-04-13 20:39:10.936653 0 283 msg_inventory_date_in_the_future [["text","The inventories \\"%(inventories)s\\" have dates in the future."]] ir.message stock f [["text","The inventories \\"%(inventories)s\\" have dates in the future."]] \N \N +2129 2024-04-13 20:39:10.936653 0 284 msg_stock_reporting_company [["text","Company"]] ir.message stock f [["text","Company"]] \N \N +2130 2024-04-13 20:39:10.936653 0 285 msg_stock_reporting_number [["text","Number"]] ir.message stock f [["text","Number"]] \N \N +2131 2024-04-13 20:39:10.936653 0 286 msg_stock_reporting_cost [["text","Cost"]] ir.message stock f [["text","Cost"]] \N \N +2132 2024-04-13 20:39:10.936653 0 287 msg_stock_reporting_revenue [["text","Revenue"]] ir.message stock f [["text","Revenue"]] \N \N +2133 2024-04-13 20:39:10.936653 0 288 msg_stock_reporting_profit [["text","Profit"]] ir.message stock f [["text","Profit"]] \N \N +2134 2024-04-13 20:39:10.936653 0 289 msg_stock_reporting_margin [["text","Margin"]] ir.message stock f [["text","Margin"]] \N \N +2135 2024-04-13 20:39:10.936653 0 290 msg_stock_reporting_margin_trend [["text","Margin Trend"]] ir.message stock f [["text","Margin Trend"]] \N \N +2136 2024-04-13 20:39:10.936653 0 291 msg_stock_reporting_currency [["text","Currency"]] ir.message stock f [["text","Currency"]] \N \N +2137 2024-04-13 20:39:10.936653 0 292 msg_product_location_quantity [["text","The product \\"%(product)s\\" has still some quantities in locations \\"%(locations)s\\" for company \\"%(company)s\\"."]] ir.message stock f [["text","The product \\"%(product)s\\" has still some quantities in locations \\"%(locations)s\\" for company \\"%(company)s\\"."]] \N \N +2138 2024-04-13 20:39:10.936653 0 293 msg_product_location_quantity_description [["text","It is recommended to clear the stock from the storage locations before deactivating the product."]] ir.message stock f [["text","It is recommended to clear the stock from the storage locations before deactivating the product."]] \N \N +2139 2024-04-13 20:39:10.936653 0 390 user_view_form [["inherit",111],["model","res.user"],["name","user_form"]] ir.ui.view stock f [["inherit",111],["model","res.user"],["name","user_form"]] \N \N +2140 2024-04-13 20:39:10.936653 0 391 user_view_form_preferences [["inherit",112],["model","res.user"],["name","user_form_preferences"]] ir.ui.view stock f [["inherit",112],["model","res.user"],["name","user_form_preferences"]] \N \N +2141 2024-04-13 20:39:10.936653 0 155 menu_reporting_margin [["icon","tryton-graph"],["name","Margins"],["parent",127],["sequence",50]] ir.ui.menu stock f [["icon","tryton-graph"],["name","Margins"],["parent",127],["sequence",50]] \N \N +2142 2024-04-13 20:39:10.936653 0 15 menu_reporting_margin_group_product_admin [["group",9],["menu",155]] ir.ui.menu-res.group stock f [["group",9],["menu",155]] \N \N +2143 2024-04-13 20:39:10.936653 0 392 reporting_margin_context_view_form [["model","stock.reporting.margin.context"],["name","reporting_margin_context_form"],["type","form"]] ir.ui.view stock f [["model","stock.reporting.margin.context"],["name","reporting_margin_context_form"],["type","form"]] \N \N +2144 2024-04-13 20:39:10.936653 0 393 reporting_margin_main_view_list [["model","stock.reporting.margin.main"],["name","reporting_margin_main_list"],["type","tree"]] ir.ui.view stock f [["model","stock.reporting.margin.main"],["name","reporting_margin_main_list"],["type","tree"]] \N \N +2145 2024-04-13 20:39:10.936653 0 394 reporting_margin_main_view_graph_margin [["model","stock.reporting.margin.main"],["name","reporting_margin_main_graph_margin"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.main"],["name","reporting_margin_main_graph_margin"],["type","graph"]] \N \N +2146 2024-04-13 20:39:10.936653 0 395 reporting_margin_main_view_graph_profit [["model","stock.reporting.margin.main"],["name","reporting_margin_main_graph_profit"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.main"],["name","reporting_margin_main_graph_profit"],["type","graph"]] \N \N +2147 2024-04-13 20:39:10.936653 0 396 reporting_margin_main_view_graph_amount [["model","stock.reporting.margin.main"],["name","reporting_margin_main_graph_amount"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.main"],["name","reporting_margin_main_graph_amount"],["type","graph"]] \N \N +2148 2024-04-13 20:39:10.936653 0 204 act_reporting_margin_main [["context_model","stock.reporting.margin.context"],["name","Margins"],["res_model","stock.reporting.margin.main"]] ir.action.act_window stock f [["context_model","stock.reporting.margin.context"],["name","Margins"],["res_model","stock.reporting.margin.main"]] \N \N +2149 2024-04-13 20:39:10.936653 0 239 act_reporting_margin_main_view1 [["act_window",204],["sequence",10],["view",393]] ir.action.act_window.view stock f [["act_window",204],["sequence",10],["view",393]] \N \N +2150 2024-04-13 20:39:10.936653 0 240 act_reporting_margin_main_view2 [["act_window",204],["sequence",20],["view",394]] ir.action.act_window.view stock f [["act_window",204],["sequence",20],["view",394]] \N \N +2151 2024-04-13 20:39:10.936653 0 241 act_reporting_margin_main_view3 [["act_window",204],["sequence",30],["view",395]] ir.action.act_window.view stock f [["act_window",204],["sequence",30],["view",395]] \N \N +2152 2024-04-13 20:39:10.936653 0 242 act_reporting_margin_main_view4 [["act_window",204],["sequence",40],["view",396]] ir.action.act_window.view stock f [["act_window",204],["sequence",40],["view",396]] \N \N +2153 2024-04-13 20:39:10.936653 0 205 act_reporting_margin_main_keyword1 [["action",204],["keyword","tree_open"],["model","ir.ui.menu,155"]] ir.action.keyword stock f [["action",204],["keyword","tree_open"],["model","ir.ui.menu,155"]] \N \N +2154 2024-04-13 20:39:10.936653 0 38 rule_group_reporting_margin_main_companies [["global_p",true],["model",254],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",254],["name","User in companies"]] \N \N +2155 2024-04-13 20:39:10.936653 0 42 rule_reporting_margin_main_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",38]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",38]] \N \N +2156 2024-04-13 20:39:10.936653 0 167 access_reporting_margin_main [["model",254],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",254],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2157 2024-04-13 20:39:10.936653 0 168 access_reporting_margin_main_product_admin [["group",9],["model",254],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",9],["model",254],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2158 2024-04-13 20:39:10.936653 0 397 reporting_margin_main_time_series_view_list [["model","stock.reporting.margin.main.time_series"],["name","reporting_margin_main_time_series_list"],["type","tree"]] ir.ui.view stock f [["model","stock.reporting.margin.main.time_series"],["name","reporting_margin_main_time_series_list"],["type","tree"]] \N \N +2159 2024-04-13 20:39:10.936653 0 398 reporting_margin_main_time_series_view_graph_margin [["model","stock.reporting.margin.main.time_series"],["name","reporting_margin_main_time_series_graph_margin"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.main.time_series"],["name","reporting_margin_main_time_series_graph_margin"],["type","graph"]] \N \N +2160 2024-04-13 20:39:10.936653 0 399 reporting_margin_main_time_series_view_graph_profit [["model","stock.reporting.margin.main.time_series"],["name","reporting_margin_main_time_series_graph_profit"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.main.time_series"],["name","reporting_margin_main_time_series_graph_profit"],["type","graph"]] \N \N +2161 2024-04-13 20:39:10.936653 0 400 reporting_margin_main_time_series_view_graph_amount [["model","stock.reporting.margin.main.time_series"],["name","reporting_margin_main_time_series_graph_amount"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.main.time_series"],["name","reporting_margin_main_time_series_graph_amount"],["type","graph"]] \N \N +2162 2024-04-13 20:39:10.936653 0 205 act_reporting_margin_main_time_series [["context_model","stock.reporting.margin.context"],["name","Margins"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","stock.reporting.margin.main.time_series"]] ir.action.act_window stock f [["context_model","stock.reporting.margin.context"],["name","Margins"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","stock.reporting.margin.main.time_series"]] \N \N +2163 2024-04-13 20:39:10.936653 0 243 act_reporting_margin_main_time_series_view1 [["act_window",205],["sequence",10],["view",397]] ir.action.act_window.view stock f [["act_window",205],["sequence",10],["view",397]] \N \N +2164 2024-04-13 20:39:10.936653 0 244 act_reporting_margin_main_time_series_view2 [["act_window",205],["sequence",20],["view",398]] ir.action.act_window.view stock f [["act_window",205],["sequence",20],["view",398]] \N \N +2165 2024-04-13 20:39:10.936653 0 245 act_reporting_margin_main_time_series_view3 [["act_window",205],["sequence",30],["view",399]] ir.action.act_window.view stock f [["act_window",205],["sequence",30],["view",399]] \N \N +2166 2024-04-13 20:39:10.936653 0 246 act_reporting_margin_main_time_series_view4 [["act_window",205],["sequence",40],["view",400]] ir.action.act_window.view stock f [["act_window",205],["sequence",40],["view",400]] \N \N +2167 2024-04-13 20:39:10.936653 0 206 act_reporting_margin_main_time_series_keyword1 [["action",205],["keyword","tree_open"],["model","stock.reporting.margin.main,-1"]] ir.action.keyword stock f [["action",205],["keyword","tree_open"],["model","stock.reporting.margin.main,-1"]] \N \N +2168 2024-04-13 20:39:10.936653 0 39 rule_group_reporting_margin_main_time_series_companies [["global_p",true],["model",255],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",255],["name","User in companies"]] \N \N +2169 2024-04-13 20:39:10.936653 0 43 rule_reporting_margin_main_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",39]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",39]] \N \N +2170 2024-04-13 20:39:10.936653 0 169 access_reporting_margin_main_time_series [["model",255],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",255],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2171 2024-04-13 20:39:10.936653 0 170 access_reporting_margin_main_time_series_main_admin [["group",9],["model",255],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",9],["model",255],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2172 2024-04-13 20:39:10.936653 0 401 reporting_margin_product_view_list [["inherit",393],["model","stock.reporting.margin.product"],["name","reporting_margin_product_list"],["type",null]] ir.ui.view stock f [["inherit",393],["model","stock.reporting.margin.product"],["name","reporting_margin_product_list"],["type",null]] \N \N +2173 2024-04-13 20:39:10.936653 0 402 reporting_margin_product_view_graph_margin [["inherit",394],["model","stock.reporting.margin.product"],["name","reporting_margin_product_graph_margin"],["type",null]] ir.ui.view stock f [["inherit",394],["model","stock.reporting.margin.product"],["name","reporting_margin_product_graph_margin"],["type",null]] \N \N +2174 2024-04-13 20:39:10.936653 0 403 reporting_margin_product_view_graph_profit [["inherit",395],["model","stock.reporting.margin.product"],["name","reporting_margin_product_graph_profit"],["type",null]] ir.ui.view stock f [["inherit",395],["model","stock.reporting.margin.product"],["name","reporting_margin_product_graph_profit"],["type",null]] \N \N +2175 2024-04-13 20:39:10.936653 0 404 reporting_margin_product_view_graph_amount [["inherit",396],["model","stock.reporting.margin.product"],["name","reporting_margin_product_graph_amount"],["type",null]] ir.ui.view stock f [["inherit",396],["model","stock.reporting.margin.product"],["name","reporting_margin_product_graph_amount"],["type",null]] \N \N +2176 2024-04-13 20:39:10.936653 0 206 act_reporting_margin_product [["context_model","stock.reporting.margin.context"],["name","Margins per Product"],["res_model","stock.reporting.margin.product"]] ir.action.act_window stock f [["context_model","stock.reporting.margin.context"],["name","Margins per Product"],["res_model","stock.reporting.margin.product"]] \N \N +2177 2024-04-13 20:39:10.936653 0 247 act_reporting_margin_product_view1 [["act_window",206],["sequence",10],["view",401]] ir.action.act_window.view stock f [["act_window",206],["sequence",10],["view",401]] \N \N +2178 2024-04-13 20:39:10.936653 0 248 act_reporting_margin_product_view2 [["act_window",206],["sequence",20],["view",402]] ir.action.act_window.view stock f [["act_window",206],["sequence",20],["view",402]] \N \N +2179 2024-04-13 20:39:10.936653 0 249 act_reporting_margin_product_view3 [["act_window",206],["sequence",30],["view",403]] ir.action.act_window.view stock f [["act_window",206],["sequence",30],["view",403]] \N \N +2180 2024-04-13 20:39:10.936653 0 250 act_reporting_margin_product_view4 [["act_window",206],["sequence",40],["view",404]] ir.action.act_window.view stock f [["act_window",206],["sequence",40],["view",404]] \N \N +2181 2024-04-13 20:39:10.936653 0 207 act_reporting_margin_product_keyword1 [["action",206],["keyword","tree_open"],["model","ir.ui.menu,155"]] ir.action.keyword stock f [["action",206],["keyword","tree_open"],["model","ir.ui.menu,155"]] \N \N +2182 2024-04-13 20:39:10.936653 0 40 rule_group_reporting_margin_product_companies [["global_p",true],["model",256],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",256],["name","User in companies"]] \N \N +2183 2024-04-13 20:39:10.936653 0 44 rule_reporting_margin_product_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",40]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",40]] \N \N +2184 2024-04-13 20:39:10.936653 0 171 access_reporting_margin_product [["model",256],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",256],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2185 2024-04-13 20:39:10.936653 0 172 access_reporting_margin_product_product_admin [["group",9],["model",256],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",9],["model",256],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2186 2024-04-13 20:39:10.936653 0 405 reporting_margin_product_time_series_view_list [["inherit",397],["model","stock.reporting.margin.product.time_series"],["name","reporting_margin_product_time_series_list"],["type",null]] ir.ui.view stock f [["inherit",397],["model","stock.reporting.margin.product.time_series"],["name","reporting_margin_product_time_series_list"],["type",null]] \N \N +2187 2024-04-13 20:39:10.936653 0 406 reporting_margin_product_time_series_view_graph_margin [["model","stock.reporting.margin.product.time_series"],["name","reporting_margin_main_time_series_graph_margin"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.product.time_series"],["name","reporting_margin_main_time_series_graph_margin"],["type","graph"]] \N \N +2188 2024-04-13 20:39:10.936653 0 407 reporting_margin_product_time_series_view_graph_profit [["model","stock.reporting.margin.product.time_series"],["name","reporting_margin_main_time_series_graph_profit"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.product.time_series"],["name","reporting_margin_main_time_series_graph_profit"],["type","graph"]] \N \N +2189 2024-04-13 20:39:10.936653 0 408 reporting_margin_product_time_series_view_graph_amount [["model","stock.reporting.margin.product.time_series"],["name","reporting_margin_main_time_series_graph_amount"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.product.time_series"],["name","reporting_margin_main_time_series_graph_amount"],["type","graph"]] \N \N +2190 2024-04-13 20:39:10.936653 0 207 act_reporting_margin_product_time_series [["context_model","stock.reporting.margin.context"],["domain","[[\\"product\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Margins per Product"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","stock.reporting.margin.product.time_series"]] ir.action.act_window stock f [["context_model","stock.reporting.margin.context"],["domain","[[\\"product\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Margins per Product"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","stock.reporting.margin.product.time_series"]] \N \N +2191 2024-04-13 20:39:10.936653 0 251 act_reporting_margin_product_time_series_view1 [["act_window",207],["sequence",10],["view",405]] ir.action.act_window.view stock f [["act_window",207],["sequence",10],["view",405]] \N \N +2192 2024-04-13 20:39:10.936653 0 252 act_reporting_margin_product_time_series_view2 [["act_window",207],["sequence",20],["view",406]] ir.action.act_window.view stock f [["act_window",207],["sequence",20],["view",406]] \N \N +2193 2024-04-13 20:39:10.936653 0 253 act_reporting_margin_product_time_series_view3 [["act_window",207],["sequence",30],["view",407]] ir.action.act_window.view stock f [["act_window",207],["sequence",30],["view",407]] \N \N +2194 2024-04-13 20:39:10.936653 0 254 act_reporting_margin_product_time_series_view4 [["act_window",207],["sequence",40],["view",408]] ir.action.act_window.view stock f [["act_window",207],["sequence",40],["view",408]] \N \N +2195 2024-04-13 20:39:10.936653 0 208 act_reporting_margin_product_time_series_keyword1 [["action",207],["keyword","tree_open"],["model","stock.reporting.margin.product,-1"]] ir.action.keyword stock f [["action",207],["keyword","tree_open"],["model","stock.reporting.margin.product,-1"]] \N \N +2196 2024-04-13 20:39:10.936653 0 41 rule_group_reporting_margin_product_time_series_companies [["global_p",true],["model",257],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",257],["name","User in companies"]] \N \N +2197 2024-04-13 20:39:10.936653 0 45 rule_reporting_margin_product_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",41]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",41]] \N \N +2198 2024-04-13 20:39:10.936653 0 173 access_reporting_margin_product_time_series [["model",257],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",257],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2247 2024-04-13 20:39:14.878373 0 42 act_invoice_out_domain_all [["act_window",213],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain account_invoice f [["act_window",213],["domain",""],["name","All"],["sequence",9999]] \N \N +2199 2024-04-13 20:39:10.936653 0 174 access_reporting_margin_product_time_series_product_admin [["group",9],["model",257],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",9],["model",257],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2200 2024-04-13 20:39:10.936653 0 409 reporting_margin_category_tree_view_tree [["field_childs","children"],["model","stock.reporting.margin.category.tree"],["name","reporting_margin_category_tree"],["type","tree"]] ir.ui.view stock f [["field_childs","children"],["model","stock.reporting.margin.category.tree"],["name","reporting_margin_category_tree"],["type","tree"]] \N \N +2201 2024-04-13 20:39:10.936653 0 208 act_reporting_margin_category_tree [["context_model","stock.reporting.margin.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Margins per Category"],["res_model","stock.reporting.margin.category.tree"]] ir.action.act_window stock f [["context_model","stock.reporting.margin.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Margins per Category"],["res_model","stock.reporting.margin.category.tree"]] \N \N +2202 2024-04-13 20:39:10.936653 0 255 act_reporting_margin_category_tree_view1 [["act_window",208],["sequence",10],["view",409]] ir.action.act_window.view stock f [["act_window",208],["sequence",10],["view",409]] \N \N +2203 2024-04-13 20:39:10.936653 0 209 act_reporting_margin_category_tree_keyword1 [["action",208],["keyword","tree_open"],["model","ir.ui.menu,155"]] ir.action.keyword stock f [["action",208],["keyword","tree_open"],["model","ir.ui.menu,155"]] \N \N +2204 2024-04-13 20:39:10.936653 0 175 access_reporting_margin_category_tree [["model",260],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",260],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2205 2024-04-13 20:39:10.936653 0 176 access_reporting_margin_category_tree_product_admin [["group",9],["model",260],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",9],["model",260],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2206 2024-04-13 20:39:10.936653 0 410 reporting_margin_category_view_list [["inherit",393],["model","stock.reporting.margin.category"],["name","reporting_margin_category_list"],["type",null]] ir.ui.view stock f [["inherit",393],["model","stock.reporting.margin.category"],["name","reporting_margin_category_list"],["type",null]] \N \N +2207 2024-04-13 20:39:10.936653 0 411 reporting_margin_category_view_graph_margin [["inherit",394],["model","stock.reporting.margin.category"],["name","reporting_margin_category_graph_margin"],["type",null]] ir.ui.view stock f [["inherit",394],["model","stock.reporting.margin.category"],["name","reporting_margin_category_graph_margin"],["type",null]] \N \N +2208 2024-04-13 20:39:10.936653 0 412 reporting_margin_category_view_graph_profit [["inherit",395],["model","stock.reporting.margin.category"],["name","reporting_margin_category_graph_profit"],["type",null]] ir.ui.view stock f [["inherit",395],["model","stock.reporting.margin.category"],["name","reporting_margin_category_graph_profit"],["type",null]] \N \N +2209 2024-04-13 20:39:10.936653 0 413 reporting_margin_category_view_graph_amount [["inherit",396],["model","stock.reporting.margin.category"],["name","reporting_margin_category_graph_amount"],["type",null]] ir.ui.view stock f [["inherit",396],["model","stock.reporting.margin.category"],["name","reporting_margin_category_graph_amount"],["type",null]] \N \N +2210 2024-04-13 20:39:10.936653 0 209 act_reporting_margin_category [["context_model","stock.reporting.margin.context"],["domain","[[\\"category\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]"],["name","Margins per Category"],["res_model","stock.reporting.margin.category"]] ir.action.act_window stock f [["context_model","stock.reporting.margin.context"],["domain","[[\\"category\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]"],["name","Margins per Category"],["res_model","stock.reporting.margin.category"]] \N \N +2211 2024-04-13 20:39:10.936653 0 256 act_reporting_margin_category_view1 [["act_window",209],["sequence",10],["view",410]] ir.action.act_window.view stock f [["act_window",209],["sequence",10],["view",410]] \N \N +2212 2024-04-13 20:39:10.936653 0 257 act_reporting_margin_category_view2 [["act_window",209],["sequence",20],["view",411]] ir.action.act_window.view stock f [["act_window",209],["sequence",20],["view",411]] \N \N +2213 2024-04-13 20:39:10.936653 0 258 act_reporting_margin_category_view3 [["act_window",209],["sequence",30],["view",412]] ir.action.act_window.view stock f [["act_window",209],["sequence",30],["view",412]] \N \N +2214 2024-04-13 20:39:10.936653 0 259 act_reporting_margin_category_view4 [["act_window",209],["sequence",40],["view",413]] ir.action.act_window.view stock f [["act_window",209],["sequence",40],["view",413]] \N \N +2215 2024-04-13 20:39:10.936653 0 210 act_reporting_margin_category_keyword1 [["action",209],["keyword","tree_open"],["model","stock.reporting.margin.category.tree,-1"]] ir.action.keyword stock f [["action",209],["keyword","tree_open"],["model","stock.reporting.margin.category.tree,-1"]] \N \N +2216 2024-04-13 20:39:10.936653 0 42 rule_group_reporting_margin_category_companies [["global_p",true],["model",258],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",258],["name","User in companies"]] \N \N +2217 2024-04-13 20:39:10.936653 0 46 rule_reporting_margin_category_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",42]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",42]] \N \N +2218 2024-04-13 20:39:10.936653 0 177 access_reporting_margin_category [["model",258],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",258],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2219 2024-04-13 20:39:10.936653 0 178 access_reporting_margin_category_product_admin [["group",9],["model",258],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",9],["model",258],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2220 2024-04-13 20:39:10.936653 0 414 reporting_margin_category_time_series_view_list [["model","stock.reporting.margin.category.time_series"],["name","reporting_margin_main_time_series_list"],["type","tree"]] ir.ui.view stock f [["model","stock.reporting.margin.category.time_series"],["name","reporting_margin_main_time_series_list"],["type","tree"]] \N \N +2221 2024-04-13 20:39:10.936653 0 415 reporting_margin_category_time_series_view_graph_margin [["model","stock.reporting.margin.category.time_series"],["name","reporting_margin_main_time_series_graph_margin"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.category.time_series"],["name","reporting_margin_main_time_series_graph_margin"],["type","graph"]] \N \N +2406 2024-04-13 20:39:16.958214 0 276 act_purchase_form_view1 [["act_window",226],["sequence",10],["view",466]] ir.action.act_window.view purchase f [["act_window",226],["sequence",10],["view",466]] \N \N +2222 2024-04-13 20:39:10.936653 0 416 reporting_margin_category_time_series_view_graph_profit [["model","stock.reporting.margin.category.time_series"],["name","reporting_margin_main_time_series_graph_profit"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.category.time_series"],["name","reporting_margin_main_time_series_graph_profit"],["type","graph"]] \N \N +2223 2024-04-13 20:39:10.936653 0 417 reporting_margin_category_time_series_view_graph_amount [["model","stock.reporting.margin.category.time_series"],["name","reporting_margin_main_time_series_graph_amount"],["type","graph"]] ir.ui.view stock f [["model","stock.reporting.margin.category.time_series"],["name","reporting_margin_main_time_series_graph_amount"],["type","graph"]] \N \N +2224 2024-04-13 20:39:10.936653 0 210 act_reporting_margin_category_time_series [["context_model","stock.reporting.margin.context"],["domain","[[\\"category\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Margins per Category"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","stock.reporting.margin.category.time_series"]] ir.action.act_window stock f [["context_model","stock.reporting.margin.context"],["domain","[[\\"category\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Margins per Category"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","stock.reporting.margin.category.time_series"]] \N \N +2225 2024-04-13 20:39:10.936653 0 260 act_reporting_margin_category_time_series_view1 [["act_window",210],["sequence",10],["view",414]] ir.action.act_window.view stock f [["act_window",210],["sequence",10],["view",414]] \N \N +2226 2024-04-13 20:39:10.936653 0 261 act_reporting_margin_category_time_series_view2 [["act_window",210],["sequence",20],["view",415]] ir.action.act_window.view stock f [["act_window",210],["sequence",20],["view",415]] \N \N +2227 2024-04-13 20:39:10.936653 0 262 act_reporting_margin_category_time_series_view3 [["act_window",210],["sequence",30],["view",416]] ir.action.act_window.view stock f [["act_window",210],["sequence",30],["view",416]] \N \N +2228 2024-04-13 20:39:10.936653 0 263 act_reporting_margin_category_time_series_view4 [["act_window",210],["sequence",40],["view",417]] ir.action.act_window.view stock f [["act_window",210],["sequence",40],["view",417]] \N \N +2229 2024-04-13 20:39:10.936653 0 211 act_reporting_margin_category_time_series_keyword1 [["action",210],["keyword","tree_open"],["model","stock.reporting.margin.category,-1"]] ir.action.keyword stock f [["action",210],["keyword","tree_open"],["model","stock.reporting.margin.category,-1"]] \N \N +2230 2024-04-13 20:39:10.936653 0 43 rule_group_reporting_margin_category_time_series_companies [["global_p",true],["model",259],["name","User in companies"]] ir.rule.group stock f [["global_p",true],["model",259],["name","User in companies"]] \N \N +2231 2024-04-13 20:39:10.936653 0 47 rule_reporting_margin_category_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",43]] ir.rule stock f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",43]] \N \N +2232 2024-04-13 20:39:10.936653 0 179 access_reporting_margin_category_time_series [["model",259],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access stock f [["model",259],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2233 2024-04-13 20:39:10.936653 0 180 access_reporting_margin_category_time_series_product_admin [["group",9],["model",259],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access stock f [["group",9],["model",259],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2234 2024-04-13 20:39:14.878373 0 156 menu_invoices [["icon","tryton-folder"],["name","Invoices"],["parent",74],["sequence",20]] ir.ui.menu account_invoice f [["icon","tryton-folder"],["name","Invoices"],["parent",74],["sequence",20]] \N \N +2235 2024-04-13 20:39:14.878373 0 211 wizard_pay [["model","account.invoice"],["name","Pay Invoice"],["wiz_name","account.invoice.pay"]] ir.action.wizard account_invoice f [["model","account.invoice"],["name","Pay Invoice"],["wiz_name","account.invoice.pay"]] \N \N +2236 2024-04-13 20:39:14.878373 0 418 invoice_view_form [["model","account.invoice"],["name","invoice_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice"],["name","invoice_form"],["type","form"]] \N \N +2237 2024-04-13 20:39:14.878373 0 419 invoice_view_tree [["model","account.invoice"],["name","invoice_tree"],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice"],["name","invoice_tree"],["type","tree"]] \N \N +2238 2024-04-13 20:39:14.878373 0 212 act_invoice_form [["name","Invoices"],["res_model","account.invoice"]] ir.action.act_window account_invoice f [["name","Invoices"],["res_model","account.invoice"]] \N \N +2239 2024-04-13 20:39:14.878373 0 264 act_invoice_form_view1 [["act_window",212],["sequence",10],["view",419]] ir.action.act_window.view account_invoice f [["act_window",212],["sequence",10],["view",419]] \N \N +2240 2024-04-13 20:39:14.878373 0 265 act_invoice_form_view2 [["act_window",212],["sequence",20],["view",418]] ir.action.act_window.view account_invoice f [["act_window",212],["sequence",20],["view",418]] \N \N +2241 2024-04-13 20:39:14.878373 0 213 act_invoice_out_form [["context","{\\"type\\": \\"out\\"}"],["domain","[[\\"type\\", \\"=\\", \\"out\\"]]"],["name","Customer Invoices"],["res_model","account.invoice"],["search_value",""]] ir.action.act_window account_invoice f [["context","{\\"type\\": \\"out\\"}"],["domain","[[\\"type\\", \\"=\\", \\"out\\"]]"],["name","Customer Invoices"],["res_model","account.invoice"],["search_value",""]] \N \N +2242 2024-04-13 20:39:14.878373 0 266 act_invoice_out_form_view1 [["act_window",213],["sequence",10],["view",419]] ir.action.act_window.view account_invoice f [["act_window",213],["sequence",10],["view",419]] \N \N +2243 2024-04-13 20:39:14.878373 0 267 act_invoice_out_form_view2 [["act_window",213],["sequence",20],["view",418]] ir.action.act_window.view account_invoice f [["act_window",213],["sequence",20],["view",418]] \N \N +2244 2024-04-13 20:39:14.878373 0 39 act_invoice_out_domain_draft [["act_window",213],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain account_invoice f [["act_window",213],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2245 2024-04-13 20:39:14.878373 0 40 act_invoice_out_domain_validated [["act_window",213],["count",true],["domain","[[\\"state\\", \\"=\\", \\"validated\\"]]"],["name","Validated"],["sequence",20]] ir.action.act_window.domain account_invoice f [["act_window",213],["count",true],["domain","[[\\"state\\", \\"=\\", \\"validated\\"]]"],["name","Validated"],["sequence",20]] \N \N +2246 2024-04-13 20:39:14.878373 0 41 act_invoice_out_domain_posted [["act_window",213],["count",true],["domain","[[\\"state\\", \\"=\\", \\"posted\\"]]"],["name","Posted"],["sequence",30]] ir.action.act_window.domain account_invoice f [["act_window",213],["count",true],["domain","[[\\"state\\", \\"=\\", \\"posted\\"]]"],["name","Posted"],["sequence",30]] \N \N +2407 2024-04-13 20:39:16.958214 0 277 act_purchase_form_view2 [["act_window",226],["sequence",20],["view",465]] ir.action.act_window.view purchase f [["act_window",226],["sequence",20],["view",465]] \N \N +2248 2024-04-13 20:39:14.878373 0 157 menu_invoice_out_form [["action","ir.action.act_window,213"],["icon","tryton-list"],["name","Customer Invoices"],["parent",156],["sequence",10]] ir.ui.menu account_invoice f [["action","ir.action.act_window,213"],["icon","tryton-list"],["name","Customer Invoices"],["parent",156],["sequence",10]] \N \N +2249 2024-04-13 20:39:14.878373 0 214 act_invoice_in_form [["context","{\\"type\\": \\"in\\"}"],["domain","[[\\"type\\", \\"=\\", \\"in\\"]]"],["name","Supplier Invoices"],["res_model","account.invoice"],["search_value",""]] ir.action.act_window account_invoice f [["context","{\\"type\\": \\"in\\"}"],["domain","[[\\"type\\", \\"=\\", \\"in\\"]]"],["name","Supplier Invoices"],["res_model","account.invoice"],["search_value",""]] \N \N +2250 2024-04-13 20:39:14.878373 0 268 act_invoice_in_form_view1 [["act_window",214],["sequence",10],["view",419]] ir.action.act_window.view account_invoice f [["act_window",214],["sequence",10],["view",419]] \N \N +2251 2024-04-13 20:39:14.878373 0 269 act_invoice_in_form_view2 [["act_window",214],["sequence",20],["view",418]] ir.action.act_window.view account_invoice f [["act_window",214],["sequence",20],["view",418]] \N \N +2252 2024-04-13 20:39:14.878373 0 43 act_invoice_in_domain_draft [["act_window",214],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain account_invoice f [["act_window",214],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2253 2024-04-13 20:39:14.878373 0 44 act_invoice_in_domain_validated [["act_window",214],["count",true],["domain","[[\\"state\\", \\"=\\", \\"validated\\"]]"],["name","Validated"],["sequence",20]] ir.action.act_window.domain account_invoice f [["act_window",214],["count",true],["domain","[[\\"state\\", \\"=\\", \\"validated\\"]]"],["name","Validated"],["sequence",20]] \N \N +2254 2024-04-13 20:39:14.878373 0 45 act_invoice_in_domain_posted [["act_window",214],["count",true],["domain","[[\\"state\\", \\"=\\", \\"posted\\"]]"],["name","Posted"],["sequence",30]] ir.action.act_window.domain account_invoice f [["act_window",214],["count",true],["domain","[[\\"state\\", \\"=\\", \\"posted\\"]]"],["name","Posted"],["sequence",30]] \N \N +2255 2024-04-13 20:39:14.878373 0 46 act_invoice_in_domain_all [["act_window",214],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain account_invoice f [["act_window",214],["domain",""],["name","All"],["sequence",9999]] \N \N +2256 2024-04-13 20:39:14.878373 0 158 menu_invoice_in_form [["action","ir.action.act_window,214"],["icon","tryton-list"],["name","Supplier Invoices"],["parent",156],["sequence",10]] ir.ui.menu account_invoice f [["action","ir.action.act_window,214"],["icon","tryton-list"],["name","Supplier Invoices"],["parent",156],["sequence",10]] \N \N +2257 2024-04-13 20:39:14.878373 0 215 act_invoice_relate [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Invoices"],["res_model","account.invoice"]] ir.action.act_window account_invoice f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Invoices"],["res_model","account.invoice"]] \N \N +2258 2024-04-13 20:39:14.878373 0 270 act_invoice_relate_view1 [["act_window",215],["sequence",10],["view",419]] ir.action.act_window.view account_invoice f [["act_window",215],["sequence",10],["view",419]] \N \N +2259 2024-04-13 20:39:14.878373 0 271 act_invoice_relate_view2 [["act_window",215],["sequence",20],["view",418]] ir.action.act_window.view account_invoice f [["act_window",215],["sequence",20],["view",418]] \N \N +2260 2024-04-13 20:39:14.878373 0 47 act_invoice_relate_pending [["act_window",215],["count",true],["domain","[[\\"state\\", \\"not in\\", [\\"paid\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] ir.action.act_window.domain account_invoice f [["act_window",215],["count",true],["domain","[[\\"state\\", \\"not in\\", [\\"paid\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] \N \N +2261 2024-04-13 20:39:14.878373 0 48 act_invoice_relate_paid [["act_window",215],["count",true],["domain","[[\\"state\\", \\"=\\", \\"paid\\"]]"],["name","Paid"],["sequence",20]] ir.action.act_window.domain account_invoice f [["act_window",215],["count",true],["domain","[[\\"state\\", \\"=\\", \\"paid\\"]]"],["name","Paid"],["sequence",20]] \N \N +2262 2024-04-13 20:39:14.878373 0 49 act_invoice_relate_all [["act_window",215],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain account_invoice f [["act_window",215],["domain",""],["name","All"],["sequence",9999]] \N \N +2263 2024-04-13 20:39:14.878373 0 214 act_invoice_relate_keyword_party [["action",215],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword account_invoice f [["action",215],["keyword","form_relate"],["model","party.party,-1"]] \N \N +2264 2024-04-13 20:39:14.878373 0 181 access_invoice [["model",266],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access account_invoice f [["model",266],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2265 2024-04-13 20:39:14.878373 0 182 access_invoice_account [["group",6],["model",266],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account_invoice f [["group",6],["model",266],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2266 2024-04-13 20:39:14.878373 0 72 invoice_cancel_button [["confirm","Are you sure you want to cancel the invoices?"],["help","Cancel the invoice"],["model",266],["name","cancel"],["string","Cancel"]] ir.model.button account_invoice f [["confirm","Are you sure you want to cancel the invoices?"],["help","Cancel the invoice"],["model",266],["name","cancel"],["string","Cancel"]] \N \N +2267 2024-04-13 20:39:14.878373 0 73 invoice_draft_button [["model",266],["name","draft"],["string","Draft"]] ir.model.button account_invoice f [["model",266],["name","draft"],["string","Draft"]] \N \N +2268 2024-04-13 20:39:14.878373 0 74 invoice_validate_button [["help","Also known as Pro Forma"],["model",266],["name","validate_invoice"],["string","Validate"]] ir.model.button account_invoice f [["help","Also known as Pro Forma"],["model",266],["name","validate_invoice"],["string","Validate"]] \N \N +2269 2024-04-13 20:39:14.878373 0 75 invoice_post_button [["confirm","Are you sure you want to post the invoices?"],["model",266],["name","post"],["string","Post"]] ir.model.button account_invoice f [["confirm","Are you sure you want to post the invoices?"],["model",266],["name","post"],["string","Post"]] \N \N +2270 2024-04-13 20:39:14.878373 0 76 invoice_pay_button [["model",266],["name","pay"],["string","Pay"]] ir.model.button account_invoice f [["model",266],["name","pay"],["string","Pay"]] \N \N +2271 2024-04-13 20:39:14.878373 0 77 invoice_reschedule_lines_to_pay_button [["model",266],["name","reschedule_lines_to_pay"],["string","Reschedule"]] ir.model.button account_invoice f [["model",266],["name","reschedule_lines_to_pay"],["string","Reschedule"]] \N \N +2272 2024-04-13 20:39:14.878373 0 78 invoice_delegate_lines_to_pay_button [["model",266],["name","delegate_lines_to_pay"],["string","Modify Payee"]] ir.model.button account_invoice f [["model",266],["name","delegate_lines_to_pay"],["string","Modify Payee"]] \N \N +2273 2024-04-13 20:39:14.878373 0 79 invoice_process_button [["model",266],["name","process"],["string","Process"]] ir.model.button account_invoice f [["model",266],["name","process"],["string","Process"]] \N \N +2274 2024-04-13 20:39:14.878373 0 14 invoice_process_button_group_account_admin [["button",79],["group",8]] ir.model.button-res.group account_invoice f [["button",79],["group",8]] \N \N +2275 2024-04-13 20:39:14.878373 0 216 refresh_invoice_report_wizard [["model","account.invoice"],["name","Invoice (revised)"],["wiz_name","account.invoice.refresh_invoice_report"]] ir.action.wizard account_invoice f [["model","account.invoice"],["name","Invoice (revised)"],["wiz_name","account.invoice.refresh_invoice_report"]] \N \N +2276 2024-04-13 20:39:14.878373 0 215 refresh_invoice_report_keyword [["action",216],["keyword","form_print"],["model","account.invoice,-1"]] ir.action.keyword account_invoice f [["action",216],["keyword","form_print"],["model","account.invoice,-1"]] \N \N +2277 2024-04-13 20:39:14.878373 0 16 refresh_invoice_report-group_account_admin [["action",216],["group",8]] ir.action-res.group account_invoice f [["action",216],["group",8]] \N \N +2278 2024-04-13 20:39:14.878373 0 420 invoice_report_revision_view_list [["model","account.invoice.report.revision"],["name","invoice_report_revision_list"],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.report.revision"],["name","invoice_report_revision_list"],["type","tree"]] \N \N +2279 2024-04-13 20:39:14.878373 0 421 invoice_report_revision_view_form [["model","account.invoice.report.revision"],["name","invoice_report_revision_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.report.revision"],["name","invoice_report_revision_form"],["type","form"]] \N \N +2280 2024-04-13 20:39:14.878373 0 183 access_invoice_report_revision [["model",276],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account_invoice f [["model",276],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2281 2024-04-13 20:39:14.878373 0 217 report_invoice [["model","account.invoice"],["name","Invoice"],["report","account_invoice/invoice.fodt"],["report_name","account.invoice"],["single",true]] ir.action.report account_invoice f [["model","account.invoice"],["name","Invoice"],["report","account_invoice/invoice.fodt"],["report_name","account.invoice"],["single",true]] \N \N +2282 2024-04-13 20:39:14.878373 0 216 report_invoice_keyword [["action",217],["keyword","form_print"],["model","account.invoice,-1"]] ir.action.keyword account_invoice f [["action",217],["keyword","form_print"],["model","account.invoice,-1"]] \N \N +2283 2024-04-13 20:39:14.878373 0 13 sequence_type_account_invoice [["name","Invoice"]] ir.sequence.type account_invoice f [["name","Invoice"]] \N \N +2284 2024-04-13 20:39:14.878373 0 25 sequence_type_account_invoice_group_admin [["group",1],["sequence_type",13]] ir.sequence.type-res.group account_invoice f [["group",1],["sequence_type",13]] \N \N +2285 2024-04-13 20:39:14.878373 0 26 sequence_type_account_invoice_group_account_admin [["group",8],["sequence_type",13]] ir.sequence.type-res.group account_invoice f [["group",8],["sequence_type",13]] \N \N +2286 2024-04-13 20:39:14.878373 0 422 invoice_line_view_form [["model","account.invoice.line"],["name","invoice_line_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.line"],["name","invoice_line_form"],["type","form"]] \N \N +2287 2024-04-13 20:39:14.878373 0 423 invoice_line_view_tree [["model","account.invoice.line"],["name","invoice_line_tree"],["priority",10],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.line"],["name","invoice_line_tree"],["priority",10],["type","tree"]] \N \N +2288 2024-04-13 20:39:14.878373 0 424 invoice_line_view_tree_sequence [["model","account.invoice.line"],["name","invoice_line_tree_sequence"],["priority",20],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.line"],["name","invoice_line_tree_sequence"],["priority",20],["type","tree"]] \N \N +2289 2024-04-13 20:39:14.878373 0 184 access_invoice_line [["model",270],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access account_invoice f [["model",270],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2290 2024-04-13 20:39:14.878373 0 185 access_invoice_line_account [["group",6],["model",270],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account_invoice f [["group",6],["model",270],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2291 2024-04-13 20:39:14.878373 0 425 invoice_tax_view_form [["model","account.invoice.tax"],["name","invoice_tax_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.tax"],["name","invoice_tax_form"],["type","form"]] \N \N +2292 2024-04-13 20:39:14.878373 0 426 invoice_tax_view_tree [["model","account.invoice.tax"],["name","invoice_tax_tree"],["priority",10],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.tax"],["name","invoice_tax_tree"],["priority",10],["type","tree"]] \N \N +2293 2024-04-13 20:39:14.878373 0 427 invoice_tax_view_tree_sequence [["model","account.invoice.tax"],["name","invoice_tax_tree_sequence"],["priority",20],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.tax"],["name","invoice_tax_tree_sequence"],["priority",20],["type","tree"]] \N \N +2294 2024-04-13 20:39:14.878373 0 428 pay_start_view_form [["model","account.invoice.pay.start"],["name","pay_start_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.pay.start"],["name","pay_start_form"],["type","form"]] \N \N +2295 2024-04-13 20:39:14.878373 0 429 pay_ask_view_form [["model","account.invoice.pay.ask"],["name","pay_ask_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.pay.ask"],["name","pay_ask_form"],["type","form"]] \N \N +2296 2024-04-13 20:39:14.878373 0 430 payment_method_view_form [["model","account.invoice.payment.method"],["name","payment_method_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.payment.method"],["name","payment_method_form"],["type","form"]] \N \N +2297 2024-04-13 20:39:14.878373 0 431 payment_method_view_list [["model","account.invoice.payment.method"],["name","payment_method_tree"],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.payment.method"],["name","payment_method_tree"],["type","tree"]] \N \N +2298 2024-04-13 20:39:14.878373 0 218 act_payment_method_form [["name","Invoice Payment Methods"],["res_model","account.invoice.payment.method"]] ir.action.act_window account_invoice f [["name","Invoice Payment Methods"],["res_model","account.invoice.payment.method"]] \N \N +2299 2024-04-13 20:39:14.878373 0 272 act_payment_method_form_view1 [["act_window",218],["sequence",10],["view",431]] ir.action.act_window.view account_invoice f [["act_window",218],["sequence",10],["view",431]] \N \N +2300 2024-04-13 20:39:14.878373 0 273 act_payment_method_form_view2 [["act_window",218],["sequence",20],["view",430]] ir.action.act_window.view account_invoice f [["act_window",218],["sequence",20],["view",430]] \N \N +2301 2024-04-13 20:39:14.878373 0 159 menu_payment_method_form [["action","ir.action.act_window,218"],["icon","tryton-list"],["name","Invoice Payment Methods"],["parent",102],["sequence",50]] ir.ui.menu account_invoice f [["action","ir.action.act_window,218"],["icon","tryton-list"],["name","Invoice Payment Methods"],["parent",102],["sequence",50]] \N \N +2302 2024-04-13 20:39:14.878373 0 44 rule_group_payment_method_companies [["global_p",true],["model",280],["name","User in companies"]] ir.rule.group account_invoice f [["global_p",true],["model",280],["name","User in companies"]] \N \N +2303 2024-04-13 20:39:14.878373 0 48 rule_payment_method_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",44]] ir.rule account_invoice f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",44]] \N \N +2304 2024-04-13 20:39:14.878373 0 186 access_payment_method [["model",280],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account_invoice f [["model",280],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2305 2024-04-13 20:39:14.878373 0 187 access_payment_method_account_admin [["group",8],["model",280],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account_invoice f [["group",8],["model",280],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2306 2024-04-13 20:39:14.878373 0 432 credit_start_view_form [["model","account.invoice.credit.start"],["name","credit_start_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.credit.start"],["name","credit_start_form"],["type","form"]] \N \N +2307 2024-04-13 20:39:14.878373 0 219 credit [["model","account.invoice"],["name","Credit"],["wiz_name","account.invoice.credit"]] ir.action.wizard account_invoice f [["model","account.invoice"],["name","Credit"],["wiz_name","account.invoice.credit"]] \N \N +2308 2024-04-13 20:39:14.878373 0 218 credit_keyword [["action",219],["keyword","form_action"],["model","account.invoice,-1"]] ir.action.keyword account_invoice f [["action",219],["keyword","form_action"],["model","account.invoice,-1"]] \N \N +2309 2024-04-13 20:39:14.878373 0 45 rule_group_invoice_companies [["global_p",true],["model",266],["name","User in companies"]] ir.rule.group account_invoice f [["global_p",true],["model",266],["name","User in companies"]] \N \N +2310 2024-04-13 20:39:14.878373 0 49 rule_invoice_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",45]] ir.rule account_invoice f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",45]] \N \N +2311 2024-04-13 20:39:14.878373 0 46 rule_group_invoice_line_companies [["global_p",true],["model",270],["name","User in companies"]] ir.rule.group account_invoice f [["global_p",true],["model",270],["name","User in companies"]] \N \N +2312 2024-04-13 20:39:14.878373 0 50 rule_invoice_line_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",46]] ir.rule account_invoice f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",46]] \N \N +2313 2024-04-13 20:39:14.878373 0 220 act_reschedule_lines_to_pay_wizard [["model","account.invoice"],["name","Reschedule Lines to Pay"],["wiz_name","account.invoice.lines_to_pay.reschedule"]] ir.action.wizard account_invoice f [["model","account.invoice"],["name","Reschedule Lines to Pay"],["wiz_name","account.invoice.lines_to_pay.reschedule"]] \N \N +2314 2024-04-13 20:39:14.878373 0 221 act_delegate_lines_to_pay_wizard [["model","account.invoice"],["name","Delegate Lines to Pay"],["wiz_name","account.invoice.lines_to_pay.delegate"]] ir.action.wizard account_invoice f [["model","account.invoice"],["name","Delegate Lines to Pay"],["wiz_name","account.invoice.lines_to_pay.delegate"]] \N \N +2315 2024-04-13 20:39:14.878373 0 160 menu_payment_terms_configuration [["icon","tryton-folder"],["name","Payment Terms"],["parent",75],["sequence",50]] ir.ui.menu account_invoice f [["icon","tryton-folder"],["name","Payment Terms"],["parent",75],["sequence",50]] \N \N +2316 2024-04-13 20:39:14.878373 0 433 payment_term_view_form [["model","account.invoice.payment_term"],["name","payment_term_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term"],["name","payment_term_form"],["type","form"]] \N \N +2317 2024-04-13 20:39:14.878373 0 434 payment_term_view_tree [["model","account.invoice.payment_term"],["name","payment_term_tree"],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term"],["name","payment_term_tree"],["type","tree"]] \N \N +2318 2024-04-13 20:39:14.878373 0 222 act_payment_term_form [["name","Payment Terms"],["res_model","account.invoice.payment_term"]] ir.action.act_window account_invoice f [["name","Payment Terms"],["res_model","account.invoice.payment_term"]] \N \N +2319 2024-04-13 20:39:14.878373 0 274 act_payment_term_form_view1 [["act_window",222],["sequence",10],["view",434]] ir.action.act_window.view account_invoice f [["act_window",222],["sequence",10],["view",434]] \N \N +2320 2024-04-13 20:39:14.878373 0 275 act_payment_term_form_view2 [["act_window",222],["sequence",20],["view",433]] ir.action.act_window.view account_invoice f [["act_window",222],["sequence",20],["view",433]] \N \N +2321 2024-04-13 20:39:14.878373 0 161 menu_payment_term_form [["action","ir.action.act_window,222"],["icon","tryton-list"],["name","Payment Terms"],["parent",160],["sequence",10]] ir.ui.menu account_invoice f [["action","ir.action.act_window,222"],["icon","tryton-list"],["name","Payment Terms"],["parent",160],["sequence",10]] \N \N +2322 2024-04-13 20:39:14.878373 0 188 access_payment_term [["model",261],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account_invoice f [["model",261],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2323 2024-04-13 20:39:14.878373 0 189 access_payment_term_account_admin [["group",8],["model",261],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account_invoice f [["group",8],["model",261],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2324 2024-04-13 20:39:14.878373 0 435 payment_term_line_view_list [["model","account.invoice.payment_term.line"],["name","payment_term_line_list"],["priority",10],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term.line"],["name","payment_term_line_list"],["priority",10],["type","tree"]] \N \N +2325 2024-04-13 20:39:14.878373 0 436 payment_term_line_view_list_sequence [["model","account.invoice.payment_term.line"],["name","payment_term_line_list_sequence"],["priority",20],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term.line"],["name","payment_term_line_list_sequence"],["priority",20],["type","tree"]] \N \N +2326 2024-04-13 20:39:14.878373 0 437 payment_term_line_view_form [["model","account.invoice.payment_term.line"],["name","payment_term_line_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term.line"],["name","payment_term_line_form"],["type","form"]] \N \N +2327 2024-04-13 20:39:14.878373 0 438 payment_term_line_relativedelta_view_list [["model","account.invoice.payment_term.line.delta"],["name","payment_term_line_relativedelta_list"],["priority",10],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term.line.delta"],["name","payment_term_line_relativedelta_list"],["priority",10],["type","tree"]] \N \N +2328 2024-04-13 20:39:14.878373 0 439 payment_term_line_relativedelta_view_list_sequence [["model","account.invoice.payment_term.line.delta"],["name","payment_term_line_relativedelta_list_sequence"],["priority",20],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term.line.delta"],["name","payment_term_line_relativedelta_list_sequence"],["priority",20],["type","tree"]] \N \N +2329 2024-04-13 20:39:14.878373 0 440 payment_term_line_relativedelta_view_form [["model","account.invoice.payment_term.line.delta"],["name","payment_term_line_relativedelta_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term.line.delta"],["name","payment_term_line_relativedelta_form"],["type","form"]] \N \N +2330 2024-04-13 20:39:14.878373 0 223 wizard_payment_term_test [["name","Test Payment Term"],["wiz_name","account.invoice.payment_term.test"]] ir.action.wizard account_invoice f [["name","Test Payment Term"],["wiz_name","account.invoice.payment_term.test"]] \N \N +2331 2024-04-13 20:39:14.878373 0 220 wizard_payment_term_test_keyword1 [["action",223],["keyword","form_action"],["model","account.invoice.payment_term,-1"]] ir.action.keyword account_invoice f [["action",223],["keyword","form_action"],["model","account.invoice.payment_term,-1"]] \N \N +2332 2024-04-13 20:39:14.878373 0 162 menu_payment_term_test [["action","ir.action.wizard,223"],["icon","tryton-launch"],["name","Test Payment Term"],["parent",160],["sequence",90]] ir.ui.menu account_invoice f [["action","ir.action.wizard,223"],["icon","tryton-launch"],["name","Test Payment Term"],["parent",160],["sequence",90]] \N \N +2333 2024-04-13 20:39:14.878373 0 441 payment_term_test_view_form [["model","account.invoice.payment_term.test"],["name","payment_term_test_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term.test"],["name","payment_term_test_form"],["type","form"]] \N \N +2334 2024-04-13 20:39:14.878373 0 442 payment_term_test_result_view_list [["model","account.invoice.payment_term.test.result"],["name","payment_term_test_result_list"],["type","tree"]] ir.ui.view account_invoice f [["model","account.invoice.payment_term.test.result"],["name","payment_term_test_result_list"],["type","tree"]] \N \N +2335 2024-04-13 20:39:14.878373 0 443 address_view_tree [["inherit",153],["model","party.address"],["name","address_tree"]] ir.ui.view account_invoice f [["inherit",153],["model","party.address"],["name","address_tree"]] \N \N +2336 2024-04-13 20:39:14.878373 0 444 address_view_form [["inherit",155],["model","party.address"],["name","address_form"]] ir.ui.view account_invoice f [["inherit",155],["model","party.address"],["name","address_form"]] \N \N +2337 2024-04-13 20:39:14.878373 0 445 address_view_form_simple [["inherit",156],["model","party.address"],["name","address_form"]] ir.ui.view account_invoice f [["inherit",156],["model","party.address"],["name","address_form"]] \N \N +2338 2024-04-13 20:39:14.878373 0 446 address_view_tree_sequence [["inherit",154],["model","party.address"],["name","address_tree_sequence"]] ir.ui.view account_invoice f [["inherit",154],["model","party.address"],["name","address_tree_sequence"]] \N \N +2339 2024-04-13 20:39:14.878373 0 447 contact_mechanism_view_tree [["inherit",161],["model","party.contact_mechanism"],["name","contact_mechanism_tree"]] ir.ui.view account_invoice f [["inherit",161],["model","party.contact_mechanism"],["name","contact_mechanism_tree"]] \N \N +2340 2024-04-13 20:39:14.878373 0 448 contact_mechanism_view_form [["inherit",163],["model","party.contact_mechanism"],["name","contact_mechanism_form"]] ir.ui.view account_invoice f [["inherit",163],["model","party.contact_mechanism"],["name","contact_mechanism_form"]] \N \N +2341 2024-04-13 20:39:14.878373 0 449 contact_mechanism_view_tree_sequence [["inherit",162],["model","party.contact_mechanism"],["name","contact_mechanism_tree_sequence"]] ir.ui.view account_invoice f [["inherit",162],["model","party.contact_mechanism"],["name","contact_mechanism_tree_sequence"]] \N \N +2342 2024-04-13 20:39:14.878373 0 450 party_view_form [["inherit",143],["model","party.party"],["name","party_form"]] ir.ui.view account_invoice f [["inherit",143],["model","party.party"],["name","party_form"]] \N \N +2343 2024-04-13 20:39:14.878373 0 21 invoice_icon [["name","tryton-invoice"],["path","icons/tryton-invoice.svg"]] ir.ui.icon account_invoice f [["name","tryton-invoice"],["path","icons/tryton-invoice.svg"]] \N \N +2344 2024-04-13 20:39:14.878373 0 451 configuration_view_form [["inherit",212],["model","account.configuration"],["name","configuration_form"]] ir.ui.view account_invoice f [["inherit",212],["model","account.configuration"],["name","configuration_form"]] \N \N +2345 2024-04-13 20:39:14.878373 0 452 fiscalyear_view_form [["inherit",215],["model","account.fiscalyear"],["name","fiscalyear_form"]] ir.ui.view account_invoice f [["inherit",215],["model","account.fiscalyear"],["name","fiscalyear_form"]] \N \N +2346 2024-04-13 20:39:14.878373 0 453 move_line_view_form [["inherit",235],["model","account.move.line"],["name","move_line_form"]] ir.ui.view account_invoice f [["inherit",235],["model","account.move.line"],["name","move_line_form"]] \N \N +2347 2024-04-13 20:39:14.878373 0 454 move_line_view_form_move [["inherit",236],["model","account.move.line"],["name","move_line_form"]] ir.ui.view account_invoice f [["inherit",236],["model","account.move.line"],["name","move_line_form"]] \N \N +2348 2024-04-13 20:39:14.878373 0 455 move_line_view_list [["inherit",237],["model","account.move.line"],["name","move_line_list"]] ir.ui.view account_invoice f [["inherit",237],["model","account.move.line"],["name","move_line_list"]] \N \N +2349 2024-04-13 20:39:14.878373 0 456 move_line_view_list_move [["inherit",238],["model","account.move.line"],["name","move_line_list"]] ir.ui.view account_invoice f [["inherit",238],["model","account.move.line"],["name","move_line_list"]] \N \N +2350 2024-04-13 20:39:14.878373 0 457 move_line_view_list_payment [["model","account.move.line"],["name","move_line_list_payment"],["priority",20],["type","tree"]] ir.ui.view account_invoice f [["model","account.move.line"],["name","move_line_list_payment"],["priority",20],["type","tree"]] \N \N +2351 2024-04-13 20:39:14.878373 0 458 move_line_view_list_to_pay [["model","account.move.line"],["name","move_line_list_to_pay"],["priority",20],["type","tree"]] ir.ui.view account_invoice f [["model","account.move.line"],["name","move_line_list_to_pay"],["priority",20],["type","tree"]] \N \N +2352 2024-04-13 20:39:14.878373 0 459 invoice_sequence_view_form [["model","account.fiscalyear.invoice_sequence"],["name","invoice_sequence_form"],["type","form"]] ir.ui.view account_invoice f [["model","account.fiscalyear.invoice_sequence"],["name","invoice_sequence_form"],["type","form"]] \N \N +2353 2024-04-13 20:39:14.878373 0 460 invoice_sequence_view_list [["model","account.fiscalyear.invoice_sequence"],["name","invoice_sequence_list"],["type","tree"]] ir.ui.view account_invoice f [["model","account.fiscalyear.invoice_sequence"],["name","invoice_sequence_list"],["type","tree"]] \N \N +2354 2024-04-13 20:39:14.878373 0 461 invoice_sequence_view_list_sequence [["model","account.fiscalyear.invoice_sequence"],["name","invoice_sequence_list_sequence"],["priority",20],["type","tree"]] ir.ui.view account_invoice f [["model","account.fiscalyear.invoice_sequence"],["name","invoice_sequence_list_sequence"],["priority",20],["type","tree"]] \N \N +2355 2024-04-13 20:39:14.878373 0 190 access_invoice_sequence [["model",279],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account_invoice f [["model",279],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2356 2024-04-13 20:39:14.878373 0 191 access_invoice_sequence_admin [["group",8],["model",279],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access account_invoice f [["group",8],["model",279],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2357 2024-04-13 20:39:14.878373 0 47 rule_group_invoice_sequence_companies [["global_p",true],["model",279],["name","User in companies"]] ir.rule.group account_invoice f [["global_p",true],["model",279],["name","User in companies"]] \N \N +2358 2024-04-13 20:39:14.878373 0 51 rule_invoice_sequence_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",47]] ir.rule account_invoice f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",47]] \N \N +2359 2024-04-13 20:39:14.878373 0 462 company_view_form [["inherit",166],["model","company.company"],["name","company_form"]] ir.ui.view account_invoice f [["inherit",166],["model","company.company"],["name","company_form"]] \N \N +2360 2024-04-13 20:39:14.878373 0 294 msg_payment_term_missing_last_remainder [["text","To save payment term \\"%(payment_term)s\\", you must append a last remainder line."]] ir.message account_invoice f [["text","To save payment term \\"%(payment_term)s\\", you must append a last remainder line."]] \N \N +2361 2024-04-13 20:39:14.878373 0 295 msg_payment_term_missing_remainder [["text","To compute terms, you must append a remainder line on payment term \\"%(payment_term)s\\"."]] ir.message account_invoice f [["text","To compute terms, you must append a remainder line on payment term \\"%(payment_term)s\\"."]] \N \N +2362 2024-04-13 20:39:14.878373 0 296 msg_payment_term_invalid_ratio_divisor [["text","The ratio and divisor are not consistent on line \\"%(line)s\\"."]] ir.message account_invoice f [["text","The ratio and divisor are not consistent on line \\"%(line)s\\"."]] \N \N +2363 2024-04-13 20:39:14.878373 0 297 msg_erase_party_pending_invoice [["text","You cannot erase party \\"%(party)s\\" while they have pending invoices with company \\"%(company)s\\"."]] ir.message account_invoice f [["text","You cannot erase party \\"%(party)s\\" while they have pending invoices with company \\"%(company)s\\"."]] \N \N +2364 2024-04-13 20:39:14.878373 0 298 msg_invoice_tax_invalid [["text","The taxes on invoice \\"%(invoice)s\\" are not valid, you must save it again to force them to be recalculated."]] ir.message account_invoice f [["text","The taxes on invoice \\"%(invoice)s\\" are not valid, you must save it again to force them to be recalculated."]] \N \N +2365 2024-04-13 20:39:14.878373 0 299 msg_invoice_no_sequence [["text","To post invoice \\"%(invoice)s\\", you must define a sequence on fiscal year \\"%(fiscalyear)s\\"."]] ir.message account_invoice f [["text","To post invoice \\"%(invoice)s\\", you must define a sequence on fiscal year \\"%(fiscalyear)s\\"."]] \N \N +2366 2024-04-13 20:39:14.878373 0 300 msg_invoice_number_after [["text","To number the invoice \\"%(invoice)s\\", you must set an invoice date after \\"%(date)s\\" because the sequence \\"%(sequence)s\\" has already been used for invoice \\"%(after_invoice)s\\"."]] ir.message account_invoice f [["text","To number the invoice \\"%(invoice)s\\", you must set an invoice date after \\"%(date)s\\" because the sequence \\"%(sequence)s\\" has already been used for invoice \\"%(after_invoice)s\\"."]] \N \N +2367 2024-04-13 20:39:14.878373 0 301 msg_invoice_modify [["text","You cannot modify invoice \\"%(invoice)s\\" because it is posted, paid or cancelled."]] ir.message account_invoice f [["text","You cannot modify invoice \\"%(invoice)s\\" because it is posted, paid or cancelled."]] \N \N +2368 2024-04-13 20:39:14.878373 0 302 msg_invoice_delete_cancel [["text","To delete invoice \\"%(invoice)s\\" you must cancel it."]] ir.message account_invoice f [["text","To delete invoice \\"%(invoice)s\\" you must cancel it."]] \N \N +2369 2024-04-13 20:39:14.878373 0 303 msg_invoice_delete_numbered [["text","You cannot delete invoice \\"%(invoice)s\\" because it has a number."]] ir.message account_invoice f [["text","You cannot delete invoice \\"%(invoice)s\\" because it has a number."]] \N \N +2370 2024-04-13 20:39:14.878373 0 304 msg_invoice_customer_cancel_move [["text","You cannot cancel customer invoice \\"%(invoice)s\\" because it is posted and company setup does not allow it."]] ir.message account_invoice f [["text","You cannot cancel customer invoice \\"%(invoice)s\\" because it is posted and company setup does not allow it."]] \N \N +2371 2024-04-13 20:39:14.878373 0 305 msg_invoice_payment_lines_greater_amount [["text","Payment lines amount on invoice \\"%(invoice)s\\" can not be greater than the invoice amount."]] ir.message account_invoice f [["text","Payment lines amount on invoice \\"%(invoice)s\\" can not be greater than the invoice amount."]] \N \N +2372 2024-04-13 20:39:14.878373 0 306 msg_invoice_payment_lines_add_remove_paid [["text","You cannot add/remove payment lines on paid invoice \\"%(invoice)s\\"."]] ir.message account_invoice f [["text","You cannot add/remove payment lines on paid invoice \\"%(invoice)s\\"."]] \N \N +2373 2024-04-13 20:39:14.878373 0 307 msg_invoice_credit_refund_not_posted [["text","You cannot refund invoice \\"%(invoice)s\\" because it is not posted."]] ir.message account_invoice f [["text","You cannot refund invoice \\"%(invoice)s\\" because it is not posted."]] \N \N +2374 2024-04-13 20:39:14.878373 0 308 msg_invoice_line_modify [["text","You cannot modify line \\"%(line)s\\" because its invoice \\"%(invoice)s\\" is posted, paid or cancelled."]] ir.message account_invoice f [["text","You cannot modify line \\"%(line)s\\" because its invoice \\"%(invoice)s\\" is posted, paid or cancelled."]] \N \N +2375 2024-04-13 20:39:14.878373 0 309 msg_invoice_line_create_draft [["text","You cannot add lines to invoice \\"%(invoice)s\\" because it is no longer in a draft state."]] ir.message account_invoice f [["text","You cannot add lines to invoice \\"%(invoice)s\\" because it is no longer in a draft state."]] \N \N +2376 2024-04-13 20:39:14.878373 0 310 msg_invoice_tax_modify [["text","You cannot modify tax \\"%(tax)s\\" because its invoice \\"%(invoice)s\\" is posted, paid or cancelled."]] ir.message account_invoice f [["text","You cannot modify tax \\"%(tax)s\\" because its invoice \\"%(invoice)s\\" is posted, paid or cancelled."]] \N \N +2428 2024-04-13 20:39:16.958214 0 283 act_purchase_relate_simple_view2 [["act_window",229],["sequence",20],["view",465]] ir.action.act_window.view purchase f [["act_window",229],["sequence",20],["view",465]] \N \N +2377 2024-04-13 20:39:14.878373 0 311 msg_invoice_tax_create [["text","You cannot add taxes to invoice \\"%(invoice)s\\" because it is no longer in a draft state."]] ir.message account_invoice f [["text","You cannot add taxes to invoice \\"%(invoice)s\\" because it is no longer in a draft state."]] \N \N +2378 2024-04-13 20:39:14.878373 0 312 msg_invoice_line_tax_unique [["text","A tax can be added only once to an invoice line."]] ir.message account_invoice f [["text","A tax can be added only once to an invoice line."]] \N \N +2379 2024-04-13 20:39:14.878373 0 313 msg_invoice_pay_amount_greater_amount_to_pay [["text","You cannot add a partial payment on invoice \\"%(invoice)s\\" with an amount greater than the amount to pay \\"%(amount_to_pay)s\\"."]] ir.message account_invoice f [["text","You cannot add a partial payment on invoice \\"%(invoice)s\\" with an amount greater than the amount to pay \\"%(amount_to_pay)s\\"."]] \N \N +2380 2024-04-13 20:39:14.878373 0 314 msg_invoice_overpay_paid [["text","You cannot overpay invoice \\"%(invoice)s\\" because there is no more left to pay."]] ir.message account_invoice f [["text","You cannot overpay invoice \\"%(invoice)s\\" because there is no more left to pay."]] \N \N +2381 2024-04-13 20:39:14.878373 0 315 msg_invoice_payment_line_unique [["text","A payment line can be linked to only one invoice."]] ir.message account_invoice f [["text","A payment line can be linked to only one invoice."]] \N \N +2382 2024-04-13 20:39:14.878373 0 316 msg_invoice_payment_term_date_past [["text","The invoice \\"%(invoice)s\\" generates a payment date \\"%(date)s\\" in the past."]] ir.message account_invoice f [["text","The invoice \\"%(invoice)s\\" generates a payment date \\"%(date)s\\" in the past."]] \N \N +2383 2024-04-13 20:39:14.878373 0 317 msg_close_period_non_posted_invoices [["text","To close the periods you must post the invoices \\"%(invoices)s\\"."]] ir.message account_invoice f [["text","To close the periods you must post the invoices \\"%(invoices)s\\"."]] \N \N +2384 2024-04-13 20:39:14.878373 0 318 msg_invoice_date_future [["text","The invoices \\"%(invoices)s\\" have an invoice date in the future."]] ir.message account_invoice f [["text","The invoices \\"%(invoices)s\\" have an invoice date in the future."]] \N \N +2385 2024-04-13 20:39:14.878373 0 319 msg_invoice_similar [["text","The invoice \\"%(invoice)s\\" is similar to invoice \\"%(similar)s\\"."]] ir.message account_invoice f [["text","The invoice \\"%(invoice)s\\" is similar to invoice \\"%(similar)s\\"."]] \N \N +2386 2024-04-13 20:39:14.878373 0 320 msg_cancel_invoice_move [["text","The moves \\"%(moves)s\\" have the posted invoices \\"%(invoices)s\\" as origin."]] ir.message account_invoice f [["text","The moves \\"%(moves)s\\" have the posted invoices \\"%(invoices)s\\" as origin."]] \N \N +2387 2024-04-13 20:39:14.878373 0 321 msg_cancel_invoice_move_description [["text","Cancelling them will reconcile the move lines thus paying the invoices. You might want to cancel the invoices first."]] ir.message account_invoice f [["text","Cancelling them will reconcile the move lines thus paying the invoices. You might want to cancel the invoices first."]] \N \N +2388 2024-04-13 20:39:16.677742 0 463 invoice_line_view_form [["inherit",422],["model","account.invoice.line"],["name","invoice_line_form"]] ir.ui.view account_invoice_stock f [["inherit",422],["model","account.invoice.line"],["name","invoice_line_form"]] \N \N +2389 2024-04-13 20:39:16.677742 0 192 access_stock_move_group_account [["group",6],["model",228],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access account_invoice_stock f [["group",6],["model",228],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2390 2024-04-13 20:39:16.677742 0 464 move_view_form [["inherit",365],["model","stock.move"],["name","move_form"]] ir.ui.view account_invoice_stock f [["inherit",365],["model","stock.move"],["name","move_form"]] \N \N +2391 2024-04-13 20:39:16.958214 0 14 group_purchase [["name","Purchase"]] res.group purchase f [["name","Purchase"]] \N \N +2392 2024-04-13 20:39:16.958214 0 15 group_purchase_admin [["name","Purchase Administrator"],["parent",14]] res.group purchase f [["name","Purchase Administrator"],["parent",14]] \N \N +2393 2024-04-13 20:39:16.958214 0 14 user_admin_group_purchase [["group",14],["user",1]] res.user-res.group purchase f [["group",14],["user",1]] \N \N +2394 2024-04-13 20:39:16.958214 0 15 user_admin_group_purchase_admin [["group",15],["user",1]] res.user-res.group purchase f [["group",15],["user",1]] \N \N +2395 2024-04-13 20:39:16.958214 0 22 purchase_icon [["name","tryton-purchase"],["path","icons/tryton-purchase.svg"]] ir.ui.icon purchase f [["name","tryton-purchase"],["path","icons/tryton-purchase.svg"]] \N \N +2396 2024-04-13 20:39:16.958214 0 163 menu_purchase [["icon","tryton-purchase"],["name","Purchases"],["sequence",70]] ir.ui.menu purchase f [["icon","tryton-purchase"],["name","Purchases"],["sequence",70]] \N \N +2397 2024-04-13 20:39:16.958214 0 16 menu_purchase_group_purchase [["group",14],["menu",163]] ir.ui.menu-res.group purchase f [["group",14],["menu",163]] \N \N +2398 2024-04-13 20:39:16.958214 0 164 menu_reporting [["active",true],["icon","tryton-folder"],["name","Reporting"],["parent",163],["sequence",100]] ir.ui.menu purchase f [["active",true],["icon","tryton-folder"],["name","Reporting"],["parent",163],["sequence",100]] \N \N +2399 2024-04-13 20:39:16.958214 0 224 wizard_shipment_handle_exception [["model","purchase.purchase"],["name","Handle Shipment Exception"],["wiz_name","purchase.handle.shipment.exception"]] ir.action.wizard purchase f [["model","purchase.purchase"],["name","Handle Shipment Exception"],["wiz_name","purchase.handle.shipment.exception"]] \N \N +2400 2024-04-13 20:39:16.958214 0 225 wizard_invoice_handle_exception [["model","purchase.purchase"],["name","Handle Invoice Exception"],["wiz_name","purchase.handle.invoice.exception"]] ir.action.wizard purchase f [["model","purchase.purchase"],["name","Handle Invoice Exception"],["wiz_name","purchase.handle.invoice.exception"]] \N \N +2401 2024-04-13 20:39:16.958214 0 465 purchase_view_form [["model","purchase.purchase"],["name","purchase_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.purchase"],["name","purchase_form"],["type","form"]] \N \N +2402 2024-04-13 20:39:16.958214 0 466 purchase_view_tree [["model","purchase.purchase"],["name","purchase_tree"],["type","tree"]] ir.ui.view purchase f [["model","purchase.purchase"],["name","purchase_tree"],["type","tree"]] \N \N +2403 2024-04-13 20:39:16.958214 0 467 handle_shipment_exception_ask_view_form [["model","purchase.handle.shipment.exception.ask"],["name","handle_shipment_exception_ask_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.handle.shipment.exception.ask"],["name","handle_shipment_exception_ask_form"],["type","form"]] \N \N +2404 2024-04-13 20:39:16.958214 0 468 handle_invoice_exception_ask_view_form [["model","purchase.handle.invoice.exception.ask"],["name","handle_invoice_exception_ask_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.handle.invoice.exception.ask"],["name","handle_invoice_exception_ask_form"],["type","form"]] \N \N +2405 2024-04-13 20:39:16.958214 0 226 act_purchase_form [["name","Purchases"],["res_model","purchase.purchase"],["search_value",""]] ir.action.act_window purchase f [["name","Purchases"],["res_model","purchase.purchase"],["search_value",""]] \N \N +2408 2024-04-13 20:39:16.958214 0 50 act_purchase_form_domain_draft [["act_window",226],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain purchase f [["act_window",226],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2409 2024-04-13 20:39:16.958214 0 51 act_purchase_form_domain_quotation [["act_window",226],["count",true],["domain","[[\\"state\\", \\"=\\", \\"quotation\\"]]"],["name","Quotation"],["sequence",20]] ir.action.act_window.domain purchase f [["act_window",226],["count",true],["domain","[[\\"state\\", \\"=\\", \\"quotation\\"]]"],["name","Quotation"],["sequence",20]] \N \N +2410 2024-04-13 20:39:16.958214 0 52 act_purchase_form_domain_confirmed [["act_window",226],["count",true],["domain","[[\\"state\\", \\"=\\", \\"confirmed\\"]]"],["name","Confirmed"],["sequence",30]] ir.action.act_window.domain purchase f [["act_window",226],["count",true],["domain","[[\\"state\\", \\"=\\", \\"confirmed\\"]]"],["name","Confirmed"],["sequence",30]] \N \N +2411 2024-04-13 20:39:16.958214 0 53 act_purchase_form_domain_processing [["act_window",226],["count",true],["domain","[[\\"state\\", \\"=\\", \\"processing\\"]]"],["name","Processing"],["sequence",40]] ir.action.act_window.domain purchase f [["act_window",226],["count",true],["domain","[[\\"state\\", \\"=\\", \\"processing\\"]]"],["name","Processing"],["sequence",40]] \N \N +2412 2024-04-13 20:39:16.958214 0 54 act_purchase_form_domain_exception [["act_window",226],["count",true],["domain","[\\"OR\\", [\\"invoice_state\\", \\"=\\", \\"exception\\"], [\\"shipment_state\\", \\"=\\", \\"exception\\"]]"],["name","Exception"],["sequence",50]] ir.action.act_window.domain purchase f [["act_window",226],["count",true],["domain","[\\"OR\\", [\\"invoice_state\\", \\"=\\", \\"exception\\"], [\\"shipment_state\\", \\"=\\", \\"exception\\"]]"],["name","Exception"],["sequence",50]] \N \N +2413 2024-04-13 20:39:16.958214 0 55 act_purchase_form_domain_all [["act_window",226],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain purchase f [["act_window",226],["domain",""],["name","All"],["sequence",9999]] \N \N +2414 2024-04-13 20:39:16.958214 0 165 menu_purchase_form [["action","ir.action.act_window,226"],["icon","tryton-list"],["name","Purchases"],["parent",163],["sequence",10]] ir.ui.menu purchase f [["action","ir.action.act_window,226"],["icon","tryton-list"],["name","Purchases"],["parent",163],["sequence",10]] \N \N +2415 2024-04-13 20:39:16.958214 0 227 act_purchase_invoice_relate [["domain","[[\\"invoices\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Purchases"],["res_model","purchase.purchase"]] ir.action.act_window purchase f [["domain","[[\\"invoices\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Purchases"],["res_model","purchase.purchase"]] \N \N +2416 2024-04-13 20:39:16.958214 0 278 act_purchase_invoice_relate_view1 [["act_window",227],["sequence",10],["view",466]] ir.action.act_window.view purchase f [["act_window",227],["sequence",10],["view",466]] \N \N +2417 2024-04-13 20:39:16.958214 0 279 act_purchase_invoice_relate_view2 [["act_window",227],["sequence",20],["view",465]] ir.action.act_window.view purchase f [["act_window",227],["sequence",20],["view",465]] \N \N +2418 2024-04-13 20:39:16.958214 0 223 act_purchase_invoice_relate_keyword [["action",227],["keyword","form_relate"],["model","account.invoice,-1"]] ir.action.keyword purchase f [["action",227],["keyword","form_relate"],["model","account.invoice,-1"]] \N \N +2419 2024-04-13 20:39:16.958214 0 228 act_purchase_relate [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Purchases"],["res_model","purchase.purchase"]] ir.action.act_window purchase f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Purchases"],["res_model","purchase.purchase"]] \N \N +2420 2024-04-13 20:39:16.958214 0 280 act_purchase_relate_view1 [["act_window",228],["sequence",10],["view",466]] ir.action.act_window.view purchase f [["act_window",228],["sequence",10],["view",466]] \N \N +2421 2024-04-13 20:39:16.958214 0 281 act_purchase_relate_view2 [["act_window",228],["sequence",20],["view",465]] ir.action.act_window.view purchase f [["act_window",228],["sequence",20],["view",465]] \N \N +2422 2024-04-13 20:39:16.958214 0 56 act_purchase_relate_pending [["act_window",228],["count",true],["domain","[[\\"state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] ir.action.act_window.domain purchase f [["act_window",228],["count",true],["domain","[[\\"state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] \N \N +2423 2024-04-13 20:39:16.958214 0 57 act_purchase_relate_done [["act_window",228],["count",true],["domain","[[\\"state\\", \\"=\\", \\"done\\"]]"],["name","Done"],["sequence",20]] ir.action.act_window.domain purchase f [["act_window",228],["count",true],["domain","[[\\"state\\", \\"=\\", \\"done\\"]]"],["name","Done"],["sequence",20]] \N \N +2424 2024-04-13 20:39:16.958214 0 58 act_purchase_relate_all [["act_window",228],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain purchase f [["act_window",228],["domain",""],["name","All"],["sequence",9999]] \N \N +2425 2024-04-13 20:39:16.958214 0 224 act_purchase_relate_keyword_party [["action",228],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword purchase f [["action",228],["keyword","form_relate"],["model","party.party,-1"]] \N \N +2426 2024-04-13 20:39:16.958214 0 229 act_purchase_relate_simple [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"stock.shipment.in\\"}, \\"e\\": [], \\"t\\": [\\"shipments\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"stock.shipment.in.return\\"}, \\"e\\": [], \\"t\\": [\\"shipment_returns\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Purchases"],["res_model","purchase.purchase"]] ir.action.act_window purchase f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"stock.shipment.in\\"}, \\"e\\": [], \\"t\\": [\\"shipments\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"stock.shipment.in.return\\"}, \\"e\\": [], \\"t\\": [\\"shipment_returns\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Purchases"],["res_model","purchase.purchase"]] \N \N +2427 2024-04-13 20:39:16.958214 0 282 act_purchase_relate_simple_view1 [["act_window",229],["sequence",10],["view",466]] ir.action.act_window.view purchase f [["act_window",229],["sequence",10],["view",466]] \N \N +2429 2024-04-13 20:39:16.958214 0 225 act_purchase_relate_simple_keyword_shipment_in [["action",229],["keyword","form_relate"],["model","stock.shipment.in,-1"]] ir.action.keyword purchase f [["action",229],["keyword","form_relate"],["model","stock.shipment.in,-1"]] \N \N +2430 2024-04-13 20:39:16.958214 0 226 act_purchase_relate_simple_keyword_shipment_in_return [["action",229],["keyword","form_relate"],["model","stock.shipment.in.return,-1"]] ir.action.keyword purchase f [["action",229],["keyword","form_relate"],["model","stock.shipment.in.return,-1"]] \N \N +2431 2024-04-13 20:39:16.958214 0 193 access_purchase [["model",282],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access purchase f [["model",282],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2432 2024-04-13 20:39:16.958214 0 194 access_purchase_purchase [["group",14],["model",282],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access purchase f [["group",14],["model",282],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2433 2024-04-13 20:39:16.958214 0 195 access_purchase_account [["group",6],["model",282],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",6],["model",282],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2434 2024-04-13 20:39:16.958214 0 196 access_purchase_group_stock [["group",11],["model",282],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",11],["model",282],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2435 2024-04-13 20:39:16.958214 0 80 purchase_cancel_button [["model",282],["name","cancel"],["string","Cancel"]] ir.model.button purchase f [["model",282],["name","cancel"],["string","Cancel"]] \N \N +2436 2024-04-13 20:39:16.958214 0 81 purchase_draft_button [["model",282],["name","draft"],["string","Draft"]] ir.model.button purchase f [["model",282],["name","draft"],["string","Draft"]] \N \N +2437 2024-04-13 20:39:16.958214 0 82 purchase_quote_button [["model",282],["name","quote"],["string","Quote"]] ir.model.button purchase f [["model",282],["name","quote"],["string","Quote"]] \N \N +2438 2024-04-13 20:39:16.958214 0 83 purchase_confirm_button [["model",282],["name","confirm"],["string","Confirm"]] ir.model.button purchase f [["model",282],["name","confirm"],["string","Confirm"]] \N \N +2439 2024-04-13 20:39:16.958214 0 84 purchase_process_button [["model",282],["name","process"],["string","Process"]] ir.model.button purchase f [["model",282],["name","process"],["string","Process"]] \N \N +2440 2024-04-13 20:39:16.958214 0 15 purchase_process_button_group_purchase_admin [["button",84],["group",15]] ir.model.button-res.group purchase f [["button",84],["group",15]] \N \N +2441 2024-04-13 20:39:16.958214 0 85 purchase_manual_invoice_button [["model",282],["name","manual_invoice"],["string","Create Invoice"]] ir.model.button purchase f [["model",282],["name","manual_invoice"],["string","Create Invoice"]] \N \N +2442 2024-04-13 20:39:16.958214 0 16 purchase_manual_button_group_purchase [["button",85],["group",14]] ir.model.button-res.group purchase f [["button",85],["group",14]] \N \N +2443 2024-04-13 20:39:16.958214 0 17 purchase_manual_button_group_account [["button",85],["group",6]] ir.model.button-res.group purchase f [["button",85],["group",6]] \N \N +2444 2024-04-13 20:39:16.958214 0 86 purchase_modify_header_button [["model",282],["name","modify_header"],["string","Modify Header"]] ir.model.button purchase f [["model",282],["name","modify_header"],["string","Modify Header"]] \N \N +2445 2024-04-13 20:39:16.958214 0 87 purchase_hande_invoice_exception_button [["model",282],["name","handle_invoice_exception"],["string","Handle Invoice Exception"]] ir.model.button purchase f [["model",282],["name","handle_invoice_exception"],["string","Handle Invoice Exception"]] \N \N +2446 2024-04-13 20:39:16.958214 0 88 purchase_hande_shipment_exception_button [["model",282],["name","handle_shipment_exception"],["string","Handle Shipment Exception"]] ir.model.button purchase f [["model",282],["name","handle_shipment_exception"],["string","Handle Shipment Exception"]] \N \N +2447 2024-04-13 20:39:16.958214 0 14 sequence_type_purchase [["name","Purchase"]] ir.sequence.type purchase f [["name","Purchase"]] \N \N +2448 2024-04-13 20:39:16.958214 0 27 sequence_type_purchase_group_admin [["group",1],["sequence_type",14]] ir.sequence.type-res.group purchase f [["group",1],["sequence_type",14]] \N \N +2449 2024-04-13 20:39:16.958214 0 28 sequence_type_purchase_group_purchase_admin [["group",15],["sequence_type",14]] ir.sequence.type-res.group purchase f [["group",15],["sequence_type",14]] \N \N +2450 2024-04-13 20:39:16.958214 0 10 sequence_purchase [["name","Purchase"],["sequence_type",14]] ir.sequence purchase f [["name","Purchase"],["sequence_type",14]] \N \N +2452 2024-04-13 20:39:16.958214 0 227 report_purchase_keyword [["action",230],["keyword","form_print"],["model","purchase.purchase,-1"]] ir.action.keyword purchase f [["action",230],["keyword","form_print"],["model","purchase.purchase,-1"]] \N \N +2453 2024-04-13 20:39:16.958214 0 469 purchase_line_view_form [["model","purchase.line"],["name","purchase_line_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.line"],["name","purchase_line_form"],["type","form"]] \N \N +2454 2024-04-13 20:39:16.958214 0 470 purchase_line_view_tree [["model","purchase.line"],["name","purchase_line_tree"],["priority",10],["type","tree"]] ir.ui.view purchase f [["model","purchase.line"],["name","purchase_line_tree"],["priority",10],["type","tree"]] \N \N +2455 2024-04-13 20:39:16.958214 0 471 purchase_line_view_tree_sequence [["model","purchase.line"],["name","purchase_line_tree_sequence"],["priority",20],["type","tree"]] ir.ui.view purchase f [["model","purchase.line"],["name","purchase_line_tree_sequence"],["priority",20],["type","tree"]] \N \N +2478 2024-04-13 20:39:16.958214 0 475 product_supplier_price_view_form [["model","purchase.product_supplier.price"],["name","product_supplier_price_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.product_supplier.price"],["name","product_supplier_price_form"],["type","form"]] \N \N +2479 2024-04-13 20:39:16.958214 0 476 product_supplier_price_view_tree [["model","purchase.product_supplier.price"],["name","product_supplier_price_tree"],["type","tree"]] ir.ui.view purchase f [["model","purchase.product_supplier.price"],["name","product_supplier_price_tree"],["type","tree"]] \N \N +2480 2024-04-13 20:39:16.958214 0 477 product_supplier_price_view_list_sequence [["model","purchase.product_supplier.price"],["name","product_supplier_price_list_sequence"],["type","tree"]] ir.ui.view purchase f [["model","purchase.product_supplier.price"],["name","product_supplier_price_list_sequence"],["type","tree"]] \N \N +2456 2024-04-13 20:39:16.958214 0 231 act_purchase_line_relate [["domain","[[\\"type\\", \\"=\\", \\"line\\"], {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"purchase.purchase\\"}, \\"e\\": [], \\"t\\": [\\"purchase\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.product\\"}, \\"e\\": [], \\"t\\": [\\"product\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": [], \\"t\\": [\\"product.template.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"supplier\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Purchase Lines"],["res_model","purchase.line"]] ir.action.act_window purchase f [["domain","[[\\"type\\", \\"=\\", \\"line\\"], {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"purchase.purchase\\"}, \\"e\\": [], \\"t\\": [\\"purchase\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.product\\"}, \\"e\\": [], \\"t\\": [\\"product\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": [], \\"t\\": [\\"product.template.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"supplier\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Purchase Lines"],["res_model","purchase.line"]] \N \N +2457 2024-04-13 20:39:16.958214 0 284 act_purchase_line_relate_view1 [["act_window",231],["sequence",10],["view",470]] ir.action.act_window.view purchase f [["act_window",231],["sequence",10],["view",470]] \N \N +2458 2024-04-13 20:39:16.958214 0 285 act_purchase_line_relate_view2 [["act_window",231],["sequence",20],["view",469]] ir.action.act_window.view purchase f [["act_window",231],["sequence",20],["view",469]] \N \N +2459 2024-04-13 20:39:16.958214 0 59 act_purchase_line_relate_pending [["act_window",231],["count",true],["domain","[[\\"purchase_state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] ir.action.act_window.domain purchase f [["act_window",231],["count",true],["domain","[[\\"purchase_state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] \N \N +2460 2024-04-13 20:39:16.958214 0 60 act_purchase_line_relate_done [["act_window",231],["count",true],["domain","[[\\"purchase_state\\", \\"=\\", \\"done\\"]]"],["name","Done"],["sequence",20]] ir.action.act_window.domain purchase f [["act_window",231],["count",true],["domain","[[\\"purchase_state\\", \\"=\\", \\"done\\"]]"],["name","Done"],["sequence",20]] \N \N +2461 2024-04-13 20:39:16.958214 0 61 act_purchase_line_relate_all [["act_window",231],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain purchase f [["act_window",231],["domain",""],["name","All"],["sequence",9999]] \N \N +2462 2024-04-13 20:39:16.958214 0 228 act_purchase_line_relate_keyword_purchase [["action",231],["keyword","form_relate"],["model","purchase.purchase,-1"]] ir.action.keyword purchase f [["action",231],["keyword","form_relate"],["model","purchase.purchase,-1"]] \N \N +2463 2024-04-13 20:39:16.958214 0 229 act_purchase_line_relate_keyword_product [["action",231],["keyword","form_relate"],["model","product.product,-1"]] ir.action.keyword purchase f [["action",231],["keyword","form_relate"],["model","product.product,-1"]] \N \N +2464 2024-04-13 20:39:16.958214 0 230 act_purchase_line_relate_keyword_product_template [["action",231],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword purchase f [["action",231],["keyword","form_relate"],["model","product.template,-1"]] \N \N +2465 2024-04-13 20:39:16.958214 0 231 act_purchase_line_relate_keyword_party [["action",231],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword purchase f [["action",231],["keyword","form_relate"],["model","party.party,-1"]] \N \N +2466 2024-04-13 20:39:16.958214 0 197 access_purchase_line_group_stock [["group",11],["model",285],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",11],["model",285],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2467 2024-04-13 20:39:16.958214 0 472 product_supplier_view_form [["model","purchase.product_supplier"],["name","product_supplier_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.product_supplier"],["name","product_supplier_form"],["type","form"]] \N \N +2468 2024-04-13 20:39:16.958214 0 473 product_supplier_view_tree [["model","purchase.product_supplier"],["name","product_supplier_tree"],["priority",10],["type","tree"]] ir.ui.view purchase f [["model","purchase.product_supplier"],["name","product_supplier_tree"],["priority",10],["type","tree"]] \N \N +2469 2024-04-13 20:39:16.958214 0 474 product_supplier_view_tree_sequence [["model","purchase.product_supplier"],["name","product_supplier_tree_sequence"],["priority",20],["type","tree"]] ir.ui.view purchase f [["model","purchase.product_supplier"],["name","product_supplier_tree_sequence"],["priority",20],["type","tree"]] \N \N +2470 2024-04-13 20:39:16.958214 0 232 act_product_supplier_form [["name","Suppliers"],["res_model","purchase.product_supplier"]] ir.action.act_window purchase f [["name","Suppliers"],["res_model","purchase.product_supplier"]] \N \N +2471 2024-04-13 20:39:16.958214 0 286 act_product_supplier_list_view [["act_window",232],["sequence",10],["view",473]] ir.action.act_window.view purchase f [["act_window",232],["sequence",10],["view",473]] \N \N +2472 2024-04-13 20:39:16.958214 0 287 act_product_supplier_form_view [["act_window",232],["sequence",20],["view",472]] ir.action.act_window.view purchase f [["act_window",232],["sequence",20],["view",472]] \N \N +2473 2024-04-13 20:39:16.958214 0 166 menu_product_supplier [["action","ir.action.act_window,232"],["icon","tryton-list"],["name","Suppliers"],["parent",128],["sequence",20]] ir.ui.menu purchase f [["action","ir.action.act_window,232"],["icon","tryton-list"],["name","Suppliers"],["parent",128],["sequence",20]] \N \N +2474 2024-04-13 20:39:16.958214 0 198 access_product_supplier [["model",289],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["model",289],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2475 2024-04-13 20:39:16.958214 0 199 access_product_supplier_purchase [["group",14],["model",289],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access purchase f [["group",14],["model",289],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2476 2024-04-13 20:39:16.958214 0 48 rule_group_product_supplier_companies [["global_p",true],["model",289],["name","User in companies"]] ir.rule.group purchase f [["global_p",true],["model",289],["name","User in companies"]] \N \N +2477 2024-04-13 20:39:16.958214 0 52 rule_product_supplier_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",48]] ir.rule purchase f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",48]] \N \N +2679 2024-04-13 20:39:19.14446 0 30 sequence_type_sale_group_sale_admin [["group",17],["sequence_type",15]] ir.sequence.type-res.group sale f [["group",17],["sequence_type",15]] \N \N +2481 2024-04-13 20:39:16.958214 0 233 act_product_supplier_price_form [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"product_supplier\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"product_supplier\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Prices"],["res_model","purchase.product_supplier.price"]] ir.action.act_window purchase f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"product_supplier\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"product_supplier\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Prices"],["res_model","purchase.product_supplier.price"]] \N \N +2482 2024-04-13 20:39:16.958214 0 233 act_product_supplier_price_form_keyword1 [["action",233],["keyword","form_relate"],["model","purchase.product_supplier,-1"]] ir.action.keyword purchase f [["action",233],["keyword","form_relate"],["model","purchase.product_supplier,-1"]] \N \N +2483 2024-04-13 20:39:16.958214 0 478 return_purchase_start_view_form [["model","purchase.return_purchase.start"],["name","return_purchase_start_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.return_purchase.start"],["name","return_purchase_start_form"],["type","form"]] \N \N +2484 2024-04-13 20:39:16.958214 0 234 wizard_return_purchase [["model","purchase.purchase"],["name","Return Purchase"],["wiz_name","purchase.return_purchase"]] ir.action.wizard purchase f [["model","purchase.purchase"],["name","Return Purchase"],["wiz_name","purchase.return_purchase"]] \N \N +2485 2024-04-13 20:39:16.958214 0 234 act_wizard_return_purchase_keyword [["action",234],["keyword","form_action"],["model","purchase.purchase,-1"]] ir.action.keyword purchase f [["action",234],["keyword","form_action"],["model","purchase.purchase,-1"]] \N \N +2486 2024-04-13 20:39:16.958214 0 235 act_open_supplier [["name","Parties associated to Purchases"],["wiz_name","purchase.open_supplier"]] ir.action.wizard purchase f [["name","Parties associated to Purchases"],["wiz_name","purchase.open_supplier"]] \N \N +2487 2024-04-13 20:39:16.958214 0 167 menu_supplier [["action","ir.action.wizard,235"],["icon","tryton-list"],["name","Associated to Purchases"],["parent",63],["sequence",50]] ir.ui.menu purchase f [["action","ir.action.wizard,235"],["icon","tryton-list"],["name","Associated to Purchases"],["parent",63],["sequence",50]] \N \N +2488 2024-04-13 20:39:16.958214 0 236 wizard_modify_header [["model","purchase.purchase"],["name","Modify Header"],["wiz_name","purchase.modify_header"]] ir.action.wizard purchase f [["model","purchase.purchase"],["name","Modify Header"],["wiz_name","purchase.modify_header"]] \N \N +2489 2024-04-13 20:39:16.958214 0 479 modify_header_form [["domain","{\\"__class__\\": \\"Get\\", \\"d\\": false, \\"k\\": \\"modify_header\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}"],["inherit",465],["model","purchase.purchase"],["name","modify_header_form"]] ir.ui.view purchase f [["domain","{\\"__class__\\": \\"Get\\", \\"d\\": false, \\"k\\": \\"modify_header\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}"],["inherit",465],["model","purchase.purchase"],["name","modify_header_form"]] \N \N +2490 2024-04-13 20:39:16.958214 0 49 rule_group_purchase_companies [["global_p",true],["model",282],["name","User in companies"]] ir.rule.group purchase f [["global_p",true],["model",282],["name","User in companies"]] \N \N +2491 2024-04-13 20:39:16.958214 0 53 rule_purchase_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",49]] ir.rule purchase f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",49]] \N \N +2492 2024-04-13 20:39:16.958214 0 168 menu_reporting_purchase [["icon","tryton-graph"],["name","Purchases"],["parent",164],["sequence",10]] ir.ui.menu purchase f [["icon","tryton-graph"],["name","Purchases"],["parent",164],["sequence",10]] \N \N +2493 2024-04-13 20:39:16.958214 0 480 reporting_context_view_form [["model","purchase.reporting.context"],["name","purchase_reporting_context_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.reporting.context"],["name","purchase_reporting_context_form"],["type","form"]] \N \N +2494 2024-04-13 20:39:16.958214 0 481 reporting_main_view_list [["model","purchase.reporting.main"],["name","purchase_reporting_main_list"],["type","tree"]] ir.ui.view purchase f [["model","purchase.reporting.main"],["name","purchase_reporting_main_list"],["type","tree"]] \N \N +2495 2024-04-13 20:39:16.958214 0 482 reporting_main_view_graph_expense [["model","purchase.reporting.main"],["name","purchase_reporting_main_graph_expense"],["type","graph"]] ir.ui.view purchase f [["model","purchase.reporting.main"],["name","purchase_reporting_main_graph_expense"],["type","graph"]] \N \N +2496 2024-04-13 20:39:16.958214 0 483 reporting_main_view_graph_number [["model","purchase.reporting.main"],["name","purchase_reporting_main_graph_number"],["type","graph"]] ir.ui.view purchase f [["model","purchase.reporting.main"],["name","purchase_reporting_main_graph_number"],["type","graph"]] \N \N +2497 2024-04-13 20:39:16.958214 0 237 act_reporting_main [["context_model","purchase.reporting.context"],["name","Purchases"],["res_model","purchase.reporting.main"]] ir.action.act_window purchase f [["context_model","purchase.reporting.context"],["name","Purchases"],["res_model","purchase.reporting.main"]] \N \N +2498 2024-04-13 20:39:16.958214 0 288 act_reporting_main_view1 [["act_window",237],["sequence",10],["view",481]] ir.action.act_window.view purchase f [["act_window",237],["sequence",10],["view",481]] \N \N +2499 2024-04-13 20:39:16.958214 0 236 act_reporting_main_keyword1 [["action",237],["keyword","tree_open"],["model","ir.ui.menu,168"]] ir.action.keyword purchase f [["action",237],["keyword","tree_open"],["model","ir.ui.menu,168"]] \N \N +2500 2024-04-13 20:39:16.958214 0 50 rule_group_reporting_main_companies [["global_p",true],["model",301],["name","User in companies"]] ir.rule.group purchase f [["global_p",true],["model",301],["name","User in companies"]] \N \N +2501 2024-04-13 20:39:16.958214 0 54 rule_reporting_main_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",50]] ir.rule purchase f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",50]] \N \N +2502 2024-04-13 20:39:16.958214 0 200 access_reporting_main [["model",301],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access purchase f [["model",301],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2503 2024-04-13 20:39:16.958214 0 201 access_reporting_main_purchase [["group",14],["model",301],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",301],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2680 2024-04-13 20:39:19.14446 0 11 sequence_sale [["name","Sale"],["sequence_type",15]] ir.sequence sale f [["name","Sale"],["sequence_type",15]] \N \N +2504 2024-04-13 20:39:16.958214 0 484 reporting_main_time_series_view_list [["model","purchase.reporting.main.time_series"],["name","purchase_reporting_main_time_series_list"],["type","tree"]] ir.ui.view purchase f [["model","purchase.reporting.main.time_series"],["name","purchase_reporting_main_time_series_list"],["type","tree"]] \N \N +2505 2024-04-13 20:39:16.958214 0 485 reporting_main_time_series_view_graph_expense [["model","purchase.reporting.main.time_series"],["name","purchase_reporting_main_time_series_graph_expense"],["type","graph"]] ir.ui.view purchase f [["model","purchase.reporting.main.time_series"],["name","purchase_reporting_main_time_series_graph_expense"],["type","graph"]] \N \N +2506 2024-04-13 20:39:16.958214 0 486 reporting_main_time_series_view_graph_number [["model","purchase.reporting.main.time_series"],["name","purchase_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view purchase f [["model","purchase.reporting.main.time_series"],["name","purchase_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2507 2024-04-13 20:39:16.958214 0 238 act_reporting_main_time_series [["context_model","purchase.reporting.context"],["name","Purchases"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","purchase.reporting.main.time_series"]] ir.action.act_window purchase f [["context_model","purchase.reporting.context"],["name","Purchases"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","purchase.reporting.main.time_series"]] \N \N +2508 2024-04-13 20:39:16.958214 0 289 act_reporting_main_time_series_list_view1 [["act_window",238],["sequence",10],["view",484]] ir.action.act_window.view purchase f [["act_window",238],["sequence",10],["view",484]] \N \N +2509 2024-04-13 20:39:16.958214 0 290 act_reporting_main_time_series_list_view2 [["act_window",238],["sequence",20],["view",485]] ir.action.act_window.view purchase f [["act_window",238],["sequence",20],["view",485]] \N \N +2510 2024-04-13 20:39:16.958214 0 291 act_reporting_main_time_series_list_view3 [["act_window",238],["sequence",30],["view",486]] ir.action.act_window.view purchase f [["act_window",238],["sequence",30],["view",486]] \N \N +2511 2024-04-13 20:39:16.958214 0 237 act_reporting_main_time_series_list_keyword1 [["action",238],["keyword","tree_open"],["model","purchase.reporting.main,-1"]] ir.action.keyword purchase f [["action",238],["keyword","tree_open"],["model","purchase.reporting.main,-1"]] \N \N +2512 2024-04-13 20:39:16.958214 0 51 rule_group_reporting_main_time_series_companies [["global_p",true],["model",302],["name","User in companies"]] ir.rule.group purchase f [["global_p",true],["model",302],["name","User in companies"]] \N \N +2513 2024-04-13 20:39:16.958214 0 55 rule_reporting_main_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",51]] ir.rule purchase f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",51]] \N \N +2514 2024-04-13 20:39:16.958214 0 202 access_reporting_main_time_series [["model",302],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access purchase f [["model",302],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2515 2024-04-13 20:39:16.958214 0 203 access_reporting_main_time_series_purchase [["group",14],["model",302],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",302],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2516 2024-04-13 20:39:16.958214 0 487 reporting_supplier_view_list [["inherit",481],["model","purchase.reporting.supplier"],["name","purchase_reporting_supplier_list"]] ir.ui.view purchase f [["inherit",481],["model","purchase.reporting.supplier"],["name","purchase_reporting_supplier_list"]] \N \N +2517 2024-04-13 20:39:16.958214 0 488 reporting_supplier_view_graph_expense [["inherit",482],["model","purchase.reporting.supplier"],["name","purchase_reporting_supplier_graph_expense"]] ir.ui.view purchase f [["inherit",482],["model","purchase.reporting.supplier"],["name","purchase_reporting_supplier_graph_expense"]] \N \N +2518 2024-04-13 20:39:16.958214 0 489 reporting_supplier_view_graph_number [["inherit",483],["model","purchase.reporting.supplier"],["name","purchase_reporting_supplier_graph_number"]] ir.ui.view purchase f [["inherit",483],["model","purchase.reporting.supplier"],["name","purchase_reporting_supplier_graph_number"]] \N \N +2519 2024-04-13 20:39:16.958214 0 239 act_reporting_supplier [["context_model","purchase.reporting.context"],["name","Purchases per Supplier"],["res_model","purchase.reporting.supplier"]] ir.action.act_window purchase f [["context_model","purchase.reporting.context"],["name","Purchases per Supplier"],["res_model","purchase.reporting.supplier"]] \N \N +2520 2024-04-13 20:39:16.958214 0 292 act_reporting_supplier_view1 [["act_window",239],["sequence",10],["view",487]] ir.action.act_window.view purchase f [["act_window",239],["sequence",10],["view",487]] \N \N +2521 2024-04-13 20:39:16.958214 0 293 act_reporting_supplier_view2 [["act_window",239],["sequence",20],["view",488]] ir.action.act_window.view purchase f [["act_window",239],["sequence",20],["view",488]] \N \N +2522 2024-04-13 20:39:16.958214 0 294 act_reporting_supplier_view3 [["act_window",239],["sequence",30],["view",489]] ir.action.act_window.view purchase f [["act_window",239],["sequence",30],["view",489]] \N \N +2523 2024-04-13 20:39:16.958214 0 238 act_reporting_supplier_keyword1 [["action",239],["keyword","tree_open"],["model","ir.ui.menu,168"]] ir.action.keyword purchase f [["action",239],["keyword","tree_open"],["model","ir.ui.menu,168"]] \N \N +2524 2024-04-13 20:39:16.958214 0 52 rule_group_reporting_supplier_companies [["global_p",true],["model",303],["name","User in companies"]] ir.rule.group purchase f [["global_p",true],["model",303],["name","User in companies"]] \N \N +2525 2024-04-13 20:39:16.958214 0 56 rule_reporting_supplier_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",52]] ir.rule purchase f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",52]] \N \N +2526 2024-04-13 20:39:16.958214 0 204 access_reporting_supplier [["model",303],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access purchase f [["model",303],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2527 2024-04-13 20:39:16.958214 0 205 access_reporting_supplier_purchase [["group",14],["model",303],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",303],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2528 2024-04-13 20:39:16.958214 0 490 reporting_supplier_time_series_view_list [["model","purchase.reporting.supplier.time_series"],["name","purchase_reporting_main_time_series_list"],["type","tree"]] ir.ui.view purchase f [["model","purchase.reporting.supplier.time_series"],["name","purchase_reporting_main_time_series_list"],["type","tree"]] \N \N +2529 2024-04-13 20:39:16.958214 0 491 reporting_supplier_time_series_view_graph_expense [["model","purchase.reporting.supplier.time_series"],["name","purchase_reporting_main_time_series_graph_expense"],["type","graph"]] ir.ui.view purchase f [["model","purchase.reporting.supplier.time_series"],["name","purchase_reporting_main_time_series_graph_expense"],["type","graph"]] \N \N +2530 2024-04-13 20:39:16.958214 0 492 reporting_supplier_time_series_view_graph_number [["model","purchase.reporting.supplier.time_series"],["name","purchase_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view purchase f [["model","purchase.reporting.supplier.time_series"],["name","purchase_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2531 2024-04-13 20:39:16.958214 0 240 act_reporting_supplier_time_series [["context_model","purchase.reporting.context"],["domain","[[\\"supplier\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Purchases per Supplier"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","purchase.reporting.supplier.time_series"]] ir.action.act_window purchase f [["context_model","purchase.reporting.context"],["domain","[[\\"supplier\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Purchases per Supplier"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","purchase.reporting.supplier.time_series"]] \N \N +2532 2024-04-13 20:39:16.958214 0 295 act_reporting_supplier_time_series_list_view1 [["act_window",240],["sequence",10],["view",490]] ir.action.act_window.view purchase f [["act_window",240],["sequence",10],["view",490]] \N \N +2533 2024-04-13 20:39:16.958214 0 296 act_reporting_supplier_time_series_list_view2 [["act_window",240],["sequence",20],["view",491]] ir.action.act_window.view purchase f [["act_window",240],["sequence",20],["view",491]] \N \N +2534 2024-04-13 20:39:16.958214 0 297 act_reporting_supplier_time_series_list_view3 [["act_window",240],["sequence",30],["view",492]] ir.action.act_window.view purchase f [["act_window",240],["sequence",30],["view",492]] \N \N +2535 2024-04-13 20:39:16.958214 0 239 act_reporting_supplier_time_series_list_keyword1 [["action",240],["keyword","tree_open"],["model","purchase.reporting.supplier,-1"]] ir.action.keyword purchase f [["action",240],["keyword","tree_open"],["model","purchase.reporting.supplier,-1"]] \N \N +2536 2024-04-13 20:39:16.958214 0 53 rule_group_reporting_supplier_time_series_companies [["global_p",true],["model",304],["name","User in companies"]] ir.rule.group purchase f [["global_p",true],["model",304],["name","User in companies"]] \N \N +2537 2024-04-13 20:39:16.958214 0 57 rule_reporting_supplier_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",53]] ir.rule purchase f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",53]] \N \N +2538 2024-04-13 20:39:16.958214 0 206 access_reporting_supplier_time_series [["model",304],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access purchase f [["model",304],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2539 2024-04-13 20:39:16.958214 0 207 access_reporting_supplier_time_series_purchase [["group",14],["model",304],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",304],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2540 2024-04-13 20:39:16.958214 0 493 reporting_product_view_list [["inherit",481],["model","purchase.reporting.product"],["name","purchase_reporting_product_list"]] ir.ui.view purchase f [["inherit",481],["model","purchase.reporting.product"],["name","purchase_reporting_product_list"]] \N \N +2541 2024-04-13 20:39:16.958214 0 494 reporting_product_view_graph_expense [["inherit",482],["model","purchase.reporting.product"],["name","purchase_reporting_product_graph_expense"]] ir.ui.view purchase f [["inherit",482],["model","purchase.reporting.product"],["name","purchase_reporting_product_graph_expense"]] \N \N +2542 2024-04-13 20:39:16.958214 0 495 reporting_product_view_graph_number [["inherit",483],["model","purchase.reporting.product"],["name","purchase_reporting_product_graph_number"]] ir.ui.view purchase f [["inherit",483],["model","purchase.reporting.product"],["name","purchase_reporting_product_graph_number"]] \N \N +2543 2024-04-13 20:39:16.958214 0 241 act_reporting_product [["context","{\\"supplier\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}}"],["context_model","purchase.reporting.context"],["name","Purchases per Product"],["res_model","purchase.reporting.product"]] ir.action.act_window purchase f [["context","{\\"supplier\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}}"],["context_model","purchase.reporting.context"],["name","Purchases per Product"],["res_model","purchase.reporting.product"]] \N \N +2544 2024-04-13 20:39:16.958214 0 298 act_reporting_product_view1 [["act_window",241],["sequence",10],["view",493]] ir.action.act_window.view purchase f [["act_window",241],["sequence",10],["view",493]] \N \N +2545 2024-04-13 20:39:16.958214 0 299 act_reporting_product_view2 [["act_window",241],["sequence",20],["view",494]] ir.action.act_window.view purchase f [["act_window",241],["sequence",20],["view",494]] \N \N +2546 2024-04-13 20:39:16.958214 0 300 act_reporting_product_view3 [["act_window",241],["sequence",30],["view",495]] ir.action.act_window.view purchase f [["act_window",241],["sequence",30],["view",495]] \N \N +2547 2024-04-13 20:39:16.958214 0 240 act_reporting_product_keyword1 [["action",241],["keyword","tree_open"],["model","purchase.reporting.supplier,-1"]] ir.action.keyword purchase f [["action",241],["keyword","tree_open"],["model","purchase.reporting.supplier,-1"]] \N \N +2548 2024-04-13 20:39:16.958214 0 54 rule_group_reporting_product_companies [["global_p",true],["model",305],["name","User in companies"]] ir.rule.group purchase f [["global_p",true],["model",305],["name","User in companies"]] \N \N +2549 2024-04-13 20:39:16.958214 0 58 rule_reporting_product_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",54]] ir.rule purchase f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",54]] \N \N +2550 2024-04-13 20:39:16.958214 0 208 access_reporting_product [["model",305],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access purchase f [["model",305],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2551 2024-04-13 20:39:16.958214 0 209 access_reporting_product_purchase [["group",14],["model",305],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",305],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2552 2024-04-13 20:39:16.958214 0 496 reporting_product_time_series_view_list [["model","purchase.reporting.product.time_series"],["name","purchase_reporting_main_time_series_list"],["type","tree"]] ir.ui.view purchase f [["model","purchase.reporting.product.time_series"],["name","purchase_reporting_main_time_series_list"],["type","tree"]] \N \N +2553 2024-04-13 20:39:16.958214 0 497 reporting_product_time_series_view_graph_expense [["model","purchase.reporting.product.time_series"],["name","purchase_reporting_main_time_series_graph_expense"],["type","graph"]] ir.ui.view purchase f [["model","purchase.reporting.product.time_series"],["name","purchase_reporting_main_time_series_graph_expense"],["type","graph"]] \N \N +2554 2024-04-13 20:39:16.958214 0 498 reporting_product_time_series_view_graph_number [["model","purchase.reporting.product.time_series"],["name","purchase_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view purchase f [["model","purchase.reporting.product.time_series"],["name","purchase_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2555 2024-04-13 20:39:16.958214 0 242 act_reporting_product_time_series [["context_model","purchase.reporting.context"],["domain","[[\\"product\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Purchases per Product"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","purchase.reporting.product.time_series"]] ir.action.act_window purchase f [["context_model","purchase.reporting.context"],["domain","[[\\"product\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Purchases per Product"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","purchase.reporting.product.time_series"]] \N \N +2556 2024-04-13 20:39:16.958214 0 301 act_reporting_product_time_series_list_view1 [["act_window",242],["sequence",10],["view",496]] ir.action.act_window.view purchase f [["act_window",242],["sequence",10],["view",496]] \N \N +2557 2024-04-13 20:39:16.958214 0 302 act_reporting_product_time_series_list_view2 [["act_window",242],["sequence",20],["view",497]] ir.action.act_window.view purchase f [["act_window",242],["sequence",20],["view",497]] \N \N +2558 2024-04-13 20:39:16.958214 0 303 act_reporting_product_time_series_list_view3 [["act_window",242],["sequence",30],["view",498]] ir.action.act_window.view purchase f [["act_window",242],["sequence",30],["view",498]] \N \N +2559 2024-04-13 20:39:16.958214 0 241 act_reporting_product_time_series_list_keyword1 [["action",242],["keyword","tree_open"],["model","purchase.reporting.product,-1"]] ir.action.keyword purchase f [["action",242],["keyword","tree_open"],["model","purchase.reporting.product,-1"]] \N \N +2560 2024-04-13 20:39:16.958214 0 55 rule_group_reporting_product_time_series_companies [["global_p",true],["model",306],["name","User in companies"]] ir.rule.group purchase f [["global_p",true],["model",306],["name","User in companies"]] \N \N +2561 2024-04-13 20:39:16.958214 0 59 rule_reporting_product_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",55]] ir.rule purchase f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",55]] \N \N +2562 2024-04-13 20:39:16.958214 0 210 access_reporting_product_time_series [["model",306],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access purchase f [["model",306],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2563 2024-04-13 20:39:16.958214 0 211 access_reporting_product_time_series_purchase [["group",14],["model",306],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",306],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2564 2024-04-13 20:39:16.958214 0 169 menu_configuration [["active",true],["icon","tryton-settings"],["name","Configuration"],["parent",163],["sequence",0]] ir.ui.menu purchase f [["active",true],["icon","tryton-settings"],["name","Configuration"],["parent",163],["sequence",0]] \N \N +2565 2024-04-13 20:39:16.958214 0 17 menu_configuration_group_purchase_admin [["group",15],["menu",169]] ir.ui.menu-res.group purchase f [["group",15],["menu",169]] \N \N +2566 2024-04-13 20:39:16.958214 0 499 purchase_configuration_view_form [["model","purchase.configuration"],["name","configuration_form"],["type","form"]] ir.ui.view purchase f [["model","purchase.configuration"],["name","configuration_form"],["type","form"]] \N \N +2567 2024-04-13 20:39:16.958214 0 243 act_purchase_configuration_form [["name","Configuration"],["res_model","purchase.configuration"]] ir.action.act_window purchase f [["name","Configuration"],["res_model","purchase.configuration"]] \N \N +2568 2024-04-13 20:39:16.958214 0 304 act_purchase_configuration_view1 [["act_window",243],["sequence",1],["view",499]] ir.action.act_window.view purchase f [["act_window",243],["sequence",1],["view",499]] \N \N +2569 2024-04-13 20:39:16.958214 0 170 menu_purchase_configuration [["action","ir.action.act_window,243"],["icon","tryton-list"],["name","Configuration"],["parent",169],["sequence",10]] ir.ui.menu purchase f [["action","ir.action.act_window,243"],["icon","tryton-list"],["name","Configuration"],["parent",169],["sequence",10]] \N \N +2570 2024-04-13 20:39:16.958214 0 212 access_purchase_configuration [["model",293],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["model",293],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2571 2024-04-13 20:39:16.958214 0 213 access_purchase_configuration_purchase_admin [["group",15],["model",293],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access purchase f [["group",15],["model",293],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +2572 2024-04-13 20:39:16.958214 0 500 party_view_form [["inherit",143],["model","party.party"],["name","party_form"]] ir.ui.view purchase f [["inherit",143],["model","party.party"],["name","party_form"]] \N \N +2573 2024-04-13 20:39:16.958214 0 33 access_party_supplier_currency [["field",3477],["perm_read",true],["perm_write",false]] ir.model.field.access purchase f [["field",3477],["perm_read",true],["perm_write",false]] \N \N +2574 2024-04-13 20:39:16.958214 0 34 access_party_supplier_currency_group_sale [["field",3477],["group",14],["perm_read",true],["perm_write",true]] ir.model.field.access purchase f [["field",3477],["group",14],["perm_read",true],["perm_write",true]] \N \N +2575 2024-04-13 20:39:16.958214 0 501 move_view_list_shipment [["model","stock.move"],["name","move_list_shipment"],["priority",20],["type","tree"]] ir.ui.view purchase f [["model","stock.move"],["name","move_list_shipment"],["priority",20],["type","tree"]] \N \N +2576 2024-04-13 20:39:16.958214 0 214 access_move_group_purchase [["group",14],["model",228],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",228],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2577 2024-04-13 20:39:16.958214 0 502 location_view_form [["inherit",346],["model","stock.location"],["name","location_form"]] ir.ui.view purchase f [["inherit",346],["model","stock.location"],["name","location_form"]] \N \N +2578 2024-04-13 20:39:16.958214 0 503 move_view_list_shipment_in [["inherit",368],["model","stock.move"],["name","move_list_shipment_in"]] ir.ui.view purchase f [["inherit",368],["model","stock.move"],["name","move_list_shipment_in"]] \N \N +2579 2024-04-13 20:39:16.958214 0 244 act_purchase_move_relate [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"purchase\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"purchase\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Moves"],["res_model","stock.move"]] ir.action.act_window purchase f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"purchase\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"purchase\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Moves"],["res_model","stock.move"]] \N \N +2580 2024-04-13 20:39:16.958214 0 305 act_move_form_view1 [["act_window",244],["sequence",10],["view",501]] ir.action.act_window.view purchase f [["act_window",244],["sequence",10],["view",501]] \N \N +2581 2024-04-13 20:39:16.958214 0 306 act_move_form_view2 [["act_window",244],["sequence",20],["view",365]] ir.action.act_window.view purchase f [["act_window",244],["sequence",20],["view",365]] \N \N +2582 2024-04-13 20:39:16.958214 0 243 act_move_form_keyword1 [["action",244],["keyword","form_relate"],["model","purchase.purchase,-1"]] ir.action.keyword purchase f [["action",244],["keyword","form_relate"],["model","purchase.purchase,-1"]] \N \N +2583 2024-04-13 20:39:16.958214 0 245 act_shipment_form [["domain","[[\\"moves.purchase\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Shipments"],["res_model","stock.shipment.in"]] ir.action.act_window purchase f [["domain","[[\\"moves.purchase\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Shipments"],["res_model","stock.shipment.in"]] \N \N +2584 2024-04-13 20:39:16.958214 0 244 act_open_shipment_keyword1 [["action",245],["keyword","form_relate"],["model","purchase.purchase,-1"]] ir.action.keyword purchase f [["action",245],["keyword","form_relate"],["model","purchase.purchase,-1"]] \N \N +2585 2024-04-13 20:39:16.958214 0 215 access_shipment_in_group_purchase [["group",14],["model",229],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",229],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2586 2024-04-13 20:39:16.958214 0 246 act_return_form [["domain","[[\\"moves.purchase\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Returns"],["res_model","stock.shipment.in.return"]] ir.action.act_window purchase f [["domain","[[\\"moves.purchase\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}]]"],["name","Returns"],["res_model","stock.shipment.in.return"]] \N \N +2587 2024-04-13 20:39:16.958214 0 245 act_open_shipment_return_keyword1 [["action",246],["keyword","form_relate"],["model","purchase.purchase,-1"]] ir.action.keyword purchase f [["action",246],["keyword","form_relate"],["model","purchase.purchase,-1"]] \N \N +2588 2024-04-13 20:39:16.958214 0 216 access_shipment_in_return_group_purchase [["group",14],["model",230],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",230],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2589 2024-04-13 20:39:16.958214 0 504 template_view_form [["inherit",297],["model","product.template"],["name","template_form"]] ir.ui.view purchase f [["inherit",297],["model","product.template"],["name","template_form"]] \N \N +2590 2024-04-13 20:39:16.958214 0 505 template_view_tree [["inherit",296],["model","product.template"],["name","template_tree"]] ir.ui.view purchase f [["inherit",296],["model","product.template"],["name","template_tree"]] \N \N +2591 2024-04-13 20:39:16.958214 0 506 product_view_list_purchase_line [["model","product.product"],["name","product_list_purchase_line"],["priority",20],["type","tree"]] ir.ui.view purchase f [["model","product.product"],["name","product_list_purchase_line"],["priority",20],["type","tree"]] \N \N +2592 2024-04-13 20:39:16.958214 0 247 act_invoice_form [["context",""],["domain","[[\\"lines.origin.purchase.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}, \\"purchase.line\\"]]"],["name","Invoices"],["res_model","account.invoice"]] ir.action.act_window purchase f [["context",""],["domain","[[\\"lines.origin.purchase.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}, \\"purchase.line\\"]]"],["name","Invoices"],["res_model","account.invoice"]] \N \N +2593 2024-04-13 20:39:16.958214 0 246 act_open_invoice_keyword1 [["action",247],["keyword","form_relate"],["model","purchase.purchase,-1"]] ir.action.keyword purchase f [["action",247],["keyword","form_relate"],["model","purchase.purchase,-1"]] \N \N +2594 2024-04-13 20:39:16.958214 0 217 access_invoice_purchase [["group",14],["model",266],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",266],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2595 2024-04-13 20:39:16.958214 0 218 access_invoice_line_purchase [["group",14],["model",270],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access purchase f [["group",14],["model",270],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2596 2024-04-13 20:39:16.958214 0 322 msg_change_purchase_uom [["text","You are trying to change the purchase unit of measurer on which the purchase prices are based."]] ir.message purchase f [["text","You are trying to change the purchase unit of measurer on which the purchase prices are based."]] \N \N +2597 2024-04-13 20:39:16.958214 0 323 msg_erase_party_pending_purchase [["text","You cannot erase party \\"%(party)s\\" while they have pending purchases with company \\"%(company)s\\"."]] ir.message purchase f [["text","You cannot erase party \\"%(party)s\\" while they have pending purchases with company \\"%(company)s\\"."]] \N \N +2598 2024-04-13 20:39:16.958214 0 324 msg_warehouse_required_for_quotation [["text","To get a quote for the purchase \\"%(purchase)s\\" you must enter a warehouse."]] ir.message purchase f [["text","To get a quote for the purchase \\"%(purchase)s\\" you must enter a warehouse."]] \N \N +2599 2024-04-13 20:39:16.958214 0 325 msg_purchase_delete_cancel [["text","To delete purchase \\"%(purchase)s\\" you must cancel it."]] ir.message purchase f [["text","To delete purchase \\"%(purchase)s\\" you must cancel it."]] \N \N +2600 2024-04-13 20:39:16.958214 0 326 msg_purchase_supplier_location_required [["text","To process purchase \\"%(purchase)s\\" you must set a supplier location on party \\"%(party)s\\"."]] ir.message purchase f [["text","To process purchase \\"%(purchase)s\\" you must set a supplier location on party \\"%(party)s\\"."]] \N \N +2601 2024-04-13 20:39:16.958214 0 327 msg_purchase_product_missing_account_expense [["text","To invoice purchase \\"%(purchase)s\\" you must define an account expense for product \\"%(product)s\\"."]] ir.message purchase f [["text","To invoice purchase \\"%(purchase)s\\" you must define an account expense for product \\"%(product)s\\"."]] \N \N +2602 2024-04-13 20:39:16.958214 0 328 msg_purchase_missing_account_expense [["text","To invoice purchase \\"%(purchase)s\\" you must configure a default account expense."]] ir.message purchase f [["text","To invoice purchase \\"%(purchase)s\\" you must configure a default account expense."]] \N \N +2603 2024-04-13 20:39:16.958214 0 329 msg_purchase_line_delete_cancel_draft [["text","To delete line \\"%(line)s\\" you must cancel or reset to draft purchase \\"%(purchase)s\\"."]] ir.message purchase f [["text","To delete line \\"%(line)s\\" you must cancel or reset to draft purchase \\"%(purchase)s\\"."]] \N \N +2604 2024-04-13 20:39:16.958214 0 330 msg_purchase_line_move_quantity [["text","The purchase line \\"%(line)s\\" is moving %(extra)s in addition to the %(quantity)s ordered."]] ir.message purchase f [["text","The purchase line \\"%(line)s\\" is moving %(extra)s in addition to the %(quantity)s ordered."]] \N \N +2605 2024-04-13 20:39:16.958214 0 331 msg_purchase_modify_header_draft [["text","To modify the header of purchase \\"%(purchase)s\\", it must be in draft state."]] ir.message purchase f [["text","To modify the header of purchase \\"%(purchase)s\\", it must be in draft state."]] \N \N +2606 2024-04-13 20:39:16.958214 0 332 msg_purchase_invoice_reset_draft [["text","You cannot reset invoice \\"%(invoice)s\\" to draft because it was generated by a purchase."]] ir.message purchase f [["text","You cannot reset invoice \\"%(invoice)s\\" to draft because it was generated by a purchase."]] \N \N +2607 2024-04-13 20:39:16.958214 0 333 msg_purchase_move_reset_draft [["text","You cannot reset move \\"%(move)s\\" to draft because it was generated by a purchase."]] ir.message purchase f [["text","You cannot reset move \\"%(move)s\\" to draft because it was generated by a purchase."]] \N \N +2608 2024-04-13 20:39:16.958214 0 334 msg_purchase_line_create_draft [["text","You cannot add lines to purchase \\"%(purchase)s\\" because it is no longer in a draft state."]] ir.message purchase f [["text","You cannot add lines to purchase \\"%(purchase)s\\" because it is no longer in a draft state."]] \N \N +2609 2024-04-13 20:39:16.958214 0 335 msg_purchase_line_tax_unique [["text","A tax can be added only once to a purchase line."]] ir.message purchase f [["text","A tax can be added only once to a purchase line."]] \N \N +2610 2024-04-13 20:39:16.958214 0 336 msg_purchase_reporting_company [["text","Company"]] ir.message purchase f [["text","Company"]] \N \N +2611 2024-04-13 20:39:16.958214 0 337 msg_purchase_reporting_number [["text","#"]] ir.message purchase f [["text","#"]] \N \N +2612 2024-04-13 20:39:16.958214 0 338 msg_purchase_reporting_number_help [["text","Number of purchases."]] ir.message purchase f [["text","Number of purchases."]] \N \N +2613 2024-04-13 20:39:16.958214 0 339 msg_purchase_reporting_expense [["text","Expense"]] ir.message purchase f [["text","Expense"]] \N \N +2614 2024-04-13 20:39:16.958214 0 340 msg_purchase_reporting_expense_trend [["text","Expense Trend"]] ir.message purchase f [["text","Expense Trend"]] \N \N +2615 2024-04-13 20:39:16.958214 0 341 msg_purchase_reporting_currency [["text","Currency"]] ir.message purchase f [["text","Currency"]] \N \N +2616 2024-04-13 20:39:16.958214 0 342 msg_purchase_reporting_date [["text","Date"]] ir.message purchase f [["text","Date"]] \N \N +2617 2024-04-13 20:39:16.958214 0 343 msg_purchase_reporting_time_series [["text","Time Series"]] ir.message purchase f [["text","Time Series"]] \N \N +2618 2024-04-13 20:39:19.14446 0 16 group_sale [["name","Sales"]] res.group sale f [["name","Sales"]] \N \N +2619 2024-04-13 20:39:19.14446 0 17 group_sale_admin [["name","Sales Administrator"],["parent",16]] res.group sale f [["name","Sales Administrator"],["parent",16]] \N \N +2620 2024-04-13 20:39:19.14446 0 16 user_admin_group_sale [["group",16],["user",1]] res.user-res.group sale f [["group",16],["user",1]] \N \N +2621 2024-04-13 20:39:19.14446 0 17 user_admin_group_sale_admin [["group",17],["user",1]] res.user-res.group sale f [["group",17],["user",1]] \N \N +2622 2024-04-13 20:39:19.14446 0 23 sale_icon [["name","tryton-sale"],["path","icons/tryton-sale.svg"]] ir.ui.icon sale f [["name","tryton-sale"],["path","icons/tryton-sale.svg"]] \N \N +2623 2024-04-13 20:39:19.14446 0 171 menu_sale [["icon","tryton-sale"],["name","Sales"],["sequence",80]] ir.ui.menu sale f [["icon","tryton-sale"],["name","Sales"],["sequence",80]] \N \N +2624 2024-04-13 20:39:19.14446 0 18 menu_sale_group_sale [["group",16],["menu",171]] ir.ui.menu-res.group sale f [["group",16],["menu",171]] \N \N +2625 2024-04-13 20:39:19.14446 0 248 wizard_shipment_handle_exception [["model","sale.sale"],["name","Handle Shipment Exception"],["wiz_name","sale.handle.shipment.exception"]] ir.action.wizard sale f [["model","sale.sale"],["name","Handle Shipment Exception"],["wiz_name","sale.handle.shipment.exception"]] \N \N +2626 2024-04-13 20:39:19.14446 0 249 wizard_invoice_handle_exception [["model","sale.sale"],["name","Handle Invoice Exception"],["wiz_name","sale.handle.invoice.exception"]] ir.action.wizard sale f [["model","sale.sale"],["name","Handle Invoice Exception"],["wiz_name","sale.handle.invoice.exception"]] \N \N +2627 2024-04-13 20:39:19.14446 0 507 sale_view_form [["model","sale.sale"],["name","sale_form"],["type","form"]] ir.ui.view sale f [["model","sale.sale"],["name","sale_form"],["type","form"]] \N \N +2628 2024-04-13 20:39:19.14446 0 508 sale_view_tree [["model","sale.sale"],["name","sale_tree"],["type","tree"]] ir.ui.view sale f [["model","sale.sale"],["name","sale_tree"],["type","tree"]] \N \N +2629 2024-04-13 20:39:19.14446 0 509 handle_shipment_exception_ask_view_form [["model","sale.handle.shipment.exception.ask"],["name","handle_shipment_exception_ask_form"],["type","form"]] ir.ui.view sale f [["model","sale.handle.shipment.exception.ask"],["name","handle_shipment_exception_ask_form"],["type","form"]] \N \N +2630 2024-04-13 20:39:19.14446 0 510 handle_invoice_exception_ask_view_form [["model","sale.handle.invoice.exception.ask"],["name","handle_invoice_exception_ask_form"],["type","form"]] ir.ui.view sale f [["model","sale.handle.invoice.exception.ask"],["name","handle_invoice_exception_ask_form"],["type","form"]] \N \N +2631 2024-04-13 20:39:19.14446 0 250 act_shipment_form [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"moves.sale\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"moves.sale\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Shipments"],["res_model","stock.shipment.out"]] ir.action.act_window sale f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"moves.sale\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"moves.sale\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Shipments"],["res_model","stock.shipment.out"]] \N \N +2632 2024-04-13 20:39:19.14446 0 247 act_open_shipment_keyword1 [["action",250],["keyword","form_relate"],["model","sale.sale,-1"]] ir.action.keyword sale f [["action",250],["keyword","form_relate"],["model","sale.sale,-1"]] \N \N +2633 2024-04-13 20:39:19.14446 0 251 act_return_form [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"moves.sale\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"moves.sale\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Returns"],["res_model","stock.shipment.out.return"]] ir.action.act_window sale f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"moves.sale\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"moves.sale\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Returns"],["res_model","stock.shipment.out.return"]] \N \N +2634 2024-04-13 20:39:19.14446 0 248 act_open_shipment_return_keyword1 [["action",251],["keyword","form_relate"],["model","sale.sale,-1"]] ir.action.keyword sale f [["action",251],["keyword","form_relate"],["model","sale.sale,-1"]] \N \N +2635 2024-04-13 20:39:19.14446 0 252 act_sale_form [["name","Sales"],["res_model","sale.sale"],["search_value",""]] ir.action.act_window sale f [["name","Sales"],["res_model","sale.sale"],["search_value",""]] \N \N +2636 2024-04-13 20:39:19.14446 0 307 act_sale_form_view1 [["act_window",252],["sequence",10],["view",508]] ir.action.act_window.view sale f [["act_window",252],["sequence",10],["view",508]] \N \N +2637 2024-04-13 20:39:19.14446 0 308 act_sale_form_view2 [["act_window",252],["sequence",20],["view",507]] ir.action.act_window.view sale f [["act_window",252],["sequence",20],["view",507]] \N \N +2638 2024-04-13 20:39:19.14446 0 62 act_sale_form_domain_draft [["act_window",252],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain sale f [["act_window",252],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2639 2024-04-13 20:39:19.14446 0 63 act_sale_form_domain_quotation [["act_window",252],["count",true],["domain","[[\\"state\\", \\"=\\", \\"quotation\\"]]"],["name","Quotation"],["sequence",20]] ir.action.act_window.domain sale f [["act_window",252],["count",true],["domain","[[\\"state\\", \\"=\\", \\"quotation\\"]]"],["name","Quotation"],["sequence",20]] \N \N +2640 2024-04-13 20:39:19.14446 0 64 act_sale_form_domain_confirmed [["act_window",252],["count",true],["domain","[[\\"state\\", \\"=\\", \\"confirmed\\"]]"],["name","Confirmed"],["sequence",30]] ir.action.act_window.domain sale f [["act_window",252],["count",true],["domain","[[\\"state\\", \\"=\\", \\"confirmed\\"]]"],["name","Confirmed"],["sequence",30]] \N \N +2641 2024-04-13 20:39:19.14446 0 65 act_sale_form_domain_processing [["act_window",252],["count",true],["domain","[[\\"state\\", \\"=\\", \\"processing\\"]]"],["name","Processing"],["sequence",40]] ir.action.act_window.domain sale f [["act_window",252],["count",true],["domain","[[\\"state\\", \\"=\\", \\"processing\\"]]"],["name","Processing"],["sequence",40]] \N \N +2642 2024-04-13 20:39:19.14446 0 66 act_sale_form_domain_exception [["act_window",252],["count",true],["domain","[\\"OR\\", [\\"invoice_state\\", \\"=\\", \\"exception\\"], [\\"shipment_state\\", \\"=\\", \\"exception\\"]]"],["name","Exception"],["sequence",50]] ir.action.act_window.domain sale f [["act_window",252],["count",true],["domain","[\\"OR\\", [\\"invoice_state\\", \\"=\\", \\"exception\\"], [\\"shipment_state\\", \\"=\\", \\"exception\\"]]"],["name","Exception"],["sequence",50]] \N \N +2643 2024-04-13 20:39:19.14446 0 67 act_sale_form_domain_all [["act_window",252],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain sale f [["act_window",252],["domain",""],["name","All"],["sequence",9999]] \N \N +2644 2024-04-13 20:39:19.14446 0 172 menu_sale_form [["action","ir.action.act_window,252"],["icon","tryton-list"],["name","Sales"],["parent",171],["sequence",10]] ir.ui.menu sale f [["action","ir.action.act_window,252"],["icon","tryton-list"],["name","Sales"],["parent",171],["sequence",10]] \N \N +2645 2024-04-13 20:39:19.14446 0 253 act_sale_relate [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Sales"],["res_model","sale.sale"]] ir.action.act_window sale f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"party\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Sales"],["res_model","sale.sale"]] \N \N +2646 2024-04-13 20:39:19.14446 0 309 act_sale_relate_view1 [["act_window",253],["sequence",10],["view",508]] ir.action.act_window.view sale f [["act_window",253],["sequence",10],["view",508]] \N \N +2647 2024-04-13 20:39:19.14446 0 310 act_sale_relate_view2 [["act_window",253],["sequence",20],["view",507]] ir.action.act_window.view sale f [["act_window",253],["sequence",20],["view",507]] \N \N +2648 2024-04-13 20:39:19.14446 0 68 act_sale_relate_pending [["act_window",253],["count",true],["domain","[[\\"state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] ir.action.act_window.domain sale f [["act_window",253],["count",true],["domain","[[\\"state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] \N \N +2649 2024-04-13 20:39:19.14446 0 69 act_sale_relate_done [["act_window",253],["count",true],["domain","[[\\"state\\", \\"=\\", \\"done\\"]]"],["name","Done"],["sequence",20]] ir.action.act_window.domain sale f [["act_window",253],["count",true],["domain","[[\\"state\\", \\"=\\", \\"done\\"]]"],["name","Done"],["sequence",20]] \N \N +2650 2024-04-13 20:39:19.14446 0 70 act_sale_relate_all [["act_window",253],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain sale f [["act_window",253],["domain",""],["name","All"],["sequence",9999]] \N \N +2651 2024-04-13 20:39:19.14446 0 250 act_sale_relate_keyword_party [["action",253],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword sale f [["action",253],["keyword","form_relate"],["model","party.party,-1"]] \N \N +2682 2024-04-13 20:39:19.14446 0 254 report_sale_keyword [["action",255],["keyword","form_print"],["model","sale.sale,-1"]] ir.action.keyword sale f [["action",255],["keyword","form_print"],["model","sale.sale,-1"]] \N \N +2683 2024-04-13 20:39:19.14446 0 511 sale_line_view_form [["model","sale.line"],["name","sale_line_form"],["type","form"]] ir.ui.view sale f [["model","sale.line"],["name","sale_line_form"],["type","form"]] \N \N +2684 2024-04-13 20:39:19.14446 0 512 sale_line_view_tree [["model","sale.line"],["name","sale_line_tree"],["priority",10],["type","tree"]] ir.ui.view sale f [["model","sale.line"],["name","sale_line_tree"],["priority",10],["type","tree"]] \N \N +2685 2024-04-13 20:39:19.14446 0 513 sale_line_view_tree_sequence [["model","sale.line"],["name","sale_line_tree_sequence"],["priority",20],["type","tree"]] ir.ui.view sale f [["model","sale.line"],["name","sale_line_tree_sequence"],["priority",20],["type","tree"]] \N \N +2652 2024-04-13 20:39:19.14446 0 254 act_sale_relate_simple [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"account.invoice\\"}, \\"e\\": [], \\"t\\": [\\"invoices\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"stock.shipment.out\\"}, \\"e\\": [], \\"t\\": [\\"shipments\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"stock.shipment.out.return\\"}, \\"e\\": [], \\"t\\": [\\"shipment_returns\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Sales"],["res_model","sale.sale"]] ir.action.act_window sale f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"account.invoice\\"}, \\"e\\": [], \\"t\\": [\\"invoices\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"stock.shipment.out\\"}, \\"e\\": [], \\"t\\": [\\"shipments\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"stock.shipment.out.return\\"}, \\"e\\": [], \\"t\\": [\\"shipment_returns\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Sales"],["res_model","sale.sale"]] \N \N +2653 2024-04-13 20:39:19.14446 0 311 act_sale_relate_simple_view1 [["act_window",254],["sequence",10],["view",508]] ir.action.act_window.view sale f [["act_window",254],["sequence",10],["view",508]] \N \N +2654 2024-04-13 20:39:19.14446 0 312 act_sale_relate_simple_view2 [["act_window",254],["sequence",20],["view",507]] ir.action.act_window.view sale f [["act_window",254],["sequence",20],["view",507]] \N \N +2655 2024-04-13 20:39:19.14446 0 251 act_sale_relate_simple_keyword_invoice [["action",254],["keyword","form_relate"],["model","account.invoice,-1"]] ir.action.keyword sale f [["action",254],["keyword","form_relate"],["model","account.invoice,-1"]] \N \N +2656 2024-04-13 20:39:19.14446 0 252 act_sale_relate_simple_keyword_shipment_out [["action",254],["keyword","form_relate"],["model","stock.shipment.out,-1"]] ir.action.keyword sale f [["action",254],["keyword","form_relate"],["model","stock.shipment.out,-1"]] \N \N +2657 2024-04-13 20:39:19.14446 0 253 act_sale_relate_simple_keyword_shipment_out_return [["action",254],["keyword","form_relate"],["model","stock.shipment.out.return,-1"]] ir.action.keyword sale f [["action",254],["keyword","form_relate"],["model","stock.shipment.out.return,-1"]] \N \N +2658 2024-04-13 20:39:19.14446 0 219 access_sale [["model",307],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",307],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2659 2024-04-13 20:39:19.14446 0 220 access_sale_sale [["group",16],["model",307],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] ir.model.access sale f [["group",16],["model",307],["perm_create",true],["perm_delete",true],["perm_read",true],["perm_write",true]] \N \N +2660 2024-04-13 20:39:19.14446 0 56 rule_group_sale_companies [["global_p",true],["model",307],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",307],["name","User in companies"]] \N \N +2661 2024-04-13 20:39:19.14446 0 60 rule_sale_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",56]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",56]] \N \N +2662 2024-04-13 20:39:19.14446 0 89 sale_cancel_button [["model",307],["name","cancel"],["string","Cancel"]] ir.model.button sale f [["model",307],["name","cancel"],["string","Cancel"]] \N \N +2663 2024-04-13 20:39:19.14446 0 90 sale_draft_button [["model",307],["name","draft"],["string","Draft"]] ir.model.button sale f [["model",307],["name","draft"],["string","Draft"]] \N \N +2664 2024-04-13 20:39:19.14446 0 91 sale_quote_button [["model",307],["name","quote"],["string","Quote"]] ir.model.button sale f [["model",307],["name","quote"],["string","Quote"]] \N \N +2665 2024-04-13 20:39:19.14446 0 92 sale_confirm_button [["model",307],["name","confirm"],["string","Confirm"]] ir.model.button sale f [["model",307],["name","confirm"],["string","Confirm"]] \N \N +2666 2024-04-13 20:39:19.14446 0 93 sale_process_button [["model",307],["name","process"],["string","Process"]] ir.model.button sale f [["model",307],["name","process"],["string","Process"]] \N \N +2667 2024-04-13 20:39:19.14446 0 18 sale_process_button_group_sale_admin [["button",93],["group",17]] ir.model.button-res.group sale f [["button",93],["group",17]] \N \N +2668 2024-04-13 20:39:19.14446 0 94 sale_manual_invoice_button [["model",307],["name","manual_invoice"],["string","Create Invoice"]] ir.model.button sale f [["model",307],["name","manual_invoice"],["string","Create Invoice"]] \N \N +2669 2024-04-13 20:39:19.14446 0 19 sale_manual_invoice_button_group_sale [["button",94],["group",16]] ir.model.button-res.group sale f [["button",94],["group",16]] \N \N +2670 2024-04-13 20:39:19.14446 0 20 sale_manual_invoice_button_group_account [["button",94],["group",6]] ir.model.button-res.group sale f [["button",94],["group",6]] \N \N +2671 2024-04-13 20:39:19.14446 0 95 sale_manual_shipment_button [["model",307],["name","manual_shipment"],["string","Create Shipment"]] ir.model.button sale f [["model",307],["name","manual_shipment"],["string","Create Shipment"]] \N \N +2672 2024-04-13 20:39:19.14446 0 21 sale_manual_shipment_button_group_sale [["button",95],["group",16]] ir.model.button-res.group sale f [["button",95],["group",16]] \N \N +2673 2024-04-13 20:39:19.14446 0 22 sale_manual_shipment_button_group_stock [["button",95],["group",11]] ir.model.button-res.group sale f [["button",95],["group",11]] \N \N +2674 2024-04-13 20:39:19.14446 0 96 sale_modify_header_button [["model",307],["name","modify_header"],["string","Modify Header"]] ir.model.button sale f [["model",307],["name","modify_header"],["string","Modify Header"]] \N \N +2675 2024-04-13 20:39:19.14446 0 97 sale_handle_shipment_exception_button [["model",307],["name","handle_shipment_exception"],["string","Handle Shipment Exception"]] ir.model.button sale f [["model",307],["name","handle_shipment_exception"],["string","Handle Shipment Exception"]] \N \N +2676 2024-04-13 20:39:19.14446 0 98 sale_handle_invoice_exception_button [["model",307],["name","handle_invoice_exception"],["string","Handle Invoice Exception"]] ir.model.button sale f [["model",307],["name","handle_invoice_exception"],["string","Handle Invoice Exception"]] \N \N +2677 2024-04-13 20:39:19.14446 0 15 sequence_type_sale [["name","Sale"]] ir.sequence.type sale f [["name","Sale"]] \N \N +2678 2024-04-13 20:39:19.14446 0 29 sequence_type_sale_group_admin [["group",1],["sequence_type",15]] ir.sequence.type-res.group sale f [["group",1],["sequence_type",15]] \N \N +2686 2024-04-13 20:39:19.14446 0 256 act_sale_line_relate [["domain","[[\\"type\\", \\"=\\", \\"line\\"], {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"sale.sale\\"}, \\"e\\": [], \\"t\\": [\\"sale\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.product\\"}, \\"e\\": [], \\"t\\": [\\"product\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": [], \\"t\\": [\\"product.template.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"customer\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Sale Lines"],["res_model","sale.line"]] ir.action.act_window sale f [["domain","[[\\"type\\", \\"=\\", \\"line\\"], {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"sale.sale\\"}, \\"e\\": [], \\"t\\": [\\"sale\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.product\\"}, \\"e\\": [], \\"t\\": [\\"product\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"product.template\\"}, \\"e\\": [], \\"t\\": [\\"product.template.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}, {\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"party.party\\"}, \\"e\\": [], \\"t\\": [\\"customer\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]}]"],["name","Sale Lines"],["res_model","sale.line"]] \N \N +2687 2024-04-13 20:39:19.14446 0 313 act_sale_line_relate_view1 [["act_window",256],["sequence",10],["view",512]] ir.action.act_window.view sale f [["act_window",256],["sequence",10],["view",512]] \N \N +2688 2024-04-13 20:39:19.14446 0 314 act_sale_line_relate_view2 [["act_window",256],["sequence",20],["view",511]] ir.action.act_window.view sale f [["act_window",256],["sequence",20],["view",511]] \N \N +2689 2024-04-13 20:39:19.14446 0 71 act_sale_line_relate_pending [["act_window",256],["count",true],["domain","[[\\"sale_state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] ir.action.act_window.domain sale f [["act_window",256],["count",true],["domain","[[\\"sale_state\\", \\"not in\\", [\\"done\\", \\"cancelled\\"]]]"],["name","Pending"],["sequence",10]] \N \N +2690 2024-04-13 20:39:19.14446 0 72 act_sale_line_relate_done [["act_window",256],["count",true],["domain","[[\\"sale_state\\", \\"=\\", \\"done\\"]]"],["name","Done"],["sequence",20]] ir.action.act_window.domain sale f [["act_window",256],["count",true],["domain","[[\\"sale_state\\", \\"=\\", \\"done\\"]]"],["name","Done"],["sequence",20]] \N \N +2691 2024-04-13 20:39:19.14446 0 73 act_sale_line_relate_all [["act_window",256],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain sale f [["act_window",256],["domain",""],["name","All"],["sequence",9999]] \N \N +2692 2024-04-13 20:39:19.14446 0 255 act_sale_line_relate_keyword_sale [["action",256],["keyword","form_relate"],["model","sale.sale,-1"]] ir.action.keyword sale f [["action",256],["keyword","form_relate"],["model","sale.sale,-1"]] \N \N +2693 2024-04-13 20:39:19.14446 0 256 act_sale_line_relate_keyword_product [["action",256],["keyword","form_relate"],["model","product.product,-1"]] ir.action.keyword sale f [["action",256],["keyword","form_relate"],["model","product.product,-1"]] \N \N +2694 2024-04-13 20:39:19.14446 0 257 act_sale_line_relate_keyword_product_template [["action",256],["keyword","form_relate"],["model","product.template,-1"]] ir.action.keyword sale f [["action",256],["keyword","form_relate"],["model","product.template,-1"]] \N \N +2695 2024-04-13 20:39:19.14446 0 258 act_sale_line_relate_keyword_party [["action",256],["keyword","form_relate"],["model","party.party,-1"]] ir.action.keyword sale f [["action",256],["keyword","form_relate"],["model","party.party,-1"]] \N \N +2696 2024-04-13 20:39:19.14446 0 514 return_sale_start_view_form [["model","sale.return_sale.start"],["name","return_sale_start_form"],["type","form"]] ir.ui.view sale f [["model","sale.return_sale.start"],["name","return_sale_start_form"],["type","form"]] \N \N +2697 2024-04-13 20:39:19.14446 0 257 wizard_return_sale [["model","sale.sale"],["name","Return Sale"],["wiz_name","sale.return_sale"]] ir.action.wizard sale f [["model","sale.sale"],["name","Return Sale"],["wiz_name","sale.return_sale"]] \N \N +2698 2024-04-13 20:39:19.14446 0 259 act_wizard_return_sale_keyword [["action",257],["keyword","form_action"],["model","sale.sale,-1"]] ir.action.keyword sale f [["action",257],["keyword","form_action"],["model","sale.sale,-1"]] \N \N +2699 2024-04-13 20:39:19.14446 0 258 wizard_modify_header [["model","sale.sale"],["name","Modify Header"],["wiz_name","sale.modify_header"]] ir.action.wizard sale f [["model","sale.sale"],["name","Modify Header"],["wiz_name","sale.modify_header"]] \N \N +2700 2024-04-13 20:39:19.14446 0 515 modify_header_form [["domain","{\\"__class__\\": \\"Get\\", \\"d\\": false, \\"k\\": \\"modify_header\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}"],["inherit",507],["model","sale.sale"],["name","modify_header_form"]] ir.ui.view sale f [["domain","{\\"__class__\\": \\"Get\\", \\"d\\": false, \\"k\\": \\"modify_header\\", \\"v\\": {\\"__class__\\": \\"Eval\\", \\"d\\": {}, \\"v\\": \\"context\\"}}"],["inherit",507],["model","sale.sale"],["name","modify_header_form"]] \N \N +2701 2024-04-13 20:39:19.14446 0 173 menu_configuration [["icon","tryton-settings"],["name","Configuration"],["parent",171],["sequence",0]] ir.ui.menu sale f [["icon","tryton-settings"],["name","Configuration"],["parent",171],["sequence",0]] \N \N +2702 2024-04-13 20:39:19.14446 0 19 menu_configuration_group_sale_admin [["group",17],["menu",173]] ir.ui.menu-res.group sale f [["group",17],["menu",173]] \N \N +2703 2024-04-13 20:39:19.14446 0 516 sale_configuration_view_form [["model","sale.configuration"],["name","configuration_form"],["type","form"]] ir.ui.view sale f [["model","sale.configuration"],["name","configuration_form"],["type","form"]] \N \N +2704 2024-04-13 20:39:19.14446 0 259 act_sale_configuration_form [["name","Configuration"],["res_model","sale.configuration"]] ir.action.act_window sale f [["name","Configuration"],["res_model","sale.configuration"]] \N \N +2705 2024-04-13 20:39:19.14446 0 315 act_sale_configuration_view1 [["act_window",259],["sequence",1],["view",516]] ir.action.act_window.view sale f [["act_window",259],["sequence",1],["view",516]] \N \N +2706 2024-04-13 20:39:19.14446 0 174 menu_sale_configuration [["action","ir.action.act_window,259"],["icon","tryton-list"],["name","Configuration"],["parent",173],["sequence",10]] ir.ui.menu sale f [["action","ir.action.act_window,259"],["icon","tryton-list"],["name","Configuration"],["parent",173],["sequence",10]] \N \N +2707 2024-04-13 20:39:19.14446 0 221 access_sale_configuration [["model",322],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["model",322],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2708 2024-04-13 20:39:19.14446 0 222 access_sale_configuration_sale_admin [["group",17],["model",322],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] ir.model.access sale f [["group",17],["model",322],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",true]] \N \N +2709 2024-04-13 20:39:19.14446 0 175 menu_reporting [["icon","tryton-folder"],["name","Reporting"],["parent",171],["sequence",100]] ir.ui.menu sale f [["icon","tryton-folder"],["name","Reporting"],["parent",171],["sequence",100]] \N \N +2710 2024-04-13 20:39:19.14446 0 176 menu_reporting_sale [["icon","tryton-graph"],["name","Sales"],["parent",175],["sequence",10]] ir.ui.menu sale f [["icon","tryton-graph"],["name","Sales"],["parent",175],["sequence",10]] \N \N +2711 2024-04-13 20:39:19.14446 0 517 reporting_context_view_form [["model","sale.reporting.context"],["name","sale_reporting_context_form"],["type","form"]] ir.ui.view sale f [["model","sale.reporting.context"],["name","sale_reporting_context_form"],["type","form"]] \N \N +2712 2024-04-13 20:39:19.14446 0 518 reporting_main_view_list [["model","sale.reporting.main"],["name","sale_reporting_main_list"],["type","tree"]] ir.ui.view sale f [["model","sale.reporting.main"],["name","sale_reporting_main_list"],["type","tree"]] \N \N +2713 2024-04-13 20:39:19.14446 0 519 reporting_main_view_graph_revenue [["model","sale.reporting.main"],["name","sale_reporting_main_graph_revenue"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.main"],["name","sale_reporting_main_graph_revenue"],["type","graph"]] \N \N +2714 2024-04-13 20:39:19.14446 0 520 reporting_main_view_graph_number [["model","sale.reporting.main"],["name","sale_reporting_main_graph_number"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.main"],["name","sale_reporting_main_graph_number"],["type","graph"]] \N \N +2715 2024-04-13 20:39:19.14446 0 260 act_reporting_main [["context_model","sale.reporting.context"],["name","Sales"],["res_model","sale.reporting.main"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["name","Sales"],["res_model","sale.reporting.main"]] \N \N +2716 2024-04-13 20:39:19.14446 0 316 act_reporting_main_view1 [["act_window",260],["sequence",10],["view",518]] ir.action.act_window.view sale f [["act_window",260],["sequence",10],["view",518]] \N \N +2717 2024-04-13 20:39:19.14446 0 261 act_reporting_main_keyword1 [["action",260],["keyword","tree_open"],["model","ir.ui.menu,176"]] ir.action.keyword sale f [["action",260],["keyword","tree_open"],["model","ir.ui.menu,176"]] \N \N +2718 2024-04-13 20:39:19.14446 0 57 rule_group_reporting_main_companies [["global_p",true],["model",326],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",326],["name","User in companies"]] \N \N +2719 2024-04-13 20:39:19.14446 0 61 rule_reporting_main_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",57]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",57]] \N \N +2720 2024-04-13 20:39:19.14446 0 223 access_reporting_main [["model",326],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",326],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2721 2024-04-13 20:39:19.14446 0 224 access_reporting_main_sale [["group",16],["model",326],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",326],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2722 2024-04-13 20:39:19.14446 0 521 reporting_main_time_series_view_list [["model","sale.reporting.main.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] ir.ui.view sale f [["model","sale.reporting.main.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] \N \N +2723 2024-04-13 20:39:19.14446 0 522 reporting_main_time_series_view_graph_revenue [["model","sale.reporting.main.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.main.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] \N \N +2724 2024-04-13 20:39:19.14446 0 523 reporting_main_time_series_view_graph_number [["model","sale.reporting.main.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.main.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2725 2024-04-13 20:39:19.14446 0 261 act_reporting_main_time_series [["context_model","sale.reporting.context"],["name","Sales"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.main.time_series"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["name","Sales"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.main.time_series"]] \N \N +2726 2024-04-13 20:39:19.14446 0 317 act_reporting_main_time_series_list_view1 [["act_window",261],["sequence",10],["view",521]] ir.action.act_window.view sale f [["act_window",261],["sequence",10],["view",521]] \N \N +2727 2024-04-13 20:39:19.14446 0 318 act_reporting_main_time_series_list_view2 [["act_window",261],["sequence",20],["view",522]] ir.action.act_window.view sale f [["act_window",261],["sequence",20],["view",522]] \N \N +2728 2024-04-13 20:39:19.14446 0 319 act_reporting_main_time_series_list_view3 [["act_window",261],["sequence",30],["view",523]] ir.action.act_window.view sale f [["act_window",261],["sequence",30],["view",523]] \N \N +2729 2024-04-13 20:39:19.14446 0 262 act_reporting_main_time_series_list_keyword1 [["action",261],["keyword","tree_open"],["model","sale.reporting.main,-1"]] ir.action.keyword sale f [["action",261],["keyword","tree_open"],["model","sale.reporting.main,-1"]] \N \N +2730 2024-04-13 20:39:19.14446 0 58 rule_group_reporting_main_time_series_companies [["global_p",true],["model",327],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",327],["name","User in companies"]] \N \N +2731 2024-04-13 20:39:19.14446 0 62 rule_reporting_main_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",58]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",58]] \N \N +2732 2024-04-13 20:39:19.14446 0 225 access_reporting_main_time_series [["model",327],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",327],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2733 2024-04-13 20:39:19.14446 0 226 access_reporting_main_time_series_sale [["group",16],["model",327],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",327],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2734 2024-04-13 20:39:19.14446 0 524 reporting_customer_view_list [["inherit",518],["model","sale.reporting.customer"],["name","sale_reporting_customer_list"],["type",null]] ir.ui.view sale f [["inherit",518],["model","sale.reporting.customer"],["name","sale_reporting_customer_list"],["type",null]] \N \N +2735 2024-04-13 20:39:19.14446 0 525 reporting_customer_view_graph_revenue [["inherit",519],["model","sale.reporting.customer"],["name","sale_reporting_customer_graph_revenue"],["type",null]] ir.ui.view sale f [["inherit",519],["model","sale.reporting.customer"],["name","sale_reporting_customer_graph_revenue"],["type",null]] \N \N +2804 2024-04-13 20:39:19.14446 0 64 rule_group_reporting_product_time_series_companies [["global_p",true],["model",334],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",334],["name","User in companies"]] \N \N +2736 2024-04-13 20:39:19.14446 0 526 reporting_customer_view_graph_number [["inherit",520],["model","sale.reporting.customer"],["name","sale_reporting_customer_graph_number"],["type",null]] ir.ui.view sale f [["inherit",520],["model","sale.reporting.customer"],["name","sale_reporting_customer_graph_number"],["type",null]] \N \N +2737 2024-04-13 20:39:19.14446 0 262 act_reporting_customer [["context_model","sale.reporting.context"],["domain","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"sale.reporting.customer.category.tree\\"}, \\"e\\": [], \\"t\\": [[\\"customer\\", \\"where\\", [[\\"categories\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]]]}"],["name","Sales per Customer"],["res_model","sale.reporting.customer"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"sale.reporting.customer.category.tree\\"}, \\"e\\": [], \\"t\\": [[\\"customer\\", \\"where\\", [[\\"categories\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]]]}"],["name","Sales per Customer"],["res_model","sale.reporting.customer"]] \N \N +2738 2024-04-13 20:39:19.14446 0 320 act_reporting_customer_view1 [["act_window",262],["sequence",10],["view",524]] ir.action.act_window.view sale f [["act_window",262],["sequence",10],["view",524]] \N \N +2739 2024-04-13 20:39:19.14446 0 321 act_reporting_customer_view2 [["act_window",262],["sequence",20],["view",525]] ir.action.act_window.view sale f [["act_window",262],["sequence",20],["view",525]] \N \N +2740 2024-04-13 20:39:19.14446 0 322 act_reporting_customer_view3 [["act_window",262],["sequence",30],["view",526]] ir.action.act_window.view sale f [["act_window",262],["sequence",30],["view",526]] \N \N +2741 2024-04-13 20:39:19.14446 0 263 act_reporting_customer_keyword1 [["action",262],["keyword","tree_open"],["model","ir.ui.menu,176"]] ir.action.keyword sale f [["action",262],["keyword","tree_open"],["model","ir.ui.menu,176"]] \N \N +2742 2024-04-13 20:39:19.14446 0 264 act_reporting_customer_keyword2 [["action",262],["keyword","tree_open"],["model","sale.reporting.customer.category.tree,-1"]] ir.action.keyword sale f [["action",262],["keyword","tree_open"],["model","sale.reporting.customer.category.tree,-1"]] \N \N +2743 2024-04-13 20:39:19.14446 0 59 rule_group_reporting_customer_companies [["global_p",true],["model",328],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",328],["name","User in companies"]] \N \N +2744 2024-04-13 20:39:19.14446 0 63 rule_reporting_customer_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",59]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",59]] \N \N +2745 2024-04-13 20:39:19.14446 0 227 access_reporting_customer [["model",328],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",328],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2746 2024-04-13 20:39:19.14446 0 228 access_reporting_customer_sale [["group",16],["model",328],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",328],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2747 2024-04-13 20:39:19.14446 0 527 reporting_customer_time_series_view_list [["model","sale.reporting.customer.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] ir.ui.view sale f [["model","sale.reporting.customer.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] \N \N +2748 2024-04-13 20:39:19.14446 0 528 reporting_customer_time_series_view_graph_revenue [["model","sale.reporting.customer.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.customer.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] \N \N +2749 2024-04-13 20:39:19.14446 0 529 reporting_customer_time_series_view_graph_number [["model","sale.reporting.customer.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.customer.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2750 2024-04-13 20:39:19.14446 0 263 act_reporting_customer_time_series [["context_model","sale.reporting.context"],["domain","[[\\"customer\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Customer"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.customer.time_series"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"customer\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Customer"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.customer.time_series"]] \N \N +2751 2024-04-13 20:39:19.14446 0 323 act_reporting_customer_time_series_list_view1 [["act_window",263],["sequence",10],["view",527]] ir.action.act_window.view sale f [["act_window",263],["sequence",10],["view",527]] \N \N +2752 2024-04-13 20:39:19.14446 0 324 act_reporting_customer_time_series_list_view2 [["act_window",263],["sequence",20],["view",528]] ir.action.act_window.view sale f [["act_window",263],["sequence",20],["view",528]] \N \N +2753 2024-04-13 20:39:19.14446 0 325 act_reporting_customer_time_series_list_view3 [["act_window",263],["sequence",30],["view",529]] ir.action.act_window.view sale f [["act_window",263],["sequence",30],["view",529]] \N \N +2754 2024-04-13 20:39:19.14446 0 265 act_reporting_customer_time_series_list_keyword1 [["action",263],["keyword","tree_open"],["model","sale.reporting.customer,-1"]] ir.action.keyword sale f [["action",263],["keyword","tree_open"],["model","sale.reporting.customer,-1"]] \N \N +2755 2024-04-13 20:39:19.14446 0 60 rule_group_reporting_customer_time_series_companies [["global_p",true],["model",329],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",329],["name","User in companies"]] \N \N +2756 2024-04-13 20:39:19.14446 0 64 rule_reporting_customer_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",60]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",60]] \N \N +2757 2024-04-13 20:39:19.14446 0 229 access_reporting_customer_time_series [["model",329],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",329],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2758 2024-04-13 20:39:19.14446 0 230 access_reporting_customer_time_series_sale [["group",16],["model",329],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",329],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2759 2024-04-13 20:39:19.14446 0 530 reporting_customer_category_view_tree [["field_childs","children"],["model","sale.reporting.customer.category.tree"],["name","sale_reporting_customer_category_tree"],["type","tree"]] ir.ui.view sale f [["field_childs","children"],["model","sale.reporting.customer.category.tree"],["name","sale_reporting_customer_category_tree"],["type","tree"]] \N \N +2760 2024-04-13 20:39:19.14446 0 264 act_reporting_customer_category_tree [["context_model","sale.reporting.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Sales per Customer Category"],["res_model","sale.reporting.customer.category.tree"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Sales per Customer Category"],["res_model","sale.reporting.customer.category.tree"]] \N \N +2761 2024-04-13 20:39:19.14446 0 326 act_reporting_customer_category_tree_view1 [["act_window",264],["sequence",10],["view",530]] ir.action.act_window.view sale f [["act_window",264],["sequence",10],["view",530]] \N \N +2762 2024-04-13 20:39:19.14446 0 266 act_reporting_customer_category_tree_keyword1 [["action",264],["keyword","tree_open"],["model","ir.ui.menu,176"]] ir.action.keyword sale f [["action",264],["keyword","tree_open"],["model","ir.ui.menu,176"]] \N \N +2763 2024-04-13 20:39:19.14446 0 531 reporting_customer_category_view_list [["inherit",518],["model","sale.reporting.customer.category"],["name","sale_reporting_customer_category_list"],["type",null]] ir.ui.view sale f [["inherit",518],["model","sale.reporting.customer.category"],["name","sale_reporting_customer_category_list"],["type",null]] \N \N +2764 2024-04-13 20:39:19.14446 0 265 act_reporting_customer_category [["context_model","sale.reporting.context"],["domain","[[\\"category\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]"],["name","Sales per Customer Category"],["res_model","sale.reporting.customer.category"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"category\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]"],["name","Sales per Customer Category"],["res_model","sale.reporting.customer.category"]] \N \N +2765 2024-04-13 20:39:19.14446 0 327 act_reporting_customer_category_view1 [["act_window",265],["sequence",10],["view",531]] ir.action.act_window.view sale f [["act_window",265],["sequence",10],["view",531]] \N \N +2766 2024-04-13 20:39:19.14446 0 267 act_reporting_customer_category_keyword1 [["action",265],["keyword","tree_open"],["model","sale.reporting.customer.category.tree,-1"]] ir.action.keyword sale f [["action",265],["keyword","tree_open"],["model","sale.reporting.customer.category.tree,-1"]] \N \N +2767 2024-04-13 20:39:19.14446 0 61 rule_group_reporting_customer_category_companies [["global_p",true],["model",330],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",330],["name","User in companies"]] \N \N +2768 2024-04-13 20:39:19.14446 0 65 rule_reporting_customer_category_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",61]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",61]] \N \N +2769 2024-04-13 20:39:19.14446 0 231 access_reporting_customer_category [["model",330],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",330],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2770 2024-04-13 20:39:19.14446 0 232 access_reporting_customer_category_sale [["group",16],["model",330],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",330],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2771 2024-04-13 20:39:19.14446 0 532 reporting_customer_category_time_series_view_list [["model","sale.reporting.customer.category.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] ir.ui.view sale f [["model","sale.reporting.customer.category.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] \N \N +2772 2024-04-13 20:39:19.14446 0 533 reporting_customer_category_time_series_view_graph_revenue [["model","sale.reporting.customer.category.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.customer.category.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] \N \N +2773 2024-04-13 20:39:19.14446 0 534 reporting_customer_category_time_series_view_graph_number [["model","sale.reporting.customer.category.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.customer.category.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2774 2024-04-13 20:39:19.14446 0 266 act_reporting_customer_category_time_series [["context_model","sale.reporting.context"],["domain","[[\\"category\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Party Category"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.customer.category.time_series"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"category\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Party Category"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.customer.category.time_series"]] \N \N +2775 2024-04-13 20:39:19.14446 0 328 act_reporting_customer_category_time_series_list_view1 [["act_window",266],["sequence",10],["view",532]] ir.action.act_window.view sale f [["act_window",266],["sequence",10],["view",532]] \N \N +2776 2024-04-13 20:39:19.14446 0 329 act_reporting_customer_category_time_series_list_view2 [["act_window",266],["sequence",20],["view",533]] ir.action.act_window.view sale f [["act_window",266],["sequence",20],["view",533]] \N \N +2777 2024-04-13 20:39:19.14446 0 330 act_reporting_customer_category_time_series_list_view3 [["act_window",266],["sequence",30],["view",534]] ir.action.act_window.view sale f [["act_window",266],["sequence",30],["view",534]] \N \N +2778 2024-04-13 20:39:19.14446 0 268 act_reporting_customer_category_time_series_list_keyword1 [["action",266],["keyword","tree_open"],["model","sale.reporting.customer.category,-1"]] ir.action.keyword sale f [["action",266],["keyword","tree_open"],["model","sale.reporting.customer.category,-1"]] \N \N +2779 2024-04-13 20:39:19.14446 0 62 rule_group_reporting_customer_category_time_series_companies [["global_p",true],["model",331],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",331],["name","User in companies"]] \N \N +2780 2024-04-13 20:39:19.14446 0 66 rule_reporting_customer_category_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",62]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",62]] \N \N +2850 2024-04-13 20:39:19.14446 0 345 act_reporting_country_time_series_view2 [["act_window",275],["sequence",20],["view",549]] ir.action.act_window.view sale f [["act_window",275],["sequence",20],["view",549]] \N \N +2781 2024-04-13 20:39:19.14446 0 233 access_reporting_customer_category_time_series [["model",331],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",331],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2782 2024-04-13 20:39:19.14446 0 234 access_reporting_customer_category_time_series_sale [["group",16],["model",331],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",331],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2783 2024-04-13 20:39:19.14446 0 535 reporting_product_view_list [["inherit",518],["model","sale.reporting.product"],["name","sale_reporting_product_list"],["type",null]] ir.ui.view sale f [["inherit",518],["model","sale.reporting.product"],["name","sale_reporting_product_list"],["type",null]] \N \N +2784 2024-04-13 20:39:19.14446 0 536 reporting_product_view_graph_revenue [["inherit",519],["model","sale.reporting.product"],["name","sale_reporting_product_graph_revenue"],["type",null]] ir.ui.view sale f [["inherit",519],["model","sale.reporting.product"],["name","sale_reporting_product_graph_revenue"],["type",null]] \N \N +2785 2024-04-13 20:39:19.14446 0 537 reporting_product_view_graph_number [["inherit",520],["model","sale.reporting.product"],["name","sale_reporting_product_graph_number"],["type",null]] ir.ui.view sale f [["inherit",520],["model","sale.reporting.product"],["name","sale_reporting_product_graph_number"],["type",null]] \N \N +2786 2024-04-13 20:39:19.14446 0 267 act_reporting_product [["context_model","sale.reporting.context"],["domain","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"sale.reporting.product.category.tree\\"}, \\"e\\": [], \\"t\\": [[\\"product\\", \\"where\\", [[\\"categories_all\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]]]}"],["name","Sales per Product"],["res_model","sale.reporting.product"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_model\\"}, \\"s2\\": \\"sale.reporting.product.category.tree\\"}, \\"e\\": [], \\"t\\": [[\\"product\\", \\"where\\", [[\\"categories_all\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]]]}"],["name","Sales per Product"],["res_model","sale.reporting.product"]] \N \N +2787 2024-04-13 20:39:19.14446 0 331 act_reporting_product_view1 [["act_window",267],["sequence",10],["view",535]] ir.action.act_window.view sale f [["act_window",267],["sequence",10],["view",535]] \N \N +2788 2024-04-13 20:39:19.14446 0 332 act_reporting_product_view2 [["act_window",267],["sequence",20],["view",536]] ir.action.act_window.view sale f [["act_window",267],["sequence",20],["view",536]] \N \N +2789 2024-04-13 20:39:19.14446 0 333 act_reporting_product_view3 [["act_window",267],["sequence",30],["view",537]] ir.action.act_window.view sale f [["act_window",267],["sequence",30],["view",537]] \N \N +2790 2024-04-13 20:39:19.14446 0 269 act_reporting_product_keyword1 [["action",267],["keyword","tree_open"],["model","ir.ui.menu,176"]] ir.action.keyword sale f [["action",267],["keyword","tree_open"],["model","ir.ui.menu,176"]] \N \N +2791 2024-04-13 20:39:19.14446 0 270 act_reporting_product_keyword2 [["action",267],["keyword","tree_open"],["model","sale.reporting.product.category.tree,-1"]] ir.action.keyword sale f [["action",267],["keyword","tree_open"],["model","sale.reporting.product.category.tree,-1"]] \N \N +2792 2024-04-13 20:39:19.14446 0 63 rule_group_reporting_product_companies [["global_p",true],["model",333],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",333],["name","User in companies"]] \N \N +2793 2024-04-13 20:39:19.14446 0 67 rule_reporting_product_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",63]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",63]] \N \N +2794 2024-04-13 20:39:19.14446 0 235 access_reporting_product [["model",333],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",333],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2795 2024-04-13 20:39:19.14446 0 236 access_reporting_product_sale [["group",16],["model",333],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",333],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2796 2024-04-13 20:39:19.14446 0 538 reporting_product_time_series_view_list [["model","sale.reporting.product.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] ir.ui.view sale f [["model","sale.reporting.product.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] \N \N +2797 2024-04-13 20:39:19.14446 0 539 reporting_product_time_series_view_graph_revenue [["model","sale.reporting.product.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.product.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] \N \N +2798 2024-04-13 20:39:19.14446 0 540 reporting_product_time_series_view_graph_number [["model","sale.reporting.product.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.product.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2799 2024-04-13 20:39:19.14446 0 268 act_reporting_product_time_series [["context_model","sale.reporting.context"],["domain","[[\\"product\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Product"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.product.time_series"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"product\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Product"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.product.time_series"]] \N \N +2800 2024-04-13 20:39:19.14446 0 334 act_reporting_product_time_series_list_view1 [["act_window",268],["sequence",10],["view",538]] ir.action.act_window.view sale f [["act_window",268],["sequence",10],["view",538]] \N \N +2801 2024-04-13 20:39:19.14446 0 335 act_reporting_product_time_series_list_view2 [["act_window",268],["sequence",20],["view",539]] ir.action.act_window.view sale f [["act_window",268],["sequence",20],["view",539]] \N \N +2802 2024-04-13 20:39:19.14446 0 336 act_reporting_product_time_series_list_view3 [["act_window",268],["sequence",30],["view",540]] ir.action.act_window.view sale f [["act_window",268],["sequence",30],["view",540]] \N \N +2803 2024-04-13 20:39:19.14446 0 271 act_reporting_product_time_series_list_keyword1 [["action",268],["keyword","tree_open"],["model","sale.reporting.product,-1"]] ir.action.keyword sale f [["action",268],["keyword","tree_open"],["model","sale.reporting.product,-1"]] \N \N +2805 2024-04-13 20:39:19.14446 0 68 rule_reporting_product_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",64]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",64]] \N \N +2806 2024-04-13 20:39:19.14446 0 237 access_reporting_product_time_series [["model",334],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",334],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2807 2024-04-13 20:39:19.14446 0 238 access_reporting_product_time_series_sale [["group",16],["model",334],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",334],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2808 2024-04-13 20:39:19.14446 0 541 reporting_product_category_view_tree [["field_childs","children"],["model","sale.reporting.product.category.tree"],["name","sale_reporting_product_category_tree"],["type","tree"]] ir.ui.view sale f [["field_childs","children"],["model","sale.reporting.product.category.tree"],["name","sale_reporting_product_category_tree"],["type","tree"]] \N \N +2809 2024-04-13 20:39:19.14446 0 269 act_reporting_product_category_tree [["context_model","sale.reporting.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Sales per Product Category"],["res_model","sale.reporting.product.category.tree"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Sales per Product Category"],["res_model","sale.reporting.product.category.tree"]] \N \N +2810 2024-04-13 20:39:19.14446 0 337 act_reporting_product_category_tree_view1 [["act_window",269],["sequence",10],["view",541]] ir.action.act_window.view sale f [["act_window",269],["sequence",10],["view",541]] \N \N +2811 2024-04-13 20:39:19.14446 0 272 act_reporting_product_category_tree_keyword1 [["action",269],["keyword","tree_open"],["model","ir.ui.menu,176"]] ir.action.keyword sale f [["action",269],["keyword","tree_open"],["model","ir.ui.menu,176"]] \N \N +2812 2024-04-13 20:39:19.14446 0 542 reporting_product_category_view_list [["inherit",518],["model","sale.reporting.product.category"],["name","sale_reporting_product_category_list"],["type",null]] ir.ui.view sale f [["inherit",518],["model","sale.reporting.product.category"],["name","sale_reporting_product_category_list"],["type",null]] \N \N +2813 2024-04-13 20:39:19.14446 0 270 act_reporting_product_category [["context_model","sale.reporting.context"],["domain","[[\\"category\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]"],["name","Sales per Product Category"],["res_model","sale.reporting.product.category"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"category\\", \\"child_of\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"parent\\"]]"],["name","Sales per Product Category"],["res_model","sale.reporting.product.category"]] \N \N +2814 2024-04-13 20:39:19.14446 0 338 act_reporting_product_category_view1 [["act_window",270],["sequence",10],["view",542]] ir.action.act_window.view sale f [["act_window",270],["sequence",10],["view",542]] \N \N +2815 2024-04-13 20:39:19.14446 0 273 act_reporting_product_category_keyword1 [["action",270],["keyword","tree_open"],["model","sale.reporting.product.category.tree,-1"]] ir.action.keyword sale f [["action",270],["keyword","tree_open"],["model","sale.reporting.product.category.tree,-1"]] \N \N +2816 2024-04-13 20:39:19.14446 0 65 rule_group_reporting_product_category_companies [["global_p",true],["model",335],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",335],["name","User in companies"]] \N \N +2817 2024-04-13 20:39:19.14446 0 69 rule_reporting_product_category_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",65]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",65]] \N \N +2818 2024-04-13 20:39:19.14446 0 239 access_reporting_product_category [["model",335],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",335],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2819 2024-04-13 20:39:19.14446 0 240 access_reporting_product_category_sale [["group",16],["model",335],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",335],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2820 2024-04-13 20:39:19.14446 0 543 reporting_product_category_time_series_view_list [["model","sale.reporting.product.category.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] ir.ui.view sale f [["model","sale.reporting.product.category.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] \N \N +2821 2024-04-13 20:39:19.14446 0 544 reporting_product_category_time_series_view_graph_revenue [["model","sale.reporting.product.category.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.product.category.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] \N \N +2822 2024-04-13 20:39:19.14446 0 545 reporting_product_category_time_series_view_graph_number [["model","sale.reporting.product.category.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.product.category.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2823 2024-04-13 20:39:19.14446 0 271 act_reporting_product_category_time_series [["context_model","sale.reporting.context"],["domain","[[\\"category\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Product Category"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.product.category.time_series"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"category\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Product Category"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.product.category.time_series"]] \N \N +2824 2024-04-13 20:39:19.14446 0 339 act_reporting_product_category_time_series_list_view1 [["act_window",271],["sequence",10],["view",543]] ir.action.act_window.view sale f [["act_window",271],["sequence",10],["view",543]] \N \N +2825 2024-04-13 20:39:19.14446 0 340 act_reporting_product_category_time_series_list_view2 [["act_window",271],["sequence",20],["view",544]] ir.action.act_window.view sale f [["act_window",271],["sequence",20],["view",544]] \N \N +2826 2024-04-13 20:39:19.14446 0 341 act_reporting_product_category_time_series_list_view3 [["act_window",271],["sequence",30],["view",545]] ir.action.act_window.view sale f [["act_window",271],["sequence",30],["view",545]] \N \N +2827 2024-04-13 20:39:19.14446 0 274 act_reporting_product_category_time_series_list_keyword1 [["action",271],["keyword","tree_open"],["model","sale.reporting.product.category,-1"]] ir.action.keyword sale f [["action",271],["keyword","tree_open"],["model","sale.reporting.product.category,-1"]] \N \N +2828 2024-04-13 20:39:19.14446 0 66 rule_group_reporting_product_category_time_series_companies [["global_p",true],["model",336],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",336],["name","User in companies"]] \N \N +2829 2024-04-13 20:39:19.14446 0 70 rule_reporting_product_category_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",66]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",66]] \N \N +2830 2024-04-13 20:39:19.14446 0 241 access_reporting_product_category_time_series [["model",336],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",336],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2831 2024-04-13 20:39:19.14446 0 242 access_reporting_product_category_time_series_sale [["group",16],["model",336],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",336],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2832 2024-04-13 20:39:19.14446 0 546 reporting_region_tree_view_tree [["field_childs","subregions"],["model","sale.reporting.region.tree"],["name","sale_reporting_region_tree"],["type","tree"]] ir.ui.view sale f [["field_childs","subregions"],["model","sale.reporting.region.tree"],["name","sale_reporting_region_tree"],["type","tree"]] \N \N +2833 2024-04-13 20:39:19.14446 0 272 act_reporting_region_tree [["context_model","sale.reporting.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Sales per Region"],["res_model","sale.reporting.region.tree"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"parent\\", \\"=\\", null]]"],["name","Sales per Region"],["res_model","sale.reporting.region.tree"]] \N \N +2834 2024-04-13 20:39:19.14446 0 342 act_reporting_region_tree_view1 [["act_window",272],["sequence",10],["view",546]] ir.action.act_window.view sale f [["act_window",272],["sequence",10],["view",546]] \N \N +2835 2024-04-13 20:39:19.14446 0 275 act_reporting_region_tree_keyword1 [["action",272],["keyword","tree_open"],["model","ir.ui.menu,176"]] ir.action.keyword sale f [["action",272],["keyword","tree_open"],["model","ir.ui.menu,176"]] \N \N +2836 2024-04-13 20:39:19.14446 0 273 wizard_reporting_region_tree_open [["model","sale.reporting.region.tree"],["name","Open Region"],["wiz_name","sale.reporting.region.tree.open"]] ir.action.wizard sale f [["model","sale.reporting.region.tree"],["name","Open Region"],["wiz_name","sale.reporting.region.tree.open"]] \N \N +2837 2024-04-13 20:39:19.14446 0 276 wizard_reporting_region_tree_open_keyword1 [["action",273],["keyword","tree_open"],["model","sale.reporting.region.tree,-1"]] ir.action.keyword sale f [["action",273],["keyword","tree_open"],["model","sale.reporting.region.tree,-1"]] \N \N +2838 2024-04-13 20:39:19.14446 0 547 reporting_country_tree_view_tree [["field_childs","children"],["model","sale.reporting.country.tree"],["name","sale_reporting_country_tree"],["type","tree"]] ir.ui.view sale f [["field_childs","children"],["model","sale.reporting.country.tree"],["name","sale_reporting_country_tree"],["type","tree"]] \N \N +2839 2024-04-13 20:39:19.14446 0 274 act_reporting_country_tree [["context_model","sale.reporting.context"],["domain","[[\\"parent\\", \\"=\\", null], [\\"id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]]"],["name","Sales per Country"],["res_model","sale.reporting.country.tree"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"parent\\", \\"=\\", null], [\\"id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}]]"],["name","Sales per Country"],["res_model","sale.reporting.country.tree"]] \N \N +2840 2024-04-13 20:39:19.14446 0 343 act_reporting_country_tree_view1 [["act_window",274],["sequence",10],["view",547]] ir.action.act_window.view sale f [["act_window",274],["sequence",10],["view",547]] \N \N +2841 2024-04-13 20:39:19.14446 0 67 rule_group_reporting_country_tree_companies [["global_p",true],["model",343],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",343],["name","User in companies"]] \N \N +2842 2024-04-13 20:39:19.14446 0 71 rule_reporting_country_tree_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",67]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",67]] \N \N +2843 2024-04-13 20:39:19.14446 0 243 access_reporting_country_tree [["model",343],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",343],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2844 2024-04-13 20:39:19.14446 0 244 access_reporting_country_tree_sale [["group",16],["model",343],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",343],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2845 2024-04-13 20:39:19.14446 0 548 reporting_country_time_series_view_list [["model","sale.reporting.country.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] ir.ui.view sale f [["model","sale.reporting.country.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] \N \N +2846 2024-04-13 20:39:19.14446 0 549 reporting_country_time_series_view_graph_revenue [["model","sale.reporting.country.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.country.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] \N \N +2847 2024-04-13 20:39:19.14446 0 550 reporting_country_time_series_view_graph_number [["model","sale.reporting.country.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.country.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2848 2024-04-13 20:39:19.14446 0 275 act_reporting_country_time_series [["context_model","sale.reporting.context"],["domain","[[\\"country\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Country"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.country.time_series"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"country\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Country"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.country.time_series"]] \N \N +2849 2024-04-13 20:39:19.14446 0 344 act_reporting_country_time_series_view1 [["act_window",275],["sequence",10],["view",548]] ir.action.act_window.view sale f [["act_window",275],["sequence",10],["view",548]] \N \N +2851 2024-04-13 20:39:19.14446 0 346 act_reporting_country_time_series_view3 [["act_window",275],["sequence",30],["view",550]] ir.action.act_window.view sale f [["act_window",275],["sequence",30],["view",550]] \N \N +2852 2024-04-13 20:39:19.14446 0 68 rule_group_reporting_country_time_series_companies [["global_p",true],["model",340],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",340],["name","User in companies"]] \N \N +2853 2024-04-13 20:39:19.14446 0 72 rule_reporting_country_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",68]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",68]] \N \N +2854 2024-04-13 20:39:19.14446 0 245 access_reporting_country_time_series [["model",340],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",340],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2855 2024-04-13 20:39:19.14446 0 246 access_reporting_country_time_series_sale [["group",16],["model",340],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",340],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2856 2024-04-13 20:39:19.14446 0 551 reporting_country_subdivision_time_series_view_list [["model","sale.reporting.country.subdivision.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] ir.ui.view sale f [["model","sale.reporting.country.subdivision.time_series"],["name","sale_reporting_main_time_series_list"],["type","tree"]] \N \N +2857 2024-04-13 20:39:19.14446 0 552 reporting_country_subdivision_time_series_view_graph_revenue [["model","sale.reporting.country.subdivision.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.country.subdivision.time_series"],["name","sale_reporting_main_time_series_graph_revenue"],["type","graph"]] \N \N +2858 2024-04-13 20:39:19.14446 0 553 reporting_country_subdivision_time_series_view_graph_number [["model","sale.reporting.country.subdivision.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] ir.ui.view sale f [["model","sale.reporting.country.subdivision.time_series"],["name","sale_reporting_main_time_series_graph_number"],["type","graph"]] \N \N +2859 2024-04-13 20:39:19.14446 0 276 act_reporting_country_subdivision_time_series [["context_model","sale.reporting.context"],["domain","[[\\"subdivision\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Subdivision"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.country.subdivision.time_series"]] ir.action.act_window sale f [["context_model","sale.reporting.context"],["domain","[[\\"subdivision\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": -1, \\"v\\": \\"active_id\\"}]]"],["name","Sales per Subdivision"],["order","[[\\"date\\", \\"DESC\\"]]"],["res_model","sale.reporting.country.subdivision.time_series"]] \N \N +2860 2024-04-13 20:39:19.14446 0 347 act_reporting_country_subdivision_time_series_view1 [["act_window",276],["sequence",10],["view",551]] ir.action.act_window.view sale f [["act_window",276],["sequence",10],["view",551]] \N \N +2861 2024-04-13 20:39:19.14446 0 348 act_reporting_country_subdivision_time_series_view2 [["act_window",276],["sequence",20],["view",552]] ir.action.act_window.view sale f [["act_window",276],["sequence",20],["view",552]] \N \N +2862 2024-04-13 20:39:19.14446 0 349 act_reporting_country_subdivision_time_series_view3 [["act_window",276],["sequence",30],["view",553]] ir.action.act_window.view sale f [["act_window",276],["sequence",30],["view",553]] \N \N +2863 2024-04-13 20:39:19.14446 0 69 rule_group_reporting_country_subdivision_time_series_companies [["global_p",true],["model",342],["name","User in companies"]] ir.rule.group sale f [["global_p",true],["model",342],["name","User in companies"]] \N \N +2864 2024-04-13 20:39:19.14446 0 73 rule_reporting_country_subdivision_time_series_companies [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",69]] ir.rule sale f [["domain","[[\\"company\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"companies\\"}]]"],["rule_group",69]] \N \N +2865 2024-04-13 20:39:19.14446 0 247 access_reporting_country_subdivision_time_series [["model",342],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] ir.model.access sale f [["model",342],["perm_create",false],["perm_delete",false],["perm_read",false],["perm_write",false]] \N \N +2866 2024-04-13 20:39:19.14446 0 248 access_reporting_country_subdivision_time_series_sale [["group",16],["model",342],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",342],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2867 2024-04-13 20:39:19.14446 0 277 wizard_reporting_country_tree_open [["model","sale.reporting.country.tree"],["name","Open Region"],["wiz_name","sale.reporting.country.tree.open"]] ir.action.wizard sale f [["model","sale.reporting.country.tree"],["name","Open Region"],["wiz_name","sale.reporting.country.tree.open"]] \N \N +2868 2024-04-13 20:39:19.14446 0 277 wizard_reporting_country_tree_open_keyword1 [["action",277],["keyword","tree_open"],["model","sale.reporting.country.tree,-1"]] ir.action.keyword sale f [["action",277],["keyword","tree_open"],["model","sale.reporting.country.tree,-1"]] \N \N +2869 2024-04-13 20:39:19.14446 0 554 party_view_form [["inherit",143],["model","party.party"],["name","party_form"]] ir.ui.view sale f [["inherit",143],["model","party.party"],["name","party_form"]] \N \N +2870 2024-04-13 20:39:19.14446 0 278 act_open_customer [["name","Parties associated to Sales"],["wiz_name","sale.open_customer"]] ir.action.wizard sale f [["name","Parties associated to Sales"],["wiz_name","sale.open_customer"]] \N \N +2871 2024-04-13 20:39:19.14446 0 177 menu_customer [["action","ir.action.wizard,278"],["icon","tryton-list"],["name","Associated to Sales"],["parent",63],["sequence",50]] ir.ui.menu sale f [["action","ir.action.wizard,278"],["icon","tryton-list"],["name","Associated to Sales"],["parent",63],["sequence",50]] \N \N +2872 2024-04-13 20:39:19.14446 0 35 access_party_sale_invoice_method [["field",3716],["perm_read",true],["perm_write",false]] ir.model.field.access sale f [["field",3716],["perm_read",true],["perm_write",false]] \N \N +2873 2024-04-13 20:39:19.14446 0 36 access_party_sale_invoice_method_group_sale [["field",3716],["group",16],["perm_read",true],["perm_write",true]] ir.model.field.access sale f [["field",3716],["group",16],["perm_read",true],["perm_write",true]] \N \N +2874 2024-04-13 20:39:19.14446 0 37 access_party_sale_shipment_method [["field",3718],["perm_read",true],["perm_write",false]] ir.model.field.access sale f [["field",3718],["perm_read",true],["perm_write",false]] \N \N +2875 2024-04-13 20:39:19.14446 0 38 access_party_sale_shipment_method_group_sale [["field",3718],["group",16],["perm_read",true],["perm_write",true]] ir.model.field.access sale f [["field",3718],["group",16],["perm_read",true],["perm_write",true]] \N \N +2876 2024-04-13 20:39:19.14446 0 39 access_party_customer_currency [["field",3715],["perm_read",true],["perm_write",false]] ir.model.field.access sale f [["field",3715],["perm_read",true],["perm_write",false]] \N \N +2877 2024-04-13 20:39:19.14446 0 40 access_party_customer_currency_group_sale [["field",3715],["group",16],["perm_read",true],["perm_write",true]] ir.model.field.access sale f [["field",3715],["group",16],["perm_read",true],["perm_write",true]] \N \N +2878 2024-04-13 20:39:19.14446 0 555 move_view_list_shipment [["model","stock.move"],["name","move_list_shipment"],["priority",20],["type","tree"]] ir.ui.view sale f [["model","stock.move"],["name","move_list_shipment"],["priority",20],["type","tree"]] \N \N +2879 2024-04-13 20:39:19.14446 0 249 access_move_group_sale [["group",16],["model",228],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",228],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2880 2024-04-13 20:39:19.14446 0 279 act_sale_move_relate [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"sale\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"sale\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Moves"],["res_model","stock.move"]] ir.action.act_window sale f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"sale\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}], \\"t\\": [\\"sale\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}]"],["name","Moves"],["res_model","stock.move"]] \N \N +2881 2024-04-13 20:39:19.14446 0 350 act_move_form_view1 [["act_window",279],["sequence",10],["view",555]] ir.action.act_window.view sale f [["act_window",279],["sequence",10],["view",555]] \N \N +2882 2024-04-13 20:39:19.14446 0 351 act_move_form_view2 [["act_window",279],["sequence",20],["view",365]] ir.action.act_window.view sale f [["act_window",279],["sequence",20],["view",365]] \N \N +2883 2024-04-13 20:39:19.14446 0 279 act_move_form_keyword1 [["action",279],["keyword","form_relate"],["model","sale.sale,-1"]] ir.action.keyword sale f [["action",279],["keyword","form_relate"],["model","sale.sale,-1"]] \N \N +2884 2024-04-13 20:39:19.14446 0 250 access_shipment_out_group_sale [["group",16],["model",231],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",231],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2885 2024-04-13 20:39:19.14446 0 251 access_shipment_out_return_group_sale [["group",16],["model",232],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",232],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2886 2024-04-13 20:39:19.14446 0 556 template_view_form [["inherit",297],["model","product.template"],["name","template_form"]] ir.ui.view sale f [["inherit",297],["model","product.template"],["name","template_form"]] \N \N +2887 2024-04-13 20:39:19.14446 0 557 template_view_tree [["inherit",296],["model","product.template"],["name","template_tree"]] ir.ui.view sale f [["inherit",296],["model","product.template"],["name","template_tree"]] \N \N +2888 2024-04-13 20:39:19.14446 0 558 product_view_list_sale_line [["model","product.product"],["name","product_list_sale_line"],["priority",20],["type","tree"]] ir.ui.view sale f [["model","product.product"],["name","product_list_sale_line"],["priority",20],["type","tree"]] \N \N +2889 2024-04-13 20:39:19.14446 0 280 act_product [["context","{\\"stock_skip_warehouse\\": true, \\"with_childs\\": true}"],["context_model","product.sale.context"],["domain","[[\\"salable\\", \\"=\\", true]]"],["name","Products"],["res_model","product.product"]] ir.action.act_window sale f [["context","{\\"stock_skip_warehouse\\": true, \\"with_childs\\": true}"],["context_model","product.sale.context"],["domain","[[\\"salable\\", \\"=\\", true]]"],["name","Products"],["res_model","product.product"]] \N \N +2890 2024-04-13 20:39:19.14446 0 352 act_product_view1 [["act_window",280],["sequence",10],["view",558]] ir.action.act_window.view sale f [["act_window",280],["sequence",10],["view",558]] \N \N +2891 2024-04-13 20:39:19.14446 0 353 act_product_view2 [["act_window",280],["sequence",20],["view",300]] ir.action.act_window.view sale f [["act_window",280],["sequence",20],["view",300]] \N \N +2892 2024-04-13 20:39:19.14446 0 178 menu_product [["action","ir.action.act_window,280"],["icon","tryton-list"],["name","Products"],["parent",171],["sequence",50]] ir.ui.menu sale f [["action","ir.action.act_window,280"],["icon","tryton-list"],["name","Products"],["parent",171],["sequence",50]] \N \N +2893 2024-04-13 20:39:19.14446 0 559 product_sale_context_view_form [["model","product.sale.context"],["name","product_sale_context_form"],["type","form"]] ir.ui.view sale f [["model","product.sale.context"],["name","product_sale_context_form"],["type","form"]] \N \N +2894 2024-04-13 20:39:19.14446 0 560 product_configuration_view_form [["inherit",313],["model","product.configuration"],["name","product_configuration_form"]] ir.ui.view sale f [["inherit",313],["model","product.configuration"],["name","product_configuration_form"]] \N \N +2895 2024-04-13 20:39:19.14446 0 281 act_invoice_form [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"lines.origin.sale.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}, \\"sale.line\\"], \\"t\\": [\\"lines.origin.sale.id\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"sale.line\\"]}]"],["name","Invoices"],["res_model","account.invoice"]] ir.action.act_window sale f [["domain","[{\\"__class__\\": \\"If\\", \\"c\\": {\\"__class__\\": \\"Equal\\", \\"s1\\": {\\"__class__\\": \\"Eval\\", \\"d\\": [], \\"v\\": \\"active_ids\\"}, \\"s2\\": [{\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}]}, \\"e\\": [\\"lines.origin.sale.id\\", \\"in\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_ids\\"}, \\"sale.line\\"], \\"t\\": [\\"lines.origin.sale.id\\", \\"=\\", {\\"__class__\\": \\"Eval\\", \\"d\\": \\"\\", \\"v\\": \\"active_id\\"}, \\"sale.line\\"]}]"],["name","Invoices"],["res_model","account.invoice"]] \N \N +2896 2024-04-13 20:39:19.14446 0 281 act_open_invoice_keyword1 [["action",281],["keyword","form_relate"],["model","sale.sale,-1"]] ir.action.keyword sale f [["action",281],["keyword","form_relate"],["model","sale.sale,-1"]] \N \N +2897 2024-04-13 20:39:19.14446 0 252 access_invoice_sale [["group",16],["model",266],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",266],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2898 2024-04-13 20:39:19.14446 0 253 access_invoice_line_sale [["group",16],["model",270],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] ir.model.access sale f [["group",16],["model",270],["perm_create",false],["perm_delete",false],["perm_read",true],["perm_write",false]] \N \N +2899 2024-04-13 20:39:19.14446 0 344 msg_erase_party_pending_sale [["text","You cannot erase party \\"%(party)s\\" while they have pending sales with company \\"%(company)s\\"."]] ir.message sale f [["text","You cannot erase party \\"%(party)s\\" while they have pending sales with company \\"%(company)s\\"."]] \N \N +2900 2024-04-13 20:39:19.14446 0 345 msg_sale_invoice_reset_draft [["text","You cannot reset invoice \\"%(invoice)s\\" to draft because it was generated by a sale."]] ir.message sale f [["text","You cannot reset invoice \\"%(invoice)s\\" to draft because it was generated by a sale."]] \N \N +2901 2024-04-13 20:39:19.14446 0 346 msg_sale_move_reset_draft [["text","You cannot reset move \\"%(move)s\\" to draft because it was generated by a sale."]] ir.message sale f [["text","You cannot reset move \\"%(move)s\\" to draft because it was generated by a sale."]] \N \N +2902 2024-04-13 20:39:19.14446 0 347 msg_sale_invalid_method [["text","You cannot use together invoice \\"%(invoice_method)s\\" and shipment \\"%(shipment_method)s\\" on sale \\"%(sale)s\\"."]] ir.message sale f [["text","You cannot use together invoice \\"%(invoice_method)s\\" and shipment \\"%(shipment_method)s\\" on sale \\"%(sale)s\\"."]] \N \N +2903 2024-04-13 20:39:19.14446 0 348 msg_sale_invoice_address_required_for_quotation [["text","To get a quote for sale \\"%(sale)s\\" you must enter an invoice address."]] ir.message sale f [["text","To get a quote for sale \\"%(sale)s\\" you must enter an invoice address."]] \N \N +2904 2024-04-13 20:39:19.14446 0 349 msg_sale_shipment_address_required_for_quotation [["text","To get a quote for sale \\"%(sale)s\\" you must enter a shipment address."]] ir.message sale f [["text","To get a quote for sale \\"%(sale)s\\" you must enter a shipment address."]] \N \N +2905 2024-04-13 20:39:19.14446 0 350 msg_sale_warehouse_required_for_quotation [["text","To get a quote for sale \\"%(sale)s\\" you must enter a warehouse."]] ir.message sale f [["text","To get a quote for sale \\"%(sale)s\\" you must enter a warehouse."]] \N \N +2906 2024-04-13 20:39:19.14446 0 351 msg_sale_delete_cancel [["text","To delete sale \\"%(sale)s\\" you must cancel it."]] ir.message sale f [["text","To delete sale \\"%(sale)s\\" you must cancel it."]] \N \N +2907 2024-04-13 20:39:19.14446 0 352 msg_sale_customer_location_required [["text","To process sale \\"%(sale)s\\" you must set a customer location on party \\"%(party)s\\"."]] ir.message sale f [["text","To process sale \\"%(sale)s\\" you must set a customer location on party \\"%(party)s\\"."]] \N \N +2908 2024-04-13 20:39:19.14446 0 353 msg_sale_product_missing_account_revenue [["text","To invoice sale \\"%(sale)s\\" you must define an account revenue for product \\"%(product)s\\"."]] ir.message sale f [["text","To invoice sale \\"%(sale)s\\" you must define an account revenue for product \\"%(product)s\\"."]] \N \N +2909 2024-04-13 20:39:19.14446 0 354 msg_sale_missing_account_revenue [["text","To invoice sale \\"%(sale)s\\" you must configure a default account revenue."]] ir.message sale f [["text","To invoice sale \\"%(sale)s\\" you must configure a default account revenue."]] \N \N +2910 2024-04-13 20:39:19.14446 0 355 msg_sale_line_delete_cancel_draft [["text","To delete line \\"%(line)s\\" you must cancel or reset to draft sale \\"%(sale)s\\"."]] ir.message sale f [["text","To delete line \\"%(line)s\\" you must cancel or reset to draft sale \\"%(sale)s\\"."]] \N \N +2911 2024-04-13 20:39:19.14446 0 356 msg_sale_line_move_quantity [["text","The sale line \\"%(line)s\\" is moving %(extra)s in addition to the %(quantity)s ordered."]] ir.message sale f [["text","The sale line \\"%(line)s\\" is moving %(extra)s in addition to the %(quantity)s ordered."]] \N \N +2912 2024-04-13 20:39:19.14446 0 357 msg_sale_modify_header_draft [["text","To modify the header of sale \\"%(sale)s\\", it must be in \\"draft\\" state."]] ir.message sale f [["text","To modify the header of sale \\"%(sale)s\\", it must be in \\"draft\\" state."]] \N \N +2913 2024-04-13 20:39:19.14446 0 358 msg_sale_line_create_draft [["text","You cannot add lines to sale \\"%(sale)s\\" because it is no longer in a draft state."]] ir.message sale f [["text","You cannot add lines to sale \\"%(sale)s\\" because it is no longer in a draft state."]] \N \N +2914 2024-04-13 20:39:19.14446 0 359 msg_sale_reporting_company [["text","Company"]] ir.message sale f [["text","Company"]] \N \N +2915 2024-04-13 20:39:19.14446 0 360 msg_sale_reporting_number [["text","#"]] ir.message sale f [["text","#"]] \N \N +2916 2024-04-13 20:39:19.14446 0 361 msg_sale_reporting_number_help [["text","Number of sales"]] ir.message sale f [["text","Number of sales"]] \N \N +2917 2024-04-13 20:39:19.14446 0 362 msg_sale_reporting_revenue [["text","Revenue"]] ir.message sale f [["text","Revenue"]] \N \N +2918 2024-04-13 20:39:19.14446 0 363 msg_sale_reporting_revenue_trend [["text","Revenue Trend"]] ir.message sale f [["text","Revenue Trend"]] \N \N +2919 2024-04-13 20:39:19.14446 0 364 msg_sale_reporting_currency [["text","Currency"]] ir.message sale f [["text","Currency"]] \N \N +2920 2024-04-13 20:39:19.14446 0 365 msg_sale_reporting_date [["text","Date"]] ir.message sale f [["text","Date"]] \N \N +2921 2024-04-13 20:39:19.14446 0 366 msg_sale_reporting_time_series [["text","Time Series"]] ir.message sale f [["text","Time Series"]] \N \N +2922 2024-04-13 20:39:19.14446 0 367 msg_sale_line_tax_unique [["text","A tax can be added only once to a sale line."]] ir.message sale f [["text","A tax can be added only once to a sale line."]] \N \N +2923 2024-04-13 20:39:21.814652 0 561 employee_view_form [["inherit",171],["model","company.employee"],["name","employee_form"]] ir.ui.view optical_equipment f [["inherit",171],["model","company.employee"],["name","employee_form"]] \N \N +2924 2024-04-13 20:39:21.814652 0 18 group_equipment_admin [["name","Equipment Administration"]] res.group optical_equipment f [["name","Equipment Administration"]] \N \N +2925 2024-04-13 20:39:21.814652 0 18 user_admin_group_equipment_admin [["group",18],["user",1]] res.user-res.group optical_equipment f [["group",18],["user",1]] \N \N +2926 2024-04-13 20:39:21.814652 0 179 menu_equipment [["icon","tryton-folder"],["name","Equipment"],["sequence",40]] ir.ui.menu optical_equipment f [["icon","tryton-folder"],["name","Equipment"],["sequence",40]] \N \N +2927 2024-04-13 20:39:21.814652 0 282 act_optical_equipment_form [["name","Equipments"],["res_model","optical_equipment.equipment"],["search_value",""]] ir.action.act_window optical_equipment f [["name","Equipments"],["res_model","optical_equipment.equipment"],["search_value",""]] \N \N +2928 2024-04-13 20:39:21.814652 0 562 optical_equipment_view_tree [["model","optical_equipment.equipment"],["name","equipment_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.equipment"],["name","equipment_tree"],["type","tree"]] \N \N +2929 2024-04-13 20:39:21.814652 0 563 optical_equipment_view_form [["model","optical_equipment.equipment"],["name","equipment_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.equipment"],["name","equipment_form"],["type","form"]] \N \N +2930 2024-04-13 20:39:21.814652 0 354 act_optical_equipment_view1 [["act_window",282],["sequence",10],["view",562]] ir.action.act_window.view optical_equipment f [["act_window",282],["sequence",10],["view",562]] \N \N +2931 2024-04-13 20:39:21.814652 0 355 act_optical_equipment_view2 [["act_window",282],["sequence",20],["view",563]] ir.action.act_window.view optical_equipment f [["act_window",282],["sequence",20],["view",563]] \N \N +2932 2024-04-13 20:39:21.814652 0 74 act_optical_equipment_form_domain_draft [["act_window",282],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain optical_equipment f [["act_window",282],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2933 2024-04-13 20:39:21.814652 0 75 act_optical_equipment_form_domain_registred [["act_window",282],["count",true],["domain","[[\\"state\\", \\"=\\", \\"registred\\"]]"],["name","Registred"],["sequence",20]] ir.action.act_window.domain optical_equipment f [["act_window",282],["count",true],["domain","[[\\"state\\", \\"=\\", \\"registred\\"]]"],["name","Registred"],["sequence",20]] \N \N +2934 2024-04-13 20:39:21.814652 0 76 act_optical_equipment_form_domain_uncontrated [["act_window",282],["count",true],["domain","[[\\"state\\", \\"=\\", \\"uncontrated\\"]]"],["name","UnContrated"],["sequence",30]] ir.action.act_window.domain optical_equipment f [["act_window",282],["count",true],["domain","[[\\"state\\", \\"=\\", \\"uncontrated\\"]]"],["name","UnContrated"],["sequence",30]] \N \N +2935 2024-04-13 20:39:21.814652 0 77 act_optical_equipment_form_domain_contrated [["act_window",282],["count",true],["domain","[[\\"state\\", \\"=\\", \\"contrated\\"]]"],["name","Contrated"],["sequence",30]] ir.action.act_window.domain optical_equipment f [["act_window",282],["count",true],["domain","[[\\"state\\", \\"=\\", \\"contrated\\"]]"],["name","Contrated"],["sequence",30]] \N \N +2936 2024-04-13 20:39:21.814652 0 78 act_optical_equipment_form_domain_all [["act_window",282],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain optical_equipment f [["act_window",282],["domain",""],["name","All"],["sequence",9999]] \N \N +2937 2024-04-13 20:39:21.814652 0 99 draft_equipment_button [["model",344],["name","draft"],["string","Draft"]] ir.model.button optical_equipment f [["model",344],["name","draft"],["string","Draft"]] \N \N +2938 2024-04-13 20:39:21.814652 0 100 registred_equipment_button [["confirm","Are you sure you want to registred these equipments?"],["model",344],["name","registred"],["string","Registred"]] ir.model.button optical_equipment f [["confirm","Are you sure you want to registred these equipments?"],["model",344],["name","registred"],["string","Registred"]] \N \N +2939 2024-04-13 20:39:21.814652 0 180 menu_optical_equipment_form [["action","ir.action.act_window,282"],["icon","tryton-list"],["name","Equipments"],["parent",179],["sequence",60]] ir.ui.menu optical_equipment f [["action","ir.action.act_window,282"],["icon","tryton-list"],["name","Equipments"],["parent",179],["sequence",60]] \N \N +2940 2024-04-13 20:39:21.814652 0 283 act_optical_equipment_form1 [["name","Serials"],["res_model","optical_equipment.equipment"],["search_value",""]] ir.action.act_window optical_equipment f [["name","Serials"],["res_model","optical_equipment.equipment"],["search_value",""]] \N \N +2941 2024-04-13 20:39:21.814652 0 564 optical_equipment_view_tree1 [["model","optical_equipment.equipment"],["name","equipment_serial_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.equipment"],["name","equipment_serial_tree"],["type","tree"]] \N \N +2942 2024-04-13 20:39:21.814652 0 356 act_optical_equipment_view3 [["act_window",283],["sequence",10],["view",564]] ir.action.act_window.view optical_equipment f [["act_window",283],["sequence",10],["view",564]] \N \N +2943 2024-04-13 20:39:21.814652 0 79 act_optical_equipment_serial_form_domain_draft [["act_window",283],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain optical_equipment f [["act_window",283],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2944 2024-04-13 20:39:21.814652 0 181 menu_optical_equipment_serial_form [["action","ir.action.act_window,283"],["icon","tryton-list"],["name","Serials"],["parent",179],["sequence",70]] ir.ui.menu optical_equipment f [["action","ir.action.act_window,283"],["icon","tryton-list"],["name","Serials"],["parent",179],["sequence",70]] \N \N +2945 2024-04-13 20:39:21.814652 0 284 report_equipment [["model","optical_equipment.equipment"],["name","Equipment"],["report","optical_equipment/report/CV_Equipment.fodt"],["report_name","optical_equipment.equipment"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment.equipment"],["name","Equipment"],["report","optical_equipment/report/CV_Equipment.fodt"],["report_name","optical_equipment.equipment"],["single",true]] \N \N +2946 2024-04-13 20:39:21.814652 0 284 report_equipment_keyword [["action",284],["keyword","form_print"],["model","optical_equipment.equipment,-1"]] ir.action.keyword optical_equipment f [["action",284],["keyword","form_print"],["model","optical_equipment.equipment,-1"]] \N \N +2947 2024-04-13 20:39:21.814652 0 285 report_history_maintenance [["model","optical_equipment.equipment"],["name","Maintenance History"],["report","optical_equipment/report/Maintenance_History.fodt"],["report_name","optical_equipment.equipment"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment.equipment"],["name","Maintenance History"],["report","optical_equipment/report/Maintenance_History.fodt"],["report_name","optical_equipment.equipment"],["single",true]] \N \N +2948 2024-04-13 20:39:21.814652 0 285 report_history_maintenance_keyword [["action",285],["keyword","form_print"],["model","optical_equipment.equipment,-1"]] ir.action.keyword optical_equipment f [["action",285],["keyword","form_print"],["model","optical_equipment.equipment,-1"]] \N \N +2949 2024-04-13 20:39:21.814652 0 565 change_propietary_view_form [["model","optical_equipment.change_propietary.form"],["name","change_propietary_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.change_propietary.form"],["name","change_propietary_form"],["type","form"]] \N \N +2950 2024-04-13 20:39:21.814652 0 286 equipment_change_propietary [["model","optical_equipment.equipment"],["name","Change Propietary"],["wiz_name","optical_equipment.change_propietary"]] ir.action.wizard optical_equipment f [["model","optical_equipment.equipment"],["name","Change Propietary"],["wiz_name","optical_equipment.change_propietary"]] \N \N +2951 2024-04-13 20:39:21.814652 0 286 equipment_change_propietary_keyword [["action",286],["keyword","form_action"],["model","optical_equipment.equipment,-1"]] ir.action.keyword optical_equipment f [["action",286],["keyword","form_action"],["model","optical_equipment.equipment,-1"]] \N \N +2952 2024-04-13 20:39:21.814652 0 566 maintenance_calibration_view_form [["model","optical_equipment.maintenance.calibration_sample"],["name","maintenance_sample_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance.calibration_sample"],["name","maintenance_sample_form"],["type","form"]] \N \N +2953 2024-04-13 20:39:21.814652 0 567 maintenance_calibration_view_tree [["model","optical_equipment.maintenance.calibration_sample"],["name","maintenance_calibration_tree"],["priority",10],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance.calibration_sample"],["name","maintenance_calibration_tree"],["priority",10],["type","tree"]] \N \N +2954 2024-04-13 20:39:21.814652 0 568 calibration_total_view_tree [["model","optical_equipment.maintenance.calibration"],["name","calibration_total_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance.calibration"],["name","calibration_total_tree"],["type","tree"]] \N \N +2955 2024-04-13 20:39:21.814652 0 569 calibration_total_view_form [["model","optical_equipment.maintenance.calibration"],["name","calibration_total_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance.calibration"],["name","calibration_total_form"],["type","form"]] \N \N +2956 2024-04-13 20:39:21.814652 0 287 report_calibration [["model","optical_equipment.maintenance"],["name","Calibration"],["report","optical_equipment/report/Calibration.fodt"],["report_name","optical_equipment.maintenance"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment.maintenance"],["name","Calibration"],["report","optical_equipment/report/Calibration.fodt"],["report_name","optical_equipment.maintenance"],["single",true]] \N \N +2957 2024-04-13 20:39:21.814652 0 287 report_calibration_keyword [["action",287],["keyword","form_print"],["model","optical_equipment.maintenance,-1"]] ir.action.keyword optical_equipment f [["action",287],["keyword","form_print"],["model","optical_equipment.maintenance,-1"]] \N \N +2958 2024-04-13 20:39:21.814652 0 288 report_calibrations [["model","optical_equipment_maintenance.service"],["name","Calibrations"],["report","optical_equipment/report/Calibrations.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment_maintenance.service"],["name","Calibrations"],["report","optical_equipment/report/Calibrations.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] \N \N +2959 2024-04-13 20:39:21.814652 0 288 report_calibrations_keyword [["action",288],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] ir.action.keyword optical_equipment f [["action",288],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] \N \N +2960 2024-04-13 20:39:21.814652 0 570 contract_view_form [["model","optical_equipment.contract"],["name","contract_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.contract"],["name","contract_form"],["type","form"]] \N \N +2961 2024-04-13 20:39:21.814652 0 571 contract_view_list [["model","optical_equipment.contract"],["name","contract_list"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.contract"],["name","contract_list"],["type","tree"]] \N \N +2962 2024-04-13 20:39:21.814652 0 289 act_contract_form [["name","Contracts"],["res_model","optical_equipment.contract"]] ir.action.act_window optical_equipment f [["name","Contracts"],["res_model","optical_equipment.contract"]] \N \N +2963 2024-04-13 20:39:21.814652 0 357 act_contract_form_view1 [["act_window",289],["sequence",10],["view",571]] ir.action.act_window.view optical_equipment f [["act_window",289],["sequence",10],["view",571]] \N \N +2964 2024-04-13 20:39:21.814652 0 358 act_contract_form_view2 [["act_window",289],["sequence",20],["view",570]] ir.action.act_window.view optical_equipment f [["act_window",289],["sequence",20],["view",570]] \N \N +2965 2024-04-13 20:39:21.814652 0 80 act_contract_form_domain_draft [["act_window",289],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain optical_equipment f [["act_window",289],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2966 2024-04-13 20:39:21.814652 0 81 act_contract_form_domain_running [["act_window",289],["count",true],["domain","[[\\"state\\", \\"=\\", \\"running\\"]]"],["name","Running"],["sequence",30]] ir.action.act_window.domain optical_equipment f [["act_window",289],["count",true],["domain","[[\\"state\\", \\"=\\", \\"running\\"]]"],["name","Running"],["sequence",30]] \N \N +2967 2024-04-13 20:39:21.814652 0 82 act_contract_form_domain_closed [["act_window",289],["count",true],["domain","[[\\"state\\", \\"=\\", \\"closed\\"]]"],["name","Closed"],["sequence",40]] ir.action.act_window.domain optical_equipment f [["act_window",289],["count",true],["domain","[[\\"state\\", \\"=\\", \\"closed\\"]]"],["name","Closed"],["sequence",40]] \N \N +2968 2024-04-13 20:39:21.814652 0 83 act_contract_form_domain_all [["act_window",289],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain optical_equipment f [["act_window",289],["domain",""],["name","All"],["sequence",9999]] \N \N +2969 2024-04-13 20:39:21.814652 0 101 draft_running_button [["model",346],["name","draft"],["string","Draft"]] ir.model.button optical_equipment f [["model",346],["name","draft"],["string","Draft"]] \N \N +2970 2024-04-13 20:39:21.814652 0 102 contrac_running_button [["model",346],["name","running"],["string","Run"]] ir.model.button optical_equipment f [["model",346],["name","running"],["string","Run"]] \N \N +2971 2024-04-13 20:39:21.814652 0 103 contract_closed_button [["model",346],["name","closed"],["string","Closed"]] ir.model.button optical_equipment f [["model",346],["name","closed"],["string","Closed"]] \N \N +2972 2024-04-13 20:39:21.814652 0 104 contract_cancelled_button [["model",346],["name","cancelled"],["string","Cancel"]] ir.model.button optical_equipment f [["model",346],["name","cancelled"],["string","Cancel"]] \N \N +2973 2024-04-13 20:39:21.814652 0 19 group_contract_admin [["name","Contract Administration"]] res.group optical_equipment f [["name","Contract Administration"]] \N \N +2974 2024-04-13 20:39:21.814652 0 19 user_admin_group_contract_admin [["group",19],["user",1]] res.user-res.group optical_equipment f [["group",19],["user",1]] \N \N +2975 2024-04-13 20:39:21.814652 0 16 sequence_type_contract [["name","Contract"]] ir.sequence.type optical_equipment f [["name","Contract"]] \N \N +2976 2024-04-13 20:39:21.814652 0 31 sequence_type_contract_group_admin [["group",1],["sequence_type",16]] ir.sequence.type-res.group optical_equipment f [["group",1],["sequence_type",16]] \N \N +2977 2024-04-13 20:39:21.814652 0 32 sequence_type_contract_group_contract_admin [["group",19],["sequence_type",16]] ir.sequence.type-res.group optical_equipment f [["group",19],["sequence_type",16]] \N \N +2978 2024-04-13 20:39:21.814652 0 12 sequence_contract [["name","Contract"],["sequence_type",16]] ir.sequence optical_equipment f [["name","Contract"],["sequence_type",16]] \N \N +2979 2024-04-13 20:39:21.814652 0 572 create_contract_view_form [["model","optical_equipment_create.contract"],["name","create_contract_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment_create.contract"],["name","create_contract_form"],["type","form"]] \N \N +2980 2024-04-13 20:39:21.814652 0 290 maintenance_create_contract [["model","optical_equipment_maintenance.service"],["name","Create Contract"],["wiz_name","optical_equipment.maintenance.contract"]] ir.action.wizard optical_equipment f [["model","optical_equipment_maintenance.service"],["name","Create Contract"],["wiz_name","optical_equipment.maintenance.contract"]] \N \N +2981 2024-04-13 20:39:21.814652 0 289 maintenance_create_contract_keyword [["action",290],["keyword","form_action"],["model","optical_equipment_maintenance.service,-1"]] ir.action.keyword optical_equipment f [["action",290],["keyword","form_action"],["model","optical_equipment_maintenance.service,-1"]] \N \N +2982 2024-04-13 20:39:21.814652 0 291 report_contract [["model","optical_equipment.contract"],["name","Contract"],["report","optical_equipment/report/Contract.fodt"],["report_name","optical_equipment.contract"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment.contract"],["name","Contract"],["report","optical_equipment/report/Contract.fodt"],["report_name","optical_equipment.contract"],["single",true]] \N \N +2983 2024-04-13 20:39:21.814652 0 290 report_contract_keyword [["action",291],["keyword","form_print"],["model","optical_equipment.contract,-1"]] ir.action.keyword optical_equipment f [["action",291],["keyword","form_print"],["model","optical_equipment.contract,-1"]] \N \N +2984 2024-04-13 20:39:21.814652 0 292 report_prorrogation [["model","optical_equipment.contract"],["name","Prorrogation"],["report","optical_equipment/report/Prorrogation.fodt"],["report_name","optical_equipment.contract"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment.contract"],["name","Prorrogation"],["report","optical_equipment/report/Prorrogation.fodt"],["report_name","optical_equipment.contract"],["single",true]] \N \N +2985 2024-04-13 20:39:21.814652 0 291 report_prorrogation_keyword [["action",292],["keyword","form_print"],["model","optical_equipment.contract,-1"]] ir.action.keyword optical_equipment f [["action",292],["keyword","form_print"],["model","optical_equipment.contract,-1"]] \N \N +2986 2024-04-13 20:39:21.814652 0 182 menu_contracts [["icon","tryton-folder"],["name","Contracts Management"],["parent",179],["sequence",50]] ir.ui.menu optical_equipment f [["icon","tryton-folder"],["name","Contracts Management"],["parent",179],["sequence",50]] \N \N +2987 2024-04-13 20:39:21.814652 0 183 menu_contract_form [["action","ir.action.act_window,289"],["icon","tryton-list"],["name","Contracts"],["parent",182],["sequence",30]] ir.ui.menu optical_equipment f [["action","ir.action.act_window,289"],["icon","tryton-list"],["name","Contracts"],["parent",182],["sequence",30]] \N \N +2988 2024-04-13 20:39:21.814652 0 6 cron_fe_delivery [["interval_number",1],["interval_type","hours"],["method","optical_equipment.contract|contract_expiration"]] ir.cron optical_equipment f [["interval_number",1],["interval_type","hours"],["method","optical_equipment.contract|contract_expiration"]] \N \N +2989 2024-04-13 20:39:21.814652 0 20 group_agended_admin [["name","Agended Administration"]] res.group optical_equipment f [["name","Agended Administration"]] \N \N +2990 2024-04-13 20:39:21.814652 0 20 user_admin_group_agended_admin [["group",20],["user",1]] res.user-res.group optical_equipment f [["group",20],["user",1]] \N \N +2991 2024-04-13 20:39:21.814652 0 293 act_agended_list_form [["name","Agended"],["res_model","optical_equipment_maintenance.diary"],["search_value",""]] ir.action.act_window optical_equipment f [["name","Agended"],["res_model","optical_equipment_maintenance.diary"],["search_value",""]] \N \N +2992 2024-04-13 20:39:21.814652 0 573 agended_list_view_tree [["model","optical_equipment_maintenance.diary"],["name","diary_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment_maintenance.diary"],["name","diary_tree"],["type","tree"]] \N \N +2993 2024-04-13 20:39:21.814652 0 574 agended_list_view_form [["model","optical_equipment_maintenance.diary"],["name","diary_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment_maintenance.diary"],["name","diary_form"],["type","form"]] \N \N +2994 2024-04-13 20:39:21.814652 0 84 act_agended_list_form_domain_draft [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain optical_equipment f [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +2995 2024-04-13 20:39:21.814652 0 85 act_agended_list_form_domain_agended [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"agended\\"]]"],["name","Agended"],["sequence",20]] ir.action.act_window.domain optical_equipment f [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"agended\\"]]"],["name","Agended"],["sequence",20]] \N \N +2996 2024-04-13 20:39:21.814652 0 86 act_agended_list_form_domain_in_progress [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"in_progress\\"]]"],["name","In progress"],["sequence",30]] ir.action.act_window.domain optical_equipment f [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"in_progress\\"]]"],["name","In progress"],["sequence",30]] \N \N +2997 2024-04-13 20:39:21.814652 0 87 act_agended_list_form_domain_failed [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"failed\\"]]"],["name","Failed"],["sequence",30]] ir.action.act_window.domain optical_equipment f [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"failed\\"]]"],["name","Failed"],["sequence",30]] \N \N +2998 2024-04-13 20:39:21.814652 0 88 act_agended_list_form_domain_finished [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"finished\\"]]"],["name","Finished"],["sequence",40]] ir.action.act_window.domain optical_equipment f [["act_window",293],["count",true],["domain","[[\\"state\\", \\"=\\", \\"finished\\"]]"],["name","Finished"],["sequence",40]] \N \N +2999 2024-04-13 20:39:21.814652 0 89 act_agended_list_form_domain_all [["act_window",293],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain optical_equipment f [["act_window",293],["domain",""],["name","All"],["sequence",9999]] \N \N +3000 2024-04-13 20:39:21.814652 0 17 sequence_type_agended [["name","Agended"]] ir.sequence.type optical_equipment f [["name","Agended"]] \N \N +3001 2024-04-13 20:39:21.814652 0 33 sequence_type_agended_group_admin [["group",1],["sequence_type",17]] ir.sequence.type-res.group optical_equipment f [["group",1],["sequence_type",17]] \N \N +3002 2024-04-13 20:39:21.814652 0 34 sequence_type_agended_group_agended_admin [["group",20],["sequence_type",17]] ir.sequence.type-res.group optical_equipment f [["group",20],["sequence_type",17]] \N \N +3003 2024-04-13 20:39:21.814652 0 13 sequence_agended [["name","Agended"],["sequence_type",17]] ir.sequence optical_equipment f [["name","Agended"],["sequence_type",17]] \N \N +3004 2024-04-13 20:39:21.814652 0 184 menu_diary [["icon","tryton-folder"],["name","Diary"],["parent",179],["sequence",10]] ir.ui.menu optical_equipment f [["icon","tryton-folder"],["name","Diary"],["parent",179],["sequence",10]] \N \N +3005 2024-04-13 20:39:21.814652 0 185 menu_agended_list_form [["action","ir.action.act_window,293"],["icon","tryton-folder"],["name","Agended"],["parent",184],["sequence",20]] ir.ui.menu optical_equipment f [["action","ir.action.act_window,293"],["icon","tryton-folder"],["name","Agended"],["parent",184],["sequence",20]] \N \N +3006 2024-04-13 20:39:21.814652 0 575 assing_agended_view_form [["model","optical_equipment_maintenance.agended"],["name","assing_agended_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment_maintenance.agended"],["name","assing_agended_form"],["type","form"]] \N \N +3007 2024-04-13 20:39:21.814652 0 294 act_assing_agended [["name","Assing Agended"],["wiz_name","optical_equipment_maintenance.assing_agended"]] ir.action.wizard optical_equipment f [["name","Assing Agended"],["wiz_name","optical_equipment_maintenance.assing_agended"]] \N \N +3008 2024-04-13 20:39:21.814652 0 576 reassing_agended_view_form [["model","optical_equipment_maintenance.reagended"],["name","reassing_agended_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment_maintenance.reagended"],["name","reassing_agended_form"],["type","form"]] \N \N +3009 2024-04-13 20:39:21.814652 0 295 act_reassing_agended [["name","ReAssing Agended"],["wiz_name","optical_equipment_maintenance.reassing_agended"]] ir.action.wizard optical_equipment f [["name","ReAssing Agended"],["wiz_name","optical_equipment_maintenance.reassing_agended"]] \N \N +3010 2024-04-13 20:39:21.814652 0 186 menu_assing_agended_form [["action","ir.action.wizard,294"],["icon","tryton-launch"],["name","Assing Agended"],["parent",184],["sequence",30]] ir.ui.menu optical_equipment f [["action","ir.action.wizard,294"],["icon","tryton-launch"],["name","Assing Agended"],["parent",184],["sequence",30]] \N \N +3011 2024-04-13 20:39:21.814652 0 187 menu_reassing_agended_form [["action","ir.action.wizard,295"],["icon","tryton-launch"],["name","ReAssing Agended"],["parent",184],["sequence",40]] ir.ui.menu optical_equipment f [["action","ir.action.wizard,295"],["icon","tryton-launch"],["name","ReAssing Agended"],["parent",184],["sequence",40]] \N \N +3012 2024-04-13 20:39:21.814652 0 296 act_optical_equipment_configuration_form [["name","Configuration"],["res_model","optical_equipment.configuration"]] ir.action.act_window optical_equipment f [["name","Configuration"],["res_model","optical_equipment.configuration"]] \N \N +3013 2024-04-13 20:39:21.814652 0 577 optical_equipment_configuration_view_form [["model","optical_equipment.configuration"],["name","configuration_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.configuration"],["name","configuration_form"],["type","form"]] \N \N +3014 2024-04-13 20:39:21.814652 0 359 act_optical_equipment_configuration_form_view1 [["act_window",296],["sequence",10],["view",577]] ir.action.act_window.view optical_equipment f [["act_window",296],["sequence",10],["view",577]] \N \N +3015 2024-04-13 20:39:21.814652 0 188 menu_equipment_configuration [["icon","tryton-settings"],["name","Configuration"],["parent",179],["sequence",0]] ir.ui.menu optical_equipment f [["icon","tryton-settings"],["name","Configuration"],["parent",179],["sequence",0]] \N \N +3016 2024-04-13 20:39:21.814652 0 189 menu_optical_equipment_configuration [["action","ir.action.act_window,296"],["icon","tryton-list"],["name","Configuration"],["parent",188],["sequence",10]] ir.ui.menu optical_equipment f [["action","ir.action.act_window,296"],["icon","tryton-list"],["name","Configuration"],["parent",188],["sequence",10]] \N \N +3017 2024-04-13 20:39:21.814652 0 21 group_maintenance_admin [["name","Maintenance Administration"]] res.group optical_equipment f [["name","Maintenance Administration"]] \N \N +3018 2024-04-13 20:39:21.814652 0 21 user_admin_group_maintenance_admin [["group",21],["user",1]] res.user-res.group optical_equipment f [["group",21],["user",1]] \N \N +3019 2024-04-13 20:39:21.814652 0 20 menu_party_group_equipment_admin [["group",18],["menu",179]] ir.ui.menu-res.group optical_equipment f [["group",18],["menu",179]] \N \N +3020 2024-04-13 20:39:21.814652 0 18 sequence_type_equipment [["name","Equipment"]] ir.sequence.type optical_equipment f [["name","Equipment"]] \N \N +3021 2024-04-13 20:39:21.814652 0 35 sequence_type_equipment_group_admin [["group",1],["sequence_type",18]] ir.sequence.type-res.group optical_equipment f [["group",1],["sequence_type",18]] \N \N +3022 2024-04-13 20:39:21.814652 0 36 sequence_type_equipment_group_equipment_admin [["group",18],["sequence_type",18]] ir.sequence.type-res.group optical_equipment f [["group",18],["sequence_type",18]] \N \N +3023 2024-04-13 20:39:21.814652 0 14 sequence_equipment [["name","Equipment"],["sequence_type",18]] ir.sequence optical_equipment f [["name","Equipment"],["sequence_type",18]] \N \N +3024 2024-04-13 20:39:21.814652 0 19 sequence_type_maintenances [["name","Maintenances"]] ir.sequence.type optical_equipment f [["name","Maintenances"]] \N \N +3025 2024-04-13 20:39:21.814652 0 37 sequence_type_maintenance_group_admin [["group",1],["sequence_type",19]] ir.sequence.type-res.group optical_equipment f [["group",1],["sequence_type",19]] \N \N +3026 2024-04-13 20:39:21.814652 0 38 sequence_type_maintenance_group_maintenance_admin [["group",21],["sequence_type",19]] ir.sequence.type-res.group optical_equipment f [["group",21],["sequence_type",19]] \N \N +3027 2024-04-13 20:39:21.814652 0 15 sequence_maintenances [["name","Maintenance"],["sequence_type",19]] ir.sequence optical_equipment f [["name","Maintenance"],["sequence_type",19]] \N \N +3028 2024-04-13 20:39:21.814652 0 297 act_maintenance_service_form [["name","Services Maintenance"],["res_model","optical_equipment_maintenance.service"],["search_value",""]] ir.action.act_window optical_equipment f [["name","Services Maintenance"],["res_model","optical_equipment_maintenance.service"],["search_value",""]] \N \N +3029 2024-04-13 20:39:21.814652 0 578 maintenance_service_view_tree [["model","optical_equipment_maintenance.service"],["name","maintenance_service_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment_maintenance.service"],["name","maintenance_service_tree"],["type","tree"]] \N \N +3030 2024-04-13 20:39:21.814652 0 579 maintenance_service_view_form [["model","optical_equipment_maintenance.service"],["name","maintenance_service_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment_maintenance.service"],["name","maintenance_service_form"],["type","form"]] \N \N +3031 2024-04-13 20:39:21.814652 0 360 act_maintenance_service_view1 [["act_window",297],["sequence",10],["view",578]] ir.action.act_window.view optical_equipment f [["act_window",297],["sequence",10],["view",578]] \N \N +3032 2024-04-13 20:39:21.814652 0 361 act_maintenance_service_view2 [["act_window",297],["sequence",20],["view",579]] ir.action.act_window.view optical_equipment f [["act_window",297],["sequence",20],["view",579]] \N \N +3033 2024-04-13 20:39:21.814652 0 90 act_maintenance_service_form_domain_draft [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain optical_equipment f [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +3034 2024-04-13 20:39:21.814652 0 91 act_maintenance_service_form_domain_agended [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"agended\\"]]"],["name","Agended"],["sequence",20]] ir.action.act_window.domain optical_equipment f [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"agended\\"]]"],["name","Agended"],["sequence",20]] \N \N +3035 2024-04-13 20:39:21.814652 0 92 act_maintenance_service_form_domain_in_progress [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"in_progress\\"]]"],["name","In progress"],["sequence",30]] ir.action.act_window.domain optical_equipment f [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"in_progress\\"]]"],["name","In progress"],["sequence",30]] \N \N +3036 2024-04-13 20:39:21.814652 0 93 act_maintenance_service_form_domain_failed [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"failed\\"]]"],["name","Failed"],["sequence",30]] ir.action.act_window.domain optical_equipment f [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"failed\\"]]"],["name","Failed"],["sequence",30]] \N \N +3037 2024-04-13 20:39:21.814652 0 94 act_maintenance_service_form_domain_finished [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"finished\\"]]"],["name","Finished"],["sequence",40]] ir.action.act_window.domain optical_equipment f [["act_window",297],["count",true],["domain","[[\\"state\\", \\"=\\", \\"finished\\"]]"],["name","Finished"],["sequence",40]] \N \N +3038 2024-04-13 20:39:21.814652 0 95 act_maintenance_service_form_domain_all [["act_window",297],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain optical_equipment f [["act_window",297],["domain",""],["name","All"],["sequence",9999]] \N \N +3039 2024-04-13 20:39:21.814652 0 298 act_maintenance_form [["name","Maintenance Lines"],["res_model","optical_equipment.maintenance"],["search_value",""]] ir.action.act_window optical_equipment f [["name","Maintenance Lines"],["res_model","optical_equipment.maintenance"],["search_value",""]] \N \N +3040 2024-04-13 20:39:21.814652 0 580 maintenance_view_tree [["model","optical_equipment.maintenance"],["name","maintenance_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance"],["name","maintenance_tree"],["type","tree"]] \N \N +3041 2024-04-13 20:39:21.814652 0 581 maintenance_view_form [["model","optical_equipment.maintenance"],["name","maintenance_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance"],["name","maintenance_form"],["type","form"]] \N \N +3042 2024-04-13 20:39:21.814652 0 362 act_maintenance_view1 [["act_window",298],["sequence",10],["view",580]] ir.action.act_window.view optical_equipment f [["act_window",298],["sequence",10],["view",580]] \N \N +3043 2024-04-13 20:39:21.814652 0 363 act_maintenance_view2 [["act_window",298],["sequence",20],["view",581]] ir.action.act_window.view optical_equipment f [["act_window",298],["sequence",20],["view",581]] \N \N +3044 2024-04-13 20:39:21.814652 0 582 change_propietary_maintenance_view_form [["model","optical_equipment.change_propietary_maintenance.form"],["name","change_propietary_maintenance_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.change_propietary_maintenance.form"],["name","change_propietary_maintenance_form"],["type","form"]] \N \N +3045 2024-04-13 20:39:21.814652 0 583 maintenance_equipment_view_form [["model","optical_equipment.maintenance-optical_equipment.equipment"],["name","maintenance_equipment_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance-optical_equipment.equipment"],["name","maintenance_equipment_form"],["type","form"]] \N \N +3046 2024-04-13 20:39:21.814652 0 584 maintenance_activity_view_form [["model","optical_equipment_maintenance.activity"],["name","maintenance_activity_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment_maintenance.activity"],["name","maintenance_activity_form"],["type","form"]] \N \N +3047 2024-04-13 20:39:21.814652 0 585 maintenance_activity_view_tree [["model","optical_equipment_maintenance.activity"],["name","maintenance_activity_tree"],["priority",10],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment_maintenance.activity"],["name","maintenance_activity_tree"],["priority",10],["type","tree"]] \N \N +3048 2024-04-13 20:39:21.814652 0 96 act_maintenance_form_domain_draft [["act_window",298],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] ir.action.act_window.domain optical_equipment f [["act_window",298],["count",true],["domain","[[\\"state\\", \\"=\\", \\"draft\\"]]"],["name","Draft"],["sequence",10]] \N \N +3049 2024-04-13 20:39:21.814652 0 97 act_maintenance_form_domain_finished [["act_window",298],["count",true],["domain","[[\\"state\\", \\"=\\", \\"finished\\"]]"],["name","Finished"],["sequence",40]] ir.action.act_window.domain optical_equipment f [["act_window",298],["count",true],["domain","[[\\"state\\", \\"=\\", \\"finished\\"]]"],["name","Finished"],["sequence",40]] \N \N +3050 2024-04-13 20:39:21.814652 0 98 act_maintenance_form_domain_all [["act_window",298],["domain",""],["name","All"],["sequence",9999]] ir.action.act_window.domain optical_equipment f [["act_window",298],["domain",""],["name","All"],["sequence",9999]] \N \N +3051 2024-04-13 20:39:21.814652 0 586 maintenance_line_view_form [["model","optical_equipment.maintenance.line"],["name","maintenance_line_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance.line"],["name","maintenance_line_form"],["type","form"]] \N \N +3052 2024-04-13 20:39:21.814652 0 587 maintenance_line_view_tree [["model","optical_equipment.maintenance.line"],["name","maintenance_line_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.maintenance.line"],["name","maintenance_line_tree"],["type","tree"]] \N \N +3053 2024-04-13 20:39:21.814652 0 105 assing_agended_button [["model",363],["name","assing_agended"],["string","Assing Agended"]] ir.model.button optical_equipment f [["model",363],["name","assing_agended"],["string","Assing Agended"]] \N \N +3054 2024-04-13 20:39:21.814652 0 106 reassing_agended_button [["model",363],["name","reassing_agended"],["string","Reassing Agended"]] ir.model.button optical_equipment f [["model",363],["name","reassing_agended"],["string","Reassing Agended"]] \N \N +3055 2024-04-13 20:39:21.814652 0 107 maintenance_service_draft_button [["model",363],["name","draft"],["string","Draft"]] ir.model.button optical_equipment f [["model",363],["name","draft"],["string","Draft"]] \N \N +3056 2024-04-13 20:39:21.814652 0 108 maintenance_service_in_progress_button [["model",363],["name","in_progress"],["string","In progress"]] ir.model.button optical_equipment f [["model",363],["name","in_progress"],["string","In progress"]] \N \N +3057 2024-04-13 20:39:21.814652 0 109 maintenance_service_finished_button [["model",363],["name","finished"],["string","Finished"]] ir.model.button optical_equipment f [["model",363],["name","finished"],["string","Finished"]] \N \N +3058 2024-04-13 20:39:21.814652 0 110 maintenance_in_progress_button [["model",364],["name","in_progress"],["string","In progress"]] ir.model.button optical_equipment f [["model",364],["name","in_progress"],["string","In progress"]] \N \N +3059 2024-04-13 20:39:21.814652 0 111 maintenance_finished_button [["model",364],["name","finished"],["string","Finished"]] ir.model.button optical_equipment f [["model",364],["name","finished"],["string","Finished"]] \N \N +3060 2024-04-13 20:39:21.814652 0 112 maintenance_samples_button [["model",364],["name","samples"],["string","Generate Samples"]] ir.model.button optical_equipment f [["model",364],["name","samples"],["string","Generate Samples"]] \N \N +3061 2024-04-13 20:39:21.814652 0 113 maintenance_calibrate_button [["model",364],["name","calibrate"],["string","Calibrate"]] ir.model.button optical_equipment f [["model",364],["name","calibrate"],["string","Calibrate"]] \N \N +3062 2024-04-13 20:39:21.814652 0 299 report_service [["model","optical_equipment_maintenance.service"],["name","Service"],["report","optical_equipment/report/Service.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment_maintenance.service"],["name","Service"],["report","optical_equipment/report/Service.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] \N \N +3063 2024-04-13 20:39:21.814652 0 297 report_service_keyword [["action",299],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] ir.action.keyword optical_equipment f [["action",299],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] \N \N +3064 2024-04-13 20:39:21.814652 0 300 report_cvs [["model","optical_equipment_maintenance.service"],["name","Hojas de Vida"],["report","optical_equipment/report/CVS_Equipments.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment_maintenance.service"],["name","Hojas de Vida"],["report","optical_equipment/report/CVS_Equipments.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] \N \N +3065 2024-04-13 20:39:21.814652 0 298 report_cvs_keyword [["action",300],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] ir.action.keyword optical_equipment f [["action",300],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] \N \N +3066 2024-04-13 20:39:21.814652 0 301 report_maintenance_service [["model","optical_equipment.maintenance"],["name","Maintenance Service"],["report","optical_equipment/report/Maintenance_Service.fodt"],["report_name","optical_equipment.maintenance"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment.maintenance"],["name","Maintenance Service"],["report","optical_equipment/report/Maintenance_Service.fodt"],["report_name","optical_equipment.maintenance"],["single",true]] \N \N +3067 2024-04-13 20:39:21.814652 0 299 report_maintenance_service_keyword [["action",301],["keyword","form_print"],["model","optical_equipment.maintenance,-1"]] ir.action.keyword optical_equipment f [["action",301],["keyword","form_print"],["model","optical_equipment.maintenance,-1"]] \N \N +3068 2024-04-13 20:39:21.814652 0 302 report_maintenance_timeline [["model","optical_equipment_maintenance.service"],["name","Time Line Maintenance Service"],["report","optical_equipment/report/Maintenance_Timeline.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment_maintenance.service"],["name","Time Line Maintenance Service"],["report","optical_equipment/report/Maintenance_Timeline.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] \N \N +3069 2024-04-13 20:39:21.814652 0 300 report_maintenance_timeline_keyword [["action",302],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] ir.action.keyword optical_equipment f [["action",302],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] \N \N +3070 2024-04-13 20:39:21.814652 0 303 report_historys_maintenances [["model","optical_equipment_maintenance.service"],["name","Maintenances Historys"],["report","optical_equipment/report/Maintenances_Historys.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] ir.action.report optical_equipment f [["model","optical_equipment_maintenance.service"],["name","Maintenances Historys"],["report","optical_equipment/report/Maintenances_Historys.fodt"],["report_name","optical_equipment_maintenance.service"],["single",true]] \N \N +3071 2024-04-13 20:39:21.814652 0 301 report_historys_maintenances_keyword [["action",303],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] ir.action.keyword optical_equipment f [["action",303],["keyword","form_print"],["model","optical_equipment_maintenance.service,-1"]] \N \N +3072 2024-04-13 20:39:21.814652 0 304 equipment_change_propietary_maintenance [["model","optical_equipment_maintenance.service"],["name","Change Propietary Maintenance"],["wiz_name","optical_equipment.change_propietary_maintenance"]] ir.action.wizard optical_equipment f [["model","optical_equipment_maintenance.service"],["name","Change Propietary Maintenance"],["wiz_name","optical_equipment.change_propietary_maintenance"]] \N \N +3073 2024-04-13 20:39:21.814652 0 302 equipment_change_propietary_maintenance_keyword [["action",304],["keyword","form_action"],["model","optical_equipment_maintenance.service,-1"]] ir.action.keyword optical_equipment f [["action",304],["keyword","form_action"],["model","optical_equipment_maintenance.service,-1"]] \N \N +3074 2024-04-13 20:39:21.814652 0 190 menu_maintenance_service_form [["action","ir.action.act_window,297"],["icon","tryton-list"],["name","Services Maintenance"],["parent",179],["sequence",20]] ir.ui.menu optical_equipment f [["action","ir.action.act_window,297"],["icon","tryton-list"],["name","Services Maintenance"],["parent",179],["sequence",20]] \N \N +3075 2024-04-13 20:39:21.814652 0 191 menu_maintenance_form [["action","ir.action.act_window,298"],["icon","tryton-list"],["name","Maintenance Lines"],["parent",190],["sequence",30]] ir.ui.menu optical_equipment f [["action","ir.action.act_window,298"],["icon","tryton-list"],["name","Maintenance Lines"],["parent",190],["sequence",30]] \N \N +3076 2024-04-13 20:39:21.814652 0 588 move_view_list_shipment [["inherit",369],["model","stock.move"],["name","move_list_shipment"]] ir.ui.view optical_equipment f [["inherit",369],["model","stock.move"],["name","move_list_shipment"]] \N \N +3077 2024-04-13 20:39:21.814652 0 589 move_view_form [["inherit",365],["model","stock.move"],["name","move_form"]] ir.ui.view optical_equipment f [["inherit",365],["model","stock.move"],["name","move_form"]] \N \N +3078 2024-04-13 20:39:21.814652 0 114 maintenance_initial_button [["model",231],["name","maintenance_initial"],["string","Maintenance Initial"]] ir.model.button optical_equipment f [["model",231],["name","maintenance_initial"],["string","Maintenance Initial"]] \N \N +3079 2024-04-13 20:39:21.814652 0 305 report_shipment_out_picking_list1 [["model","stock.shipment.out"],["name","Acta Entrega"],["report","optical_equipment/report/Delivery_Certificated.fodt"],["report_name","stock.shipment.out.picking_list1"]] ir.action.report optical_equipment f [["model","stock.shipment.out"],["name","Acta Entrega"],["report","optical_equipment/report/Delivery_Certificated.fodt"],["report_name","stock.shipment.out.picking_list1"]] \N \N +3080 2024-04-13 20:39:21.814652 0 305 report_shipment_out_picking_list1_keyword [["action",305],["keyword","form_print"],["model","stock.shipment.out,-1"]] ir.action.keyword optical_equipment f [["action",305],["keyword","form_print"],["model","stock.shipment.out,-1"]] \N \N +3081 2024-04-13 20:39:21.814652 0 306 report_capacitation [["model","stock.shipment.out"],["name","Capacitation"],["report","optical_equipment/report/Capacitation.fodt"],["report_name","stock.shipment.out.picking_list1"]] ir.action.report optical_equipment f [["model","stock.shipment.out"],["name","Capacitation"],["report","optical_equipment/report/Capacitation.fodt"],["report_name","stock.shipment.out.picking_list1"]] \N \N +3082 2024-04-13 20:39:21.814652 0 306 report_capacitation_keyword [["action",306],["keyword","form_print"],["model","stock.shipment.out,-1"]] ir.action.keyword optical_equipment f [["action",306],["keyword","form_print"],["model","stock.shipment.out,-1"]] \N \N +3083 2024-04-13 20:39:21.814652 0 590 party_view_tree [["inherit",142],["model","party.party"],["name","party_tree"]] ir.ui.view optical_equipment f [["inherit",142],["model","party.party"],["name","party_tree"]] \N \N +3084 2024-04-13 20:39:21.814652 0 591 party_view_form [["inherit",143],["model","party.party"],["name","party_form"]] ir.ui.view optical_equipment f [["inherit",143],["model","party.party"],["name","party_form"]] \N \N +3085 2024-04-13 20:39:21.814652 0 592 address_view_tree [["inherit",153],["model","party.address"],["name","address_tree"]] ir.ui.view optical_equipment f [["inherit",153],["model","party.address"],["name","address_tree"]] \N \N +3086 2024-04-13 20:39:21.814652 0 593 address_view_form [["inherit",155],["model","party.address"],["name","address_form"]] ir.ui.view optical_equipment f [["inherit",155],["model","party.address"],["name","address_form"]] \N \N +3087 2024-04-13 20:39:21.814652 0 8 uom_cat_electrical_tension [["name","Electric Tension"]] product.uom.category optical_equipment f [["name","Electric Tension"]] \N \N +3088 2024-04-13 20:39:21.814652 0 36 uom_electrical [["category",8],["digits",0],["factor",1.0],["name","Volt"],["rate",1.0],["rounding",1.0],["symbol","V"]] product.uom optical_equipment f [["category",8],["digits",0],["factor",1.0],["name","Volt"],["rate",1.0],["rounding",1.0],["symbol","V"]] \N \N +3089 2024-04-13 20:39:21.814652 0 9 uom_cat_electrical_power [["name","Radian Power"]] product.uom.category optical_equipment f [["name","Radian Power"]] \N \N +3090 2024-04-13 20:39:21.814652 0 37 uom_electrical1 [["category",9],["digits",0],["factor",1.0],["name","Watt"],["rate",1.0],["rounding",1.0],["symbol","W"]] product.uom optical_equipment f [["category",9],["digits",0],["factor",1.0],["name","Watt"],["rate",1.0],["rounding",1.0],["symbol","W"]] \N \N +3091 2024-04-13 20:39:21.814652 0 10 uom_cat_frequency [["name","Frequency"]] product.uom.category optical_equipment f [["name","Frequency"]] \N \N +3092 2024-04-13 20:39:21.814652 0 38 uom_electrical2 [["category",10],["digits",0],["factor",1.0],["name","Hertz"],["rate",1.0],["rounding",1.0],["symbol","Hrz"]] product.uom optical_equipment f [["category",10],["digits",0],["factor",1.0],["name","Hertz"],["rate",1.0],["rounding",1.0],["symbol","Hrz"]] \N \N +3093 2024-04-13 20:39:21.814652 0 11 uom_cat_temperature [["name","Temperature"]] product.uom.category optical_equipment f [["name","Temperature"]] \N \N +3094 2024-04-13 20:39:21.814652 0 39 uom_celsius [["category",11],["digits",0],["factor",1.0],["name","Celsius"],["rate",1.0],["rounding",1.0],["symbol","\\u00b0C"]] product.uom optical_equipment f [["category",11],["digits",0],["factor",1.0],["name","Celsius"],["rate",1.0],["rounding",1.0],["symbol","\\u00b0C"]] \N \N +3095 2024-04-13 20:39:21.814652 0 40 uom_fahrenheit [["category",11],["digits",0],["factor",1.0],["name","Fahrenheit"],["rate",1.0],["rounding",1.0],["symbol","\\u00b0F"]] product.uom optical_equipment f [["category",11],["digits",0],["factor",1.0],["name","Fahrenheit"],["rate",1.0],["rounding",1.0],["symbol","\\u00b0F"]] \N \N +3096 2024-04-13 20:39:21.814652 0 41 uom_kelvin [["category",11],["digits",0],["factor",1.0],["name","Kelvin"],["rate",1.0],["rounding",1.0],["symbol","\\u00b0K"]] product.uom optical_equipment f [["category",11],["digits",0],["factor",1.0],["name","Kelvin"],["rate",1.0],["rounding",1.0],["symbol","\\u00b0K"]] \N \N +3097 2024-04-13 20:39:21.814652 0 12 uom_cat_relative_humedity [["name","Relative Humedity"]] product.uom.category optical_equipment f [["name","Relative Humedity"]] \N \N +3098 2024-04-13 20:39:21.814652 0 42 uom_relative_humedity [["category",12],["digits",0],["factor",1.0],["name","Relative Humedity"],["rate",1.0],["rounding",1.0],["symbol","%HR"]] product.uom optical_equipment f [["category",12],["digits",0],["factor",1.0],["name","Relative Humedity"],["rate",1.0],["rounding",1.0],["symbol","%HR"]] \N \N +3099 2024-04-13 20:39:21.814652 0 307 act_use_pattern [["name","Use Pattern"],["res_model","optical_equipment.use_pattern"]] ir.action.act_window optical_equipment f [["name","Use Pattern"],["res_model","optical_equipment.use_pattern"]] \N \N +3100 2024-04-13 20:39:21.814652 0 594 use_pattern_view_tree [["model","optical_equipment.use_pattern"],["name","use_pattern_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.use_pattern"],["name","use_pattern_tree"],["type","tree"]] \N \N +3101 2024-04-13 20:39:21.814652 0 595 use_pattern_view_form [["model","optical_equipment.use_pattern"],["name","use_pattern_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.use_pattern"],["name","use_pattern_form"],["type","form"]] \N \N +3102 2024-04-13 20:39:21.814652 0 364 act_use_pattern_view1 [["act_window",307],["sequence",10],["view",594]] ir.action.act_window.view optical_equipment f [["act_window",307],["sequence",10],["view",594]] \N \N +3103 2024-04-13 20:39:21.814652 0 365 act_use_pattern_view2 [["act_window",307],["sequence",20],["view",595]] ir.action.act_window.view optical_equipment f [["act_window",307],["sequence",20],["view",595]] \N \N +3104 2024-04-13 20:39:21.814652 0 192 menu_properties_equipments [["icon","tryton-settings"],["name","Properties of Equipments"],["parent",126],["sequence",10]] ir.ui.menu optical_equipment f [["icon","tryton-settings"],["name","Properties of Equipments"],["parent",126],["sequence",10]] \N \N +3105 2024-04-13 20:39:21.814652 0 193 menu_pattern [["action","ir.action.act_window,307"],["icon","tryton-list"],["name","Pattern Use"],["parent",192],["sequence",10]] ir.ui.menu optical_equipment f [["action","ir.action.act_window,307"],["icon","tryton-list"],["name","Pattern Use"],["parent",192],["sequence",10]] \N \N +3106 2024-04-13 20:39:21.814652 0 596 template_view_form1 [["inherit",297],["model","product.template"],["name","template_form"]] ir.ui.view optical_equipment f [["inherit",297],["model","product.template"],["name","template_form"]] \N \N +3107 2024-04-13 20:39:21.814652 0 597 pattern_view_form [["model","optical_equipment.product_pattern"],["name","pattern_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.product_pattern"],["name","pattern_form"],["type","form"]] \N \N +3108 2024-04-13 20:39:21.814652 0 598 pattern_view_tree [["model","optical_equipment.product_pattern"],["name","pattern_tree"],["type","tree"]] ir.ui.view optical_equipment f [["model","optical_equipment.product_pattern"],["name","pattern_tree"],["type","tree"]] \N \N +3109 2024-04-13 20:39:21.814652 0 1 schematic_eye [["name_pattern","Schematic Eye"]] optical_equipment.use_pattern optical_equipment f [["name_pattern","Schematic Eye"]] \N \N +3110 2024-04-13 20:39:21.814652 0 2 trial_lens [["name_pattern","Trial Lens"]] optical_equipment.use_pattern optical_equipment f [["name_pattern","Trial Lens"]] \N \N +3111 2024-04-13 20:39:21.814652 0 3 calibration_weights [["name_pattern","Calibration Weights"]] optical_equipment.use_pattern optical_equipment f [["name_pattern","Calibration Weights"]] \N \N +3112 2024-04-13 20:39:21.814652 0 4 calibration_spheres [["name_pattern","Calibration Spheres"]] optical_equipment.use_pattern optical_equipment f [["name_pattern","Calibration Spheres"]] \N \N +3113 2024-04-13 20:39:21.814652 0 599 purchase_view_form [["inherit",465],["model","purchase.purchase"],["name","purchase_form"]] ir.ui.view optical_equipment f [["inherit",465],["model","purchase.purchase"],["name","purchase_form"]] \N \N +3114 2024-04-13 20:39:21.814652 0 600 purchase_line_view_form [["inherit",469],["model","purchase.line"],["name","purchase_line_form"]] ir.ui.view optical_equipment f [["inherit",469],["model","purchase.line"],["name","purchase_line_form"]] \N \N +3115 2024-04-13 20:39:21.814652 0 601 product_view_list_purchase_line [["inherit",506],["model","product.product"],["name","product_list_purchase_line"]] ir.ui.view optical_equipment f [["inherit",506],["model","product.product"],["name","product_list_purchase_line"]] \N \N +3116 2024-04-13 20:39:21.814652 0 115 purchase_create_equipments [["model",282],["name","create_equipments"],["string","Create Equipments"]] ir.model.button optical_equipment f [["model",282],["name","create_equipments"],["string","Create Equipments"]] \N \N +3117 2024-04-13 20:39:21.814652 0 308 report_purchase [["model","purchase.purchase"],["name","Purchase"],["report","optical_equipment/report/Purchase.fodt"],["report_name","purchase.purchase"],["single",true]] ir.action.report optical_equipment f [["model","purchase.purchase"],["name","Purchase"],["report","optical_equipment/report/Purchase.fodt"],["report_name","purchase.purchase"],["single",true]] \N \N +3118 2024-04-13 20:39:21.814652 0 308 report_purchase_keyword [["action",308],["keyword","form_print"],["model","purchase.purchase,-1"]] ir.action.keyword optical_equipment f [["action",308],["keyword","form_print"],["model","purchase.purchase,-1"]] \N \N +2451 2024-04-13 20:39:16.958214 0 230 report_purchase [["active",false],["model","purchase.purchase"],["name","Purchase"],["report","purchase/purchase.fodt"],["report_name","purchase.purchase"]] ir.action.report purchase f [["active",false],["model","purchase.purchase"],["name","Purchase"],["report","purchase/purchase.fodt"],["report_name","purchase.purchase"]] 2024-04-13 20:39:21.814652 0 +3119 2024-04-13 20:39:21.814652 0 602 sale_view_tree [["inherit",508],["model","sale.sale"],["name","sale_tree"]] ir.ui.view optical_equipment f [["inherit",508],["model","sale.sale"],["name","sale_tree"]] \N \N +3120 2024-04-13 20:39:21.814652 0 603 sale_view_form [["inherit",507],["model","sale.sale"],["name","sale_form"]] ir.ui.view optical_equipment f [["inherit",507],["model","sale.sale"],["name","sale_form"]] \N \N +3121 2024-04-13 20:39:21.814652 0 604 product_view_list_sale_line [["inherit",558],["model","product.product"],["name","product_list_sale_line"]] ir.ui.view optical_equipment f [["inherit",558],["model","product.product"],["name","product_list_sale_line"]] \N \N +3122 2024-04-13 20:39:21.814652 0 16 sequence_quote_sale [["name","Sale Quote"],["sequence_type",15]] ir.sequence optical_equipment f [["name","Sale Quote"],["sequence_type",15]] \N \N +3123 2024-04-13 20:39:21.814652 0 116 report_balance_party_sale [["model",307],["name","report"],["string","Estado de Cuenta"]] ir.model.button optical_equipment f [["model",307],["name","report"],["string","Estado de Cuenta"]] \N \N +3124 2024-04-13 20:39:21.814652 0 605 confirm_sale_date_view_form [["model","optical_equipment.confirm_sale_date.form"],["name","confirm_sale_date_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.confirm_sale_date.form"],["name","confirm_sale_date_form"],["type","form"]] \N \N +3125 2024-04-13 20:39:21.814652 0 309 wizard_confirm_sale_date [["name","Confirm Sale Date"],["wiz_name","optical_equipment.confirm_sale_date"]] ir.action.wizard optical_equipment f [["name","Confirm Sale Date"],["wiz_name","optical_equipment.confirm_sale_date"]] \N \N +3126 2024-04-13 20:39:21.814652 0 310 report_sale [["model","sale.sale"],["name","Sale Equipments"],["report","optical_equipment/report/Sale_Internal.fodt"],["report_name","sale.sale"],["single",true]] ir.action.report optical_equipment f [["model","sale.sale"],["name","Sale Equipments"],["report","optical_equipment/report/Sale_Internal.fodt"],["report_name","sale.sale"],["single",true]] \N \N +3127 2024-04-13 20:39:21.814652 0 309 report_sale_keyword [["action",310],["keyword","form_print"],["model","sale.sale,-1"]] ir.action.keyword optical_equipment f [["action",310],["keyword","form_print"],["model","sale.sale,-1"]] \N \N +3128 2024-04-13 20:39:21.814652 0 311 report_sale_internal [["model","sale.sale"],["name","Sale Equipments Internal"],["report","optical_equipment/report/Sale.fodt"],["report_name","sale.sale"],["single",true]] ir.action.report optical_equipment f [["model","sale.sale"],["name","Sale Equipments Internal"],["report","optical_equipment/report/Sale.fodt"],["report_name","sale.sale"],["single",true]] \N \N +3129 2024-04-13 20:39:21.814652 0 310 report_sale_internal_keyword [["action",311],["keyword","form_print"],["model","sale.sale,-1"]] ir.action.keyword optical_equipment f [["action",311],["keyword","form_print"],["model","sale.sale,-1"]] \N \N +3130 2024-04-13 20:39:21.814652 0 312 report_payment [["model","account.statement.line"],["name","Payment"],["report","optical_equipment/report/Payment.fodt"],["report_name","account.statement.line"],["single",true]] ir.action.report optical_equipment f [["model","account.statement.line"],["name","Payment"],["report","optical_equipment/report/Payment.fodt"],["report_name","account.statement.line"],["single",true]] \N \N +2681 2024-04-13 20:39:19.14446 0 255 report_sale [["active",false],["model","sale.sale"],["name","Sale"],["report","sale/sale.fodt"],["report_name","sale.sale"]] ir.action.report sale f [["active",false],["model","sale.sale"],["name","Sale"],["report","sale/sale.fodt"],["report_name","sale.sale"]] 2024-04-13 20:39:21.814652 0 +3131 2024-04-13 20:39:21.814652 0 313 report_balance_sale_party [["model",""],["name","Balance by Party"],["report","optical_equipment/report/balance_sale_party.fods"],["report_name","optical_equipment.balance_sale_party"],["template_extension","ods"]] ir.action.report optical_equipment f [["model",""],["name","Balance by Party"],["report","optical_equipment/report/balance_sale_party.fods"],["report_name","optical_equipment.balance_sale_party"],["template_extension","ods"]] \N \N +3132 2024-04-13 20:39:21.814652 0 606 print_balance_sale_party_start_view_form [["model","optical_equipment.print_balance_sale_party.start"],["name","print_balance_sale_party_start_form"],["type","form"]] ir.ui.view optical_equipment f [["model","optical_equipment.print_balance_sale_party.start"],["name","print_balance_sale_party_start_form"],["type","form"]] \N \N +3133 2024-04-13 20:39:21.814652 0 314 wizard_print_balance_sale_party [["name","Print Balance Sale by Party"],["wiz_name","optical_equipment.print_balance_sale_party"]] ir.action.wizard optical_equipment f [["name","Print Balance Sale by Party"],["wiz_name","optical_equipment.print_balance_sale_party"]] \N \N +3134 2024-04-13 20:39:21.814652 0 194 menu_print_balance_sale_party [["action","ir.action.wizard,314"],["icon","tryton-print"],["name","Print Balance Sale by Party"],["parent",175]] ir.ui.menu optical_equipment f [["action","ir.action.wizard,314"],["icon","tryton-print"],["name","Print Balance Sale by Party"],["parent",175]] \N \N +3135 2024-04-13 20:39:21.814652 0 607 shipment_out_view_form [["inherit",358],["model","stock.shipment.out"],["name","shipment_out_form"]] ir.ui.view optical_equipment f [["inherit",358],["model","stock.shipment.out"],["name","shipment_out_form"]] \N \N +3136 2024-04-13 20:39:21.814652 0 368 line_without_serial [["text","La linea de envio se encuentra sin serial. Debe asignar un equipo a cada linea correspondiente."]] ir.message optical_equipment f [["text","La linea de envio se encuentra sin serial. Debe asignar un equipo a cada linea correspondiente."]] \N \N +3137 2024-04-13 22:12:02.160011 0 369 msg_not_sequence_equipment [["text","Asigne una secuencia para enumerar equipos."]] ir.message optical_equipment f [["text","Asigne una secuencia para enumerar equipos."]] \N \N +509 2024-04-13 20:27:35.518366 0 1 user_admin [["login","admin"],["menu",2],["name","Administrator"]] res.user res t [["login","admin"],["menu",2],["name","Administrator"]] \N \N +\. + + +-- +-- Data for Name: ir_model_field; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model_field (id, model, name, relation, field_description, ttype, help, module, access, create_date, create_uid, write_date, write_uid) FROM stdin; +956 93 code \N Code char country f \N \N \N \N +957 93 countries country.organization.member Countries many2many country f \N \N \N \N +958 93 create_date \N ir.msg_created_at timestamp country f \N \N \N \N +959 93 create_uid res.user ir.msg_created_by many2one country f \N \N \N \N +960 93 id \N ir.msg_ID integer country f \N \N \N \N +961 93 members country.organization.member Members one2many country f \N \N \N \N +962 93 name \N Name char country f \N \N \N \N +963 93 rec_name \N ir.msg_record_name char country f \N \N \N \N +964 93 write_date \N ir.msg_edited_at timestamp country f \N \N \N \N +965 93 write_uid res.user ir.msg_edited_by many2one country f \N \N \N \N +966 94 active \N Active boolean country f \N \N \N \N +967 94 country country.country Country many2one country f \N \N \N \N +968 94 create_date \N ir.msg_created_at timestamp country f \N \N \N \N +969 94 create_uid res.user ir.msg_created_by many2one country f \N \N \N \N +970 94 from_date \N From Date date country f \N \N \N \N +971 94 id \N ir.msg_ID integer country f \N \N \N \N +972 94 organization country.organization Organization many2one country t \N \N \N \N +973 94 rec_name \N ir.msg_record_name char country f \N \N \N \N +974 94 to_date \N To Date date country f \N \N \N \N +975 94 write_date \N ir.msg_edited_at timestamp country f \N \N \N \N +976 94 write_uid res.user ir.msg_edited_by many2one country f \N \N \N \N +977 95 code_numeric \N Numeric Code char UN M49 region code. country f \N \N \N \N +978 95 countries country.country Countries one2many country f \N \N \N \N +979 95 create_date \N ir.msg_created_at timestamp country f \N \N \N \N +980 95 create_uid res.user ir.msg_created_by many2one country f \N \N \N \N +981 95 id \N ir.msg_ID integer country f \N \N \N \N +982 95 name \N Name char country f \N \N \N \N +983 95 parent country.region Parent many2one country f \N \N \N \N +984 95 rec_name \N ir.msg_record_name char country f \N \N \N \N +985 95 subregions country.region Subregions one2many country f \N \N \N \N +986 95 write_date \N ir.msg_edited_at timestamp country f \N \N \N \N +987 95 write_uid res.user ir.msg_edited_by many2one country f \N \N \N \N +988 96 active \N ir.msg_active boolean ir.msg_active_help country f \N \N \N \N +989 96 code \N Code char The 2 chars ISO country code. country f \N \N \N \N +990 96 code3 \N 3-letters Code char The 3 chars ISO country code. country f \N \N \N \N +991 96 code_numeric \N Numeric Code char The ISO numeric country code. country f \N \N \N \N +992 96 create_date \N ir.msg_created_at timestamp country f \N \N \N \N +993 96 create_uid res.user ir.msg_created_by many2one country f \N \N \N \N +994 96 flag \N Flag char country f \N \N \N \N +995 96 id \N ir.msg_ID integer country f \N \N \N \N +996 96 members country.organization.member Members one2many country f \N \N \N \N +997 96 name \N Name char The main identifier of the country. country f \N \N \N \N +998 96 organizations country.organization.member Organizations many2many country f \N \N \N \N +999 96 rec_name \N ir.msg_record_name char country f \N \N \N \N +1000 96 region country.region Region many2one country f \N \N \N \N +1001 96 subdivisions country.subdivision Subdivisions one2many country f \N \N \N \N +1002 96 write_date \N ir.msg_edited_at timestamp country f \N \N \N \N +1003 96 write_uid res.user ir.msg_edited_by many2one country f \N \N \N \N +1004 97 active \N ir.msg_active boolean ir.msg_active_help country f \N \N \N \N +1005 97 code \N Code char The ISO code of the subdivision. country f \N \N \N \N +1006 97 country country.country Country many2one The country where this subdivision is. country f \N \N \N \N +1007 97 create_date \N ir.msg_created_at timestamp country f \N \N \N \N +1008 97 create_uid res.user ir.msg_created_by many2one country f \N \N \N \N +1009 97 flag \N Flag char country f \N \N \N \N +1010 97 id \N ir.msg_ID integer country f \N \N \N \N +1011 97 name \N Name char The main identifier of the subdivision. country f \N \N \N \N +1012 97 parent country.subdivision Parent many2one Add subdivision below the parent. country f \N \N \N \N +1013 97 rec_name \N ir.msg_record_name char country f \N \N \N \N +1014 97 type \N Type selection country f \N \N \N \N +1015 97 write_date \N ir.msg_edited_at timestamp country f \N \N \N \N +1016 97 write_uid res.user ir.msg_edited_by many2one country f \N \N \N \N +1017 98 city \N City char The city associated with the postal code. country f \N \N \N \N +1018 98 country country.country Country many2one The country that contains the postal code. country f \N \N \N \N +1019 98 create_date \N ir.msg_created_at timestamp country f \N \N \N \N +1020 98 create_uid res.user ir.msg_created_by many2one country f \N \N \N \N +1021 98 id \N ir.msg_ID integer country f \N \N \N \N +1022 98 postal_code \N Postal Code char country f \N \N \N \N +1023 98 rec_name \N ir.msg_record_name char country f \N \N \N \N +1024 98 subdivision country.subdivision Subdivision many2one The subdivision where the postal code is. country f \N \N \N \N +1025 98 write_date \N ir.msg_edited_at timestamp country f \N \N \N \N +1026 98 write_uid res.user ir.msg_edited_by many2one country f \N \N \N \N +1027 99 active \N ir.msg_active boolean ir.msg_active_help currency f \N \N \N \N +1028 99 code \N Code char The 3 chars ISO currency code. currency f \N \N \N \N +1029 99 create_date \N ir.msg_created_at timestamp currency f \N \N \N \N +1030 99 create_uid res.user ir.msg_created_by many2one currency f \N \N \N \N +1031 99 digits \N Digits integer The number of digits to display after the decimal separator. currency f \N \N \N \N +1032 99 id \N ir.msg_ID integer currency f \N \N \N \N +1033 99 name \N Name char The main identifier of the currency. currency f \N \N \N \N +1034 99 numeric_code \N Numeric Code char The 3 digits ISO currency code. currency f \N \N \N \N +1035 99 rate \N Current rate numeric currency f \N \N \N \N +1036 99 rates currency.currency.rate Rates one2many Add floating exchange rates for the currency. currency f \N \N \N \N +1037 99 rec_name \N ir.msg_record_name char currency f \N \N \N \N +1038 99 rounding \N Rounding factor numeric The minimum amount which can be represented in this currency. currency f \N \N \N \N +1039 99 symbol \N Symbol char The symbol used for currency formating. currency f \N \N \N \N +1040 99 write_date \N ir.msg_edited_at timestamp currency f \N \N \N \N +1041 99 write_uid res.user ir.msg_edited_by many2one currency f \N \N \N \N +1042 100 create_date \N ir.msg_created_at timestamp currency f \N \N \N \N +1043 100 create_uid res.user ir.msg_created_by many2one currency f \N \N \N \N +1044 100 currency currency.currency Currency many2one The currency on which the rate applies. currency t \N \N \N \N +1045 100 date \N Date date From when the rate applies. currency f \N \N \N \N +1046 100 id \N ir.msg_ID integer currency f \N \N \N \N +1047 100 rate \N Rate numeric The floating exchange rate used to convert the currency. currency f \N \N \N \N +1048 100 rec_name \N ir.msg_record_name char currency f \N \N \N \N +1049 100 write_date \N ir.msg_edited_at timestamp currency f \N \N \N \N +1050 100 write_uid res.user ir.msg_edited_by many2one currency f \N \N \N \N +1051 101 create_date \N ir.msg_created_at timestamp currency f \N \N \N \N +1052 101 create_uid res.user ir.msg_created_by many2one currency f \N \N \N \N +1053 101 currencies currency.cron-currency.currency Currencies many2many The currencies to update the rate. currency f \N \N \N \N +1054 101 currency currency.currency Currency many2one The base currency to fetch rate. currency f \N \N \N \N +1055 101 day \N Day of Month integer currency f \N \N \N \N +1056 101 frequency \N Frequency selection How frequently rates must be updated. currency f \N \N \N \N +1057 101 id \N ir.msg_ID integer currency f \N \N \N \N +1058 101 last_update \N Last Update date currency f \N \N \N \N +1059 101 rec_name \N ir.msg_record_name char currency f \N \N \N \N +1060 101 source \N Source selection The external source for rates. currency f \N \N \N \N +1061 101 weekday ir.calendar.day Day of Week many2one currency f \N \N \N \N +1062 101 write_date \N ir.msg_edited_at timestamp currency f \N \N \N \N +1063 101 write_uid res.user ir.msg_edited_by many2one currency f \N \N \N \N +1064 102 create_date \N ir.msg_created_at timestamp currency f \N \N \N \N +1065 102 create_uid res.user ir.msg_created_by many2one currency f \N \N \N \N +1066 102 cron currency.cron Cron many2one currency f \N \N \N \N +1067 102 currency currency.currency Currency many2one currency f \N \N \N \N +1068 102 id \N ir.msg_ID integer currency f \N \N \N \N +1069 102 rec_name \N ir.msg_record_name char currency f \N \N \N \N +1070 102 write_date \N ir.msg_edited_at timestamp currency f \N \N \N \N +1071 102 write_uid res.user ir.msg_edited_by many2one currency f \N \N \N \N +1072 103 active \N ir.msg_active boolean ir.msg_active_help party f \N \N \N \N +1073 103 childs party.category Children one2many Add children below the category. party f \N \N \N \N +1074 103 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1075 103 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1076 103 id \N ir.msg_ID integer party f \N \N \N \N +1077 103 name \N Name char The main identifier of the category. party f \N \N \N \N +1078 103 parent party.category Parent many2one Add the category below the parent. party f \N \N \N \N +1079 103 rec_name \N ir.msg_record_name char party f \N \N \N \N +1080 103 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1081 103 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1082 104 active \N ir.msg_active boolean ir.msg_active_help party f \N \N \N \N +1083 104 addresses party.address Addresses one2many party f \N \N \N \N +1084 104 categories party.party-party.category Categories many2many The categories the party belongs to. party f \N \N \N \N +1085 104 code \N Code char The unique identifier of the party. party f \N \N \N \N +1086 104 code_readonly \N Code Readonly boolean party f \N \N \N \N +1087 104 contact_mechanisms party.contact_mechanism Contact Mechanisms one2many party f \N \N \N \N +1088 104 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1089 104 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1090 104 distance \N Distance integer party f \N \N \N \N +1091 104 email \N E-Mail char party f \N \N \N \N +1092 104 fax \N Fax char party f \N \N \N \N +1093 104 full_name \N Full Name char party f \N \N \N \N +1094 104 id \N ir.msg_ID integer party f \N \N \N \N +1095 104 identifiers party.identifier Identifiers one2many Add other identifiers of the party. party f \N \N \N \N +1096 104 lang ir.lang Language many2one Used to translate communications with the party. party f \N \N \N \N +1097 104 langs party.party.lang Languages one2many party f \N \N \N \N +1098 104 mobile \N Mobile char party f \N \N \N \N +1099 104 name \N Name char The main identifier of the party. party f \N \N \N \N +1100 104 phone \N Phone char party f \N \N \N \N +1101 104 rec_name \N ir.msg_record_name char party f \N \N \N \N +1102 104 replaced_by party.party Replaced By many2one The party replacing this one. party f \N \N \N \N +1103 104 tax_identifier party.identifier Tax Identifier many2one The identifier used for tax report. party f \N \N \N \N +1104 104 website \N Website char party f \N \N \N \N +1105 104 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1106 104 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1107 105 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1108 105 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1109 105 id \N ir.msg_ID integer party f \N \N \N \N +1110 105 lang ir.lang Language many2one party f \N \N \N \N +1111 105 party party.party Party many2one party f \N \N \N \N +1112 105 rec_name \N ir.msg_record_name char party f \N \N \N \N +1113 105 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1114 105 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1115 106 category party.category Category many2one party f \N \N \N \N +1116 106 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1117 106 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1118 106 id \N ir.msg_ID integer party f \N \N \N \N +1119 106 party party.party Party many2one party f \N \N \N \N +1120 106 rec_name \N ir.msg_record_name char party f \N \N \N \N +1121 106 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1122 106 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1123 107 active \N ir.msg_active boolean ir.msg_active_help party f \N \N \N \N +1124 107 address party.address Address many2one The address identified by this record. party f \N \N \N \N +1125 107 code \N Code char party f \N \N \N \N +1126 107 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1127 107 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1128 107 id \N ir.msg_ID integer party f \N \N \N \N +1129 107 party party.party Party many2one The party identified by this record. party f \N \N \N \N +1130 107 rec_name \N ir.msg_record_name char party f \N \N \N \N +1131 107 sequence \N ir.msg_sequence integer party f \N \N \N \N +1132 107 type \N Type selection party f \N \N \N \N +1133 107 type_address \N Type of Address boolean party f \N \N \N \N +1134 107 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1135 107 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1136 108 id \N ir.msg_ID integer party f \N \N \N \N +1137 108 parties_failed party.party Parties Failed many2many party f \N \N \N \N +1138 108 parties_succeed party.party Parties Succeed many2many party f \N \N \N \N +1139 109 destination party.party Destination many2one The party that replaces. party f \N \N \N \N +1140 109 id \N ir.msg_ID integer party f \N \N \N \N +1141 109 source party.party Source many2one The party to be replaced. party f \N \N \N \N +1142 110 id \N ir.msg_ID integer party f \N \N \N \N +1143 110 party party.party Party many2one The party to be erased. party f \N \N \N \N +1144 111 active \N ir.msg_active boolean ir.msg_active_help party f \N \N \N \N +1145 111 city \N City char party f \N \N \N \N +1146 111 contact_mechanisms party.contact_mechanism Contact Mechanisms one2many party f \N \N \N \N +1147 111 country country.country Country many2one party f \N \N \N \N +1148 111 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1149 111 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1150 111 full_address \N Full Address text party f \N \N \N \N +1151 111 id \N ir.msg_ID integer party f \N \N \N \N +1152 111 identifiers party.identifier Identifiers one2many party f \N \N \N \N +1153 111 name \N Building Name char party f \N \N \N \N +1154 111 party party.party Party many2one party f \N \N \N \N +1155 111 party_name \N Party Name char If filled, replace the name of the party for address formatting party f \N \N \N \N +1156 111 postal_code \N Postal Code char party f \N \N \N \N +1157 111 rec_name \N ir.msg_record_name char party f \N \N \N \N +1158 111 sequence \N ir.msg_sequence integer party f \N \N \N \N +1159 111 street \N Street text party f \N \N \N \N +1160 111 street_single_line \N Street char party f \N \N \N \N +1161 111 subdivision country.subdivision Subdivision many2one party f \N \N \N \N +1162 111 subdivision_types \N Subdivision Types multiselection party f \N \N \N \N +1163 111 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1164 111 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1165 112 active \N ir.msg_active boolean ir.msg_active_help party f \N \N \N \N +1166 112 country_code \N Country Code char party f \N \N \N \N +1167 112 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1168 112 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1169 112 format_ \N Format text Available variables (also in upper case):\n- ${party_name}\n- ${name}\n- ${attn}\n- ${street}\n- ${postal_code}\n- ${city}\n- ${subdivision}\n- ${subdivision_code}\n- ${country}\n- ${country_code} party f \N \N \N \N +1170 112 id \N ir.msg_ID integer party f \N \N \N \N +1171 112 language_code \N Language Code char party f \N \N \N \N +1172 112 rec_name \N ir.msg_record_name char party f \N \N \N \N +1173 112 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1174 112 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1175 113 active \N ir.msg_active boolean ir.msg_active_help party f \N \N \N \N +1176 113 country_code \N Country Code char party f \N \N \N \N +1177 113 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1178 113 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1179 113 id \N ir.msg_ID integer party f \N \N \N \N +1180 113 rec_name \N ir.msg_record_name char party f \N \N \N \N +1181 113 types \N Subdivision Types multiselection party f \N \N \N \N +1182 113 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1183 113 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1184 114 active \N ir.msg_active boolean ir.msg_active_help party f \N \N \N \N +1185 114 address party.address Address many2one party f \N \N \N \N +1186 114 comment \N Comment text party f \N \N \N \N +1187 114 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1188 114 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1189 114 email \N E-Mail char party f \N \N \N \N +1190 114 id \N ir.msg_ID integer party f \N \N \N \N +1191 114 language ir.lang Language many2one Used to translate communication made using the contact mechanism.\nLeave empty for the party language. party f \N \N \N \N +1192 114 languages party.contact_mechanism.language Languages one2many party f \N \N \N \N +1193 114 name \N Name char party f \N \N \N \N +1194 114 other_value \N Value char party f \N \N \N \N +1195 114 party party.party Party many2one party f \N \N \N \N +1196 114 rec_name \N ir.msg_record_name char party f \N \N \N \N +1197 114 sequence \N ir.msg_sequence integer party f \N \N \N \N +1198 114 sip \N SIP char party f \N \N \N \N +436 39 target \N Target char ir f \N \N \N \N +1199 114 skype \N Skype char party f \N \N \N \N +1200 114 type \N Type selection party f \N \N \N \N +1201 114 url \N URL char party f \N \N \N \N +1202 114 value \N Value char party f \N \N \N \N +1203 114 value_compact \N Value Compact char party f \N \N \N \N +1204 114 website \N Website char party f \N \N \N \N +1205 114 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1206 114 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1207 115 contact_mechanism party.contact_mechanism Contact Mechanism many2one party f \N \N \N \N +1208 115 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1209 115 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1210 115 id \N ir.msg_ID integer party f \N \N \N \N +1211 115 language ir.lang Language many2one party f \N \N \N \N +1212 115 rec_name \N ir.msg_record_name char party f \N \N \N \N +1213 115 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1214 115 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1215 116 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1216 116 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1217 116 id \N ir.msg_ID integer party f \N \N \N \N +1218 116 identifier_types \N Identifier Types multiselection Defines which identifier types are available.\nLeave empty for all of them. party f \N \N \N \N +1219 116 party_lang ir.lang Party Language many2one The default language for new parties. party f \N \N \N \N +1220 116 party_sequence ir.sequence Party Sequence many2one Used to generate the party code. party f \N \N \N \N +1221 116 rec_name \N ir.msg_record_name char party f \N \N \N \N +1222 116 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1223 116 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1224 117 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1225 117 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1226 117 id \N ir.msg_ID integer party f \N \N \N \N +1227 117 party_sequence ir.sequence Party Sequence many2one Used to generate the party code. party f \N \N \N \N +1228 117 rec_name \N ir.msg_record_name char party f \N \N \N \N +1229 117 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1230 117 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1231 118 create_date \N ir.msg_created_at timestamp party f \N \N \N \N +1232 118 create_uid res.user ir.msg_created_by many2one party f \N \N \N \N +1233 118 id \N ir.msg_ID integer party f \N \N \N \N +1234 118 party_lang ir.lang Party Language many2one The default language for new parties. party f \N \N \N \N +1235 118 rec_name \N ir.msg_record_name char party f \N \N \N \N +1236 118 write_date \N ir.msg_edited_at timestamp party f \N \N \N \N +1237 118 write_uid res.user ir.msg_edited_by many2one party f \N \N \N \N +1238 74 contact_mechanism \N Contact Mechanism selection Define which email address to use from the party's contact mechanisms. party f \N \N \N \N +1239 119 create_date \N ir.msg_created_at timestamp company f \N \N \N \N +1240 119 create_uid res.user ir.msg_created_by many2one company f \N \N \N \N +1241 119 currency currency.currency Currency many2one The main currency for the company. company f \N \N \N \N +1242 119 employees company.employee Employees one2many Add employees to the company. company f \N \N \N \N +1243 119 footer \N Footer text The text to display on report footers. company f \N \N \N \N +1244 119 header \N Header text The text to display on report headers. company f \N \N \N \N +1245 119 id \N ir.msg_ID integer company f \N \N \N \N +1246 119 party party.party Party many2one company f \N \N \N \N +1247 119 rec_name \N ir.msg_record_name char company f \N \N \N \N +1248 119 timezone \N Timezone selection Used to compute the today date. company f \N \N \N \N +1249 119 write_date \N ir.msg_edited_at timestamp company f \N \N \N \N +1250 119 write_uid res.user ir.msg_edited_by many2one company f \N \N \N \N +1251 120 company company.company Company many2one The company to which the employee belongs. company f \N \N \N \N +1252 120 create_date \N ir.msg_created_at timestamp company f \N \N \N \N +1253 120 create_uid res.user ir.msg_created_by many2one company f \N \N \N \N +1254 120 end_date \N End Date date When the employee leaves the company. company f \N \N \N \N +1255 120 id \N ir.msg_ID integer company f \N \N \N \N +1256 120 party party.party Party many2one The party which represents the employee. company f \N \N \N \N +1257 120 rec_name \N ir.msg_record_name char company f \N \N \N \N +1258 120 start_date \N Start Date date When the employee joins the company. company f \N \N \N \N +1259 120 subordinates company.employee Subordinates one2many The employees to be overseen by this employee. company f \N \N \N \N +1260 120 supervisor company.employee Supervisor many2one The employee who oversees this employee. company f \N \N \N \N +1261 120 write_date \N ir.msg_edited_at timestamp company f \N \N \N \N +1262 120 write_uid res.user ir.msg_edited_by many2one company f \N \N \N \N +1263 121 id \N ir.msg_ID integer company f \N \N \N \N +1264 122 company company.company Company many2one company f \N \N \N \N +1265 122 create_date \N ir.msg_created_at timestamp company f \N \N \N \N +1266 122 create_uid res.user ir.msg_created_by many2one company f \N \N \N \N +1267 122 id \N ir.msg_ID integer company f \N \N \N \N +1268 122 rec_name \N ir.msg_record_name char company f \N \N \N \N +1269 122 user res.user User many2one company f \N \N \N \N +1270 122 write_date \N ir.msg_edited_at timestamp company f \N \N \N \N +1271 122 write_uid res.user ir.msg_edited_by many2one company f \N \N \N \N +1272 123 create_date \N ir.msg_created_at timestamp company f \N \N \N \N +1273 123 create_uid res.user ir.msg_created_by many2one company f \N \N \N \N +1274 123 employee company.employee Employee many2one company f \N \N \N \N +1275 123 id \N ir.msg_ID integer company f \N \N \N \N +1276 123 rec_name \N ir.msg_record_name char company f \N \N \N \N +1277 123 user res.user User many2one company f \N \N \N \N +1278 123 write_date \N ir.msg_edited_at timestamp company f \N \N \N \N +1279 123 write_uid res.user ir.msg_edited_by many2one company f \N \N \N \N +1280 78 companies res.user-company.company Companies many2many The companies that the user has access to. company f \N \N \N \N +1281 78 company company.company Current Company many2one Select the company to work for. company f \N \N \N \N +1282 78 company_filter \N Company Filter selection Define records of which companies are shown. company f \N \N \N \N +1283 78 employee company.employee Current Employee many2one Select the employee to make the user behave as such. company f \N \N \N \N +1284 78 employees res.user-company.employee Employees many2many Add employees to grant the user access to them. company f \N \N \N \N +1285 11 company company.company Company many2one Restricts the sequence usage to the company. company f \N \N \N \N +1286 12 company company.company Company many2one Restricts the sequence usage to the company. company f \N \N \N \N +1287 46 companies ir.cron-company.company Companies many2many Companies registered for this cron. company f \N \N \N \N +1288 124 company company.company Company many2one company f \N \N \N \N +1289 124 create_date \N ir.msg_created_at timestamp company f \N \N \N \N +1290 124 create_uid res.user ir.msg_created_by many2one company f \N \N \N \N +1291 124 cron ir.cron Cron many2one company f \N \N \N \N +1292 124 id \N ir.msg_ID integer company f \N \N \N \N +1293 124 rec_name \N ir.msg_record_name char company f \N \N \N \N +1294 124 write_date \N ir.msg_edited_at timestamp company f \N \N \N \N +1295 124 write_uid res.user ir.msg_edited_by many2one company f \N \N \N \N +1296 118 company company.company Company many2one company f \N \N \N \N +1297 105 company company.company Company many2one company f \N \N \N \N +1298 115 company company.company Company many2one company f \N \N \N \N +1299 125 company company.company Company many2one account f \N \N \N \N +1300 125 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1301 125 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1302 125 end_date \N Ending Date date account f \N \N \N \N +1303 125 icon \N Icon char account f \N \N \N \N +1304 125 id \N ir.msg_ID integer account f \N \N \N \N +1305 125 name \N Name char account f \N \N \N \N +1306 125 periods account.period Periods one2many account f \N \N \N \N +1307 125 post_move_sequence ir.sequence Post Move Sequence many2one account f \N \N \N \N +1308 125 rec_name \N ir.msg_record_name char account f \N \N \N \N +1309 125 start_date \N Starting Date date account f \N \N \N \N +1310 125 state \N State selection account f \N \N \N \N +1311 125 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1312 125 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1313 126 company company.company Company many2one account f \N \N \N \N +1314 126 credit_account account.account Credit Account many2one account f \N \N \N \N +1315 126 debit_account account.account Debit Account many2one account f \N \N \N \N +1316 126 fiscalyear account.fiscalyear Fiscal Year many2one account f \N \N \N \N +1317 126 id \N ir.msg_ID integer account f \N \N \N \N +1318 126 journal account.journal Journal many2one account f \N \N \N \N +1319 126 period account.period Period many2one account f \N \N \N \N +1320 119 payable \N Payable numeric account f \N \N \N \N +1321 119 payable_today \N Payable Today numeric account f \N \N \N \N +1322 119 receivable \N Receivable numeric account f \N \N \N \N +1323 119 receivable_today \N Receivable Today numeric account f \N \N \N \N +1324 127 assets \N Assets boolean account f \N \N \N \N +1325 127 childs account.account.type.template Children one2many account f \N \N \N \N +1326 127 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1327 127 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1328 127 debt \N Debt boolean Check to allow booking debt via supplier invoice. account f \N \N \N \N +1329 127 expense \N Expense boolean account f \N \N \N \N +1330 127 id \N ir.msg_ID integer account f \N \N \N \N +1331 127 name \N Name char account f \N \N \N \N +1332 127 parent account.account.type.template Parent many2one account f \N \N \N \N +1333 127 payable \N Payable boolean account f \N \N \N \N +1334 127 rec_name \N ir.msg_record_name char account f \N \N \N \N +1335 127 receivable \N Receivable boolean account f \N \N \N \N +1336 127 revenue \N Revenue boolean account f \N \N \N \N +1337 127 sequence \N ir.msg_sequence integer account f \N \N \N \N +1338 127 statement \N Statement selection account f \N \N \N \N +1339 127 stock \N Stock boolean account f \N \N \N \N +1340 127 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1341 127 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1342 128 amount \N Amount numeric account f \N \N \N \N +1343 128 amount_cmp \N Amount numeric account f \N \N \N \N +1344 128 assets \N Assets boolean account f \N \N \N \N +1345 128 childs account.account.type Children one2many account f \N \N \N \N +1346 128 company company.company Company many2one account f \N \N \N \N +1347 128 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1348 128 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1349 128 currency currency.currency Currency many2one account f \N \N \N \N +1350 128 debt \N Debt boolean Check to allow booking debt via supplier invoice. account f \N \N \N \N +1351 128 expense \N Expense boolean account f \N \N \N \N +1352 128 id \N ir.msg_ID integer account f \N \N \N \N +1353 128 name \N Name char account f \N \N \N \N +1354 128 parent account.account.type Parent many2one account f \N \N \N \N +1355 128 payable \N Payable boolean account f \N \N \N \N +1356 128 rec_name \N ir.msg_record_name char account f \N \N \N \N +1357 128 receivable \N Receivable boolean account f \N \N \N \N +1358 128 revenue \N Revenue boolean account f \N \N \N \N +1359 128 sequence \N ir.msg_sequence integer account f \N \N \N \N +1360 128 statement \N Statement selection account f \N \N \N \N +1361 128 stock \N Stock boolean account f \N \N \N \N +1362 128 template account.account.type.template Template many2one account f \N \N \N \N +1363 128 template_override \N Override Template boolean Check to override template definition account f \N \N \N \N +1364 128 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1365 128 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1366 129 childs account.account.template Children one2many account f \N \N \N \N +1367 129 closed \N Closed boolean Check to prevent posting move on the account. account f \N \N \N \N +1368 129 code \N Code char account f \N \N \N \N +1369 129 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1370 129 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1371 129 credit_type account.account.type.template Credit Type many2one account f \N \N \N \N +1372 129 debit_type account.account.type.template Debit Type many2one account f \N \N \N \N +1373 129 deferral \N Deferral boolean account f \N \N \N \N +1374 129 end_date \N End Date date account f \N \N \N \N +1375 129 general_ledger_balance \N General Ledger Balance boolean Display only the balance in the general ledger report. account f \N \N \N \N +1376 129 id \N ir.msg_ID integer account f \N \N \N \N +1377 129 name \N Name char account f \N \N \N \N +1378 129 parent account.account.template Parent many2one account f \N \N \N \N +1379 129 party_required \N Party Required boolean account f \N \N \N \N +1380 129 rec_name \N ir.msg_record_name char account f \N \N \N \N +1381 129 reconcile \N Reconcile boolean Allow move lines of this account to be reconciled. account f \N \N \N \N +1382 129 replaced_by account.account.template Replaced By many2one account f \N \N \N \N +1383 129 start_date \N Start Date date account f \N \N \N \N +1384 129 taxes account.account.template-account.tax.template Default Taxes many2many account f \N \N \N \N +1385 129 type account.account.type.template Type many2one account f \N \N \N \N +1386 129 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1387 129 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1388 130 account account.account.template Account Template many2one account f \N \N \N \N +1389 130 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1390 130 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1391 130 id \N ir.msg_ID integer account f \N \N \N \N +1392 130 rec_name \N ir.msg_record_name char account f \N \N \N \N +1393 130 tax account.tax.template Tax Template many2one account f \N \N \N \N +1394 130 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1395 130 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1396 131 active \N Active boolean account f \N \N \N \N +1397 131 amount_second_currency \N Amount Second Currency numeric account f \N \N \N \N +1398 131 balance \N Balance numeric account f \N \N \N \N +1399 131 childs account.account Children one2many account f \N \N \N \N +1400 131 closed \N Closed boolean Check to prevent posting move on the account. account f \N \N \N \N +1401 131 code \N Code char account f \N \N \N \N +1402 131 company company.company Company many2one account f \N \N \N \N +1403 131 context_company \N Context Company boolean account f \N \N \N \N +1404 131 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1405 131 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1406 131 credit \N Credit numeric account f \N \N \N \N +1407 131 credit_type account.account.type Credit Type many2one The type used if not empty and debit < credit. account f \N \N \N \N +1408 131 currency currency.currency Currency many2one account f \N \N \N \N +1409 131 debit \N Debit numeric account f \N \N \N \N +1410 131 debit_type account.account.type Debit Type many2one The type used if not empty and debit > credit. account f \N \N \N \N +1411 131 deferral \N Deferral boolean account f \N \N \N \N +1412 131 deferrals account.account.deferral Deferrals one2many account f \N \N \N \N +1413 131 end_date \N End Date date account f \N \N \N \N +1414 131 general_ledger_balance \N General Ledger Balance boolean Display only the balance in the general ledger report. account f \N \N \N \N +1415 131 id \N ir.msg_ID integer account f \N \N \N \N +1416 131 left \N Left integer account f \N \N \N \N +1417 131 line_count \N Line Count integer account f \N \N \N \N +1418 131 name \N Name char account f \N \N \N \N +1419 131 note \N Note text account f \N \N \N \N +1420 131 parent account.account Parent many2one account f \N \N \N \N +1421 131 party_required \N Party Required boolean account f \N \N \N \N +1422 131 rec_name \N ir.msg_record_name char account f \N \N \N \N +1423 131 reconcile \N Reconcile boolean Allow move lines of this account to be reconciled. account f \N \N \N \N +1424 131 replaced_by account.account Replaced By many2one account f \N \N \N \N +1425 131 right \N Right integer account f \N \N \N \N +1426 131 second_currency currency.currency Second Currency many2one Force all moves for this account to have this second currency. account f \N \N \N \N +1427 131 start_date \N Start Date date account f \N \N \N \N +1428 131 taxes account.account-account.tax Default Taxes many2many Default tax for manual encoding of move lines\nfor journal types: "expense" and "revenue". account f \N \N \N \N +1429 131 template account.account.template Template many2one account f \N \N \N \N +1430 131 template_override \N Override Template boolean Check to override template definition account f \N \N \N \N +1431 131 type account.account.type Type many2one account f \N \N \N \N +1432 131 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1433 131 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1434 132 account account.account Account many2one account f \N \N \N \N +1435 132 active \N Active boolean account f \N \N \N \N +1436 132 amount_second_currency \N Amount Second Currency numeric account f \N \N \N \N +1437 132 balance \N Balance numeric account f \N \N \N \N +1438 132 closed \N Closed boolean account f \N \N \N \N +1439 132 code \N Code char account f \N \N \N \N +1440 132 company company.company Company many2one account f \N \N \N \N +1441 132 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1442 132 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1443 132 credit \N Credit numeric account f \N \N \N \N +1444 132 credit_type account.account.type Credit Type many2one account f \N \N \N \N +1445 132 currency currency.currency Currency many2one account f \N \N \N \N +1446 132 debit \N Debit numeric account f \N \N \N \N +1447 132 debit_type account.account.type Debit Type many2one account f \N \N \N \N +1448 132 end_date \N End Date date account f \N \N \N \N +1449 132 id \N ir.msg_ID integer account f \N \N \N \N +1450 132 line_count \N Line Count integer account f \N \N \N \N +1451 132 name \N Name char account f \N \N \N \N +1452 132 party party.party Party many2one account f \N \N \N \N +1453 132 rec_name \N ir.msg_record_name char account f \N \N \N \N +1454 132 second_currency currency.currency Secondary Currency many2one account f \N \N \N \N +1455 132 start_date \N Start Date date account f \N \N \N \N +1456 132 type account.account.type Type many2one account f \N \N \N \N +1457 132 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1458 132 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1459 133 account account.account Account many2one account f \N \N \N \N +1460 133 amount_second_currency \N Amount Second Currency numeric account f \N \N \N \N +1461 133 balance \N Balance numeric account f \N \N \N \N +1462 133 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1463 133 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1464 133 credit \N Credit numeric account f \N \N \N \N +1465 133 currency currency.currency Currency many2one account f \N \N \N \N +1466 133 debit \N Debit numeric account f \N \N \N \N +1467 133 fiscalyear account.fiscalyear Fiscal Year many2one account f \N \N \N \N +1468 133 id \N ir.msg_ID integer account f \N \N \N \N +1469 133 line_count \N Line Count integer account f \N \N \N \N +1470 133 rec_name \N ir.msg_record_name char account f \N \N \N \N +1471 133 second_currency currency.currency Second Currency many2one account f \N \N \N \N +1472 133 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1473 133 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1474 134 account account.account Account many2one account f \N \N \N \N +1475 134 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1476 134 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1477 134 id \N ir.msg_ID integer account f \N \N \N \N +1478 134 rec_name \N ir.msg_record_name char account f \N \N \N \N +1479 134 tax account.tax Tax many2one account f \N \N \N \N +1480 134 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1481 134 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1482 135 company company.company Company many2one account f \N \N \N \N +1483 135 fiscalyear account.fiscalyear Fiscal Year many2one Leave empty for all open fiscal year. account f \N \N \N \N +1484 135 id \N ir.msg_ID integer account f \N \N \N \N +1485 135 posted \N Posted Moves boolean Only include posted moves. account f \N \N \N \N +1486 136 account account.account Account many2one account f \N \N \N \N +1487 136 active \N Active boolean account f \N \N \N \N +1488 136 company company.company Company many2one account f \N \N \N \N +1489 136 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1490 136 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1491 136 credit \N Credit numeric account f \N \N \N \N +1492 136 credit_type account.account.type Credit Type many2one account f \N \N \N \N +1493 136 currency currency.currency Currency many2one account f \N \N \N \N +1494 136 debit \N Debit numeric account f \N \N \N \N +1495 136 debit_type account.account.type Debit Type many2one account f \N \N \N \N +1496 136 end_balance \N End Balance numeric account f \N \N \N \N +1497 136 end_credit \N End Credit numeric account f \N \N \N \N +1498 136 end_date \N End Date date account f \N \N \N \N +1499 136 end_debit \N End Debit numeric account f \N \N \N \N +1500 136 general_ledger_balance \N General Ledger Balance boolean account f \N \N \N \N +1501 136 id \N ir.msg_ID integer account f \N \N \N \N +1502 136 line_count \N Line Count integer account f \N \N \N \N +1503 136 lines account.general_ledger.line Lines one2many account f \N \N \N \N +1504 136 rec_name \N ir.msg_record_name char account f \N \N \N \N +1505 136 start_balance \N Start Balance numeric account f \N \N \N \N +1506 136 start_credit \N Start Credit numeric account f \N \N \N \N +1507 136 start_date \N Start Date date account f \N \N \N \N +1508 136 start_debit \N Start Debit numeric account f \N \N \N \N +1509 136 type account.account.type Type many2one account f \N \N \N \N +1510 136 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1511 136 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1512 137 company company.company Company many2one account f \N \N \N \N +1513 137 end_period account.period End Period many2one account f \N \N \N \N +1514 137 fiscalyear account.fiscalyear Fiscal Year many2one account f \N \N \N \N +1515 137 from_date \N From Date date account f \N \N \N \N +1516 137 id \N ir.msg_ID integer account f \N \N \N \N +1517 137 journal account.journal Journal many2one Only include moves from the journal. account f \N \N \N \N +1518 137 posted \N Posted Moves boolean Only include posted moves. account f \N \N \N \N +1519 137 start_period account.period Start Period many2one account f \N \N \N \N +1520 137 to_date \N To Date date account f \N \N \N \N +1521 138 account account.account Account many2one account f \N \N \N \N +1522 138 active \N Active boolean account f \N \N \N \N +1523 138 company company.company Company many2one account f \N \N \N \N +1524 138 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1525 138 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1526 138 credit \N Credit numeric account f \N \N \N \N +1527 138 currency currency.currency Currency many2one account f \N \N \N \N +1528 138 debit \N Debit numeric account f \N \N \N \N +1529 138 end_balance \N End Balance numeric account f \N \N \N \N +1530 138 end_credit \N End Credit numeric account f \N \N \N \N +1531 138 end_date \N End Date date account f \N \N \N \N +1532 138 end_debit \N End Debit numeric account f \N \N \N \N +1533 138 id \N ir.msg_ID integer account f \N \N \N \N +1534 138 line_count \N Line Count integer account f \N \N \N \N +1535 138 party party.party Party many2one account f \N \N \N \N +1536 138 rec_name \N ir.msg_record_name char account f \N \N \N \N +1537 138 start_balance \N Start Balance numeric account f \N \N \N \N +1538 138 start_credit \N Start Credit numeric account f \N \N \N \N +1539 138 start_date \N Start Date date account f \N \N \N \N +1540 138 start_debit \N Start Debit numeric account f \N \N \N \N +1541 138 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1542 138 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1543 139 account account.general_ledger.account Account many2one account t \N \N \N \N +1544 139 account_party account.general_ledger.account.party Account Party many2one account f \N \N \N \N +1545 139 amount_second_currency \N Amount Second Currency numeric account f \N \N \N \N +1546 139 balance \N Balance numeric account f \N \N \N \N +1547 139 company company.company Company many2one account f \N \N \N \N +1548 139 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1549 139 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1550 139 credit \N Credit numeric account f \N \N \N \N +1551 139 currency currency.currency Currency many2one account f \N \N \N \N +1552 139 date \N Date date account f \N \N \N \N +1553 139 debit \N Debit numeric account f \N \N \N \N +1554 139 description \N Description char account f \N \N \N \N +1555 139 description_used \N Description char account f \N \N \N \N +1556 139 id \N ir.msg_ID integer account f \N \N \N \N +1557 139 internal_balance \N Internal Balance numeric account f \N \N \N \N +1558 139 move account.move Move many2one account f \N \N \N \N +1559 139 move_description_used \N Move Description char account f \N \N \N \N +1560 139 origin \N Origin reference account f \N \N \N \N +1561 139 party party.party Party many2one account f \N \N \N \N +1562 139 party_required \N Party Required boolean account f \N \N \N \N +1563 139 rec_name \N ir.msg_record_name char account f \N \N \N \N +1564 139 reconciliation account.move.reconciliation Reconciliation many2one account f \N \N \N \N +1565 139 second_currency currency.currency Second Currency many2one account f \N \N \N \N +1566 139 state \N State selection account f \N \N \N \N +1567 139 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1568 139 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1569 140 company company.company Company many2one account f \N \N \N \N +1570 140 end_period account.period End Period many2one account f \N \N \N \N +1571 140 fiscalyear account.fiscalyear Fiscal Year many2one account f \N \N \N \N +1572 140 from_date \N From Date date account f \N \N \N \N +1573 140 id \N ir.msg_ID integer account f \N \N \N \N +1574 140 journal account.journal Journal many2one Only include moves from the journal. account f \N \N \N \N +1575 140 party_cumulate \N Cumulate per Party boolean account f \N \N \N \N +1576 140 posted \N Posted Moves boolean Only include posted moves. account f \N \N \N \N +1 1 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +2 1 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +3 1 hostname \N Hostname char ir f 2024-04-13 20:27:31.519409 0 \N \N +4 1 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +5 1 language \N language char ir f 2024-04-13 20:27:31.519409 0 \N \N +6 1 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +7 1 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +8 1 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +9 2 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +10 2 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +11 2 fuzzy \N Fuzzy boolean ir f 2024-04-13 20:27:31.519409 0 \N \N +12 2 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +13 2 lang \N Language selection ir f 2024-04-13 20:27:31.519409 0 \N \N +14 2 model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +15 2 module \N Module char ir f 2024-04-13 20:27:31.519409 0 \N \N +16 2 name \N Field Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +17 2 overriding_module \N Overriding Module char ir f 2024-04-13 20:27:31.519409 0 \N \N +18 2 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +19 2 res_id \N Resource ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +20 2 src \N Source text ir f 2024-04-13 20:27:31.519409 0 \N \N +21 2 type \N Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +22 2 value \N Translation Value text ir f 2024-04-13 20:27:31.519409 0 \N \N +23 2 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +24 2 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +25 3 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +26 4 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +27 5 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +28 6 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +29 7 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +30 7 language ir.lang Language many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +31 8 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +32 8 language ir.lang Language many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +33 8 module ir.module Module many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +34 9 file \N File binary ir f 2024-04-13 20:27:31.519409 0 \N \N +35 9 filename \N Filename char ir f 2024-04-13 20:27:31.519409 0 \N \N +36 9 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +37 9 language ir.lang Language many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +38 9 module ir.module Module many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +39 10 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +40 10 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +41 10 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +42 10 name \N Sequence Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +43 10 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +44 10 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +45 10 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +46 11 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +47 11 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +48 11 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +49 11 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +50 11 last_timestamp \N Last Timestamp integer ir f 2024-04-13 20:27:31.519409 0 \N \N +51 11 name \N Sequence Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +52 11 number_increment \N Increment Number integer ir f 2024-04-13 20:27:31.519409 0 \N \N +53 11 number_next \N Next Number integer ir f 2024-04-13 20:27:31.519409 0 \N \N +54 11 number_next_internal \N Next Number integer ir f 2024-04-13 20:27:31.519409 0 \N \N +55 11 padding \N Number padding integer ir f 2024-04-13 20:27:31.519409 0 \N \N +56 11 prefix \N Prefix char The current date can be used formatted using strftime format suffixed with underscores: i.e: ${date_Y} ir f 2024-04-13 20:27:31.519409 0 \N \N +57 11 preview \N Preview char ir f 2024-04-13 20:27:31.519409 0 \N \N +58 11 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +59 11 sequence_type ir.sequence.type Sequence Type many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +60 11 suffix \N Suffix char The current date can be used formatted using strftime format suffixed with underscores: i.e: ${date_Y} ir f 2024-04-13 20:27:31.519409 0 \N \N +61 11 timestamp_offset \N Timestamp Offset float ir f 2024-04-13 20:27:31.519409 0 \N \N +62 11 timestamp_rounding \N Timestamp Rounding float ir f 2024-04-13 20:27:31.519409 0 \N \N +63 11 type \N Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +64 11 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +65 11 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +66 12 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +67 12 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +68 12 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +69 12 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +70 12 last_timestamp \N Last Timestamp integer ir f 2024-04-13 20:27:31.519409 0 \N \N +71 12 name \N Sequence Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +72 12 number_increment \N Increment Number integer ir f 2024-04-13 20:27:31.519409 0 \N \N +73 12 number_next \N Next Number integer ir f 2024-04-13 20:27:31.519409 0 \N \N +74 12 number_next_internal \N Next Number integer ir f 2024-04-13 20:27:31.519409 0 \N \N +75 12 padding \N Number padding integer ir f 2024-04-13 20:27:31.519409 0 \N \N +76 12 prefix \N Prefix char The current date can be used formatted using strftime format suffixed with underscores: i.e: ${date_Y} ir f 2024-04-13 20:27:31.519409 0 \N \N +77 12 preview \N Preview char ir f 2024-04-13 20:27:31.519409 0 \N \N +78 12 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +79 12 sequence_type ir.sequence.type Sequence Type many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +80 12 suffix \N Suffix char The current date can be used formatted using strftime format suffixed with underscores: i.e: ${date_Y} ir f 2024-04-13 20:27:31.519409 0 \N \N +81 12 timestamp_offset \N Timestamp Offset float ir f 2024-04-13 20:27:31.519409 0 \N \N +82 12 timestamp_rounding \N Timestamp Rounding float ir f 2024-04-13 20:27:31.519409 0 \N \N +83 12 type \N Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +84 12 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +85 12 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +86 13 action \N Action reference ir f 2024-04-13 20:27:31.519409 0 \N \N +87 13 action_keywords ir.action.keyword Action Keywords one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +88 13 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +89 13 childs ir.ui.menu Children one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +90 13 complete_name \N Complete Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +91 13 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +92 13 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +93 13 favorite \N Favorite boolean ir f 2024-04-13 20:27:31.519409 0 \N \N +94 13 icon \N Icon selection ir f 2024-04-13 20:27:31.519409 0 \N \N +95 13 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +96 13 name \N Menu char ir f 2024-04-13 20:27:31.519409 0 \N \N +97 13 parent ir.ui.menu Parent Menu many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +98 13 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +99 13 sequence \N ir.msg_sequence integer ir f 2024-04-13 20:27:31.519409 0 \N \N +100 13 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +101 13 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +102 14 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +103 14 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +104 14 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +105 14 menu ir.ui.menu Menu many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +106 14 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +530 47 date \N Date char ir f \N \N \N \N +107 14 sequence \N ir.msg_sequence integer ir f 2024-04-13 20:27:31.519409 0 \N \N +108 14 user res.user User many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +109 14 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +110 14 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +111 15 arch \N View Architecture text ir f 2024-04-13 20:27:31.519409 0 \N \N +112 15 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +113 15 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +114 15 data \N Data text ir f 2024-04-13 20:27:31.519409 0 \N \N +115 15 domain \N Domain char ir f 2024-04-13 20:27:31.519409 0 \N \N +116 15 field_childs \N Children Field char ir f 2024-04-13 20:27:31.519409 0 \N \N +117 15 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +118 15 inherit ir.ui.view Inherited View many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +119 15 model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +120 15 module \N Module char ir f 2024-04-13 20:27:31.519409 0 \N \N +121 15 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +122 15 priority \N Priority integer ir f 2024-04-13 20:27:31.519409 0 \N \N +123 15 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +124 15 type \N View Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +125 15 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +126 15 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +127 16 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +128 17 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +129 17 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +130 17 field \N Field char ir f 2024-04-13 20:27:31.519409 0 \N \N +131 17 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +132 17 model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +133 17 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +134 17 user res.user User many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +135 17 width \N Width integer ir f 2024-04-13 20:27:31.519409 0 \N \N +136 17 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +137 17 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +138 18 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +139 18 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +140 18 field \N Field char ir f 2024-04-13 20:27:31.519409 0 \N \N +141 18 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +142 18 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +143 18 user res.user User many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +144 18 value \N Value boolean ir f 2024-04-13 20:27:31.519409 0 \N \N +145 18 view_id ir.ui.view View ID many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +146 18 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +147 18 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +148 19 child_name \N Child Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +149 19 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +150 19 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +151 19 domain \N Domain char ir f 2024-04-13 20:27:31.519409 0 \N \N +152 19 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +153 19 model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +154 19 nodes \N Expanded Nodes text ir f 2024-04-13 20:27:31.519409 0 \N \N +155 19 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +156 19 selected_nodes \N Selected Nodes text ir f 2024-04-13 20:27:31.519409 0 \N \N +157 19 user res.user User many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +158 19 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +159 19 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +160 20 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +161 20 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +162 20 domain \N Domain char The PYSON domain. ir f 2024-04-13 20:27:31.519409 0 \N \N +163 20 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +164 20 model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +165 20 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +166 20 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +167 20 user res.user User many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +168 20 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +169 20 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +170 21 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +171 21 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +172 21 icon \N Icon char ir f 2024-04-13 20:27:31.519409 0 \N \N +173 21 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +174 21 module \N Module char ir f 2024-04-13 20:27:31.519409 0 \N \N +175 21 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +176 21 path \N SVG Path char ir f 2024-04-13 20:27:31.519409 0 \N \N +177 21 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +178 21 sequence \N ir.msg_sequence integer ir f 2024-04-13 20:27:31.519409 0 \N \N +179 21 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +180 21 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +181 22 action \N Action reference ir f 2024-04-13 20:27:31.519409 0 \N \N +182 22 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +183 22 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +184 22 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +185 22 icon ir.ui.icon Icon many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +186 22 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +187 22 keywords ir.action.keyword Keywords one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +188 22 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +189 22 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +190 22 records \N Records selection The records on which the action runs. ir f 2024-04-13 20:27:31.519409 0 \N \N +191 22 type \N Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +192 22 usage \N Usage char ir f 2024-04-13 20:27:31.519409 0 \N \N +193 22 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +194 22 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +195 23 action ir.action Action many2one ir t 2024-04-13 20:27:31.519409 0 \N \N +196 23 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +197 23 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +198 23 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +199 23 keyword \N Keyword selection ir f 2024-04-13 20:27:31.519409 0 \N \N +200 23 model \N Model reference ir f 2024-04-13 20:27:31.519409 0 \N \N +201 23 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +202 23 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +203 23 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +204 24 action ir.action Action many2one ir t 2024-04-13 20:27:31.519409 0 \N \N +205 24 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +206 24 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +207 24 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +208 24 direct_print \N Direct Print boolean ir f 2024-04-13 20:27:31.519409 0 \N \N +209 24 extension \N Extension selection Leave empty for the same as template, see LibreOffice documentation for compatible format. ir f 2024-04-13 20:27:31.519409 0 \N \N +210 24 icon ir.ui.icon Icon many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +211 24 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +212 24 is_custom \N Is Custom boolean ir f 2024-04-13 20:27:31.519409 0 \N \N +213 24 keywords ir.action.keyword Keywords one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +214 24 model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +215 24 module \N Module char ir f 2024-04-13 20:27:31.519409 0 \N \N +216 24 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +217 24 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +218 24 record_name \N Record Name char A Genshi expression to compute the name using 'record'.\nLeave empty for the default name. ir f 2024-04-13 20:27:31.519409 0 \N \N +219 24 records \N Records selection The records on which the action runs. ir f 2024-04-13 20:27:31.519409 0 \N \N +220 24 report \N Path char ir f 2024-04-13 20:27:31.519409 0 \N \N +221 24 report_content \N Content binary ir f 2024-04-13 20:27:31.519409 0 \N \N +222 24 report_content_custom \N Content binary ir f 2024-04-13 20:27:31.519409 0 \N \N +223 24 report_content_html \N Content HTML binary ir f 2024-04-13 20:27:31.519409 0 \N \N +224 24 report_content_name \N Content Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +225 24 report_name \N Internal Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +226 24 single \N Single boolean Check if the template works only for one record. ir f 2024-04-13 20:27:31.519409 0 \N \N +227 24 template_extension \N Template Extension selection ir f 2024-04-13 20:27:31.519409 0 \N \N +228 24 translatable \N Translatable boolean Uncheck to disable translations for this report. ir f 2024-04-13 20:27:31.519409 0 \N \N +229 24 type \N Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +230 24 usage \N Usage char ir f 2024-04-13 20:27:31.519409 0 \N \N +231 24 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +232 24 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +233 25 act_window_domains ir.action.act_window.domain Domains one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +234 25 act_window_views ir.action.act_window.view Views one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +235 25 action ir.action Action many2one ir t 2024-04-13 20:27:31.519409 0 \N \N +236 25 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +237 25 context \N Context Value char ir f 2024-04-13 20:27:31.519409 0 \N \N +238 25 context_domain \N Context Domain char Part of the domain that will be evaluated on each refresh. ir f 2024-04-13 20:27:31.519409 0 \N \N +239 25 context_model \N Context Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +240 25 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +241 25 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +242 25 domain \N Domain Value char ir f 2024-04-13 20:27:31.519409 0 \N \N +243 25 domains \N Domains binary ir f 2024-04-13 20:27:31.519409 0 \N \N +244 25 icon ir.ui.icon Icon many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +245 25 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +246 25 keywords ir.action.keyword Keywords one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +247 25 limit \N Limit integer Default limit for the list view. ir f 2024-04-13 20:27:31.519409 0 \N \N +248 25 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +249 25 order \N Order Value char ir f 2024-04-13 20:27:31.519409 0 \N \N +250 25 pyson_context \N PySON Context char ir f 2024-04-13 20:27:31.519409 0 \N \N +251 25 pyson_domain \N PySON Domain char ir f 2024-04-13 20:27:31.519409 0 \N \N +252 25 pyson_order \N PySON Order char ir f 2024-04-13 20:27:31.519409 0 \N \N +253 25 pyson_search_value \N PySON Search Criteria char ir f 2024-04-13 20:27:31.519409 0 \N \N +254 25 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +255 25 records \N Records selection The records on which the action runs. ir f 2024-04-13 20:27:31.519409 0 \N \N +256 25 res_model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +257 25 search_value \N Search Criteria char Default search criteria for the list view. ir f 2024-04-13 20:27:31.519409 0 \N \N +258 25 type \N Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +259 25 usage \N Usage char ir f 2024-04-13 20:27:31.519409 0 \N \N +260 25 views \N Views binary ir f 2024-04-13 20:27:31.519409 0 \N \N +261 25 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +262 25 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +263 26 act_window ir.action.act_window Action many2one ir t 2024-04-13 20:27:31.519409 0 \N \N +264 26 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +265 26 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +266 26 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +267 26 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +268 26 model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +269 26 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +270 26 sequence \N ir.msg_sequence integer ir f 2024-04-13 20:27:31.519409 0 \N \N +271 26 view ir.ui.view View many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +272 26 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +273 26 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +274 27 act_window ir.action.act_window Action many2one ir t 2024-04-13 20:27:31.519409 0 \N \N +275 27 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +276 27 count \N Count boolean ir f 2024-04-13 20:27:31.519409 0 \N \N +277 27 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +278 27 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +279 27 domain \N Domain char ir f 2024-04-13 20:27:31.519409 0 \N \N +280 27 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +281 27 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +282 27 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +283 27 sequence \N ir.msg_sequence integer ir f 2024-04-13 20:27:31.519409 0 \N \N +284 27 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +285 27 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +286 28 action ir.action Action many2one ir t 2024-04-13 20:27:31.519409 0 \N \N +287 28 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +288 28 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +289 28 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +290 28 icon ir.ui.icon Icon many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +291 28 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +292 28 keywords ir.action.keyword Keywords one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +293 28 model \N Model char ir f 2024-04-13 20:27:31.519409 0 \N \N +294 28 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +295 28 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +296 28 records \N Records selection The records on which the action runs. ir f 2024-04-13 20:27:31.519409 0 \N \N +297 28 type \N Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +298 28 usage \N Usage char ir f 2024-04-13 20:27:31.519409 0 \N \N +299 28 window \N Window boolean Run wizard in a new window. ir f 2024-04-13 20:27:31.519409 0 \N \N +300 28 wiz_name \N Wizard name char ir f 2024-04-13 20:27:31.519409 0 \N \N +301 28 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +302 28 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +303 29 action ir.action Action many2one ir t 2024-04-13 20:27:31.519409 0 \N \N +304 29 active \N ir.msg_active boolean ir.msg_active_help ir f 2024-04-13 20:27:31.519409 0 \N \N +305 29 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +306 29 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +307 29 icon ir.ui.icon Icon many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +308 29 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +309 29 keywords ir.action.keyword Keywords one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +310 29 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +311 29 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +312 29 records \N Records selection The records on which the action runs. ir f 2024-04-13 20:27:31.519409 0 \N \N +313 29 type \N Type selection ir f 2024-04-13 20:27:31.519409 0 \N \N +314 29 url \N Action Url char ir f 2024-04-13 20:27:31.519409 0 \N \N +315 29 usage \N Usage char ir f 2024-04-13 20:27:31.519409 0 \N \N +316 29 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +317 29 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +318 30 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +319 30 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +320 30 fields ir.model.field Fields one2many ir f 2024-04-13 20:27:31.519409 0 \N \N +321 30 global_search_p \N Global Search boolean ir f 2024-04-13 20:27:31.519409 0 \N \N +322 30 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +323 30 info \N Information text ir f 2024-04-13 20:27:31.519409 0 \N \N +324 30 model \N Model Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +325 30 module \N Module char Module in which this model is defined. ir f 2024-04-13 20:27:31.519409 0 \N \N +326 30 name \N Model Description char ir f 2024-04-13 20:27:31.519409 0 \N \N +327 30 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +328 30 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +329 30 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +330 31 access \N Access boolean If checked, the access right on the model of the field is also tested against the relation of the field. ir f 2024-04-13 20:27:31.519409 0 \N \N +331 31 create_date \N ir.msg_created_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +332 31 create_uid res.user ir.msg_created_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +333 31 field_description \N Field Description char ir f 2024-04-13 20:27:31.519409 0 \N \N +334 31 help \N Help text ir f 2024-04-13 20:27:31.519409 0 \N \N +335 31 id \N ir.msg_ID integer ir f 2024-04-13 20:27:31.519409 0 \N \N +336 31 model ir.model Model many2one ir t 2024-04-13 20:27:31.519409 0 \N \N +337 31 module \N Module char Module in which this field is defined. ir f 2024-04-13 20:27:31.519409 0 \N \N +338 31 name \N Name char ir f 2024-04-13 20:27:31.519409 0 \N \N +339 31 rec_name \N ir.msg_record_name char ir f 2024-04-13 20:27:31.519409 0 \N \N +340 31 relation \N Model Relation char ir f 2024-04-13 20:27:31.519409 0 \N \N +341 31 ttype \N Field Type char ir f 2024-04-13 20:27:31.519409 0 \N \N +342 31 write_date \N ir.msg_edited_at timestamp ir f 2024-04-13 20:27:31.519409 0 \N \N +343 31 write_uid res.user ir.msg_edited_by many2one ir f 2024-04-13 20:27:31.519409 0 \N \N +344 32 active \N ir.msg_active boolean ir.msg_active_help ir f \N \N \N \N +345 32 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +346 32 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +347 32 description \N Description text ir f \N \N \N \N +348 32 group res.group Group many2one ir f \N \N \N \N +349 32 id \N ir.msg_ID integer ir f \N \N \N \N +350 32 model ir.model Model many2one ir t \N \N \N \N +351 32 perm_create \N Create Access boolean ir f \N \N \N \N +352 32 perm_delete \N Delete Access boolean ir f \N \N \N \N +353 32 perm_read \N Read Access boolean ir f \N \N \N \N +354 32 perm_write \N Write Access boolean ir f \N \N \N \N +355 32 rec_name \N ir.msg_record_name char ir f \N \N \N \N +356 32 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +357 32 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +358 33 active \N ir.msg_active boolean ir.msg_active_help ir f \N \N \N \N +359 33 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +360 33 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +361 33 description \N Description text ir f \N \N \N \N +362 33 field ir.model.field Field many2one ir t \N \N \N \N +363 33 group res.group Group many2one ir f \N \N \N \N +364 33 id \N ir.msg_ID integer ir f \N \N \N \N +365 33 perm_create \N Create Access boolean ir f \N \N \N \N +366 33 perm_delete \N Delete Access boolean ir f \N \N \N \N +367 33 perm_read \N Read Access boolean ir f \N \N \N \N +368 33 perm_write \N Write Access boolean ir f \N \N \N \N +369 33 rec_name \N ir.msg_record_name char ir f \N \N \N \N +370 33 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +371 33 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +372 34 active \N ir.msg_active boolean ir.msg_active_help ir f \N \N \N \N +373 34 clicks ir.model.button.click Clicks one2many ir f \N \N \N \N +374 34 confirm \N Confirm text Text to ask user confirmation when clicking the button. ir f \N \N \N \N +375 34 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +376 34 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +377 34 help \N Help text ir f \N \N \N \N +378 34 id \N ir.msg_ID integer ir f \N \N \N \N +379 34 model ir.model Model many2one ir t \N \N \N \N +380 34 name \N Name char ir f \N \N \N \N +381 34 rec_name \N ir.msg_record_name char ir f \N \N \N \N +382 34 reset ir.model.button-button.reset Reset many2many ir f \N \N \N \N +383 34 reset_by ir.model.button-button.reset Reset by many2many Button that should reset the rules. ir f \N \N \N \N +384 34 rules ir.model.button.rule Rules one2many ir f \N \N \N \N +385 34 string \N Label char ir f \N \N \N \N +386 34 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +387 34 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +388 35 button ir.model.button Button many2one ir t \N \N \N \N +389 35 condition \N Condition char A PYSON statement evaluated with the record represented by "self"\nIt activate the rule if true. ir f \N \N \N \N +390 35 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +391 35 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +392 35 description \N Description char ir f \N \N \N \N +393 35 id \N ir.msg_ID integer ir f \N \N \N \N +394 35 number_user \N Number of User integer ir f \N \N \N \N +395 35 rec_name \N ir.msg_record_name char ir f \N \N \N \N +396 35 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +397 35 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +398 36 active \N ir.msg_active boolean ir.msg_active_help ir f \N \N \N \N +399 36 button ir.model.button Button many2one ir t \N \N \N \N +400 36 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +401 36 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +402 36 id \N ir.msg_ID integer ir f \N \N \N \N +403 36 rec_name \N ir.msg_record_name char ir f \N \N \N \N +404 36 record_id \N Record ID integer ir f \N \N \N \N +405 36 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +406 36 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +407 37 button ir.model.button Button many2one ir f \N \N \N \N +408 37 button_ruled ir.model.button Button Ruled many2one ir f \N \N \N \N +409 37 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +410 37 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +411 37 id \N ir.msg_ID integer ir f \N \N \N \N +412 37 rec_name \N ir.msg_record_name char ir f \N \N \N \N +413 37 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +414 37 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +415 38 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +416 38 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +417 38 db_id \N Resource ID integer The id of the record in the database. ir f \N \N \N \N +418 38 fs_id \N Identifier on File System char The id of the record as known on the file system. ir f \N \N \N \N +419 38 fs_values \N Values on File System text ir f \N \N \N \N +420 38 id \N ir.msg_ID integer ir f \N \N \N \N +421 38 model \N Model char ir f \N \N \N \N +422 38 module \N Module char ir f \N \N \N \N +423 38 noupdate \N No Update boolean ir f \N \N \N \N +424 38 out_of_sync \N Out of Sync boolean ir f \N \N \N \N +425 38 rec_name \N ir.msg_record_name char ir f \N \N \N \N +426 38 values \N Values text ir f \N \N \N \N +427 38 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +428 38 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +429 39 action \N Action char ir f \N \N \N \N +430 39 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +431 39 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +432 39 event \N Event selection ir f \N \N \N \N +433 39 id \N ir.msg_ID integer ir f \N \N \N \N +434 39 rec_name \N ir.msg_record_name char ir f \N \N \N \N +435 39 resource \N Resource reference ir f \N \N \N \N +437 39 user res.user User many2one ir f \N \N \N \N +438 39 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +439 39 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +440 40 filter \N Filter text Entering a Python Regular Expression will exclude matching models from the graph. ir f \N \N \N \N +441 40 id \N ir.msg_ID integer ir f \N \N \N \N +442 40 level \N Level integer ir f \N \N \N \N +443 41 copy_to_resources \N Copy to Resources multiselection ir f \N \N \N \N +444 41 copy_to_resources_visible \N Copy to Resources Visible boolean ir f \N \N \N \N +445 41 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +446 41 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +447 41 data \N Data binary ir f \N \N \N \N +448 41 data_size \N Data size integer ir f \N \N \N \N +449 41 description \N Description text ir f \N \N \N \N +450 41 file_id \N File ID char ir f \N \N \N \N +451 41 id \N ir.msg_ID integer ir f \N \N \N \N +452 41 last_modification \N Last Modification datetime ir f \N \N \N \N +453 41 last_user \N Last User char ir f \N \N \N \N +454 41 link \N Link char ir f \N \N \N \N +455 41 name \N Name char ir f \N \N \N \N +456 41 rec_name \N ir.msg_record_name char ir f \N \N \N \N +457 41 resource \N Resource reference ir f \N \N \N \N +458 41 summary \N Summary char ir f \N \N \N \N +459 41 type \N Type selection ir f \N \N \N \N +460 41 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +461 41 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +462 42 copy_to_resources \N Copy to Resources multiselection ir f \N \N \N \N +463 42 copy_to_resources_visible \N Copy to Resources Visible boolean ir f \N \N \N \N +464 42 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +465 42 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +466 42 id \N ir.msg_ID integer ir f \N \N \N \N +467 42 last_modification \N Last Modification datetime ir f \N \N \N \N +468 42 last_user \N Last User char ir f \N \N \N \N +469 42 message \N Message text ir f \N \N \N \N +470 42 message_wrapped \N Message text ir f \N \N \N \N +471 42 rec_name \N ir.msg_record_name char ir f \N \N \N \N +472 42 resource \N Resource reference ir f \N \N \N \N +473 42 unread \N Unread boolean ir f \N \N \N \N +474 42 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +475 42 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +476 43 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +477 43 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +478 43 id \N ir.msg_ID integer ir f \N \N \N \N +479 43 note ir.note Note many2one ir f \N \N \N \N +480 43 rec_name \N ir.msg_record_name char ir f \N \N \N \N +481 43 user res.user User many2one ir f \N \N \N \N +482 43 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +483 43 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +484 44 cache ir.avatar.cache Cache one2many ir f \N \N \N \N +485 44 copy_to_resources \N Copy to Resources multiselection ir f \N \N \N \N +486 44 copy_to_resources_visible \N Copy to Resources Visible boolean ir f \N \N \N \N +487 44 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +488 44 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +489 44 id \N ir.msg_ID integer ir f \N \N \N \N +490 44 image \N Image binary ir f \N \N \N \N +491 44 image_id \N Image ID char ir f \N \N \N \N +492 44 last_modification \N Last Modification datetime ir f \N \N \N \N +493 44 last_user \N Last User char ir f \N \N \N \N +494 44 rec_name \N ir.msg_record_name char ir f \N \N \N \N +495 44 resource \N Resource reference ir f \N \N \N \N +496 44 uuid \N UUID char ir f \N \N \N \N +497 44 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +498 44 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +499 45 avatar ir.avatar Avatar many2one ir f \N \N \N \N +500 45 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +501 45 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +502 45 id \N ir.msg_ID integer ir f \N \N \N \N +503 45 image \N Image binary ir f \N \N \N \N +504 45 image_id \N Image ID char ir f \N \N \N \N +505 45 rec_name \N ir.msg_record_name char ir f \N \N \N \N +506 45 size \N Size integer ir f \N \N \N \N +507 45 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +508 45 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +509 46 active \N ir.msg_active boolean ir.msg_active_help ir f \N \N \N \N +510 46 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +511 46 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +512 46 day \N Day integer ir f \N \N \N \N +513 46 hour \N Hour integer ir f \N \N \N \N +514 46 id \N ir.msg_ID integer ir f \N \N \N \N +515 46 interval_number \N Interval Number integer ir f \N \N \N \N +516 46 interval_type \N Interval Type selection ir f \N \N \N \N +517 46 method \N Method selection ir f \N \N \N \N +518 46 minute \N Minute integer ir f \N \N \N \N +519 46 next_call \N Next Call datetime ir f \N \N \N \N +520 46 rec_name \N ir.msg_record_name char ir f \N \N \N \N +521 46 timezone \N Timezone char ir f \N \N \N \N +522 46 weekday ir.calendar.day Day of Week many2one ir f \N \N \N \N +523 46 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +524 46 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +525 47 active \N ir.msg_active boolean ir.msg_active_help ir f \N \N \N \N +526 47 am \N AM char ir f \N \N \N \N +527 47 code \N Code char RFC 4646 tag. ir f \N \N \N \N +528 47 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +529 47 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +531 47 decimal_point \N Decimal Separator char ir f \N \N \N \N +532 47 direction \N Direction selection ir f \N \N \N \N +533 47 grouping \N Grouping char ir f \N \N \N \N +534 47 id \N ir.msg_ID integer ir f \N \N \N \N +535 47 mon_decimal_point \N Decimal Separator char ir f \N \N \N \N +536 47 mon_grouping \N Grouping char ir f \N \N \N \N +537 47 mon_thousands_sep \N Thousands Separator char ir f \N \N \N \N +538 47 n_cs_precedes \N Negative Currency Symbol Precedes boolean ir f \N \N \N \N +539 47 n_sep_by_space \N Negative Separate by Space boolean ir f \N \N \N \N +540 47 n_sign_posn \N Negative Sign Position integer ir f \N \N \N \N +541 47 name \N Name char ir f \N \N \N \N +542 47 negative_sign \N Negative Sign char ir f \N \N \N \N +543 47 p_cs_precedes \N Positive Currency Symbol Precedes boolean ir f \N \N \N \N +544 47 p_sep_by_space \N Positive Separate by Space boolean ir f \N \N \N \N +545 47 p_sign_posn \N Positive Sign Position integer ir f \N \N \N \N +546 47 parent \N Parent Code char Code of the exceptional parent ir f \N \N \N \N +547 47 pg_text_search \N PostgreSQL Text Search Configuration char ir f \N \N \N \N +548 47 pm \N PM char ir f \N \N \N \N +549 47 positive_sign \N Positive Sign char ir f \N \N \N \N +550 47 rec_name \N ir.msg_record_name char ir f \N \N \N \N +551 47 thousands_sep \N Thousands Separator char ir f \N \N \N \N +552 47 translatable \N Translatable boolean ir f \N \N \N \N +553 47 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +554 47 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +555 48 id \N ir.msg_ID integer ir f \N \N \N \N +556 48 languages ir.lang Languages many2many ir f \N \N \N \N +557 49 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +558 49 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +559 49 export_fields ir.export.line Fields one2many ir f \N \N \N \N +560 49 header \N Header boolean Check to include field names on the export. ir f \N \N \N \N +561 49 id \N ir.msg_ID integer ir f \N \N \N \N +562 49 name \N Name char ir f \N \N \N \N +563 49 rec_name \N ir.msg_record_name char ir f \N \N \N \N +564 49 records \N Records selection The records on which the export runs. ir f \N \N \N \N +565 49 resource \N Resource char ir f \N \N \N \N +566 49 user res.user User many2one ir f \N \N \N \N +567 49 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +568 49 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +569 50 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +570 50 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +571 50 export ir.export Export many2one ir t \N \N \N \N +572 50 id \N ir.msg_ID integer ir f \N \N \N \N +573 50 name \N Name char ir f \N \N \N \N +574 50 rec_name \N ir.msg_record_name char ir f \N \N \N \N +575 50 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +576 50 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +577 51 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +578 51 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +579 51 default_p \N Default boolean Add this rule to all users by default. ir f \N \N \N \N +580 51 global_p \N Global boolean Make the rule global \nso every users must follow this rule. ir f \N \N \N \N +581 51 id \N ir.msg_ID integer ir f \N \N \N \N +582 51 model ir.model Model many2one ir f \N \N \N \N +583 51 name \N Name char Displayed to users when access error is raised for this rule. ir f \N \N \N \N +584 51 perm_create \N Create Access boolean ir f \N \N \N \N +585 51 perm_delete \N Delete Access boolean ir f \N \N \N \N +586 51 perm_read \N Read Access boolean ir f \N \N \N \N +587 51 perm_write \N Write Access boolean ir f \N \N \N \N +588 51 rec_name \N ir.msg_record_name char ir f \N \N \N \N +589 51 rules ir.rule Tests one2many The rule is satisfied if at least one test is True. ir f \N \N \N \N +590 51 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +591 51 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +592 52 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +593 52 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +595 52 id \N ir.msg_ID integer ir f \N \N \N \N +596 52 rec_name \N ir.msg_record_name char ir f \N \N \N \N +597 52 rule_group ir.rule.group Group many2one ir t \N \N \N \N +598 52 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +599 52 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +600 53 childs ir.module Childs one2many ir f \N \N \N \N +601 53 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +602 53 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +603 53 dependencies ir.module.dependency Dependencies one2many ir f \N \N \N \N +604 53 id \N ir.msg_ID integer ir f \N \N \N \N +605 53 name \N Name char ir f \N \N \N \N +606 53 parents ir.module Parents one2many ir f \N \N \N \N +607 53 rec_name \N ir.msg_record_name char ir f \N \N \N \N +608 53 state \N State selection ir f \N \N \N \N +609 53 version \N Version char ir f \N \N \N \N +610 53 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +611 53 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +612 54 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +613 54 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +614 54 id \N ir.msg_ID integer ir f \N \N \N \N +615 54 module ir.module Module many2one ir t \N \N \N \N +616 54 name \N Name char ir f \N \N \N \N +617 54 rec_name \N ir.msg_record_name char ir f \N \N \N \N +618 54 state \N State selection ir f \N \N \N \N +619 54 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +620 54 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +621 55 action ir.action Action many2one ir f \N \N \N \N +622 55 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +623 55 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +624 55 id \N ir.msg_ID integer ir f \N \N \N \N +625 55 rec_name \N ir.msg_record_name char ir f \N \N \N \N +626 55 sequence \N ir.msg_sequence integer ir f \N \N \N \N +627 55 state \N State selection ir f \N \N \N \N +628 55 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +629 55 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +630 56 id \N ir.msg_ID integer ir f \N \N \N \N +631 57 id \N ir.msg_ID integer ir f \N \N \N \N +632 57 percentage \N Percentage float ir f \N \N \N \N +633 58 id \N ir.msg_ID integer ir f \N \N \N \N +634 59 id \N ir.msg_ID integer ir f \N \N \N \N +635 59 module_info \N Modules to update text ir f \N \N \N \N +636 60 id \N ir.msg_ID integer ir f \N \N \N \N +637 61 id \N ir.msg_ID integer ir f \N \N \N \N +638 61 modules ir.module Modules many2many ir f \N \N \N \N +639 62 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +640 62 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +641 62 id \N ir.msg_ID integer ir f \N \N \N \N +642 62 name \N Name char ir f \N \N \N \N +643 62 rec_name \N ir.msg_record_name char ir f \N \N \N \N +644 62 timestamp \N Timestamp timestamp ir f \N \N \N \N +645 62 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +646 62 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +647 63 id \N ir.msg_ID integer ir f \N \N \N \N +648 64 action \N Action selection ir f \N \N \N \N +649 64 active \N ir.msg_active boolean ir.msg_active_help ir f \N \N \N \N +650 64 condition \N Condition char A PYSON statement evaluated with record represented by "self"\nIt triggers the action if true. ir f \N \N \N \N +651 64 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +652 64 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +653 64 id \N ir.msg_ID integer ir f \N \N \N \N +654 64 limit_number \N Limit Number integer Limit the number of call to "Action Function" by records.\n0 for no limit. ir f \N \N \N \N +655 64 minimum_time_delay \N Minimum Delay timedelta Set a minimum time delay between call to "Action Function" for the same record.\nempty for no delay. ir f \N \N \N \N +656 64 model ir.model Model many2one ir f \N \N \N \N +657 64 name \N Name char ir f \N \N \N \N +658 64 on_create \N On Create boolean ir f \N \N \N \N +659 64 on_delete \N On Delete boolean ir f \N \N \N \N +660 64 on_time \N On Time boolean ir f \N \N \N \N +661 64 on_write \N On Write boolean ir f \N \N \N \N +662 64 rec_name \N ir.msg_record_name char ir f \N \N \N \N +663 64 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +664 64 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +665 65 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +666 65 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +667 65 id \N ir.msg_ID integer ir f \N \N \N \N +668 65 rec_name \N ir.msg_record_name char ir f \N \N \N \N +669 65 record_id \N Record ID integer ir f \N \N \N \N +670 65 trigger ir.trigger Trigger many2one ir t \N \N \N \N +671 65 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +672 65 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +673 66 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +674 66 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +675 66 id \N ir.msg_ID integer ir f \N \N \N \N +676 66 key \N Key char ir f \N \N \N \N +677 66 rec_name \N ir.msg_record_name char ir f \N \N \N \N +678 66 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +679 66 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +680 67 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +681 67 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +682 67 data \N Data text ir f \N \N \N \N +683 67 id \N ir.msg_ID integer ir f \N \N \N \N +684 67 rec_name \N ir.msg_record_name char ir f \N \N \N \N +685 67 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +686 67 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +687 68 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +688 68 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +689 68 data \N Data dict ir f \N \N \N \N +690 68 dequeued_at \N Dequeued at timestamp ir f \N \N \N \N +691 68 enqueued_at \N Enqueued at timestamp ir f \N \N \N \N +692 68 expected_at \N Expected at timestamp When the task should be done. ir f \N \N \N \N +693 68 finished_at \N Finished at timestamp ir f \N \N \N \N +694 68 id \N ir.msg_ID integer ir f \N \N \N \N +695 68 name \N Name char ir f \N \N \N \N +696 68 rec_name \N ir.msg_record_name char ir f \N \N \N \N +697 68 scheduled_at \N Scheduled at timestamp When the task can start. ir f \N \N \N \N +698 68 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +699 68 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +700 69 abbreviation \N Abbreviation char ir f \N \N \N \N +701 69 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +702 69 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +703 69 id \N ir.msg_ID integer ir f \N \N \N \N +704 69 index \N Index integer ir f \N \N \N \N +705 69 name \N Name char ir f \N \N \N \N +706 69 rec_name \N ir.msg_record_name char ir f \N \N \N \N +707 69 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +708 69 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +709 70 abbreviation \N Abbreviation char ir f \N \N \N \N +710 70 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +711 70 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +712 70 id \N ir.msg_ID integer ir f \N \N \N \N +713 70 index \N Index integer ir f \N \N \N \N +714 70 name \N Name char ir f \N \N \N \N +715 70 rec_name \N ir.msg_record_name char ir f \N \N \N \N +716 70 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +717 70 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +718 71 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +719 71 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +720 71 id \N ir.msg_ID integer ir f \N \N \N \N +721 71 rec_name \N ir.msg_record_name char ir f \N \N \N \N +722 71 text \N Text text ir f \N \N \N \N +723 71 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +724 71 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +725 72 addresses ir.email.address Addresses one2many ir f \N \N \N \N +726 72 at \N At datetime ir f \N \N \N \N +727 72 body \N Body text ir f \N \N \N \N +728 72 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +729 72 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +730 72 id \N ir.msg_ID integer ir f \N \N \N \N +731 72 rec_name \N ir.msg_record_name char ir f \N \N \N \N +732 72 recipients \N Recipients char ir f \N \N \N \N +733 72 recipients_hidden \N Hidden Recipients char ir f \N \N \N \N +734 72 recipients_secondary \N Secondary Recipients char ir f \N \N \N \N +735 72 resource \N Resource reference ir f \N \N \N \N +736 72 subject \N Subject char ir f \N \N \N \N +737 72 user \N User char ir f \N \N \N \N +738 72 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +739 72 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +740 73 address \N Address char ir f \N \N \N \N +741 73 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +742 73 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +743 73 email ir.email E-mail many2one ir f \N \N \N \N +744 73 id \N ir.msg_ID integer ir f \N \N \N \N +745 73 rec_name \N ir.msg_record_name char ir f \N \N \N \N +746 73 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +747 73 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +748 74 body \N Body text ir f \N \N \N \N +749 74 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +750 74 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +751 74 id \N ir.msg_ID integer ir f \N \N \N \N +752 74 model ir.model Model many2one ir f \N \N \N \N +753 74 model_name \N Model Name char ir f \N \N \N \N +754 74 name \N Name char ir f \N \N \N \N +755 74 rec_name \N ir.msg_record_name char ir f \N \N \N \N +756 74 recipients ir.model.field Recipients many2one The field that contains the recipient(s). ir f \N \N \N \N +757 74 recipients_hidden ir.model.field Hidden Recipients many2one The field that contains the secondary recipient(s). ir f \N \N \N \N +758 74 recipients_hidden_pyson \N Hidden Recipients char A PYSON expression that generates a list of hidden recipients with the record represented by "self". ir f \N \N \N \N +759 74 recipients_pyson \N Recipients char A PYSON expression that generates a list of recipients with the record represented by "self". ir f \N \N \N \N +760 74 recipients_secondary ir.model.field Secondary Recipients many2one The field that contains the secondary recipient(s). ir f \N \N \N \N +761 74 recipients_secondary_pyson \N Secondary Recipients char A PYSON expression that generates a list of secondary recipients with the record represented by "self". ir f \N \N \N \N +762 74 reports ir.email.template-ir.action.report Reports many2many ir f \N \N \N \N +763 74 subject \N Subject char ir f \N \N \N \N +764 74 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +765 74 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +766 75 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +767 75 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +768 75 id \N ir.msg_ID integer ir f \N \N \N \N +769 75 rec_name \N ir.msg_record_name char ir f \N \N \N \N +770 75 report ir.action.report Report many2one ir f \N \N \N \N +771 75 template ir.email.template Template many2one ir f \N \N \N \N +772 75 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +773 75 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +774 76 create_date \N ir.msg_created_at timestamp ir f \N \N \N \N +775 76 create_uid res.user ir.msg_created_by many2one ir f \N \N \N \N +776 76 description \N Description text ir f \N \N \N \N +777 76 id \N ir.msg_ID integer ir f \N \N \N \N +778 76 message \N Message text ir f \N \N \N \N +779 76 origin \N Origin reference ir f \N \N \N \N +780 76 processed_by res.user Processed by many2one ir f \N \N \N \N +781 76 rec_name \N ir.msg_record_name char ir f \N \N \N \N +782 76 solved_by res.user Solved by many2one ir f \N \N \N \N +783 76 state \N State selection ir f \N \N \N \N +784 76 summary \N Summary char ir f \N \N \N \N +785 76 write_date \N ir.msg_edited_at timestamp ir f \N \N \N \N +786 76 write_uid res.user ir.msg_edited_by many2one ir f \N \N \N \N +787 77 active \N ir.msg_active boolean ir.msg_active_help res f \N \N \N \N +788 77 buttons ir.model.button-res.group Buttons many2many res f \N \N \N \N +789 77 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +790 77 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +791 77 field_access ir.model.field.access Access Field one2many res f \N \N \N \N +792 77 id \N ir.msg_ID integer res f \N \N \N \N +793 77 menu_access ir.ui.menu-res.group Access Menu many2many res f \N \N \N \N +794 77 model_access ir.model.access Access Model one2many res f \N \N \N \N +795 77 name \N Name char res f \N \N \N \N +796 77 parent res.group Parent many2one The group to inherit accesses from. res f \N \N \N \N +797 77 rec_name \N ir.msg_record_name char res f \N \N \N \N +798 77 rule_groups ir.rule.group-res.group Rules many2many res f \N \N \N \N +799 77 users res.user-res.group Users many2many res f \N \N \N \N +800 77 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +801 77 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +802 78 actions res.user-ir.action Actions many2many Actions that will be run at login. res f \N \N \N \N +803 78 active \N ir.msg_active boolean ir.msg_active_help res f \N \N \N \N +804 78 applications res.user.application Applications one2many res f \N \N \N \N +805 78 avatar \N ir.msg_avatar binary res f \N \N \N \N +806 78 avatar_badge_url \N Avatar Badge URL char res f \N \N \N \N +807 78 avatar_url \N ir.msg_avatar_url char res f \N \N \N \N +808 78 avatars ir.avatar ir.msg_avatars one2many res f \N \N \N \N +809 78 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +810 78 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +811 78 email \N Email char res f \N \N \N \N +812 78 groups res.user-res.group Groups many2many res f \N \N \N \N +813 78 id \N ir.msg_ID integer res f \N \N \N \N +814 78 language ir.lang Language many2one res f \N \N \N \N +815 78 language_direction \N Language Direction char res f \N \N \N \N +816 78 login \N Login char res f \N \N \N \N +817 78 menu ir.action Menu Action many2one res f \N \N \N \N +818 78 name \N Name char res f \N \N \N \N +819 78 password \N Password char res f \N \N \N \N +820 78 password_hash \N Password Hash char res f \N \N \N \N +821 78 password_reset \N Reset Password char res f \N \N \N \N +822 78 password_reset_expire \N Reset Password Expire timestamp res f \N \N \N \N +823 78 pyson_menu \N PySON Menu char res f \N \N \N \N +824 78 rec_name \N ir.msg_record_name char res f \N \N \N \N +825 78 sessions \N Sessions integer res f \N \N \N \N +826 78 signature \N Signature text res f \N \N \N \N +827 78 status_bar \N Status Bar char res f \N \N \N \N +828 78 warnings res.user.warning Warnings one2many res f \N \N \N \N +829 78 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +830 78 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +831 79 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +832 79 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +833 79 device_cookie \N Device Cookie char res f \N \N \N \N +834 79 id \N ir.msg_ID integer res f \N \N \N \N +835 79 ip_address \N IP Address char res f \N \N \N \N +836 79 ip_network \N IP Network char res f \N \N \N \N +837 79 login \N Login char res f \N \N \N \N +838 79 rec_name \N ir.msg_record_name char res f \N \N \N \N +839 79 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +840 79 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +841 80 cookie \N Cookie char res f \N \N \N \N +842 80 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +843 80 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +844 80 id \N ir.msg_ID integer res f \N \N \N \N +845 80 login \N Login char res f \N \N \N \N +846 80 rec_name \N ir.msg_record_name char res f \N \N \N \N +847 80 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +848 80 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +849 81 action ir.action Action many2one res f \N \N \N \N +850 81 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +851 81 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +852 81 id \N ir.msg_ID integer res f \N \N \N \N +853 81 rec_name \N ir.msg_record_name char res f \N \N \N \N +854 81 user res.user User many2one res f \N \N \N \N +855 81 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +856 81 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +857 82 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +858 82 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +859 82 group res.group Group many2one res f \N \N \N \N +860 82 id \N ir.msg_ID integer res f \N \N \N \N +861 82 rec_name \N ir.msg_record_name char res f \N \N \N \N +862 82 user res.user User many2one res f \N \N \N \N +863 82 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +864 82 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +865 83 always \N Always boolean res f \N \N \N \N +866 83 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +867 83 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +868 83 id \N ir.msg_ID integer res f \N \N \N \N +869 83 name \N Name char res f \N \N \N \N +870 83 rec_name \N ir.msg_record_name char res f \N \N \N \N +871 83 user res.user User many2one res t \N \N \N \N +872 83 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +873 83 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +874 84 application \N Application selection res f \N \N \N \N +875 84 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +876 84 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +877 84 id \N ir.msg_ID integer res f \N \N \N \N +878 84 key \N Key char res f \N \N \N \N +879 84 rec_name \N ir.msg_record_name char res f \N \N \N \N +880 84 state \N State selection res f \N \N \N \N +881 84 user res.user User many2one res f \N \N \N \N +882 84 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +883 84 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +884 85 id \N ir.msg_ID integer res f \N \N \N \N +885 13 groups ir.ui.menu-res.group Groups many2many res f \N \N \N \N +886 86 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +887 86 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +888 86 group res.group Group many2one res f \N \N \N \N +889 86 id \N ir.msg_ID integer res f \N \N \N \N +890 86 menu ir.ui.menu Menu many2one res f \N \N \N \N +891 86 rec_name \N ir.msg_record_name char res f \N \N \N \N +892 86 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +893 86 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +894 87 action ir.action Action many2one res f \N \N \N \N +895 87 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +896 87 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +897 87 group res.group Group many2one res f \N \N \N \N +898 87 id \N ir.msg_ID integer res f \N \N \N \N +899 87 rec_name \N ir.msg_record_name char res f \N \N \N \N +900 87 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +901 87 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +902 22 groups ir.action-res.group Groups many2many res f \N \N \N \N +903 24 groups ir.action-res.group Groups many2many res f \N \N \N \N +904 25 groups ir.action-res.group Groups many2many res f \N \N \N \N +905 28 groups ir.action-res.group Groups many2many res f \N \N \N \N +906 29 groups ir.action-res.group Groups many2many res f \N \N \N \N +907 23 groups res.group Groups one2many res f \N \N \N \N +908 34 groups ir.model.button-res.group Groups many2many res f \N \N \N \N +909 88 active \N ir.msg_active boolean ir.msg_active_help res f \N \N \N \N +910 88 button ir.model.button Button many2one res f \N \N \N \N +911 88 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +912 88 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +913 88 group res.group Group many2one res f \N \N \N \N +914 88 id \N ir.msg_ID integer res f \N \N \N \N +915 88 rec_name \N ir.msg_record_name char res f \N \N \N \N +916 88 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +917 88 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +918 35 group res.group Group many2one res f \N \N \N \N +919 36 user res.user User many2one res f \N \N \N \N +920 51 groups ir.rule.group-res.group Groups many2many res f \N \N \N \N +921 89 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +922 89 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +923 89 group res.group Group many2one res f \N \N \N \N +924 89 id \N ir.msg_ID integer res f \N \N \N \N +925 89 rec_name \N ir.msg_record_name char res f \N \N \N \N +926 89 rule_group ir.rule.group Rule Group many2one res f \N \N \N \N +927 89 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +928 89 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +929 10 groups ir.sequence.type-res.group User Groups many2many Groups allowed to edit the sequences of this type. res f \N \N \N \N +930 90 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +931 90 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +932 90 group res.group User Groups many2one res f \N \N \N \N +933 90 id \N ir.msg_ID integer res f \N \N \N \N +934 90 rec_name \N ir.msg_record_name char res f \N \N \N \N +935 90 sequence_type ir.sequence.type Sequence Type many2one res f \N \N \N \N +936 90 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +937 90 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +938 49 groups ir.export-res.group Groups many2many The user groups that can use the export. res f \N \N \N \N +939 49 write_groups ir.export-write-res.group Modification Groups many2many The user groups that can modify the export. res f \N \N \N \N +940 91 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +941 91 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +942 91 export ir.export Export many2one res f \N \N \N \N +943 91 group res.group Group many2one res f \N \N \N \N +944 91 id \N ir.msg_ID integer res f \N \N \N \N +945 91 rec_name \N ir.msg_record_name char res f \N \N \N \N +946 91 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +947 91 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +948 92 create_date \N ir.msg_created_at timestamp res f \N \N \N \N +949 92 create_uid res.user ir.msg_created_by many2one res f \N \N \N \N +950 92 export ir.export Export many2one res f \N \N \N \N +951 92 group res.group Group many2one res f \N \N \N \N +952 92 id \N ir.msg_ID integer res f \N \N \N \N +953 92 rec_name \N ir.msg_record_name char res f \N \N \N \N +954 92 write_date \N ir.msg_edited_at timestamp res f \N \N \N \N +955 92 write_uid res.user ir.msg_edited_by many2one res f \N \N \N \N +1577 140 start_period account.period Start Period many2one account f \N \N \N \N +1578 140 to_date \N To Date date account f \N \N \N \N +1579 141 company company.company Company many2one account f \N \N \N \N +1580 141 date \N Date date account f \N \N \N \N +1581 141 id \N ir.msg_ID integer account f \N \N \N \N +1582 141 posted \N Posted Moves boolean Only include posted moves. account f \N \N \N \N +1583 142 company company.company Company many2one account f \N \N \N \N +1584 142 comparison \N Comparison boolean account f \N \N \N \N +1585 142 date \N Date date account f \N \N \N \N +1586 142 date_cmp \N Date date account f \N \N \N \N +1587 142 id \N ir.msg_ID integer account f \N \N \N \N +1588 142 posted \N Posted Moves boolean Only include posted moves. account f \N \N \N \N +1589 143 company company.company Company many2one account f \N \N \N \N +1590 143 comparison \N Comparison boolean account f \N \N \N \N +1591 143 end_period account.period End Period many2one account f \N \N \N \N +1592 143 end_period_cmp account.period End Period many2one account f \N \N \N \N +1593 143 fiscalyear account.fiscalyear Fiscal Year many2one account f \N \N \N \N +1594 143 fiscalyear_cmp account.fiscalyear Fiscal Year many2one account f \N \N \N \N +1595 143 from_date \N From Date date account f \N \N \N \N +1596 143 from_date_cmp \N From Date date account f \N \N \N \N +1597 143 id \N ir.msg_ID integer account f \N \N \N \N +1598 143 posted \N Posted Move boolean Only include posted moves. account f \N \N \N \N +1599 143 start_period account.period Start Period many2one account f \N \N \N \N +1600 143 start_period_cmp account.period Start Period many2one account f \N \N \N \N +1601 143 to_date \N To Date date account f \N \N \N \N +1602 143 to_date_cmp \N To Date date account f \N \N \N \N +1603 144 id \N ir.msg_ID integer account f \N \N \N \N +1604 145 account_template account.account.template Account Template many2one account f \N \N \N \N +1605 145 company company.company Company many2one account f \N \N \N \N +1606 145 id \N ir.msg_ID integer account f \N \N \N \N +1607 146 account_payable account.account Default Payable Account many2one account f \N \N \N \N +1608 146 account_receivable account.account Default Receivable Account many2one account f \N \N \N \N +1609 146 company company.company Company many2one account f \N \N \N \N +1610 146 id \N ir.msg_ID integer account f \N \N \N \N +1611 147 account account.account Root Account many2one account f \N \N \N \N +1612 147 id \N ir.msg_ID integer account f \N \N \N \N +1613 148 id \N ir.msg_ID integer account f \N \N \N \N +1614 149 company company.company Company many2one account f \N \N \N \N +1615 149 date \N Date date account f \N \N \N \N +1616 149 id \N ir.msg_ID integer account f \N \N \N \N +1617 149 posted \N Posted Move boolean Only include posted moves. account f \N \N \N \N +1618 149 term1 \N First Term integer account f \N \N \N \N +1619 149 term2 \N Second Term integer account f \N \N \N \N +1620 149 term3 \N Third Term integer account f \N \N \N \N +1621 149 type \N Type selection account f \N \N \N \N +1622 149 unit \N Unit selection account f \N \N \N \N +1623 150 balance \N Balance numeric account f \N \N \N \N +1624 150 company company.company Company many2one account f \N \N \N \N +1625 150 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1626 150 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1627 150 currency currency.currency Currency many2one account f \N \N \N \N +1628 150 id \N ir.msg_ID integer account f \N \N \N \N +1629 150 party party.party Party many2one account f \N \N \N \N +1630 150 rec_name \N ir.msg_record_name char account f \N \N \N \N +1631 150 term0 \N Now numeric account f \N \N \N \N +1632 150 term1 \N First Term numeric account f \N \N \N \N +1633 150 term2 \N Second Term numeric account f \N \N \N \N +1634 150 term3 \N Third Term numeric account f \N \N \N \N +1635 150 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1636 150 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1637 151 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1638 151 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1639 151 currency_exchange_credit_account account.account Currency Exchange Credit Account many2one account f \N \N \N \N +1640 151 currency_exchange_debit_account account.account Currency Exchange Debit Account many2one account f \N \N \N \N +1641 151 currency_exchange_journal account.journal Currency Exchange Journal many2one account f \N \N \N \N +1642 151 default_account_payable account.account Default Account Payable many2one account f \N \N \N \N +1643 151 default_account_receivable account.account Default Account Receivable many2one account f \N \N \N \N +1644 151 default_customer_tax_rule account.tax.rule Default Customer Tax Rule many2one Default customer tax rule for new parties. account f \N \N \N \N +1645 151 default_supplier_tax_rule account.tax.rule Default Supplier Tax Rule many2one Default supplier tax rule for new parties. account f \N \N \N \N +1646 151 id \N ir.msg_ID integer account f \N \N \N \N +1647 151 rec_name \N ir.msg_record_name char account f \N \N \N \N +1648 151 reconciliation_sequence ir.sequence Reconciliation Sequence many2one account f \N \N \N \N +1649 151 tax_rounding \N Tax Rounding selection account f \N \N \N \N +1650 151 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1651 151 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1652 152 company company.company Company many2one account f \N \N \N \N +1653 152 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1654 152 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1655 152 currency_exchange_credit_account account.account Currency Exchange Credit Account many2one account f \N \N \N \N +1656 152 currency_exchange_debit_account account.account Currency Exchange Debit Account many2one account f \N \N \N \N +1657 152 default_account_payable account.account Default Account Payable many2one account f \N \N \N \N +1658 152 default_account_receivable account.account Default Account Receivable many2one account f \N \N \N \N +1659 152 id \N ir.msg_ID integer account f \N \N \N \N +1660 152 rec_name \N ir.msg_record_name char account f \N \N \N \N +1661 152 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1662 152 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1663 153 company company.company Company many2one account f \N \N \N \N +1664 153 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1665 153 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1666 153 default_customer_tax_rule account.tax.rule Default Customer Tax Rule many2one account f \N \N \N \N +1667 153 default_supplier_tax_rule account.tax.rule Default Supplier Tax Rule many2one account f \N \N \N \N +1668 153 id \N ir.msg_ID integer account f \N \N \N \N +1669 153 rec_name \N ir.msg_record_name char account f \N \N \N \N +1670 153 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1671 153 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1672 154 company company.company Company many2one account f \N \N \N \N +1673 154 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1674 154 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1675 154 id \N ir.msg_ID integer account f \N \N \N \N +1676 154 rec_name \N ir.msg_record_name char account f \N \N \N \N +1677 154 reconciliation_sequence ir.sequence Reconciliation Sequence many2one account f \N \N \N \N +1678 154 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1679 154 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1680 155 company company.company Company many2one account f \N \N \N \N +1681 155 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1682 155 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1683 155 currency_exchange_journal account.journal Currency Exchange Journal many2one account f \N \N \N \N +1684 155 id \N ir.msg_ID integer account f \N \N \N \N +1685 155 rec_name \N ir.msg_record_name char account f \N \N \N \N +1686 155 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1687 155 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1688 156 company company.company Company many2one account f \N \N \N \N +1689 156 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1690 156 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1691 156 end_date \N Ending Date date account f \N \N \N \N +1692 156 fiscalyear account.fiscalyear Fiscal Year many2one account t \N \N \N \N +1693 156 icon \N Icon char account f \N \N \N \N +1694 156 id \N ir.msg_ID integer account f \N \N \N \N +1695 156 name \N Name char account f \N \N \N \N +1696 156 post_move_sequence ir.sequence Post Move Sequence many2one account f \N \N \N \N +1697 156 rec_name \N ir.msg_record_name char account f \N \N \N \N +1698 156 start_date \N Starting Date date account f \N \N \N \N +1699 156 state \N State selection account f \N \N \N \N +1700 156 type \N Type selection account f \N \N \N \N +1701 156 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1702 156 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1703 157 active \N ir.msg_active boolean ir.msg_active_help account f \N \N \N \N +1704 157 balance \N Balance numeric account f \N \N \N \N +1705 157 code \N Code char account f \N \N \N \N +1706 157 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1707 157 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1708 157 credit \N Credit numeric account f \N \N \N \N +1709 157 currency currency.currency Currency many2one account f \N \N \N \N +1710 157 debit \N Debit numeric account f \N \N \N \N +1711 157 id \N ir.msg_ID integer account f \N \N \N \N +1712 157 matching_sequence \N Matching Sequence integer account f \N \N \N \N +1713 157 name \N Name char account f \N \N \N \N +1714 157 rec_name \N ir.msg_record_name char account f \N \N \N \N +1715 157 sequence ir.sequence Sequence many2one account f \N \N \N \N +1716 157 sequences account.journal.sequence Sequences one2many account f \N \N \N \N +1717 157 type \N Type selection account f \N \N \N \N +1718 157 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1719 157 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1720 158 company company.company Company many2one account f \N \N \N \N +1721 158 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1722 158 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1723 158 id \N ir.msg_ID integer account f \N \N \N \N +1724 158 journal account.journal Journal many2one account f \N \N \N \N +1725 158 rec_name \N ir.msg_record_name char account f \N \N \N \N +1726 158 sequence ir.sequence Sequence many2one account f \N \N \N \N +1727 158 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1728 158 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1729 159 end_date \N End Date date account f \N \N \N \N +1730 159 id \N ir.msg_ID integer account f \N \N \N \N +1731 159 start_date \N Start Date date account f \N \N \N \N +1732 160 active \N ir.msg_active boolean ir.msg_active_help account f \N \N \N \N +1733 160 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1734 160 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1735 160 icon \N Icon char account f \N \N \N \N +1736 160 id \N ir.msg_ID integer account f \N \N \N \N +1737 160 journal account.journal Journal many2one account f \N \N \N \N +1738 160 period account.period Period many2one account f \N \N \N \N +1739 160 rec_name \N ir.msg_record_name char account f \N \N \N \N +1740 160 state \N State selection account f \N \N \N \N +1741 160 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1742 160 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1743 161 company company.company Company many2one account f \N \N \N \N +1744 161 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1745 161 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1746 161 date \N Effective Date date account f \N \N \N \N +1747 161 description \N Description char account f \N \N \N \N +1748 161 description_used \N Description char account f \N \N \N \N +1749 161 id \N ir.msg_ID integer account f \N \N \N \N +1750 161 journal account.journal Journal many2one account f \N \N \N \N +1751 161 lines account.move.line Lines one2many account f \N \N \N \N +1752 161 number \N Number char account f \N \N \N \N +1753 161 origin \N Origin reference account f \N \N \N \N +1754 161 period account.period Period many2one account f \N \N \N \N +1755 161 post_date \N Post Date date account f \N \N \N \N +1756 161 post_number \N Post Number char Also known as Folio Number. account f \N \N \N \N +1757 161 rec_name \N ir.msg_record_name char account f \N \N \N \N +1758 161 state \N State selection account f \N \N \N \N +1759 161 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1760 161 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1761 162 company company.company Company many2one account f \N \N \N \N +1762 162 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1763 162 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1764 162 date \N Date date Highest date of the reconciled lines. account f \N \N \N \N +1765 162 delegate_to account.move.line Delegate To many2one The line to which the reconciliation status is delegated. account f \N \N \N \N +1766 162 id \N ir.msg_ID integer account f \N \N \N \N +1767 162 lines account.move.line Lines one2many account f \N \N \N \N +1768 162 number \N Number char account f \N \N \N \N +1769 162 rec_name \N ir.msg_record_name char account f \N \N \N \N +1770 162 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1771 162 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1772 163 company company.company Company many2one account f \N \N \N \N +1773 163 configuration account.configuration Configuration many2one account f \N \N \N \N +1774 163 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1775 163 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1776 163 id \N ir.msg_ID integer account f \N \N \N \N +1777 163 rec_name \N ir.msg_record_name char account f \N \N \N \N +1778 163 tax_rounding \N Method selection account f \N \N \N \N +1779 163 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1780 163 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1781 164 account account.account Account many2one account f \N \N \N \N +1782 164 amount \N Amount numeric account f \N \N \N \N +1783 164 amount_currency currency.currency Amount Currency many2one account f \N \N \N \N +1784 164 amount_second_currency \N Amount Second Currency numeric The amount expressed in a second currency. account f \N \N \N \N +1785 164 company company.company Company many2one account f \N \N \N \N +1786 164 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1787 164 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1788 164 credit \N Credit numeric account f \N \N \N \N +1789 164 currency currency.currency Currency many2one account f \N \N \N \N +1790 164 date \N Effective Date date account f \N \N \N \N +1791 164 debit \N Debit numeric account f \N \N \N \N +1792 164 delegated_amount \N Delegated Amount numeric account f \N \N \N \N +1793 164 description \N Description char account f \N \N \N \N +1794 164 description_used \N Description char account f \N \N \N \N +1795 164 has_maturity_date \N Has Maturity Date boolean account f \N \N \N \N +1796 164 id \N ir.msg_ID integer account f \N \N \N \N +1797 164 journal account.journal Journal many2one account f \N \N \N \N +1798 164 maturity_date \N Maturity Date date Set a date to make the line payable or receivable. account f \N \N \N \N +1799 164 move account.move Move many2one account t \N \N \N \N +1800 164 move_description_used \N Move Description char account f \N \N \N \N +1801 164 move_origin \N Move Origin reference account f \N \N \N \N +1802 164 move_state \N Move State selection account f \N \N \N \N +1803 164 origin \N Origin reference account f \N \N \N \N +1804 164 party party.party Party many2one account f \N \N \N \N +1805 164 party_required \N Party Required boolean account f \N \N \N \N +1806 164 payable_receivable_balance \N Payable/Receivable Balance numeric account f \N \N \N \N +1807 164 period account.period Period many2one account f \N \N \N \N +1808 164 rec_name \N ir.msg_record_name char account f \N \N \N \N +1809 164 reconciliation account.move.reconciliation Reconciliation many2one account f \N \N \N \N +1810 164 reconciliations_delegated account.move.reconciliation Reconciliations Delegated one2many account f \N \N \N \N +1811 164 second_currency currency.currency Second Currency many2one The second currency. account f \N \N \N \N +1812 164 second_currency_required currency.currency Second Currency Required many2one account f \N \N \N \N +1813 164 state \N State selection account f \N \N \N \N +1814 164 tax_lines account.tax.line Tax Lines one2many account f \N \N \N \N +1815 164 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1816 164 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1817 165 id \N ir.msg_ID integer account f \N \N \N \N +1818 165 payable \N Payable boolean account f \N \N \N \N +1819 165 receivable \N Receivable boolean account f \N \N \N \N +1820 165 reconciled \N Reconciled boolean account f \N \N \N \N +1821 166 active \N ir.msg_active boolean ir.msg_active_help account f \N \N \N \N +1822 166 company company.company Company many2one account f \N \N \N \N +1823 166 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1824 166 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1825 166 credit_account account.account Credit Account many2one account f \N \N \N \N +1826 166 debit_account account.account Debit Account many2one account f \N \N \N \N +1827 166 id \N ir.msg_ID integer account f \N \N \N \N +1828 166 journal account.journal Journal many2one account f \N \N \N \N +1829 166 name \N Name char account f \N \N \N \N +1830 166 rec_name \N ir.msg_record_name char account f \N \N \N \N +1831 166 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1832 166 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1833 167 id \N ir.msg_ID integer account f \N \N \N \N +1834 167 journal account.journal Journal many2one account f \N \N \N \N +1835 167 period account.period Period many2one account f \N \N \N \N +1836 168 amount \N Amount numeric account f \N \N \N \N +1837 168 company company.company Company many2one account f \N \N \N \N +1838 168 currency currency.currency Currency many2one account f \N \N \N \N +1839 168 date \N Date date account f \N \N \N \N +1840 168 description \N Description char account f \N \N \N \N +1841 168 id \N ir.msg_ID integer account f \N \N \N \N +1842 168 writeoff account.move.reconcile.write_off Write Off many2one account f \N \N \N \N +1843 169 automatic \N Automatic boolean Automatically reconcile suggestions. account f \N \N \N \N +1844 169 id \N ir.msg_ID integer account f \N \N \N \N +1845 169 only_balanced \N Only Balanced boolean Skip suggestion with write-off. account f \N \N \N \N +1846 170 account account.account Account many2one account f \N \N \N \N +1847 170 accounts account.account Account many2many account f \N \N \N \N +1848 170 company company.company Company many2one account f \N \N \N \N +1849 170 currencies currency.currency Currencies many2many account f \N \N \N \N +1850 170 currency currency.currency Currency many2one account f \N \N \N \N +1851 170 date \N Date date account f \N \N \N \N +1852 170 description \N Description char account f \N \N \N \N +1853 170 id \N ir.msg_ID integer account f \N \N \N \N +1854 170 lines account.move.line Lines many2many account f \N \N \N \N +1855 170 parties party.party Parties many2many account f \N \N \N \N +1856 170 party party.party Party many2one account f \N \N \N \N +1857 170 write_off account.move.reconcile.write_off Write Off many2one account f \N \N \N \N +1858 170 write_off_amount \N Amount numeric account f \N \N \N \N +1859 171 description \N Description char account f \N \N \N \N +1860 171 id \N ir.msg_ID integer account f \N \N \N \N +1861 171 reversal \N Reversal boolean Reverse debit and credit. account f \N \N \N \N +1862 172 description \N Description char account f \N \N \N \N +1863 172 id \N ir.msg_ID integer account f \N \N \N \N +1864 172 journal account.journal Journal many2one account f \N \N \N \N +1865 173 amount \N Amount numeric account f \N \N \N \N +1866 173 currency currency.currency Currency many2one account f \N \N \N \N +1867 173 frequency \N Frequency selection account f \N \N \N \N +1868 173 id \N ir.msg_ID integer account f \N \N \N \N +1869 173 interval \N Interval integer The length of each period, in months. account f \N \N \N \N +1870 173 number \N Number integer account f \N \N \N \N +1871 173 start_date \N Start Date date account f \N \N \N \N +1872 173 total_amount \N Total Amount numeric account f \N \N \N \N +1873 174 currency currency.currency Currency many2one account f \N \N \N \N +1874 174 description \N Description char account f \N \N \N \N +1875 174 id \N ir.msg_ID integer account f \N \N \N \N +1876 174 journal account.journal Journal many2one account f \N \N \N \N +1877 174 terms account.move.line.reschedule.term Terms one2many account f \N \N \N \N +1878 175 amount \N Amount numeric account f \N \N \N \N +1879 175 currency currency.currency Currency many2one account f \N \N \N \N +1880 175 date \N Date date account f \N \N \N \N +1881 175 id \N ir.msg_ID integer account f \N \N \N \N +1882 176 description \N Description char account f \N \N \N \N +1883 176 id \N ir.msg_ID integer account f \N \N \N \N +1884 176 journal account.journal Journal many2one account f \N \N \N \N +1885 176 party party.party Party many2one account f \N \N \N \N +1886 177 code \N Code char account f \N \N \N \N +1887 177 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1888 177 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1889 177 id \N ir.msg_ID integer account f \N \N \N \N +1890 177 kind \N Kind selection account f \N \N \N \N +1891 177 name \N Name char account f \N \N \N \N +1892 177 rec_name \N ir.msg_record_name char account f \N \N \N \N +1893 177 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1894 177 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1895 178 account account.account.template Account Template many2one account f \N \N \N \N +1896 178 childs account.tax.code.template Children one2many account f \N \N \N \N +1897 178 code \N Code char account f \N \N \N \N +1898 178 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1899 178 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1900 178 description \N Description text account f \N \N \N \N +1901 178 end_date \N End Date date account f \N \N \N \N +1902 178 id \N ir.msg_ID integer account f \N \N \N \N +1903 178 lines account.tax.code.line.template Lines one2many account f \N \N \N \N +1904 178 name \N Name char account f \N \N \N \N +1905 178 parent account.tax.code.template Parent many2one account f \N \N \N \N +1906 178 rec_name \N ir.msg_record_name char account f \N \N \N \N +1907 178 start_date \N Start Date date account f \N \N \N \N +1908 178 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1909 178 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1910 179 active \N Active boolean account f \N \N \N \N +1911 179 amount \N Amount numeric account f \N \N \N \N +1912 179 childs account.tax.code Children one2many account f \N \N \N \N +1913 179 code \N Code char account f \N \N \N \N +1914 179 company company.company Company many2one account f \N \N \N \N +1915 179 context_company \N Context Company boolean account f \N \N \N \N +1916 179 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1917 179 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1918 179 currency currency.currency Currency many2one account f \N \N \N \N +1919 179 description \N Description text account f \N \N \N \N +1920 179 end_date \N End Date date account f \N \N \N \N +1921 179 id \N ir.msg_ID integer account f \N \N \N \N +1922 179 lines account.tax.code.line Lines one2many account f \N \N \N \N +1923 179 name \N Name char account f \N \N \N \N +1924 179 parent account.tax.code Parent many2one account f \N \N \N \N +1925 179 rec_name \N ir.msg_record_name char account f \N \N \N \N +1926 179 start_date \N Start Date date account f \N \N \N \N +1927 179 template account.tax.code.template Template many2one account f \N \N \N \N +1928 179 template_override \N Override Template boolean Check to override template definition account f \N \N \N \N +1929 179 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1930 179 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1931 180 amount \N Amount selection account f \N \N \N \N +1932 180 code account.tax.code.template Code many2one account t \N \N \N \N +1933 180 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1934 180 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1935 180 id \N ir.msg_ID integer account f \N \N \N \N +1936 180 operator \N Operator selection account f \N \N \N \N +1937 180 rec_name \N ir.msg_record_name char account f \N \N \N \N +1938 180 tax account.tax.template Tax many2one account f \N \N \N \N +1939 180 type \N Type selection account f \N \N \N \N +1940 180 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1941 180 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1942 181 amount \N Amount selection account f \N \N \N \N +1943 181 code account.tax.code Code many2one account t \N \N \N \N +1944 181 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1945 181 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1946 181 id \N ir.msg_ID integer account f \N \N \N \N +1947 181 operator \N Operator selection account f \N \N \N \N +1948 181 rec_name \N ir.msg_record_name char account f \N \N \N \N +1949 181 tax account.tax Tax many2one account f \N \N \N \N +1950 181 template account.tax.code.line.template Template many2one account f \N \N \N \N +1951 181 template_override \N Override Template boolean Check to override template definition account f \N \N \N \N +1952 181 type \N Type selection account f \N \N \N \N +1953 181 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1954 181 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1955 182 company company.company Company many2one account f \N \N \N \N +1956 182 end_period account.period End Period many2one account f \N \N \N \N +1957 182 fiscalyear account.fiscalyear Fiscal Year many2one account f \N \N \N \N +1958 182 id \N ir.msg_ID integer account f \N \N \N \N +1959 182 method \N Method selection account f \N \N \N \N +1960 182 period account.period Period many2one account f \N \N \N \N +1961 182 periods account.period Periods many2many account f \N \N \N \N +1962 182 start_period account.period Start Period many2one account f \N \N \N \N +1963 183 account account.account.template Account Template many2one account f \N \N \N \N +1964 183 active \N ir.msg_active boolean ir.msg_active_help account f \N \N \N \N +1965 183 amount \N Amount numeric account f \N \N \N \N +1966 183 childs account.tax.template Children one2many account f \N \N \N \N +1967 183 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1968 183 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1969 183 credit_note_account account.account.template Credit Note Account many2one account f \N \N \N \N +1970 183 description \N Description char account f \N \N \N \N +1971 183 end_date \N Ending Date date account f \N \N \N \N +1972 183 group account.tax.group Group many2one account f \N \N \N \N +1973 183 id \N ir.msg_ID integer account f \N \N \N \N +1974 183 invoice_account account.account.template Invoice Account many2one account f \N \N \N \N +1975 183 legal_notice \N Legal Notice text account f \N \N \N \N +1976 183 name \N Name char account f \N \N \N \N +1977 183 parent account.tax.template Parent many2one account f \N \N \N \N +1978 183 rate \N Rate numeric account f \N \N \N \N +1979 183 rec_name \N ir.msg_record_name char account f \N \N \N \N +1980 183 sequence \N ir.msg_sequence integer account f \N \N \N \N +1981 183 start_date \N Starting Date date account f \N \N \N \N +1982 183 type \N Type selection account f \N \N \N \N +1983 183 update_unit_price \N Update Unit Price boolean account f \N \N \N \N +1984 183 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +1985 183 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +1986 184 active \N ir.msg_active boolean ir.msg_active_help account f \N \N \N \N +1987 184 amount \N Amount numeric In company's currency. account f \N \N \N \N +1988 184 childs account.tax Children one2many account f \N \N \N \N +1989 184 company company.company Company many2one account f \N \N \N \N +1990 184 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +1991 184 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +1992 184 credit_base_amount \N Credit Base Amount numeric account f \N \N \N \N +1993 184 credit_note_account account.account Credit Note Account many2one account f \N \N \N \N +1994 184 credit_tax_amount \N Credit Tax Amount numeric account f \N \N \N \N +1995 184 currency currency.currency Currency many2one account f \N \N \N \N +1996 184 description \N Description char The name that will be used in reports. account f \N \N \N \N +1997 184 end_date \N Ending Date date account f \N \N \N \N +1998 184 group account.tax.group Group many2one account f \N \N \N \N +1999 184 id \N ir.msg_ID integer account f \N \N \N \N +2000 184 invoice_account account.account Invoice Account many2one account f \N \N \N \N +2001 184 invoice_base_amount \N Invoice Base Amount numeric account f \N \N \N \N +2002 184 invoice_tax_amount \N Invoice Tax Amount numeric account f \N \N \N \N +2003 184 legal_notice \N Legal Notice text account f \N \N \N \N +2004 184 name \N Name char account f \N \N \N \N +2005 184 parent account.tax Parent many2one account f \N \N \N \N +2006 184 rate \N Rate numeric account f \N \N \N \N +2007 184 rec_name \N ir.msg_record_name char account f \N \N \N \N +2008 184 sequence \N ir.msg_sequence integer account f \N \N \N \N +2009 184 start_date \N Starting Date date account f \N \N \N \N +2010 184 template account.tax.template Template many2one account f \N \N \N \N +2011 184 template_override \N Override Template boolean Check to override template definition account f \N \N \N \N +2012 184 type \N Type selection account f \N \N \N \N +2013 184 update_unit_price \N Update Unit Price boolean If checked then the unit price for further tax computation will be modified by this tax. account f \N \N \N \N +2014 184 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2015 184 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2016 185 amount \N Amount numeric account f \N \N \N \N +2017 185 company company.company Company many2one account f \N \N \N \N +2018 185 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2019 185 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2020 185 currency currency.currency Currency many2one account f \N \N \N \N +2021 185 id \N ir.msg_ID integer account f \N \N \N \N +2022 185 move_line account.move.line Move Line many2one account t \N \N \N \N +2023 185 rec_name \N ir.msg_record_name char account f \N \N \N \N +2024 185 tax account.tax Tax many2one account f \N \N \N \N +2025 185 type \N Type selection account f \N \N \N \N +2026 185 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2027 185 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2028 186 account account.account.template Account Template many2one account f \N \N \N \N +2029 186 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2030 186 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2031 186 id \N ir.msg_ID integer account f \N \N \N \N +2032 186 kind \N Kind selection account f \N \N \N \N +2033 186 lines account.tax.rule.line.template Lines one2many account f \N \N \N \N +2034 186 name \N Name char account f \N \N \N \N +2035 186 rec_name \N ir.msg_record_name char account f \N \N \N \N +2036 186 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2037 186 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2038 187 company company.company Company many2one account f \N \N \N \N +2039 187 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2040 187 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2041 187 id \N ir.msg_ID integer account f \N \N \N \N +2042 187 kind \N Kind selection account f \N \N \N \N +2043 187 lines account.tax.rule.line Lines one2many account f \N \N \N \N +2044 187 name \N Name char account f \N \N \N \N +2045 187 rec_name \N ir.msg_record_name char account f \N \N \N \N +2046 187 template account.tax.rule.template Template many2one account f \N \N \N \N +2047 187 template_override \N Override Template boolean Check to override template definition account f \N \N \N \N +2048 187 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2049 187 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2050 188 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2051 188 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2052 188 end_date \N Ending Date date account f \N \N \N \N +2053 188 group account.tax.group Tax Group many2one account f \N \N \N \N +2054 188 id \N ir.msg_ID integer account f \N \N \N \N +2055 188 keep_origin \N Keep Origin boolean Check to append the original tax to substituted tax. account f \N \N \N \N +2056 188 origin_tax account.tax.template Original Tax many2one If the original tax template is filled, the rule will be applied only for this tax template. account f \N \N \N \N +2057 188 rec_name \N ir.msg_record_name char account f \N \N \N \N +2058 188 rule account.tax.rule.template Rule many2one account t \N \N \N \N +2059 188 sequence \N ir.msg_sequence integer account f \N \N \N \N +2060 188 start_date \N Starting Date date account f \N \N \N \N +2061 188 tax account.tax.template Substitution Tax many2one account f \N \N \N \N +2062 188 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2063 188 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2064 189 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2065 189 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2066 189 end_date \N Ending Date date account f \N \N \N \N +2067 189 group account.tax.group Tax Group many2one account f \N \N \N \N +2068 189 id \N ir.msg_ID integer account f \N \N \N \N +2069 189 keep_origin \N Keep Origin boolean Check to append the original tax to substituted tax. account f \N \N \N \N +2070 189 origin_tax account.tax Original Tax many2one If the original tax is filled, the rule will be applied only for this tax. account f \N \N \N \N +2071 189 rec_name \N ir.msg_record_name char account f \N \N \N \N +2072 189 rule account.tax.rule Rule many2one account t \N \N \N \N +2073 189 sequence \N ir.msg_sequence integer account f \N \N \N \N +2074 189 start_date \N Starting Date date account f \N \N \N \N +2075 189 tax account.tax Substitution Tax many2one account f \N \N \N \N +2076 189 template account.tax.rule.line.template Template many2one account f \N \N \N \N +2077 189 template_override \N Override Template boolean Check to override template definition account f \N \N \N \N +2078 189 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2079 189 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2080 190 currency currency.currency Currency many2one account f \N \N \N \N +2081 190 id \N ir.msg_ID integer account f \N \N \N \N +2082 190 quantity \N Quantity numeric account f \N \N \N \N +2083 190 result account.tax.test.result Result one2many account f \N \N \N \N +2084 190 tax_date \N Date date account f \N \N \N \N +2085 190 taxes account.tax Taxes one2many account f \N \N \N \N +2086 190 unit_price \N Unit Price numeric account f \N \N \N \N +2087 191 account account.account Account many2one account f \N \N \N \N +2088 191 amount \N Amount numeric account f \N \N \N \N +2089 191 base \N Base numeric account f \N \N \N \N +2090 191 description \N Description char account f \N \N \N \N +2091 191 id \N ir.msg_ID integer account f \N \N \N \N +2092 191 legal_notice \N Legal Notice char account f \N \N \N \N +2093 191 tax account.tax Tax many2one account f \N \N \N \N +2094 192 active \N ir.msg_active boolean ir.msg_active_help account f \N \N \N \N +2095 192 company company.company Company many2one account f \N \N \N \N +2096 192 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2097 192 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2098 192 description \N Description char Keyword value substitutions are identified by braces ('{' and '}'). account f \N \N \N \N +2099 192 id \N ir.msg_ID integer account f \N \N \N \N +2100 192 journal account.journal Journal many2one account f \N \N \N \N +2101 192 keywords account.move.template.keyword Keywords one2many account f \N \N \N \N +2102 192 lines account.move.line.template Lines one2many account f \N \N \N \N +2103 192 name \N Name char account f \N \N \N \N +2104 192 rec_name \N ir.msg_record_name char account f \N \N \N \N +2105 192 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2106 192 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2107 193 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2108 193 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2109 193 digits \N Digits integer account f \N \N \N \N +2110 193 id \N ir.msg_ID integer account f \N \N \N \N +2111 193 move account.move.template Move many2one account t \N \N \N \N +2112 193 name \N Name char account f \N \N \N \N +2113 193 rec_name \N ir.msg_record_name char account f \N \N \N \N +2114 193 required \N Required boolean account f \N \N \N \N +2115 193 sequence \N ir.msg_sequence integer account f \N \N \N \N +2116 193 string \N String char account f \N \N \N \N +2117 193 type_ \N Type selection account f \N \N \N \N +2118 193 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2119 193 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2120 194 account account.account Account many2one account f \N \N \N \N +2121 194 amount \N Amount char A python expression that will be evaluated with the keywords. account f \N \N \N \N +2122 194 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2123 194 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2124 194 description \N Description char Keyword value substitutions are identified by braces ('{' and '}'). account f \N \N \N \N +2125 194 id \N ir.msg_ID integer account f \N \N \N \N +2126 194 move account.move.template Move many2one account t \N \N \N \N +2127 194 operation \N Operation selection account f \N \N \N \N +2128 194 party \N Party char The name of the 'Party' keyword. account f \N \N \N \N +2129 194 party_required \N Party Required boolean account f \N \N \N \N +2130 194 rec_name \N ir.msg_record_name char account f \N \N \N \N +2131 194 taxes account.tax.line.template Taxes one2many account f \N \N \N \N +2132 194 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2133 194 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2134 195 amount \N Amount char A python expression that will be evaluated with the keywords. account f \N \N \N \N +2135 195 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2136 195 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2137 195 id \N ir.msg_ID integer account f \N \N \N \N +2138 195 line account.move.line.template Line many2one account t \N \N \N \N +2139 195 rec_name \N ir.msg_record_name char account f \N \N \N \N +2140 195 tax account.tax Tax many2one account f \N \N \N \N +2141 195 type \N Type selection account f \N \N \N \N +2142 195 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2143 195 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2144 196 date \N Effective Date date account f \N \N \N \N +2145 196 id \N ir.msg_ID integer account f \N \N \N \N +2146 196 period account.period Period many2one account f \N \N \N \N +2147 196 template account.move.template Template many2one account f \N \N \N \N +2148 197 id \N ir.msg_ID integer account f \N \N \N \N +2149 104 account_payable account.account Account Payable many2one account f \N \N \N \N +2150 104 account_receivable account.account Account Receivable many2one account f \N \N \N \N +2151 104 accounts party.party.account Accounts one2many account f \N \N \N \N +2152 104 currency currency.currency Currency many2one account f \N \N \N \N +2153 104 customer_tax_rule account.tax.rule Customer Tax Rule many2one Apply this rule on taxes when party is customer. account f \N \N \N \N +2154 104 payable \N Payable numeric account f \N \N \N \N +2155 104 payable_today \N Payable Today numeric account f \N \N \N \N +2156 104 receivable \N Receivable numeric account f \N \N \N \N +2157 104 receivable_today \N Receivable Today numeric account f \N \N \N \N +2158 104 supplier_tax_rule account.tax.rule Supplier Tax Rule many2one Apply this rule on taxes when party is supplier. account f \N \N \N \N +2159 198 account_payable account.account Account Payable many2one account f \N \N \N \N +2160 198 account_receivable account.account Account Receivable many2one account f \N \N \N \N +2161 198 company company.company Company many2one account f \N \N \N \N +2162 198 create_date \N ir.msg_created_at timestamp account f \N \N \N \N +2163 198 create_uid res.user ir.msg_created_by many2one account f \N \N \N \N +2164 198 customer_tax_rule account.tax.rule Customer Tax Rule many2one account f \N \N \N \N +2165 198 id \N ir.msg_ID integer account f \N \N \N \N +2166 198 party party.party Party many2one account f \N \N \N \N +2167 198 rec_name \N ir.msg_record_name char account f \N \N \N \N +2168 198 supplier_tax_rule account.tax.rule Supplier Tax Rule many2one account f \N \N \N \N +2169 198 write_date \N ir.msg_edited_at timestamp account f \N \N \N \N +2170 198 write_uid res.user ir.msg_edited_by many2one account f \N \N \N \N +2171 199 end_day \N End Day integer The day of the month on which periods end.\nMonths with fewer days will end on the last day. account f \N \N \N \N +2172 199 frequency \N Frequency selection account f \N \N \N \N +2173 199 id \N ir.msg_ID integer account f \N \N \N \N +2174 199 interval \N Interval integer The length of each period, in months. account f \N \N \N \N +2175 200 company company.company Company many2one account f \N \N \N \N +2176 200 end_date \N End Date date account f \N \N \N \N +2177 200 id \N ir.msg_ID integer account f \N \N \N \N +2178 200 name \N Name char account f \N \N \N \N +2179 200 previous_fiscalyear account.fiscalyear Previous Fiscalyear many2one Used as reference for fiscalyear configuration. account f \N \N \N \N +2180 200 reset_sequences \N Reset Sequences boolean If checked, new sequences will be created. account f \N \N \N \N +2181 200 start_date \N Start Date date account f \N \N \N \N +2182 1 product_price_decimal \N Product Price Decimal integer product f \N \N \N \N +2183 201 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2184 201 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2185 201 id \N ir.msg_ID integer product f \N \N \N \N +2186 201 name \N Name char product f \N \N \N \N +2187 201 rec_name \N ir.msg_record_name char product f \N \N \N \N +2188 201 uoms product.uom Units of Measure one2many product f \N \N \N \N +2189 201 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2190 201 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2191 202 active \N ir.msg_active boolean ir.msg_active_help product f \N \N \N \N +2192 202 category product.uom.category Category many2one The category that contains the unit of measure.\nConversions between different units of measure can be done if they are in the same category. product f \N \N \N \N +2193 202 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2194 202 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2195 202 digits \N Display Digits integer The number of digits to display after the decimal separator. product f \N \N \N \N +2196 202 factor \N Factor float The coefficient for the formula:\ncoefficient (base unit) = 1 (this unit) product f \N \N \N \N +2197 202 id \N ir.msg_ID integer product f \N \N \N \N +2198 202 name \N Name char product f \N \N \N \N +2199 202 rate \N Rate float The coefficient for the formula:\n1 (base unit) = coef (this unit) product f \N \N \N \N +2200 202 rec_name \N ir.msg_record_name char product f \N \N \N \N +2201 202 rounding \N Rounding Precision float The accuracy to which values are rounded. product f \N \N \N \N +2202 202 symbol \N Symbol char The symbol that represents the unit of measure. product f \N \N \N \N +2203 202 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2204 202 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2205 203 childs product.category Children one2many Used to add structure below the category. product f \N \N \N \N +2206 203 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2207 203 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2208 203 id \N ir.msg_ID integer product f \N \N \N \N +2209 203 name \N Name char product f \N \N \N \N +2210 203 parent product.category Parent many2one Used to add structure above the category. product f \N \N \N \N +2211 203 rec_name \N ir.msg_record_name char product f \N \N \N \N +2212 203 templates product.template-product.category Products many2many product f \N \N \N \N +2213 203 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2214 203 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2215 204 active \N ir.msg_active boolean ir.msg_active_help product f \N \N \N \N +2216 204 categories product.template-product.category Categories many2many The categories that the product is in.\nUsed to group similar products together. product f \N \N \N \N +2217 204 categories_all product.template-product.category.all Categories many2many product f \N \N \N \N +2218 204 code \N Code char product f \N \N \N \N +2219 204 code_readonly \N Code Readonly boolean product f \N \N \N \N +2220 204 consumable \N Consumable boolean Check to allow stock moves to be assigned regardless of stock level. product f \N \N \N \N +2221 204 cost_price \N Cost Price numeric The amount it costs to purchase or make the product, or carry out the service. product f \N \N \N \N +2222 204 cost_price_method \N Cost Price Method selection The method used to calculate the cost price. product f \N \N \N \N +2223 204 cost_price_methods product.cost_price_method Cost Price Methods one2many product f \N \N \N \N +2224 204 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2225 204 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2226 204 default_uom product.uom Default UoM many2one The standard Unit of Measure for the product.\nUsed internally when calculating the stock levels of goods and assets. product f \N \N \N \N +2227 204 default_uom_category product.uom.category Default UoM Category many2one The category of the default Unit of Measure. product f \N \N \N \N +2228 204 id \N ir.msg_ID integer product f \N \N \N \N +2229 204 list_price \N List Price numeric The standard price the product is sold at. product f \N \N \N \N +2230 204 list_prices product.list_price List Prices one2many product f \N \N \N \N +2231 204 name \N Name char product f \N \N \N \N +2232 204 products product.product Variants one2many The different variants the product comes in. product f \N \N \N \N +2233 204 rec_name \N ir.msg_record_name char product f \N \N \N \N +2234 204 type \N Type selection product f \N \N \N \N +2235 204 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2236 204 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2237 205 active \N ir.msg_active boolean ir.msg_active_help product f \N \N \N \N +2238 205 categories product.template-product.category Categories many2many The categories that the product is in.\nUsed to group similar products together. product f \N \N \N \N +2239 205 categories_all product.template-product.category.all Categories many2many product f \N \N \N \N +2240 205 code \N Code char A unique identifier for the variant. product f \N \N \N \N +2241 205 code_readonly \N Code Readonly boolean product f \N \N \N \N +2242 205 consumable \N Consumable boolean Check to allow stock moves to be assigned regardless of stock level. product f \N \N \N \N +2243 205 cost_price \N Cost Price numeric The amount it costs to purchase or make the variant, or carry out the service. product f \N \N \N \N +2244 205 cost_price_method \N Cost Price Method selection The method used to calculate the cost price. product f \N \N \N \N +2245 205 cost_price_methods product.cost_price_method Cost Price Methods one2many product f \N \N \N \N +2246 205 cost_price_uom \N Cost Price numeric product f \N \N \N \N +2247 205 cost_prices product.cost_price Cost Prices one2many product f \N \N \N \N +2248 205 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2249 205 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2329 213 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2400 219 help \N ir.msg_dict_schema_help text product_attribute f \N \N \N \N +2250 205 default_uom product.uom Default UoM many2one The standard Unit of Measure for the product.\nUsed internally when calculating the stock levels of goods and assets. product f \N \N \N \N +2251 205 default_uom_category product.uom.category Default UoM Category many2one The category of the default Unit of Measure. product f \N \N \N \N +2252 205 description \N Description text product f \N \N \N \N +2253 205 id \N ir.msg_ID integer product f \N \N \N \N +2254 205 identifiers product.identifier Identifiers one2many Other identifiers associated with the variant. product f \N \N \N \N +2255 205 list_price \N List Price numeric The standard price the product is sold at. product f \N \N \N \N +2256 205 list_price_uom \N List Price numeric product f \N \N \N \N +2257 205 list_prices product.list_price List Prices one2many product f \N \N \N \N +2258 205 name \N Name char product f \N \N \N \N +2259 205 prefix_code \N Prefix Code char product f \N \N \N \N +2260 205 rec_name \N ir.msg_record_name char product f \N \N \N \N +2261 205 suffix_code \N Suffix Code char The unique identifier for the product (aka SKU). product f \N \N \N \N +2262 205 template product.template Product Template many2one The product that defines the common properties inherited by the variant. product t \N \N \N \N +2263 205 type \N Type selection product f \N \N \N \N +2264 205 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2265 205 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2266 206 code \N Code char product f \N \N \N \N +2267 206 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2268 206 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2269 206 id \N ir.msg_ID integer product f \N \N \N \N +2270 206 product product.product Product many2one The product identified by the code. product t \N \N \N \N +2271 206 rec_name \N ir.msg_record_name char product f \N \N \N \N +2272 206 sequence \N ir.msg_sequence integer product f \N \N \N \N +2273 206 type \N Type selection product f \N \N \N \N +2274 206 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2275 206 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2276 207 company company.company Company many2one product f \N \N \N \N +2277 207 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2278 207 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2279 207 id \N ir.msg_ID integer product f \N \N \N \N +2280 207 list_price \N List Price numeric product f \N \N \N \N +2281 207 rec_name \N ir.msg_record_name char product f \N \N \N \N +2282 207 template product.template Template many2one product f \N \N \N \N +2283 207 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2284 207 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2285 208 company company.company Company many2one product f \N \N \N \N +2286 208 cost_price_method \N Cost Price Method selection product f \N \N \N \N +2287 208 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2288 208 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2289 208 id \N ir.msg_ID integer product f \N \N \N \N +2290 208 rec_name \N ir.msg_record_name char product f \N \N \N \N +2291 208 template product.template Template many2one product f \N \N \N \N +2292 208 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2293 208 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2294 209 company company.company Company many2one product f \N \N \N \N +2295 209 cost_price \N Cost Price numeric product f \N \N \N \N +2296 209 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2297 209 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2298 209 id \N ir.msg_ID integer product f \N \N \N \N +2299 209 product product.product Product many2one product f \N \N \N \N +2300 209 rec_name \N ir.msg_record_name char product f \N \N \N \N +2301 209 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2302 209 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2303 210 category product.category Category many2one product f \N \N \N \N +2304 210 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2305 210 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2306 210 id \N ir.msg_ID integer product f \N \N \N \N +2307 210 rec_name \N ir.msg_record_name char product f \N \N \N \N +2308 210 template product.template Template many2one product f \N \N \N \N +2309 210 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2310 210 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2311 211 category product.category Category many2one product f \N \N \N \N +2312 211 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2313 211 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2314 211 id \N ir.msg_ID integer product f \N \N \N \N +2315 211 rec_name \N ir.msg_record_name char product f \N \N \N \N +2316 211 template product.template Template many2one product f \N \N \N \N +2317 211 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2318 211 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2319 212 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2320 212 create_uid res.user ir.msg_created_by many2one product f \N \N \N \N +2321 212 default_cost_price_method \N Default Cost Method selection The default cost price method for new products. product f \N \N \N \N +2322 212 id \N ir.msg_ID integer product f \N \N \N \N +2323 212 product_sequence ir.sequence Variant Sequence many2one Used to generate the last part of the product code. product f \N \N \N \N +2324 212 rec_name \N ir.msg_record_name char product f \N \N \N \N +2325 212 template_sequence ir.sequence Product Sequence many2one Used to generate the first part of the product code. product f \N \N \N \N +2326 212 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2327 212 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2328 213 create_date \N ir.msg_created_at timestamp product f \N \N \N \N +2330 213 default_cost_price_method \N Default Cost Method selection The default cost price method for new products. product f \N \N \N \N +2331 213 id \N ir.msg_ID integer product f \N \N \N \N +2332 213 rec_name \N ir.msg_record_name char product f \N \N \N \N +2333 213 write_date \N ir.msg_edited_at timestamp product f \N \N \N \N +2334 213 write_uid res.user ir.msg_edited_by many2one product f \N \N \N \N +2335 203 account_expense account.account Account Expense many2one account_product f \N \N \N \N +2336 203 account_parent \N Use Parent's accounts boolean Use the accounts defined on the parent category. account_product f \N \N \N \N +2337 203 account_revenue account.account Account Revenue many2one account_product f \N \N \N \N +2338 203 accounting \N Accounting boolean Check to indicate the category is used for accounting. account_product f \N \N \N \N +2339 203 accounts product.category.account Accounts one2many account_product f \N \N \N \N +2340 203 customer_taxes product.category-customer-account.tax Customer Taxes many2many The taxes to apply when selling products of this category. account_product f \N \N \N \N +2341 203 customer_taxes_used account.tax Customer Taxes Used many2many account_product f \N \N \N \N +2342 203 supplier_taxes product.category-supplier-account.tax Supplier Taxes many2many The taxes to apply when purchasing products of this category. account_product f \N \N \N \N +2343 203 supplier_taxes_deductible_rate \N Supplier Taxes Deductible Rate numeric account_product f \N \N \N \N +2344 203 supplier_taxes_used account.tax Supplier Taxes Used many2many account_product f \N \N \N \N +2345 203 taxes_parent \N Use the Parent's Taxes boolean Use the taxes defined on the parent category. account_product f \N \N \N \N +2346 214 account_expense account.account Account Expense many2one account_product f \N \N \N \N +2347 214 account_revenue account.account Account Revenue many2one account_product f \N \N \N \N +2348 214 category product.category Category many2one account_product f \N \N \N \N +2349 214 company company.company Company many2one account_product f \N \N \N \N +2350 214 create_date \N ir.msg_created_at timestamp account_product f \N \N \N \N +2351 214 create_uid res.user ir.msg_created_by many2one account_product f \N \N \N \N +2352 214 id \N ir.msg_ID integer account_product f \N \N \N \N +2353 214 rec_name \N ir.msg_record_name char account_product f \N \N \N \N +2354 214 write_date \N ir.msg_edited_at timestamp account_product f \N \N \N \N +2355 214 write_uid res.user ir.msg_edited_by many2one account_product f \N \N \N \N +2356 215 category product.category Category many2one account_product f \N \N \N \N +2357 215 create_date \N ir.msg_created_at timestamp account_product f \N \N \N \N +2358 215 create_uid res.user ir.msg_created_by many2one account_product f \N \N \N \N +2359 215 id \N ir.msg_ID integer account_product f \N \N \N \N +2360 215 rec_name \N ir.msg_record_name char account_product f \N \N \N \N +2361 215 tax account.tax Tax many2one account_product t \N \N \N \N +2362 215 write_date \N ir.msg_edited_at timestamp account_product f \N \N \N \N +2363 215 write_uid res.user ir.msg_edited_by many2one account_product f \N \N \N \N +2364 216 category product.category Category many2one account_product f \N \N \N \N +2365 216 create_date \N ir.msg_created_at timestamp account_product f \N \N \N \N +2366 216 create_uid res.user ir.msg_created_by many2one account_product f \N \N \N \N +2367 216 id \N ir.msg_ID integer account_product f \N \N \N \N +2368 216 rec_name \N ir.msg_record_name char account_product f \N \N \N \N +2369 216 tax account.tax Tax many2one account_product t \N \N \N \N +2370 216 write_date \N ir.msg_edited_at timestamp account_product f \N \N \N \N +2371 216 write_uid res.user ir.msg_edited_by many2one account_product f \N \N \N \N +2372 146 category_account_expense account.account Default Expense Account many2one account_product f \N \N \N \N +2373 146 category_account_revenue account.account Default Revenue Account many2one account_product f \N \N \N \N +2374 204 account_category product.category Account Category many2one account_product f \N \N \N \N +2375 205 account_category product.category Account Category many2one account_product f \N \N \N \N +2376 217 category product.category Category many2one account_product f \N \N \N \N +2377 217 create_date \N ir.msg_created_at timestamp account_product f \N \N \N \N +2378 217 create_uid res.user ir.msg_created_by many2one account_product f \N \N \N \N +2379 217 id \N ir.msg_ID integer account_product f \N \N \N \N +2380 217 rec_name \N ir.msg_record_name char account_product f \N \N \N \N +2381 217 template product.template Template many2one account_product f \N \N \N \N +2382 217 write_date \N ir.msg_edited_at timestamp account_product f \N \N \N \N +2383 217 write_uid res.user ir.msg_edited_by many2one account_product f \N \N \N \N +2384 151 default_category_account_expense account.account Default Account Expense many2one account_product f \N \N \N \N +2385 151 default_category_account_revenue account.account Default Account Revenue many2one account_product f \N \N \N \N +2386 152 default_category_account_expense account.account Default Account Expense many2one account_product f \N \N \N \N +2387 152 default_category_account_revenue account.account Default Account Revenue many2one account_product f \N \N \N \N +2388 218 attributes product.attribute-product.attribute-set Attributes many2many Add attributes to the set. product_attribute f \N \N \N \N +2389 218 create_date \N ir.msg_created_at timestamp product_attribute f \N \N \N \N +2390 218 create_uid res.user ir.msg_created_by many2one product_attribute f \N \N \N \N +2391 218 id \N ir.msg_ID integer product_attribute f \N \N \N \N +2392 218 name \N Name char The main identifier of product attribute set. product_attribute f \N \N \N \N +2393 218 rec_name \N ir.msg_record_name char product_attribute f \N \N \N \N +2394 218 write_date \N ir.msg_edited_at timestamp product_attribute f \N \N \N \N +2395 218 write_uid res.user ir.msg_edited_by many2one product_attribute f \N \N \N \N +2396 219 create_date \N ir.msg_created_at timestamp product_attribute f \N \N \N \N +2397 219 create_uid res.user ir.msg_created_by many2one product_attribute f \N \N \N \N +2398 219 digits \N ir.msg_dict_schema_digits integer product_attribute f \N \N \N \N +2399 219 domain \N ir.msg_dict_schema_domain char product_attribute f \N \N \N \N +2401 219 help_selection \N ir.msg_dict_schema_help_selection text ir.msg_dict_schema_help_selection_help product_attribute f \N \N \N \N +2402 219 help_selection_json \N ir.msg_dict_schema_help_selection_json char product_attribute f \N \N \N \N +2403 219 id \N ir.msg_ID integer product_attribute f \N \N \N \N +2404 219 name \N ir.msg_dict_schema_name char product_attribute f \N \N \N \N +2405 219 rec_name \N ir.msg_record_name char product_attribute f \N \N \N \N +2406 219 selection \N ir.msg_dict_schema_selection text ir.msg_dict_schema_selection_help product_attribute f \N \N \N \N +2407 219 selection_json \N ir.msg_dict_schema_selection_json char product_attribute f \N \N \N \N +2408 219 selection_sorted \N ir.msg_dict_schema_selection_sorted boolean ir.msg_dict_schema_selection_sorted_help product_attribute f \N \N \N \N +2409 219 sets product.attribute-product.attribute-set Sets many2many Add sets to the attribute. product_attribute f \N \N \N \N +2410 219 string \N ir.msg_dict_schema_string char product_attribute f \N \N \N \N +2411 219 type_ \N ir.msg_dict_schema_type selection product_attribute f \N \N \N \N +2412 219 write_date \N ir.msg_edited_at timestamp product_attribute f \N \N \N \N +2413 219 write_uid res.user ir.msg_edited_by many2one product_attribute f \N \N \N \N +2414 220 attribute product.attribute Attribute many2one product_attribute f \N \N \N \N +2415 220 attribute_set product.attribute.set Set many2one product_attribute f \N \N \N \N +2416 220 create_date \N ir.msg_created_at timestamp product_attribute f \N \N \N \N +2417 220 create_uid res.user ir.msg_created_by many2one product_attribute f \N \N \N \N +2418 220 id \N ir.msg_ID integer product_attribute f \N \N \N \N +2419 220 rec_name \N ir.msg_record_name char product_attribute f \N \N \N \N +2420 220 write_date \N ir.msg_edited_at timestamp product_attribute f \N \N \N \N +2421 220 write_uid res.user ir.msg_edited_by many2one product_attribute f \N \N \N \N +2422 204 attribute_set product.attribute.set Attribute Set many2one Select a set of attributes to apply on the variants. product_attribute f \N \N \N \N +2423 205 attribute_set product.attribute.set Attribute Set many2one Select a set of attributes to apply on the variants. product_attribute f \N \N \N \N +2424 205 attributes \N Attributes dict Add attributes to the variant. product_attribute f \N \N \N \N +2425 205 attributes_name \N Attributes Name char product_attribute f \N \N \N \N +2426 204 image_url \N Image URL char product_image f \N \N \N \N +2427 204 images product.image Images one2many product_image f \N \N \N \N +2428 205 image_url \N Image URL char product_image f \N \N \N \N +2429 205 images product.image Images one2many product_image f \N \N \N \N +2430 221 cache product.image.cache Cache one2many product_image f \N \N \N \N +2431 221 create_date \N ir.msg_created_at timestamp product_image f \N \N \N \N +2432 221 create_uid res.user ir.msg_created_by many2one product_image f \N \N \N \N +2433 221 id \N ir.msg_ID integer product_image f \N \N \N \N +2434 221 image \N Image binary product_image f \N \N \N \N +2435 221 image_id \N Image ID char product_image f \N \N \N \N +2436 221 product product.product Variant many2one product_image t \N \N \N \N +2437 221 rec_name \N ir.msg_record_name char product_image f \N \N \N \N +2438 221 sequence \N ir.msg_sequence integer product_image f \N \N \N \N +2439 221 template product.template Product many2one product_image t \N \N \N \N +2440 221 write_date \N ir.msg_edited_at timestamp product_image f \N \N \N \N +2441 221 write_uid res.user ir.msg_edited_by many2one product_image f \N \N \N \N +2442 222 create_date \N ir.msg_created_at timestamp product_image f \N \N \N \N +2443 222 create_uid res.user ir.msg_created_by many2one product_image f \N \N \N \N +2444 222 id \N ir.msg_ID integer product_image f \N \N \N \N +2445 222 image \N Image binary product_image f \N \N \N \N +2446 222 image_id \N Image ID char product_image f \N \N \N \N +2447 222 product_image product.image Product Image many2one product_image f \N \N \N \N +2448 222 rec_name \N ir.msg_record_name char product_image f \N \N \N \N +2449 222 size \N Size integer product_image f \N \N \N \N +2450 222 write_date \N ir.msg_edited_at timestamp product_image f \N \N \N \N +2451 222 write_uid res.user ir.msg_edited_by many2one product_image f \N \N \N \N +2452 204 height \N Height float Height for 1 default unit of measure. product_measurements f \N \N \N \N +2453 204 height_uom product.uom Height UoM many2one The Unit of Measure for the height. product_measurements f \N \N \N \N +2454 204 length \N Length float Length for 1 default unit of measure. product_measurements f \N \N \N \N +2455 204 length_uom product.uom Length UoM many2one The Unit of Measure for the length. product_measurements f \N \N \N \N +2456 204 volume \N Volume float Volume for 1 default unit of measure. product_measurements f \N \N \N \N +2457 204 volume_uom product.uom Volume UoM many2one The Unit of Measure for the volume. product_measurements f \N \N \N \N +2458 204 weight \N Weight float Weight for 1 default unit of measure. product_measurements f \N \N \N \N +2459 204 weight_uom product.uom Weight UoM many2one The Unit of Measure for the weight. product_measurements f \N \N \N \N +2460 204 width \N Width float Width for 1 default unit of measure. product_measurements f \N \N \N \N +2461 204 width_uom product.uom Width UoM many2one The Unit of Measure for the width. product_measurements f \N \N \N \N +2462 205 height \N Height float Height for 1 default unit of measure. product_measurements f \N \N \N \N +2463 205 height_uom product.uom Height UoM many2one The Unit of Measure for the height. product_measurements f \N \N \N \N +2464 205 length \N Length float Length for 1 default unit of measure. product_measurements f \N \N \N \N +2465 205 length_uom product.uom Length UoM many2one The Unit of Measure for the length. product_measurements f \N \N \N \N +2466 205 volume \N Volume float Volume for 1 default unit of measure. product_measurements f \N \N \N \N +2467 205 volume_uom product.uom Volume UoM many2one The Unit of Measure for the volume. product_measurements f \N \N \N \N +2468 205 weight \N Weight float Weight for 1 default unit of measure. product_measurements f \N \N \N \N +2469 205 weight_uom product.uom Weight UoM many2one The Unit of Measure for the weight. product_measurements f \N \N \N \N +2470 205 width \N Width float Width for 1 default unit of measure. product_measurements f \N \N \N \N +2471 205 width_uom product.uom Width UoM many2one The Unit of Measure for the width. product_measurements f \N \N \N \N +2472 223 active \N ir.msg_active boolean ir.msg_active_help stock f \N \N \N \N +2473 223 address party.address Address many2one stock f \N \N \N \N +2474 223 allow_pickup \N Allow Pickup boolean stock f \N \N \N \N +2475 223 childs stock.location Children one2many Used to add structure below the location. stock f \N \N \N \N +2476 223 code \N Code char The internal identifier used for the location. stock f \N \N \N \N +2477 223 cost_value \N Cost Value numeric The value of the stock in the location. stock f \N \N \N \N +2478 223 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2479 223 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2480 223 flat_childs \N Flat Children boolean Check to enforce a single level of children with no grandchildren. stock f \N \N \N \N +2481 223 forecast_quantity \N Forecast Quantity float The amount of stock expected to be in the location. stock f \N \N \N \N +2482 223 id \N ir.msg_ID integer stock f \N \N \N \N +2483 223 input_location stock.location Input many2one Where incoming stock is received. stock f \N \N \N \N +2484 223 left \N Left integer stock f \N \N \N \N +2485 223 lost_found_location stock.location Lost and Found many2one Used, by inventories, when correcting stock levels in the warehouse. stock f \N \N \N \N +2486 223 name \N Name char stock f \N \N \N \N +2487 223 output_location stock.location Output many2one Where outgoing stock is sent from. stock f \N \N \N \N +2488 223 parent stock.location Parent many2one Used to add structure above the location. stock f \N \N \N \N +2489 223 picking_location stock.location Picking many2one Where stock is picked from.\nLeave empty to use the storage location. stock f \N \N \N \N +2490 223 quantity \N Quantity float The amount of stock in the location. stock f \N \N \N \N +2491 223 quantity_uom product.uom Quantity UoM many2one The Unit of Measure for the quantities. stock f \N \N \N \N +2492 223 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2493 223 right \N Right integer stock f \N \N \N \N +2494 223 storage_location stock.location Storage many2one The top level location where stock is stored. stock f \N \N \N \N +2495 223 type \N Type selection stock f \N \N \N \N +2496 223 warehouse stock.location Warehouse many2one stock f \N \N \N \N +2497 223 waste_locations stock.location.waste Waste Locations many2many The locations used for waste products from the warehouse. stock f \N \N \N \N +2498 223 waste_warehouses stock.location.waste Waste Warehouses many2many The warehouses that use the location for waste products. stock f \N \N \N \N +2499 223 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2500 223 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2501 224 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2502 224 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2503 224 id \N ir.msg_ID integer stock f \N \N \N \N +2504 224 location stock.location Waste Location many2one stock f \N \N \N \N +2505 224 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2506 224 warehouse stock.location Warehouse many2one stock f \N \N \N \N +2507 224 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2508 224 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2509 225 company company.company Company many2one stock f \N \N \N \N +2510 225 forecast_date \N At Date date The date for which the stock quantity is calculated.\n* An empty value calculates as far ahead as possible.\n* A date in the past will provide historical values. stock f \N \N \N \N +2511 225 id \N ir.msg_ID integer stock f \N \N \N \N +2512 225 stock_date_end \N At Date date stock f \N \N \N \N +2513 226 active \N ir.msg_active boolean ir.msg_active_help stock f \N \N \N \N +2514 226 consumable \N Consumable boolean stock f \N \N \N \N +2515 226 cost_value \N Cost Value numeric stock f \N \N \N \N +2516 226 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2517 226 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2518 226 default_uom product.uom Default UoM many2one The default Unit of Measure. stock f \N \N \N \N +2519 226 forecast_quantity \N Forecast Quantity float stock f \N \N \N \N +2520 226 id \N ir.msg_ID integer stock f \N \N \N \N +2521 226 product product.product Product many2one stock f \N \N \N \N +2522 226 quantity \N Quantity float stock f \N \N \N \N +2523 226 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2524 226 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2525 226 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2526 227 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2527 227 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2528 227 id \N ir.msg_ID integer stock f \N \N \N \N +2529 227 lead_time \N Lead Time timedelta The time it takes to move stock between the warehouses. stock f \N \N \N \N +2530 227 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2531 227 sequence \N ir.msg_sequence integer stock f \N \N \N \N +2532 227 warehouse_from stock.location Warehouse From many2one stock f \N \N \N \N +2533 227 warehouse_to stock.location Warehouse To many2one stock f \N \N \N \N +2534 227 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2535 227 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2536 228 assignation_required \N Assignation Required boolean stock f \N \N \N \N +2537 228 company company.company Company many2one The company the stock move is associated with. stock f \N \N \N \N +2538 228 cost_price \N Cost Price numeric stock f \N \N \N \N +2539 228 cost_price_required \N Cost Price Required boolean stock f \N \N \N \N +2540 228 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2541 228 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2542 228 currency currency.currency Currency many2one The currency in which the unit price is specified. stock f \N \N \N \N +2543 228 delay \N Delay timedelta stock f \N \N \N \N +2544 228 effective_date \N Effective Date date When the stock was actually moved. stock f \N \N \N \N +2545 228 from_location stock.location From Location many2one Where the stock is moved from. stock f \N \N \N \N +2546 228 id \N ir.msg_ID integer stock f \N \N \N \N +2547 228 internal_quantity \N Internal Quantity float stock f \N \N \N \N +2548 228 origin \N Origin reference The source of the stock move. stock f \N \N \N \N +2549 228 origin_planned_date \N Origin Planned Date date When the stock was expected to be moved originally. stock f \N \N \N \N +2550 228 planned_date \N Planned Date date When the stock is expected to be moved. stock f \N \N \N \N +2551 228 product product.product Product many2one The product that the move is associated with. stock f \N \N \N \N +2552 228 product_cost_price \N Product Cost Price numeric The cost price of the product when different from the cost price of the move. stock f \N \N \N \N +2553 228 product_uom_category product.uom.category Product UoM Category many2one The category of Unit of Measure for the product. stock f \N \N \N \N +2554 228 quantity \N Quantity float The amount of stock moved. stock f \N \N \N \N +2555 228 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2556 228 shipment \N Shipment reference Used to group several stock moves together. stock f \N \N \N \N +2557 228 state \N State selection The current state of the stock move. stock f \N \N \N \N +2558 228 to_location stock.location To Location many2one Where the stock is moved to. stock f \N \N \N \N +2559 228 unit product.uom Unit many2one The unit in which the quantity is specified. stock f \N \N \N \N +2560 228 unit_price \N Unit Price numeric stock f \N \N \N \N +2561 228 unit_price_company \N Unit Price numeric Unit price in company currency. stock f \N \N \N \N +2562 228 unit_price_required \N Unit Price Required boolean stock f \N \N \N \N +2563 228 unit_price_updated \N Unit Price Updated boolean stock f \N \N \N \N +2564 228 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2565 228 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2566 229 company company.company Company many2one The company the shipment is associated with. stock f \N \N \N \N +2567 229 contact_address party.address Contact Address many2one The address at which the supplier can be contacted. stock f \N \N \N \N +2568 229 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2569 229 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2570 229 delay \N stock.msg_shipment_delay timedelta stock f \N \N \N \N +2571 229 done_by company.employee Done By many2one stock f \N \N \N \N +2572 229 effective_date \N stock.msg_shipment_effective_date date stock.msg_shipment_effective_date_help stock f \N \N \N \N +2573 229 id \N ir.msg_ID integer stock f \N \N \N \N +2574 229 incoming_moves stock.move Incoming Moves one2many The moves that bring the stock into the warehouse. stock f \N \N \N \N +2575 229 inventory_moves stock.move Inventory Moves one2many The moves that put the stock away into the storage area. stock f \N \N \N \N +2576 229 moves stock.move Moves one2many stock f \N \N \N \N +2577 229 number \N Number char The main identifier for the shipment. stock f \N \N \N \N +2578 229 origin_planned_date \N stock.msg_shipment_origin_planned_date date stock.msg_shipment_origin_planned_date_help stock f \N \N \N \N +2579 229 origins \N Origins char stock f \N \N \N \N +2580 229 planned_date \N stock.msg_shipment_planned_date date stock.msg_shipment_planned_date_help stock f \N \N \N \N +2581 229 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2582 229 received_by company.employee Received By many2one stock f \N \N \N \N +2583 229 reference \N Reference char The external identifier for the shipment. stock f \N \N \N \N +2584 229 state \N State selection The current state of the shipment. stock f \N \N \N \N +2585 229 supplier party.party Supplier many2one The party that supplied the stock. stock f \N \N \N \N +2586 229 supplier_location stock.location Supplier Location many2one stock f \N \N \N \N +2587 229 warehouse stock.location Warehouse many2one Where the stock is received. stock f \N \N \N \N +2588 229 warehouse_input stock.location Warehouse Input many2one stock f \N \N \N \N +2589 229 warehouse_storage stock.location Warehouse Storage many2one stock f \N \N \N \N +2590 229 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2591 229 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2592 230 assigned_by company.employee Assigned By many2one stock f \N \N \N \N +2593 230 company company.company Company many2one The company the shipment is associated with. stock f \N \N \N \N +2594 230 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2595 230 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2596 230 delay \N stock.msg_shipment_delay timedelta stock f \N \N \N \N +2597 230 delivery_address party.address Delivery Address many2one Where the stock is sent to. stock f \N \N \N \N +2598 230 done_by company.employee Done By many2one stock f \N \N \N \N +2599 230 effective_date \N stock.msg_shipment_effective_date date stock.msg_shipment_effective_date_help stock f \N \N \N \N +2600 230 from_location stock.location From Location many2one Where the stock is moved from. stock f \N \N \N \N +2601 230 id \N ir.msg_ID integer stock f \N \N \N \N +2602 230 moves stock.move Moves one2many The moves that return the stock to the supplier. stock f \N \N \N \N +2603 230 number \N Number char The main identifier for the shipment. stock f \N \N \N \N +2604 230 origin_planned_date \N stock.msg_shipment_origin_planned_date date stock.msg_shipment_origin_planned_date_help stock f \N \N \N \N +2605 230 origins \N Origins char stock f \N \N \N \N +2606 230 partially_assigned \N Partially Assigned boolean stock f \N \N \N \N +2607 230 planned_date \N stock.msg_shipment_planned_date date stock.msg_shipment_planned_date_help stock f \N \N \N \N +2608 230 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2609 230 reference \N Reference char The external identifier for the shipment. stock f \N \N \N \N +2610 230 state \N State selection The current state of the shipment. stock f \N \N \N \N +2611 230 supplier party.party Supplier many2one The party that supplied the stock. stock f \N \N \N \N +2612 230 to_location stock.location To Location many2one Where the stock is moved to. stock f \N \N \N \N +2613 230 warehouse stock.location Warehouse many2one stock f \N \N \N \N +2614 230 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2615 230 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2616 231 company company.company Company many2one The company the shipment is associated with. stock f \N \N \N \N +2617 231 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2618 231 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2619 231 customer party.party Customer many2one The party that purchased the stock. stock f \N \N \N \N +2620 231 customer_location stock.location Customer Location many2one stock f \N \N \N \N +2621 231 delay \N stock.msg_shipment_delay timedelta stock f \N \N \N \N +2622 231 delivery_address party.address Delivery Address many2one Where the stock is sent to. stock f \N \N \N \N +2623 231 done_by company.employee Done By many2one stock f \N \N \N \N +2624 231 effective_date \N stock.msg_shipment_effective_date date stock.msg_shipment_effective_date_help stock f \N \N \N \N +2625 231 id \N ir.msg_ID integer stock f \N \N \N \N +2626 231 inventory_moves stock.move Inventory Moves one2many The moves that pick the stock from the storage area. stock f \N \N \N \N +2627 231 moves stock.move Moves one2many stock f \N \N \N \N +2628 231 number \N Number char The main identifier for the shipment. stock f \N \N \N \N +2629 231 origin_planned_date \N stock.msg_shipment_origin_planned_date date stock.msg_shipment_origin_planned_date_help stock f \N \N \N \N +2630 231 origins \N Origins char stock f \N \N \N \N +2631 231 outgoing_moves stock.move Outgoing Moves one2many The moves that send the stock to the customer. stock f \N \N \N \N +2632 231 packed_by company.employee Packed By many2one stock f \N \N \N \N +2633 231 partially_assigned \N Partially Assigned boolean stock f \N \N \N \N +2634 231 picked_by company.employee Picked By many2one stock f \N \N \N \N +2635 231 planned_date \N stock.msg_shipment_planned_date date stock.msg_shipment_planned_date_help stock f \N \N \N \N +2636 231 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2637 231 reference \N Reference char The external identifier for the shipment. stock f \N \N \N \N +2638 231 state \N State selection The current state of the shipment. stock f \N \N \N \N +2639 231 warehouse stock.location Warehouse many2one Where the stock is sent from. stock f \N \N \N \N +2640 231 warehouse_output stock.location Warehouse Output many2one stock f \N \N \N \N +2641 231 warehouse_storage stock.location Warehouse Storage many2one stock f \N \N \N \N +2642 231 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2643 231 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2644 232 company company.company Company many2one The company the shipment is associated with. stock f \N \N \N \N +2645 232 contact_address party.address Contact Address many2one The address the customer can be contacted at. stock f \N \N \N \N +2646 232 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2647 232 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2648 232 customer party.party Customer many2one The party that purchased the stock. stock f \N \N \N \N +2649 232 customer_location stock.location Customer Location many2one stock f \N \N \N \N +2650 232 delay \N stock.msg_shipment_delay timedelta stock f \N \N \N \N +2651 232 done_by company.employee Done By many2one stock f \N \N \N \N +2652 232 effective_date \N stock.msg_shipment_effective_date date stock.msg_shipment_effective_date_help stock f \N \N \N \N +2653 232 id \N ir.msg_ID integer stock f \N \N \N \N +2654 232 incoming_moves stock.move Incoming Moves one2many The moves that bring the stock into the warehouse. stock f \N \N \N \N +2655 232 inventory_moves stock.move Inventory Moves one2many The moves that put the stock away into the storage area. stock f \N \N \N \N +2656 232 moves stock.move Moves one2many stock f \N \N \N \N +2657 232 number \N Number char The main identifier for the shipment. stock f \N \N \N \N +2658 232 origin_planned_date \N stock.msg_shipment_origin_planned_date date stock.msg_shipment_origin_planned_date_help stock f \N \N \N \N +2659 232 origins \N Origins char stock f \N \N \N \N +2660 232 planned_date \N stock.msg_shipment_planned_date date stock.msg_shipment_planned_date_help stock f \N \N \N \N +2661 232 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2662 232 received_by company.employee Received By many2one stock f \N \N \N \N +2663 232 reference \N Reference char The external identifier for the shipment. stock f \N \N \N \N +2664 232 state \N State selection The current state of the shipment. stock f \N \N \N \N +2665 232 warehouse stock.location Warehouse many2one Where the stock is returned. stock f \N \N \N \N +2666 232 warehouse_input stock.location Warehouse Input many2one stock f \N \N \N \N +2667 232 warehouse_storage stock.location Warehouse Storage many2one stock f \N \N \N \N +2668 232 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2669 232 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2670 233 assigned_by company.employee Received By many2one stock f \N \N \N \N +2671 233 company company.company Company many2one The company the shipment is associated with. stock f \N \N \N \N +2672 233 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2673 233 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2674 233 delay \N stock.msg_shipment_delay timedelta stock f \N \N \N \N +2675 233 done_by company.employee Done By many2one stock f \N \N \N \N +2676 233 effective_date \N stock.msg_shipment_effective_date date stock.msg_shipment_effective_date_help stock f \N \N \N \N +2677 233 effective_start_date \N Effective Start Date date When the stock was actually sent. stock f \N \N \N \N +2678 233 from_location stock.location From Location many2one Where the stock is moved from. stock f \N \N \N \N +2679 233 id \N ir.msg_ID integer stock f \N \N \N \N +2680 233 incoming_moves stock.move Incoming Moves one2many The moves that receive the stock in. stock f \N \N \N \N +2681 233 moves stock.move Moves one2many The moves that perform the shipment. stock f \N \N \N \N +2682 233 number \N Number char The main identifier for the shipment. stock f \N \N \N \N +2683 233 origin_planned_date \N stock.msg_shipment_origin_planned_date date stock.msg_shipment_origin_planned_date_help stock f \N \N \N \N +2684 233 outgoing_moves stock.move Outgoing Moves one2many The moves that send the stock out. stock f \N \N \N \N +2685 233 partially_assigned \N Partially Assigned boolean stock f \N \N \N \N +2686 233 planned_date \N stock.msg_shipment_planned_date date stock.msg_shipment_planned_date_help stock f \N \N \N \N +2687 233 planned_start_date \N Planned Start Date date When the stock is expected to be sent. stock f \N \N \N \N +2688 233 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2689 233 reference \N Reference char The external identifier for the shipment. stock f \N \N \N \N +2690 233 shipped_by company.employee Shipped By many2one stock f \N \N \N \N +2691 233 state \N State selection The current state of the shipment. stock f \N \N \N \N +2692 233 to_location stock.location To Location many2one Where the stock is moved to. stock f \N \N \N \N +2693 233 transit_location stock.location Transit Location many2one Where the stock is located while it is in transit between the warehouses. stock f \N \N \N \N +2694 233 warehouse stock.location Warehouse many2one Where the stock is sent from. stock f \N \N \N \N +2695 233 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2696 233 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2697 234 id \N ir.msg_ID integer stock f \N \N \N \N +2698 234 moves stock.move Moves many2many The moves that were not assigned. stock f \N \N \N \N +2699 104 customer_location stock.location Customer Location many2one The default destination location for stock sent to the party. stock f \N \N \N \N +2700 104 delivered_to_warehouses party.party-delivered_to-stock.location Delivered to Warehouses many2many stock f \N \N \N \N +2701 104 locations party.party.location Locations one2many stock f \N \N \N \N +2702 104 supplier_location stock.location Supplier Location many2one The default source location for stock received from the party. stock f \N \N \N \N +2703 235 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2704 235 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2705 235 customer_location stock.location Customer Location many2one The default destination location for stock sent to the party. stock f \N \N \N \N +2706 235 id \N ir.msg_ID integer stock f \N \N \N \N +2707 235 party party.party Party many2one stock f \N \N \N \N +2708 235 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2709 235 supplier_location stock.location Supplier Location many2one The default source location for stock received from the party. stock f \N \N \N \N +2710 235 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2711 235 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2712 236 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2713 236 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2714 236 id \N ir.msg_ID integer stock f \N \N \N \N +2715 236 location stock.location Location many2one stock f \N \N \N \N +2716 236 party party.party Party many2one stock f \N \N \N \N +2717 236 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2718 236 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2719 236 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2720 111 delivery \N Delivery boolean Check to send deliveries to the address. stock f \N \N \N \N +2721 111 warehouses stock.location Warehouses one2many stock f \N \N \N \N +2722 114 delivery \N Delivery boolean Check to use for delivery. stock f \N \N \N \N +2723 237 caches stock.period.cache Caches one2many stock f \N \N \N \N +2724 237 company company.company Company many2one The company the stock period is associated with. stock f \N \N \N \N +2725 237 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2726 237 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2727 237 date \N Date date When the stock period ends. stock f \N \N \N \N +2728 237 id \N ir.msg_ID integer stock f \N \N \N \N +2729 237 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2730 237 state \N State selection The current state of the stock period. stock f \N \N \N \N +2731 237 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2732 237 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2733 238 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2734 238 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2735 238 id \N ir.msg_ID integer stock f \N \N \N \N +2736 238 internal_quantity \N Internal Quantity float stock f \N \N \N \N +2737 238 location stock.location Location many2one stock f \N \N \N \N +2738 238 period stock.period Period many2one stock f \N \N \N \N +2739 238 product product.product Product many2one stock f \N \N \N \N +2740 238 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2741 238 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2742 238 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2743 204 cost_value \N Cost Value numeric The value of the stock in the location. stock f \N \N \N \N +2744 204 forecast_quantity \N Forecast Quantity float The amount of stock expected to be in the location. stock f \N \N \N \N +2745 204 quantity \N Quantity float The amount of stock in the location. stock f \N \N \N \N +2746 205 cost_value \N Cost Value numeric The value of the stock in the location. stock f \N \N \N \N +2747 205 forecast_quantity \N Forecast Quantity float The amount of stock expected to be in the location. stock f \N \N \N \N +2748 205 quantity \N Quantity float The amount of stock in the location. stock f \N \N \N \N +2749 239 company company.company Company many2one stock f \N \N \N \N +2750 239 forecast_date \N At Date date The date for which the stock quantity is calculated.\n* An empty value calculates as far ahead as possible.\n* A date in the past will provide historical values. stock f \N \N \N \N +2751 239 id \N ir.msg_ID integer stock f \N \N \N \N +2752 239 stock_date_end \N At Date date stock f \N \N \N \N +2753 240 company company.company Company many2one stock f \N \N \N \N +2754 240 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2755 240 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2756 240 date \N Date date stock f \N \N \N \N +2757 240 id \N ir.msg_ID integer stock f \N \N \N \N +2758 240 product \N Product reference stock f \N \N \N \N +2759 240 quantity \N Quantity float stock f \N \N \N \N +2760 240 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2761 240 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2762 240 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2763 241 company company.company Company many2one stock f \N \N \N \N +2764 241 id \N ir.msg_ID integer stock f \N \N \N \N +2765 241 stock_skip_warehouse \N Only storage zone boolean Check to use only the quantity of the storage zone. stock f \N \N \N \N +2766 241 warehouse stock.location Warehouse many2one The warehouse for which the quantities will be calculated. stock f \N \N \N \N +2767 242 company company.company Company many2one stock f \N \N \N \N +2768 242 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2769 242 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2770 242 cumulative_quantity_delta \N Cumulative Quantity Delta float stock f \N \N \N \N +2771 242 cumulative_quantity_end \N Cumulative Quantity End float stock f \N \N \N \N +2772 242 cumulative_quantity_start \N Cumulative Quantity Start float stock f \N \N \N \N +2773 242 date \N Date date stock f \N \N \N \N +2774 242 document \N Document reference stock f \N \N \N \N +2775 242 id \N ir.msg_ID integer stock f \N \N \N \N +2776 242 move stock.move Move many2one stock f \N \N \N \N +2777 242 origin \N Origin reference stock f \N \N \N \N +2778 242 product \N Product reference stock f \N \N \N \N +2779 242 quantity \N Quantity float stock f \N \N \N \N +2780 242 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2781 242 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2782 242 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2783 243 from_ \N From date stock f \N \N \N \N +2784 243 id \N ir.msg_ID integer stock f \N \N \N \N +2785 244 company company.company Company many2one stock f \N \N \N \N +2786 244 cost_price \N New Cost Price char Python expression that will be evaluated with:\n- cost_price: the current cost price of the product stock f \N \N \N \N +2787 244 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2788 244 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2789 244 date \N Date date stock f \N \N \N \N +2790 244 id \N ir.msg_ID integer stock f \N \N \N \N +2791 244 product product.product Variant many2one stock f \N \N \N \N +2792 244 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2793 244 template product.template Product many2one stock f \N \N \N \N +2794 244 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2795 244 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2796 245 cost_price \N New Cost Price char Python expression that will be evaluated with:\n- cost_price: the current cost price of the product stock f \N \N \N \N +2797 245 date \N Date date stock f \N \N \N \N +2798 245 id \N ir.msg_ID integer stock f \N \N \N \N +2799 246 company company.company Company many2one The company the inventory is associated with. stock f \N \N \N \N +2800 246 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2801 246 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2802 246 date \N Date date The date of the stock count. stock f \N \N \N \N +2803 246 empty_quantity \N Empty Quantity selection How lines without a quantity are handled. stock f \N \N \N \N +2804 246 id \N ir.msg_ID integer stock f \N \N \N \N +2805 246 lines stock.inventory.line Lines one2many stock f \N \N \N \N +2806 246 location stock.location Location many2one The location inventoried. stock f \N \N \N \N +2807 246 number \N Number char The main identifier for the inventory. stock f \N \N \N \N +2808 246 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2809 246 state \N State selection The current state of the inventory. stock f \N \N \N \N +2810 246 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2811 246 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2812 247 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2813 247 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2814 247 expected_quantity \N Expected Quantity float The quantity the system calculated should be in the location. stock f \N \N \N \N +2815 247 id \N ir.msg_ID integer stock f \N \N \N \N +2816 247 inventory stock.inventory Inventory many2one The inventory the line belongs to. stock t \N \N \N \N +2817 247 inventory_date \N Date date stock f \N \N \N \N +2818 247 inventory_location stock.location Location many2one stock f \N \N \N \N +2819 247 inventory_state \N Inventory State selection stock f \N \N \N \N +2820 247 moves stock.move Moves one2many stock f \N \N \N \N +2821 247 product product.product Product many2one stock f \N \N \N \N +2822 247 quantity \N Actual Quantity float The actual quantity found in the location. stock f \N \N \N \N +2823 247 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2824 247 unit product.uom Unit many2one The unit in which the quantity is specified. stock f \N \N \N \N +2825 247 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2826 247 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2827 248 id \N ir.msg_ID integer stock f \N \N \N \N +2828 248 search \N Search reference The item that's counted. stock f \N \N \N \N +2829 249 id \N ir.msg_ID integer stock f \N \N \N \N +2830 249 line stock.inventory.line Line many2one stock f \N \N \N \N +2831 249 product product.product Product many2one stock f \N \N \N \N +2832 249 quantity \N Quantity float The quantity to add to the existing count. stock f \N \N \N \N +2833 249 total_quantity \N Total Quantity float The total amount of the line counted so far. stock f \N \N \N \N +2834 249 unit product.uom Unit many2one The unit in which the quantities are specified. stock f \N \N \N \N +2835 250 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2836 250 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2837 250 id \N ir.msg_ID integer stock f \N \N \N \N +2838 250 inventory_sequence ir.sequence Inventory Sequence many2one Used to generate the number given to inventories. stock f \N \N \N \N +2839 250 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2840 250 shipment_in_return_sequence ir.sequence Supplier Return Shipment Sequence many2one Used to generate the number given to supplier return shipments. stock f \N \N \N \N +2841 250 shipment_in_sequence ir.sequence Supplier Shipment Sequence many2one Used to generate the number given to supplier shipments. stock f \N \N \N \N +2842 250 shipment_internal_sequence ir.sequence Internal Shipment Sequence many2one Used to generate the number given to internal shipments. stock f \N \N \N \N +2843 250 shipment_internal_transit stock.location Internal Shipment Transit many2one The default location used for stock that is in transit between warehouses. stock f \N \N \N \N +2844 250 shipment_out_return_sequence ir.sequence Customer Return Shipment Sequence many2one Used to generate the number given to customer return shipments. stock f \N \N \N \N +2845 250 shipment_out_sequence ir.sequence Customer Shipment Sequence many2one Used to generate the number given to customer shipments. stock f \N \N \N \N +2846 250 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2847 250 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2848 251 company company.company Company many2one stock f \N \N \N \N +2849 251 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2850 251 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2851 251 id \N ir.msg_ID integer stock f \N \N \N \N +2852 251 inventory_sequence ir.sequence Inventory Sequence many2one stock f \N \N \N \N +2853 251 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2854 251 shipment_in_return_sequence ir.sequence Supplier Return Shipment Sequence many2one stock f \N \N \N \N +2855 251 shipment_in_sequence ir.sequence Supplier Shipment Sequence many2one stock f \N \N \N \N +2856 251 shipment_internal_sequence ir.sequence Internal Shipment Sequence many2one stock f \N \N \N \N +2857 251 shipment_out_return_sequence ir.sequence Customer Return Shipment Sequence many2one stock f \N \N \N \N +2858 251 shipment_out_sequence ir.sequence Customer Shipment Sequence many2one stock f \N \N \N \N +2859 251 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2860 251 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2861 252 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2862 252 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2863 252 id \N ir.msg_ID integer stock f \N \N \N \N +2864 252 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2865 252 shipment_internal_transit stock.location Internal Shipment Transit many2one The default location used for stock that is in transit between warehouses. stock f \N \N \N \N +2866 252 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2867 252 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2868 78 warehouse stock.location Current Warehouse many2one The warehouse that the user works at. stock f \N \N \N \N +2869 253 company company.company Company many2one stock f \N \N \N \N +2870 253 from_date \N From Date date stock f \N \N \N \N +2871 253 id \N ir.msg_ID integer stock f \N \N \N \N +2872 253 include_lost \N Include Lost boolean If checked, the cost of product moved to a lost and found location is included. stock f \N \N \N \N +2873 253 period \N Period selection stock f \N \N \N \N +2874 253 to_date \N To Date date stock f \N \N \N \N +2875 254 company company.company stock.msg_stock_reporting_company many2one stock f \N \N \N \N +2876 254 cost \N stock.msg_stock_reporting_cost numeric stock f \N \N \N \N +2877 254 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2878 254 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2879 254 currency currency.currency stock.msg_stock_reporting_currency many2one stock f \N \N \N \N +2880 254 id \N ir.msg_ID integer stock f \N \N \N \N +2881 254 margin \N stock.msg_stock_reporting_margin numeric stock f \N \N \N \N +2882 254 margin_trend \N stock.msg_stock_reporting_margin_trend char stock f \N \N \N \N +2883 254 profit \N stock.msg_stock_reporting_profit numeric stock f \N \N \N \N +2884 254 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2885 254 revenue \N stock.msg_stock_reporting_revenue numeric stock f \N \N \N \N +2886 254 time_series stock.reporting.margin.main.time_series Time Series one2many stock f \N \N \N \N +2887 254 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2888 254 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2889 255 company company.company stock.msg_stock_reporting_company many2one stock f \N \N \N \N +2890 255 cost \N stock.msg_stock_reporting_cost numeric stock f \N \N \N \N +2891 255 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2892 255 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2893 255 currency currency.currency stock.msg_stock_reporting_currency many2one stock f \N \N \N \N +2894 255 date \N Date date stock f \N \N \N \N +2895 255 id \N ir.msg_ID integer stock f \N \N \N \N +2896 255 margin \N stock.msg_stock_reporting_margin numeric stock f \N \N \N \N +2897 255 margin_trend \N stock.msg_stock_reporting_margin_trend char stock f \N \N \N \N +2898 255 profit \N stock.msg_stock_reporting_profit numeric stock f \N \N \N \N +2899 255 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2900 255 revenue \N stock.msg_stock_reporting_revenue numeric stock f \N \N \N \N +2901 255 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2902 255 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2903 256 company company.company stock.msg_stock_reporting_company many2one stock f \N \N \N \N +2904 256 cost \N stock.msg_stock_reporting_cost numeric stock f \N \N \N \N +2905 256 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2906 256 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2907 256 currency currency.currency stock.msg_stock_reporting_currency many2one stock f \N \N \N \N +2908 256 id \N ir.msg_ID integer stock f \N \N \N \N +2909 256 internal_quantity \N Internal Quantity float stock f \N \N \N \N +2910 256 margin \N stock.msg_stock_reporting_margin numeric stock f \N \N \N \N +2911 256 margin_trend \N stock.msg_stock_reporting_margin_trend char stock f \N \N \N \N +2912 256 product product.product Product many2one stock f \N \N \N \N +2913 256 profit \N stock.msg_stock_reporting_profit numeric stock f \N \N \N \N +2914 256 quantity \N Quantity float stock f \N \N \N \N +2915 256 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2916 256 revenue \N stock.msg_stock_reporting_revenue numeric stock f \N \N \N \N +2917 256 time_series stock.reporting.margin.product.time_series Time Series one2many stock f \N \N \N \N +2918 256 unit product.uom Unit many2one stock f \N \N \N \N +2919 256 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2920 256 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2921 257 company company.company stock.msg_stock_reporting_company many2one stock f \N \N \N \N +2922 257 cost \N stock.msg_stock_reporting_cost numeric stock f \N \N \N \N +2923 257 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2924 257 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2925 257 currency currency.currency stock.msg_stock_reporting_currency many2one stock f \N \N \N \N +2926 257 date \N Date date stock f \N \N \N \N +2927 257 id \N ir.msg_ID integer stock f \N \N \N \N +2928 257 internal_quantity \N Internal Quantity float stock f \N \N \N \N +2929 257 margin \N stock.msg_stock_reporting_margin numeric stock f \N \N \N \N +2930 257 margin_trend \N stock.msg_stock_reporting_margin_trend char stock f \N \N \N \N +2931 257 product product.product Product many2one stock f \N \N \N \N +2932 257 profit \N stock.msg_stock_reporting_profit numeric stock f \N \N \N \N +2933 257 quantity \N Quantity float stock f \N \N \N \N +2934 257 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2935 257 revenue \N stock.msg_stock_reporting_revenue numeric stock f \N \N \N \N +2936 257 unit product.uom Unit many2one stock f \N \N \N \N +2937 257 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2938 257 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2939 258 category product.category Category many2one stock f \N \N \N \N +2940 258 company company.company stock.msg_stock_reporting_company many2one stock f \N \N \N \N +2941 258 cost \N stock.msg_stock_reporting_cost numeric stock f \N \N \N \N +2942 258 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2943 258 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2944 258 currency currency.currency stock.msg_stock_reporting_currency many2one stock f \N \N \N \N +2945 258 id \N ir.msg_ID integer stock f \N \N \N \N +2946 258 margin \N stock.msg_stock_reporting_margin numeric stock f \N \N \N \N +2947 258 margin_trend \N stock.msg_stock_reporting_margin_trend char stock f \N \N \N \N +2948 258 profit \N stock.msg_stock_reporting_profit numeric stock f \N \N \N \N +2949 258 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2950 258 revenue \N stock.msg_stock_reporting_revenue numeric stock f \N \N \N \N +2951 258 time_series stock.reporting.margin.category.time_series Time Series one2many stock f \N \N \N \N +2952 258 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2953 258 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2954 259 category product.category Category many2one stock f \N \N \N \N +2955 259 company company.company stock.msg_stock_reporting_company many2one stock f \N \N \N \N +2956 259 cost \N stock.msg_stock_reporting_cost numeric stock f \N \N \N \N +2957 259 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2958 259 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2959 259 currency currency.currency stock.msg_stock_reporting_currency many2one stock f \N \N \N \N +2960 259 date \N Date date stock f \N \N \N \N +2961 259 id \N ir.msg_ID integer stock f \N \N \N \N +2962 259 margin \N stock.msg_stock_reporting_margin numeric stock f \N \N \N \N +2963 259 margin_trend \N stock.msg_stock_reporting_margin_trend char stock f \N \N \N \N +2964 259 profit \N stock.msg_stock_reporting_profit numeric stock f \N \N \N \N +2965 259 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2966 259 revenue \N stock.msg_stock_reporting_revenue numeric stock f \N \N \N \N +2967 259 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2968 259 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2969 260 children stock.reporting.margin.category.tree Children one2many stock f \N \N \N \N +2970 260 cost \N stock.msg_stock_reporting_cost numeric stock f \N \N \N \N +2971 260 create_date \N ir.msg_created_at timestamp stock f \N \N \N \N +2972 260 create_uid res.user ir.msg_created_by many2one stock f \N \N \N \N +2973 260 currency currency.currency stock.msg_stock_reporting_currency many2one stock f \N \N \N \N +2974 260 id \N ir.msg_ID integer stock f \N \N \N \N +2975 260 margin \N stock.msg_stock_reporting_margin numeric stock f \N \N \N \N +2976 260 name \N Name char stock f \N \N \N \N +2977 260 parent stock.reporting.margin.category.tree Parent many2one stock f \N \N \N \N +2978 260 profit \N stock.msg_stock_reporting_profit numeric stock f \N \N \N \N +2979 260 rec_name \N ir.msg_record_name char stock f \N \N \N \N +2980 260 revenue \N stock.msg_stock_reporting_revenue numeric stock f \N \N \N \N +2981 260 write_date \N ir.msg_edited_at timestamp stock f \N \N \N \N +2982 260 write_uid res.user ir.msg_edited_by many2one stock f \N \N \N \N +2983 261 active \N ir.msg_active boolean ir.msg_active_help account_invoice f \N \N \N \N +2984 261 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +2985 261 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +2986 261 description \N Description text account_invoice f \N \N \N \N +2987 261 id \N ir.msg_ID integer account_invoice f \N \N \N \N +2988 261 lines account.invoice.payment_term.line Lines one2many account_invoice f \N \N \N \N +2989 261 name \N Name char account_invoice f \N \N \N \N +2990 261 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +2991 261 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +2992 261 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +2993 262 amount \N Amount numeric account_invoice f \N \N \N \N +2994 262 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +2995 262 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +2996 262 currency currency.currency Currency many2one account_invoice f \N \N \N \N +2997 262 divisor \N Divisor numeric account_invoice f \N \N \N \N +2998 262 id \N ir.msg_ID integer account_invoice f \N \N \N \N +2999 262 payment account.invoice.payment_term Payment Term many2one account_invoice t \N \N \N \N +3000 262 ratio \N Ratio numeric account_invoice f \N \N \N \N +3001 262 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3002 262 relativedeltas account.invoice.payment_term.line.delta Deltas one2many account_invoice f \N \N \N \N +3003 262 sequence \N ir.msg_sequence integer account_invoice f \N \N \N \N +3004 262 type \N Type selection account_invoice f \N \N \N \N +3005 262 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3006 262 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3007 263 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3008 263 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3009 263 day \N Day of Month integer account_invoice f \N \N \N \N +3010 263 days \N Number of Days integer account_invoice f \N \N \N \N +3011 263 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3012 263 line account.invoice.payment_term.line Payment Term Line many2one account_invoice t \N \N \N \N +3013 263 month ir.calendar.month Month many2one account_invoice f \N \N \N \N +3014 263 months \N Number of Months integer account_invoice f \N \N \N \N +3015 263 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3016 263 sequence \N ir.msg_sequence integer account_invoice f \N \N \N \N +3017 263 weekday ir.calendar.day Day of Week many2one account_invoice f \N \N \N \N +3018 263 weeks \N Number of Weeks integer account_invoice f \N \N \N \N +3019 263 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3020 263 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3021 264 amount \N Amount numeric account_invoice f \N \N \N \N +3022 264 currency currency.currency Currency many2one account_invoice f \N \N \N \N +3023 264 date \N Date date account_invoice f \N \N \N \N +3024 264 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3025 264 payment_term account.invoice.payment_term Payment Term many2one account_invoice f \N \N \N \N +3026 264 result account.invoice.payment_term.test.result Result one2many account_invoice f \N \N \N \N +3027 265 amount \N Amount numeric account_invoice f \N \N \N \N +3028 265 currency currency.currency Currency many2one account_invoice f \N \N \N \N +3029 265 date \N Date date account_invoice f \N \N \N \N +3030 265 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3031 266 account account.account Account many2one account_invoice f \N \N \N \N +3032 266 accounting_date \N Accounting Date date account_invoice f \N \N \N \N +3033 266 additional_moves account.invoice-additional-account.move Additional Moves many2many account_invoice f \N \N \N \N +3034 266 allow_cancel \N Allow Cancel Invoice boolean account_invoice f \N \N \N \N +3035 266 alternative_payees account.invoice.alternative_payee Alternative Payee many2many account_invoice f \N \N \N \N +3036 266 amount_to_pay \N Amount to Pay numeric account_invoice f \N \N \N \N +3037 266 amount_to_pay_today \N Amount to Pay Today numeric account_invoice f \N \N \N \N +3038 266 cancel_move account.move Cancel Move many2one account_invoice f \N \N \N \N +3039 266 comment \N Comment text account_invoice f \N \N \N \N +3040 266 company company.company Company many2one account_invoice f \N \N \N \N +3041 266 company_party party.party Company Party many2one account_invoice f \N \N \N \N +3042 266 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3043 266 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3044 266 currency currency.currency Currency many2one account_invoice f \N \N \N \N +3045 266 currency_date \N Currency Date date account_invoice f \N \N \N \N +3046 266 description \N Description char account_invoice f \N \N \N \N +3047 266 has_payment_method \N Has Payment Method boolean account_invoice f \N \N \N \N +3048 266 has_report_cache \N Has Report Cached boolean account_invoice f \N \N \N \N +3049 266 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3050 266 invoice_address party.address Invoice Address many2one account_invoice f \N \N \N \N +3051 266 invoice_date \N Invoice Date date account_invoice f \N \N \N \N +3052 266 invoice_report_cache \N Invoice Report binary account_invoice f \N \N \N \N +3053 266 invoice_report_cache_id \N Invoice Report ID char account_invoice f \N \N \N \N +3054 266 invoice_report_format \N Invoice Report Format char account_invoice f \N \N \N \N +3055 266 invoice_report_revisions account.invoice.report.revision Invoice Report Revisions one2many account_invoice f \N \N \N \N +3056 266 journal account.journal Journal many2one account_invoice f \N \N \N \N +3057 266 lines account.invoice.line Lines one2many account_invoice f \N \N \N \N +3058 266 lines_to_pay account.move.line Lines to Pay many2many account_invoice f \N \N \N \N +3059 266 move account.move Move many2one account_invoice f \N \N \N \N +3060 266 number \N Number char account_invoice f \N \N \N \N +3061 266 origins \N Origins char account_invoice f \N \N \N \N +3062 266 party party.party Party many2one account_invoice f \N \N \N \N +3063 266 party_lang \N Party Language char account_invoice f \N \N \N \N +3064 266 party_tax_identifier party.identifier Party Tax Identifier many2one account_invoice f \N \N \N \N +3065 266 payment_lines account.invoice-account.move.line Payment Lines many2many account_invoice f \N \N \N \N +3066 266 payment_term account.invoice.payment_term Payment Term many2one account_invoice f \N \N \N \N +3067 266 payment_term_date \N Payment Term Date date The date from which the payment term is calculated.\nLeave empty to use the invoice date. account_invoice f \N \N \N \N +3068 266 posted_by company.employee Posted By many2one account_invoice f \N \N \N \N +3069 266 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3070 266 reconciled \N Reconciled date account_invoice f \N \N \N \N +3071 266 reconciliation_lines account.move.line Payment Lines many2many account_invoice f \N \N \N \N +3072 266 reference \N Reference char account_invoice f \N \N \N \N +3073 266 sequence \N Sequence integer account_invoice f \N \N \N \N +3074 266 state \N State selection account_invoice f \N \N \N \N +3075 266 tax_amount \N Tax numeric account_invoice f \N \N \N \N +3076 266 tax_amount_cache \N Tax Cache numeric account_invoice f \N \N \N \N +3077 266 tax_identifier party.identifier Tax Identifier many2one account_invoice f \N \N \N \N +3078 266 taxes account.invoice.tax Tax Lines one2many account_invoice f \N \N \N \N +3079 266 total_amount \N Total numeric account_invoice f \N \N \N \N +3080 266 total_amount_cache \N Total Cache numeric account_invoice f \N \N \N \N +3081 266 type \N Type selection account_invoice f \N \N \N \N +3082 266 type_name \N Type char account_invoice f \N \N \N \N +3083 266 untaxed_amount \N Untaxed numeric account_invoice f \N \N \N \N +3084 266 untaxed_amount_cache \N Untaxed Cache numeric account_invoice f \N \N \N \N +3085 266 validated_by company.employee Validated By many2one account_invoice f \N \N \N \N +3086 266 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3087 266 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3088 267 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3089 267 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3090 267 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3091 267 invoice account.invoice Invoice many2one account_invoice f \N \N \N \N +3092 267 move account.move Additional Move many2one account_invoice f \N \N \N \N +3093 267 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3094 267 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3095 267 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3096 268 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3097 268 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3098 268 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3099 268 invoice account.invoice Invoice many2one account_invoice f \N \N \N \N +3100 268 party party.party Payee many2one account_invoice f \N \N \N \N +3101 268 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3102 268 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3103 268 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3104 269 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3105 269 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3106 269 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3107 269 invoice account.invoice Invoice many2one account_invoice f \N \N \N \N +3108 269 invoice_account account.account Invoice Account many2one account_invoice f \N \N \N \N +3109 269 invoice_alternative_payees party.party Invoice Alternative Payees many2many account_invoice f \N \N \N \N +3110 269 invoice_party party.party Invoice Party many2one account_invoice f \N \N \N \N +3111 269 line account.move.line Payment Line many2one account_invoice f \N \N \N \N +3112 269 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3113 269 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3114 269 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3115 270 account account.account Account many2one account_invoice f \N \N \N \N +3116 270 amount \N Amount numeric account_invoice f \N \N \N \N +3117 270 company company.company Company many2one account_invoice f \N \N \N \N +3118 270 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3119 270 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3120 270 currency currency.currency Currency many2one account_invoice f \N \N \N \N +3121 270 description \N Description text account_invoice f \N \N \N \N +3122 270 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3123 270 invoice account.invoice Invoice many2one account_invoice f \N \N \N \N +3124 270 invoice_description \N Invoice Description char account_invoice f \N \N \N \N +3125 270 invoice_party party.party Party many2one account_invoice f \N \N \N \N +3126 270 invoice_state \N Invoice State selection account_invoice f \N \N \N \N +3127 270 invoice_taxes account.invoice.tax Invoice Taxes many2many account_invoice f \N \N \N \N +3128 270 invoice_type \N Invoice Type selection account_invoice f \N \N \N \N +3129 270 note \N Note text account_invoice f \N \N \N \N +3130 270 origin \N Origin reference account_invoice f \N \N \N \N +3131 270 party party.party Party many2one account_invoice f \N \N \N \N +3132 270 party_lang \N Party Language char account_invoice f \N \N \N \N +3133 270 product product.product Product many2one account_invoice f \N \N \N \N +3134 270 product_uom_category product.uom.category Product UoM Category many2one The category of Unit of Measure for the product. account_invoice f \N \N \N \N +3135 270 quantity \N Quantity float account_invoice f \N \N \N \N +3136 270 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3137 270 sequence \N ir.msg_sequence integer account_invoice f \N \N \N \N +3138 270 summary \N Summary char account_invoice f \N \N \N \N +3139 270 taxes account.invoice.line-account.tax Taxes many2many account_invoice f \N \N \N \N +3140 270 taxes_date \N Taxes Date date The date at which the taxes are computed.\nLeave empty for the accounting date. account_invoice f \N \N \N \N +3141 270 taxes_deductible_rate \N Taxes Deductible Rate numeric account_invoice f \N \N \N \N +3142 270 type \N Type selection account_invoice f \N \N \N \N +3143 270 unit product.uom Unit many2one account_invoice f \N \N \N \N +3144 270 unit_price \N Unit Price numeric account_invoice f \N \N \N \N +3145 270 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3146 270 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3147 271 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3148 271 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3149 271 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3150 271 line account.invoice.line Invoice Line many2one account_invoice f \N \N \N \N +3151 271 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3152 271 tax account.tax Tax many2one account_invoice f \N \N \N \N +3153 271 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3154 271 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3155 272 account account.account Account many2one account_invoice f \N \N \N \N +3156 272 amount \N Amount numeric account_invoice f \N \N \N \N +3157 272 base \N Base numeric account_invoice f \N \N \N \N +3158 272 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3159 272 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3160 272 currency currency.currency Currency many2one account_invoice f \N \N \N \N +3161 272 description \N Description char account_invoice f \N \N \N \N +3162 272 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3163 272 invoice account.invoice Invoice many2one account_invoice t \N \N \N \N +3164 272 invoice_state \N Invoice State selection account_invoice f \N \N \N \N +3165 272 legal_notice \N Legal Notice text account_invoice f \N \N \N \N +3166 272 manual \N Manual boolean account_invoice f \N \N \N \N +3167 272 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3168 272 sequence \N ir.msg_sequence integer account_invoice f \N \N \N \N +3169 272 sequence_number \N Sequence Number integer account_invoice f \N \N \N \N +3170 272 tax account.tax Tax many2one account_invoice f \N \N \N \N +3171 272 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3172 272 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3173 273 amount \N Amount numeric account_invoice f \N \N \N \N +3174 273 company company.company Company many2one account_invoice f \N \N \N \N +3175 273 currency currency.currency Currency many2one account_invoice f \N \N \N \N +3176 273 date \N Date date account_invoice f \N \N \N \N +3177 273 description \N Description char account_invoice f \N \N \N \N +3178 273 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3179 273 invoice_account account.account Invoice Account many2one account_invoice f \N \N \N \N +3180 273 payee party.party Payee many2one account_invoice f \N \N \N \N +3181 273 payees party.party Payees many2many account_invoice f \N \N \N \N +3182 273 payment_method account.invoice.payment.method Payment Method many2one account_invoice f \N \N \N \N +3183 274 amount \N Payment Amount numeric account_invoice f \N \N \N \N +3184 274 amount_writeoff \N Write-Off Amount numeric account_invoice f \N \N \N \N +3185 274 company company.company Company many2one account_invoice f \N \N \N \N +3186 274 currency currency.currency Currency many2one account_invoice f \N \N \N \N +3187 274 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3188 274 invoice account.invoice Invoice many2one account_invoice f \N \N \N \N +3189 274 lines account.move.line Lines many2many account_invoice f \N \N \N \N +3190 274 lines_to_pay account.move.line Lines to Pay many2many account_invoice f \N \N \N \N +3191 274 payment_lines account.move.line Payment Lines many2many account_invoice f \N \N \N \N +3192 274 type \N Type selection account_invoice f \N \N \N \N +3193 274 writeoff account.move.reconcile.write_off Write Off many2one account_invoice f \N \N \N \N +3194 275 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3195 275 invoice_date \N Invoice Date date account_invoice f \N \N \N \N +3196 275 with_refund \N With Refund boolean If true, the current invoice(s) will be cancelled. account_invoice f \N \N \N \N +3197 275 with_refund_allowed \N With Refund Allowed boolean account_invoice f \N \N \N \N +3198 276 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3199 276 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3200 276 date \N Date datetime account_invoice f \N \N \N \N +3201 276 filename \N File Name char account_invoice f \N \N \N \N +3202 276 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3203 276 invoice account.invoice Invoice many2one account_invoice t \N \N \N \N +3204 276 invoice_report_cache \N Invoice Report binary account_invoice f \N \N \N \N +3205 276 invoice_report_cache_id \N Invoice Report ID char account_invoice f \N \N \N \N +3206 276 invoice_report_format \N Invoice Report Format char account_invoice f \N \N \N \N +3207 276 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3208 276 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3209 276 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3210 111 invoice \N Invoice boolean account_invoice f \N \N \N \N +3211 114 invoice \N Invoice boolean account_invoice f \N \N \N \N +3212 104 customer_payment_term account.invoice.payment_term Customer Payment Term many2one account_invoice f \N \N \N \N +3213 104 payment_terms party.party.payment_term Payment Terms one2many account_invoice f \N \N \N \N +3214 104 supplier_payment_term account.invoice.payment_term Supplier Payment Term many2one account_invoice f \N \N \N \N +3215 277 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3216 277 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3217 277 customer_payment_term account.invoice.payment_term Customer Payment Term many2one account_invoice f \N \N \N \N +3218 277 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3219 277 party party.party Party many2one account_invoice f \N \N \N \N +3220 277 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3221 277 supplier_payment_term account.invoice.payment_term Supplier Payment Term many2one account_invoice f \N \N \N \N +3222 277 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3223 277 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3224 151 default_customer_payment_term account.invoice.payment_term Default Customer Payment Term many2one account_invoice f \N \N \N \N +3225 278 company company.company Company many2one account_invoice f \N \N \N \N +3226 278 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3227 278 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3228 278 default_customer_payment_term account.invoice.payment_term Default Customer Payment Term many2one account_invoice f \N \N \N \N +3229 278 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3230 278 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3231 278 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3232 278 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3233 279 company company.company Company many2one account_invoice f \N \N \N \N +3234 279 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3235 279 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3236 279 fiscalyear account.fiscalyear Fiscal Year many2one account_invoice f \N \N \N \N +3237 279 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3238 279 in_credit_note_sequence ir.sequence.strict Supplier Credit Note Sequence many2one account_invoice f \N \N \N \N +3239 279 in_invoice_sequence ir.sequence.strict Supplier Invoice Sequence many2one account_invoice f \N \N \N \N +3240 279 out_credit_note_sequence ir.sequence.strict Customer Credit Note Sequence many2one account_invoice f \N \N \N \N +3241 279 out_invoice_sequence ir.sequence.strict Customer Invoice Sequence many2one account_invoice f \N \N \N \N +3242 279 period account.period Period many2one account_invoice f \N \N \N \N +3243 279 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3244 279 sequence \N ir.msg_sequence integer account_invoice f \N \N \N \N +3245 279 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3246 279 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3247 125 invoice_sequences account.fiscalyear.invoice_sequence Invoice Sequences one2many account_invoice f \N \N \N \N +3248 164 invoice_payment account.invoice Invoice Payment many2one account_invoice f \N \N \N \N +3249 164 invoice_payments account.invoice-account.move.line Invoice Payments many2many account_invoice f \N \N \N \N +3250 280 active \N ir.msg_active boolean ir.msg_active_help account_invoice f \N \N \N \N +3251 280 company company.company Company many2one account_invoice f \N \N \N \N +3252 280 create_date \N ir.msg_created_at timestamp account_invoice f \N \N \N \N +3253 280 create_uid res.user ir.msg_created_by many2one account_invoice f \N \N \N \N +3254 280 credit_account account.account Credit Account many2one account_invoice f \N \N \N \N +3255 280 debit_account account.account Debit Account many2one account_invoice f \N \N \N \N +3256 280 id \N ir.msg_ID integer account_invoice f \N \N \N \N +3257 280 journal account.journal Journal many2one account_invoice f \N \N \N \N +3258 280 name \N Name char account_invoice f \N \N \N \N +3259 280 rec_name \N ir.msg_record_name char account_invoice f \N \N \N \N +3260 280 write_date \N ir.msg_edited_at timestamp account_invoice f \N \N \N \N +3261 280 write_uid res.user ir.msg_edited_by many2one account_invoice f \N \N \N \N +3262 119 cancel_invoice_out \N Cancel Customer Invoice boolean Allow cancelling move of customer invoice. account_invoice f \N \N \N \N +3263 119 purchase_taxes_expense \N Purchase Taxes as Expense boolean Check to book purchase taxes as expense. account_invoice f \N \N \N \N +3264 266 shipments \N Shipments char account_invoice_stock f \N \N \N \N +3265 281 create_date \N ir.msg_created_at timestamp account_invoice_stock f \N \N \N \N +3266 281 create_uid res.user ir.msg_created_by many2one account_invoice_stock f \N \N \N \N +3267 281 id \N ir.msg_ID integer account_invoice_stock f \N \N \N \N +3268 281 invoice_line account.invoice.line Invoice Line many2one account_invoice_stock f \N \N \N \N +3269 281 rec_name \N ir.msg_record_name char account_invoice_stock f \N \N \N \N +3270 281 stock_move stock.move Stock Move many2one account_invoice_stock f \N \N \N \N +3271 281 write_date \N ir.msg_edited_at timestamp account_invoice_stock f \N \N \N \N +3272 281 write_uid res.user ir.msg_edited_by many2one account_invoice_stock f \N \N \N \N +3273 270 correction \N Correction boolean Check to correct price of already posted invoice. account_invoice_stock f \N \N \N \N +3274 270 shipments \N Shipments char account_invoice_stock f \N \N \N \N +3275 270 stock_moves account.invoice.line-stock.move Stock Moves many2many account_invoice_stock f \N \N \N \N +3276 270 warehouse stock.location Warehouse many2one account_invoice_stock f \N \N \N \N +3277 228 invoice_lines account.invoice.line-stock.move Invoice Lines many2many account_invoice_stock f \N \N \N \N +3278 228 invoice_types \N Invoice Types multiselection account_invoice_stock f \N \N \N \N +3279 228 purchase purchase.purchase Purchase many2one purchase f \N \N \N \N +3280 228 purchase_exception_state \N Exception State selection purchase f \N \N \N \N +3281 228 supplier party.party Supplier many2one purchase f \N \N \N \N +3282 282 attachments ir.attachment ir.msg_attachments one2many ir.msg_resource_copy_help purchase f \N \N \N \N +3283 282 comment \N Comment text purchase f \N \N \N \N +3284 282 company company.company Company many2one purchase f \N \N \N \N +3285 282 confirmed_by company.employee Confirmed By many2one purchase f \N \N \N \N +3286 282 contact party.contact_mechanism Contact many2one purchase f \N \N \N \N +3287 282 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3288 282 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3289 282 currency currency.currency Currency many2one purchase f \N \N \N \N +3290 282 delivery_date \N Delivery Date date The default delivery date for each line. purchase f \N \N \N \N +3291 282 description \N Description char purchase f \N \N \N \N +3292 282 id \N ir.msg_ID integer purchase f \N \N \N \N +3293 282 invoice_address party.address Invoice Address many2one purchase f \N \N \N \N +3294 282 invoice_method \N Invoice Method selection purchase f \N \N \N \N +3295 282 invoice_party party.party Invoice Party many2one purchase f \N \N \N \N +3296 282 invoice_state \N Invoice State selection purchase f \N \N \N \N +3297 282 invoices account.invoice Invoices many2many purchase f \N \N \N \N +3298 282 invoices_ignored purchase.purchase-ignored-account.invoice Ignored Invoices many2many purchase f \N \N \N \N +3299 282 invoices_recreated purchase.purchase-recreated-account.invoice Recreated Invoices many2many purchase f \N \N \N \N +3300 282 lines purchase.line Lines one2many purchase f \N \N \N \N +3301 282 moves stock.move Moves many2many purchase f \N \N \N \N +3302 282 notes ir.note ir.msg_notes one2many ir.msg_resource_copy_help purchase f \N \N \N \N +3303 282 number \N Number char purchase f \N \N \N \N +3304 282 origin \N Origin reference purchase f \N \N \N \N +3305 282 party party.party Party many2one purchase f \N \N \N \N +3306 282 party_lang \N Party Language char purchase f \N \N \N \N +3307 282 payment_term account.invoice.payment_term Payment Term many2one purchase f \N \N \N \N +3308 282 purchase_date \N Purchase Date date purchase f \N \N \N \N +3309 282 quoted_by company.employee Quoted By many2one purchase f \N \N \N \N +3310 282 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3311 282 reference \N Reference char purchase f \N \N \N \N +3312 282 shipment_returns stock.shipment.in.return Shipment Returns many2many purchase f \N \N \N \N +3313 282 shipment_state \N Shipment State selection purchase f \N \N \N \N +3314 282 shipments stock.shipment.in Shipments many2many purchase f \N \N \N \N +3315 282 state \N State selection purchase f \N \N \N \N +3316 282 tax_amount \N Tax numeric purchase f \N \N \N \N +3317 282 tax_amount_cache \N Tax Cache numeric purchase f \N \N \N \N +3318 282 total_amount \N Total numeric purchase f \N \N \N \N +3319 282 total_amount_cache \N Total Cache numeric purchase f \N \N \N \N +3320 282 untaxed_amount \N Untaxed numeric purchase f \N \N \N \N +3321 282 untaxed_amount_cache \N Untaxed Cache numeric purchase f \N \N \N \N +3322 282 warehouse stock.location Warehouse many2one purchase f \N \N \N \N +3323 282 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3324 282 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3325 283 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3326 283 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3327 283 id \N ir.msg_ID integer purchase f \N \N \N \N +3328 283 invoice account.invoice Invoice many2one purchase f \N \N \N \N +3329 283 purchase purchase.purchase Purchase many2one purchase f \N \N \N \N +3330 283 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3331 283 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3332 283 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3333 284 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3334 284 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3335 284 id \N ir.msg_ID integer purchase f \N \N \N \N +3336 284 invoice account.invoice Invoice many2one purchase f \N \N \N \N +3337 284 purchase purchase.purchase Purchase many2one purchase f \N \N \N \N +3338 284 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3339 284 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3340 284 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3341 285 actual_quantity \N Actual Quantity float purchase f \N \N \N \N +3342 285 amount \N Amount numeric purchase f \N \N \N \N +3343 285 company company.company Company many2one purchase f \N \N \N \N +3344 285 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3345 285 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3346 285 currency currency.currency Currency many2one purchase f \N \N \N \N +3347 285 delivery_date \N Delivery Date date purchase f \N \N \N \N +3348 285 delivery_date_edit \N Edit Delivery Date boolean Check to edit the delivery date. purchase f \N \N \N \N +3349 285 delivery_date_store \N Delivery Date date purchase f \N \N \N \N +3350 285 description \N Description text purchase f \N \N \N \N +3351 285 from_location stock.location From Location many2one purchase f \N \N \N \N +3352 285 id \N ir.msg_ID integer purchase f \N \N \N \N +3353 285 invoice_lines account.invoice.line Invoice Lines one2many purchase f \N \N \N \N +3354 285 moves stock.move Moves one2many purchase f \N \N \N \N +3355 285 moves_exception \N Moves Exception boolean purchase f \N \N \N \N +3356 285 moves_ignored purchase.line-ignored-stock.move Ignored Moves many2many purchase f \N \N \N \N +3357 285 moves_progress \N Moves Progress float purchase f \N \N \N \N +3358 285 moves_recreated purchase.line-recreated-stock.move Recreated Moves many2many purchase f \N \N \N \N +3359 285 note \N Note text purchase f \N \N \N \N +3360 285 product product.product Product many2one purchase f \N \N \N \N +3361 285 product_supplier purchase.product_supplier Supplier's Product many2one purchase f \N \N \N \N +3362 285 product_uom_category product.uom.category Product UoM Category many2one The category of Unit of Measure for the product. purchase f \N \N \N \N +3363 285 purchase purchase.purchase Purchase many2one purchase t \N \N \N \N +3364 285 purchase_date \N Purchase Date date purchase f \N \N \N \N +3365 285 purchase_state \N Purchase State selection purchase f \N \N \N \N +3366 285 quantity \N Quantity float purchase f \N \N \N \N +3367 285 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3368 285 sequence \N ir.msg_sequence integer purchase f \N \N \N \N +3369 285 summary \N Summary char purchase f \N \N \N \N +3370 285 supplier party.party Supplier many2one purchase f \N \N \N \N +3371 285 taxes purchase.line-account.tax Taxes many2many purchase f \N \N \N \N +3372 285 to_location stock.location To Location many2one purchase f \N \N \N \N +3373 285 type \N Type selection purchase f \N \N \N \N +3374 285 unit product.uom Unit many2one purchase f \N \N \N \N +3375 285 unit_price \N Unit Price numeric purchase f \N \N \N \N +3376 285 warehouse stock.location Warehouse many2one purchase f \N \N \N \N +3377 285 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3378 285 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3379 286 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3380 286 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3381 286 id \N ir.msg_ID integer purchase f \N \N \N \N +3382 286 line purchase.line Purchase Line many2one purchase f \N \N \N \N +3383 286 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3384 286 tax account.tax Tax many2one purchase f \N \N \N \N +3385 286 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3386 286 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3387 287 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3388 287 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3389 287 id \N ir.msg_ID integer purchase f \N \N \N \N +3390 287 move stock.move Move many2one purchase f \N \N \N \N +3391 287 purchase_line purchase.line Purchase Line many2one purchase f \N \N \N \N +3392 287 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3393 287 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3394 287 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3395 288 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3396 288 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3397 288 id \N ir.msg_ID integer purchase f \N \N \N \N +3398 288 move stock.move Move many2one purchase f \N \N \N \N +3399 288 purchase_line purchase.line Purchase Line many2one purchase f \N \N \N \N +3400 288 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3401 288 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3402 288 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3403 204 product_suppliers purchase.product_supplier Suppliers one2many purchase f \N \N \N \N +3404 204 purchasable \N Purchasable boolean purchase f \N \N \N \N +3405 204 purchase_uom product.uom Purchase UoM many2one The default Unit of Measure for purchases. purchase f \N \N \N \N +3406 205 last_purchase_price_uom \N Last Purchase Price numeric purchase f \N \N \N \N +3407 205 product_suppliers purchase.product_supplier Suppliers one2many purchase f \N \N \N \N +3408 205 purchasable \N Purchasable boolean purchase f \N \N \N \N +3409 205 purchase_price_uom \N Purchase Price numeric purchase f \N \N \N \N +3410 205 purchase_uom product.uom Purchase UoM many2one The default Unit of Measure for purchases. purchase f \N \N \N \N +3411 289 active \N ir.msg_active boolean ir.msg_active_help purchase f \N \N \N \N +3412 289 code \N Code char purchase f \N \N \N \N +3413 289 company company.company Company many2one purchase f \N \N \N \N +3414 289 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3415 289 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3416 289 currency currency.currency Currency many2one purchase f \N \N \N \N +3417 289 id \N ir.msg_ID integer purchase f \N \N \N \N +3418 289 lead_time \N Lead Time timedelta The time from confirming the purchase order to receiving the products.\nIf empty the lead time of the supplier is used. purchase f \N \N \N \N +3419 289 name \N Name char purchase f \N \N \N \N +3420 289 party party.party Supplier many2one purchase f \N \N \N \N +3421 289 prices purchase.product_supplier.price Prices one2many Add price for different criteria.\nThe last matching line is used. purchase f \N \N \N \N +3422 289 product product.product Variant many2one purchase f \N \N \N \N +3423 289 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3424 289 sequence \N ir.msg_sequence integer purchase f \N \N \N \N +3425 289 template product.template Product many2one purchase f \N \N \N \N +3426 289 unit product.uom Unit many2one purchase f \N \N \N \N +3427 289 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3428 289 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3429 290 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3430 290 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3431 290 currency currency.currency Currency many2one purchase f \N \N \N \N +3432 290 id \N ir.msg_ID integer purchase f \N \N \N \N +3433 290 product_supplier purchase.product_supplier Supplier many2one purchase t \N \N \N \N +3434 290 quantity \N Quantity float Minimal quantity. purchase f \N \N \N \N +3435 290 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3436 290 sequence \N ir.msg_sequence integer purchase f \N \N \N \N +3437 290 unit product.uom Unit many2one The unit in which the quantity is specified. purchase f \N \N \N \N +3438 290 unit_price \N Unit Price numeric purchase f \N \N \N \N +3439 290 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3440 290 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3441 291 domain_moves stock.move Domain Moves many2many purchase f \N \N \N \N +3442 291 id \N ir.msg_ID integer purchase f \N \N \N \N +3443 291 recreate_moves stock.move Recreate Moves many2many The selected moves will be recreated. The other ones will be ignored. purchase f \N \N \N \N +3444 292 domain_invoices account.invoice Domain Invoices many2many purchase f \N \N \N \N +3445 292 id \N ir.msg_ID integer purchase f \N \N \N \N +3446 292 recreate_invoices account.invoice Recreate Invoices many2many The selected invoices will be recreated. The other ones will be ignored. purchase f \N \N \N \N +3447 293 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3448 293 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3449 293 id \N ir.msg_ID integer purchase f \N \N \N \N +3450 293 purchase_invoice_method \N Invoice Method selection purchase f \N \N \N \N +3451 293 purchase_process_after \N Process Purchase after timedelta The grace period during which confirmed purchase can still be reset to draft.\nApplied only if a worker queue is activated. purchase f \N \N \N \N +3452 293 purchase_sequence ir.sequence Purchase Sequence many2one purchase f \N \N \N \N +3453 293 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3454 293 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3455 293 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3456 294 company company.company Company many2one purchase f \N \N \N \N +3457 294 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3458 294 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3459 294 id \N ir.msg_ID integer purchase f \N \N \N \N +3460 294 purchase_sequence ir.sequence Purchase Sequence many2one purchase f \N \N \N \N +3461 294 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3462 294 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3463 294 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3464 295 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3465 295 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3466 295 id \N ir.msg_ID integer purchase f \N \N \N \N +3467 295 purchase_invoice_method \N Invoice Method selection purchase f \N \N \N \N +3468 295 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3469 295 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3470 295 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3471 266 purchase_exception_state \N Exception State selection purchase f \N \N \N \N +3472 266 purchases purchase.purchase Purchases many2many purchase f \N \N \N \N +3473 223 supplier_return_location stock.location Supplier Return many2one If empty the Storage location is used. purchase f \N \N \N \N +3474 104 customer_code \N Customer Code char The code the party as supplier has assigned to the company as customer. purchase f \N \N \N \N +3475 104 customer_codes party.party.customer_code Customer Codes one2many purchase f \N \N \N \N +3476 104 supplier_currencies party.party.supplier_currency Supplier Currencies one2many purchase f \N \N \N \N +3477 104 supplier_currency currency.currency Supplier Currency many2one Default currency for purchases from this party. purchase f \N \N \N \N +3478 104 supplier_lead_time \N Lead Time timedelta The time from confirming the purchase order to receiving the goods from the party when used as a supplier.\nUsed if no lead time is set on the product supplier. purchase f \N \N \N \N +3479 104 supplier_lead_times party.party.supplier_lead_time Lead Times one2many purchase f \N \N \N \N +3480 296 company company.company Company many2one purchase f \N \N \N \N +3481 296 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3482 296 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3483 296 customer_code \N Customer Code char purchase f \N \N \N \N +3484 296 id \N ir.msg_ID integer purchase f \N \N \N \N +3485 296 party party.party Party many2one purchase f \N \N \N \N +3486 296 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3487 296 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3488 296 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3489 297 company company.company Company many2one purchase f \N \N \N \N +3490 297 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3491 297 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3492 297 id \N ir.msg_ID integer purchase f \N \N \N \N +3493 297 party party.party Party many2one purchase f \N \N \N \N +3494 297 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3495 297 supplier_lead_time \N Lead Time timedelta The time from confirming the purchase order to receiving the goods from the party when used as a supplier.\nUsed if no lead time is set on the product supplier. purchase f \N \N \N \N +3496 297 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3497 297 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3498 298 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3499 298 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3500 298 id \N ir.msg_ID integer purchase f \N \N \N \N +3501 298 party party.party Party many2one purchase f \N \N \N \N +3502 298 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3503 298 supplier_currency currency.currency Supplier Currency many2one Default currency for purchases from this party. purchase f \N \N \N \N +3504 298 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3505 298 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3506 299 id \N ir.msg_ID integer purchase f \N \N \N \N +3507 300 company company.company Company many2one purchase f \N \N \N \N +3508 300 from_date \N From Date date purchase f \N \N \N \N +3509 300 id \N ir.msg_ID integer purchase f \N \N \N \N +3510 300 period \N Period selection purchase f \N \N \N \N +3511 300 to_date \N To Date date purchase f \N \N \N \N +3512 300 warehouse stock.location Warehouse many2one purchase f \N \N \N \N +3513 301 company company.company purchase.msg_purchase_reporting_company many2one purchase f \N \N \N \N +3514 301 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3515 301 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3516 301 currency currency.currency purchase.msg_purchase_reporting_currency many2one purchase f \N \N \N \N +3517 301 expense \N purchase.msg_purchase_reporting_expense numeric purchase f \N \N \N \N +3518 301 expense_trend \N purchase.msg_purchase_reporting_expense_trend char purchase f \N \N \N \N +3519 301 id \N ir.msg_ID integer purchase f \N \N \N \N +3520 301 number \N purchase.msg_purchase_reporting_number integer purchase.msg_purchase_reporting_number_help purchase f \N \N \N \N +3521 301 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3522 301 time_series purchase.reporting.main.time_series purchase.msg_purchase_reporting_time_series one2many purchase f \N \N \N \N +3523 301 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3524 301 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3525 302 company company.company purchase.msg_purchase_reporting_company many2one purchase f \N \N \N \N +3526 302 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3527 302 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3528 302 currency currency.currency purchase.msg_purchase_reporting_currency many2one purchase f \N \N \N \N +3529 302 date \N purchase.msg_purchase_reporting_date date purchase f \N \N \N \N +3530 302 expense \N purchase.msg_purchase_reporting_expense numeric purchase f \N \N \N \N +3531 302 expense_trend \N purchase.msg_purchase_reporting_expense_trend char purchase f \N \N \N \N +3532 302 id \N ir.msg_ID integer purchase f \N \N \N \N +3533 302 number \N purchase.msg_purchase_reporting_number integer purchase.msg_purchase_reporting_number_help purchase f \N \N \N \N +3534 302 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3535 302 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3536 302 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3537 303 company company.company purchase.msg_purchase_reporting_company many2one purchase f \N \N \N \N +3538 303 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3539 303 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3540 303 currency currency.currency purchase.msg_purchase_reporting_currency many2one purchase f \N \N \N \N +3541 303 expense \N purchase.msg_purchase_reporting_expense numeric purchase f \N \N \N \N +3542 303 expense_trend \N purchase.msg_purchase_reporting_expense_trend char purchase f \N \N \N \N +3543 303 id \N ir.msg_ID integer purchase f \N \N \N \N +3544 303 number \N purchase.msg_purchase_reporting_number integer purchase.msg_purchase_reporting_number_help purchase f \N \N \N \N +3545 303 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3546 303 supplier party.party Supplier many2one purchase f \N \N \N \N +3547 303 time_series purchase.reporting.supplier.time_series purchase.msg_purchase_reporting_time_series one2many purchase f \N \N \N \N +3548 303 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3549 303 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3550 304 company company.company purchase.msg_purchase_reporting_company many2one purchase f \N \N \N \N +3551 304 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3552 304 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3553 304 currency currency.currency purchase.msg_purchase_reporting_currency many2one purchase f \N \N \N \N +3554 304 date \N purchase.msg_purchase_reporting_date date purchase f \N \N \N \N +3555 304 expense \N purchase.msg_purchase_reporting_expense numeric purchase f \N \N \N \N +3556 304 expense_trend \N purchase.msg_purchase_reporting_expense_trend char purchase f \N \N \N \N +3557 304 id \N ir.msg_ID integer purchase f \N \N \N \N +3558 304 number \N purchase.msg_purchase_reporting_number integer purchase.msg_purchase_reporting_number_help purchase f \N \N \N \N +3559 304 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3560 304 supplier party.party Supplier many2one purchase f \N \N \N \N +3561 304 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3562 304 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3563 305 company company.company purchase.msg_purchase_reporting_company many2one purchase f \N \N \N \N +3564 305 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3565 305 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3566 305 currency currency.currency purchase.msg_purchase_reporting_currency many2one purchase f \N \N \N \N +3567 305 expense \N purchase.msg_purchase_reporting_expense numeric purchase f \N \N \N \N +3568 305 expense_trend \N purchase.msg_purchase_reporting_expense_trend char purchase f \N \N \N \N +3569 305 id \N ir.msg_ID integer purchase f \N \N \N \N +3570 305 number \N purchase.msg_purchase_reporting_number integer purchase.msg_purchase_reporting_number_help purchase f \N \N \N \N +3571 305 product product.product Product many2one purchase f \N \N \N \N +3572 305 product_supplier purchase.product_supplier Supplier's Product many2one purchase f \N \N \N \N +3573 305 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3574 305 time_series purchase.reporting.product.time_series purchase.msg_purchase_reporting_time_series one2many purchase f \N \N \N \N +3575 305 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3576 305 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3577 306 company company.company purchase.msg_purchase_reporting_company many2one purchase f \N \N \N \N +3578 306 create_date \N ir.msg_created_at timestamp purchase f \N \N \N \N +3579 306 create_uid res.user ir.msg_created_by many2one purchase f \N \N \N \N +3580 306 currency currency.currency purchase.msg_purchase_reporting_currency many2one purchase f \N \N \N \N +3581 306 date \N purchase.msg_purchase_reporting_date date purchase f \N \N \N \N +3582 306 expense \N purchase.msg_purchase_reporting_expense numeric purchase f \N \N \N \N +3583 306 expense_trend \N purchase.msg_purchase_reporting_expense_trend char purchase f \N \N \N \N +3584 306 id \N ir.msg_ID integer purchase f \N \N \N \N +3585 306 number \N purchase.msg_purchase_reporting_number integer purchase.msg_purchase_reporting_number_help purchase f \N \N \N \N +3586 306 product product.product Product many2one purchase f \N \N \N \N +3587 306 product_supplier purchase.product_supplier Supplier's Product many2one purchase f \N \N \N \N +3588 306 rec_name \N ir.msg_record_name char purchase f \N \N \N \N +3589 306 write_date \N ir.msg_edited_at timestamp purchase f \N \N \N \N +3590 306 write_uid res.user ir.msg_edited_by many2one purchase f \N \N \N \N +3591 228 sale sale.sale Sale many2one sale f \N \N \N \N +3592 228 sale_exception_state \N Exception State selection sale f \N \N \N \N +3593 307 attachments ir.attachment ir.msg_attachments one2many ir.msg_resource_copy_help sale f \N \N \N \N +3594 307 comment \N Comment text sale f \N \N \N \N +3595 307 company company.company Company many2one sale f \N \N \N \N +3596 307 confirmed_by company.employee Confirmed By many2one sale f \N \N \N \N +3597 307 contact party.contact_mechanism Contact many2one sale f \N \N \N \N +3598 307 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3599 307 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3600 307 currency currency.currency Currency many2one sale f \N \N \N \N +3601 307 description \N Description char sale f \N \N \N \N +3602 307 id \N ir.msg_ID integer sale f \N \N \N \N +3603 307 invoice_address party.address Invoice Address many2one sale f \N \N \N \N +3604 307 invoice_method \N Invoice Method selection sale f \N \N \N \N +3605 307 invoice_party party.party Invoice Party many2one sale f \N \N \N \N +3606 307 invoice_state \N Invoice State selection sale f \N \N \N \N +3607 307 invoices account.invoice Invoices many2many sale f \N \N \N \N +3608 307 invoices_ignored sale.sale-ignored-account.invoice Ignored Invoices many2many sale f \N \N \N \N +3609 307 invoices_recreated sale.sale-recreated-account.invoice Recreated Invoices many2many sale f \N \N \N \N +3610 307 lines sale.line Lines one2many sale f \N \N \N \N +3611 307 moves stock.move Moves many2many sale f \N \N \N \N +3612 307 notes ir.note ir.msg_notes one2many ir.msg_resource_copy_help sale f \N \N \N \N +3613 307 number \N Number char sale f \N \N \N \N +3614 307 origin \N Origin reference sale f \N \N \N \N +3615 307 party party.party Party many2one sale f \N \N \N \N +3616 307 party_lang \N Party Language char sale f \N \N \N \N +3617 307 payment_term account.invoice.payment_term Payment Term many2one sale f \N \N \N \N +3618 307 quoted_by company.employee Quoted By many2one sale f \N \N \N \N +3619 307 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3620 307 reference \N Reference char sale f \N \N \N \N +3621 307 sale_date \N Sale Date date sale f \N \N \N \N +3622 307 shipment_address party.address Shipment Address many2one sale f \N \N \N \N +3623 307 shipment_method \N Shipment Method selection sale f \N \N \N \N +3624 307 shipment_party party.party Shipment Party many2one sale f \N \N \N \N +3625 307 shipment_returns stock.shipment.out.return Shipment Returns many2many sale f \N \N \N \N +3626 307 shipment_state \N Shipment State selection sale f \N \N \N \N +3627 307 shipments stock.shipment.out Shipments many2many sale f \N \N \N \N +3628 307 shipping_date \N Shipping Date date When the shipping of goods should start. sale f \N \N \N \N +3629 307 state \N State selection sale f \N \N \N \N +3630 307 tax_amount \N Tax numeric sale f \N \N \N \N +3631 307 tax_amount_cache \N Tax Cache numeric sale f \N \N \N \N +3632 307 total_amount \N Total numeric sale f \N \N \N \N +3633 307 total_amount_cache \N Total Cache numeric sale f \N \N \N \N +3634 307 untaxed_amount \N Untaxed numeric sale f \N \N \N \N +3635 307 untaxed_amount_cache \N Untaxed Cache numeric sale f \N \N \N \N +3636 307 warehouse stock.location Warehouse many2one sale f \N \N \N \N +3637 307 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3638 307 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3639 308 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3640 308 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3641 308 id \N ir.msg_ID integer sale f \N \N \N \N +3642 308 invoice account.invoice Invoice many2one sale f \N \N \N \N +3643 308 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3644 308 sale sale.sale Sale many2one sale f \N \N \N \N +3645 308 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3646 308 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3647 309 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3648 309 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3649 309 id \N ir.msg_ID integer sale f \N \N \N \N +3650 309 invoice account.invoice Invoice many2one sale f \N \N \N \N +3651 309 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3652 309 sale sale.sale Sale many2one sale f \N \N \N \N +3653 309 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3654 309 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3655 310 actual_quantity \N Actual Quantity float sale f \N \N \N \N +3656 310 amount \N Amount numeric sale f \N \N \N \N +3657 310 company company.company Company many2one sale f \N \N \N \N +3658 310 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3659 310 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3660 310 currency currency.currency Currency many2one sale f \N \N \N \N +3661 310 customer party.party Customer many2one sale f \N \N \N \N +3662 310 description \N Description text sale f \N \N \N \N +3663 310 from_location stock.location From Location many2one sale f \N \N \N \N +3664 310 id \N ir.msg_ID integer sale f \N \N \N \N +3665 310 invoice_lines account.invoice.line Invoice Lines one2many sale f \N \N \N \N +3666 310 moves stock.move Moves one2many sale f \N \N \N \N +3667 310 moves_exception \N Moves Exception boolean sale f \N \N \N \N +3668 310 moves_ignored sale.line-ignored-stock.move Ignored Moves many2many sale f \N \N \N \N +3669 310 moves_progress \N Moves Progress float sale f \N \N \N \N +3670 310 moves_recreated sale.line-recreated-stock.move Recreated Moves many2many sale f \N \N \N \N +3671 310 note \N Note text sale f \N \N \N \N +3672 310 product product.product Product many2one sale f \N \N \N \N +3673 310 product_uom_category product.uom.category Product UoM Category many2one The category of Unit of Measure for the product. sale f \N \N \N \N +3674 310 quantity \N Quantity float sale f \N \N \N \N +3675 310 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3676 310 sale sale.sale Sale many2one sale t \N \N \N \N +3677 310 sale_date \N Sale Date date sale f \N \N \N \N +3678 310 sale_state \N Sale State selection sale f \N \N \N \N +3679 310 sequence \N ir.msg_sequence integer sale f \N \N \N \N +3680 310 shipping_date \N Shipping Date date sale f \N \N \N \N +3681 310 summary \N Summary char sale f \N \N \N \N +3682 310 taxes sale.line-account.tax Taxes many2many sale f \N \N \N \N +3683 310 to_location stock.location To Location many2one sale f \N \N \N \N +3684 310 type \N Type selection sale f \N \N \N \N +3685 310 unit product.uom Unit many2one sale f \N \N \N \N +3686 310 unit_price \N Unit Price numeric sale f \N \N \N \N +3687 310 warehouse stock.location Warehouse many2one sale f \N \N \N \N +3688 310 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3689 310 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3690 311 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3691 311 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3692 311 id \N ir.msg_ID integer sale f \N \N \N \N +3693 311 line sale.line Sale Line many2one sale f \N \N \N \N +3694 311 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3695 311 tax account.tax Tax many2one sale f \N \N \N \N +3696 311 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3697 311 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3698 312 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3699 312 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3700 312 id \N ir.msg_ID integer sale f \N \N \N \N +3701 312 move stock.move Move many2one sale f \N \N \N \N +3702 312 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3703 312 sale_line sale.line Sale Line many2one sale f \N \N \N \N +3704 312 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3705 312 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3706 313 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3707 313 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3708 313 id \N ir.msg_ID integer sale f \N \N \N \N +3709 313 move stock.move Move many2one sale f \N \N \N \N +3710 313 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3711 313 sale_line sale.line Sale Line many2one sale f \N \N \N \N +3712 313 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3713 313 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3714 104 customer_currencies party.party.customer_currency Customer Currencies one2many sale f \N \N \N \N +3715 104 customer_currency currency.currency Customer Currency many2one Default currency for sales to this party. sale f \N \N \N \N +3716 104 sale_invoice_method \N Invoice Method selection The default sale invoice method for the customer.\nLeave empty to use the default value from the configuration. sale f \N \N \N \N +3717 104 sale_methods party.party.sale_method Sale Methods one2many sale f \N \N \N \N +3718 104 sale_shipment_method \N Shipment Method selection The default sale shipment method for the customer.\nLeave empty to use the default value from the configuration. sale f \N \N \N \N +3719 314 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3720 314 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3721 314 customer_currency currency.currency Customer Currency many2one Default currency for sales to this party. sale f \N \N \N \N +3722 314 id \N ir.msg_ID integer sale f \N \N \N \N +3723 314 party party.party Party many2one sale f \N \N \N \N +3724 314 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3725 314 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3726 314 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3727 315 company company.company Company many2one sale f \N \N \N \N +3728 315 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3729 315 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3730 315 id \N ir.msg_ID integer sale f \N \N \N \N +3731 315 party party.party Party many2one sale f \N \N \N \N +3732 315 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3733 315 sale_invoice_method \N Sale Invoice Method selection sale f \N \N \N \N +3734 315 sale_shipment_method \N Sale Shipment Method selection sale f \N \N \N \N +3735 315 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3736 315 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3737 212 default_lead_time \N Default Lead Time timedelta The time from confirming the sales order to sending the products.\nUsed for products without a lead time. sale f \N \N \N \N +3738 316 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3739 316 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3740 316 default_lead_time \N Default Lead Time timedelta The time from confirming the sales order to sending the products.\nUsed for products without a lead time. sale f \N \N \N \N +3741 316 id \N ir.msg_ID integer sale f \N \N \N \N +3742 316 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3743 316 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3744 316 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3745 204 lead_time \N Lead Time timedelta The time from confirming the sales order to sending the products.\nIf empty the default lead time from the configuration is used. sale f \N \N \N \N +3746 204 lead_times product.lead_time Lead Times one2many sale f \N \N \N \N +3747 204 salable \N Salable boolean sale f \N \N \N \N +3748 204 sale_uom product.uom Sale UoM many2one The default Unit of Measure for sales. sale f \N \N \N \N +3749 317 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3750 317 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3751 317 id \N ir.msg_ID integer sale f \N \N \N \N +3752 317 lead_time \N Lead Time timedelta sale f \N \N \N \N +3753 317 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3754 317 template product.template Template many2one sale f \N \N \N \N +3755 317 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3756 317 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3757 205 lead_time \N Lead Time timedelta The time from confirming the sales order to sending the products.\nIf empty the default lead time from the configuration is used. sale f \N \N \N \N +3758 205 lead_times product.lead_time Lead Times one2many sale f \N \N \N \N +3759 205 salable \N Salable boolean sale f \N \N \N \N +3760 205 sale_price_uom \N Sale Price numeric sale f \N \N \N \N +3761 205 sale_uom product.uom Sale UoM many2one The default Unit of Measure for sales. sale f \N \N \N \N +3762 318 company company.company Company many2one sale f \N \N \N \N +3763 318 currency currency.currency Currency many2one sale f \N \N \N \N +3764 318 customer party.party Customer many2one sale f \N \N \N \N +3765 318 id \N ir.msg_ID integer sale f \N \N \N \N +3766 318 locations stock.location Warehouses many2many sale f \N \N \N \N +3767 318 quantity \N Quantity float sale f \N \N \N \N +3768 318 sale_date \N Sale Date date sale f \N \N \N \N +3769 318 stock_date_end \N Stock End Date date sale f \N \N \N \N +3770 319 domain_moves stock.move Domain Moves many2many sale f \N \N \N \N +3771 319 id \N ir.msg_ID integer sale f \N \N \N \N +3772 319 recreate_moves stock.move Recreate Moves many2many sale f \N \N \N \N +3773 320 domain_invoices account.invoice Domain Invoices many2many sale f \N \N \N \N +3774 320 id \N ir.msg_ID integer sale f \N \N \N \N +3775 320 recreate_invoices account.invoice Recreate Invoices many2many The selected invoices will be recreated. The other ones will be ignored. sale f \N \N \N \N +3776 321 id \N ir.msg_ID integer sale f \N \N \N \N +3777 322 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3778 322 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3779 322 id \N ir.msg_ID integer sale f \N \N \N \N +3780 322 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3781 322 sale_invoice_method \N Sale Invoice Method selection sale f \N \N \N \N +3782 322 sale_process_after \N Process Sale after timedelta The grace period during which confirmed sale can still be reset to draft.\nApplied if a worker queue is activated. sale f \N \N \N \N +3783 322 sale_sequence ir.sequence Sale Sequence many2one sale f \N \N \N \N +3784 322 sale_shipment_method \N Sale Shipment Method selection sale f \N \N \N \N +3785 322 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3786 322 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3787 323 company company.company Company many2one sale f \N \N \N \N +3788 323 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3789 323 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3790 323 id \N ir.msg_ID integer sale f \N \N \N \N +3791 323 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3792 323 sale_sequence ir.sequence Sale Sequence many2one sale f \N \N \N \N +3793 323 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3794 323 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3795 324 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3796 324 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3797 324 id \N ir.msg_ID integer sale f \N \N \N \N +3798 324 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3799 324 sale_invoice_method \N Sale Invoice Method selection sale f \N \N \N \N +3800 324 sale_shipment_method \N Sale Shipment Method selection sale f \N \N \N \N +3801 324 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3802 324 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3803 325 company company.company Company many2one sale f \N \N \N \N +3804 325 from_date \N From Date date sale f \N \N \N \N +3805 325 id \N ir.msg_ID integer sale f \N \N \N \N +3806 325 period \N Period selection sale f \N \N \N \N +3807 325 to_date \N To Date date sale f \N \N \N \N +3808 325 warehouse stock.location Warehouse many2one sale f \N \N \N \N +3809 326 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3810 326 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3811 326 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3812 326 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3813 326 id \N ir.msg_ID integer sale f \N \N \N \N +3814 326 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3815 326 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3816 326 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3817 326 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3818 326 time_series sale.reporting.main.time_series sale.msg_sale_reporting_time_series one2many sale f \N \N \N \N +3819 326 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3820 326 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3821 327 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3822 327 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3823 327 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3824 327 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3825 327 date \N sale.msg_sale_reporting_date date sale f \N \N \N \N +3826 327 id \N ir.msg_ID integer sale f \N \N \N \N +3827 327 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3828 327 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3829 327 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3830 327 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3831 327 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3832 327 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3833 328 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3834 328 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3835 328 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3836 328 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3837 328 customer party.party Customer many2one sale f \N \N \N \N +3838 328 id \N ir.msg_ID integer sale f \N \N \N \N +3839 328 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3840 328 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3841 328 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3842 328 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3843 328 time_series sale.reporting.customer.time_series sale.msg_sale_reporting_time_series one2many sale f \N \N \N \N +3844 328 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3845 328 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3846 329 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3847 329 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3848 329 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3849 329 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3850 329 customer party.party Customer many2one sale f \N \N \N \N +3851 329 date \N sale.msg_sale_reporting_date date sale f \N \N \N \N +3852 329 id \N ir.msg_ID integer sale f \N \N \N \N +3853 329 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3854 329 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3855 329 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3856 329 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3857 329 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3858 329 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3859 330 category party.category Category many2one sale f \N \N \N \N +3860 330 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3861 330 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3862 330 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3863 330 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3864 330 id \N ir.msg_ID integer sale f \N \N \N \N +3865 330 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3866 330 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3867 330 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3868 330 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3869 330 time_series sale.reporting.customer.category.time_series sale.msg_sale_reporting_time_series one2many sale f \N \N \N \N +3870 330 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3871 330 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3872 331 category party.category Category many2one sale f \N \N \N \N +3873 331 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3874 331 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3875 331 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3876 331 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3877 331 date \N sale.msg_sale_reporting_date date sale f \N \N \N \N +3878 331 id \N ir.msg_ID integer sale f \N \N \N \N +3879 331 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3880 331 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3881 331 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3882 331 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3883 331 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3884 331 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3885 332 children sale.reporting.customer.category.tree Children one2many sale f \N \N \N \N +3886 332 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3887 332 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3888 332 currency currency.currency Currency many2one sale f \N \N \N \N +3889 332 id \N ir.msg_ID integer sale f \N \N \N \N +3890 332 name \N Name char sale f \N \N \N \N +3891 332 parent sale.reporting.customer.category.tree Parent many2one sale f \N \N \N \N +3892 332 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3893 332 revenue \N Revenue numeric sale f \N \N \N \N +3894 332 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3895 332 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3896 333 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3897 333 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3898 333 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3899 333 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3900 333 id \N ir.msg_ID integer sale f \N \N \N \N +3901 333 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3902 333 product product.product Product many2one sale f \N \N \N \N +3903 333 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3904 333 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3905 333 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3906 333 time_series sale.reporting.product.time_series sale.msg_sale_reporting_time_series one2many sale f \N \N \N \N +3907 333 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3908 333 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3909 334 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3910 334 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3911 334 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3912 334 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3913 334 date \N sale.msg_sale_reporting_date date sale f \N \N \N \N +3914 334 id \N ir.msg_ID integer sale f \N \N \N \N +3915 334 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3916 334 product product.product Product many2one sale f \N \N \N \N +3917 334 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3918 334 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3919 334 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3920 334 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3921 334 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3922 335 category product.category Category many2one sale f \N \N \N \N +3923 335 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3924 335 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3925 335 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3926 335 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3927 335 id \N ir.msg_ID integer sale f \N \N \N \N +3928 335 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3929 335 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3930 335 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3931 335 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3932 335 time_series sale.reporting.product.category.time_series sale.msg_sale_reporting_time_series one2many sale f \N \N \N \N +3933 335 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3934 335 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3935 336 category product.category Category many2one sale f \N \N \N \N +3936 336 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3937 336 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3938 336 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3939 336 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3940 336 date \N sale.msg_sale_reporting_date date sale f \N \N \N \N +3941 336 id \N ir.msg_ID integer sale f \N \N \N \N +3942 336 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3943 336 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3944 336 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3945 336 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3946 336 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3947 336 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3948 337 children sale.reporting.product.category.tree Children one2many sale f \N \N \N \N +3949 337 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3950 337 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3951 337 currency currency.currency Currency many2one sale f \N \N \N \N +3952 337 id \N ir.msg_ID integer sale f \N \N \N \N +3953 337 name \N Name char sale f \N \N \N \N +3954 337 parent sale.reporting.product.category.tree Parent many2one sale f \N \N \N \N +3955 337 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3956 337 revenue \N Revenue numeric sale f \N \N \N \N +3957 337 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3958 337 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3959 338 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3960 338 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3961 338 currency currency.currency Currency many2one sale f \N \N \N \N +3962 338 id \N ir.msg_ID integer sale f \N \N \N \N +3963 338 name \N Name char sale f \N \N \N \N +3964 338 parent sale.reporting.region.tree Parent many2one sale f \N \N \N \N +3965 338 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3966 338 revenue \N Revenue numeric sale f \N \N \N \N +3967 338 subregions sale.reporting.region.tree Subregions one2many sale f \N \N \N \N +3968 338 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3969 338 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3970 339 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3971 339 country country.country Country many2one sale f \N \N \N \N +3972 339 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3973 339 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3974 339 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3975 339 id \N ir.msg_ID integer sale f \N \N \N \N +3976 339 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3977 339 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3978 339 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3979 339 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3980 339 time_series sale.reporting.country.time_series sale.msg_sale_reporting_time_series one2many sale f \N \N \N \N +3981 339 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3982 339 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3983 340 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3984 340 country country.country Country many2one sale f \N \N \N \N +3985 340 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3986 340 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +3987 340 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +3988 340 date \N sale.msg_sale_reporting_date date sale f \N \N \N \N +3989 340 id \N ir.msg_ID integer sale f \N \N \N \N +3990 340 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +3991 340 rec_name \N ir.msg_record_name char sale f \N \N \N \N +3992 340 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +3993 340 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +3994 340 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +3995 340 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +3996 341 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +3997 341 country country.country Country many2one sale f \N \N \N \N +3998 341 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +3999 341 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +4000 341 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +4001 341 id \N ir.msg_ID integer sale f \N \N \N \N +4002 341 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +4003 341 rec_name \N ir.msg_record_name char sale f \N \N \N \N +4004 341 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +4005 341 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +4006 341 subdivision country.subdivision Subdivision many2one sale f \N \N \N \N +4007 341 time_series sale.reporting.country.subdivision.time_series sale.msg_sale_reporting_time_series one2many sale f \N \N \N \N +4008 341 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +4009 341 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +4010 342 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +4011 342 country country.country Country many2one sale f \N \N \N \N +4012 342 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +4013 342 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +4014 342 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +4015 342 date \N sale.msg_sale_reporting_date date sale f \N \N \N \N +4016 342 id \N ir.msg_ID integer sale f \N \N \N \N +4017 342 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +4018 342 rec_name \N ir.msg_record_name char sale f \N \N \N \N +4019 342 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +4020 342 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +4021 342 subdivision country.subdivision Subdivision many2one sale f \N \N \N \N +4022 342 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +4023 342 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +4024 343 children sale.reporting.country.tree Children one2many sale f \N \N \N \N +4025 343 company company.company sale.msg_sale_reporting_company many2one sale f \N \N \N \N +4026 343 create_date \N ir.msg_created_at timestamp sale f \N \N \N \N +4027 343 create_uid res.user ir.msg_created_by many2one sale f \N \N \N \N +4028 343 currency currency.currency sale.msg_sale_reporting_currency many2one sale f \N \N \N \N +4029 343 id \N ir.msg_ID integer sale f \N \N \N \N +4030 343 number \N sale.msg_sale_reporting_number integer sale.msg_sale_reporting_number_help sale f \N \N \N \N +4031 343 parent sale.reporting.country.tree Parent many2one sale f \N \N \N \N +4032 343 rec_name \N ir.msg_record_name char sale f \N \N \N \N +4033 343 region \N Region char sale f \N \N \N \N +4034 343 revenue \N sale.msg_sale_reporting_revenue numeric sale f \N \N \N \N +4035 343 revenue_trend \N sale.msg_sale_reporting_revenue_trend char sale f \N \N \N \N +4036 343 write_date \N ir.msg_edited_at timestamp sale f \N \N \N \N +4037 343 write_uid res.user ir.msg_edited_by many2one sale f \N \N \N \N +4038 266 sale_exception_state \N Exception State selection sale f \N \N \N \N +4039 266 sales sale.sale Sales many2many sale f \N \N \N \N +4040 120 invima \N Invima char optical_equipment f \N \N \N \N +4041 344 active \N ir.msg_active boolean ir.msg_active_help optical_equipment f \N \N \N \N +4042 344 biomedical_class \N Biomedical Class char optical_equipment f \N \N \N \N +4043 344 calibration \N Apply calibration boolean optical_equipment f \N \N \N \N +4044 344 code \N Code char optical_equipment f \N \N \N \N +4045 344 company company.company Company many2one optical_equipment f \N \N \N \N +4046 344 contract optical_equipment.contract Contract many2one optical_equipment f \N \N \N \N +4047 344 contract_history optical_equipment.contract Contracts one2many optical_equipment f \N \N \N \N +4048 344 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4049 344 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4050 344 equipment_type \N type char optical_equipment f \N \N \N \N +4051 344 health_register \N Health Register char optical_equipment f \N \N \N \N +4052 344 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4053 344 invima \N Invima char optical_equipment f \N \N \N \N +4054 344 location stock.location Location many2one optical_equipment f \N \N \N \N +4055 344 main_tecnology \N Main tecnology char optical_equipment f \N \N \N \N +4056 344 maintenance_frequency \N Maintenance Frequency selection optical_equipment f \N \N \N \N +4057 344 maintenance_history optical_equipment.maintenance-optical_equipment.equipment Maintenances many2many optical_equipment f \N \N \N \N +4058 344 mark_category product.category Mark many2one optical_equipment f \N \N \N \N +4059 344 model_category product.category Model many2one optical_equipment f \N \N \N \N +4060 344 origin_country country.country Origin Country many2one optical_equipment f \N \N \N \N +4061 344 product product.product Product many2one optical_equipment f \N \N \N \N +4062 344 propietary party.party Propietary many2one optical_equipment f \N \N \N \N +4063 344 propietary_address party.address Propietary Address many2one optical_equipment f \N \N \N \N +4064 344 propietarys optical_equipment.equipment-party.party Propietarys many2many optical_equipment f \N \N \N \N +4065 344 purchase_origin \N Purchase Origin reference optical_equipment f \N \N \N \N +4066 344 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4067 344 reference_category product.category Reference many2one optical_equipment f \N \N \N \N +4068 344 refurbish \N Refurbish boolean optical_equipment f \N \N \N \N +4069 344 risk \N Type risk char optical_equipment f \N \N \N \N +4070 344 sale_destination \N Sale Destination reference optical_equipment f \N \N \N \N +4071 344 serial \N Serial char optical_equipment f \N \N \N \N +4072 344 shipment_destination \N Stock Move reference optical_equipment f \N \N \N \N +4073 344 software_version \N Software version char optical_equipment f \N \N \N \N +4074 344 state \N State selection optical_equipment f \N \N \N \N +4075 344 technician_responsible \N Technician Responsible char optical_equipment f \N \N \N \N +4076 344 use \N Use char optical_equipment f \N \N \N \N +4077 344 useful_life \N Useful life integer optical_equipment f \N \N \N \N +4078 344 warranty \N Warranty integer optical_equipment f \N \N \N \N +4079 344 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4080 344 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4081 345 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4082 345 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4083 345 equipment optical_equipment.equipment Equipment many2one optical_equipment f \N \N \N \N +4084 345 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4085 345 party party.party Party many2one optical_equipment f \N \N \N \N +4086 345 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4087 345 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4088 345 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4089 346 company company.company Company many2one Make the subscription belong to the company. optical_equipment f \N \N \N \N +4090 346 contact party.contact_mechanism Contact many2one optical_equipment f \N \N \N \N +4091 346 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4092 346 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4093 346 currency currency.currency Currency many2one optical_equipment f \N \N \N \N +4094 346 current_equipments optical_equipment.contract-optical_equipment.equipment Current Equipments many2many optical_equipment f \N \N \N \N +4095 346 description \N Description char optical_equipment f \N \N \N \N +4096 346 end_date \N End Date date optical_equipment f \N \N \N \N +4097 346 equipment optical_equipment.equipment Equipment many2one optical_equipment f \N \N \N \N +4098 346 history_equipments optical_equipment.equipment Equipments one2many optical_equipment f \N \N \N \N +4099 346 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4100 346 invoice_address party.address Invoice Address many2one optical_equipment f \N \N \N \N +4101 346 maintenance_services optical_equipment_maintenance.service-equipment.contract Prorogues many2many optical_equipment f \N \N \N \N +4102 346 number \N Number char The main identification of the subscription. optical_equipment f \N \N \N \N +4103 346 party party.party Party many2one The party who subscribes. optical_equipment f \N \N \N \N +4104 346 price_contract \N Price Contract numeric optical_equipment f \N \N \N \N +4105 346 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4106 346 reference \N Reference char The identification of an external origin. optical_equipment f \N \N \N \N +4107 346 start_date \N Start Date date optical_equipment f \N \N \N \N +4108 346 state \N State selection The current state of the subscription. optical_equipment f \N \N \N \N +4109 346 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4110 346 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4111 347 contract optical_equipment.contract Contract many2one optical_equipment f \N \N \N \N +4112 347 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4113 347 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4114 347 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4115 347 maintenance_services optical_equipment_maintenance.service Maintenance Service many2one optical_equipment f \N \N \N \N +4116 347 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4117 347 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4118 347 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4119 348 contract optical_equipment.contract Contract many2one optical_equipment f \N \N \N \N +4120 348 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4121 348 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4122 348 equipment optical_equipment.equipment Equipment many2one optical_equipment f \N \N \N \N +4123 348 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4124 348 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4125 348 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4126 348 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4127 349 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4128 349 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4129 349 equipment optical_equipment.equipment Equipment many2one optical_equipment f \N \N \N \N +4130 349 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4131 349 maintenance optical_equipment.maintenance Maintenances many2one optical_equipment f \N \N \N \N +4132 349 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4133 349 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4134 349 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4135 350 change_date \N Change Date date optical_equipment f \N \N \N \N +4136 350 equipments optical_equipment.equipment Equipments many2many optical_equipment f \N \N \N \N +4137 350 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4138 350 new_address party.address New Address many2one optical_equipment f \N \N \N \N +4139 350 new_propietary party.party New Propietary many2one optical_equipment f \N \N \N \N +4140 350 old_propietary party.party Old Propietary many2one optical_equipment f \N \N \N \N +4141 351 change optical_equipment.change_propietary.form Change many2one optical_equipment f \N \N \N \N +4142 351 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4143 351 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4144 351 equipment optical_equipment.equipment Equipment many2one optical_equipment f \N \N \N \N +4145 351 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4146 351 maintenance_service optical_equipment_maintenance.service Maintenance Service many2one optical_equipment f \N \N \N \N +4147 351 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4148 351 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4149 351 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4150 352 estimated_agended \N Date Maintenance datetime optical_equipment f \N \N \N \N +4151 352 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4152 352 maintenance_service optical_equipment_maintenance.service Maintenaince Service many2one optical_equipment f \N \N \N \N +4153 352 technical company.employee Technical many2one optical_equipment f \N \N \N \N +4154 353 estimated_agended \N Date Maintenance datetime optical_equipment f \N \N \N \N +4155 353 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4156 353 maintenance_service optical_equipment_maintenance.service Maintenaince Service many2one optical_equipment f \N \N \N \N +4157 353 technical company.employee Technical many2one optical_equipment f \N \N \N \N +4158 354 agended optical_equipment_maintenance.diary Agended many2one optical_equipment f \N \N \N \N +4159 354 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4160 354 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4161 354 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4162 354 maintenance_service optical_equipment_maintenance.service Maintenance Service many2one optical_equipment f \N \N \N \N +4163 354 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4164 354 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4165 354 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4166 355 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4167 355 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4168 355 d_resolution \N d_resolution float optical_equipment f \N \N \N \N +4169 355 dev_std \N Standart Desviation float optical_equipment f \N \N \N \N +4170 355 diopter \N Diopter float optical_equipment f \N \N \N \N +4171 355 graph_dates \N Graph Dates char optical_equipment f \N \N \N \N +4172 355 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4173 355 k_c_calibration \N K Crt Calibration float optical_equipment f \N \N \N \N +4174 355 maintenance optical_equipment.maintenance Maintenance many2one optical_equipment f \N \N \N \N +4175 355 mean \N Mean float optical_equipment f \N \N \N \N +4176 355 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4177 355 state \N State char optical_equipment f \N \N \N \N +4178 355 t_student \N T Student float optical_equipment f \N \N \N \N +4179 355 uncertain_U_b1 \N U_b1 float optical_equipment f \N \N \N \N +4180 355 uncertain_U_b2_ana \N U_b2 float optical_equipment f \N \N \N \N +4181 355 uncertain_U_b2_dig \N U_b2 float optical_equipment f \N \N \N \N +4182 355 uncertain_combinated \N U_combinated float optical_equipment f \N \N \N \N +4183 355 uncertain_eff \N U eff float optical_equipment f \N \N \N \N +4184 355 uncertain_expanded \N Uexpand float optical_equipment f \N \N \N \N +4185 355 uncertain_pattern \N Uncertain Pattern float optical_equipment f \N \N \N \N +4186 355 uncertain_type_A \N Uncertain Type A float optical_equipment f \N \N \N \N +4187 355 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4188 355 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4189 356 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4190 356 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4191 356 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4192 356 maintenance optical_equipment.maintenance Maintenance many2one optical_equipment f \N \N \N \N +4193 356 mistake \N Mistake float optical_equipment f \N \N \N \N +4194 356 mistake_rate \N % Mistake float optical_equipment f \N \N \N \N +4195 356 number_sample \N Sample # float optical_equipment f \N \N \N \N +4196 356 product \N Product ID integer optical_equipment f \N \N \N \N +4197 356 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4198 356 sequence \N ir.msg_sequence integer optical_equipment f \N \N \N \N +4199 356 value_equipment \N Value in Equipment float optical_equipment f \N \N \N \N +4200 356 value_patterns optical_equipment.product_pattern Value Pattern many2one optical_equipment f \N \N \N \N +4201 356 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4202 356 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4203 357 agended_sequence ir.sequence Agended Sequence many2one optical_equipment f \N \N \N \N +4204 357 contract_sequence ir.sequence Contract Sequence many2one optical_equipment f \N \N \N \N +4205 357 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4206 357 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4207 357 equipment_sequence ir.sequence Equipment Sequence many2one optical_equipment f \N \N \N \N +4208 357 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4209 357 invima \N Invima char optical_equipment f \N \N \N \N +4210 357 maintenance_sequence ir.sequence Maintenance Sequence many2one optical_equipment f \N \N \N \N +4211 357 moisture_max \N Moisture Max float optical_equipment f \N \N \N \N +4212 357 moisture_min \N Moisture Min float optical_equipment f \N \N \N \N +4213 357 moisture_uom product.uom Moisture UOM many2one optical_equipment f \N \N \N \N +4214 357 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4215 357 sale_quote_number ir.sequence Sale Quote Number many2one optical_equipment f \N \N \N \N +4216 357 technician_responsible company.employee Technician Responsible many2one optical_equipment f \N \N \N \N +4217 357 technician_signature \N Technician Signature binary optical_equipment f \N \N \N \N +4218 357 temperature_max \N Temp Max float optical_equipment f \N \N \N \N +4219 357 temperature_min \N Temp Min float optical_equipment f \N \N \N \N +4220 357 temperature_uom product.uom Temperature UOM many2one optical_equipment f \N \N \N \N +4221 357 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4222 357 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4223 358 code \N Code char optical_equipment f \N \N \N \N +4224 358 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4225 358 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4226 358 date_end \N Date End datetime optical_equipment f \N \N \N \N +4227 358 date_estimated \N Estimated Date datetime optical_equipment f \N \N \N \N +4228 358 date_expected \N Expected Date datetime optical_equipment f \N \N \N \N +4229 358 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4230 358 maintenance_service optical_equipment_maintenance.service Maintenance Service many2one optical_equipment f \N \N \N \N +4231 358 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4232 358 state \N State selection optical_equipment f \N \N \N \N +4233 358 technical company.employee Technical many2one optical_equipment f \N \N \N \N +4234 358 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4235 358 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4236 359 company company.company Company many2one Make the subscription belong to the company. optical_equipment f \N \N \N \N +4237 359 contact party.contact_mechanism Contact many2one optical_equipment f \N \N \N \N +4238 359 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4239 359 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4240 359 currency currency.currency Currency many2one optical_equipment f \N \N \N \N +4241 359 end_date \N End Date date optical_equipment f \N \N \N \N +4242 359 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4243 359 invoice_address party.address Invoice Address many2one optical_equipment f \N \N \N \N +4244 359 party party.party Party many2one The party who subscribes. optical_equipment f \N \N \N \N +4245 359 payment_term account.invoice.payment_term Payment Term many2one optical_equipment f \N \N \N \N +4246 359 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4247 359 start_date \N Start Date date optical_equipment f \N \N \N \N +4248 359 unit_price \N Unit Price numeric optical_equipment f \N \N \N \N +4249 359 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4250 359 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4251 111 campus \N Campus boolean optical_equipment f \N \N \N \N +4252 111 party_related party.party Party Related many2one optical_equipment f \N \N \N \N +4253 104 customer_type \N Customer Type selection optical_equipment f \N \N \N \N +4254 204 MEP \N MEP float optical_equipment f \N \N \N \N +4255 204 Usubi \N Usub i integer optical_equipment f \N \N \N \N +4256 204 a_factor_resolution \N (a) Resolution float optical_equipment f \N \N \N \N +4257 204 analog_resolution \N Analog resolution float optical_equipment f \N \N \N \N +4258 204 biomedical_class \N Biomedical Class selection optical_equipment f \N \N \N \N +4259 204 calibration \N Apply calibration boolean optical_equipment f \N \N \N \N +4260 204 check_calibration \N Verificar Calibración boolean optical_equipment f \N \N \N \N +4261 204 check_electric_system \N Revisión del sistema electríco boolean optical_equipment f \N \N \N \N +4262 204 check_equipment \N Revisión del Equipo boolean optical_equipment f \N \N \N \N +4263 204 clean_eyes \N Limpieza de lentes y espejos boolean optical_equipment f \N \N \N \N +4264 204 clean_int_ext \N Limpieza interior y exterior boolean optical_equipment f \N \N \N \N +4265 204 d_resolution \N Resolution d float optical_equipment f \N \N \N \N +4266 204 electrical_equipment \N Electrical Equipment boolean optical_equipment f \N \N \N \N +4267 204 equipment \N It is equipment boolean optical_equipment f \N \N \N \N +4268 204 equipment_type \N Equipment type selection optical_equipment f \N \N \N \N +4269 204 frequency \N Frequency float optical_equipment f \N \N \N \N +4270 204 frequency_uom product.uom Frequency UOM many2one optical_equipment f \N \N \N \N +4271 204 initial_operation \N Verificación inicial de funcionamiento boolean optical_equipment f \N \N \N \N +4272 204 k_pattern \N K Pattern char Agregar valores separados por ',' Ej:-5,+5,-10,+10 optical_equipment f \N \N \N \N +4273 204 k_pattern_list optical_equipment.product_pattern List of patterns K one2many optical_equipment f \N \N \N \N +4274 204 main_tecnology \N Main tecnology selection optical_equipment f \N \N \N \N +4275 204 maintenance_activity \N Maintenance Activity boolean optical_equipment f \N \N \N \N +4276 204 maintenance_required \N Miantenance Required boolean optical_equipment f \N \N \N \N +4277 204 mark_category product.category Mark many2one optical_equipment f \N \N \N \N +4278 204 measuring_range \N Rango de Medición selection optical_equipment f \N \N \N \N +4279 204 model_category product.category Model many2one optical_equipment f \N \N \N \N +4280 204 moisture_max \N Moisture Max float optical_equipment f \N \N \N \N +4281 204 moisture_min \N Moisture Min float optical_equipment f \N \N \N \N +4282 204 moisture_uom product.uom Moisture UOM many2one optical_equipment f \N \N \N \N +4283 204 observation \N Observation text optical_equipment f \N \N \N \N +4284 204 optical \N Optical boolean optical_equipment f \N \N \N \N +4285 204 origin_country country.country Origin Country many2one optical_equipment f \N \N \N \N +4286 204 preventive_activities \N Preventive Activities text optical_equipment f \N \N \N \N +4287 204 product optical_equipment.maintenance Maintenance Activity many2one optical_equipment f \N \N \N \N +4288 204 reference_category product.category Reference many2one optical_equipment f \N \N \N \N +4289 204 refurbish \N Refurbish boolean optical_equipment f \N \N \N \N +4290 204 replacement \N Replacement boolean optical_equipment f \N \N \N \N +4291 204 resolution_type \N Resolution Type selection optical_equipment f \N \N \N \N +4292 204 risk \N Type risk selection optical_equipment f \N \N \N \N +4293 204 software_required \N Software Required boolean optical_equipment f \N \N \N \N +4294 204 software_version \N Software version char optical_equipment f \N \N \N \N +4295 204 temperature_max \N Temp Max float optical_equipment f \N \N \N \N +4296 204 temperature_min \N Temp Min float optical_equipment f \N \N \N \N +4297 204 temperature_uom product.uom Temperature UOM many2one optical_equipment f \N \N \N \N +4298 204 uncertainy_pattern \N Uncertainy Pattern float Agregar valores separados por ',' Ej:-5,+5,-10,+10 optical_equipment f \N \N \N \N +4299 204 use \N Use selection optical_equipment f \N \N \N \N +4300 204 use_pattern optical_equipment.use_pattern Use Pattern many2one optical_equipment f \N \N \N \N +4301 204 useful_life \N Useful life integer optical_equipment f \N \N \N \N +4302 204 voltageAC \N Voltage AC float optical_equipment f \N \N \N \N +4303 204 voltageAC_uom product.uom Voltage AC UOM many2one optical_equipment f \N \N \N \N +4304 204 voltageDC \N Voltage DC float optical_equipment f \N \N \N \N +4305 204 voltageDC_uom product.uom Voltage DC UOM many2one optical_equipment f \N \N \N \N +4306 204 warranty \N Warranty integer optical_equipment f \N \N \N \N +4307 205 MEP \N MEP float optical_equipment f \N \N \N \N +4308 205 Usubi \N Usub i integer optical_equipment f \N \N \N \N +4309 205 a_factor_resolution \N (a) Resolution float optical_equipment f \N \N \N \N +4310 205 analog_resolution \N Analog resolution float optical_equipment f \N \N \N \N +4311 205 biomedical_class \N Biomedical Class selection optical_equipment f \N \N \N \N +4312 205 calibration \N Apply calibration boolean optical_equipment f \N \N \N \N +4313 205 check_calibration \N Verificar Calibración boolean optical_equipment f \N \N \N \N +4314 205 check_electric_system \N Revisión del sistema electríco boolean optical_equipment f \N \N \N \N +4315 205 check_equipment \N Revisión del Equipo boolean optical_equipment f \N \N \N \N +4316 205 clean_eyes \N Limpieza de lentes y espejos boolean optical_equipment f \N \N \N \N +4317 205 clean_int_ext \N Limpieza interior y exterior boolean optical_equipment f \N \N \N \N +4318 205 d_resolution \N Resolution d float optical_equipment f \N \N \N \N +4319 205 electrical_equipment \N Electrical Equipment boolean optical_equipment f \N \N \N \N +4320 205 equipment \N It is equipment boolean optical_equipment f \N \N \N \N +4321 205 equipment_type \N Equipment type selection optical_equipment f \N \N \N \N +4322 205 frequency \N Frequency float optical_equipment f \N \N \N \N +4323 205 frequency_uom product.uom Frequency UOM many2one optical_equipment f \N \N \N \N +4324 205 initial_operation \N Verificación inicial de funcionamiento boolean optical_equipment f \N \N \N \N +4325 205 k_pattern \N K Pattern char Agregar valores separados por ',' Ej:-5,+5,-10,+10 optical_equipment f \N \N \N \N +4326 205 k_pattern_list optical_equipment.product_pattern List of patterns K one2many optical_equipment f \N \N \N \N +4327 205 main_tecnology \N Main tecnology selection optical_equipment f \N \N \N \N +4328 205 maintenance_activity \N Maintenance Activity boolean optical_equipment f \N \N \N \N +4329 205 maintenance_required \N Miantenance Required boolean optical_equipment f \N \N \N \N +4330 205 mark_category product.category Mark many2one optical_equipment f \N \N \N \N +4331 205 measuring_range \N Rango de Medición selection optical_equipment f \N \N \N \N +4332 205 model_category product.category Model many2one optical_equipment f \N \N \N \N +4333 205 moisture_max \N Moisture Max float optical_equipment f \N \N \N \N +4334 205 moisture_min \N Moisture Min float optical_equipment f \N \N \N \N +4335 205 moisture_uom product.uom Moisture UOM many2one optical_equipment f \N \N \N \N +4336 205 observation \N Observation text optical_equipment f \N \N \N \N +4337 205 optical \N Optical boolean optical_equipment f \N \N \N \N +4338 205 origin_country country.country Origin Country many2one optical_equipment f \N \N \N \N +4339 205 preventive_activities \N Preventive Activities text optical_equipment f \N \N \N \N +4340 205 product optical_equipment.maintenance Maintenance Activity many2one optical_equipment f \N \N \N \N +4341 205 reference_category product.category Reference many2one optical_equipment f \N \N \N \N +4342 205 refurbish \N Refurbish boolean optical_equipment f \N \N \N \N +4343 205 replacement \N Replacement boolean optical_equipment f \N \N \N \N +4344 205 resolution_type \N Resolution Type selection optical_equipment f \N \N \N \N +4345 205 risk \N Type risk selection optical_equipment f \N \N \N \N +4346 205 software_required \N Software Required boolean optical_equipment f \N \N \N \N +4347 205 software_version \N Software version char optical_equipment f \N \N \N \N +4348 205 temperature_max \N Temp Max float optical_equipment f \N \N \N \N +4349 205 temperature_min \N Temp Min float optical_equipment f \N \N \N \N +4350 205 temperature_uom product.uom Temperature UOM many2one optical_equipment f \N \N \N \N +4351 205 uncertainy_pattern \N Uncertainy Pattern float Agregar valores separados por ',' Ej:-5,+5,-10,+10 optical_equipment f \N \N \N \N +4352 205 use \N Use selection optical_equipment f \N \N \N \N +4353 205 use_pattern optical_equipment.use_pattern Use Pattern many2one optical_equipment f \N \N \N \N +4354 205 useful_life \N Useful life integer optical_equipment f \N \N \N \N +4355 205 voltageAC \N Voltage AC float optical_equipment f \N \N \N \N +4356 205 voltageAC_uom product.uom Voltage AC UOM many2one optical_equipment f \N \N \N \N +4357 205 voltageDC \N Voltage DC float optical_equipment f \N \N \N \N +4358 205 voltageDC_uom product.uom Voltage DC UOM many2one optical_equipment f \N \N \N \N +4359 205 warranty \N Warranty integer optical_equipment f \N \N \N \N +4360 360 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4361 360 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4362 360 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4363 360 pattern \N Value Pattern float optical_equipment f \N \N \N \N +4364 360 product product.template Template many2one optical_equipment f \N \N \N \N +4365 360 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4366 360 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4367 360 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4368 361 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4369 361 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4370 361 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4371 361 name_pattern \N Name Pattern char optical_equipment f \N \N \N \N +4372 361 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4373 361 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4374 361 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4375 282 equipment_create \N Equipments Creates boolean optical_equipment f \N \N \N \N +4376 285 address_equipment party.address Direccion many2one optical_equipment f \N \N \N \N +4377 285 health_register \N Health Register char optical_equipment f \N \N \N \N +4378 285 origin_country country.country Origin Country many2one optical_equipment f \N \N \N \N +4379 285 product_equipment \N Product Equipment boolean optical_equipment f \N \N \N \N +4380 285 refurbish \N Refurbish boolean optical_equipment f \N \N \N \N +4381 285 serial_equipment \N Serial char optical_equipment f \N \N \N \N +4382 285 software_version \N Software version char optical_equipment f \N \N \N \N +4383 307 agended \N Scheduling boolean optical_equipment f \N \N \N \N +4384 307 contract_ref \N Contract Base reference optical_equipment f \N \N \N \N +4385 307 maintenance_type \N Maintenance Type selection optical_equipment f \N \N \N \N +4386 307 payment_term_description \N Payment Term char optical_equipment f \N \N \N \N +4387 307 quote_number \N Quote Number char optical_equipment f \N \N \N \N +4388 307 sale_type \N Sale Type selection optical_equipment f \N \N \N \N +4389 362 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4390 362 sale_date \N Fecha Venta date optical_equipment f \N \N \N \N +4391 310 product_equipment \N Product Equipment boolean optical_equipment f \N \N \N \N +4392 363 code \N Code char optical_equipment f \N \N \N \N +4393 363 company company.company Company many2one optical_equipment f \N \N \N \N +4394 363 contract_origin \N Contract Base reference optical_equipment f \N \N \N \N +4395 363 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4396 363 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4397 363 current_agended optical_equipment_maintenance.diary Current Agended many2one optical_equipment f \N \N \N \N +4398 363 description \N Description char optical_equipment f \N \N \N \N +4399 363 estimated_agended \N Date Maintenance datetime optical_equipment f \N \N \N \N +4400 363 history_agended optical_equipment_maintenance.service-maintenance.diary History Agended many2many optical_equipment f \N \N \N \N +4401 363 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4402 363 invima \N Invima char optical_equipment f \N \N \N \N +4403 363 lines optical_equipment.maintenance Lines one2many optical_equipment f \N \N \N \N +4404 363 maintenance_type \N Maintenance Type selection optical_equipment f \N \N \N \N +4405 363 moisture_max \N Moisture Max float optical_equipment f \N \N \N \N +4406 363 moisture_min \N Moisture Min float optical_equipment f \N \N \N \N +4407 363 moisture_uom product.uom Moisture UOM many2one optical_equipment f \N \N \N \N +4408 363 propietary party.party Propietary many2one optical_equipment f \N \N \N \N +4409 363 propietary_address party.address Propietary Address many2one optical_equipment f \N \N \N \N +4410 363 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4411 363 reference \N Reference char The identification of an external origin. optical_equipment f \N \N \N \N +4412 363 sale_date \N Sale Date char optical_equipment f \N \N \N \N +4413 363 sale_origin \N Sale Origin reference optical_equipment f \N \N \N \N +4414 363 state \N State selection optical_equipment f \N \N \N \N +4415 363 state_agended \N State Agenda selection optical_equipment f \N \N \N \N +4416 363 technical company.employee Technical many2one optical_equipment f \N \N \N \N +4417 363 technician_responsible \N Technician Responsible char optical_equipment f \N \N \N \N +4418 363 technician_signature \N Technician Signature binary optical_equipment f \N \N \N \N +4419 363 temperature_max \N Temp Max float optical_equipment f \N \N \N \N +4420 363 temperature_min \N Temp Min float optical_equipment f \N \N \N \N +4421 363 temperature_uom product.uom Temperature UOM many2one optical_equipment f \N \N \N \N +4422 363 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4423 363 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4424 364 calibration_total optical_equipment.maintenance.calibration Calibration Total one2many optical_equipment f \N \N \N \N +4425 364 check_calibration \N Verificar Calibración boolean optical_equipment f \N \N \N \N +4426 364 check_electric_system \N Revisión del sistema electríco boolean optical_equipment f \N \N \N \N +4427 364 check_equipment \N Revisión del Equipo boolean optical_equipment f \N \N \N \N +4428 364 clean_eyes \N Limpieza de lentes y espejos boolean optical_equipment f \N \N \N \N +4429 364 clean_int_ext \N Limpieza interior y exterior boolean optical_equipment f \N \N \N \N +4430 364 code \N Code char optical_equipment f \N \N \N \N +4431 364 company company.company Company many2one optical_equipment f \N \N \N \N +4432 364 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4433 364 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4434 364 description_activity \N Activity char optical_equipment f \N \N \N \N +4435 364 equipment optical_equipment.equipment Equipment many2one optical_equipment f \N \N \N \N +4436 364 equipment_calibrate \N Calibrate Equipment boolean optical_equipment f \N \N \N \N +4437 364 graph_calibration \N Graphs binary optical_equipment f \N \N \N \N +4438 364 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4439 364 initial_operation \N Verificación inicial de funcionamiento boolean optical_equipment f \N \N \N \N +4440 364 invima \N Invima char optical_equipment f \N \N \N \N +4441 364 lines_calibration optical_equipment.maintenance.calibration_sample Lines of Calibration one2many optical_equipment f \N \N \N \N +4442 364 maintenance_activity optical_equipment_maintenance.activity Maintenance Activitys one2many optical_equipment f \N \N \N \N +4443 364 maintenance_lines optical_equipment.maintenance.line Lines one2many optical_equipment f \N \N \N \N +4444 364 maintenance_type \N Maintenance Type selection optical_equipment f \N \N \N \N +4445 364 moisture_max \N Moisture Max float optical_equipment f \N \N \N \N +4446 364 moisture_min \N Moisture Min float optical_equipment f \N \N \N \N +4447 364 moisture_uom product.uom Moisture UOM many2one optical_equipment f \N \N \N \N +4448 364 next_maintenance \N Next Maintenance date optical_equipment f \N \N \N \N +4449 364 patterns_equipments \N K Pattern char optical_equipment f \N \N \N \N +4450 364 propietary party.party Propietary many2one optical_equipment f \N \N \N \N +4451 364 propietary_address party.address Propietary Address many2one optical_equipment f \N \N \N \N +4452 364 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4453 364 service_maintenance optical_equipment_maintenance.service Maintenance Service many2one optical_equipment f \N \N \N \N +4454 364 state \N State selection optical_equipment f \N \N \N \N +4455 364 technician_responsible \N Technician Responsible char optical_equipment f \N \N \N \N +4456 364 technician_signature \N Technician Signature binary optical_equipment f \N \N \N \N +4457 364 temperature_max \N Temp Max float optical_equipment f \N \N \N \N +4458 364 temperature_min \N Temp Min float optical_equipment f \N \N \N \N +4459 364 temperature_uom product.uom Temperature UOM many2one optical_equipment f \N \N \N \N +4460 364 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4461 364 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4462 365 company company.company Company many2one optical_equipment f \N \N \N \N +4463 365 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4464 365 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4465 365 description \N Description text optical_equipment f \N \N \N \N +4466 365 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4467 365 line_maintenance_activity \N Maintenance Activity boolean optical_equipment f \N \N \N \N +4468 365 line_replace \N Replace boolean optical_equipment f \N \N \N \N +4469 365 maintenance optical_equipment.maintenance Maintenance many2one optical_equipment f \N \N \N \N +4470 365 maintenance_activity product.product Maintenance activity many2one optical_equipment f \N \N \N \N +4471 365 product_uom_category product.uom.category Product Uom Category many2one optical_equipment f \N \N \N \N +4472 365 quantity \N Quantity float optical_equipment f \N \N \N \N +4473 365 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4474 365 replacement product.product Replacement many2one optical_equipment f \N \N \N \N +4475 365 unit product.uom Unit many2one optical_equipment f \N \N \N \N +4476 365 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4477 365 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4478 366 create_date \N ir.msg_created_at timestamp optical_equipment f \N \N \N \N +4479 366 create_uid res.user ir.msg_created_by many2one optical_equipment f \N \N \N \N +4480 366 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4481 366 maintenance optical_equipment.maintenance Maintenance many2one optical_equipment f \N \N \N \N +4482 366 product product.product Product many2one optical_equipment f \N \N \N \N +4483 366 rec_name \N ir.msg_record_name char optical_equipment f \N \N \N \N +4484 366 write_date \N ir.msg_edited_at timestamp optical_equipment f \N \N \N \N +4485 366 write_uid res.user ir.msg_edited_by many2one optical_equipment f \N \N \N \N +4486 367 change_date \N Change Date date optical_equipment f \N \N \N \N +4487 367 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4488 367 maintenance_service optical_equipment_maintenance.service Maintenance Service many2many optical_equipment f \N \N \N \N +4489 367 new_address party.address New Address many2one optical_equipment f \N \N \N \N +4490 367 new_propietary party.party New Propietary many2one optical_equipment f \N \N \N \N +4491 367 old_propietary party.party Old Propietary many2one optical_equipment f \N \N \N \N +4492 228 equipment optical_equipment.equipment Equipment many2one optical_equipment f \N \N \N \N +4493 228 equipment_serial \N Serial char optical_equipment f \N \N \N \N +4494 228 product_equipment \N It Equipment boolean optical_equipment f \N \N \N \N +4495 228 return_equipment \N Devolución boolean optical_equipment f \N \N \N \N +4496 231 sale_type \N Type sale origin char optical_equipment f \N \N \N \N +4497 231 service_maintenance_initial \N Maintenance Initial boolean optical_equipment f \N \N \N \N +4498 232 sale_type \N Type sale origin char optical_equipment f \N \N \N \N +4499 232 service_maintenance_initial \N Maintenance Initial boolean optical_equipment f \N \N \N \N +4500 368 company company.company Company many2one optical_equipment f \N \N \N \N +4501 368 end_period account.period End Period many2one optical_equipment f \N \N \N \N +4502 368 fiscalyear account.fiscalyear Fiscal Year many2one optical_equipment f \N \N \N \N +4503 368 id \N ir.msg_ID integer optical_equipment f \N \N \N \N +4504 368 party party.party Party many2one optical_equipment f \N \N \N \N +4505 368 party_type \N Party Type selection optical_equipment f \N \N \N \N +4506 368 start_period account.period Start Period many2one optical_equipment f \N \N \N \N +594 52 domain \N Domain char Domain is evaluated with a PYSON context containing:\n- "groups" as list of ids from the current user\n- "companies" as list of ids from the current user ir f \N \N \N \N +\. + + +-- +-- Data for Name: ir_model_field_access; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model_field_access (id, active, create_date, create_uid, description, field, "group", perm_create, perm_delete, perm_read, perm_write, write_date, write_uid) FROM stdin; +1 t 2024-04-13 20:39:03.023425 0 \N 1342 \N t t f f \N \N +2 t 2024-04-13 20:39:03.023425 0 \N 1342 6 t t t f \N \N +3 t 2024-04-13 20:39:03.023425 0 \N 1343 \N t t f f \N \N +4 t 2024-04-13 20:39:03.023425 0 \N 1343 6 t t t f \N \N +5 t 2024-04-13 20:39:03.023425 0 \N 1398 \N t t f f \N \N +6 t 2024-04-13 20:39:03.023425 0 \N 1398 6 t t t f \N \N +7 t 2024-04-13 20:39:03.023425 0 \N 1406 \N t t f f \N \N +8 t 2024-04-13 20:39:03.023425 0 \N 1406 6 t t t f \N \N +9 t 2024-04-13 20:39:03.023425 0 \N 1409 \N t t f f \N \N +10 t 2024-04-13 20:39:03.023425 0 \N 1409 6 t t t f \N \N +11 t 2024-04-13 20:39:03.023425 0 \N 1397 \N t t f f \N \N +12 t 2024-04-13 20:39:03.023425 0 \N 1397 6 t t t f \N \N +13 t 2024-04-13 20:39:03.023425 0 \N 1322 \N t t f f \N \N +14 t 2024-04-13 20:39:03.023425 0 \N 1322 6 t t t f \N \N +15 t 2024-04-13 20:39:03.023425 0 \N 1320 \N t t f f \N \N +16 t 2024-04-13 20:39:03.023425 0 \N 1320 6 t t t f \N \N +17 t 2024-04-13 20:39:03.023425 0 \N 1323 \N t t f f \N \N +18 t 2024-04-13 20:39:03.023425 0 \N 1323 6 t t t f \N \N +19 t 2024-04-13 20:39:03.023425 0 \N 1321 \N t t f f \N \N +20 t 2024-04-13 20:39:03.023425 0 \N 1321 6 t t t f \N \N +21 t 2024-04-13 20:39:03.023425 0 \N 2151 \N t t t f \N \N +22 t 2024-04-13 20:39:03.023425 0 \N 2151 7 t t t t \N \N +23 t 2024-04-13 20:39:03.023425 0 \N 2149 \N t t t f \N \N +24 t 2024-04-13 20:39:03.023425 0 \N 2149 7 t t t t \N \N +25 t 2024-04-13 20:39:03.023425 0 \N 2150 \N t t t f \N \N +26 t 2024-04-13 20:39:03.023425 0 \N 2150 7 t t t t \N \N +27 t 2024-04-13 20:39:03.023425 0 \N 2153 \N t t t f \N \N +28 t 2024-04-13 20:39:03.023425 0 \N 2153 7 t t t t \N \N +29 t 2024-04-13 20:39:03.023425 0 \N 2158 \N t t t f \N \N +30 t 2024-04-13 20:39:03.023425 0 \N 2158 7 t t t t \N \N +31 t 2024-04-13 20:39:09.955992 0 \N 2374 \N t t t f \N \N +32 t 2024-04-13 20:39:09.955992 0 \N 2374 10 t t t t \N \N +33 t 2024-04-13 20:39:16.958214 0 \N 3477 \N t t t f \N \N +34 t 2024-04-13 20:39:16.958214 0 \N 3477 14 t t t t \N \N +35 t 2024-04-13 20:39:19.14446 0 \N 3716 \N t t t f \N \N +36 t 2024-04-13 20:39:19.14446 0 \N 3716 16 t t t t \N \N +37 t 2024-04-13 20:39:19.14446 0 \N 3718 \N t t t f \N \N +38 t 2024-04-13 20:39:19.14446 0 \N 3718 16 t t t t \N \N +39 t 2024-04-13 20:39:19.14446 0 \N 3715 \N t t t f \N \N +40 t 2024-04-13 20:39:19.14446 0 \N 3715 16 t t t t \N \N +\. + + +-- +-- Data for Name: ir_model_log; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_model_log (id, create_date, create_uid, event, resource, target, "user", write_date, write_uid) FROM stdin; +1 2024-04-13 21:37:25.008192 1 write product.template,1 images 1 \N \N +2 2024-04-13 21:37:25.008192 1 write product.image,1 product 1 \N \N +3 2024-04-13 21:42:44.803656 1 write product.template,1 height,height_uom,length,length_uom,moisture_max,moisture_min,temperature_max,temperature_min,volume,volume_uom,weight,weight_uom,width,width_uom 1 \N \N +4 2024-04-13 21:50:36.445087 1 write product.template,1 electrical_equipment,frequency,temperature_min,voltageAC,voltageDC 1 \N \N +5 2024-04-13 21:55:27.847752 1 write product.template,1 electrical_equipment,frequency,voltageAC,voltageDC 1 \N \N +6 2024-04-13 22:02:50.149223 1 write purchase.purchase,1 lines,purchase_date 1 \N \N +7 2024-04-13 22:02:50.183578 1 button purchase.purchase,1 quote 1 \N \N +8 2024-04-13 22:02:50.183578 1 transition purchase.purchase,1 state:quotation 1 \N \N +9 2024-04-13 22:02:57.430352 1 button purchase.purchase,1 confirm 1 \N \N +10 2024-04-13 22:02:57.479999 1 transition purchase.purchase,1 invoice_state:pending 1 \N \N +11 2024-04-13 22:02:57.479999 1 transition purchase.purchase,1 shipment_state:waiting 1 \N \N +12 2024-04-13 22:02:57.479999 1 transition purchase.purchase,1 state:processing 1 \N \N +13 2024-04-13 22:02:59.255234 1 button purchase.purchase,1 create_equipments 1 \N \N +14 2024-04-13 22:04:41.11089 1 button stock.move,1 do 1 \N \N +15 2024-04-13 22:04:41.165863 1 transition purchase.purchase,1 shipment_state:received 1 \N \N +16 2024-04-13 22:40:48.717235 1 write optical_equipment.configuration,1 invima,technician_responsible 1 \N \N +17 2024-04-13 22:42:10.770006 1 write optical_equipment.configuration,1 technician_signature 1 \N \N +\. + + +-- +-- Data for Name: ir_module; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_module (id, create_uid, create_date, write_date, write_uid, name, state) FROM stdin; +1 0 2024-04-13 20:27:29.595886 \N \N ir activated +2 0 2024-04-13 20:27:29.595886 \N \N res activated +7 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 country activated +6 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 currency activated +5 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 party activated +12 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 company activated +4 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 account activated +17 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 product activated +11 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 account_product activated +16 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 product_attribute activated +14 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 product_image activated +18 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 product_measurements activated +9 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 stock activated +10 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 account_invoice activated +15 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 account_invoice_stock activated +13 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 purchase activated +3 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 sale activated +8 0 2024-04-13 20:27:37.296983 2024-04-13 20:38:54.557472 1 optical_equipment activated +\. + + +-- +-- Data for Name: ir_module_config_wizard_item; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_module_config_wizard_item (id, action, create_date, create_uid, sequence, state, write_date, write_uid) FROM stdin; +1 35 2024-04-13 20:27:30.723827 0 10 done 2024-04-13 20:38:09.722298 1 +3 58 2024-04-13 20:27:35.518366 0 10 done 2024-04-13 20:38:16.067081 1 +2 49 2024-04-13 20:27:30.723827 0 10000 done 2024-04-13 20:38:41.646665 1 +4 82 2024-04-13 20:39:02.298155 0 10 done 2024-04-13 20:39:38.213282 1 +5 91 2024-04-13 20:39:03.023425 0 10 done 2024-04-13 20:50:32.60644 1 +\. + + +-- +-- Data for Name: ir_module_dependency; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_module_dependency (id, create_uid, create_date, write_date, write_uid, name, module) FROM stdin; +1 0 2024-04-13 20:27:29.595886 \N \N ir 2 +2 0 2024-04-13 20:27:37.296983 \N \N ir 3 +3 0 2024-04-13 20:27:37.296983 \N \N country 3 +4 0 2024-04-13 20:27:37.296983 \N \N stock 3 +5 0 2024-04-13 20:27:37.296983 \N \N account 3 +6 0 2024-04-13 20:27:37.296983 \N \N account_invoice 3 +7 0 2024-04-13 20:27:37.296983 \N \N res 3 +8 0 2024-04-13 20:27:37.296983 \N \N account_product 3 +9 0 2024-04-13 20:27:37.296983 \N \N company 3 +10 0 2024-04-13 20:27:37.296983 \N \N party 3 +11 0 2024-04-13 20:27:37.296983 \N \N currency 3 +12 0 2024-04-13 20:27:37.296983 \N \N account_invoice_stock 3 +13 0 2024-04-13 20:27:37.296983 \N \N product 3 +14 0 2024-04-13 20:27:37.296983 \N \N ir 4 +15 0 2024-04-13 20:27:37.296983 \N \N company 4 +16 0 2024-04-13 20:27:37.296983 \N \N party 4 +17 0 2024-04-13 20:27:37.296983 \N \N currency 4 +18 0 2024-04-13 20:27:37.296983 \N \N res 4 +19 0 2024-04-13 20:27:37.296983 \N \N ir 5 +20 0 2024-04-13 20:27:37.296983 \N \N country 5 +21 0 2024-04-13 20:27:37.296983 \N \N res 5 +22 0 2024-04-13 20:27:37.296983 \N \N ir 6 +23 0 2024-04-13 20:27:37.296983 \N \N res 6 +24 0 2024-04-13 20:27:37.296983 \N \N ir 7 +25 0 2024-04-13 20:27:37.296983 \N \N res 7 +26 0 2024-04-13 20:27:37.296983 \N \N ir 8 +27 0 2024-04-13 20:27:37.296983 \N \N sale 8 +28 0 2024-04-13 20:27:37.296983 \N \N account_product 8 +29 0 2024-04-13 20:27:37.296983 \N \N company 8 +30 0 2024-04-13 20:27:37.296983 \N \N party 8 +31 0 2024-04-13 20:27:37.296983 \N \N product_image 8 +32 0 2024-04-13 20:27:37.296983 \N \N purchase 8 +33 0 2024-04-13 20:27:37.296983 \N \N product_attribute 8 +34 0 2024-04-13 20:27:37.296983 \N \N product 8 +35 0 2024-04-13 20:27:37.296983 \N \N product_measurements 8 +36 0 2024-04-13 20:27:37.296983 \N \N ir 9 +37 0 2024-04-13 20:27:37.296983 \N \N company 9 +38 0 2024-04-13 20:27:37.296983 \N \N party 9 +39 0 2024-04-13 20:27:37.296983 \N \N currency 9 +40 0 2024-04-13 20:27:37.296983 \N \N product 9 +41 0 2024-04-13 20:27:37.296983 \N \N res 9 +42 0 2024-04-13 20:27:37.296983 \N \N ir 10 +43 0 2024-04-13 20:27:37.296983 \N \N account 10 +44 0 2024-04-13 20:27:37.296983 \N \N res 10 +45 0 2024-04-13 20:27:37.296983 \N \N account_product 10 +46 0 2024-04-13 20:27:37.296983 \N \N company 10 +47 0 2024-04-13 20:27:37.296983 \N \N party 10 +48 0 2024-04-13 20:27:37.296983 \N \N currency 10 +49 0 2024-04-13 20:27:37.296983 \N \N product 10 +50 0 2024-04-13 20:27:37.296983 \N \N ir 11 +51 0 2024-04-13 20:27:37.296983 \N \N account 11 +52 0 2024-04-13 20:27:37.296983 \N \N product 11 +53 0 2024-04-13 20:27:37.296983 \N \N company 11 +54 0 2024-04-13 20:27:37.296983 \N \N ir 12 +55 0 2024-04-13 20:27:37.296983 \N \N res 12 +56 0 2024-04-13 20:27:37.296983 \N \N party 12 +57 0 2024-04-13 20:27:37.296983 \N \N currency 12 +58 0 2024-04-13 20:27:37.296983 \N \N ir 13 +59 0 2024-04-13 20:27:37.296983 \N \N stock 13 +60 0 2024-04-13 20:27:37.296983 \N \N account 13 +61 0 2024-04-13 20:27:37.296983 \N \N account_invoice 13 +62 0 2024-04-13 20:27:37.296983 \N \N res 13 +63 0 2024-04-13 20:27:37.296983 \N \N account_product 13 +64 0 2024-04-13 20:27:37.296983 \N \N company 13 +65 0 2024-04-13 20:27:37.296983 \N \N party 13 +66 0 2024-04-13 20:27:37.296983 \N \N currency 13 +67 0 2024-04-13 20:27:37.296983 \N \N account_invoice_stock 13 +68 0 2024-04-13 20:27:37.296983 \N \N product 13 +69 0 2024-04-13 20:27:37.296983 \N \N ir 14 +70 0 2024-04-13 20:27:37.296983 \N \N product 14 +71 0 2024-04-13 20:27:37.296983 \N \N stock 15 +72 0 2024-04-13 20:27:37.296983 \N \N account_invoice 15 +73 0 2024-04-13 20:27:37.296983 \N \N product 15 +74 0 2024-04-13 20:27:37.296983 \N \N ir 15 +75 0 2024-04-13 20:27:37.296983 \N \N ir 16 +76 0 2024-04-13 20:27:37.296983 \N \N product 16 +77 0 2024-04-13 20:27:37.296983 \N \N ir 17 +78 0 2024-04-13 20:27:37.296983 \N \N company 17 +79 0 2024-04-13 20:27:37.296983 \N \N res 17 +80 0 2024-04-13 20:27:37.296983 \N \N ir 18 +81 0 2024-04-13 20:27:37.296983 \N \N product 18 +82 0 2024-04-13 20:27:37.296983 \N \N res 18 +\. + + +-- +-- Data for Name: ir_note; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_note (id, copy_to_resources, create_date, create_uid, message, resource, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_note_read; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_note_read (id, create_date, create_uid, note, "user", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_queue; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_queue (id, create_date, create_uid, data, dequeued_at, enqueued_at, expected_at, finished_at, name, scheduled_at, write_date, write_uid) FROM stdin; +1 2024-04-13 22:02:57.430352 0 {"args": [], "user": 1, "model": "purchase.purchase", "kwargs": {}, "method": "process", "context": {"client": "355c8f71-e5a3-4c2a-b4c3-d3f48a7debf8", "groups": [6, 8, 7, 10, 1, 20, 4, 19, 2, 5, 18, 21, 3, 9, 14, 15, 16, 17, 11, 12, 13], "locale": {"date": "%m/%d/%Y", "grouping": [3, 3, 0], "n_sign_posn": 1, "p_sign_posn": 1, "mon_grouping": [3, 3, 0], "decimal_point": ".", "n_cs_precedes": true, "negative_sign": "-", "p_cs_precedes": true, "positive_sign": "", "thousands_sep": ",", "n_sep_by_space": false, "p_sep_by_space": false, "mon_decimal_point": ".", "mon_thousands_sep": ","}, "company": 1, "_request": {"scheme": "http", "http_host": "localhost:28000", "is_secure": false, "remote_addr": "172.39.0.1"}, "company_filter": "one", "company.rec_name": "Smart Vision S.A.S", "language_direction": "ltr"}, "instances": [1]} 2024-04-13 22:02:57.65865 2024-04-13 22:02:57.464178 \N 2024-04-13 22:02:57.658655 default \N 2024-04-13 22:02:57.479999 0 +2 2024-04-13 22:04:41.11089 0 {"args": [], "user": 1, "model": "purchase.purchase", "kwargs": {}, "method": "process", "context": {"client": "355c8f71-e5a3-4c2a-b4c3-d3f48a7debf8", "groups": [6, 8, 7, 10, 1, 20, 4, 19, 2, 5, 18, 21, 3, 9, 14, 15, 16, 17, 11, 12, 13], "locale": {"date": "%m/%d/%Y", "grouping": [3, 3, 0], "n_sign_posn": 1, "p_sign_posn": 1, "mon_grouping": [3, 3, 0], "decimal_point": ".", "n_cs_precedes": true, "negative_sign": "-", "p_cs_precedes": true, "positive_sign": "", "thousands_sep": ",", "n_sep_by_space": false, "p_sep_by_space": false, "mon_decimal_point": ".", "mon_thousands_sep": ","}, "company": 1, "_request": {"scheme": "http", "http_host": "localhost:28000", "is_secure": false, "remote_addr": "172.39.0.1"}, "company_filter": "one", "company.rec_name": "Smart Vision S.A.S", "language_direction": "ltr"}, "instances": [1]} 2024-04-13 22:04:41.202334 2024-04-13 22:04:41.151494 \N 2024-04-13 22:04:41.202341 default \N 2024-04-13 22:04:41.165863 0 +\. + + +-- +-- Data for Name: ir_rule; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_rule (id, create_date, create_uid, domain, rule_group, write_date, write_uid) FROM stdin; +1 2024-04-13 20:27:35.518366 0 [["user", "=", {"__class__": "Eval", "d": -1, "v": "user_id"}]] 1 \N \N +2 2024-04-13 20:27:35.518366 0 [["user", "=", {"__class__": "Eval", "d": -1, "v": "user_id"}]] 2 \N \N +3 2024-04-13 20:27:35.518366 0 [] 3 \N \N +4 2024-04-13 20:27:35.518366 0 [["groups", "in", {"__class__": "Eval", "d": [], "v": "groups"}]] 4 \N \N +5 2024-04-13 20:27:35.518366 0 [["groups", "=", null]] 4 \N \N +6 2024-04-13 20:27:35.518366 0 [["groups", "in", {"__class__": "Eval", "d": [], "v": "groups"}]] 5 \N \N +7 2024-04-13 20:27:35.518366 0 [["groups", "=", null]] 5 \N \N +8 2024-04-13 20:27:35.518366 0 [["sequence_type.groups", "in", {"__class__": "Eval", "d": [], "v": "groups"}]] 6 \N \N +9 2024-04-13 20:27:35.518366 0 [["sequence_type.groups", "in", {"__class__": "Eval", "d": [], "v": "groups"}]] 7 \N \N +10 2024-04-13 20:39:02.298155 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 8 \N \N +11 2024-04-13 20:39:02.298155 0 [["company", "=", null]] 8 \N \N +12 2024-04-13 20:39:02.298155 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 9 \N \N +13 2024-04-13 20:39:02.298155 0 [["company", "=", null]] 9 \N \N +14 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 10 \N \N +15 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 11 \N \N +16 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 12 \N \N +17 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 13 \N \N +18 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 14 \N \N +19 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 15 \N \N +20 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 16 \N \N +21 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 17 \N \N +22 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 18 \N \N +23 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 19 \N \N +24 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 20 \N \N +25 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 21 \N \N +26 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 22 \N \N +27 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 23 \N \N +28 2024-04-13 20:39:03.023425 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 24 \N \N +29 2024-04-13 20:39:09.955992 0 [["accounting", "=", false]] 25 \N \N +30 2024-04-13 20:39:09.955992 0 [["accounting", "=", true]] 26 \N \N +31 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 27 \N \N +32 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 28 \N \N +33 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 29 \N \N +34 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 30 \N \N +35 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 31 \N \N +36 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 32 \N \N +37 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 33 \N \N +38 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 34 \N \N +39 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 35 \N \N +40 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 36 \N \N +41 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 37 \N \N +42 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 38 \N \N +43 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 39 \N \N +44 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 40 \N \N +45 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 41 \N \N +46 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 42 \N \N +47 2024-04-13 20:39:10.936653 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 43 \N \N +48 2024-04-13 20:39:14.878373 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 44 \N \N +49 2024-04-13 20:39:14.878373 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 45 \N \N +50 2024-04-13 20:39:14.878373 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 46 \N \N +51 2024-04-13 20:39:14.878373 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 47 \N \N +52 2024-04-13 20:39:16.958214 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 48 \N \N +53 2024-04-13 20:39:16.958214 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 49 \N \N +54 2024-04-13 20:39:16.958214 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 50 \N \N +55 2024-04-13 20:39:16.958214 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 51 \N \N +56 2024-04-13 20:39:16.958214 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 52 \N \N +57 2024-04-13 20:39:16.958214 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 53 \N \N +58 2024-04-13 20:39:16.958214 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 54 \N \N +59 2024-04-13 20:39:16.958214 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 55 \N \N +60 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 56 \N \N +61 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 57 \N \N +62 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 58 \N \N +63 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 59 \N \N +64 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 60 \N \N +65 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 61 \N \N +66 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 62 \N \N +67 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 63 \N \N +68 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 64 \N \N +69 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 65 \N \N +70 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 66 \N \N +71 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 67 \N \N +72 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 68 \N \N +73 2024-04-13 20:39:19.14446 0 [["company", "in", {"__class__": "Eval", "d": [], "v": "companies"}]] 69 \N \N +\. + + +-- +-- Data for Name: ir_rule_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_rule_group (id, create_date, create_uid, default_p, global_p, model, name, perm_create, perm_delete, perm_read, perm_write, write_date, write_uid) FROM stdin; +1 2024-04-13 20:27:35.518366 0 f t 83 Own warning t t t t \N \N +2 2024-04-13 20:27:35.518366 0 t f 84 Own user application t t t t \N \N +3 2024-04-13 20:27:35.518366 0 f f 84 Any user application t t t t \N \N +4 2024-04-13 20:27:35.518366 0 f t 13 User in groups t t t t \N \N +5 2024-04-13 20:27:35.518366 0 f t 22 User in groups t t t t \N \N +6 2024-04-13 20:27:35.518366 0 f t 11 User in groups t t f t \N \N +7 2024-04-13 20:27:35.518366 0 f t 12 User in groups t t f t \N \N +8 2024-04-13 20:39:02.298155 0 f t 11 User in companies t t t t \N \N +9 2024-04-13 20:39:02.298155 0 f t 12 User in companies t t t t \N \N +10 2024-04-13 20:39:03.023425 0 f t 128 User in companies t t t t \N \N +11 2024-04-13 20:39:03.023425 0 f t 131 User in companies t t t t \N \N +12 2024-04-13 20:39:03.023425 0 f t 136 User in companies t t t t \N \N +13 2024-04-13 20:39:03.023425 0 f t 138 User in companies t t t t \N \N +14 2024-04-13 20:39:03.023425 0 f t 139 User in companies t t t t \N \N +15 2024-04-13 20:39:03.023425 0 f t 150 User in companies t t t t \N \N +16 2024-04-13 20:39:03.023425 0 f t 125 User in companies t t t t \N \N +17 2024-04-13 20:39:03.023425 0 f t 156 User in companies t t t t \N \N +18 2024-04-13 20:39:03.023425 0 f t 161 User in companies t t t t \N \N +19 2024-04-13 20:39:03.023425 0 f t 162 User in companies t t t t \N \N +20 2024-04-13 20:39:03.023425 0 f t 166 User in companies t t t t \N \N +21 2024-04-13 20:39:03.023425 0 f t 192 User in companies t t t t \N \N +22 2024-04-13 20:39:03.023425 0 f t 179 User in companies t t t t \N \N +23 2024-04-13 20:39:03.023425 0 f t 184 User in companies t t t t \N \N +24 2024-04-13 20:39:03.023425 0 f t 187 User in companies t t t t \N \N +25 2024-04-13 20:39:09.955992 0 t f 203 Not accounting category t t f t \N \N +26 2024-04-13 20:39:09.955992 0 f f 203 Any category t t f t \N \N +27 2024-04-13 20:39:10.936653 0 f t 244 User in companies t t t t \N \N +28 2024-04-13 20:39:10.936653 0 f t 240 User in companies t t t t \N \N +29 2024-04-13 20:39:10.936653 0 f t 242 User in companies t t t t \N \N +30 2024-04-13 20:39:10.936653 0 f t 229 User in companies t t t t \N \N +31 2024-04-13 20:39:10.936653 0 f t 230 User in companies t t t t \N \N +32 2024-04-13 20:39:10.936653 0 f t 231 User in companies t t t t \N \N +33 2024-04-13 20:39:10.936653 0 f t 232 User in companies t t t t \N \N +34 2024-04-13 20:39:10.936653 0 f t 233 User in companies t t t t \N \N +35 2024-04-13 20:39:10.936653 0 f t 228 User in companies t t t t \N \N +36 2024-04-13 20:39:10.936653 0 f t 246 User in companies t t t t \N \N +37 2024-04-13 20:39:10.936653 0 f t 237 User in companies t t t t \N \N +38 2024-04-13 20:39:10.936653 0 f t 254 User in companies t t t t \N \N +39 2024-04-13 20:39:10.936653 0 f t 255 User in companies t t t t \N \N +40 2024-04-13 20:39:10.936653 0 f t 256 User in companies t t t t \N \N +41 2024-04-13 20:39:10.936653 0 f t 257 User in companies t t t t \N \N +42 2024-04-13 20:39:10.936653 0 f t 258 User in companies t t t t \N \N +43 2024-04-13 20:39:10.936653 0 f t 259 User in companies t t t t \N \N +44 2024-04-13 20:39:14.878373 0 f t 280 User in companies t t t t \N \N +45 2024-04-13 20:39:14.878373 0 f t 266 User in companies t t t t \N \N +46 2024-04-13 20:39:14.878373 0 f t 270 User in companies t t t t \N \N +47 2024-04-13 20:39:14.878373 0 f t 279 User in companies t t t t \N \N +48 2024-04-13 20:39:16.958214 0 f t 289 User in companies t t t t \N \N +49 2024-04-13 20:39:16.958214 0 f t 282 User in companies t t t t \N \N +50 2024-04-13 20:39:16.958214 0 f t 301 User in companies t t t t \N \N +51 2024-04-13 20:39:16.958214 0 f t 302 User in companies t t t t \N \N +52 2024-04-13 20:39:16.958214 0 f t 303 User in companies t t t t \N \N +53 2024-04-13 20:39:16.958214 0 f t 304 User in companies t t t t \N \N +54 2024-04-13 20:39:16.958214 0 f t 305 User in companies t t t t \N \N +55 2024-04-13 20:39:16.958214 0 f t 306 User in companies t t t t \N \N +56 2024-04-13 20:39:19.14446 0 f t 307 User in companies t t t t \N \N +57 2024-04-13 20:39:19.14446 0 f t 326 User in companies t t t t \N \N +58 2024-04-13 20:39:19.14446 0 f t 327 User in companies t t t t \N \N +59 2024-04-13 20:39:19.14446 0 f t 328 User in companies t t t t \N \N +60 2024-04-13 20:39:19.14446 0 f t 329 User in companies t t t t \N \N +61 2024-04-13 20:39:19.14446 0 f t 330 User in companies t t t t \N \N +62 2024-04-13 20:39:19.14446 0 f t 331 User in companies t t t t \N \N +63 2024-04-13 20:39:19.14446 0 f t 333 User in companies t t t t \N \N +64 2024-04-13 20:39:19.14446 0 f t 334 User in companies t t t t \N \N +65 2024-04-13 20:39:19.14446 0 f t 335 User in companies t t t t \N \N +66 2024-04-13 20:39:19.14446 0 f t 336 User in companies t t t t \N \N +67 2024-04-13 20:39:19.14446 0 f t 343 User in companies t t t t \N \N +68 2024-04-13 20:39:19.14446 0 f t 340 User in companies t t t t \N \N +69 2024-04-13 20:39:19.14446 0 f t 342 User in companies t t t t \N \N +\. + + +-- +-- Data for Name: ir_rule_group-res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_rule_group-res_group" (id, create_date, create_uid, "group", rule_group, write_date, write_uid) FROM stdin; +1 2024-04-13 20:27:35.518366 0 1 3 \N \N +2 2024-04-13 20:39:09.955992 0 10 26 \N \N +\. + + +-- +-- Data for Name: ir_sequence; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_sequence (id, active, create_date, create_uid, last_timestamp, name, number_increment, number_next_internal, padding, prefix, sequence_type, suffix, timestamp_offset, timestamp_rounding, type, write_date, write_uid, company) FROM stdin; +1 t 2024-04-13 20:39:01.136154 0 0 Party 1 1 0 \N 1 \N 946681200 1 incremental 2024-04-13 20:39:01.136154 0 \N +2 t 2024-04-13 20:39:03.023425 0 0 Default Account Journal 1 1 0 \N 2 \N 946681200 1 incremental 2024-04-13 20:39:03.023425 0 \N +3 t 2024-04-13 20:39:03.023425 0 0 Default Account Move Reconciliation 1 1 0 \N 4 \N 946681200 1 incremental 2024-04-13 20:39:03.023425 0 \N +4 t 2024-04-13 20:39:10.936653 0 0 Customer Shipment 1 1 0 \N 7 \N 946681200 1 incremental 2024-04-13 20:39:10.936653 0 \N +5 t 2024-04-13 20:39:10.936653 0 0 Supplier Shipment 1 1 0 \N 8 \N 946681200 1 incremental 2024-04-13 20:39:10.936653 0 \N +6 t 2024-04-13 20:39:10.936653 0 0 Internal Shipment 1 1 0 \N 9 \N 946681200 1 incremental 2024-04-13 20:39:10.936653 0 \N +7 t 2024-04-13 20:39:10.936653 0 0 Customer Return Shipment 1 1 0 \N 10 \N 946681200 1 incremental 2024-04-13 20:39:10.936653 0 \N +8 t 2024-04-13 20:39:10.936653 0 0 Supplier Return Shipment 1 1 0 \N 11 \N 946681200 1 incremental 2024-04-13 20:39:10.936653 0 \N +9 t 2024-04-13 20:39:10.936653 0 0 Inventory 1 1 0 \N 12 \N 946681200 1 incremental 2024-04-13 20:39:10.936653 0 \N +10 t 2024-04-13 20:39:16.958214 0 0 Purchase 1 1 0 \N 14 \N 946681200 1 incremental 2024-04-13 20:39:16.958214 0 \N +11 t 2024-04-13 20:39:19.14446 0 0 Sale 1 1 0 \N 15 \N 946681200 1 incremental 2024-04-13 20:39:19.14446 0 \N +12 t 2024-04-13 20:39:21.814652 0 0 Contract 1 1 0 \N 16 \N 946681200 1 incremental 2024-04-13 20:39:21.814652 0 \N +13 t 2024-04-13 20:39:21.814652 0 0 Agended 1 1 0 \N 17 \N 946681200 1 incremental 2024-04-13 20:39:21.814652 0 \N +14 t 2024-04-13 20:39:21.814652 0 0 Equipment 1 1 0 \N 18 \N 946681200 1 incremental 2024-04-13 20:39:21.814652 0 \N +15 t 2024-04-13 20:39:21.814652 0 0 Maintenance 1 1 0 \N 19 \N 946681200 1 incremental 2024-04-13 20:39:21.814652 0 \N +16 t 2024-04-13 20:39:21.814652 0 0 Sale Quote 1 1 0 \N 15 \N 946681200 1 incremental 2024-04-13 20:39:21.814652 0 \N +\. + + +-- +-- Data for Name: ir_sequence_strict; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_sequence_strict (id, active, create_date, create_uid, last_timestamp, name, number_increment, number_next_internal, padding, prefix, sequence_type, suffix, timestamp_offset, timestamp_rounding, type, write_date, write_uid, company) FROM stdin; +\. + + +-- +-- Data for Name: ir_sequence_type; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_sequence_type (id, create_date, create_uid, name, write_date, write_uid) FROM stdin; +1 2024-04-13 20:39:01.136154 0 Party \N \N +2 2024-04-13 20:39:03.023425 0 Account Journal \N \N +3 2024-04-13 20:39:03.023425 0 Account Move \N \N +4 2024-04-13 20:39:03.023425 0 Account Move Reconciliation \N \N +5 2024-04-13 20:39:08.573524 0 Variant \N \N +6 2024-04-13 20:39:08.573524 0 Product \N \N +7 2024-04-13 20:39:10.936653 0 Customer Shipment \N \N +8 2024-04-13 20:39:10.936653 0 Supplier Shipment \N \N +9 2024-04-13 20:39:10.936653 0 Internal Shipment \N \N +10 2024-04-13 20:39:10.936653 0 Customer Return Shipment \N \N +11 2024-04-13 20:39:10.936653 0 Supplier Return Shipment \N \N +12 2024-04-13 20:39:10.936653 0 Inventory \N \N +13 2024-04-13 20:39:14.878373 0 Invoice \N \N +14 2024-04-13 20:39:16.958214 0 Purchase \N \N +15 2024-04-13 20:39:19.14446 0 Sale \N \N +16 2024-04-13 20:39:21.814652 0 Contract \N \N +17 2024-04-13 20:39:21.814652 0 Agended \N \N +18 2024-04-13 20:39:21.814652 0 Equipment \N \N +19 2024-04-13 20:39:21.814652 0 Maintenances \N \N +\. + + +-- +-- Data for Name: ir_sequence_type-res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_sequence_type-res_group" (id, create_date, create_uid, "group", sequence_type, write_date, write_uid) FROM stdin; +1 2024-04-13 20:39:01.136154 0 1 1 \N \N +2 2024-04-13 20:39:01.136154 0 3 1 \N \N +3 2024-04-13 20:39:03.023425 0 1 2 \N \N +4 2024-04-13 20:39:03.023425 0 8 2 \N \N +5 2024-04-13 20:39:03.023425 0 1 3 \N \N +6 2024-04-13 20:39:03.023425 0 8 3 \N \N +7 2024-04-13 20:39:03.023425 0 1 4 \N \N +8 2024-04-13 20:39:03.023425 0 8 4 \N \N +9 2024-04-13 20:39:08.573524 0 1 5 \N \N +10 2024-04-13 20:39:08.573524 0 9 5 \N \N +11 2024-04-13 20:39:08.573524 0 1 6 \N \N +12 2024-04-13 20:39:08.573524 0 9 6 \N \N +13 2024-04-13 20:39:10.936653 0 1 7 \N \N +14 2024-04-13 20:39:10.936653 0 12 7 \N \N +15 2024-04-13 20:39:10.936653 0 1 8 \N \N +16 2024-04-13 20:39:10.936653 0 12 8 \N \N +17 2024-04-13 20:39:10.936653 0 1 9 \N \N +18 2024-04-13 20:39:10.936653 0 12 9 \N \N +19 2024-04-13 20:39:10.936653 0 1 10 \N \N +20 2024-04-13 20:39:10.936653 0 12 10 \N \N +21 2024-04-13 20:39:10.936653 0 1 11 \N \N +22 2024-04-13 20:39:10.936653 0 12 11 \N \N +23 2024-04-13 20:39:10.936653 0 1 12 \N \N +24 2024-04-13 20:39:10.936653 0 12 12 \N \N +25 2024-04-13 20:39:14.878373 0 1 13 \N \N +26 2024-04-13 20:39:14.878373 0 8 13 \N \N +27 2024-04-13 20:39:16.958214 0 1 14 \N \N +28 2024-04-13 20:39:16.958214 0 15 14 \N \N +29 2024-04-13 20:39:19.14446 0 1 15 \N \N +30 2024-04-13 20:39:19.14446 0 17 15 \N \N +31 2024-04-13 20:39:21.814652 0 1 16 \N \N +32 2024-04-13 20:39:21.814652 0 19 16 \N \N +33 2024-04-13 20:39:21.814652 0 1 17 \N \N +34 2024-04-13 20:39:21.814652 0 20 17 \N \N +35 2024-04-13 20:39:21.814652 0 1 18 \N \N +36 2024-04-13 20:39:21.814652 0 18 18 \N \N +37 2024-04-13 20:39:21.814652 0 1 19 \N \N +38 2024-04-13 20:39:21.814652 0 21 19 \N \N +\. + + +-- +-- Data for Name: ir_session; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_session (id, create_date, create_uid, key, write_date, write_uid) FROM stdin; +1 2024-04-13 20:37:02.127267 1 ff12a90f55e2b37f054635c7d908e8342abd01d2ee73f0e044ea8be4f32d4016 2024-04-13 20:55:20.470512 0 +\. + + +-- +-- Data for Name: ir_session_wizard; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_session_wizard (id, create_date, create_uid, data, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_translation; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_translation (id, lang, src, name, res_id, value, type, module, fuzzy, create_date, create_uid, overriding_module, write_date, write_uid) FROM stdin; +1 en Configuration ir.configuration,name -1 model ir f 2024-04-13 20:27:30.820064 0 \N \N \N +4 en Translation ir.translation,name -1 model ir f 2024-04-13 20:27:30.820064 0 \N \N \N +22 en Set Translation ir.translation.set.start,name -1 model ir f \N \N \N \N \N +23 en Set Translation ir.translation.set.succeed,name -1 model ir f \N \N \N \N \N +24 en Clean translation ir.translation.clean.start,name -1 model ir f \N \N \N \N \N +25 en Clean translation ir.translation.clean.succeed,name -1 model ir f \N \N \N \N \N +26 en Update translation ir.translation.update.start,name -1 model ir f \N \N \N \N \N +28 en Export translation ir.translation.export.start,name -1 model ir f \N \N \N \N \N +31 en Export translation ir.translation.export.result,name -1 model ir f \N \N \N \N \N +36 en Sequence type ir.sequence.type,name -1 model ir f \N \N \N \N \N +38 en Sequence ir.sequence,name -1 model ir f \N \N \N \N \N +2 en Hostname ir.configuration,hostname -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +3 en language ir.configuration,language -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +5 en Fuzzy ir.translation,fuzzy -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +6 en Language ir.translation,lang -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +7 en Model ir.translation,model -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +8 en Module ir.translation,module -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +9 en Field Name ir.translation,name -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +10 en Overriding Module ir.translation,overriding_module -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +11 en Resource ID ir.translation,res_id -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +12 en Source ir.translation,src -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +13 en Type ir.translation,type -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +14 en Field ir.translation,type -1 selection ir f 2024-04-13 20:27:30.820064 0 \N \N \N +15 en Model ir.translation,type -1 selection ir f 2024-04-13 20:27:30.820064 0 \N \N \N +16 en Report ir.translation,type -1 selection ir f 2024-04-13 20:27:30.820064 0 \N \N \N +17 en Selection ir.translation,type -1 selection ir f 2024-04-13 20:27:30.820064 0 \N \N \N +18 en View ir.translation,type -1 selection ir f 2024-04-13 20:27:30.820064 0 \N \N \N +19 en Wizard Button ir.translation,type -1 selection ir f 2024-04-13 20:27:30.820064 0 \N \N \N +20 en Help ir.translation,type -1 selection ir f 2024-04-13 20:27:30.820064 0 \N \N \N +21 en Translation Value ir.translation,value -1 field ir f 2024-04-13 20:27:30.820064 0 \N \N \N +27 en Language ir.translation.update.start,language -1 field ir f \N \N \N \N \N +29 en Language ir.translation.export.start,language -1 field ir f \N \N \N \N \N +30 en Module ir.translation.export.start,module -1 field ir f \N \N \N \N \N +32 en File ir.translation.export.result,file -1 field ir f \N \N \N \N \N +33 en Filename ir.translation.export.result,filename -1 field ir f \N \N \N \N \N +34 en Language ir.translation.export.result,language -1 field ir f \N \N \N \N \N +35 en Module ir.translation.export.result,module -1 field ir f \N \N \N \N \N +37 en Sequence Name ir.sequence.type,name -1 field ir f \N \N \N \N \N +39 en Last Timestamp ir.sequence,last_timestamp -1 field ir f \N \N \N \N \N +40 en Sequence Name ir.sequence,name -1 field ir f \N \N \N \N \N +41 en Increment Number ir.sequence,number_increment -1 field ir f \N \N \N \N \N +42 en Next Number ir.sequence,number_next -1 field ir f \N \N \N \N \N +43 en Next Number ir.sequence,number_next_internal -1 field ir f \N \N \N \N \N +44 en Number padding ir.sequence,padding -1 field ir f \N \N \N \N \N +45 en Prefix ir.sequence,prefix -1 field ir f \N \N \N \N \N +46 en The current date can be used formatted using strftime format suffixed with underscores: i.e: ${date_Y} ir.sequence,prefix -1 help ir f \N \N \N \N \N +47 en Preview ir.sequence,preview -1 field ir f \N \N \N \N \N +48 en Sequence Type ir.sequence,sequence_type -1 field ir f \N \N \N \N \N +49 en Suffix ir.sequence,suffix -1 field ir f \N \N \N \N \N +50 en The current date can be used formatted using strftime format suffixed with underscores: i.e: ${date_Y} ir.sequence,suffix -1 help ir f \N \N \N \N \N +51 en Timestamp Offset ir.sequence,timestamp_offset -1 field ir f \N \N \N \N \N +52 en Timestamp Rounding ir.sequence,timestamp_rounding -1 field ir f \N \N \N \N \N +53 en Type ir.sequence,type -1 field ir f \N \N \N \N \N +54 en Incremental ir.sequence,type -1 selection ir f \N \N \N \N \N +55 en Decimal Timestamp ir.sequence,type -1 selection ir f \N \N \N \N \N +56 en Hexadecimal Timestamp ir.sequence,type -1 selection ir f \N \N \N \N \N +58 en Last Timestamp ir.sequence.strict,last_timestamp -1 field ir f \N \N \N \N \N +59 en Sequence Name ir.sequence.strict,name -1 field ir f \N \N \N \N \N +60 en Increment Number ir.sequence.strict,number_increment -1 field ir f \N \N \N \N \N +61 en Next Number ir.sequence.strict,number_next -1 field ir f \N \N \N \N \N +62 en Next Number ir.sequence.strict,number_next_internal -1 field ir f \N \N \N \N \N +63 en Number padding ir.sequence.strict,padding -1 field ir f \N \N \N \N \N +64 en Prefix ir.sequence.strict,prefix -1 field ir f \N \N \N \N \N +65 en The current date can be used formatted using strftime format suffixed with underscores: i.e: ${date_Y} ir.sequence.strict,prefix -1 help ir f \N \N \N \N \N +66 en Preview ir.sequence.strict,preview -1 field ir f \N \N \N \N \N +67 en Sequence Type ir.sequence.strict,sequence_type -1 field ir f \N \N \N \N \N +68 en Suffix ir.sequence.strict,suffix -1 field ir f \N \N \N \N \N +69 en The current date can be used formatted using strftime format suffixed with underscores: i.e: ${date_Y} ir.sequence.strict,suffix -1 help ir f \N \N \N \N \N +70 en Timestamp Offset ir.sequence.strict,timestamp_offset -1 field ir f \N \N \N \N \N +71 en Timestamp Rounding ir.sequence.strict,timestamp_rounding -1 field ir f \N \N \N \N \N +72 en Type ir.sequence.strict,type -1 field ir f \N \N \N \N \N +73 en Incremental ir.sequence.strict,type -1 selection ir f \N \N \N \N \N +74 en Decimal Timestamp ir.sequence.strict,type -1 selection ir f \N \N \N \N \N +75 en Hexadecimal Timestamp ir.sequence.strict,type -1 selection ir f \N \N \N \N \N +77 en Action ir.ui.menu,action -1 field ir f \N \N \N \N \N +78 en Action Keywords ir.ui.menu,action_keywords -1 field ir f \N \N \N \N \N +79 en Children ir.ui.menu,childs -1 field ir f \N \N \N \N \N +80 en Complete Name ir.ui.menu,complete_name -1 field ir f \N \N \N \N \N +81 en Favorite ir.ui.menu,favorite -1 field ir f \N \N \N \N \N +82 en Icon ir.ui.menu,icon -1 field ir f \N \N \N \N \N +83 en Menu ir.ui.menu,name -1 field ir f \N \N \N \N \N +84 en Parent Menu ir.ui.menu,parent -1 field ir f \N \N \N \N \N +86 en Menu ir.ui.menu.favorite,menu -1 field ir f \N \N \N \N \N +87 en User ir.ui.menu.favorite,user -1 field ir f \N \N \N \N \N +89 en View Architecture ir.ui.view,arch -1 field ir f \N \N \N \N \N +90 en Data ir.ui.view,data -1 field ir f \N \N \N \N \N +91 en Domain ir.ui.view,domain -1 field ir f \N \N \N \N \N +92 en Children Field ir.ui.view,field_childs -1 field ir f \N \N \N \N \N +93 en Inherited View ir.ui.view,inherit -1 field ir f \N \N \N \N \N +94 en Model ir.ui.view,model -1 field ir f \N \N \N \N \N +95 en Module ir.ui.view,module -1 field ir f \N \N \N \N \N +96 en Name ir.ui.view,name -1 field ir f \N \N \N \N \N +97 en Priority ir.ui.view,priority -1 field ir f \N \N \N \N \N +98 en View Type ir.ui.view,type -1 field ir f \N \N \N \N \N +99 en Tree ir.ui.view,type -1 selection ir f \N \N \N \N \N +100 en Form ir.ui.view,type -1 selection ir f \N \N \N \N \N +101 en Graph ir.ui.view,type -1 selection ir f \N \N \N \N \N +102 en Calendar ir.ui.view,type -1 selection ir f \N \N \N \N \N +103 en Board ir.ui.view,type -1 selection ir f \N \N \N \N \N +104 en List Form ir.ui.view,type -1 selection ir f \N \N \N \N \N +107 en Field ir.ui.view_tree_width,field -1 field ir f \N \N \N \N \N +108 en Model ir.ui.view_tree_width,model -1 field ir f \N \N \N \N \N +109 en User ir.ui.view_tree_width,user -1 field ir f \N \N \N \N \N +110 en Width ir.ui.view_tree_width,width -1 field ir f \N \N \N \N \N +112 en Field ir.ui.view_tree_optional,field -1 field ir f \N \N \N \N \N +113 en User ir.ui.view_tree_optional,user -1 field ir f \N \N \N \N \N +114 en Value ir.ui.view_tree_optional,value -1 field ir f \N \N \N \N \N +115 en View ID ir.ui.view_tree_optional,view_id -1 field ir f \N \N \N \N \N +117 en Child Name ir.ui.view_tree_state,child_name -1 field ir f \N \N \N \N \N +118 en Domain ir.ui.view_tree_state,domain -1 field ir f \N \N \N \N \N +119 en Model ir.ui.view_tree_state,model -1 field ir f \N \N \N \N \N +120 en Expanded Nodes ir.ui.view_tree_state,nodes -1 field ir f \N \N \N \N \N +121 en Selected Nodes ir.ui.view_tree_state,selected_nodes -1 field ir f \N \N \N \N \N +122 en User ir.ui.view_tree_state,user -1 field ir f \N \N \N \N \N +129 en Icon ir.ui.icon,name -1 model ir f \N \N \N \N \N +124 en Domain ir.ui.view_search,domain -1 field ir f \N \N \N \N \N +125 en The PYSON domain. ir.ui.view_search,domain -1 help ir f \N \N \N \N \N +126 en Model ir.ui.view_search,model -1 field ir f \N \N \N \N \N +127 en Name ir.ui.view_search,name -1 field ir f \N \N \N \N \N +128 en User ir.ui.view_search,user -1 field ir f \N \N \N \N \N +130 en Icon ir.ui.icon,icon -1 field ir f \N \N \N \N \N +131 en Module ir.ui.icon,module -1 field ir f \N \N \N \N \N +132 en Name ir.ui.icon,name -1 field ir f \N \N \N \N \N +133 en SVG Path ir.ui.icon,path -1 field ir f \N \N \N \N \N +135 en Action ir.action,action -1 field ir f \N \N \N \N \N +136 en Report ir.action,action -1 selection ir f \N \N \N \N \N +137 en Window ir.action,action -1 selection ir f \N \N \N \N \N +138 en Wizard ir.action,action -1 selection ir f \N \N \N \N \N +139 en URL ir.action,action -1 selection ir f \N \N \N \N \N +140 en Icon ir.action,icon -1 field ir f \N \N \N \N \N +141 en Keywords ir.action,keywords -1 field ir f \N \N \N \N \N +142 en Name ir.action,name -1 field ir f \N \N \N \N \N +143 en Records ir.action,records -1 field ir f \N \N \N \N \N +144 en The records on which the action runs. ir.action,records -1 help ir f \N \N \N \N \N +145 en Selected ir.action,records -1 selection ir f \N \N \N \N \N +146 en Listed ir.action,records -1 selection ir f \N \N \N \N \N +147 en Type ir.action,type -1 field ir f \N \N \N \N \N +148 en Report ir.action,type -1 selection ir f \N \N \N \N \N +149 en Window ir.action,type -1 selection ir f \N \N \N \N \N +150 en Wizard ir.action,type -1 selection ir f \N \N \N \N \N +151 en URL ir.action,type -1 selection ir f \N \N \N \N \N +152 en Usage ir.action,usage -1 field ir f \N \N \N \N \N +154 en Action ir.action.keyword,action -1 field ir f \N \N \N \N \N +155 en Keyword ir.action.keyword,keyword -1 field ir f \N \N \N \N \N +156 en Open tree ir.action.keyword,keyword -1 selection ir f \N \N \N \N \N +157 en Print form ir.action.keyword,keyword -1 selection ir f \N \N \N \N \N +158 en Action form ir.action.keyword,keyword -1 selection ir f \N \N \N \N \N +159 en Form relate ir.action.keyword,keyword -1 selection ir f \N \N \N \N \N +160 en Open Graph ir.action.keyword,keyword -1 selection ir f \N \N \N \N \N +161 en Model ir.action.keyword,model -1 field ir f \N \N \N \N \N +163 en Action ir.action.report,action -1 field ir f \N \N \N \N \N +164 en Direct Print ir.action.report,direct_print -1 field ir f \N \N \N \N \N +165 en Extension ir.action.report,extension -1 field ir f \N \N \N \N \N +166 en Leave empty for the same as template, see LibreOffice documentation for compatible format. ir.action.report,extension -1 help ir f \N \N \N \N \N +167 en Icon ir.action.report,icon -1 field ir f \N \N \N \N \N +168 en Is Custom ir.action.report,is_custom -1 field ir f \N \N \N \N \N +169 en Keywords ir.action.report,keywords -1 field ir f \N \N \N \N \N +170 en Model ir.action.report,model -1 field ir f \N \N \N \N \N +171 en Module ir.action.report,module -1 field ir f \N \N \N \N \N +172 en Name ir.action.report,name -1 field ir f \N \N \N \N \N +173 en Record Name ir.action.report,record_name -1 field ir f \N \N \N \N \N +174 en A Genshi expression to compute the name using 'record'.\nLeave empty for the default name. ir.action.report,record_name -1 help ir f \N \N \N \N \N +175 en Records ir.action.report,records -1 field ir f \N \N \N \N \N +176 en The records on which the action runs. ir.action.report,records -1 help ir f \N \N \N \N \N +177 en Selected ir.action.report,records -1 selection ir f \N \N \N \N \N +178 en Listed ir.action.report,records -1 selection ir f \N \N \N \N \N +179 en Path ir.action.report,report -1 field ir f \N \N \N \N \N +180 en Content ir.action.report,report_content -1 field ir f \N \N \N \N \N +181 en Content ir.action.report,report_content_custom -1 field ir f \N \N \N \N \N +182 en Content HTML ir.action.report,report_content_html -1 field ir f \N \N \N \N \N +183 en Content Name ir.action.report,report_content_name -1 field ir f \N \N \N \N \N +184 en Internal Name ir.action.report,report_name -1 field ir f \N \N \N \N \N +185 en Single ir.action.report,single -1 field ir f \N \N \N \N \N +186 en Check if the template works only for one record. ir.action.report,single -1 help ir f \N \N \N \N \N +187 en Template Extension ir.action.report,template_extension -1 field ir f \N \N \N \N \N +188 en Translatable ir.action.report,translatable -1 field ir f \N \N \N \N \N +189 en Uncheck to disable translations for this report. ir.action.report,translatable -1 help ir f \N \N \N \N \N +190 en Type ir.action.report,type -1 field ir f \N \N \N \N \N +191 en Report ir.action.report,type -1 selection ir f \N \N \N \N \N +192 en Window ir.action.report,type -1 selection ir f \N \N \N \N \N +193 en Wizard ir.action.report,type -1 selection ir f \N \N \N \N \N +194 en URL ir.action.report,type -1 selection ir f \N \N \N \N \N +195 en Usage ir.action.report,usage -1 field ir f \N \N \N \N \N +197 en Domains ir.action.act_window,act_window_domains -1 field ir f \N \N \N \N \N +198 en Views ir.action.act_window,act_window_views -1 field ir f \N \N \N \N \N +199 en Action ir.action.act_window,action -1 field ir f \N \N \N \N \N +200 en Context Value ir.action.act_window,context -1 field ir f \N \N \N \N \N +201 en Context Domain ir.action.act_window,context_domain -1 field ir f \N \N \N \N \N +202 en Part of the domain that will be evaluated on each refresh. ir.action.act_window,context_domain -1 help ir f \N \N \N \N \N +203 en Context Model ir.action.act_window,context_model -1 field ir f \N \N \N \N \N +204 en Domain Value ir.action.act_window,domain -1 field ir f \N \N \N \N \N +205 en Domains ir.action.act_window,domains -1 field ir f \N \N \N \N \N +206 en Icon ir.action.act_window,icon -1 field ir f \N \N \N \N \N +207 en Keywords ir.action.act_window,keywords -1 field ir f \N \N \N \N \N +208 en Limit ir.action.act_window,limit -1 field ir f \N \N \N \N \N +209 en Default limit for the list view. ir.action.act_window,limit -1 help ir f \N \N \N \N \N +210 en Name ir.action.act_window,name -1 field ir f \N \N \N \N \N +211 en Order Value ir.action.act_window,order -1 field ir f \N \N \N \N \N +212 en PySON Context ir.action.act_window,pyson_context -1 field ir f \N \N \N \N \N +213 en PySON Domain ir.action.act_window,pyson_domain -1 field ir f \N \N \N \N \N +214 en PySON Order ir.action.act_window,pyson_order -1 field ir f \N \N \N \N \N +215 en PySON Search Criteria ir.action.act_window,pyson_search_value -1 field ir f \N \N \N \N \N +216 en Records ir.action.act_window,records -1 field ir f \N \N \N \N \N +217 en The records on which the action runs. ir.action.act_window,records -1 help ir f \N \N \N \N \N +218 en Selected ir.action.act_window,records -1 selection ir f \N \N \N \N \N +219 en Listed ir.action.act_window,records -1 selection ir f \N \N \N \N \N +220 en Model ir.action.act_window,res_model -1 field ir f \N \N \N \N \N +221 en Search Criteria ir.action.act_window,search_value -1 field ir f \N \N \N \N \N +222 en Default search criteria for the list view. ir.action.act_window,search_value -1 help ir f \N \N \N \N \N +223 en Type ir.action.act_window,type -1 field ir f \N \N \N \N \N +224 en Report ir.action.act_window,type -1 selection ir f \N \N \N \N \N +225 en Window ir.action.act_window,type -1 selection ir f \N \N \N \N \N +226 en Wizard ir.action.act_window,type -1 selection ir f \N \N \N \N \N +227 en URL ir.action.act_window,type -1 selection ir f \N \N \N \N \N +228 en Usage ir.action.act_window,usage -1 field ir f \N \N \N \N \N +229 en Views ir.action.act_window,views -1 field ir f \N \N \N \N \N +231 en Action ir.action.act_window.view,act_window -1 field ir f \N \N \N \N \N +232 en Model ir.action.act_window.view,model -1 field ir f \N \N \N \N \N +233 en View ir.action.act_window.view,view -1 field ir f \N \N \N \N \N +235 en Action ir.action.act_window.domain,act_window -1 field ir f \N \N \N \N \N +236 en Count ir.action.act_window.domain,count -1 field ir f \N \N \N \N \N +237 en Domain ir.action.act_window.domain,domain -1 field ir f \N \N \N \N \N +238 en Name ir.action.act_window.domain,name -1 field ir f \N \N \N \N \N +240 en Action ir.action.wizard,action -1 field ir f \N \N \N \N \N +241 en Icon ir.action.wizard,icon -1 field ir f \N \N \N \N \N +242 en Keywords ir.action.wizard,keywords -1 field ir f \N \N \N \N \N +243 en Model ir.action.wizard,model -1 field ir f \N \N \N \N \N +244 en Name ir.action.wizard,name -1 field ir f \N \N \N \N \N +245 en Records ir.action.wizard,records -1 field ir f \N \N \N \N \N +246 en The records on which the action runs. ir.action.wizard,records -1 help ir f \N \N \N \N \N +247 en Selected ir.action.wizard,records -1 selection ir f \N \N \N \N \N +248 en Listed ir.action.wizard,records -1 selection ir f \N \N \N \N \N +249 en Type ir.action.wizard,type -1 field ir f \N \N \N \N \N +250 en Report ir.action.wizard,type -1 selection ir f \N \N \N \N \N +251 en Window ir.action.wizard,type -1 selection ir f \N \N \N \N \N +252 en Wizard ir.action.wizard,type -1 selection ir f \N \N \N \N \N +253 en URL ir.action.wizard,type -1 selection ir f \N \N \N \N \N +254 en Usage ir.action.wizard,usage -1 field ir f \N \N \N \N \N +255 en Window ir.action.wizard,window -1 field ir f \N \N \N \N \N +256 en Run wizard in a new window. ir.action.wizard,window -1 help ir f \N \N \N \N \N +257 en Wizard name ir.action.wizard,wiz_name -1 field ir f \N \N \N \N \N +259 en Action ir.action.url,action -1 field ir f \N \N \N \N \N +260 en Icon ir.action.url,icon -1 field ir f \N \N \N \N \N +261 en Keywords ir.action.url,keywords -1 field ir f \N \N \N \N \N +262 en Name ir.action.url,name -1 field ir f \N \N \N \N \N +263 en Records ir.action.url,records -1 field ir f \N \N \N \N \N +264 en The records on which the action runs. ir.action.url,records -1 help ir f \N \N \N \N \N +265 en Selected ir.action.url,records -1 selection ir f \N \N \N \N \N +266 en Listed ir.action.url,records -1 selection ir f \N \N \N \N \N +267 en Type ir.action.url,type -1 field ir f \N \N \N \N \N +268 en Report ir.action.url,type -1 selection ir f \N \N \N \N \N +269 en Window ir.action.url,type -1 selection ir f \N \N \N \N \N +270 en Wizard ir.action.url,type -1 selection ir f \N \N \N \N \N +271 en URL ir.action.url,type -1 selection ir f \N \N \N \N \N +272 en Action Url ir.action.url,url -1 field ir f \N \N \N \N \N +273 en Usage ir.action.url,usage -1 field ir f \N \N \N \N \N +275 en Fields ir.model,fields -1 field ir f \N \N \N \N \N +276 en Global Search ir.model,global_search_p -1 field ir f \N \N \N \N \N +277 en Information ir.model,info -1 field ir f \N \N \N \N \N +278 en Model Name ir.model,model -1 field ir f \N \N \N \N \N +279 en Module ir.model,module -1 field ir f \N \N \N \N \N +280 en Module in which this model is defined. ir.model,module -1 help ir f \N \N \N \N \N +281 en Model Description ir.model,name -1 field ir f \N \N \N \N \N +283 en Access ir.model.field,access -1 field ir f \N \N \N \N \N +284 en If checked, the access right on the model of the field is also tested against the relation of the field. ir.model.field,access -1 help ir f \N \N \N \N \N +285 en Field Description ir.model.field,field_description -1 field ir f \N \N \N \N \N +286 en Help ir.model.field,help -1 field ir f \N \N \N \N \N +287 en Model ir.model.field,model -1 field ir f \N \N \N \N \N +288 en Module ir.model.field,module -1 field ir f \N \N \N \N \N +289 en Module in which this field is defined. ir.model.field,module -1 help ir f \N \N \N \N \N +290 en Name ir.model.field,name -1 field ir f \N \N \N \N \N +291 en Model Relation ir.model.field,relation -1 field ir f \N \N \N \N \N +292 en Field Type ir.model.field,ttype -1 field ir f \N \N \N \N \N +294 en Description ir.model.access,description -1 field ir f \N \N \N \N \N +295 en Group ir.model.access,group -1 field ir f \N \N \N \N \N +296 en Model ir.model.access,model -1 field ir f \N \N \N \N \N +297 en Create Access ir.model.access,perm_create -1 field ir f \N \N \N \N \N +298 en Delete Access ir.model.access,perm_delete -1 field ir f \N \N \N \N \N +299 en Read Access ir.model.access,perm_read -1 field ir f \N \N \N \N \N +300 en Write Access ir.model.access,perm_write -1 field ir f \N \N \N \N \N +302 en Description ir.model.field.access,description -1 field ir f \N \N \N \N \N +303 en Field ir.model.field.access,field -1 field ir f \N \N \N \N \N +304 en Group ir.model.field.access,group -1 field ir f \N \N \N \N \N +305 en Create Access ir.model.field.access,perm_create -1 field ir f \N \N \N \N \N +306 en Delete Access ir.model.field.access,perm_delete -1 field ir f \N \N \N \N \N +307 en Read Access ir.model.field.access,perm_read -1 field ir f \N \N \N \N \N +308 en Write Access ir.model.field.access,perm_write -1 field ir f \N \N \N \N \N +635 en Cancel ir.lang.config,start,end -1 wizard_button ir f \N \N \N \N \N +310 en Clicks ir.model.button,clicks -1 field ir f \N \N \N \N \N +311 en Confirm ir.model.button,confirm -1 field ir f \N \N \N \N \N +312 en Text to ask user confirmation when clicking the button. ir.model.button,confirm -1 help ir f \N \N \N \N \N +313 en Help ir.model.button,help -1 field ir f \N \N \N \N \N +314 en Model ir.model.button,model -1 field ir f \N \N \N \N \N +315 en Name ir.model.button,name -1 field ir f \N \N \N \N \N +316 en Reset ir.model.button,reset -1 field ir f \N \N \N \N \N +317 en Reset by ir.model.button,reset_by -1 field ir f \N \N \N \N \N +318 en Button that should reset the rules. ir.model.button,reset_by -1 help ir f \N \N \N \N \N +319 en Rules ir.model.button,rules -1 field ir f \N \N \N \N \N +320 en Label ir.model.button,string -1 field ir f \N \N \N \N \N +322 en Button ir.model.button.rule,button -1 field ir f \N \N \N \N \N +323 en Condition ir.model.button.rule,condition -1 field ir f \N \N \N \N \N +324 en A PYSON statement evaluated with the record represented by "self"\nIt activate the rule if true. ir.model.button.rule,condition -1 help ir f \N \N \N \N \N +325 en Description ir.model.button.rule,description -1 field ir f \N \N \N \N \N +326 en Number of User ir.model.button.rule,number_user -1 field ir f \N \N \N \N \N +328 en Button ir.model.button.click,button -1 field ir f \N \N \N \N \N +329 en Record ID ir.model.button.click,record_id -1 field ir f \N \N \N \N \N +331 en Button ir.model.button-button.reset,button -1 field ir f \N \N \N \N \N +332 en Button Ruled ir.model.button-button.reset,button_ruled -1 field ir f \N \N \N \N \N +334 en Resource ID ir.model.data,db_id -1 field ir f \N \N \N \N \N +335 en The id of the record in the database. ir.model.data,db_id -1 help ir f \N \N \N \N \N +336 en Identifier on File System ir.model.data,fs_id -1 field ir f \N \N \N \N \N +337 en The id of the record as known on the file system. ir.model.data,fs_id -1 help ir f \N \N \N \N \N +338 en Values on File System ir.model.data,fs_values -1 field ir f \N \N \N \N \N +339 en Model ir.model.data,model -1 field ir f \N \N \N \N \N +340 en Module ir.model.data,module -1 field ir f \N \N \N \N \N +341 en No Update ir.model.data,noupdate -1 field ir f \N \N \N \N \N +342 en Out of Sync ir.model.data,out_of_sync -1 field ir f \N \N \N \N \N +343 en Values ir.model.data,values -1 field ir f \N \N \N \N \N +345 en Action ir.model.log,action -1 field ir f \N \N \N \N \N +346 en Event ir.model.log,event -1 field ir f \N \N \N \N \N +347 en Modified ir.model.log,event -1 selection ir f \N \N \N \N \N +348 en Deleted ir.model.log,event -1 selection ir f \N \N \N \N \N +349 en Clicked on ir.model.log,event -1 selection ir f \N \N \N \N \N +350 en Launched ir.model.log,event -1 selection ir f \N \N \N \N \N +351 en Transitioned to ir.model.log,event -1 selection ir f \N \N \N \N \N +352 en Resource ir.model.log,resource -1 field ir f \N \N \N \N \N +353 en Target ir.model.log,target -1 field ir f \N \N \N \N \N +354 en User ir.model.log,user -1 field ir f \N \N \N \N \N +356 en Filter ir.model.print_model_graph.start,filter -1 field ir f \N \N \N \N \N +357 en Entering a Python Regular Expression will exclude matching models from the graph. ir.model.print_model_graph.start,filter -1 help ir f \N \N \N \N \N +358 en Level ir.model.print_model_graph.start,level -1 field ir f \N \N \N \N \N +360 en Copy to Resources ir.attachment,copy_to_resources -1 field ir f \N \N \N \N \N +361 en Copy to Resources Visible ir.attachment,copy_to_resources_visible -1 field ir f \N \N \N \N \N +362 en Data ir.attachment,data -1 field ir f \N \N \N \N \N +363 en Data size ir.attachment,data_size -1 field ir f \N \N \N \N \N +364 en Description ir.attachment,description -1 field ir f \N \N \N \N \N +365 en File ID ir.attachment,file_id -1 field ir f \N \N \N \N \N +366 en Last Modification ir.attachment,last_modification -1 field ir f \N \N \N \N \N +367 en Last User ir.attachment,last_user -1 field ir f \N \N \N \N \N +368 en Link ir.attachment,link -1 field ir f \N \N \N \N \N +369 en Name ir.attachment,name -1 field ir f \N \N \N \N \N +370 en Resource ir.attachment,resource -1 field ir f \N \N \N \N \N +371 en Summary ir.attachment,summary -1 field ir f \N \N \N \N \N +372 en Type ir.attachment,type -1 field ir f \N \N \N \N \N +373 en Data ir.attachment,type -1 selection ir f \N \N \N \N \N +374 en Link ir.attachment,type -1 selection ir f \N \N \N \N \N +376 en Copy to Resources ir.note,copy_to_resources -1 field ir f \N \N \N \N \N +377 en Copy to Resources Visible ir.note,copy_to_resources_visible -1 field ir f \N \N \N \N \N +378 en Last Modification ir.note,last_modification -1 field ir f \N \N \N \N \N +379 en Last User ir.note,last_user -1 field ir f \N \N \N \N \N +380 en Message ir.note,message -1 field ir f \N \N \N \N \N +381 en Message ir.note,message_wrapped -1 field ir f \N \N \N \N \N +382 en Resource ir.note,resource -1 field ir f \N \N \N \N \N +383 en Unread ir.note,unread -1 field ir f \N \N \N \N \N +385 en Note ir.note.read,note -1 field ir f \N \N \N \N \N +386 en User ir.note.read,user -1 field ir f \N \N \N \N \N +388 en Cache ir.avatar,cache -1 field ir f \N \N \N \N \N +389 en Copy to Resources ir.avatar,copy_to_resources -1 field ir f \N \N \N \N \N +390 en Copy to Resources Visible ir.avatar,copy_to_resources_visible -1 field ir f \N \N \N \N \N +391 en Image ir.avatar,image -1 field ir f \N \N \N \N \N +392 en Image ID ir.avatar,image_id -1 field ir f \N \N \N \N \N +393 en Last Modification ir.avatar,last_modification -1 field ir f \N \N \N \N \N +394 en Last User ir.avatar,last_user -1 field ir f \N \N \N \N \N +395 en Resource ir.avatar,resource -1 field ir f \N \N \N \N \N +396 en UUID ir.avatar,uuid -1 field ir f \N \N \N \N \N +398 en Avatar ir.avatar.cache,avatar -1 field ir f \N \N \N \N \N +399 en Image ir.avatar.cache,image -1 field ir f \N \N \N \N \N +400 en Image ID ir.avatar.cache,image_id -1 field ir f \N \N \N \N \N +401 en Size ir.avatar.cache,size -1 field ir f \N \N \N \N \N +403 en Day ir.cron,day -1 field ir f \N \N \N \N \N +404 en Hour ir.cron,hour -1 field ir f \N \N \N \N \N +405 en Interval Number ir.cron,interval_number -1 field ir f \N \N \N \N \N +406 en Interval Type ir.cron,interval_type -1 field ir f \N \N \N \N \N +407 en Minutes ir.cron,interval_type -1 selection ir f \N \N \N \N \N +408 en Hours ir.cron,interval_type -1 selection ir f \N \N \N \N \N +409 en Days ir.cron,interval_type -1 selection ir f \N \N \N \N \N +410 en Weeks ir.cron,interval_type -1 selection ir f \N \N \N \N \N +411 en Months ir.cron,interval_type -1 selection ir f \N \N \N \N \N +412 en Method ir.cron,method -1 field ir f \N \N \N \N \N +413 en Run On Time Triggers ir.cron,method -1 selection ir f \N \N \N \N \N +414 en Clean Task Queue ir.cron,method -1 selection ir f \N \N \N \N \N +415 en Clean Errors ir.cron,method -1 selection ir f \N \N \N \N \N +416 en Minute ir.cron,minute -1 field ir f \N \N \N \N \N +417 en Next Call ir.cron,next_call -1 field ir f \N \N \N \N \N +418 en Timezone ir.cron,timezone -1 field ir f \N \N \N \N \N +419 en Day of Week ir.cron,weekday -1 field ir f \N \N \N \N \N +421 en AM ir.lang,am -1 field ir f \N \N \N \N \N +422 en Code ir.lang,code -1 field ir f \N \N \N \N \N +423 en RFC 4646 tag. ir.lang,code -1 help ir f \N \N \N \N \N +424 en Date ir.lang,date -1 field ir f \N \N \N \N \N +425 en Decimal Separator ir.lang,decimal_point -1 field ir f \N \N \N \N \N +426 en Direction ir.lang,direction -1 field ir f \N \N \N \N \N +427 en Left-to-right ir.lang,direction -1 selection ir f \N \N \N \N \N +428 en Right-to-left ir.lang,direction -1 selection ir f \N \N \N \N \N +429 en Grouping ir.lang,grouping -1 field ir f \N \N \N \N \N +430 en Decimal Separator ir.lang,mon_decimal_point -1 field ir f \N \N \N \N \N +431 en Grouping ir.lang,mon_grouping -1 field ir f \N \N \N \N \N +432 en Thousands Separator ir.lang,mon_thousands_sep -1 field ir f \N \N \N \N \N +433 en Negative Currency Symbol Precedes ir.lang,n_cs_precedes -1 field ir f \N \N \N \N \N +434 en Negative Separate by Space ir.lang,n_sep_by_space -1 field ir f \N \N \N \N \N +435 en Negative Sign Position ir.lang,n_sign_posn -1 field ir f \N \N \N \N \N +436 en Name ir.lang,name -1 field ir f \N \N \N \N \N +437 en Negative Sign ir.lang,negative_sign -1 field ir f \N \N \N \N \N +438 en Positive Currency Symbol Precedes ir.lang,p_cs_precedes -1 field ir f \N \N \N \N \N +439 en Positive Separate by Space ir.lang,p_sep_by_space -1 field ir f \N \N \N \N \N +440 en Positive Sign Position ir.lang,p_sign_posn -1 field ir f \N \N \N \N \N +441 en Parent Code ir.lang,parent -1 field ir f \N \N \N \N \N +442 en Code of the exceptional parent ir.lang,parent -1 help ir f \N \N \N \N \N +443 en PostgreSQL Text Search Configuration ir.lang,pg_text_search -1 field ir f \N \N \N \N \N +444 en PM ir.lang,pm -1 field ir f \N \N \N \N \N +445 en Positive Sign ir.lang,positive_sign -1 field ir f \N \N \N \N \N +446 en Thousands Separator ir.lang,thousands_sep -1 field ir f \N \N \N \N \N +447 en Translatable ir.lang,translatable -1 field ir f \N \N \N \N \N +449 en Languages ir.lang.config.start,languages -1 field ir f \N \N \N \N \N +451 en Fields ir.export,export_fields -1 field ir f \N \N \N \N \N +452 en Header ir.export,header -1 field ir f \N \N \N \N \N +453 en Check to include field names on the export. ir.export,header -1 help ir f \N \N \N \N \N +454 en Name ir.export,name -1 field ir f \N \N \N \N \N +455 en Records ir.export,records -1 field ir f \N \N \N \N \N +456 en The records on which the export runs. ir.export,records -1 help ir f \N \N \N \N \N +457 en Selected ir.export,records -1 selection ir f \N \N \N \N \N +458 en Listed ir.export,records -1 selection ir f \N \N \N \N \N +459 en Resource ir.export,resource -1 field ir f \N \N \N \N \N +460 en User ir.export,user -1 field ir f \N \N \N \N \N +462 en Export ir.export.line,export -1 field ir f \N \N \N \N \N +463 en Name ir.export.line,name -1 field ir f \N \N \N \N \N +465 en Default ir.rule.group,default_p -1 field ir f \N \N \N \N \N +466 en Add this rule to all users by default. ir.rule.group,default_p -1 help ir f \N \N \N \N \N +467 en Global ir.rule.group,global_p -1 field ir f \N \N \N \N \N +468 en Make the rule global \nso every users must follow this rule. ir.rule.group,global_p -1 help ir f \N \N \N \N \N +469 en Model ir.rule.group,model -1 field ir f \N \N \N \N \N +470 en Name ir.rule.group,name -1 field ir f \N \N \N \N \N +471 en Displayed to users when access error is raised for this rule. ir.rule.group,name -1 help ir f \N \N \N \N \N +472 en Create Access ir.rule.group,perm_create -1 field ir f \N \N \N \N \N +473 en Delete Access ir.rule.group,perm_delete -1 field ir f \N \N \N \N \N +474 en Read Access ir.rule.group,perm_read -1 field ir f \N \N \N \N \N +475 en Write Access ir.rule.group,perm_write -1 field ir f \N \N \N \N \N +476 en Tests ir.rule.group,rules -1 field ir f \N \N \N \N \N +477 en The rule is satisfied if at least one test is True. ir.rule.group,rules -1 help ir f \N \N \N \N \N +479 en Domain ir.rule,domain -1 field ir f \N \N \N \N \N +480 en Domain is evaluated with a PYSON context containing:\n- "groups" as list of ids from the current user ir.rule,domain -1 help ir f \N \N \N \N \N +481 en Group ir.rule,rule_group -1 field ir f \N \N \N \N \N +483 en Childs ir.module,childs -1 field ir f \N \N \N \N \N +484 en Dependencies ir.module,dependencies -1 field ir f \N \N \N \N \N +485 en Name ir.module,name -1 field ir f \N \N \N \N \N +486 en Parents ir.module,parents -1 field ir f \N \N \N \N \N +487 en State ir.module,state -1 field ir f \N \N \N \N \N +488 en Not Activated ir.module,state -1 selection ir f \N \N \N \N \N +489 en Activated ir.module,state -1 selection ir f \N \N \N \N \N +490 en To be upgraded ir.module,state -1 selection ir f \N \N \N \N \N +491 en To be removed ir.module,state -1 selection ir f \N \N \N \N \N +492 en To be activated ir.module,state -1 selection ir f \N \N \N \N \N +493 en Version ir.module,version -1 field ir f \N \N \N \N \N +495 en Module ir.module.dependency,module -1 field ir f \N \N \N \N \N +496 en Name ir.module.dependency,name -1 field ir f \N \N \N \N \N +497 en State ir.module.dependency,state -1 field ir f \N \N \N \N \N +498 en Not Activated ir.module.dependency,state -1 selection ir f \N \N \N \N \N +499 en Activated ir.module.dependency,state -1 selection ir f \N \N \N \N \N +500 en To be upgraded ir.module.dependency,state -1 selection ir f \N \N \N \N \N +501 en To be removed ir.module.dependency,state -1 selection ir f \N \N \N \N \N +502 en To be activated ir.module.dependency,state -1 selection ir f \N \N \N \N \N +503 en Unknown ir.module.dependency,state -1 selection ir f \N \N \N \N \N +505 en Action ir.module.config_wizard.item,action -1 field ir f \N \N \N \N \N +506 en State ir.module.config_wizard.item,state -1 field ir f \N \N \N \N \N +507 en Open ir.module.config_wizard.item,state -1 selection ir f \N \N \N \N \N +508 en Done ir.module.config_wizard.item,state -1 selection ir f \N \N \N \N \N +511 en Percentage ir.module.config_wizard.other,percentage -1 field ir f \N \N \N \N \N +514 en Modules to update ir.module.activate_upgrade.start,module_info -1 field ir f \N \N \N \N \N +517 en Modules ir.module.config.start,modules -1 field ir f \N \N \N \N \N +519 en Name ir.cache,name -1 field ir f \N \N \N \N \N +520 en Timestamp ir.cache,timestamp -1 field ir f \N \N \N \N \N +523 en Action ir.trigger,action -1 field ir f \N \N \N \N \N +524 en Condition ir.trigger,condition -1 field ir f \N \N \N \N \N +602 en Action ir.error,origin -1 selection ir f \N \N \N \N \N +525 en A PYSON statement evaluated with record represented by "self"\nIt triggers the action if true. ir.trigger,condition -1 help ir f \N \N \N \N \N +526 en Limit Number ir.trigger,limit_number -1 field ir f \N \N \N \N \N +527 en Limit the number of call to "Action Function" by records.\n0 for no limit. ir.trigger,limit_number -1 help ir f \N \N \N \N \N +528 en Minimum Delay ir.trigger,minimum_time_delay -1 field ir f \N \N \N \N \N +529 en Set a minimum time delay between call to "Action Function" for the same record.\nempty for no delay. ir.trigger,minimum_time_delay -1 help ir f \N \N \N \N \N +530 en Model ir.trigger,model -1 field ir f \N \N \N \N \N +531 en Name ir.trigger,name -1 field ir f \N \N \N \N \N +532 en On Create ir.trigger,on_create -1 field ir f \N \N \N \N \N +533 en On Delete ir.trigger,on_delete -1 field ir f \N \N \N \N \N +534 en On Time ir.trigger,on_time -1 field ir f \N \N \N \N \N +535 en On Write ir.trigger,on_write -1 field ir f \N \N \N \N \N +537 en Record ID ir.trigger.log,record_id -1 field ir f \N \N \N \N \N +538 en Trigger ir.trigger.log,trigger -1 field ir f \N \N \N \N \N +540 en Key ir.session,key -1 field ir f \N \N \N \N \N +542 en Data ir.session.wizard,data -1 field ir f \N \N \N \N \N +544 en Data ir.queue,data -1 field ir f \N \N \N \N \N +545 en Dequeued at ir.queue,dequeued_at -1 field ir f \N \N \N \N \N +546 en Enqueued at ir.queue,enqueued_at -1 field ir f \N \N \N \N \N +547 en Expected at ir.queue,expected_at -1 field ir f \N \N \N \N \N +548 en When the task should be done. ir.queue,expected_at -1 help ir f \N \N \N \N \N +549 en Finished at ir.queue,finished_at -1 field ir f \N \N \N \N \N +550 en Name ir.queue,name -1 field ir f \N \N \N \N \N +551 en Scheduled at ir.queue,scheduled_at -1 field ir f \N \N \N \N \N +552 en When the task can start. ir.queue,scheduled_at -1 help ir f \N \N \N \N \N +554 en Abbreviation ir.calendar.month,abbreviation -1 field ir f \N \N \N \N \N +555 en Index ir.calendar.month,index -1 field ir f \N \N \N \N \N +556 en Name ir.calendar.month,name -1 field ir f \N \N \N \N \N +558 en Abbreviation ir.calendar.day,abbreviation -1 field ir f \N \N \N \N \N +559 en Index ir.calendar.day,index -1 field ir f \N \N \N \N \N +560 en Name ir.calendar.day,name -1 field ir f \N \N \N \N \N +562 en Text ir.message,text -1 field ir f \N \N \N \N \N +564 en Addresses ir.email,addresses -1 field ir f \N \N \N \N \N +565 en At ir.email,at -1 field ir f \N \N \N \N \N +566 en Body ir.email,body -1 field ir f \N \N \N \N \N +567 en Recipients ir.email,recipients -1 field ir f \N \N \N \N \N +568 en Hidden Recipients ir.email,recipients_hidden -1 field ir f \N \N \N \N \N +569 en Secondary Recipients ir.email,recipients_secondary -1 field ir f \N \N \N \N \N +570 en Resource ir.email,resource -1 field ir f \N \N \N \N \N +571 en Subject ir.email,subject -1 field ir f \N \N \N \N \N +572 en User ir.email,user -1 field ir f \N \N \N \N \N +2492 en Account Move Template account.move.template,name -1 model account f \N \N \N \N \N +574 en Address ir.email.address,address -1 field ir f \N \N \N \N \N +575 en E-mail ir.email.address,email -1 field ir f \N \N \N \N \N +2500 en Account Move Template Keyword account.move.template.keyword,name -1 model account f \N \N \N \N \N +577 en Body ir.email.template,body -1 field ir f \N \N \N \N \N +578 en Model ir.email.template,model -1 field ir f \N \N \N \N \N +579 en Model Name ir.email.template,model_name -1 field ir f \N \N \N \N \N +580 en Name ir.email.template,name -1 field ir f \N \N \N \N \N +581 en Recipients ir.email.template,recipients -1 field ir f \N \N \N \N \N +582 en The field that contains the recipient(s). ir.email.template,recipients -1 help ir f \N \N \N \N \N +583 en Hidden Recipients ir.email.template,recipients_hidden -1 field ir f \N \N \N \N \N +584 en The field that contains the secondary recipient(s). ir.email.template,recipients_hidden -1 help ir f \N \N \N \N \N +585 en Hidden Recipients ir.email.template,recipients_hidden_pyson -1 field ir f \N \N \N \N \N +586 en A PYSON expression that generates a list of hidden recipients with the record represented by "self". ir.email.template,recipients_hidden_pyson -1 help ir f \N \N \N \N \N +587 en Recipients ir.email.template,recipients_pyson -1 field ir f \N \N \N \N \N +588 en A PYSON expression that generates a list of recipients with the record represented by "self". ir.email.template,recipients_pyson -1 help ir f \N \N \N \N \N +589 en Secondary Recipients ir.email.template,recipients_secondary -1 field ir f \N \N \N \N \N +590 en The field that contains the secondary recipient(s). ir.email.template,recipients_secondary -1 help ir f \N \N \N \N \N +591 en Secondary Recipients ir.email.template,recipients_secondary_pyson -1 field ir f \N \N \N \N \N +592 en A PYSON expression that generates a list of secondary recipients with the record represented by "self". ir.email.template,recipients_secondary_pyson -1 help ir f \N \N \N \N \N +593 en Reports ir.email.template,reports -1 field ir f \N \N \N \N \N +594 en Subject ir.email.template,subject -1 field ir f \N \N \N \N \N +1662 en Cancel party.replace,ask,end -1 wizard_button party f \N \N \N \N \N +596 en Report ir.email.template-ir.action.report,report -1 field ir f \N \N \N \N \N +597 en Template ir.email.template-ir.action.report,template -1 field ir f \N \N \N \N \N +1663 en Replace party.replace,ask,replace -1 wizard_button party f \N \N \N \N \N +599 en Description ir.error,description -1 field ir f \N \N \N \N \N +600 en Message ir.error,message -1 field ir f \N \N \N \N \N +601 en Origin ir.error,origin -1 field ir f \N \N \N \N \N +1664 en Cancel party.erase,ask,end -1 wizard_button party f \N \N \N \N \N +603 en Task ir.error,origin -1 selection ir f \N \N \N \N \N +604 en Processed by ir.error,processed_by -1 field ir f \N \N \N \N \N +605 en Solved by ir.error,solved_by -1 field ir f \N \N \N \N \N +606 en State ir.error,state -1 field ir f \N \N \N \N \N +607 en Open ir.error,state -1 selection ir f \N \N \N \N \N +608 en Processing ir.error,state -1 selection ir f \N \N \N \N \N +609 en Solved ir.error,state -1 selection ir f \N \N \N \N \N +610 en Summary ir.error,summary -1 field ir f \N \N \N \N \N +355 en Print Model Graph ir.model.print_model_graph.start,name -1 model ir f \N \N \N \N \N +359 en Attachment ir.attachment,name -1 model ir f \N \N \N \N \N +375 en Note ir.note,name -1 model ir f \N \N \N \N \N +384 en Note Read ir.note.read,name -1 model ir f \N \N \N \N \N +387 en Avatar ir.avatar,name -1 model ir f \N \N \N \N \N +397 en Avatar Cache ir.avatar.cache,name -1 model ir f \N \N \N \N \N +402 en Cron ir.cron,name -1 model ir f \N \N \N \N \N +420 en Language ir.lang,name -1 model ir f \N \N \N \N \N +448 en Configure languages ir.lang.config.start,name -1 model ir f \N \N \N \N \N +450 en Export ir.export,name -1 model ir f \N \N \N \N \N +461 en Export line ir.export.line,name -1 model ir f \N \N \N \N \N +464 en Rule group ir.rule.group,name -1 model ir f \N \N \N \N \N +637 en English ir.lang,name 1 English model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +638 en Administration ir.ui.menu,name 1 Administration model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +639 en User Interface ir.ui.menu,name 2 User Interface model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +640 en Icons ir.action,name 1 Icons model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +641 en Icons ir.ui.menu,name 3 Icons model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +642 en Menu ir.action,name 2 Menu model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +643 en Menu ir.action,name 3 Menu model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +644 en Menu ir.ui.menu,name 4 Menu model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +645 en Show View ir.action,name 4 Show View model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +646 en Views ir.action,name 5 Views model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +647 en Views ir.ui.menu,name 5 Views model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +648 en Show ir.model.button,string 1 Show model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +649 en View Tree Width ir.action,name 6 View Tree Width model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +650 en View Tree Width ir.ui.menu,name 6 View Tree Width model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +651 en View Tree Optional ir.action,name 7 View Tree Optional model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +652 en View Tree Optional ir.ui.menu,name 7 View Tree Optional model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +653 en Tree State ir.action,name 8 Tree State model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +654 en Tree State ir.ui.menu,name 8 Tree State model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +655 en View Search ir.action,name 9 View Search model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +656 en View Search ir.ui.menu,name 9 View Search model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +657 en Actions ir.ui.menu,name 10 Actions model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +658 en Actions ir.action,name 10 Actions model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +659 en Actions ir.ui.menu,name 11 Actions model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +660 en Reports ir.action,name 11 Reports model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +661 en Reports ir.ui.menu,name 12 Reports model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +662 en Window Actions ir.action,name 12 Window Actions model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +663 en Window Actions ir.ui.menu,name 13 Window Actions model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +478 en Rule ir.rule,name -1 model ir f \N \N \N \N \N +482 en Module ir.module,name -1 model ir f \N \N \N \N \N +494 en Module dependency ir.module.dependency,name -1 model ir f \N \N \N \N \N +664 en Wizards ir.action,name 13 Wizards model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +665 en Wizards ir.ui.menu,name 14 Wizards model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +666 en URLs ir.action,name 14 URLs model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +667 en URLs ir.ui.menu,name 15 URLs model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +668 en Models ir.ui.menu,name 16 Models model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +669 en Models ir.action,name 15 Models model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +670 en Models ir.ui.menu,name 17 Models model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +671 en Fields ir.action,name 16 Fields model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +672 en Fields ir.ui.menu,name 18 Fields model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +673 en Models Access ir.action,name 17 Models Access model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +674 en Models Access ir.ui.menu,name 19 Models Access model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +675 en Access ir.action,name 18 Access model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +676 en Fields Access ir.action,name 19 Fields Access model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +677 en Fields Access ir.ui.menu,name 20 Fields Access model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +678 en Access ir.action,name 20 Access model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +679 en Graph ir.action,name 21 Graph model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +680 en Graph ir.action,name 22 Graph model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +681 en Workflow Graph ir.action,name 23 Workflow Graph model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +682 en Buttons ir.action,name 24 Buttons model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +683 en Buttons ir.ui.menu,name 21 Buttons model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +684 en Clicks ir.action,name 25 Clicks model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +685 en Data ir.action,name 26 Data model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +686 en Out of Sync ir.action.act_window.domain,name 1 Out of Sync model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +687 en All ir.action.act_window.domain,name 2 All model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +688 en Data ir.ui.menu,name 22 Data model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +689 en Sync ir.model.button,string 2 Sync model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +690 en Logs ir.action,name 27 Logs model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +691 en Logs ir.ui.menu,name 23 Logs model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +692 en Sequences ir.ui.menu,name 24 Sequences model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +693 en Sequences ir.action,name 28 Sequences model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +694 en Sequences ir.ui.menu,name 25 Sequences model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +695 en Sequences Strict ir.action,name 29 Sequences Strict model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +696 en Sequences Strict ir.ui.menu,name 26 Sequences Strict model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +697 en Types ir.action,name 30 Types model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +698 en Types ir.ui.menu,name 27 Types model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +699 en Attachments ir.action,name 31 Attachments model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +700 en Attachments ir.ui.menu,name 28 Attachments model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +701 en Notes ir.action,name 32 Notes model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +702 en Notes ir.ui.menu,name 29 Notes model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +703 en Scheduler ir.ui.menu,name 30 Scheduler model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +704 en Actions ir.action,name 33 Actions model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +705 en Actions ir.ui.menu,name 31 Actions model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +706 en Run Once ir.model.button,string 3 Run Once model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +707 en Localization ir.ui.menu,name 32 Localization model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +708 en Bulgarian ir.lang,name 2 Bulgarian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +709 en Català ir.lang,name 3 Català model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +710 en Czech ir.lang,name 4 Czech model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +711 en German ir.lang,name 5 German model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +712 en Spanish ir.lang,name 6 Spanish model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +713 en Spanish (Latin American) ir.lang,name 7 Spanish (Latin American) model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +714 en Estonian ir.lang,name 8 Estonian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +715 en Persian ir.lang,name 9 Persian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +716 en Finnish ir.lang,name 10 Finnish model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +717 en French ir.lang,name 11 French model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +718 en Hungarian ir.lang,name 12 Hungarian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +719 en Indonesian ir.lang,name 13 Indonesian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +720 en Italian ir.lang,name 14 Italian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +721 en Lao ir.lang,name 15 Lao model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +722 en Lithuanian ir.lang,name 16 Lithuanian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +723 en Dutch ir.lang,name 17 Dutch model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +724 en Polish ir.lang,name 18 Polish model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +725 en Portuguese ir.lang,name 19 Portuguese model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +726 en Romanian ir.lang,name 20 Romanian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +727 en Russian ir.lang,name 21 Russian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +728 en Slovenian ir.lang,name 22 Slovenian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +729 en Turkish ir.lang,name 23 Turkish model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +730 en Ukrainian ir.lang,name 24 Ukrainian model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +731 en Chinese Simplified ir.lang,name 25 Chinese Simplified model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +732 en Languages ir.action,name 34 Languages model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +733 en Languages ir.ui.menu,name 33 Languages model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +734 en Load translations ir.model.button,string 4 Load translations model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +735 en Are you sure you want to load languages' translations? ir.model.button,confirm 4 Are you sure you want to load languages' translations? model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +736 en Unload translations ir.model.button,string 5 Unload translations model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +737 en Are you sure you want to remove languages' translations? ir.model.button,confirm 5 Are you sure you want to remove languages' translations? model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +738 en Configure Languages ir.action,name 35 Configure Languages model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +739 en Translations ir.action,name 36 Translations model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +740 en Modules ir.action.act_window.domain,name 3 Modules model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +741 en Local ir.action.act_window.domain,name 4 Local model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +742 en Translations ir.ui.menu,name 34 Translations model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +743 en Translations ir.action,name 37 Translations model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +744 en Translations ir.action,name 38 Translations model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +745 en Set Translations ir.action,name 39 Set Translations model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +746 en Set Translations ir.ui.menu,name 35 Set Translations model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +747 en Clean Translations ir.action,name 40 Clean Translations model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +748 en Clean Translations ir.ui.menu,name 36 Clean Translations model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +749 en Synchronize Translations ir.action,name 41 Synchronize Translations model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +750 en Synchronize Translations ir.ui.menu,name 37 Synchronize Translations model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +751 en Export Translations ir.action,name 42 Export Translations model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +752 en Export Translations ir.ui.menu,name 38 Export Translations model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +753 en Exports ir.action,name 43 Exports model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +754 en Exports ir.ui.menu,name 39 Exports model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +755 en Record Rules ir.action,name 44 Record Rules model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +756 en Record Rules ir.ui.menu,name 40 Record Rules model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +757 en Modules ir.ui.menu,name 41 Modules model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +758 en Modules ir.action,name 45 Modules model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +759 en Modules ir.ui.menu,name 42 Modules model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +760 en Mark for Activation ir.model.button,string 6 Mark for Activation model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +761 en Cancel Activation ir.model.button,string 7 Cancel Activation model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +762 en Mark for Deactivation (beta) ir.model.button,string 8 Mark for Deactivation (beta) model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +763 en Cancel Deactivation ir.model.button,string 9 Cancel Deactivation model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +764 en Mark for Upgrade ir.model.button,string 10 Mark for Upgrade model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +765 en Cancel Upgrade ir.model.button,string 11 Cancel Upgrade model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +828 en Char ir.message,text 15 Char model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +2274 en Cancel Moves account.move.cancel.default,name -1 model account f \N \N \N \N \N +2278 en Group Lines account.move.line.group.start,name -1 model account f \N \N \N \N \N +2281 en Reschedule Lines account.move.line.reschedule.start,name -1 model account f \N \N \N \N \N +2293 en Reschedule Lines account.move.line.reschedule.preview,name -1 model account f \N \N \N \N \N +2298 en Reschedule Lines account.move.line.reschedule.term,name -1 model account f \N \N \N \N \N +766 en Config Wizard Items ir.action,name 46 Config Wizard Items model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +767 en Config Wizard Items ir.ui.menu,name 43 Config Wizard Items model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +768 en Module Configuration ir.action,name 47 Module Configuration model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +769 en Perform Pending Activation/Upgrade ir.action,name 48 Perform Pending Activation/Upgrade model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +770 en Perform Pending Activation/Upgrade ir.ui.menu,name 44 Perform Pending Activation/Upgrade model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +771 en Configure Modules ir.action,name 49 Configure Modules model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +772 en Triggers ir.action,name 50 Triggers model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +773 en Triggers ir.ui.menu,name 45 Triggers model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +774 en January ir.calendar.month,name 1 January model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +775 en February ir.calendar.month,name 2 February model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +776 en March ir.calendar.month,name 3 March model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +777 en April ir.calendar.month,name 4 April model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +778 en May ir.calendar.month,name 5 May model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +779 en June ir.calendar.month,name 6 June model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +780 en July ir.calendar.month,name 7 July model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +781 en August ir.calendar.month,name 8 August model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +782 en September ir.calendar.month,name 9 September model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +783 en October ir.calendar.month,name 10 October model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +784 en November ir.calendar.month,name 11 November model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +785 en December ir.calendar.month,name 12 December model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +786 en Jan ir.calendar.month,abbreviation 1 Jan model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +787 en Feb ir.calendar.month,abbreviation 2 Feb model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +788 en Mar ir.calendar.month,abbreviation 3 Mar model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +789 en Apr ir.calendar.month,abbreviation 4 Apr model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +790 en May ir.calendar.month,abbreviation 5 May model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +791 en Jun ir.calendar.month,abbreviation 6 Jun model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +792 en Jul ir.calendar.month,abbreviation 7 Jul model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +793 en Aug ir.calendar.month,abbreviation 8 Aug model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +794 en Sep ir.calendar.month,abbreviation 9 Sep model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +795 en Oct ir.calendar.month,abbreviation 10 Oct model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +796 en Nov ir.calendar.month,abbreviation 11 Nov model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +797 en Dec ir.calendar.month,abbreviation 12 Dec model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +798 en Monday ir.calendar.day,name 1 Monday model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +799 en Tuesday ir.calendar.day,name 2 Tuesday model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +800 en Wednesday ir.calendar.day,name 3 Wednesday model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +801 en Thursday ir.calendar.day,name 4 Thursday model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +802 en Friday ir.calendar.day,name 5 Friday model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +803 en Saturday ir.calendar.day,name 6 Saturday model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +804 en Sunday ir.calendar.day,name 7 Sunday model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +805 en Mon ir.calendar.day,abbreviation 1 Mon model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +806 en Tue ir.calendar.day,abbreviation 2 Tue model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +807 en Wed ir.calendar.day,abbreviation 3 Wed model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +808 en Thu ir.calendar.day,abbreviation 4 Thu model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +809 en Fri ir.calendar.day,abbreviation 5 Fri model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +810 en Sat ir.calendar.day,abbreviation 6 Sat model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +811 en Sun ir.calendar.day,abbreviation 7 Sun model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +812 en Messages ir.action,name 51 Messages model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +813 en Messages ir.ui.menu,name 46 Messages model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +814 en ID ir.message,text 1 ID model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +815 en Created by ir.message,text 2 Created by model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +816 en Created at ir.message,text 3 Created at model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +817 en Edited by ir.message,text 4 Edited by model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +818 en Edited at ir.message,text 5 Edited at model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +819 en Record Name ir.message,text 6 Record Name model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +820 en Active ir.message,text 7 Active model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +821 en Uncheck to exclude from future use. ir.message,text 8 Uncheck to exclude from future use. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +822 en Name ir.message,text 9 Name model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +823 en String ir.message,text 10 String model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +824 en Help ir.message,text 11 Help model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +825 en Type ir.message,text 12 Type model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +826 en Boolean ir.message,text 13 Boolean model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +827 en Integer ir.message,text 14 Integer model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +829 en Float ir.message,text 16 Float model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +830 en Numeric ir.message,text 17 Numeric model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +831 en Date ir.message,text 18 Date model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +832 en DateTime ir.message,text 19 DateTime model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +833 en Selection ir.message,text 20 Selection model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +834 en MultiSelection ir.message,text 21 MultiSelection model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +835 en Digits ir.message,text 22 Digits model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +836 en Domain ir.message,text 23 Domain model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +837 en A couple of key and label separated by ":" per line. ir.message,text 24 A couple of key and label separated by ":" per line. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +838 en Selection Sorted ir.message,text 25 Selection Sorted model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +839 en If the selection must be sorted on label. ir.message,text 26 If the selection must be sorted on label. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +840 en Help Selection ir.message,text 27 Help Selection model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +841 en The key followed by the help text separated by a ":", one per line. ir.message,text 28 The key followed by the help text separated by a ":", one per line. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +842 en Selection JSON ir.message,text 29 Selection JSON model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +843 en Help Selection JSON ir.message,text 30 Help Selection JSON model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +844 en Yes ir.message,text 31 Yes model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +845 en No ir.message,text 32 No model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +846 en Sequence ir.message,text 33 Sequence model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +847 en ID must be positive. ir.message,text 34 ID must be positive. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +848 en Only one singleton can be created. ir.message,text 35 Only one singleton can be created. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +849 en You are not allowed to modify the field "%(field)s" in "%(record)s" of "%(model)s". ir.message,text 36 You are not allowed to modify the field "%(field)s" in "%(record)s" of "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +850 en You are not allowed to delete the record "%(record)s" of "%(model)s". ir.message,text 37 You are not allowed to delete the record "%(record)s" of "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +851 en This record is part of the base configuration. ir.message,text 38 This record is part of the base configuration. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +852 en Relation not found: %(value)r in "%(model)s" (%(column)s). ir.message,text 39 Relation not found: %(value)r in "%(model)s" (%(column)s). model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +853 en Too many relations found: %(value)r in "%(model)s" (%(column)s). ir.message,text 40 Too many relations found: %(value)r in "%(model)s" (%(column)s). model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +854 en Syntax error for value: %(value)r in "%(field)s" of "%(model)s" (%(column)s). ir.message,text 41 Syntax error for value: %(value)r in "%(field)s" of "%(model)s" (%(column)s). model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +855 en Syntax error for reference: %(value)r in "%(field)s" of "%(model)s" (%(column)s). ir.message,text 42 Syntax error for reference: %(value)r in "%(field)s" of "%(model)s" (%(column)s). model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +856 en Syntax error for XML id: %(value)r in "%(field)s" of "%(model)s" (%(column)s). ir.message,text 43 Syntax error for XML id: %(value)r in "%(field)s" of "%(model)s" (%(column)s). model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +857 en The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not valid according to its domain. ir.message,text 44 The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not valid according to its domain. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +858 en A value is required for field "%(field)s" in "%(model)s". ir.message,text 45 A value is required for field "%(field)s" in "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +859 en A value is required for field "%(field)s" in "%(record)s" of "%(model)s". ir.message,text 46 A value is required for field "%(field)s" in "%(record)s" of "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +860 en The value "%(value)s" for field "%(field)s" in "%(model)s" is too long (%(size)i > %(max_size)i). ir.message,text 47 The value "%(value)s" for field "%(field)s" in "%(model)s" is too long (%(size)i > %(max_size)i). model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +861 en The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is too long (%(size)i > %(max_size)i). ir.message,text 48 The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is too long (%(size)i > %(max_size)i). model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +862 en The number of digits in the value "%(value)r" for field "%(field)s" in "%(record)s" of "%(model)s" exceeds the limit of "%(digits)i". ir.message,text 49 The number of digits in the value "%(value)r" for field "%(field)s" in "%(record)s" of "%(model)s" exceeds the limit of "%(digits)i". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +863 en The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" contains some invalid chars "%(chars)s". ir.message,text 50 The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" contains some invalid chars "%(chars)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +864 en The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not one of the allowed options. ir.message,text 51 The value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not one of the allowed options. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +865 en The time value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not valid. ir.message,text 52 The time value "%(value)s" for field "%(field)s" in "%(record)s" of "%(model)s" is not valid. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +866 en The value "%(value)s" for field "%(field)s" in "%(model)s" does not exist. ir.message,text 53 The value "%(value)s" for field "%(field)s" in "%(model)s" does not exist. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +867 en The records could not be deleted because they are used by field "%(field)s" of "%(model)s". ir.message,text 54 The records could not be deleted because they are used by field "%(field)s" of "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +868 en You are not allowed to access "%(model)s". ir.message,text 55 You are not allowed to access "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +869 en You are not allowed to access "%(model)s.%(field)s". ir.message,text 56 You are not allowed to access "%(model)s.%(field)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +964 en Groups res.user,groups -1 field res f \N \N \N \N \N +870 en You are not allowed to create records of "%(model)s" because they fail on at least one of these rules:\n%(rules)s ir.message,text 57 You are not allowed to create records of "%(model)s" because they fail on at least one of these rules:\n%(rules)s model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +871 en You are not allowed to read records "%(ids)s" of "%(model)s" because of at least one of these rules:\n%(rules)s ir.message,text 58 You are not allowed to read records "%(ids)s" of "%(model)s" because of at least one of these rules:\n%(rules)s model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +872 en You are trying to read records "%(ids)s" of "%(model)s" that don't exist. ir.message,text 59 You are trying to read records "%(ids)s" of "%(model)s" that don't exist. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +873 en You are not allowed to write to records "%(ids)s" of "%(model)s" because of at least one of these rules:\n%(rules)s ir.message,text 60 You are not allowed to write to records "%(ids)s" of "%(model)s" because of at least one of these rules:\n%(rules)s model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +874 en You are trying to write to records "%(ids)s" of "%(model)s" that don't exist. ir.message,text 61 You are trying to write to records "%(ids)s" of "%(model)s" that don't exist. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +875 en You are not allowed to delete records "%(ids)s" of "%(model)s" because of at lease one of those rules:\n%(rules)s ir.message,text 62 You are not allowed to delete records "%(ids)s" of "%(model)s" because of at lease one of those rules:\n%(rules)s model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +876 en Invalid domain in schema "%(schema)s". ir.message,text 63 Invalid domain in schema "%(schema)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +877 en Invalid selection in schema "%(schema)s". ir.message,text 64 Invalid selection in schema "%(schema)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +878 en Invalid help selection in schema "%(schema)s". ir.message,text 65 Invalid help selection in schema "%(schema)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +879 en Recursion error: Record "%(rec_name)s" with parent "%(parent_rec_name)s" was configured as ancestor of itself. ir.message,text 66 Recursion error: Record "%(rec_name)s" with parent "%(parent_rec_name)s" was configured as ancestor of itself. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +880 en Missing search function for field "%(field)s" in "%(model)s". ir.message,text 67 Missing search function for field "%(field)s" in "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +881 en Missing setter function for field "%(field)s" in "%(model)s". ir.message,text 68 Missing setter function for field "%(field)s" in "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +882 en Calling button "%(button)s on "%(model)s" is not allowed. ir.message,text 69 Calling button "%(button)s on "%(model)s" is not allowed. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +883 en Invalid XML for view "%(name)s". ir.message,text 70 Invalid XML for view "%(name)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +884 en Wrong wizard model in keyword action "%(name)s". ir.message,text 71 Wrong wizard model in keyword action "%(name)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +885 en Invalid email definition for report "%(name)s". ir.message,text 72 Invalid email definition for report "%(name)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +886 en Invalid record name definition for report "%(report)s" with exception "%(exception)s". ir.message,text 73 Invalid record name definition for report "%(report)s" with exception "%(exception)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +887 en Invalid view "%(view)s" for action "%(action)s". ir.message,text 74 Invalid view "%(view)s" for action "%(action)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +888 en Invalid domain or search criteria "%(domain)s" for action "%(action)s". ir.message,text 75 Invalid domain or search criteria "%(domain)s" for action "%(action)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +889 en Invalid context "%(context)s" for action "%(action)s". ir.message,text 76 Invalid context "%(context)s" for action "%(action)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +890 en The condition "%(condition)s" is not a valid PYSON expression for button rule "%(rule)s". ir.message,text 77 The condition "%(condition)s" is not a valid PYSON expression for button rule "%(rule)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +891 en Missing sequence. ir.message,text 78 Missing sequence. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +892 en Invalid prefix "%(affix)s" for sequence "%(sequence)s". ir.message,text 79 Invalid prefix "%(affix)s" for sequence "%(sequence)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +893 en Invalid suffix "%(affix)s" for sequence "%(sequence)s". ir.message,text 80 Invalid suffix "%(affix)s" for sequence "%(sequence)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +894 en The "Last Timestamp" cannot be in the future for sequence "%s". ir.message,text 81 The "Last Timestamp" cannot be in the future for sequence "%s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +895 en You cannot change the sequence type of a sequence instead create a new sequence. ir.message,text 82 You cannot change the sequence type of a sequence instead create a new sequence. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +896 en Invalid "Increment Number" (%(number_increment)s) or "Next Number" (%(number_next)s) with exception "%(exception)s". ir.message,text 83 Invalid "Increment Number" (%(number_increment)s) or "Next Number" (%(number_next)s) with exception "%(exception)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +897 en Invalid grouping "%(grouping)s" for language "%(language)s". ir.message,text 84 Invalid grouping "%(grouping)s" for language "%(language)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +898 en Invalid date format "%(format)s" for language "%(language)s". ir.message,text 85 Invalid date format "%(format)s" for language "%(language)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +899 en The default language "%(language)s" must be translatable. ir.message,text 86 The default language "%(language)s" must be translatable. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +900 en The default language "%(language)s" can not be deleted. ir.message,text 87 The default language "%(language)s" can not be deleted. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +901 en Invalid domain in rule "%(name)s". ir.message,text 88 Invalid domain in rule "%(name)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +902 en You can not export translation "%(name)s" because it has been overridden by module "%(overriding_module)s". ir.message,text 89 You can not export translation "%(name)s" because it has been overridden by module "%(overriding_module)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +903 en You can not remove a module that is activated or that is about to be activated. ir.message,text 90 You can not remove a module that is activated or that is about to be activated. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +904 en Some activated modules depend on the ones you are trying to deactivate: ir.message,text 91 Some activated modules depend on the ones you are trying to deactivate: model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +905 en You can not select "On Time" and any other on the same time, they are mutually exclusive. ir.message,text 92 You can not select "On Time" and any other on the same time, they are mutually exclusive. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +906 en Condition "%(condition)s" is not a valid PYSON expression for trigger "%(trigger)s". ir.message,text 93 Condition "%(condition)s" is not a valid PYSON expression for trigger "%(trigger)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +907 en Failed to save, please retry. ir.message,text 94 Failed to save, please retry. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +908 en Y ir.message,text 95 Y model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +909 en M ir.message,text 96 M model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +910 en w ir.message,text 97 w model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +911 en d ir.message,text 98 d model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +912 en h ir.message,text 99 h model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +913 en m ir.message,text 100 m model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +914 en s ir.message,text 101 s model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +915 en The resources to which this record must be copied. ir.message,text 102 The resources to which this record must be copied. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +916 en Attachments ir.message,text 103 Attachments model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +917 en Notes ir.message,text 104 Notes model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +918 en You are not allowed to execute wizard "%(wizard)s". ir.message,text 105 You are not allowed to execute wizard "%(wizard)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +919 en You are not allowed to execute wizard "%(wizard)s" on "%(model)s". ir.message,text 106 You are not allowed to execute wizard "%(wizard)s" on "%(model)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +920 en Invalid subject in e-mail template "%(template)s" with exception "%(exception)s". ir.message,text 107 Invalid subject in e-mail template "%(template)s" with exception "%(exception)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +921 en Invalid body in e-mail template "%(template)s" with exception "%(exception)s". ir.message,text 108 Invalid body in e-mail template "%(template)s" with exception "%(exception)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +922 en Invalid PYSON %(field)s in e-mail template "%(template)s" with exception "%(exception)s". ir.message,text 109 Invalid PYSON %(field)s in e-mail template "%(template)s" with exception "%(exception)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +923 en The PYSON %(field)s in e-mail template "%(template)s" must generate a list. ir.message,text 110 The PYSON %(field)s in e-mail template "%(template)s" must generate a list. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +924 en Only one avatar is allowed per resource. ir.message,text 111 Only one avatar is allowed per resource. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +925 en The size of an avatar must be unique. ir.message,text 112 The size of an avatar must be unique. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +926 en Avatar ir.message,text 113 Avatar model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +927 en Avatars ir.message,text 114 Avatars model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +928 en Avatar URL ir.message,text 115 Avatar URL model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +929 en The code on language must be unique. ir.message,text 116 The code on language must be unique. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +930 en The name of the button must be unique per model. ir.message,text 117 The name of the button must be unique per model. model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +931 en Invalid domain or search criteria "%(domain)s" for search "%(search)s". ir.message,text 118 Invalid domain or search criteria "%(domain)s" for search "%(search)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +932 en You cannot store optional on view "%(view)s". ir.message,text 119 You cannot store optional on view "%(view)s". model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +933 en %(field)s (string) ir.message,text 120 %(field)s (string) model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +934 en %(field)s (model name) ir.message,text 121 %(field)s (model name) model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +935 en E-mails ir.action,name 52 E-mails model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +936 en E-mails ir.ui.menu,name 47 E-mails model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +937 en E-mail Archives ir.action,name 53 E-mail Archives model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +938 en E-mail Templates ir.action,name 54 E-mail Templates model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +939 en E-mail Templates ir.ui.menu,name 48 E-mail Templates model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +940 en Errors ir.action,name 55 Errors model ir f 2024-04-13 20:27:30.723827 0 \N 2024-04-13 20:27:30.723827 0 +941 en Open ir.action.act_window.domain,name 5 Open model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +942 en Processing ir.action.act_window.domain,name 6 Processing model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +943 en All ir.action.act_window.domain,name 7 All model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +944 en Errors ir.ui.menu,name 49 Errors model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +945 en Open ir.model.button,string 12 Open model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +946 en Process ir.model.button,string 13 Process model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +947 en Solve ir.model.button,string 14 Solve model ir f 2024-04-13 20:27:30.723827 0 \N \N \N +949 en Buttons res.group,buttons -1 field res f \N \N \N \N \N +950 en Access Field res.group,field_access -1 field res f \N \N \N \N \N +951 en Access Menu res.group,menu_access -1 field res f \N \N \N \N \N +952 en Access Model res.group,model_access -1 field res f \N \N \N \N \N +953 en Name res.group,name -1 field res f \N \N \N \N \N +954 en Parent res.group,parent -1 field res f \N \N \N \N \N +955 en The group to inherit accesses from. res.group,parent -1 help res f \N \N \N \N \N +956 en Rules res.group,rule_groups -1 field res f \N \N \N \N \N +957 en Users res.group,users -1 field res f \N \N \N \N \N +959 en Actions res.user,actions -1 field res f \N \N \N \N \N +960 en Actions that will be run at login. res.user,actions -1 help res f \N \N \N \N \N +961 en Applications res.user,applications -1 field res f \N \N \N \N \N +962 en Avatar Badge URL res.user,avatar_badge_url -1 field res f \N \N \N \N \N +963 en Email res.user,email -1 field res f \N \N \N \N \N +965 en Language res.user,language -1 field res f \N \N \N \N \N +966 en Language Direction res.user,language_direction -1 field res f \N \N \N \N \N +967 en Login res.user,login -1 field res f \N \N \N \N \N +968 en Menu Action res.user,menu -1 field res f \N \N \N \N \N +969 en Name res.user,name -1 field res f \N \N \N \N \N +970 en Password res.user,password -1 field res f \N \N \N \N \N +971 en Password Hash res.user,password_hash -1 field res f \N \N \N \N \N +972 en Reset Password res.user,password_reset -1 field res f \N \N \N \N \N +973 en Reset Password Expire res.user,password_reset_expire -1 field res f \N \N \N \N \N +974 en PySON Menu res.user,pyson_menu -1 field res f \N \N \N \N \N +975 en Sessions res.user,sessions -1 field res f \N \N \N \N \N +976 en Signature res.user,signature -1 field res f \N \N \N \N \N +977 en Status Bar res.user,status_bar -1 field res f \N \N \N \N \N +978 en Warnings res.user,warnings -1 field res f \N \N \N \N \N +980 en Device Cookie res.user.login.attempt,device_cookie -1 field res f \N \N \N \N \N +981 en IP Address res.user.login.attempt,ip_address -1 field res f \N \N \N \N \N +982 en IP Network res.user.login.attempt,ip_network -1 field res f \N \N \N \N \N +983 en Login res.user.login.attempt,login -1 field res f \N \N \N \N \N +985 en Cookie res.user.device,cookie -1 field res f \N \N \N \N \N +986 en Login res.user.device,login -1 field res f \N \N \N \N \N +988 en Action res.user-ir.action,action -1 field res f \N \N \N \N \N +989 en User res.user-ir.action,user -1 field res f \N \N \N \N \N +991 en Group res.user-res.group,group -1 field res f \N \N \N \N \N +992 en User res.user-res.group,user -1 field res f \N \N \N \N \N +994 en Always res.user.warning,always -1 field res f \N \N \N \N \N +995 en Name res.user.warning,name -1 field res f \N \N \N \N \N +996 en User res.user.warning,user -1 field res f \N \N \N \N \N +5733 en Asigne una secuencia para enumerar equipos. ir.message,text 369 Asigne una secuencia para enumerar equipos. model optical_equipment f 2024-04-13 22:12:02.160011 0 \N \N \N +998 en Application res.user.application,application -1 field res f \N \N \N \N \N +999 en Key res.user.application,key -1 field res f \N \N \N \N \N +1000 en State res.user.application,state -1 field res f \N \N \N \N \N +1001 en Requested res.user.application,state -1 selection res f \N \N \N \N \N +1002 en Validated res.user.application,state -1 selection res f \N \N \N \N \N +1003 en Cancelled res.user.application,state -1 selection res f \N \N \N \N \N +1004 en User res.user.application,user -1 field res f \N \N \N \N \N +2444 en Tax Rule account.tax.rule,name -1 model account f \N \N \N \N \N +1006 en Groups ir.ui.menu,groups -1 field res f \N \N \N \N \N +2455 en Tax Rule Line Template account.tax.rule.line.template,name -1 model account f \N \N \N \N \N +1008 en Group ir.ui.menu-res.group,group -1 field res f \N \N \N \N \N +1009 en Menu ir.ui.menu-res.group,menu -1 field res f \N \N \N \N \N +2465 en Tax Rule Line account.tax.rule.line,name -1 model account f \N \N \N \N \N +1011 en Action ir.action-res.group,action -1 field res f \N \N \N \N \N +1012 en Group ir.action-res.group,group -1 field res f \N \N \N \N \N +1013 en Groups ir.action,groups -1 field res f \N \N \N \N \N +1014 en Groups ir.action.report,groups -1 field res f \N \N \N \N \N +1015 en Groups ir.action.act_window,groups -1 field res f \N \N \N \N \N +1016 en Groups ir.action.wizard,groups -1 field res f \N \N \N \N \N +1017 en Groups ir.action.url,groups -1 field res f \N \N \N \N \N +1018 en Groups ir.action.keyword,groups -1 field res f \N \N \N \N \N +1019 en Groups ir.model.button,groups -1 field res f \N \N \N \N \N +2478 en Test Tax account.tax.test,name -1 model account f \N \N \N \N \N +1021 en Button ir.model.button-res.group,button -1 field res f \N \N \N \N \N +1022 en Group ir.model.button-res.group,group -1 field res f \N \N \N \N \N +1023 en Group ir.model.button.rule,group -1 field res f \N \N \N \N \N +1024 en User ir.model.button.click,user -1 field res f \N \N \N \N \N +1025 en Groups ir.rule.group,groups -1 field res f \N \N \N \N \N +2485 en Test Tax account.tax.test.result,name -1 model account f \N \N \N \N \N +1027 en Group ir.rule.group-res.group,group -1 field res f \N \N \N \N \N +1028 en Rule Group ir.rule.group-res.group,rule_group -1 field res f \N \N \N \N \N +1029 en User Groups ir.sequence.type,groups -1 field res f \N \N \N \N \N +1030 en Groups allowed to edit the sequences of this type. ir.sequence.type,groups -1 help res f \N \N \N \N \N +1032 en User Groups ir.sequence.type-res.group,group -1 field res f \N \N \N \N \N +1033 en Sequence Type ir.sequence.type-res.group,sequence_type -1 field res f \N \N \N \N \N +1034 en Groups ir.export,groups -1 field res f \N \N \N \N \N +1035 en The user groups that can use the export. ir.export,groups -1 help res f \N \N \N \N \N +1036 en Modification Groups ir.export,write_groups -1 field res f \N \N \N \N \N +1037 en The user groups that can modify the export. ir.export,write_groups -1 help res f \N \N \N \N \N +1039 en Export ir.export-res.group,export -1 field res f \N \N \N \N \N +1040 en Group ir.export-res.group,group -1 field res f \N \N \N \N \N +1042 en Export ir.export-write-res.group,export -1 field res f \N \N \N \N \N +1043 en Group ir.export-write-res.group,group -1 field res f \N \N \N \N \N +504 en Config wizard to run after activating a module ir.module.config_wizard.item,name -1 model ir f \N \N \N \N \N +1048 en Users ir.ui.menu,name 50 Users model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1049 en Administration res.group,name 1 Administration model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1050 en Groups ir.action,name 56 Groups model res f 2024-04-13 20:27:35.518366 0 \N 2024-04-13 20:27:35.518366 0 +1051 en Groups ir.ui.menu,name 51 Groups model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1052 en Users ir.action,name 57 Users model res f 2024-04-13 20:27:35.518366 0 \N 2024-04-13 20:27:35.518366 0 +1053 en Users ir.ui.menu,name 52 Users model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1054 en Reset Password ir.model.button,string 15 Reset Password model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1055 en Send by email a new temporary password to the user ir.model.button,help 15 Send by email a new temporary password to the user model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1056 en Configure Users ir.action,name 58 Configure Users model res f 2024-04-13 20:27:35.518366 0 \N 2024-04-13 20:27:35.518366 0 +1057 en Own warning ir.rule.group,name 1 Own warning model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1058 en Own user application ir.rule.group,name 2 Own user application model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1059 en Any user application ir.rule.group,name 3 Any user application model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1060 en Reset Password ir.action,name 59 Reset Password model res f 2024-04-13 20:27:35.518366 0 \N 2024-04-13 20:27:35.518366 0 +1061 en Validate ir.model.button,string 16 Validate model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1062 en Cancel ir.model.button,string 17 Cancel model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1063 en User in groups ir.rule.group,name 4 User in groups model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1064 en User in groups ir.rule.group,name 5 User in groups model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1065 en User in groups ir.rule.group,name 6 User in groups model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1066 en User in groups ir.rule.group,name 7 User in groups model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1067 en The password must have at least %(length)i characters. ir.message,text 122 The password must have at least %(length)i characters. model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1068 en The password is forbidden. ir.message,text 123 The password is forbidden. model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1069 en The password cannot be the same as user's name. ir.message,text 124 The password cannot be the same as user's name. model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1070 en The password cannot be the same as user's login. ir.message,text 125 The password cannot be the same as user's login. model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1071 en The password cannot be the same as user's email address. ir.message,text 126 The password cannot be the same as user's email address. model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1072 en The email address "%(email)s" for "%(user)s" is not valid. ir.message,text 127 The email address "%(email)s" for "%(user)s" is not valid. model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1073 en For logging purposes users cannot be deleted, instead they should be deactivated. ir.message,text 128 For logging purposes users cannot be deleted, instead they should be deactivated. model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1074 en Password for %(login)s ir.message,text 129 Password for %(login)s model res f 2024-04-13 20:27:35.518366 0 \N \N \N +1076 en Code country.organization,code -1 field country f \N \N \N \N \N +1077 en Countries country.organization,countries -1 field country f \N \N \N \N \N +1078 en Members country.organization,members -1 field country f \N \N \N \N \N +1079 en Name country.organization,name -1 field country f \N \N \N \N \N +509 en Module Config Wizard First ir.module.config_wizard.first,name -1 model ir f \N \N \N \N \N +1081 en Active country.organization.member,active -1 field country f \N \N \N \N \N +1082 en Country country.organization.member,country -1 field country f \N \N \N \N \N +1083 en From Date country.organization.member,from_date -1 field country f \N \N \N \N \N +1084 en Organization country.organization.member,organization -1 field country f \N \N \N \N \N +1085 en To Date country.organization.member,to_date -1 field country f \N \N \N \N \N +510 en Module Config Wizard Other ir.module.config_wizard.other,name -1 model ir f \N \N \N \N \N +1087 en Numeric Code country.region,code_numeric -1 field country f \N \N \N \N \N +1088 en UN M49 region code. country.region,code_numeric -1 help country f \N \N \N \N \N +1089 en Countries country.region,countries -1 field country f \N \N \N \N \N +1090 en Name country.region,name -1 field country f \N \N \N \N \N +1091 en Parent country.region,parent -1 field country f \N \N \N \N \N +1092 en Subregions country.region,subregions -1 field country f \N \N \N \N \N +1086 en Region country.region,name -1 model country f \N \N \N \N \N +1094 en Code country.country,code -1 field country f \N \N \N \N \N +1095 en The 2 chars ISO country code. country.country,code -1 help country f \N \N \N \N \N +1096 en 3-letters Code country.country,code3 -1 field country f \N \N \N \N \N +1097 en The 3 chars ISO country code. country.country,code3 -1 help country f \N \N \N \N \N +1098 en Numeric Code country.country,code_numeric -1 field country f \N \N \N \N \N +1099 en The ISO numeric country code. country.country,code_numeric -1 help country f \N \N \N \N \N +1100 en Flag country.country,flag -1 field country f \N \N \N \N \N +1101 en Members country.country,members -1 field country f \N \N \N \N \N +1102 en Name country.country,name -1 field country f \N \N \N \N \N +1103 en The main identifier of the country. country.country,name -1 help country f \N \N \N \N \N +1104 en Organizations country.country,organizations -1 field country f \N \N \N \N \N +1105 en Region country.country,region -1 field country f \N \N \N \N \N +1106 en Subdivisions country.country,subdivisions -1 field country f \N \N \N \N \N +1108 en Code country.subdivision,code -1 field country f \N \N \N \N \N +1109 en The ISO code of the subdivision. country.subdivision,code -1 help country f \N \N \N \N \N +1110 en Country country.subdivision,country -1 field country f \N \N \N \N \N +1111 en The country where this subdivision is. country.subdivision,country -1 help country f \N \N \N \N \N +1112 en Flag country.subdivision,flag -1 field country f \N \N \N \N \N +1113 en Name country.subdivision,name -1 field country f \N \N \N \N \N +1114 en The main identifier of the subdivision. country.subdivision,name -1 help country f \N \N \N \N \N +1115 en Parent country.subdivision,parent -1 field country f \N \N \N \N \N +1116 en Add subdivision below the parent. country.subdivision,parent -1 help country f \N \N \N \N \N +1117 en Type country.subdivision,type -1 field country f \N \N \N \N \N +1118 en Administration country.subdivision,type -1 selection country f \N \N \N \N \N +1119 en Administrative area country.subdivision,type -1 selection country f \N \N \N \N \N +1120 en Administrative atoll country.subdivision,type -1 selection country f \N \N \N \N \N +1121 en Administrative precinct country.subdivision,type -1 selection country f \N \N \N \N \N +1122 en Administrative Region country.subdivision,type -1 selection country f \N \N \N \N \N +1123 en Administrative Territory country.subdivision,type -1 selection country f \N \N \N \N \N +1124 en Area country.subdivision,type -1 selection country f \N \N \N \N \N +1125 en Atoll country.subdivision,type -1 selection country f \N \N \N \N \N +1126 en Arctic Region country.subdivision,type -1 selection country f \N \N \N \N \N +1127 en Autonomous City country.subdivision,type -1 selection country f \N \N \N \N \N +1128 en Autonomous city in north africa country.subdivision,type -1 selection country f \N \N \N \N \N +1129 en Autonomous Commune country.subdivision,type -1 selection country f \N \N \N \N \N +1130 en Autonomous communities country.subdivision,type -1 selection country f \N \N \N \N \N +1131 en Autonomous community country.subdivision,type -1 selection country f \N \N \N \N \N +1132 en Autonomous District country.subdivision,type -1 selection country f \N \N \N \N \N +1133 en Autonomous island country.subdivision,type -1 selection country f \N \N \N \N \N +1134 en Autonomous monastic state country.subdivision,type -1 selection country f \N \N \N \N \N +1135 en Autonomous municipality country.subdivision,type -1 selection country f \N \N \N \N \N +1136 en Autonomous Province country.subdivision,type -1 selection country f \N \N \N \N \N +1137 en Autonomous Region country.subdivision,type -1 selection country f \N \N \N \N \N +1138 en Autonomous republic country.subdivision,type -1 selection country f \N \N \N \N \N +1139 en Autonomous sector country.subdivision,type -1 selection country f \N \N \N \N \N +1140 en Autonomous territory country.subdivision,type -1 selection country f \N \N \N \N \N +1141 en Autonomous territorial unit country.subdivision,type -1 selection country f \N \N \N \N \N +1142 en Borough country.subdivision,type -1 selection country f \N \N \N \N \N +1143 en Canton country.subdivision,type -1 selection country f \N \N \N \N \N +1144 en Capital country.subdivision,type -1 selection country f \N \N \N \N \N +1145 en Capital city country.subdivision,type -1 selection country f \N \N \N \N \N +1146 en Capital District country.subdivision,type -1 selection country f \N \N \N \N \N +1147 en Capital Metropolitan City country.subdivision,type -1 selection country f \N \N \N \N \N +1148 en Capital Territory country.subdivision,type -1 selection country f \N \N \N \N \N +1149 en Chain (of islands) country.subdivision,type -1 selection country f \N \N \N \N \N +1150 en Chains (of islands) country.subdivision,type -1 selection country f \N \N \N \N \N +1151 en City country.subdivision,type -1 selection country f \N \N \N \N \N +1152 en City corporation country.subdivision,type -1 selection country f \N \N \N \N \N +1153 en City municipality country.subdivision,type -1 selection country f \N \N \N \N \N +1154 en City with county rights country.subdivision,type -1 selection country f \N \N \N \N \N +1155 en Commune country.subdivision,type -1 selection country f \N \N \N \N \N +1156 en Constitutional province country.subdivision,type -1 selection country f \N \N \N \N \N +1157 en Council area country.subdivision,type -1 selection country f \N \N \N \N \N +1158 en Country country.subdivision,type -1 selection country f \N \N \N \N \N +1159 en County country.subdivision,type -1 selection country f \N \N \N \N \N +1160 en Decentralized regional entity country.subdivision,type -1 selection country f \N \N \N \N \N +1161 en Department country.subdivision,type -1 selection country f \N \N \N \N \N +1162 en Dependency country.subdivision,type -1 selection country f \N \N \N \N \N +1163 en Development region country.subdivision,type -1 selection country f \N \N \N \N \N +1164 en District country.subdivision,type -1 selection country f \N \N \N \N \N +1165 en District council area country.subdivision,type -1 selection country f \N \N \N \N \N +1166 en District municipality country.subdivision,type -1 selection country f \N \N \N \N \N +1167 en Districts under republic administration country.subdivision,type -1 selection country f \N \N \N \N \N +1168 en District with special status country.subdivision,type -1 selection country f \N \N \N \N \N +1169 en Division country.subdivision,type -1 selection country f \N \N \N \N \N +1170 en Economic Prefecture country.subdivision,type -1 selection country f \N \N \N \N \N +1171 en Economic region country.subdivision,type -1 selection country f \N \N \N \N \N +1172 en Emirate country.subdivision,type -1 selection country f \N \N \N \N \N +1173 en Entity country.subdivision,type -1 selection country f \N \N \N \N \N +1174 en Federal capital territory country.subdivision,type -1 selection country f \N \N \N \N \N +1175 en Federal Dependency country.subdivision,type -1 selection country f \N \N \N \N \N +1176 en Federal District country.subdivision,type -1 selection country f \N \N \N \N \N +1177 en Federal Territory country.subdivision,type -1 selection country f \N \N \N \N \N +1178 en Federal Territories country.subdivision,type -1 selection country f \N \N \N \N \N +1179 en Free municipal consortium country.subdivision,type -1 selection country f \N \N \N \N \N +1180 en Geographical entity country.subdivision,type -1 selection country f \N \N \N \N \N +1181 en Geographical region country.subdivision,type -1 selection country f \N \N \N \N \N +1182 en Geographical unit country.subdivision,type -1 selection country f \N \N \N \N \N +1183 en Governorate country.subdivision,type -1 selection country f \N \N \N \N \N +1184 en Group of islands (20 inhabited islands) country.subdivision,type -1 selection country f \N \N \N \N \N +1185 en Included for completeness country.subdivision,type -1 selection country f \N \N \N \N \N +1186 en Indigenous region country.subdivision,type -1 selection country f \N \N \N \N \N +1187 en Island country.subdivision,type -1 selection country f \N \N \N \N \N +1188 en Island council country.subdivision,type -1 selection country f \N \N \N \N \N +1189 en Island group country.subdivision,type -1 selection country f \N \N \N \N \N +1190 en Islands, groups of islands country.subdivision,type -1 selection country f \N \N \N \N \N +1191 en Land country.subdivision,type -1 selection country f \N \N \N \N \N +1192 en Local council country.subdivision,type -1 selection country f \N \N \N \N \N +1193 en London borough country.subdivision,type -1 selection country f \N \N \N \N \N +1194 en Metropolitan administration country.subdivision,type -1 selection country f \N \N \N \N \N +1195 en Metropolitan city country.subdivision,type -1 selection country f \N \N \N \N \N +1196 en Metropolitan cities country.subdivision,type -1 selection country f \N \N \N \N \N +1197 en Metropolitan collectivity with special status country.subdivision,type -1 selection country f \N \N \N \N \N +1198 en Metropolitan department country.subdivision,type -1 selection country f \N \N \N \N \N +1199 en Metropolitan district country.subdivision,type -1 selection country f \N \N \N \N \N +1200 en Metropolitan region country.subdivision,type -1 selection country f \N \N \N \N \N +1201 en Municipalities country.subdivision,type -1 selection country f \N \N \N \N \N +1202 en Municipality country.subdivision,type -1 selection country f \N \N \N \N \N +1203 en Nation country.subdivision,type -1 selection country f \N \N \N \N \N +1204 en Oblast country.subdivision,type -1 selection country f \N \N \N \N \N +1205 en Outlying area country.subdivision,type -1 selection country f \N \N \N \N \N +1206 en Overseas collectivity country.subdivision,type -1 selection country f \N \N \N \N \N +1207 en Overseas collectivity with special status country.subdivision,type -1 selection country f \N \N \N \N \N +1208 en Overseas department country.subdivision,type -1 selection country f \N \N \N \N \N +1209 en Overseas region country.subdivision,type -1 selection country f \N \N \N \N \N +1210 en Overseas region/department country.subdivision,type -1 selection country f \N \N \N \N \N +1211 en Overseas territory country.subdivision,type -1 selection country f \N \N \N \N \N +1212 en Overseas territorial collectivity country.subdivision,type -1 selection country f \N \N \N \N \N +1213 en Pakistan administered area country.subdivision,type -1 selection country f \N \N \N \N \N +1214 en Parish country.subdivision,type -1 selection country f \N \N \N \N \N +1215 en Popularate country.subdivision,type -1 selection country f \N \N \N \N \N +1216 en Popularates country.subdivision,type -1 selection country f \N \N \N \N \N +1217 en Prefecture country.subdivision,type -1 selection country f \N \N \N \N \N +1218 en Principality country.subdivision,type -1 selection country f \N \N \N \N \N +1219 en Province country.subdivision,type -1 selection country f \N \N \N \N \N +1220 en Quarter country.subdivision,type -1 selection country f \N \N \N \N \N +1221 en Rayon country.subdivision,type -1 selection country f \N \N \N \N \N +1222 en Region country.subdivision,type -1 selection country f \N \N \N \N \N +1223 en Regional council country.subdivision,type -1 selection country f \N \N \N \N \N +1224 en Regional state country.subdivision,type -1 selection country f \N \N \N \N \N +1225 en Republic country.subdivision,type -1 selection country f \N \N \N \N \N +1226 en Republican City country.subdivision,type -1 selection country f \N \N \N \N \N +1227 en Rural municipality country.subdivision,type -1 selection country f \N \N \N \N \N +1228 en Self-governed part country.subdivision,type -1 selection country f \N \N \N \N \N +1229 en Special administrative city country.subdivision,type -1 selection country f \N \N \N \N \N +1230 en Special administrative region country.subdivision,type -1 selection country f \N \N \N \N \N +1231 en Special city country.subdivision,type -1 selection country f \N \N \N \N \N +1232 en Special District country.subdivision,type -1 selection country f \N \N \N \N \N +1233 en Special island authority country.subdivision,type -1 selection country f \N \N \N \N \N +1234 en Special Municipality country.subdivision,type -1 selection country f \N \N \N \N \N +1235 en Special Region country.subdivision,type -1 selection country f \N \N \N \N \N +1236 en Special self-governing city country.subdivision,type -1 selection country f \N \N \N \N \N +1237 en Special self-governing province country.subdivision,type -1 selection country f \N \N \N \N \N +1238 en Special zone country.subdivision,type -1 selection country f \N \N \N \N \N +1239 en State country.subdivision,type -1 selection country f \N \N \N \N \N +1240 en Territorial unit country.subdivision,type -1 selection country f \N \N \N \N \N +1241 en Territory country.subdivision,type -1 selection country f \N \N \N \N \N +1242 en Town country.subdivision,type -1 selection country f \N \N \N \N \N +1243 en Town council country.subdivision,type -1 selection country f \N \N \N \N \N +1244 en Two-tier county country.subdivision,type -1 selection country f \N \N \N \N \N +1245 en Union territory country.subdivision,type -1 selection country f \N \N \N \N \N +1246 en Unitary authority country.subdivision,type -1 selection country f \N \N \N \N \N +1247 en Unitary authority (england) country.subdivision,type -1 selection country f \N \N \N \N \N +1248 en Unitary authority (wales) country.subdivision,type -1 selection country f \N \N \N \N \N +1249 en Urban community country.subdivision,type -1 selection country f \N \N \N \N \N +1250 en Urban municipality country.subdivision,type -1 selection country f \N \N \N \N \N +1251 en Voivodship country.subdivision,type -1 selection country f \N \N \N \N \N +1252 en Ward country.subdivision,type -1 selection country f \N \N \N \N \N +1253 en zone country.subdivision,type -1 selection country f \N \N \N \N \N +512 en Module Config Wizard Done ir.module.config_wizard.done,name -1 model ir f \N \N \N \N \N +1255 en City country.postal_code,city -1 field country f \N \N \N \N \N +1256 en The city associated with the postal code. country.postal_code,city -1 help country f \N \N \N \N \N +1257 en Country country.postal_code,country -1 field country f \N \N \N \N \N +1258 en The country that contains the postal code. country.postal_code,country -1 help country f \N \N \N \N \N +1259 en Postal Code country.postal_code,postal_code -1 field country f \N \N \N \N \N +1260 en Subdivision country.postal_code,subdivision -1 field country f \N \N \N \N \N +1261 en The subdivision where the postal code is. country.postal_code,subdivision -1 help country f \N \N \N \N \N +1262 en Countries ir.ui.menu,name 53 Countries model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1263 en Organizations ir.action,name 60 Organizations model country f 2024-04-13 20:39:00.134374 0 \N 2024-04-13 20:39:00.134374 0 +1264 en Organizations ir.ui.menu,name 54 Organizations model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1265 en Areas ir.action,name 61 Areas model country f 2024-04-13 20:39:00.134374 0 \N 2024-04-13 20:39:00.134374 0 +1266 en Areas ir.ui.menu,name 55 Areas model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1267 en Regions ir.action,name 62 Regions model country f 2024-04-13 20:39:00.134374 0 \N 2024-04-13 20:39:00.134374 0 +1268 en Regions ir.ui.menu,name 56 Regions model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1269 en Countries ir.action,name 63 Countries model country f 2024-04-13 20:39:00.134374 0 \N 2024-04-13 20:39:00.134374 0 +1270 en Countries ir.ui.menu,name 57 Countries model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1271 en Countries by Region ir.action,name 64 Countries by Region model country f 2024-04-13 20:39:00.134374 0 \N 2024-04-13 20:39:00.134374 0 +1272 en Postal Codes ir.action,name 65 Postal Codes model country f 2024-04-13 20:39:00.134374 0 \N 2024-04-13 20:39:00.134374 0 +1273 en European Union country.organization,name 1 European Union model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1274 en Benelux Union country.organization,name 2 Benelux Union model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1275 en North American Free Trade Agreement country.organization,name 3 North American Free Trade Agreement model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1276 en Southern Common Market country.organization,name 4 Southern Common Market model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1277 en Andean Community country.organization,name 5 Andean Community model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1278 en Caribbean Community country.organization,name 6 Caribbean Community model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1279 en Asia-Pacific Economic Cooperation country.organization,name 7 Asia-Pacific Economic Cooperation model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1280 en Association of Southeast Asian Nations country.organization,name 8 Association of Southeast Asian Nations model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1281 en South Asian Free Trade Area country.organization,name 9 South Asian Free Trade Area model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1282 en Cooperation Council for the Arab States of the Gulf country.organization,name 10 Cooperation Council for the Arab States of the Gulf model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1283 en Economic and Monetary Community of Central Africa country.organization,name 11 Economic and Monetary Community of Central Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1284 en Economic Community of Central African States country.organization,name 12 Economic Community of Central African States model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1285 en Economic Community of West African States country.organization,name 13 Economic Community of West African States model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1286 en Community of Sahel–Saharan States country.organization,name 14 Community of Sahel–Saharan States model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1287 en Common Market for Eastern and Southern Africa country.organization,name 15 Common Market for Eastern and Southern Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1288 en East African Community country.organization,name 16 East African Community model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1289 en Intergovernmental Authority on Development country.organization,name 17 Intergovernmental Authority on Development model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1290 en Southern African Development Community country.organization,name 18 Southern African Development Community model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1291 en Arab Maghreb Union country.organization,name 19 Arab Maghreb Union model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1292 en World country.region,name 1 World model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1293 en Africa country.region,name 2 Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1294 en Antarctica country.region,name 3 Antarctica model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1295 en Americas country.region,name 4 Americas model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1296 en Asia country.region,name 5 Asia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1297 en Europe country.region,name 6 Europe model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1298 en Oceania country.region,name 7 Oceania model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1299 en Northern Africa country.region,name 8 Northern Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1300 en Sub-Saharan Africa country.region,name 9 Sub-Saharan Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1301 en North America country.region,name 10 North America model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1302 en Latin America and the Caribbean country.region,name 11 Latin America and the Caribbean model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1303 en Eastern Asia country.region,name 12 Eastern Asia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1304 en Southern Asia country.region,name 13 Southern Asia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1305 en South-eastern Asia country.region,name 14 South-eastern Asia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1306 en Central Asia country.region,name 15 Central Asia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1307 en Western Asia country.region,name 16 Western Asia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +513 en Module Activate Upgrade Start ir.module.activate_upgrade.start,name -1 model ir f \N \N \N \N \N +515 en Module Activate Upgrade Done ir.module.activate_upgrade.done,name -1 model ir f \N \N \N \N \N +516 en Configure Modules ir.module.config.start,name -1 model ir f \N \N \N \N \N +518 en Cache ir.cache,name -1 model ir f \N \N \N \N \N +521 en Date ir.date,name -1 model ir f \N \N \N \N \N +522 en Trigger ir.trigger,name -1 model ir f \N \N \N \N \N +536 en Trigger Log ir.trigger.log,name -1 model ir f \N \N \N \N \N +1308 en Southern Europe country.region,name 17 Southern Europe model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1309 en Eastern Europe country.region,name 18 Eastern Europe model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1310 en Northern Europe country.region,name 19 Northern Europe model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1311 en Western Europe country.region,name 20 Western Europe model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1312 en Australia and New Zealand country.region,name 21 Australia and New Zealand model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1313 en Melanesia country.region,name 22 Melanesia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1314 en Micronesia country.region,name 23 Micronesia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1315 en Polynesia country.region,name 24 Polynesia model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1316 en Western Africa country.region,name 25 Western Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1317 en Eastern Africa country.region,name 26 Eastern Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1318 en Middle Africa country.region,name 27 Middle Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1319 en Southern Africa country.region,name 28 Southern Africa model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1320 en Northern America country.region,name 29 Northern America model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1321 en South America country.region,name 30 South America model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1322 en Central America country.region,name 31 Central America model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1323 en Caribbean country.region,name 32 Caribbean model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1324 en Channel Islands country.region,name 33 Channel Islands model country f 2024-04-13 20:39:00.134374 0 \N \N \N +1326 en Code currency.currency,code -1 field currency f \N \N \N \N \N +1327 en The 3 chars ISO currency code. currency.currency,code -1 help currency f \N \N \N \N \N +1328 en Digits currency.currency,digits -1 field currency f \N \N \N \N \N +1329 en The number of digits to display after the decimal separator. currency.currency,digits -1 help currency f \N \N \N \N \N +1330 en Name currency.currency,name -1 field currency f \N \N \N \N \N +1331 en The main identifier of the currency. currency.currency,name -1 help currency f \N \N \N \N \N +1332 en Numeric Code currency.currency,numeric_code -1 field currency f \N \N \N \N \N +1333 en The 3 digits ISO currency code. currency.currency,numeric_code -1 help currency f \N \N \N \N \N +1334 en Current rate currency.currency,rate -1 field currency f \N \N \N \N \N +1335 en Rates currency.currency,rates -1 field currency f \N \N \N \N \N +1336 en Add floating exchange rates for the currency. currency.currency,rates -1 help currency f \N \N \N \N \N +1337 en Rounding factor currency.currency,rounding -1 field currency f \N \N \N \N \N +1338 en The minimum amount which can be represented in this currency. currency.currency,rounding -1 help currency f \N \N \N \N \N +1339 en Symbol currency.currency,symbol -1 field currency f \N \N \N \N \N +1340 en The symbol used for currency formating. currency.currency,symbol -1 help currency f \N \N \N \N \N +1342 en Currency currency.currency.rate,currency -1 field currency f \N \N \N \N \N +1343 en The currency on which the rate applies. currency.currency.rate,currency -1 help currency f \N \N \N \N \N +1344 en Date currency.currency.rate,date -1 field currency f \N \N \N \N \N +1345 en From when the rate applies. currency.currency.rate,date -1 help currency f \N \N \N \N \N +1346 en Rate currency.currency.rate,rate -1 field currency f \N \N \N \N \N +1347 en The floating exchange rate used to convert the currency. currency.currency.rate,rate -1 help currency f \N \N \N \N \N +539 en Session ir.session,name -1 model ir f \N \N \N \N \N +1349 en Currencies currency.cron,currencies -1 field currency f \N \N \N \N \N +1350 en The currencies to update the rate. currency.cron,currencies -1 help currency f \N \N \N \N \N +1351 en Currency currency.cron,currency -1 field currency f \N \N \N \N \N +1352 en The base currency to fetch rate. currency.cron,currency -1 help currency f \N \N \N \N \N +1353 en Day of Month currency.cron,day -1 field currency f \N \N \N \N \N +1354 en Frequency currency.cron,frequency -1 field currency f \N \N \N \N \N +1355 en How frequently rates must be updated. currency.cron,frequency -1 help currency f \N \N \N \N \N +1356 en Daily currency.cron,frequency -1 selection currency f \N \N \N \N \N +1357 en Weekly currency.cron,frequency -1 selection currency f \N \N \N \N \N +1358 en Monthly currency.cron,frequency -1 selection currency f \N \N \N \N \N +1359 en Last Update currency.cron,last_update -1 field currency f \N \N \N \N \N +1360 en Source currency.cron,source -1 field currency f \N \N \N \N \N +1361 en The external source for rates. currency.cron,source -1 help currency f \N \N \N \N \N +1362 en European Central Bank currency.cron,source -1 selection currency f \N \N \N \N \N +1363 en Day of Week currency.cron,weekday -1 field currency f \N \N \N \N \N +595 en Email Template - Report ir.email.template-ir.action.report,name -1 model ir f \N \N \N \N \N +1365 en Cron currency.cron-currency.currency,cron -1 field currency f \N \N \N \N \N +1366 en Currency currency.cron-currency.currency,currency -1 field currency f \N \N \N \N \N +1367 en Update Currency Rates ir.cron,method -1 selection currency f \N \N \N \N \N +1368 en Currency Administration res.group,name 2 Currency Administration model currency f 2024-04-13 20:39:00.792624 0 \N \N \N +1369 en Currencies ir.ui.menu,name 58 Currencies model currency f 2024-04-13 20:39:00.792624 0 \N \N \N +1370 en Currencies ir.action,name 66 Currencies model currency f 2024-04-13 20:39:00.792624 0 \N 2024-04-13 20:39:00.792624 0 +1371 en Currencies ir.ui.menu,name 59 Currencies model currency f 2024-04-13 20:39:00.792624 0 \N \N \N +1511 en Belarus VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +598 en Error ir.error,name -1 model ir f \N \N \N \N \N +611 en Cancel ir.translation.set,start,end -1 wizard_button ir f \N \N \N \N \N +1325 en Currency currency.currency,name -1 model currency f \N \N \N \N \N +1372 en Scheduled Rate Updates ir.action,name 67 Scheduled Rate Updates model currency f 2024-04-13 20:39:00.792624 0 \N 2024-04-13 20:39:00.792624 0 +1373 en Scheduled Rate Updates ir.ui.menu,name 60 Scheduled Rate Updates model currency f 2024-04-13 20:39:00.792624 0 \N \N \N +1374 en Run ir.model.button,string 18 Run model currency f 2024-04-13 20:39:00.792624 0 \N \N \N +1375 en No rate found for currency "%(currency)s" on "%(date)s". ir.message,text 130 No rate found for currency "%(currency)s" on "%(date)s". model currency f 2024-04-13 20:39:00.792624 0 \N \N \N +1376 en A currency can only have one rate by date. ir.message,text 131 A currency can only have one rate by date. model currency f 2024-04-13 20:39:00.792624 0 \N \N \N +1377 en A currency rate must be positive. ir.message,text 132 A currency rate must be positive. model currency f 2024-04-13 20:39:00.792624 0 \N \N \N +612 en Set ir.translation.set,start,set_ -1 wizard_button ir f \N \N \N \N \N +1379 en Children party.category,childs -1 field party f \N \N \N \N \N +1380 en Add children below the category. party.category,childs -1 help party f \N \N \N \N \N +1381 en Name party.category,name -1 field party f \N \N \N \N \N +1382 en The main identifier of the category. party.category,name -1 help party f \N \N \N \N \N +1383 en Parent party.category,parent -1 field party f \N \N \N \N \N +1384 en Add the category below the parent. party.category,parent -1 help party f \N \N \N \N \N +1386 en Addresses party.party,addresses -1 field party f \N \N \N \N \N +1387 en Categories party.party,categories -1 field party f \N \N \N \N \N +1388 en The categories the party belongs to. party.party,categories -1 help party f \N \N \N \N \N +1389 en Code party.party,code -1 field party f \N \N \N \N \N +1390 en The unique identifier of the party. party.party,code -1 help party f \N \N \N \N \N +1391 en Code Readonly party.party,code_readonly -1 field party f \N \N \N \N \N +1392 en Contact Mechanisms party.party,contact_mechanisms -1 field party f \N \N \N \N \N +1393 en Distance party.party,distance -1 field party f \N \N \N \N \N +1394 en E-Mail party.party,email -1 field party f \N \N \N \N \N +1395 en Fax party.party,fax -1 field party f \N \N \N \N \N +1396 en Full Name party.party,full_name -1 field party f \N \N \N \N \N +1397 en Identifiers party.party,identifiers -1 field party f \N \N \N \N \N +1398 en Add other identifiers of the party. party.party,identifiers -1 help party f \N \N \N \N \N +1399 en Language party.party,lang -1 field party f \N \N \N \N \N +1400 en Used to translate communications with the party. party.party,lang -1 help party f \N \N \N \N \N +1401 en Languages party.party,langs -1 field party f \N \N \N \N \N +1402 en Mobile party.party,mobile -1 field party f \N \N \N \N \N +1403 en Name party.party,name -1 field party f \N \N \N \N \N +1404 en The main identifier of the party. party.party,name -1 help party f \N \N \N \N \N +1405 en Phone party.party,phone -1 field party f \N \N \N \N \N +1406 en Replaced By party.party,replaced_by -1 field party f \N \N \N \N \N +1407 en The party replacing this one. party.party,replaced_by -1 help party f \N \N \N \N \N +1408 en Tax Identifier party.party,tax_identifier -1 field party f \N \N \N \N \N +1409 en The identifier used for tax report. party.party,tax_identifier -1 help party f \N \N \N \N \N +1410 en Website party.party,website -1 field party f \N \N \N \N \N +613 en OK ir.translation.set,succeed,end -1 wizard_button ir f \N \N \N \N \N +1412 en Language party.party.lang,lang -1 field party f \N \N \N \N \N +1413 en Party party.party.lang,party -1 field party f \N \N \N \N \N +614 en Cancel ir.translation.clean,start,end -1 wizard_button ir f \N \N \N \N \N +1415 en Category party.party-party.category,category -1 field party f \N \N \N \N \N +1416 en Party party.party-party.category,party -1 field party f \N \N \N \N \N +615 en Clean ir.translation.clean,start,clean -1 wizard_button ir f \N \N \N \N \N +1418 en Address party.identifier,address -1 field party f \N \N \N \N \N +1419 en The address identified by this record. party.identifier,address -1 help party f \N \N \N \N \N +1420 en Code party.identifier,code -1 field party f \N \N \N \N \N +1421 en Party party.identifier,party -1 field party f \N \N \N \N \N +1422 en The party identified by this record. party.identifier,party -1 help party f \N \N \N \N \N +1423 en Type party.identifier,type -1 field party f \N \N \N \N \N +1424 en Type of Address party.identifier,type_address -1 field party f \N \N \N \N \N +616 en OK ir.translation.clean,succeed,end -1 wizard_button ir f \N \N \N \N \N +1426 en Parties Failed party.check_vies.result,parties_failed -1 field party f \N \N \N \N \N +1427 en Parties Succeed party.check_vies.result,parties_succeed -1 field party f \N \N \N \N \N +617 en Cancel ir.translation.update,start,end -1 wizard_button ir f \N \N \N \N \N +1429 en Destination party.replace.ask,destination -1 field party f \N \N \N \N \N +1430 en The party that replaces. party.replace.ask,destination -1 help party f \N \N \N \N \N +1431 en Source party.replace.ask,source -1 field party f \N \N \N \N \N +1432 en The party to be replaced. party.replace.ask,source -1 help party f \N \N \N \N \N +618 en Update ir.translation.update,start,update -1 wizard_button ir f \N \N \N \N \N +1434 en Party party.erase.ask,party -1 field party f \N \N \N \N \N +1435 en The party to be erased. party.erase.ask,party -1 help party f \N \N \N \N \N +619 en Close ir.translation.export,result,end -1 wizard_button ir f \N \N \N \N \N +1437 en City party.address,city -1 field party f \N \N \N \N \N +1438 en Contact Mechanisms party.address,contact_mechanisms -1 field party f \N \N \N \N \N +1439 en Country party.address,country -1 field party f \N \N \N \N \N +1440 en Full Address party.address,full_address -1 field party f \N \N \N \N \N +1441 en Identifiers party.address,identifiers -1 field party f \N \N \N \N \N +1442 en Building Name party.address,name -1 field party f \N \N \N \N \N +1443 en Party party.address,party -1 field party f \N \N \N \N \N +1444 en Party Name party.address,party_name -1 field party f \N \N \N \N \N +1445 en If filled, replace the name of the party for address formatting party.address,party_name -1 help party f \N \N \N \N \N +1446 en Postal Code party.address,postal_code -1 field party f \N \N \N \N \N +1447 en Street party.address,street -1 field party f \N \N \N \N \N +1448 en Street party.address,street_single_line -1 field party f \N \N \N \N \N +1449 en Subdivision party.address,subdivision -1 field party f \N \N \N \N \N +1450 en Subdivision Types party.address,subdivision_types -1 field party f \N \N \N \N \N +620 en Cancel ir.translation.export,start,end -1 wizard_button ir f \N \N \N \N \N +1452 en Country Code party.address.format,country_code -1 field party f \N \N \N \N \N +1453 en Format party.address.format,format_ -1 field party f \N \N \N \N \N +1454 en Available variables (also in upper case):\n- ${party_name}\n- ${name}\n- ${attn}\n- ${street}\n- ${postal_code}\n- ${city}\n- ${subdivision}\n- ${subdivision_code}\n- ${country}\n- ${country_code} party.address.format,format_ -1 help party f \N \N \N \N \N +1455 en Language Code party.address.format,language_code -1 field party f \N \N \N \N \N +621 en Export ir.translation.export,start,export -1 wizard_button ir f \N \N \N \N \N +1457 en Country Code party.address.subdivision_type,country_code -1 field party f \N \N \N \N \N +1458 en Subdivision Types party.address.subdivision_type,types -1 field party f \N \N \N \N \N +622 en Close ir.ui.view.show,start,end -1 wizard_button ir f \N \N \N \N \N +1460 en Address party.contact_mechanism,address -1 field party f \N \N \N \N \N +1461 en Comment party.contact_mechanism,comment -1 field party f \N \N \N \N \N +1462 en E-Mail party.contact_mechanism,email -1 field party f \N \N \N \N \N +1463 en Language party.contact_mechanism,language -1 field party f \N \N \N \N \N +1464 en Used to translate communication made using the contact mechanism.\nLeave empty for the party language. party.contact_mechanism,language -1 help party f \N \N \N \N \N +1465 en Languages party.contact_mechanism,languages -1 field party f \N \N \N \N \N +1466 en Name party.contact_mechanism,name -1 field party f \N \N \N \N \N +1467 en Value party.contact_mechanism,other_value -1 field party f \N \N \N \N \N +1468 en Party party.contact_mechanism,party -1 field party f \N \N \N \N \N +1469 en SIP party.contact_mechanism,sip -1 field party f \N \N \N \N \N +1470 en Skype party.contact_mechanism,skype -1 field party f \N \N \N \N \N +1471 en Type party.contact_mechanism,type -1 field party f \N \N \N \N \N +1472 en Phone party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1473 en Mobile party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1474 en Fax party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1475 en E-Mail party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1476 en Website party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1477 en Skype party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1478 en SIP party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1479 en IRC party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1480 en Jabber party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1481 en Other party.contact_mechanism,type -1 selection party f \N \N \N \N \N +1482 en URL party.contact_mechanism,url -1 field party f \N \N \N \N \N +1483 en Value party.contact_mechanism,value -1 field party f \N \N \N \N \N +1484 en Value Compact party.contact_mechanism,value_compact -1 field party f \N \N \N \N \N +1485 en Website party.contact_mechanism,website -1 field party f \N \N \N \N \N +623 en Cancel ir.model.print_model_graph,start,end -1 wizard_button ir f \N \N \N \N \N +1487 en Contact Mechanism party.contact_mechanism.language,contact_mechanism -1 field party f \N \N \N \N \N +1488 en Language party.contact_mechanism.language,language -1 field party f \N \N \N \N \N +624 en Print ir.model.print_model_graph,start,print_ -1 wizard_button ir f \N \N \N \N \N +1490 en Identifier Types party.configuration,identifier_types -1 field party f \N \N \N \N \N +1491 en Defines which identifier types are available.\nLeave empty for all of them. party.configuration,identifier_types -1 help party f \N \N \N \N \N +1492 en Andorra Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1493 en Albanian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1494 en Argentinian Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1495 en Argentinian National Identity Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1496 en Austrian Company Register party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1497 en Austrian Tax Identification party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1498 en Austrian Umsatzsteuer-Identifikationsnummer party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1499 en Austrian Social Security Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1500 en Australian Business Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1501 en Australian Company Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1502 en Australian Tax File Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1503 en Belgian BIS Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1504 en Belgian National Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1505 en Belgian Enterprise Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1506 en Bulgarian Personal Identity Codes party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1507 en Bulgarian Number of a Foreigner party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1508 en Bulgarian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1509 en Brazillian Company Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1510 en Brazillian National Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +625 en OK ir.module.config_wizard,done,end -1 wizard_button ir f \N \N \N \N \N +1512 en Canadian Business Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1513 en Canadian Social Insurance Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1514 en Swiss Social Security Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1515 en Swiss Business Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1516 en Swiss VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1517 en Chilean National Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1518 en Chinese Resident Identity Card Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1519 en Chinese Unified Social Credit Code party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1520 en Colombian Identity Code party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1521 en Colombian Business Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1522 en Costa Rica Physical Person ID Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1523 en Costa Rica Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1524 en Costa Rica Foreigners ID Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1525 en Cuban Identity Card Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1526 en Cypriot VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1527 en Czech VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1528 en Czech National Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1529 en German Company Register Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1530 en German Personal Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1531 en German Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1532 en German VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1533 en Danish Citizen Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1534 en Danish VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1535 en Dominican Republic National Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1536 en Dominican Republic Tax party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1537 en Algerian Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1538 en Ecuadorian Personal Identity Code party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1539 en Ecuadorian Tax Identification party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1540 en Estonian Personal ID Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1541 en Estonian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1542 en Estonian Organisation Registration Code party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1543 en Egyptian Tax Registration Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1544 en Spanish Company Tax party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1545 en Spanish Personal Identity Codes party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1546 en Spanish Foreigner Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1547 en Spanish VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1548 en SEPA Identifier of the Creditor (AT-02) party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1549 en European VAT on e-Commerce - One Stop Shop party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1550 en European VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1551 en Finnish VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1552 en Finnish Association Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1553 en Finnish Personal Identity Code party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1554 en Finnish Individual Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1555 en Finnish Business Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1556 en Faroese Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1557 en French Tax Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1558 en French Personal Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1559 en French Company Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1560 en French Company Establishment Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1561 en French VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1562 en United Kingdom National Health Service Patient Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1563 en English Unique Pupil Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1564 en United Kingdom (and Isle of Man) VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1565 en Ghanaian Taxpayer Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1566 en Guinean Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1567 en Greek Social Security Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1568 en Greek VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1569 en Guatemala Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1570 en Croatian Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1571 en Hungarian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1572 en Indonesian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1573 en Irish Personal Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1574 en Irish VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1575 en Israeli Company Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1576 en Israeli Identity Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1577 en Indian Digital Resident Personal Identity Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1578 en Indian Voter ID party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1579 en Indian VAT number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1580 en Indian Income Tax Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1581 en Icelandic Personal and Organisation Identity Code party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1582 en Icelandic VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1583 en Italian Tax Code for Individuals party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1584 en Italian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1585 en Japanese Corporate Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1586 en South Korea Business Registration Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1587 en South Korean Resident Registration Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1588 en Lithuanian Personal Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1589 en Lithuanian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1590 en Luxembourgian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1591 en Latvian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1592 en Moroccan Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1593 en Monacan VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1594 en Moldavian Company Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1595 en Macedonian Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1596 en Maltese VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1597 en Mauritian National Identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1598 en Mexican Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1599 en Malaysian National Registration Identity Card Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1600 en Dutch School Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1601 en Dutch Citizen Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1602 en Dutch VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1603 en Dutch Student Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1604 en Norwegian Birth Number, the National Identity Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1605 en Norwegian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1606 en Norwegian Organisation Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1607 en New Zealand Inland Revenue Department Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1608 en Peruvian Identity Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1609 en Peruvian Company Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1610 en Pakistani Computerised National Identity Card Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1611 en Polish VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1612 en Polish National Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1613 en Polish Register of Economic Units party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1614 en Portuguese Identity Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1615 en Portuguese VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1616 en Paraguay Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1617 en Romanian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1618 en Romanian Numerical Personal Code party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1619 en Romanian ONRC Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1620 en Serbian Tax Identification party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1621 en Russian Tax identifier party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1622 en Swedish Company Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1623 en Swedish Personal Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1624 en Swedish VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1625 en Slovenian Corporate Registration Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1626 en Slovenian VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1627 en Slovenian Unique Master Citizen Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1628 en Slovak VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1629 en Slovak Birth Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1630 en San Marino National Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1631 en Thai Memorandum of Association Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1632 en Thai Personal Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1633 en Thai Taxpayer Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1634 en Tunisian Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1635 en Turkish Personal Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1636 en Ukrainian Identifier for Enterprises and Organizations party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1637 en Ukrainian Individual Taxpayer Registration Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1638 en U.S. Adoption Taxpayer Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1639 en U.S. Employer Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1640 en U.S. Individual Taxpayer Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1641 en U.S. Preparer Tax Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1642 en U.S. Social Security Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1643 en U.S. Taxpayer Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1644 en Uruguay Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1645 en Venezuelan VAT Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1646 en Vietnam Tax Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1647 en South African Identity Document Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1648 en South African Tax Identification Number party.configuration,identifier_types -1 selection party f \N \N \N \N \N +1649 en Party Language party.configuration,party_lang -1 field party f \N \N \N \N \N +1650 en The default language for new parties. party.configuration,party_lang -1 help party f \N \N \N \N \N +1651 en Party Sequence party.configuration,party_sequence -1 field party f \N \N \N \N \N +1652 en Used to generate the party code. party.configuration,party_sequence -1 help party f \N \N \N \N \N +1654 en Party Sequence party.configuration.party_sequence,party_sequence -1 field party f \N \N \N \N \N +1655 en Used to generate the party code. party.configuration.party_sequence,party_sequence -1 help party f \N \N \N \N \N +1657 en Party Language party.configuration.party_lang,party_lang -1 field party f \N \N \N \N \N +1658 en The default language for new parties. party.configuration.party_lang,party_lang -1 help party f \N \N \N \N \N +1659 en Contact Mechanism ir.email.template,contact_mechanism -1 field party f \N \N \N \N \N +1660 en Define which email address to use from the party's contact mechanisms. ir.email.template,contact_mechanism -1 help party f \N \N \N \N \N +1653 en Party Configuration Sequence party.configuration.party_sequence,name -1 model party f \N \N \N \N \N +1656 en Party Configuration Lang party.configuration.party_lang,name -1 model party f \N \N \N \N \N +1661 en OK party.check_vies,result,end -1 wizard_button party f \N \N \N \N \N +1666 en Party Administration res.group,name 3 Party Administration model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1667 en Parties ir.ui.menu,name 61 Parties model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1668 en Configuration ir.ui.menu,name 62 Configuration model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1669 en Parties ir.action,name 68 Parties model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1670 en Parties ir.ui.menu,name 63 Parties model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1671 en Parties by Category ir.action,name 69 Parties by Category model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1672 en Labels ir.action,name 70 Labels model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1673 en Party ir.sequence.type,name 1 Party model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1674 en Party ir.sequence,name 1 Party model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1675 en Check VIES ir.action,name 71 Check VIES model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1676 en Replace ir.action,name 72 Replace model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1677 en Erase ir.action,name 73 Erase model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1678 en Categories ir.action,name 74 Categories model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1679 en Categories ir.ui.menu,name 64 Categories model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1680 en Categories ir.action,name 75 Categories model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1681 en Categories ir.ui.menu,name 65 Categories model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1682 en Addresses ir.action,name 76 Addresses model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1683 en Addresses ir.ui.menu,name 66 Addresses model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1684 en Address Formats ir.action,name 77 Address Formats model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +626 en Cancel ir.module.config_wizard,first,end -1 wizard_button ir f \N \N \N \N \N +627 en OK ir.module.config_wizard,first,action -1 wizard_button ir f \N \N \N \N \N +628 en Cancel ir.module.config_wizard,other,end -1 wizard_button ir f \N \N \N \N \N +629 en Next ir.module.config_wizard,other,action -1 wizard_button ir f \N \N \N \N \N +630 en OK ir.module.activate_upgrade,done,next_ -1 wizard_button ir f \N \N \N \N \N +631 en Cancel ir.module.activate_upgrade,start,end -1 wizard_button ir f \N \N \N \N \N +632 en Start Upgrade ir.module.activate_upgrade,start,upgrade -1 wizard_button ir f \N \N \N \N \N +1685 en Address Formats ir.ui.menu,name 67 Address Formats model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1686 en Address Subdivision Types ir.action,name 78 Address Subdivision Types model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1687 en Address Subdivision Types ir.ui.menu,name 68 Address Subdivision Types model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1688 en Contact Mechanisms ir.action,name 79 Contact Mechanisms model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1689 en Contact Mechanisms ir.ui.menu,name 69 Contact Mechanisms model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1690 en Configuration ir.action,name 80 Configuration model party f 2024-04-13 20:39:01.136154 0 \N 2024-04-13 20:39:01.136154 0 +1691 en Configuration ir.ui.menu,name 70 Configuration model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1692 en The code on party must be unique. ir.message,text 133 The code on party must be unique. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1693 en To change the "%(field)s" for party "%(party)s", you must edit their contact mechanisms. ir.message,text 134 To change the "%(field)s" for party "%(party)s", you must edit their contact mechanisms. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1694 en You cannot change the party of contact mechanism "%(contact)s". ir.message,text 135 You cannot change the party of contact mechanism "%(contact)s". model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1695 en The phone number "%(phone)s" for party "%(party)s" is not valid. ir.message,text 136 The phone number "%(phone)s" for party "%(party)s" is not valid. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1696 en The email address "%(email)s" for party "%(party)s" is not valid. ir.message,text 137 The email address "%(email)s" for party "%(party)s" is not valid. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1697 en The %(type)s "%(code)s" for party "%(party)s" is not valid. ir.message,text 138 The %(type)s "%(code)s" for party "%(party)s" is not valid. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1698 en The party "%(party)s" has the same %(type)s "%(code)s". ir.message,text 139 The party "%(party)s" has the same %(type)s "%(code)s". model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1699 en The VIES service is unavailable, try again later. ir.message,text 140 The VIES service is unavailable, try again later. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1700 en Parties have different names: "%(source_name)s" vs "%(destination_name)s". ir.message,text 141 Parties have different names: "%(source_name)s" vs "%(destination_name)s". model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1701 en Parties have different tax identifiers: "%(source_code)s" vs "%(destination_code)s". ir.message,text 142 Parties have different tax identifiers: "%(source_code)s" vs "%(destination_code)s". model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1702 en Party "%(party)s" cannot be erased because they are still active. ir.message,text 143 Party "%(party)s" cannot be erased because they are still active. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1703 en You cannot change the party of address "%(address)s". ir.message,text 144 You cannot change the party of address "%(address)s". model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1704 en Invalid format "%(format)s" with exception "%(exception)s". ir.message,text 145 Invalid format "%(format)s" with exception "%(exception)s". model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1705 en The name of party category must be unique by parent. ir.message,text 146 The name of party category must be unique by parent. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1706 en The country code on subdivision type must be unique. ir.message,text 147 The country code on subdivision type must be unique. model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1707 en To remove the identifier type "%(type)s" from the configuration, you must change it on "%(identifier)s". ir.message,text 148 To remove the identifier type "%(type)s" from the configuration, you must change it on "%(identifier)s". model party f 2024-04-13 20:39:01.136154 0 \N \N \N +1709 en Currency company.company,currency -1 field company f \N \N \N \N \N +1710 en The main currency for the company. company.company,currency -1 help company f \N \N \N \N \N +1711 en Employees company.company,employees -1 field company f \N \N \N \N \N +1712 en Add employees to the company. company.company,employees -1 help company f \N \N \N \N \N +1713 en Footer company.company,footer -1 field company f \N \N \N \N \N +1714 en The text to display on report footers. company.company,footer -1 help company f \N \N \N \N \N +1715 en Header company.company,header -1 field company f \N \N \N \N \N +1716 en The text to display on report headers. company.company,header -1 help company f \N \N \N \N \N +1717 en Party company.company,party -1 field company f \N \N \N \N \N +1718 en Timezone company.company,timezone -1 field company f \N \N \N \N \N +1719 en Used to compute the today date. company.company,timezone -1 help company f \N \N \N \N \N +1721 en Company company.employee,company -1 field company f \N \N \N \N \N +1722 en The company to which the employee belongs. company.employee,company -1 help company f \N \N \N \N \N +1723 en End Date company.employee,end_date -1 field company f \N \N \N \N \N +1724 en When the employee leaves the company. company.employee,end_date -1 help company f \N \N \N \N \N +1725 en Party company.employee,party -1 field company f \N \N \N \N \N +1726 en The party which represents the employee. company.employee,party -1 help company f \N \N \N \N \N +1727 en Start Date company.employee,start_date -1 field company f \N \N \N \N \N +1728 en When the employee joins the company. company.employee,start_date -1 help company f \N \N \N \N \N +1729 en Subordinates company.employee,subordinates -1 field company f \N \N \N \N \N +1730 en The employees to be overseen by this employee. company.employee,subordinates -1 help company f \N \N \N \N \N +1731 en Supervisor company.employee,supervisor -1 field company f \N \N \N \N \N +1732 en The employee who oversees this employee. company.employee,supervisor -1 help company f \N \N \N \N \N +633 en Cancel ir.module.config,start,end -1 wizard_button ir f \N \N \N \N \N +634 en Activate ir.module.config,start,activate -1 wizard_button ir f \N \N \N \N \N +1341 en Currency Rate currency.currency.rate,name -1 model currency f \N \N \N \N \N +1708 en Company company.company,name -1 model company f \N \N \N \N \N +1735 en Company res.user-company.company,company -1 field company f \N \N \N \N \N +1736 en User res.user-company.company,user -1 field company f \N \N \N \N \N +1738 en Employee res.user-company.employee,employee -1 field company f \N \N \N \N \N +1739 en User res.user-company.employee,user -1 field company f \N \N \N \N \N +1740 en Companies res.user,companies -1 field company f \N \N \N \N \N +1741 en The companies that the user has access to. res.user,companies -1 help company f \N \N \N \N \N +1742 en Current Company res.user,company -1 field company f \N \N \N \N \N +1743 en Select the company to work for. res.user,company -1 help company f \N \N \N \N \N +1744 en Company Filter res.user,company_filter -1 field company f \N \N \N \N \N +1745 en Define records of which companies are shown. res.user,company_filter -1 help company f \N \N \N \N \N +1746 en Current res.user,company_filter -1 selection company f \N \N \N \N \N +1747 en All res.user,company_filter -1 selection company f \N \N \N \N \N +1748 en Current Employee res.user,employee -1 field company f \N \N \N \N \N +1749 en Select the employee to make the user behave as such. res.user,employee -1 help company f \N \N \N \N \N +1750 en Employees res.user,employees -1 field company f \N \N \N \N \N +1751 en Add employees to grant the user access to them. res.user,employees -1 help company f \N \N \N \N \N +1752 en Company ir.sequence,company -1 field company f \N \N \N \N \N +1753 en Restricts the sequence usage to the company. ir.sequence,company -1 help company f \N \N \N \N \N +1754 en Company ir.sequence.strict,company -1 field company f \N \N \N \N \N +1755 en Restricts the sequence usage to the company. ir.sequence.strict,company -1 help company f \N \N \N \N \N +1756 en \n- "companies" as list of ids from the current user ir.rule,domain -1 help company f \N \N \N \N \N +1757 en Companies ir.cron,companies -1 field company f \N \N \N \N \N +1758 en Companies registered for this cron. ir.cron,companies -1 help company f \N \N \N \N \N +1760 en Company ir.cron-company.company,company -1 field company f \N \N \N \N \N +1761 en Cron ir.cron-company.company,cron -1 field company f \N \N \N \N \N +1762 en Company party.configuration.party_lang,company -1 field company f \N \N \N \N \N +1763 en Company party.party.lang,company -1 field company f \N \N \N \N \N +1764 en Company party.contact_mechanism.language,company -1 field company f \N \N \N \N \N +1720 en Employee company.employee,name -1 model company f \N \N \N \N \N +1733 en Company Config company.company.config.start,name -1 model company f \N \N \N \N \N +1769 en Company Administration res.group,name 4 Company Administration model company f 2024-04-13 20:39:02.298155 0 \N \N \N +1770 en Employee Administration res.group,name 5 Employee Administration model company f 2024-04-13 20:39:02.298155 0 \N \N \N +1771 en Companies ir.ui.menu,name 71 Companies model company f 2024-04-13 20:39:02.298155 0 \N \N \N +1772 en Companies ir.action,name 81 Companies model company f 2024-04-13 20:39:02.298155 0 \N 2024-04-13 20:39:02.298155 0 +1773 en Companies ir.ui.menu,name 72 Companies model company f 2024-04-13 20:39:02.298155 0 \N \N \N +1774 en Configure Company ir.action,name 82 Configure Company model company f 2024-04-13 20:39:02.298155 0 \N 2024-04-13 20:39:02.298155 0 +1775 en Employees ir.action,name 83 Employees model company f 2024-04-13 20:39:02.298155 0 \N 2024-04-13 20:39:02.298155 0 +1776 en Employees ir.ui.menu,name 73 Employees model company f 2024-04-13 20:39:02.298155 0 \N \N \N +1777 en Supervised by ir.action,name 84 Supervised by model company f 2024-04-13 20:39:02.298155 0 \N 2024-04-13 20:39:02.298155 0 +1778 en Letter ir.action,name 85 Letter model company f 2024-04-13 20:39:02.298155 0 \N 2024-04-13 20:39:02.298155 0 +1779 en User in companies ir.rule.group,name 8 User in companies model company f 2024-04-13 20:39:02.298155 0 \N \N \N +1780 en User in companies ir.rule.group,name 9 User in companies model company f 2024-04-13 20:39:02.298155 0 \N \N \N +1782 en Company account.fiscalyear,company -1 field account f \N \N \N \N \N +1783 en Ending Date account.fiscalyear,end_date -1 field account f \N \N \N \N \N +1784 en Icon account.fiscalyear,icon -1 field account f \N \N \N \N \N +1785 en Name account.fiscalyear,name -1 field account f \N \N \N \N \N +1786 en Periods account.fiscalyear,periods -1 field account f \N \N \N \N \N +1787 en Post Move Sequence account.fiscalyear,post_move_sequence -1 field account f \N \N \N \N \N +1788 en Starting Date account.fiscalyear,start_date -1 field account f \N \N \N \N \N +1789 en State account.fiscalyear,state -1 field account f \N \N \N \N \N +1790 en Open account.fiscalyear,state -1 selection account f \N \N \N \N \N +1791 en Closed account.fiscalyear,state -1 selection account f \N \N \N \N \N +1792 en Locked account.fiscalyear,state -1 selection account f \N \N \N \N \N +1794 en Company account.fiscalyear.balance_non_deferral.start,company -1 field account f \N \N \N \N \N +1795 en Credit Account account.fiscalyear.balance_non_deferral.start,credit_account -1 field account f \N \N \N \N \N +1734 en User - Company res.user-company.company,name -1 model company f \N \N \N \N \N +1737 en User - Employee res.user-company.employee,name -1 model company f \N \N \N \N \N +1781 en Fiscal Year account.fiscalyear,name -1 model account f \N \N \N \N \N +1793 en Balance Non-Deferral account.fiscalyear.balance_non_deferral.start,name -1 model account f \N \N \N \N \N +1759 en Cron - Company ir.cron-company.company,name -1 model company f \N \N \N \N \N +1765 en Cancel company.company.config,company,end -1 wizard_button company f \N \N \N \N \N +1866 en Account account.account,name -1 model account f \N \N \N \N \N +2302 en Delegate Lines account.move.line.delegate.start,name -1 model account f \N \N \N \N \N +2306 en Tax Group account.tax.group,name -1 model account f \N \N \N \N \N +2313 en Tax Code Template account.tax.code.template,name -1 model account f \N \N \N \N \N +1766 en Add company.company.config,company,add -1 wizard_button company f \N \N \N \N \N +1767 en Cancel company.company.config,start,end -1 wizard_button company f \N \N \N \N \N +1768 en OK company.company.config,start,company -1 wizard_button company f \N \N \N \N \N +1796 en Debit Account account.fiscalyear.balance_non_deferral.start,debit_account -1 field account f \N \N \N \N \N +1797 en Fiscal Year account.fiscalyear.balance_non_deferral.start,fiscalyear -1 field account f \N \N \N \N \N +1798 en Journal account.fiscalyear.balance_non_deferral.start,journal -1 field account f \N \N \N \N \N +1799 en Period account.fiscalyear.balance_non_deferral.start,period -1 field account f \N \N \N \N \N +1800 en Payable company.company,payable -1 field account f \N \N \N \N \N +1801 en Payable Today company.company,payable_today -1 field account f \N \N \N \N \N +1802 en Receivable company.company,receivable -1 field account f \N \N \N \N \N +1803 en Receivable Today company.company,receivable_today -1 field account f \N \N \N \N \N +2323 en Tax Code account.tax.code,name -1 model account f \N \N \N \N \N +1805 en Assets account.account.type.template,assets -1 field account f \N \N \N \N \N +1806 en Children account.account.type.template,childs -1 field account f \N \N \N \N \N +1807 en Debt account.account.type.template,debt -1 field account f \N \N \N \N \N +1808 en Check to allow booking debt via supplier invoice. account.account.type.template,debt -1 help account f \N \N \N \N \N +1809 en Expense account.account.type.template,expense -1 field account f \N \N \N \N \N +1810 en Name account.account.type.template,name -1 field account f \N \N \N \N \N +1811 en Parent account.account.type.template,parent -1 field account f \N \N \N \N \N +1812 en Payable account.account.type.template,payable -1 field account f \N \N \N \N \N +1813 en Receivable account.account.type.template,receivable -1 field account f \N \N \N \N \N +1814 en Revenue account.account.type.template,revenue -1 field account f \N \N \N \N \N +1815 en Statement account.account.type.template,statement -1 field account f \N \N \N \N \N +1816 en Balance account.account.type.template,statement -1 selection account f \N \N \N \N \N +1817 en Income account.account.type.template,statement -1 selection account f \N \N \N \N \N +1818 en Off-Balance account.account.type.template,statement -1 selection account f \N \N \N \N \N +1819 en Stock account.account.type.template,stock -1 field account f \N \N \N \N \N +2340 en Tax Code Line Template account.tax.code.line.template,name -1 model account f \N \N \N \N \N +1821 en Amount account.account.type,amount -1 field account f \N \N \N \N \N +1822 en Amount account.account.type,amount_cmp -1 field account f \N \N \N \N \N +1823 en Assets account.account.type,assets -1 field account f \N \N \N \N \N +1824 en Children account.account.type,childs -1 field account f \N \N \N \N \N +1825 en Company account.account.type,company -1 field account f \N \N \N \N \N +1826 en Currency account.account.type,currency -1 field account f \N \N \N \N \N +1827 en Debt account.account.type,debt -1 field account f \N \N \N \N \N +1828 en Check to allow booking debt via supplier invoice. account.account.type,debt -1 help account f \N \N \N \N \N +1829 en Expense account.account.type,expense -1 field account f \N \N \N \N \N +1830 en Name account.account.type,name -1 field account f \N \N \N \N \N +1831 en Parent account.account.type,parent -1 field account f \N \N \N \N \N +1832 en Payable account.account.type,payable -1 field account f \N \N \N \N \N +1833 en Receivable account.account.type,receivable -1 field account f \N \N \N \N \N +1834 en Revenue account.account.type,revenue -1 field account f \N \N \N \N \N +1835 en Statement account.account.type,statement -1 field account f \N \N \N \N \N +1836 en Balance account.account.type,statement -1 selection account f \N \N \N \N \N +1837 en Income account.account.type,statement -1 selection account f \N \N \N \N \N +1838 en Off-Balance account.account.type,statement -1 selection account f \N \N \N \N \N +1839 en Stock account.account.type,stock -1 field account f \N \N \N \N \N +1840 en Template account.account.type,template -1 field account f \N \N \N \N \N +1841 en Override Template account.account.type,template_override -1 field account f \N \N \N \N \N +1842 en Check to override template definition account.account.type,template_override -1 help account f \N \N \N \N \N +2352 en Tax Code Line account.tax.code.line,name -1 model account f \N \N \N \N \N +1844 en Children account.account.template,childs -1 field account f \N \N \N \N \N +1845 en Closed account.account.template,closed -1 field account f \N \N \N \N \N +1846 en Check to prevent posting move on the account. account.account.template,closed -1 help account f \N \N \N \N \N +1847 en Code account.account.template,code -1 field account f \N \N \N \N \N +1848 en Credit Type account.account.template,credit_type -1 field account f \N \N \N \N \N +1849 en Debit Type account.account.template,debit_type -1 field account f \N \N \N \N \N +1850 en Deferral account.account.template,deferral -1 field account f \N \N \N \N \N +1851 en End Date account.account.template,end_date -1 field account f \N \N \N \N \N +1852 en General Ledger Balance account.account.template,general_ledger_balance -1 field account f \N \N \N \N \N +1853 en Display only the balance in the general ledger report. account.account.template,general_ledger_balance -1 help account f \N \N \N \N \N +1854 en Name account.account.template,name -1 field account f \N \N \N \N \N +1855 en Parent account.account.template,parent -1 field account f \N \N \N \N \N +1856 en Party Required account.account.template,party_required -1 field account f \N \N \N \N \N +1857 en Reconcile account.account.template,reconcile -1 field account f \N \N \N \N \N +1858 en Allow move lines of this account to be reconciled. account.account.template,reconcile -1 help account f \N \N \N \N \N +1859 en Replaced By account.account.template,replaced_by -1 field account f \N \N \N \N \N +1860 en Start Date account.account.template,start_date -1 field account f \N \N \N \N \N +1861 en Default Taxes account.account.template,taxes -1 field account f \N \N \N \N \N +1862 en Type account.account.template,type -1 field account f \N \N \N \N \N +2367 en Tax Code Context account.tax.code.context,name -1 model account f \N \N \N \N \N +1864 en Account Template account.account.template-account.tax.template,account -1 field account f \N \N \N \N \N +1865 en Tax Template account.account.template-account.tax.template,tax -1 field account f \N \N \N \N \N +1867 en Active account.account,active -1 field account f \N \N \N \N \N +1868 en Amount Second Currency account.account,amount_second_currency -1 field account f \N \N \N \N \N +1869 en Balance account.account,balance -1 field account f \N \N \N \N \N +1870 en Children account.account,childs -1 field account f \N \N \N \N \N +1871 en Closed account.account,closed -1 field account f \N \N \N \N \N +1872 en Check to prevent posting move on the account. account.account,closed -1 help account f \N \N \N \N \N +1873 en Code account.account,code -1 field account f \N \N \N \N \N +1874 en Company account.account,company -1 field account f \N \N \N \N \N +1875 en Context Company account.account,context_company -1 field account f \N \N \N \N \N +1876 en Credit account.account,credit -1 field account f \N \N \N \N \N +1877 en Credit Type account.account,credit_type -1 field account f \N \N \N \N \N +1878 en The type used if not empty and debit < credit. account.account,credit_type -1 help account f \N \N \N \N \N +1879 en Currency account.account,currency -1 field account f \N \N \N \N \N +1880 en Debit account.account,debit -1 field account f \N \N \N \N \N +1881 en Debit Type account.account,debit_type -1 field account f \N \N \N \N \N +1882 en The type used if not empty and debit > credit. account.account,debit_type -1 help account f \N \N \N \N \N +1883 en Deferral account.account,deferral -1 field account f \N \N \N \N \N +1884 en Deferrals account.account,deferrals -1 field account f \N \N \N \N \N +1885 en End Date account.account,end_date -1 field account f \N \N \N \N \N +1886 en General Ledger Balance account.account,general_ledger_balance -1 field account f \N \N \N \N \N +1887 en Display only the balance in the general ledger report. account.account,general_ledger_balance -1 help account f \N \N \N \N \N +1888 en Left account.account,left -1 field account f \N \N \N \N \N +1889 en Line Count account.account,line_count -1 field account f \N \N \N \N \N +1890 en Name account.account,name -1 field account f \N \N \N \N \N +1891 en Note account.account,note -1 field account f \N \N \N \N \N +1892 en Parent account.account,parent -1 field account f \N \N \N \N \N +1893 en Party Required account.account,party_required -1 field account f \N \N \N \N \N +1894 en Reconcile account.account,reconcile -1 field account f \N \N \N \N \N +1895 en Allow move lines of this account to be reconciled. account.account,reconcile -1 help account f \N \N \N \N \N +1896 en Replaced By account.account,replaced_by -1 field account f \N \N \N \N \N +1897 en Right account.account,right -1 field account f \N \N \N \N \N +1898 en Second Currency account.account,second_currency -1 field account f \N \N \N \N \N +1899 en Force all moves for this account to have this second currency. account.account,second_currency -1 help account f \N \N \N \N \N +1900 en Start Date account.account,start_date -1 field account f \N \N \N \N \N +1901 en Default Taxes account.account,taxes -1 field account f \N \N \N \N \N +1902 en Default tax for manual encoding of move lines\nfor journal types: "expense" and "revenue". account.account,taxes -1 help account f \N \N \N \N \N +1903 en Template account.account,template -1 field account f \N \N \N \N \N +1904 en Override Template account.account,template_override -1 field account f \N \N \N \N \N +1905 en Check to override template definition account.account,template_override -1 help account f \N \N \N \N \N +1906 en Type account.account,type -1 field account f \N \N \N \N \N +2378 en Account Tax Template account.tax.template,name -1 model account f \N \N \N \N \N +1908 en Account account.account.party,account -1 field account f \N \N \N \N \N +1909 en Active account.account.party,active -1 field account f \N \N \N \N \N +1910 en Amount Second Currency account.account.party,amount_second_currency -1 field account f \N \N \N \N \N +1911 en Balance account.account.party,balance -1 field account f \N \N \N \N \N +1912 en Closed account.account.party,closed -1 field account f \N \N \N \N \N +1913 en Code account.account.party,code -1 field account f \N \N \N \N \N +1914 en Company account.account.party,company -1 field account f \N \N \N \N \N +1915 en Credit account.account.party,credit -1 field account f \N \N \N \N \N +1916 en Credit Type account.account.party,credit_type -1 field account f \N \N \N \N \N +1917 en Currency account.account.party,currency -1 field account f \N \N \N \N \N +1918 en Debit account.account.party,debit -1 field account f \N \N \N \N \N +1919 en Debit Type account.account.party,debit_type -1 field account f \N \N \N \N \N +1920 en End Date account.account.party,end_date -1 field account f \N \N \N \N \N +1921 en Line Count account.account.party,line_count -1 field account f \N \N \N \N \N +1922 en Name account.account.party,name -1 field account f \N \N \N \N \N +1923 en Party account.account.party,party -1 field account f \N \N \N \N \N +1924 en Secondary Currency account.account.party,second_currency -1 field account f \N \N \N \N \N +1925 en Start Date account.account.party,start_date -1 field account f \N \N \N \N \N +1926 en Type account.account.party,type -1 field account f \N \N \N \N \N +2427 en Tax Line account.tax.line,name -1 model account f \N \N \N \N \N +1928 en Account account.account.deferral,account -1 field account f \N \N \N \N \N +1929 en Amount Second Currency account.account.deferral,amount_second_currency -1 field account f \N \N \N \N \N +1930 en Balance account.account.deferral,balance -1 field account f \N \N \N \N \N +1931 en Credit account.account.deferral,credit -1 field account f \N \N \N \N \N +1932 en Currency account.account.deferral,currency -1 field account f \N \N \N \N \N +1933 en Debit account.account.deferral,debit -1 field account f \N \N \N \N \N +1934 en Fiscal Year account.account.deferral,fiscalyear -1 field account f \N \N \N \N \N +1935 en Line Count account.account.deferral,line_count -1 field account f \N \N \N \N \N +1936 en Second Currency account.account.deferral,second_currency -1 field account f \N \N \N \N \N +2436 en Tax Rule Template account.tax.rule.template,name -1 model account f \N \N \N \N \N +1938 en Account account.account-account.tax,account -1 field account f \N \N \N \N \N +1939 en Tax account.account-account.tax,tax -1 field account f \N \N \N \N \N +1941 en Company account.account.context,company -1 field account f \N \N \N \N \N +1942 en Fiscal Year account.account.context,fiscalyear -1 field account f \N \N \N \N \N +1943 en Leave empty for all open fiscal year. account.account.context,fiscalyear -1 help account f \N \N \N \N \N +1944 en Posted Moves account.account.context,posted -1 field account f \N \N \N \N \N +1945 en Only include posted moves. account.account.context,posted -1 help account f \N \N \N \N \N +1947 en Account account.general_ledger.account,account -1 field account f \N \N \N \N \N +1948 en Active account.general_ledger.account,active -1 field account f \N \N \N \N \N +1949 en Company account.general_ledger.account,company -1 field account f \N \N \N \N \N +1950 en Credit account.general_ledger.account,credit -1 field account f \N \N \N \N \N +1951 en Credit Type account.general_ledger.account,credit_type -1 field account f \N \N \N \N \N +1952 en Currency account.general_ledger.account,currency -1 field account f \N \N \N \N \N +1953 en Debit account.general_ledger.account,debit -1 field account f \N \N \N \N \N +1954 en Debit Type account.general_ledger.account,debit_type -1 field account f \N \N \N \N \N +1955 en End Balance account.general_ledger.account,end_balance -1 field account f \N \N \N \N \N +1956 en End Credit account.general_ledger.account,end_credit -1 field account f \N \N \N \N \N +1957 en End Date account.general_ledger.account,end_date -1 field account f \N \N \N \N \N +1958 en End Debit account.general_ledger.account,end_debit -1 field account f \N \N \N \N \N +1959 en General Ledger Balance account.general_ledger.account,general_ledger_balance -1 field account f \N \N \N \N \N +1960 en Line Count account.general_ledger.account,line_count -1 field account f \N \N \N \N \N +1961 en Lines account.general_ledger.account,lines -1 field account f \N \N \N \N \N +1962 en Start Balance account.general_ledger.account,start_balance -1 field account f \N \N \N \N \N +1963 en Start Credit account.general_ledger.account,start_credit -1 field account f \N \N \N \N \N +1964 en Start Date account.general_ledger.account,start_date -1 field account f \N \N \N \N \N +1965 en Start Debit account.general_ledger.account,start_debit -1 field account f \N \N \N \N \N +1966 en Type account.general_ledger.account,type -1 field account f \N \N \N \N \N +1968 en Company account.general_ledger.account.context,company -1 field account f \N \N \N \N \N +1969 en End Period account.general_ledger.account.context,end_period -1 field account f \N \N \N \N \N +1970 en Fiscal Year account.general_ledger.account.context,fiscalyear -1 field account f \N \N \N \N \N +1971 en From Date account.general_ledger.account.context,from_date -1 field account f \N \N \N \N \N +1972 en Journal account.general_ledger.account.context,journal -1 field account f \N \N \N \N \N +1973 en Only include moves from the journal. account.general_ledger.account.context,journal -1 help account f \N \N \N \N \N +1974 en Posted Moves account.general_ledger.account.context,posted -1 field account f \N \N \N \N \N +1975 en Only include posted moves. account.general_ledger.account.context,posted -1 help account f \N \N \N \N \N +1976 en Start Period account.general_ledger.account.context,start_period -1 field account f \N \N \N \N \N +1977 en To Date account.general_ledger.account.context,to_date -1 field account f \N \N \N \N \N +1979 en Account account.general_ledger.account.party,account -1 field account f \N \N \N \N \N +1980 en Active account.general_ledger.account.party,active -1 field account f \N \N \N \N \N +1981 en Company account.general_ledger.account.party,company -1 field account f \N \N \N \N \N +1982 en Credit account.general_ledger.account.party,credit -1 field account f \N \N \N \N \N +1983 en Currency account.general_ledger.account.party,currency -1 field account f \N \N \N \N \N +1984 en Debit account.general_ledger.account.party,debit -1 field account f \N \N \N \N \N +1985 en End Balance account.general_ledger.account.party,end_balance -1 field account f \N \N \N \N \N +1986 en End Credit account.general_ledger.account.party,end_credit -1 field account f \N \N \N \N \N +1987 en End Date account.general_ledger.account.party,end_date -1 field account f \N \N \N \N \N +1988 en End Debit account.general_ledger.account.party,end_debit -1 field account f \N \N \N \N \N +1989 en Line Count account.general_ledger.account.party,line_count -1 field account f \N \N \N \N \N +1990 en Party account.general_ledger.account.party,party -1 field account f \N \N \N \N \N +1991 en Start Balance account.general_ledger.account.party,start_balance -1 field account f \N \N \N \N \N +1992 en Start Credit account.general_ledger.account.party,start_credit -1 field account f \N \N \N \N \N +1993 en Start Date account.general_ledger.account.party,start_date -1 field account f \N \N \N \N \N +1994 en Start Debit account.general_ledger.account.party,start_debit -1 field account f \N \N \N \N \N +1996 en Account account.general_ledger.line,account -1 field account f \N \N \N \N \N +1997 en Account Party account.general_ledger.line,account_party -1 field account f \N \N \N \N \N +1998 en Amount Second Currency account.general_ledger.line,amount_second_currency -1 field account f \N \N \N \N \N +1999 en Balance account.general_ledger.line,balance -1 field account f \N \N \N \N \N +2000 en Company account.general_ledger.line,company -1 field account f \N \N \N \N \N +2001 en Credit account.general_ledger.line,credit -1 field account f \N \N \N \N \N +2002 en Currency account.general_ledger.line,currency -1 field account f \N \N \N \N \N +2003 en Date account.general_ledger.line,date -1 field account f \N \N \N \N \N +2004 en Debit account.general_ledger.line,debit -1 field account f \N \N \N \N \N +2005 en Description account.general_ledger.line,description -1 field account f \N \N \N \N \N +2006 en Description account.general_ledger.line,description_used -1 field account f \N \N \N \N \N +2007 en Internal Balance account.general_ledger.line,internal_balance -1 field account f \N \N \N \N \N +2008 en Move account.general_ledger.line,move -1 field account f \N \N \N \N \N +2009 en Move Description account.general_ledger.line,move_description_used -1 field account f \N \N \N \N \N +2010 en Origin account.general_ledger.line,origin -1 field account f \N \N \N \N \N +2011 en Party account.general_ledger.line,party -1 field account f \N \N \N \N \N +2012 en Party Required account.general_ledger.line,party_required -1 field account f \N \N \N \N \N +2013 en Reconciliation account.general_ledger.line,reconciliation -1 field account f \N \N \N \N \N +2014 en Second Currency account.general_ledger.line,second_currency -1 field account f \N \N \N \N \N +2015 en State account.general_ledger.line,state -1 field account f \N \N \N \N \N +2016 en Draft account.general_ledger.line,state -1 selection account f \N \N \N \N \N +2017 en Posted account.general_ledger.line,state -1 selection account f \N \N \N \N \N +2019 en Company account.general_ledger.line.context,company -1 field account f \N \N \N \N \N +2020 en End Period account.general_ledger.line.context,end_period -1 field account f \N \N \N \N \N +2021 en Fiscal Year account.general_ledger.line.context,fiscalyear -1 field account f \N \N \N \N \N +2022 en From Date account.general_ledger.line.context,from_date -1 field account f \N \N \N \N \N +2023 en Journal account.general_ledger.line.context,journal -1 field account f \N \N \N \N \N +2024 en Only include moves from the journal. account.general_ledger.line.context,journal -1 help account f \N \N \N \N \N +2025 en Cumulate per Party account.general_ledger.line.context,party_cumulate -1 field account f \N \N \N \N \N +2026 en Posted Moves account.general_ledger.line.context,posted -1 field account f \N \N \N \N \N +2027 en Only include posted moves. account.general_ledger.line.context,posted -1 help account f \N \N \N \N \N +2028 en Start Period account.general_ledger.line.context,start_period -1 field account f \N \N \N \N \N +2029 en To Date account.general_ledger.line.context,to_date -1 field account f \N \N \N \N \N +2031 en Company account.balance_sheet.context,company -1 field account f \N \N \N \N \N +2032 en Date account.balance_sheet.context,date -1 field account f \N \N \N \N \N +2033 en Posted Moves account.balance_sheet.context,posted -1 field account f \N \N \N \N \N +2034 en Only include posted moves. account.balance_sheet.context,posted -1 help account f \N \N \N \N \N +2036 en Company account.balance_sheet.comparison.context,company -1 field account f \N \N \N \N \N +2037 en Comparison account.balance_sheet.comparison.context,comparison -1 field account f \N \N \N \N \N +2038 en Date account.balance_sheet.comparison.context,date -1 field account f \N \N \N \N \N +2039 en Date account.balance_sheet.comparison.context,date_cmp -1 field account f \N \N \N \N \N +2040 en Posted Moves account.balance_sheet.comparison.context,posted -1 field account f \N \N \N \N \N +2041 en Only include posted moves. account.balance_sheet.comparison.context,posted -1 help account f \N \N \N \N \N +2043 en Company account.income_statement.context,company -1 field account f \N \N \N \N \N +2044 en Comparison account.income_statement.context,comparison -1 field account f \N \N \N \N \N +2045 en End Period account.income_statement.context,end_period -1 field account f \N \N \N \N \N +2046 en End Period account.income_statement.context,end_period_cmp -1 field account f \N \N \N \N \N +2047 en Fiscal Year account.income_statement.context,fiscalyear -1 field account f \N \N \N \N \N +2048 en Fiscal Year account.income_statement.context,fiscalyear_cmp -1 field account f \N \N \N \N \N +2049 en From Date account.income_statement.context,from_date -1 field account f \N \N \N \N \N +2050 en From Date account.income_statement.context,from_date_cmp -1 field account f \N \N \N \N \N +2051 en Posted Move account.income_statement.context,posted -1 field account f \N \N \N \N \N +2052 en Only include posted moves. account.income_statement.context,posted -1 help account f \N \N \N \N \N +2053 en Start Period account.income_statement.context,start_period -1 field account f \N \N \N \N \N +2054 en Start Period account.income_statement.context,start_period_cmp -1 field account f \N \N \N \N \N +2055 en To Date account.income_statement.context,to_date -1 field account f \N \N \N \N \N +2056 en To Date account.income_statement.context,to_date_cmp -1 field account f \N \N \N \N \N +2059 en Account Template account.create_chart.account,account_template -1 field account f \N \N \N \N \N +2060 en Company account.create_chart.account,company -1 field account f \N \N \N \N \N +2062 en Default Payable Account account.create_chart.properties,account_payable -1 field account f \N \N \N \N \N +2063 en Default Receivable Account account.create_chart.properties,account_receivable -1 field account f \N \N \N \N \N +2064 en Company account.create_chart.properties,company -1 field account f \N \N \N \N \N +2066 en Root Account account.update_chart.start,account -1 field account f \N \N \N \N \N +2069 en Company account.aged_balance.context,company -1 field account f \N \N \N \N \N +2070 en Date account.aged_balance.context,date -1 field account f \N \N \N \N \N +2071 en Posted Move account.aged_balance.context,posted -1 field account f \N \N \N \N \N +2072 en Only include posted moves. account.aged_balance.context,posted -1 help account f \N \N \N \N \N +2140 en Balance account.journal,balance -1 field account f \N \N \N \N \N +2073 en First Term account.aged_balance.context,term1 -1 field account f \N \N \N \N \N +2074 en Second Term account.aged_balance.context,term2 -1 field account f \N \N \N \N \N +2075 en Third Term account.aged_balance.context,term3 -1 field account f \N \N \N \N \N +2076 en Type account.aged_balance.context,type -1 field account f \N \N \N \N \N +2077 en Customers account.aged_balance.context,type -1 selection account f \N \N \N \N \N +2078 en Suppliers account.aged_balance.context,type -1 selection account f \N \N \N \N \N +2079 en Customers and Suppliers account.aged_balance.context,type -1 selection account f \N \N \N \N \N +2080 en Unit account.aged_balance.context,unit -1 field account f \N \N \N \N \N +2081 en Days account.aged_balance.context,unit -1 selection account f \N \N \N \N \N +2082 en Weeks account.aged_balance.context,unit -1 selection account f \N \N \N \N \N +2083 en Months account.aged_balance.context,unit -1 selection account f \N \N \N \N \N +2084 en Years account.aged_balance.context,unit -1 selection account f \N \N \N \N \N +2086 en Balance account.aged_balance,balance -1 field account f \N \N \N \N \N +2087 en Company account.aged_balance,company -1 field account f \N \N \N \N \N +2088 en Currency account.aged_balance,currency -1 field account f \N \N \N \N \N +2089 en Party account.aged_balance,party -1 field account f \N \N \N \N \N +2090 en Now account.aged_balance,term0 -1 field account f \N \N \N \N \N +2091 en First Term account.aged_balance,term1 -1 field account f \N \N \N \N \N +2092 en Second Term account.aged_balance,term2 -1 field account f \N \N \N \N \N +2093 en Third Term account.aged_balance,term3 -1 field account f \N \N \N \N \N +2095 en Currency Exchange Credit Account account.configuration,currency_exchange_credit_account -1 field account f \N \N \N \N \N +2096 en Currency Exchange Debit Account account.configuration,currency_exchange_debit_account -1 field account f \N \N \N \N \N +2097 en Currency Exchange Journal account.configuration,currency_exchange_journal -1 field account f \N \N \N \N \N +2098 en Default Account Payable account.configuration,default_account_payable -1 field account f \N \N \N \N \N +2099 en Default Account Receivable account.configuration,default_account_receivable -1 field account f \N \N \N \N \N +2100 en Default Customer Tax Rule account.configuration,default_customer_tax_rule -1 field account f \N \N \N \N \N +2101 en Default customer tax rule for new parties. account.configuration,default_customer_tax_rule -1 help account f \N \N \N \N \N +2102 en Default Supplier Tax Rule account.configuration,default_supplier_tax_rule -1 field account f \N \N \N \N \N +2103 en Default supplier tax rule for new parties. account.configuration,default_supplier_tax_rule -1 help account f \N \N \N \N \N +2104 en Reconciliation Sequence account.configuration,reconciliation_sequence -1 field account f \N \N \N \N \N +2105 en Tax Rounding account.configuration,tax_rounding -1 field account f \N \N \N \N \N +2106 en Per Document account.configuration,tax_rounding -1 selection account f \N \N \N \N \N +2107 en Per Line account.configuration,tax_rounding -1 selection account f \N \N \N \N \N +2109 en Company account.configuration.default_account,company -1 field account f \N \N \N \N \N +2110 en Currency Exchange Credit Account account.configuration.default_account,currency_exchange_credit_account -1 field account f \N \N \N \N \N +2111 en Currency Exchange Debit Account account.configuration.default_account,currency_exchange_debit_account -1 field account f \N \N \N \N \N +2112 en Default Account Payable account.configuration.default_account,default_account_payable -1 field account f \N \N \N \N \N +2113 en Default Account Receivable account.configuration.default_account,default_account_receivable -1 field account f \N \N \N \N \N +2115 en Company account.configuration.default_tax_rule,company -1 field account f \N \N \N \N \N +2116 en Default Customer Tax Rule account.configuration.default_tax_rule,default_customer_tax_rule -1 field account f \N \N \N \N \N +2117 en Default Supplier Tax Rule account.configuration.default_tax_rule,default_supplier_tax_rule -1 field account f \N \N \N \N \N +2119 en Company account.configuration.sequence,company -1 field account f \N \N \N \N \N +2120 en Reconciliation Sequence account.configuration.sequence,reconciliation_sequence -1 field account f \N \N \N \N \N +2122 en Company account.configuration.journal,company -1 field account f \N \N \N \N \N +2123 en Currency Exchange Journal account.configuration.journal,currency_exchange_journal -1 field account f \N \N \N \N \N +2125 en Company account.period,company -1 field account f \N \N \N \N \N +2126 en Ending Date account.period,end_date -1 field account f \N \N \N \N \N +2127 en Fiscal Year account.period,fiscalyear -1 field account f \N \N \N \N \N +2128 en Icon account.period,icon -1 field account f \N \N \N \N \N +2129 en Name account.period,name -1 field account f \N \N \N \N \N +2130 en Post Move Sequence account.period,post_move_sequence -1 field account f \N \N \N \N \N +2131 en Starting Date account.period,start_date -1 field account f \N \N \N \N \N +2132 en State account.period,state -1 field account f \N \N \N \N \N +2133 en Open account.period,state -1 selection account f \N \N \N \N \N +2134 en Closed account.period,state -1 selection account f \N \N \N \N \N +2135 en Locked account.period,state -1 selection account f \N \N \N \N \N +2136 en Type account.period,type -1 field account f \N \N \N \N \N +2137 en Standard account.period,type -1 selection account f \N \N \N \N \N +2138 en Adjustment account.period,type -1 selection account f \N \N \N \N \N +2141 en Code account.journal,code -1 field account f \N \N \N \N \N +2142 en Credit account.journal,credit -1 field account f \N \N \N \N \N +2143 en Currency account.journal,currency -1 field account f \N \N \N \N \N +2144 en Debit account.journal,debit -1 field account f \N \N \N \N \N +2145 en Matching Sequence account.journal,matching_sequence -1 field account f \N \N \N \N \N +2146 en Name account.journal,name -1 field account f \N \N \N \N \N +2147 en Sequence account.journal,sequence -1 field account f \N \N \N \N \N +2148 en Sequences account.journal,sequences -1 field account f \N \N \N \N \N +2149 en Type account.journal,type -1 field account f \N \N \N \N \N +2150 en General account.journal,type -1 selection account f \N \N \N \N \N +2151 en Revenue account.journal,type -1 selection account f \N \N \N \N \N +2152 en Expense account.journal,type -1 selection account f \N \N \N \N \N +2153 en Cash account.journal,type -1 selection account f \N \N \N \N \N +2154 en Situation account.journal,type -1 selection account f \N \N \N \N \N +2155 en Write-Off account.journal,type -1 selection account f \N \N \N \N \N +2157 en Company account.journal.sequence,company -1 field account f \N \N \N \N \N +2158 en Journal account.journal.sequence,journal -1 field account f \N \N \N \N \N +2159 en Sequence account.journal.sequence,sequence -1 field account f \N \N \N \N \N +2161 en End Date account.journal.open_cash.context,end_date -1 field account f \N \N \N \N \N +2162 en Start Date account.journal.open_cash.context,start_date -1 field account f \N \N \N \N \N +2164 en Icon account.journal.period,icon -1 field account f \N \N \N \N \N +2165 en Journal account.journal.period,journal -1 field account f \N \N \N \N \N +2166 en Period account.journal.period,period -1 field account f \N \N \N \N \N +2167 en State account.journal.period,state -1 field account f \N \N \N \N \N +2168 en Open account.journal.period,state -1 selection account f \N \N \N \N \N +2169 en Closed account.journal.period,state -1 selection account f \N \N \N \N \N +2171 en Company account.move,company -1 field account f \N \N \N \N \N +2172 en Effective Date account.move,date -1 field account f \N \N \N \N \N +2173 en Description account.move,description -1 field account f \N \N \N \N \N +2174 en Description account.move,description_used -1 field account f \N \N \N \N \N +2175 en Journal account.move,journal -1 field account f \N \N \N \N \N +2176 en Lines account.move,lines -1 field account f \N \N \N \N \N +2177 en Number account.move,number -1 field account f \N \N \N \N \N +2178 en Origin account.move,origin -1 field account f \N \N \N \N \N +2179 en Period account.move,period -1 field account f \N \N \N \N \N +2180 en Post Date account.move,post_date -1 field account f \N \N \N \N \N +2181 en Post Number account.move,post_number -1 field account f \N \N \N \N \N +2182 en Also known as Folio Number. account.move,post_number -1 help account f \N \N \N \N \N +2183 en State account.move,state -1 field account f \N \N \N \N \N +2184 en Draft account.move,state -1 selection account f \N \N \N \N \N +2185 en Posted account.move,state -1 selection account f \N \N \N \N \N +2187 en Company account.move.reconciliation,company -1 field account f \N \N \N \N \N +2188 en Date account.move.reconciliation,date -1 field account f \N \N \N \N \N +2189 en Highest date of the reconciled lines. account.move.reconciliation,date -1 help account f \N \N \N \N \N +2190 en Delegate To account.move.reconciliation,delegate_to -1 field account f \N \N \N \N \N +2191 en The line to which the reconciliation status is delegated. account.move.reconciliation,delegate_to -1 help account f \N \N \N \N \N +2192 en Lines account.move.reconciliation,lines -1 field account f \N \N \N \N \N +2193 en Number account.move.reconciliation,number -1 field account f \N \N \N \N \N +2195 en Company account.configuration.tax_rounding,company -1 field account f \N \N \N \N \N +2196 en Configuration account.configuration.tax_rounding,configuration -1 field account f \N \N \N \N \N +2197 en Method account.configuration.tax_rounding,tax_rounding -1 field account f \N \N \N \N \N +2198 en Per Document account.configuration.tax_rounding,tax_rounding -1 selection account f \N \N \N \N \N +2199 en Per Line account.configuration.tax_rounding,tax_rounding -1 selection account f \N \N \N \N \N +2201 en Account account.move.line,account -1 field account f \N \N \N \N \N +2202 en Amount account.move.line,amount -1 field account f \N \N \N \N \N +2203 en Amount Currency account.move.line,amount_currency -1 field account f \N \N \N \N \N +2204 en Amount Second Currency account.move.line,amount_second_currency -1 field account f \N \N \N \N \N +2205 en The amount expressed in a second currency. account.move.line,amount_second_currency -1 help account f \N \N \N \N \N +2206 en Company account.move.line,company -1 field account f \N \N \N \N \N +2207 en Credit account.move.line,credit -1 field account f \N \N \N \N \N +2208 en Currency account.move.line,currency -1 field account f \N \N \N \N \N +2209 en Effective Date account.move.line,date -1 field account f \N \N \N \N \N +2210 en Debit account.move.line,debit -1 field account f \N \N \N \N \N +2211 en Delegated Amount account.move.line,delegated_amount -1 field account f \N \N \N \N \N +2212 en Description account.move.line,description -1 field account f \N \N \N \N \N +2213 en Description account.move.line,description_used -1 field account f \N \N \N \N \N +2214 en Has Maturity Date account.move.line,has_maturity_date -1 field account f \N \N \N \N \N +2215 en Journal account.move.line,journal -1 field account f \N \N \N \N \N +2216 en Maturity Date account.move.line,maturity_date -1 field account f \N \N \N \N \N +2217 en Set a date to make the line payable or receivable. account.move.line,maturity_date -1 help account f \N \N \N \N \N +2218 en Move account.move.line,move -1 field account f \N \N \N \N \N +2219 en Move Description account.move.line,move_description_used -1 field account f \N \N \N \N \N +2220 en Move Origin account.move.line,move_origin -1 field account f \N \N \N \N \N +2221 en Move State account.move.line,move_state -1 field account f \N \N \N \N \N +2222 en Origin account.move.line,origin -1 field account f \N \N \N \N \N +2223 en Party account.move.line,party -1 field account f \N \N \N \N \N +2224 en Party Required account.move.line,party_required -1 field account f \N \N \N \N \N +2225 en Payable/Receivable Balance account.move.line,payable_receivable_balance -1 field account f \N \N \N \N \N +2226 en Period account.move.line,period -1 field account f \N \N \N \N \N +2227 en Reconciliation account.move.line,reconciliation -1 field account f \N \N \N \N \N +2228 en Reconciliations Delegated account.move.line,reconciliations_delegated -1 field account f \N \N \N \N \N +2229 en Second Currency account.move.line,second_currency -1 field account f \N \N \N \N \N +2230 en The second currency. account.move.line,second_currency -1 help account f \N \N \N \N \N +2231 en Second Currency Required account.move.line,second_currency_required -1 field account f \N \N \N \N \N +2232 en State account.move.line,state -1 field account f \N \N \N \N \N +2233 en Draft account.move.line,state -1 selection account f \N \N \N \N \N +2234 en Valid account.move.line,state -1 selection account f \N \N \N \N \N +2235 en Tax Lines account.move.line,tax_lines -1 field account f \N \N \N \N \N +2237 en Payable account.move.line.receivable_payable.context,payable -1 field account f \N \N \N \N \N +2238 en Receivable account.move.line.receivable_payable.context,receivable -1 field account f \N \N \N \N \N +2239 en Reconciled account.move.line.receivable_payable.context,reconciled -1 field account f \N \N \N \N \N +2241 en Company account.move.reconcile.write_off,company -1 field account f \N \N \N \N \N +2242 en Credit Account account.move.reconcile.write_off,credit_account -1 field account f \N \N \N \N \N +2243 en Debit Account account.move.reconcile.write_off,debit_account -1 field account f \N \N \N \N \N +2244 en Journal account.move.reconcile.write_off,journal -1 field account f \N \N \N \N \N +2245 en Name account.move.reconcile.write_off,name -1 field account f \N \N \N \N \N +2247 en Journal account.move.open_journal.ask,journal -1 field account f \N \N \N \N \N +2248 en Period account.move.open_journal.ask,period -1 field account f \N \N \N \N \N +2250 en Amount account.move.reconcile_lines.writeoff,amount -1 field account f \N \N \N \N \N +2251 en Company account.move.reconcile_lines.writeoff,company -1 field account f \N \N \N \N \N +2252 en Currency account.move.reconcile_lines.writeoff,currency -1 field account f \N \N \N \N \N +2253 en Date account.move.reconcile_lines.writeoff,date -1 field account f \N \N \N \N \N +2254 en Description account.move.reconcile_lines.writeoff,description -1 field account f \N \N \N \N \N +2255 en Write Off account.move.reconcile_lines.writeoff,writeoff -1 field account f \N \N \N \N \N +2257 en Automatic account.reconcile.start,automatic -1 field account f \N \N \N \N \N +2258 en Automatically reconcile suggestions. account.reconcile.start,automatic -1 help account f \N \N \N \N \N +2259 en Only Balanced account.reconcile.start,only_balanced -1 field account f \N \N \N \N \N +2260 en Skip suggestion with write-off. account.reconcile.start,only_balanced -1 help account f \N \N \N \N \N +2262 en Account account.reconcile.show,account -1 field account f \N \N \N \N \N +2263 en Account account.reconcile.show,accounts -1 field account f \N \N \N \N \N +2264 en Company account.reconcile.show,company -1 field account f \N \N \N \N \N +2265 en Currencies account.reconcile.show,currencies -1 field account f \N \N \N \N \N +2266 en Currency account.reconcile.show,currency -1 field account f \N \N \N \N \N +2267 en Date account.reconcile.show,date -1 field account f \N \N \N \N \N +2268 en Description account.reconcile.show,description -1 field account f \N \N \N \N \N +2269 en Lines account.reconcile.show,lines -1 field account f \N \N \N \N \N +2270 en Parties account.reconcile.show,parties -1 field account f \N \N \N \N \N +2271 en Party account.reconcile.show,party -1 field account f \N \N \N \N \N +2272 en Write Off account.reconcile.show,write_off -1 field account f \N \N \N \N \N +2273 en Amount account.reconcile.show,write_off_amount -1 field account f \N \N \N \N \N +2275 en Description account.move.cancel.default,description -1 field account f \N \N \N \N \N +2276 en Reversal account.move.cancel.default,reversal -1 field account f \N \N \N \N \N +2277 en Reverse debit and credit. account.move.cancel.default,reversal -1 help account f \N \N \N \N \N +2279 en Description account.move.line.group.start,description -1 field account f \N \N \N \N \N +2280 en Journal account.move.line.group.start,journal -1 field account f \N \N \N \N \N +2282 en Amount account.move.line.reschedule.start,amount -1 field account f \N \N \N \N \N +2283 en Currency account.move.line.reschedule.start,currency -1 field account f \N \N \N \N \N +2284 en Frequency account.move.line.reschedule.start,frequency -1 field account f \N \N \N \N \N +2285 en Monthly account.move.line.reschedule.start,frequency -1 selection account f \N \N \N \N \N +2286 en Quarterly account.move.line.reschedule.start,frequency -1 selection account f \N \N \N \N \N +2287 en Other account.move.line.reschedule.start,frequency -1 selection account f \N \N \N \N \N +2288 en Interval account.move.line.reschedule.start,interval -1 field account f \N \N \N \N \N +2289 en The length of each period, in months. account.move.line.reschedule.start,interval -1 help account f \N \N \N \N \N +2290 en Number account.move.line.reschedule.start,number -1 field account f \N \N \N \N \N +2291 en Start Date account.move.line.reschedule.start,start_date -1 field account f \N \N \N \N \N +2292 en Total Amount account.move.line.reschedule.start,total_amount -1 field account f \N \N \N \N \N +2294 en Currency account.move.line.reschedule.preview,currency -1 field account f \N \N \N \N \N +2295 en Description account.move.line.reschedule.preview,description -1 field account f \N \N \N \N \N +2296 en Journal account.move.line.reschedule.preview,journal -1 field account f \N \N \N \N \N +2297 en Terms account.move.line.reschedule.preview,terms -1 field account f \N \N \N \N \N +2299 en Amount account.move.line.reschedule.term,amount -1 field account f \N \N \N \N \N +2300 en Currency account.move.line.reschedule.term,currency -1 field account f \N \N \N \N \N +2301 en Date account.move.line.reschedule.term,date -1 field account f \N \N \N \N \N +2303 en Description account.move.line.delegate.start,description -1 field account f \N \N \N \N \N +2304 en Journal account.move.line.delegate.start,journal -1 field account f \N \N \N \N \N +2305 en Party account.move.line.delegate.start,party -1 field account f \N \N \N \N \N +2307 en Code account.tax.group,code -1 field account f \N \N \N \N \N +2308 en Kind account.tax.group,kind -1 field account f \N \N \N \N \N +2309 en Sale account.tax.group,kind -1 selection account f \N \N \N \N \N +2310 en Purchase account.tax.group,kind -1 selection account f \N \N \N \N \N +2311 en Both account.tax.group,kind -1 selection account f \N \N \N \N \N +2312 en Name account.tax.group,name -1 field account f \N \N \N \N \N +2314 en Account Template account.tax.code.template,account -1 field account f \N \N \N \N \N +2315 en Children account.tax.code.template,childs -1 field account f \N \N \N \N \N +2316 en Code account.tax.code.template,code -1 field account f \N \N \N \N \N +2317 en Description account.tax.code.template,description -1 field account f \N \N \N \N \N +2318 en End Date account.tax.code.template,end_date -1 field account f \N \N \N \N \N +2319 en Lines account.tax.code.template,lines -1 field account f \N \N \N \N \N +2320 en Name account.tax.code.template,name -1 field account f \N \N \N \N \N +2321 en Parent account.tax.code.template,parent -1 field account f \N \N \N \N \N +2322 en Start Date account.tax.code.template,start_date -1 field account f \N \N \N \N \N +2324 en Active account.tax.code,active -1 field account f \N \N \N \N \N +2325 en Amount account.tax.code,amount -1 field account f \N \N \N \N \N +2326 en Children account.tax.code,childs -1 field account f \N \N \N \N \N +2327 en Code account.tax.code,code -1 field account f \N \N \N \N \N +2328 en Company account.tax.code,company -1 field account f \N \N \N \N \N +2329 en Context Company account.tax.code,context_company -1 field account f \N \N \N \N \N +2330 en Currency account.tax.code,currency -1 field account f \N \N \N \N \N +2331 en Description account.tax.code,description -1 field account f \N \N \N \N \N +2332 en End Date account.tax.code,end_date -1 field account f \N \N \N \N \N +2333 en Lines account.tax.code,lines -1 field account f \N \N \N \N \N +2334 en Name account.tax.code,name -1 field account f \N \N \N \N \N +2335 en Parent account.tax.code,parent -1 field account f \N \N \N \N \N +2336 en Start Date account.tax.code,start_date -1 field account f \N \N \N \N \N +2337 en Template account.tax.code,template -1 field account f \N \N \N \N \N +2338 en Override Template account.tax.code,template_override -1 field account f \N \N \N \N \N +2339 en Check to override template definition account.tax.code,template_override -1 help account f \N \N \N \N \N +2341 en Amount account.tax.code.line.template,amount -1 field account f \N \N \N \N \N +2342 en Tax account.tax.code.line.template,amount -1 selection account f \N \N \N \N \N +2343 en Base account.tax.code.line.template,amount -1 selection account f \N \N \N \N \N +2344 en Code account.tax.code.line.template,code -1 field account f \N \N \N \N \N +2345 en Operator account.tax.code.line.template,operator -1 field account f \N \N \N \N \N +2346 en + account.tax.code.line.template,operator -1 selection account f \N \N \N \N \N +2347 en - account.tax.code.line.template,operator -1 selection account f \N \N \N \N \N +2348 en Tax account.tax.code.line.template,tax -1 field account f \N \N \N \N \N +2349 en Type account.tax.code.line.template,type -1 field account f \N \N \N \N \N +2350 en Invoice account.tax.code.line.template,type -1 selection account f \N \N \N \N \N +2351 en Credit account.tax.code.line.template,type -1 selection account f \N \N \N \N \N +2353 en Amount account.tax.code.line,amount -1 field account f \N \N \N \N \N +2354 en Tax account.tax.code.line,amount -1 selection account f \N \N \N \N \N +2355 en Base account.tax.code.line,amount -1 selection account f \N \N \N \N \N +2356 en Code account.tax.code.line,code -1 field account f \N \N \N \N \N +2357 en Operator account.tax.code.line,operator -1 field account f \N \N \N \N \N +2358 en + account.tax.code.line,operator -1 selection account f \N \N \N \N \N +2359 en - account.tax.code.line,operator -1 selection account f \N \N \N \N \N +2360 en Tax account.tax.code.line,tax -1 field account f \N \N \N \N \N +2361 en Template account.tax.code.line,template -1 field account f \N \N \N \N \N +2362 en Override Template account.tax.code.line,template_override -1 field account f \N \N \N \N \N +2363 en Check to override template definition account.tax.code.line,template_override -1 help account f \N \N \N \N \N +2364 en Type account.tax.code.line,type -1 field account f \N \N \N \N \N +2365 en Invoice account.tax.code.line,type -1 selection account f \N \N \N \N \N +2366 en Credit account.tax.code.line,type -1 selection account f \N \N \N \N \N +2397 en Account Tax account.tax,name -1 model account f \N \N \N \N \N +2368 en Company account.tax.code.context,company -1 field account f \N \N \N \N \N +2369 en End Period account.tax.code.context,end_period -1 field account f \N \N \N \N \N +2370 en Fiscal Year account.tax.code.context,fiscalyear -1 field account f \N \N \N \N \N +2371 en Method account.tax.code.context,method -1 field account f \N \N \N \N \N +2372 en By Fiscal Year account.tax.code.context,method -1 selection account f \N \N \N \N \N +2373 en By Period account.tax.code.context,method -1 selection account f \N \N \N \N \N +2374 en Over Periods account.tax.code.context,method -1 selection account f \N \N \N \N \N +2375 en Period account.tax.code.context,period -1 field account f \N \N \N \N \N +2376 en Periods account.tax.code.context,periods -1 field account f \N \N \N \N \N +2377 en Start Period account.tax.code.context,start_period -1 field account f \N \N \N \N \N +2379 en Account Template account.tax.template,account -1 field account f \N \N \N \N \N +2380 en Amount account.tax.template,amount -1 field account f \N \N \N \N \N +2381 en Children account.tax.template,childs -1 field account f \N \N \N \N \N +2382 en Credit Note Account account.tax.template,credit_note_account -1 field account f \N \N \N \N \N +2383 en Description account.tax.template,description -1 field account f \N \N \N \N \N +2384 en Ending Date account.tax.template,end_date -1 field account f \N \N \N \N \N +2385 en Group account.tax.template,group -1 field account f \N \N \N \N \N +2386 en Invoice Account account.tax.template,invoice_account -1 field account f \N \N \N \N \N +2387 en Legal Notice account.tax.template,legal_notice -1 field account f \N \N \N \N \N +2388 en Name account.tax.template,name -1 field account f \N \N \N \N \N +2389 en Parent account.tax.template,parent -1 field account f \N \N \N \N \N +2390 en Rate account.tax.template,rate -1 field account f \N \N \N \N \N +2391 en Starting Date account.tax.template,start_date -1 field account f \N \N \N \N \N +2392 en Type account.tax.template,type -1 field account f \N \N \N \N \N +2393 en Percentage account.tax.template,type -1 selection account f \N \N \N \N \N +2394 en Fixed account.tax.template,type -1 selection account f \N \N \N \N \N +2395 en None account.tax.template,type -1 selection account f \N \N \N \N \N +2396 en Update Unit Price account.tax.template,update_unit_price -1 field account f \N \N \N \N \N +2398 en Amount account.tax,amount -1 field account f \N \N \N \N \N +2399 en In company's currency. account.tax,amount -1 help account f \N \N \N \N \N +2400 en Children account.tax,childs -1 field account f \N \N \N \N \N +2401 en Company account.tax,company -1 field account f \N \N \N \N \N +2402 en Credit Base Amount account.tax,credit_base_amount -1 field account f \N \N \N \N \N +2403 en Credit Note Account account.tax,credit_note_account -1 field account f \N \N \N \N \N +2404 en Credit Tax Amount account.tax,credit_tax_amount -1 field account f \N \N \N \N \N +2405 en Currency account.tax,currency -1 field account f \N \N \N \N \N +2406 en Description account.tax,description -1 field account f \N \N \N \N \N +2407 en The name that will be used in reports. account.tax,description -1 help account f \N \N \N \N \N +2408 en Ending Date account.tax,end_date -1 field account f \N \N \N \N \N +2409 en Group account.tax,group -1 field account f \N \N \N \N \N +2410 en Invoice Account account.tax,invoice_account -1 field account f \N \N \N \N \N +2411 en Invoice Base Amount account.tax,invoice_base_amount -1 field account f \N \N \N \N \N +2412 en Invoice Tax Amount account.tax,invoice_tax_amount -1 field account f \N \N \N \N \N +2413 en Legal Notice account.tax,legal_notice -1 field account f \N \N \N \N \N +2414 en Name account.tax,name -1 field account f \N \N \N \N \N +2415 en Parent account.tax,parent -1 field account f \N \N \N \N \N +2416 en Rate account.tax,rate -1 field account f \N \N \N \N \N +2417 en Starting Date account.tax,start_date -1 field account f \N \N \N \N \N +2418 en Template account.tax,template -1 field account f \N \N \N \N \N +2419 en Override Template account.tax,template_override -1 field account f \N \N \N \N \N +2420 en Check to override template definition account.tax,template_override -1 help account f \N \N \N \N \N +2421 en Type account.tax,type -1 field account f \N \N \N \N \N +2422 en Percentage account.tax,type -1 selection account f \N \N \N \N \N +2423 en Fixed account.tax,type -1 selection account f \N \N \N \N \N +2424 en None account.tax,type -1 selection account f \N \N \N \N \N +2425 en Update Unit Price account.tax,update_unit_price -1 field account f \N \N \N \N \N +2426 en If checked then the unit price for further tax computation will be modified by this tax. account.tax,update_unit_price -1 help account f \N \N \N \N \N +2428 en Amount account.tax.line,amount -1 field account f \N \N \N \N \N +2429 en Company account.tax.line,company -1 field account f \N \N \N \N \N +2430 en Currency account.tax.line,currency -1 field account f \N \N \N \N \N +2431 en Move Line account.tax.line,move_line -1 field account f \N \N \N \N \N +2432 en Tax account.tax.line,tax -1 field account f \N \N \N \N \N +2433 en Type account.tax.line,type -1 field account f \N \N \N \N \N +2434 en Tax account.tax.line,type -1 selection account f \N \N \N \N \N +2435 en Base account.tax.line,type -1 selection account f \N \N \N \N \N +2437 en Account Template account.tax.rule.template,account -1 field account f \N \N \N \N \N +2438 en Kind account.tax.rule.template,kind -1 field account f \N \N \N \N \N +2439 en Sale account.tax.rule.template,kind -1 selection account f \N \N \N \N \N +2440 en Purchase account.tax.rule.template,kind -1 selection account f \N \N \N \N \N +2441 en Both account.tax.rule.template,kind -1 selection account f \N \N \N \N \N +2442 en Lines account.tax.rule.template,lines -1 field account f \N \N \N \N \N +2443 en Name account.tax.rule.template,name -1 field account f \N \N \N \N \N +2445 en Company account.tax.rule,company -1 field account f \N \N \N \N \N +2446 en Kind account.tax.rule,kind -1 field account f \N \N \N \N \N +2447 en Sale account.tax.rule,kind -1 selection account f \N \N \N \N \N +2448 en Purchase account.tax.rule,kind -1 selection account f \N \N \N \N \N +2449 en Both account.tax.rule,kind -1 selection account f \N \N \N \N \N +2450 en Lines account.tax.rule,lines -1 field account f \N \N \N \N \N +2451 en Name account.tax.rule,name -1 field account f \N \N \N \N \N +2452 en Template account.tax.rule,template -1 field account f \N \N \N \N \N +2453 en Override Template account.tax.rule,template_override -1 field account f \N \N \N \N \N +2454 en Check to override template definition account.tax.rule,template_override -1 help account f \N \N \N \N \N +2456 en Ending Date account.tax.rule.line.template,end_date -1 field account f \N \N \N \N \N +2457 en Tax Group account.tax.rule.line.template,group -1 field account f \N \N \N \N \N +2458 en Keep Origin account.tax.rule.line.template,keep_origin -1 field account f \N \N \N \N \N +2459 en Check to append the original tax to substituted tax. account.tax.rule.line.template,keep_origin -1 help account f \N \N \N \N \N +2460 en Original Tax account.tax.rule.line.template,origin_tax -1 field account f \N \N \N \N \N +2461 en If the original tax template is filled, the rule will be applied only for this tax template. account.tax.rule.line.template,origin_tax -1 help account f \N \N \N \N \N +2462 en Rule account.tax.rule.line.template,rule -1 field account f \N \N \N \N \N +2463 en Starting Date account.tax.rule.line.template,start_date -1 field account f \N \N \N \N \N +2464 en Substitution Tax account.tax.rule.line.template,tax -1 field account f \N \N \N \N \N +2466 en Ending Date account.tax.rule.line,end_date -1 field account f \N \N \N \N \N +2467 en Tax Group account.tax.rule.line,group -1 field account f \N \N \N \N \N +2468 en Keep Origin account.tax.rule.line,keep_origin -1 field account f \N \N \N \N \N +2469 en Check to append the original tax to substituted tax. account.tax.rule.line,keep_origin -1 help account f \N \N \N \N \N +2470 en Original Tax account.tax.rule.line,origin_tax -1 field account f \N \N \N \N \N +2471 en If the original tax is filled, the rule will be applied only for this tax. account.tax.rule.line,origin_tax -1 help account f \N \N \N \N \N +2472 en Rule account.tax.rule.line,rule -1 field account f \N \N \N \N \N +2473 en Starting Date account.tax.rule.line,start_date -1 field account f \N \N \N \N \N +2474 en Substitution Tax account.tax.rule.line,tax -1 field account f \N \N \N \N \N +2475 en Template account.tax.rule.line,template -1 field account f \N \N \N \N \N +2476 en Override Template account.tax.rule.line,template_override -1 field account f \N \N \N \N \N +2477 en Check to override template definition account.tax.rule.line,template_override -1 help account f \N \N \N \N \N +2479 en Currency account.tax.test,currency -1 field account f \N \N \N \N \N +2480 en Quantity account.tax.test,quantity -1 field account f \N \N \N \N \N +2481 en Result account.tax.test,result -1 field account f \N \N \N \N \N +2482 en Date account.tax.test,tax_date -1 field account f \N \N \N \N \N +2483 en Taxes account.tax.test,taxes -1 field account f \N \N \N \N \N +2484 en Unit Price account.tax.test,unit_price -1 field account f \N \N \N \N \N +2486 en Account account.tax.test.result,account -1 field account f \N \N \N \N \N +2487 en Amount account.tax.test.result,amount -1 field account f \N \N \N \N \N +2488 en Base account.tax.test.result,base -1 field account f \N \N \N \N \N +2489 en Description account.tax.test.result,description -1 field account f \N \N \N \N \N +2490 en Legal Notice account.tax.test.result,legal_notice -1 field account f \N \N \N \N \N +2491 en Tax account.tax.test.result,tax -1 field account f \N \N \N \N \N +2493 en Company account.move.template,company -1 field account f \N \N \N \N \N +2494 en Description account.move.template,description -1 field account f \N \N \N \N \N +2495 en Keyword value substitutions are identified by braces ('{' and '}'). account.move.template,description -1 help account f \N \N \N \N \N +2496 en Journal account.move.template,journal -1 field account f \N \N \N \N \N +2497 en Keywords account.move.template,keywords -1 field account f \N \N \N \N \N +2498 en Lines account.move.template,lines -1 field account f \N \N \N \N \N +2499 en Name account.move.template,name -1 field account f \N \N \N \N \N +2501 en Digits account.move.template.keyword,digits -1 field account f \N \N \N \N \N +2502 en Move account.move.template.keyword,move -1 field account f \N \N \N \N \N +2503 en Name account.move.template.keyword,name -1 field account f \N \N \N \N \N +2504 en Required account.move.template.keyword,required -1 field account f \N \N \N \N \N +2505 en String account.move.template.keyword,string -1 field account f \N \N \N \N \N +2506 en Type account.move.template.keyword,type_ -1 field account f \N \N \N \N \N +2507 en Char account.move.template.keyword,type_ -1 selection account f \N \N \N \N \N +2508 en Numeric account.move.template.keyword,type_ -1 selection account f \N \N \N \N \N +2509 en Date account.move.template.keyword,type_ -1 selection account f \N \N \N \N \N +2510 en Party account.move.template.keyword,type_ -1 selection account f \N \N \N \N \N +2512 en Account account.move.line.template,account -1 field account f \N \N \N \N \N +2513 en Amount account.move.line.template,amount -1 field account f \N \N \N \N \N +2514 en A python expression that will be evaluated with the keywords. account.move.line.template,amount -1 help account f \N \N \N \N \N +2515 en Description account.move.line.template,description -1 field account f \N \N \N \N \N +2516 en Keyword value substitutions are identified by braces ('{' and '}'). account.move.line.template,description -1 help account f \N \N \N \N \N +2517 en Move account.move.line.template,move -1 field account f \N \N \N \N \N +2518 en Operation account.move.line.template,operation -1 field account f \N \N \N \N \N +2519 en Debit account.move.line.template,operation -1 selection account f \N \N \N \N \N +2520 en Credit account.move.line.template,operation -1 selection account f \N \N \N \N \N +2521 en Party account.move.line.template,party -1 field account f \N \N \N \N \N +2522 en The name of the 'Party' keyword. account.move.line.template,party -1 help account f \N \N \N \N \N +2523 en Party Required account.move.line.template,party_required -1 field account f \N \N \N \N \N +2524 en Taxes account.move.line.template,taxes -1 field account f \N \N \N \N \N +2526 en Amount account.tax.line.template,amount -1 field account f \N \N \N \N \N +2527 en A python expression that will be evaluated with the keywords. account.tax.line.template,amount -1 help account f \N \N \N \N \N +2528 en Line account.tax.line.template,line -1 field account f \N \N \N \N \N +2529 en Tax account.tax.line.template,tax -1 field account f \N \N \N \N \N +2530 en Type account.tax.line.template,type -1 field account f \N \N \N \N \N +2531 en Tax account.tax.line.template,type -1 selection account f \N \N \N \N \N +2532 en Base account.tax.line.template,type -1 selection account f \N \N \N \N \N +2534 en Effective Date account.move.template.create.template,date -1 field account f \N \N \N \N \N +2535 en Period account.move.template.create.template,period -1 field account f \N \N \N \N \N +2536 en Template account.move.template.create.template,template -1 field account f \N \N \N \N \N +2538 en Account Payable party.party,account_payable -1 field account f \N \N \N \N \N +2539 en Account Receivable party.party,account_receivable -1 field account f \N \N \N \N \N +2540 en Accounts party.party,accounts -1 field account f \N \N \N \N \N +2541 en Currency party.party,currency -1 field account f \N \N \N \N \N +2542 en Customer Tax Rule party.party,customer_tax_rule -1 field account f \N \N \N \N \N +2543 en Apply this rule on taxes when party is customer. party.party,customer_tax_rule -1 help account f \N \N \N \N \N +2544 en Payable party.party,payable -1 field account f \N \N \N \N \N +2545 en Payable Today party.party,payable_today -1 field account f \N \N \N \N \N +2546 en Receivable party.party,receivable -1 field account f \N \N \N \N \N +2547 en Receivable Today party.party,receivable_today -1 field account f \N \N \N \N \N +2548 en Supplier Tax Rule party.party,supplier_tax_rule -1 field account f \N \N \N \N \N +2549 en Apply this rule on taxes when party is supplier. party.party,supplier_tax_rule -1 help account f \N \N \N \N \N +2551 en Account Payable party.party.account,account_payable -1 field account f \N \N \N \N \N +2552 en Account Receivable party.party.account,account_receivable -1 field account f \N \N \N \N \N +2553 en Company party.party.account,company -1 field account f \N \N \N \N \N +2554 en Customer Tax Rule party.party.account,customer_tax_rule -1 field account f \N \N \N \N \N +2555 en Party party.party.account,party -1 field account f \N \N \N \N \N +2556 en Supplier Tax Rule party.party.account,supplier_tax_rule -1 field account f \N \N \N \N \N +2558 en End Day account.fiscalyear.create_periods.start,end_day -1 field account f \N \N \N \N \N +2559 en The day of the month on which periods end.\nMonths with fewer days will end on the last day. account.fiscalyear.create_periods.start,end_day -1 help account f \N \N \N \N \N +2560 en Frequency account.fiscalyear.create_periods.start,frequency -1 field account f \N \N \N \N \N +2561 en Monthly account.fiscalyear.create_periods.start,frequency -1 selection account f \N \N \N \N \N +2562 en Quarterly account.fiscalyear.create_periods.start,frequency -1 selection account f \N \N \N \N \N +2563 en Other account.fiscalyear.create_periods.start,frequency -1 selection account f \N \N \N \N \N +2564 en Interval account.fiscalyear.create_periods.start,interval -1 field account f \N \N \N \N \N +2565 en The length of each period, in months. account.fiscalyear.create_periods.start,interval -1 help account f \N \N \N \N \N +2567 en Company account.fiscalyear.renew.start,company -1 field account f \N \N \N \N \N +2568 en End Date account.fiscalyear.renew.start,end_date -1 field account f \N \N \N \N \N +2569 en Name account.fiscalyear.renew.start,name -1 field account f \N \N \N \N \N +2570 en Previous Fiscalyear account.fiscalyear.renew.start,previous_fiscalyear -1 field account f \N \N \N \N \N +2571 en Used as reference for fiscalyear configuration. account.fiscalyear.renew.start,previous_fiscalyear -1 help account f \N \N \N \N \N +2572 en Reset Sequences account.fiscalyear.renew.start,reset_sequences -1 field account f \N \N \N \N \N +2573 en If checked, new sequences will be created. account.fiscalyear.renew.start,reset_sequences -1 help account f \N \N \N \N \N +2574 en Start Date account.fiscalyear.renew.start,start_date -1 field account f \N \N \N \N \N +2575 en Cancel account.fiscalyear.balance_non_deferral,start,end -1 wizard_button account f \N \N \N \N \N +2576 en OK account.fiscalyear.balance_non_deferral,start,balance -1 wizard_button account f \N \N \N \N \N +2583 en Cancel account.update_chart,start,end -1 wizard_button account f \N \N \N \N \N +2584 en Update account.update_chart,start,update -1 wizard_button account f \N \N \N \N \N +2585 en OK account.update_chart,succeed,end -1 wizard_button account f \N \N \N \N \N +2586 en Cancel account.move.open_journal,ask,end -1 wizard_button account f \N \N \N \N \N +2587 en Open account.move.open_journal,ask,open_ -1 wizard_button account f \N \N \N \N \N +2588 en Cancel account.move.reconcile_lines,writeoff,end -1 wizard_button account f \N \N \N \N \N +2589 en Reconcile account.move.reconcile_lines,writeoff,reconcile -1 wizard_button account f \N \N \N \N \N +2590 en Cancel account.reconcile,show,end -1 wizard_button account f \N \N \N \N \N +2591 en Skip account.reconcile,show,next_ -1 wizard_button account f \N \N \N \N \N +2592 en Reconcile account.reconcile,show,reconcile -1 wizard_button account f \N \N \N \N \N +2593 en Cancel account.reconcile,start,end -1 wizard_button account f \N \N \N \N \N +2594 en Reconcile account.reconcile,start,next_ -1 wizard_button account f \N \N \N \N \N +2597 en Cancel account.move.line.group,start,end -1 wizard_button account f \N \N \N \N \N +2598 en Group account.move.line.group,start,group -1 wizard_button account f \N \N \N \N \N +2605 en Cancel account.move.template.create,keywords,end -1 wizard_button account f \N \N \N \N \N +2606 en Create account.move.template.create,keywords,create_ -1 wizard_button account f \N \N \N \N \N +2607 en Cancel account.move.template.create,template,end -1 wizard_button account f \N \N \N \N \N +2608 en Next account.move.template.create,template,keywords -1 wizard_button account f \N \N \N \N \N +2609 en Close account.tax.test,test,end -1 wizard_button account f \N \N \N \N \N +2614 en Account res.group,name 6 Account model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2615 en Accounting Party res.group,name 7 Accounting Party model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2616 en Account Administration res.group,name 8 Account Administration model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2617 en Financial ir.ui.menu,name 74 Financial model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2618 en Configuration ir.ui.menu,name 75 Configuration model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2619 en Templates ir.ui.menu,name 76 Templates model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2620 en General Account ir.ui.menu,name 77 General Account model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2621 en Entries ir.ui.menu,name 78 Entries model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2622 en Processing ir.ui.menu,name 79 Processing model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2623 en Reporting ir.ui.menu,name 80 Reporting model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2624 en Account Types ir.action,name 86 Account Types model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2625 en Account Types ir.ui.menu,name 81 Account Types model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2626 en Account Types ir.action,name 87 Account Types model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2627 en Account Types ir.ui.menu,name 82 Account Types model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2628 en Account Types ir.action,name 88 Account Types model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2629 en Account Types ir.ui.menu,name 83 Account Types model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2630 en User in companies ir.rule.group,name 10 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2610 en Cancel account.fiscalyear.create_periods,start,end -1 wizard_button account f \N \N \N \N \N +2631 en Statement ir.action,name 89 Statement model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2632 en Accounts ir.action,name 90 Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2633 en Accounts ir.ui.menu,name 84 Accounts model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2634 en Create Chart of Accounts from Template ir.action,name 91 Create Chart of Accounts from Template model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2635 en Create Chart of Accounts from Template ir.ui.menu,name 85 Create Chart of Accounts from Template model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2636 en Update Chart of Accounts from Template ir.action,name 92 Update Chart of Accounts from Template model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2637 en Update Chart of Accounts from Template ir.ui.menu,name 86 Update Chart of Accounts from Template model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2638 en Accounts ir.action,name 93 Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2639 en Accounts ir.ui.menu,name 87 Accounts model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2640 en Accounts ir.action,name 94 Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2641 en Accounts ir.ui.menu,name 88 Accounts model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2642 en Accounts ir.action,name 95 Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2643 en Open Type ir.action,name 96 Open Type model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2644 en Chart of Accounts ir.action,name 97 Chart of Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2645 en Chart of Accounts ir.ui.menu,name 89 Chart of Accounts model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2646 en User in companies ir.rule.group,name 11 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2647 en General Ledger ir.action,name 98 General Ledger model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2648 en Trial Balance ir.action,name 99 Trial Balance model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2649 en General Ledger - Accounts ir.action,name 100 General Ledger - Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2650 en General Ledger ir.ui.menu,name 90 General Ledger model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2651 en Accounts ir.action,name 101 Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2652 en User in companies ir.rule.group,name 12 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2653 en General Ledger - Account Parties ir.action,name 102 General Ledger - Account Parties model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2654 en Open General Ledger Account Parties ir.action,name 103 Open General Ledger Account Parties model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2655 en Accounts ir.action,name 104 Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2656 en User in companies ir.rule.group,name 13 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2657 en General Ledger - Lines ir.action,name 105 General Ledger - Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2658 en User in companies ir.rule.group,name 14 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2659 en Balance Sheet ir.action,name 106 Balance Sheet model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2660 en Balance Sheet ir.ui.menu,name 91 Balance Sheet model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2661 en Income Statement ir.action,name 107 Income Statement model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2662 en Income Statement ir.ui.menu,name 92 Income Statement model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2663 en Aged Balance ir.action,name 108 Aged Balance model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2664 en Aged Balance ir.ui.menu,name 93 Aged Balance model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2665 en User in companies ir.rule.group,name 15 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2666 en Aged Balance ir.action,name 109 Aged Balance model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2714 en Account Moves ir.ui.menu,name 108 Account Moves model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2667 en Configuration ir.action,name 110 Configuration model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2668 en Configuration ir.ui.menu,name 94 Configuration model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2669 en Fiscal Years ir.ui.menu,name 95 Fiscal Years model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2670 en Fiscal Years ir.action,name 111 Fiscal Years model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2671 en Fiscal Years ir.ui.menu,name 96 Fiscal Years model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2672 en Create Periods ir.model.button,string 19 Create Periods model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2673 en Re-Open ir.model.button,string 20 Re-Open model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2674 en Close ir.model.button,string 21 Close model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2675 en Lock ir.model.button,string 22 Lock model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2676 en Are you sure you want to lock the fiscal year? ir.model.button,confirm 22 Are you sure you want to lock the fiscal year? model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2677 en User in companies ir.rule.group,name 16 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2678 en Close Fiscal Years ir.action,name 112 Close Fiscal Years model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2679 en Close Fiscal Years ir.ui.menu,name 97 Close Fiscal Years model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2680 en Create Periods ir.action,name 113 Create Periods model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2681 en Balance Non-Deferral ir.action,name 114 Balance Non-Deferral model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2682 en Balance Non-Deferral ir.ui.menu,name 98 Balance Non-Deferral model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2683 en Renew Fiscal Year ir.action,name 115 Renew Fiscal Year model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2684 en Renew Fiscal Year ir.ui.menu,name 99 Renew Fiscal Year model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2685 en Periods ir.action,name 116 Periods model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2686 en Periods ir.ui.menu,name 100 Periods model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2687 en Close ir.model.button,string 23 Close model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2688 en Re-Open ir.model.button,string 24 Re-Open model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2689 en Lock ir.model.button,string 25 Lock model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2690 en Are you sure you want to lock the period? ir.model.button,confirm 25 Are you sure you want to lock the period? model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2691 en Close Periods ir.action,name 117 Close Periods model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2692 en Close Periods ir.ui.menu,name 101 Close Periods model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2693 en User in companies ir.rule.group,name 17 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2694 en Journals ir.ui.menu,name 102 Journals model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2695 en Journals ir.action,name 118 Journals model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2696 en Journals ir.ui.menu,name 103 Journals model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2697 en Journals Cash ir.action,name 119 Journals Cash model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2698 en Journals Cash ir.ui.menu,name 104 Journals Cash model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2699 en Account Journal ir.sequence.type,name 2 Account Journal model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2700 en Default Account Journal ir.sequence,name 2 Default Account Journal model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2701 en Journals - Periods ir.action,name 120 Journals - Periods model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2702 en Journals - Periods ir.ui.menu,name 105 Journals - Periods model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2703 en Journals - Periods ir.action,name 121 Journals - Periods model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2704 en Journals - Periods ir.ui.menu,name 106 Journals - Periods model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2705 en Close Journals - Periods ir.action,name 122 Close Journals - Periods model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2706 en Close Journals - Periods ir.ui.menu,name 107 Close Journals - Periods model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2707 en Revenue account.journal,name 1 Revenue model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2708 en Expense account.journal,name 2 Expense model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2709 en Cash account.journal,name 3 Cash model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2710 en Stock account.journal,name 4 Stock model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2711 en Miscellaneous account.journal,name 5 Miscellaneous model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2712 en Currency Exchange account.journal,name 6 Currency Exchange model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2713 en Account Moves ir.action,name 123 Account Moves model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2715 en User in companies ir.rule.group,name 18 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2716 en Post ir.model.button,string 29 Post model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2717 en Account Move ir.sequence.type,name 3 Account Move model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2718 en Reconciliation Lines ir.action,name 124 Reconciliation Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2719 en User in companies ir.rule.group,name 19 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2720 en Account Move Reconciliation ir.sequence.type,name 4 Account Move Reconciliation model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2721 en Default Account Move Reconciliation ir.sequence,name 3 Default Account Move Reconciliation model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2722 en Account Move Lines ir.action,name 125 Account Move Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2723 en Open Move Account ir.action,name 126 Open Move Account model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2724 en Payable/Receivable Lines ir.action,name 127 Payable/Receivable Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2725 en Open Journal ir.action,name 128 Open Journal model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2726 en Open Journal ir.ui.menu,name 109 Open Journal model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2727 en Reconcile Lines ir.action,name 129 Reconcile Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2728 en Unreconcile Lines ir.action,name 130 Unreconcile Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2729 en Reconcile Accounts ir.action,name 131 Reconcile Accounts model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2730 en Reconcile Accounts ir.ui.menu,name 110 Reconcile Accounts model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2731 en Cancel Moves ir.action,name 132 Cancel Moves model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2732 en Write-off Methods ir.action,name 133 Write-off Methods model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2733 en Write-off Methods ir.ui.menu,name 111 Write-off Methods model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2734 en User in companies ir.rule.group,name 20 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2735 en Group Lines ir.action,name 134 Group Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2736 en Grouped Account Move ir.action,name 135 Grouped Account Move model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2737 en Reschedule Lines ir.action,name 136 Reschedule Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2738 en Reschedule Account Move ir.action,name 137 Reschedule Account Move model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2739 en Delegate Lines ir.action,name 138 Delegate Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2740 en Delegate Account Move ir.action,name 139 Delegate Account Move model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2741 en General Journal ir.action,name 140 General Journal model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2742 en Moves ir.action,name 141 Moves model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2743 en Moves ir.ui.menu,name 112 Moves model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2744 en User in companies ir.rule.group,name 21 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2745 en Create Move from Template ir.action,name 142 Create Move from Template model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2746 en Create Move from Template ir.ui.menu,name 113 Create Move from Template model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2747 en Account Move ir.action,name 143 Account Move model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2748 en Taxes ir.ui.menu,name 114 Taxes model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2749 en Groups ir.action,name 144 Groups model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2750 en Groups ir.ui.menu,name 115 Groups model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2751 en Tax Codes ir.action,name 145 Tax Codes model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2752 en Tax Codes ir.ui.menu,name 116 Tax Codes model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2753 en Codes ir.action,name 146 Codes model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2754 en Codes ir.ui.menu,name 117 Codes model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2755 en Codes ir.action,name 147 Codes model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2756 en Codes ir.ui.menu,name 118 Codes model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2757 en Chart of Tax Codes ir.action,name 148 Chart of Tax Codes model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2758 en Chart of Tax Codes ir.ui.menu,name 119 Chart of Tax Codes model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2759 en User in companies ir.rule.group,name 22 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2760 en Taxes ir.action,name 149 Taxes model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2761 en Taxes ir.ui.menu,name 120 Taxes model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2762 en Taxes ir.action,name 150 Taxes model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2763 en Taxes ir.ui.menu,name 121 Taxes model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2764 en User in companies ir.rule.group,name 23 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2765 en Test Tax ir.action,name 151 Test Tax model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2766 en Test Tax ir.ui.menu,name 122 Test Tax model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2767 en Tax Lines ir.action,name 152 Tax Lines model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2768 en Open Tax Code ir.action,name 153 Open Tax Code model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2769 en Tax Rules ir.action,name 154 Tax Rules model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2770 en Tax Rules ir.ui.menu,name 123 Tax Rules model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2771 en Rules ir.action,name 155 Rules model account f 2024-04-13 20:39:03.023425 0 \N 2024-04-13 20:39:03.023425 0 +2772 en Rules ir.ui.menu,name 124 Rules model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2773 en User in companies ir.rule.group,name 24 User in companies model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2774 en To continue, you must create a period for the date "%(date)s" and company "%(company)s". ir.message,text 149 To continue, you must create a period for the date "%(date)s" and company "%(company)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2775 en To continue, you must reopen the period "%(period)s" of company "%(company)s" for the date "%(date)s". ir.message,text 150 To continue, you must reopen the period "%(period)s" of company "%(company)s" for the date "%(date)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2776 en You cannot modify or delete period "%(period)s" because it contains moves. ir.message,text 151 You cannot modify or delete period "%(period)s" because it contains moves. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2777 en You cannot create a period in fiscal year "%(fiscalyear)s" because it is closed. ir.message,text 152 You cannot create a period in fiscal year "%(fiscalyear)s" because it is closed. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2778 en You cannot reopen period "%(period)s" because its fiscal year "%(fiscalyear)s" is closed. ir.message,text 153 You cannot reopen period "%(period)s" because its fiscal year "%(fiscalyear)s" is closed. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2779 en You cannot change the post move sequence in period "%(period)s" because it has posted moves. ir.message,text 154 You cannot change the post move sequence in period "%(period)s" because it has posted moves. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2780 en To close period "%(period)s" you must post the moves "%(moves)s". ir.message,text 155 To close period "%(period)s" you must post the moves "%(moves)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2781 en The periods "%(first)s" and "%(second)s" overlap, you must use different dates. ir.message,text 156 The periods "%(first)s" and "%(second)s" overlap, you must use different dates. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2782 en You cannot use the same post move sequence for the periods "%(first)s" and "%(second)s" because they are from different fiscal years. ir.message,text 157 You cannot use the same post move sequence for the periods "%(first)s" and "%(second)s" because they are from different fiscal years. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2783 en The dates for period "%(period)s" must be between the dates of its fiscal year "%(fiscalyear)s". ir.message,text 158 The dates for period "%(period)s" must be between the dates of its fiscal year "%(fiscalyear)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2784 en You can create only one journal per period. ir.message,text 159 You can create only one journal per period. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2785 en You cannot modify or delete journal-period "%(journal_period)s" because it contains moves. ir.message,text 160 You cannot modify or delete journal-period "%(journal_period)s" because it contains moves. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2786 en You cannot create a journal-period in closed period "%(period)s". ir.message,text 161 You cannot create a journal-period in closed period "%(period)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2787 en You cannot reopen journal-period "%(journal_period)s" in closed period "%(period)s". ir.message,text 162 You cannot reopen journal-period "%(journal_period)s" in closed period "%(period)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2788 en You cannot set "Update Unit Price" on child tax "%(tax)s". ir.message,text 163 You cannot set "Update Unit Price" on child tax "%(tax)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2789 en You cannot add/modify/delete tax lines in closed period "%(period)s". ir.message,text 164 You cannot add/modify/delete tax lines in closed period "%(period)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2790 en You cannot change the post move sequence on fiscal year "%(fiscalyear)s" because it contains posted moves. ir.message,text 165 You cannot change the post move sequence on fiscal year "%(fiscalyear)s" because it contains posted moves. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2791 en To continue, you must create a fiscal year for the date "%(date)s" and company "%(company)s". ir.message,text 166 To continue, you must create a fiscal year for the date "%(date)s" and company "%(company)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2792 en To continue, you must reopen the fiscal year "%(fiscalyear)s" of company "%(company)s"for the date "%(date)s". ir.message,text 167 To continue, you must reopen the fiscal year "%(fiscalyear)s" of company "%(company)s"for the date "%(date)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2793 en The fiscal years "%(first)s" and "%(second)s" overlap, you must use different dates. ir.message,text 168 The fiscal years "%(first)s" and "%(second)s" overlap, you must use different dates. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2794 en The open fiscal year "%(open)s" can not be before the close fiscal year "%(closed)s". ir.message,text 169 The open fiscal year "%(open)s" can not be before the close fiscal year "%(closed)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2795 en The fiscal years "%(first)s" and "%(second)s" cannot have the same post move sequence, you must use different sequences. ir.message,text 170 The fiscal years "%(first)s" and "%(second)s" cannot have the same post move sequence, you must use different sequences. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2796 en To close the fiscal year, the balance of account "%(account)s" must be zero. ir.message,text 171 To close the fiscal year, the balance of account "%(account)s" must be zero. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2797 en To close fiscal year "%(fiscalyear)s", you must close all earlier fiscal years. ir.message,text 172 To close fiscal year "%(fiscalyear)s", you must close all earlier fiscal years. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2798 en To reopen fiscal year "%(fiscalyear)s", you must reopen all later fiscal years. ir.message,text 173 To reopen fiscal year "%(fiscalyear)s", you must reopen all later fiscal years. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2799 en To continue, you must define a receivable account for party "%(party)s". ir.message,text 174 To continue, you must define a receivable account for party "%(party)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2800 en To continue, you must define a payable account for party "%(party)s". ir.message,text 175 To continue, you must define a payable account for party "%(party)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2801 en You cannot erase party "%(party)s" while they have pending receivable/payable with company "%(company)s". ir.message,text 176 You cannot erase party "%(party)s" while they have pending receivable/payable with company "%(company)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2802 en Account can have only one of the debit or credit type set. ir.message,text 177 Account can have only one of the debit or credit type set. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2803 en You cannot delete account "%(account)s" because it has move lines. ir.message,text 178 You cannot delete account "%(account)s" because it has move lines. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2804 en To set a second currency for account "%(account)s", it must not have a type "payable", "revenue", "receivable" nor "expense". ir.message,text 179 To set a second currency for account "%(account)s", it must not have a type "payable", "revenue", "receivable" nor "expense". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2805 en To set a second currency for account "%(account)s", it must be deferral. ir.message,text 180 To set a second currency for account "%(account)s", it must be deferral. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2806 en To set a second currency for account "%(account)s", its lines must have the same second currency "%(currency)s". ir.message,text 181 To set a second currency for account "%(account)s", its lines must have the same second currency "%(currency)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2807 en You cannot close account "%(account)s" because it has move lines. ir.message,text 182 You cannot close account "%(account)s" because it has move lines. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2808 en You cannot remove type of account "%(account)s" because it has move lines. ir.message,text 183 You cannot remove type of account "%(account)s" because it has move lines. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2809 en Deferral must be unique by account and fiscal year. ir.message,text 184 Deferral must be unique by account and fiscal year. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2810 en You cannot modify any account deferrals. ir.message,text 185 You cannot modify any account deferrals. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2811 en A chart of accounts already exists for company "%(company)s". ir.message,text 186 A chart of accounts already exists for company "%(company)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2812 en To post move "%(move)s", you must fill in its lines. ir.message,text 187 To post move "%(move)s", you must fill in its lines. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2813 en To post move "%(move)s", you must balance all its lines debits and credits. ir.message,text 188 To post move "%(move)s", you must balance all its lines debits and credits. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2814 en You cannot modify posted move "%(move)s". ir.message,text 189 You cannot modify posted move "%(move)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2815 en The period of move "%(move)s" is closed.\nUse the current period to cancel the move? ir.message,text 190 The period of move "%(move)s" is closed.\nUse the current period to cancel the move? model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2816 en Failed to evaluate expression "%(expression)s" from template "%(template)s" with error:\n"%(error)s" ir.message,text 191 Failed to evaluate expression "%(expression)s" from template "%(template)s" with error:\n"%(error)s" model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2817 en The value "%(value)s" of "%(expression)s" from template "%(template)s" is not a number. ir.message,text 192 The value "%(value)s" of "%(expression)s" from template "%(template)s" is not a number. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2818 en The keyword name "%(name)s" is not a valid identifier. ir.message,text 193 The keyword name "%(name)s" is not a valid identifier. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2819 en You cannot modify any reconciliation. ir.message,text 194 You cannot modify any reconciliation. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2916 en A unique identifier for the variant. product.product,code -1 help product f \N \N \N \N \N +2820 en The reconciliation "%(reconciliation)s" is delegated to the line "%(line)s".\nYou may need to cancel its move "%(move)s". ir.message,text 195 The reconciliation "%(reconciliation)s" is delegated to the line "%(line)s".\nYou may need to cancel its move "%(move)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2821 en The reconciliation "%(reconciliation)s" is linked to the write-off line "%(line)s".\nYou may need to cancel its move "%(move)s". ir.message,text 196 The reconciliation "%(reconciliation)s" is linked to the write-off line "%(line)s".\nYou may need to cancel its move "%(move)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2822 en You cannot reconcile non-valid line "%(line)s". ir.message,text 197 You cannot reconcile non-valid line "%(line)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2823 en You cannot reconcile line "%(line)s" with others because its account "%(account1)s" is different from "%(account2)s". ir.message,text 198 You cannot reconcile line "%(line)s" with others because its account "%(account1)s" is different from "%(account2)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2824 en To reconcile line "%(line)s", you must set its account "%(account)s" as reconcilable. ir.message,text 199 To reconcile line "%(line)s", you must set its account "%(account)s" as reconcilable. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2825 en You cannot reconcile line "%(line)s" with others because its party "%(party1)s" is different from "%(party2)s". ir.message,text 200 You cannot reconcile line "%(line)s" with others because its party "%(party1)s" is different from "%(party2)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2826 en To reconcile lines, they must have the same debit "%(debit)s" and credit "%(credit)s". ir.message,text 201 To reconcile lines, they must have the same debit "%(debit)s" and credit "%(credit)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2827 en To reconcile lines with "%(amount)s" write-off, you must select a write-off method. ir.message,text 202 To reconcile lines with "%(amount)s" write-off, you must select a write-off method. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2828 en To reconcile lines, you must define a currency exchange journal for "%(company)s". ir.message,text 203 To reconcile lines, you must define a currency exchange journal for "%(company)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2829 en To reconcile lines, you must define a currency exchange credit account for "%(company)s". ir.message,text 204 To reconcile lines, you must define a currency exchange credit account for "%(company)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2830 en To reconcile lines, you must define a currency exchange debit account for "%(company)s". ir.message,text 205 To reconcile lines, you must define a currency exchange debit account for "%(company)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2831 en You cannot set both debit and credit on the line. ir.message,text 206 You cannot set both debit and credit on the line. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2832 en You must set the sign for second currency to match the sign of debit - credit. ir.message,text 207 You must set the sign for second currency to match the sign of debit - credit. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2833 en You cannot add/modify/delete lines on closed journal-period "%(journal_period)s". ir.message,text 208 You cannot add/modify/delete lines on closed journal-period "%(journal_period)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2834 en You cannot modify line "%(line)s" from posted move "%(move)s". ir.message,text 209 You cannot modify line "%(line)s" from posted move "%(move)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2835 en You cannot modify reconciled line "%(line)s". ir.message,text 210 You cannot modify reconciled line "%(line)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2836 en To create a line on account "%(account)s", you must set a type or unclose it. ir.message,text 211 To create a line on account "%(account)s", you must set a type or unclose it. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2837 en You cannot reconcile already reconciled line "%(line)s". ir.message,text 212 You cannot reconcile already reconciled line "%(line)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2838 en To create a line on account "%(account)s", you must set a party on line "%(line)s". ir.message,text 213 To create a line on account "%(account)s", you must set a party on line "%(line)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2839 en To create a line on account "%(account)s", you must remove the party on line "%(line)s". ir.message,text 214 To create a line on account "%(account)s", you must remove the party on line "%(line)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2840 en Line "%(line)s" can not be grouped. ir.message,text 215 Line "%(line)s" can not be grouped. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2841 en You cannot group a single line. ir.message,text 216 You cannot group a single line. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2842 en You cannot group lines with different parties. ir.message,text 217 You cannot group lines with different parties. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2843 en You cannot group lines of different companies. ir.message,text 218 You cannot group lines of different companies. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2844 en You cannot group lines of different second currencies. ir.message,text 219 You cannot group lines of different second currencies. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2845 en You cannot group lines from more than 2 different accounts. ir.message,text 220 You cannot group lines from more than 2 different accounts. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2846 en You cannot reschedule lines with different origins. ir.message,text 221 You cannot reschedule lines with different origins. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2847 en You cannot reschedule lines with different currencies. ir.message,text 222 You cannot reschedule lines with different currencies. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2848 en You cannot reschedule lines with different accounts. ir.message,text 223 You cannot reschedule lines with different accounts. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2849 en You cannot reschedule lines with different parties. ir.message,text 224 You cannot reschedule lines with different parties. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2850 en To reschedule the lines you must change the terms to have a total amount of %(total_amount)s instead of %(amount)s. ir.message,text 225 To reschedule the lines you must change the terms to have a total amount of %(total_amount)s instead of %(amount)s. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2851 en You cannot delegate together lines of different companies. ir.message,text 226 You cannot delegate together lines of different companies. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2852 en You cannot delegate together lines with different origins. ir.message,text 227 You cannot delegate together lines with different origins. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2853 en The moves "%(moves)s" contain grouped lines, cancelling them will ungroup the lines. ir.message,text 228 The moves "%(moves)s" contain grouped lines, cancelling them will ungroup the lines. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2854 en You cannot change the currency of a company which is associated with account moves. ir.message,text 229 You cannot change the currency of a company which is associated with account moves. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2855 en To close period "%(period)s", you must balance the inactive account "%(account)s". ir.message,text 230 To close period "%(period)s", you must balance the inactive account "%(account)s". model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2856 en You cannot change the type of journal "%(journal)s" because it has posted moves. ir.message,text 231 You cannot change the type of journal "%(journal)s" because it has posted moves. model account f 2024-04-13 20:39:03.023425 0 \N \N \N +2857 en Product Price Decimal ir.configuration,product_price_decimal -1 field product f \N \N \N \N \N +2859 en Name product.uom.category,name -1 field product f \N \N \N \N \N +2860 en Units of Measure product.uom.category,uoms -1 field product f \N \N \N \N \N +2862 en Category product.uom,category -1 field product f \N \N \N \N \N +2863 en The category that contains the unit of measure.\nConversions between different units of measure can be done if they are in the same category. product.uom,category -1 help product f \N \N \N \N \N +2864 en Display Digits product.uom,digits -1 field product f \N \N \N \N \N +2865 en The number of digits to display after the decimal separator. product.uom,digits -1 help product f \N \N \N \N \N +2866 en Factor product.uom,factor -1 field product f \N \N \N \N \N +2867 en The coefficient for the formula:\ncoefficient (base unit) = 1 (this unit) product.uom,factor -1 help product f \N \N \N \N \N +2868 en Name product.uom,name -1 field product f \N \N \N \N \N +2869 en Rate product.uom,rate -1 field product f \N \N \N \N \N +2870 en The coefficient for the formula:\n1 (base unit) = coef (this unit) product.uom,rate -1 help product f \N \N \N \N \N +2871 en Rounding Precision product.uom,rounding -1 field product f \N \N \N \N \N +2872 en The accuracy to which values are rounded. product.uom,rounding -1 help product f \N \N \N \N \N +2873 en Symbol product.uom,symbol -1 field product f \N \N \N \N \N +2874 en The symbol that represents the unit of measure. product.uom,symbol -1 help product f \N \N \N \N \N +2876 en Children product.category,childs -1 field product f \N \N \N \N \N +2877 en Used to add structure below the category. product.category,childs -1 help product f \N \N \N \N \N +2878 en Name product.category,name -1 field product f \N \N \N \N \N +2879 en Parent product.category,parent -1 field product f \N \N \N \N \N +2880 en Used to add structure above the category. product.category,parent -1 help product f \N \N \N \N \N +2881 en Products product.category,templates -1 field product f \N \N \N \N \N +2883 en Categories product.template,categories -1 field product f \N \N \N \N \N +2884 en The categories that the product is in.\nUsed to group similar products together. product.template,categories -1 help product f \N \N \N \N \N +2885 en Categories product.template,categories_all -1 field product f \N \N \N \N \N +2886 en Code product.template,code -1 field product f \N \N \N \N \N +2887 en Code Readonly product.template,code_readonly -1 field product f \N \N \N \N \N +2888 en Consumable product.template,consumable -1 field product f \N \N \N \N \N +2889 en Check to allow stock moves to be assigned regardless of stock level. product.template,consumable -1 help product f \N \N \N \N \N +2890 en Cost Price product.template,cost_price -1 field product f \N \N \N \N \N +2891 en The amount it costs to purchase or make the product, or carry out the service. product.template,cost_price -1 help product f \N \N \N \N \N +2892 en Cost Price Method product.template,cost_price_method -1 field product f \N \N \N \N \N +2893 en The method used to calculate the cost price. product.template,cost_price_method -1 help product f \N \N \N \N \N +2894 en Fixed product.template,cost_price_method -1 selection product f \N \N \N \N \N +2895 en Average product.template,cost_price_method -1 selection product f \N \N \N \N \N +2896 en Cost Price Methods product.template,cost_price_methods -1 field product f \N \N \N \N \N +2897 en Default UoM product.template,default_uom -1 field product f \N \N \N \N \N +2898 en The standard Unit of Measure for the product.\nUsed internally when calculating the stock levels of goods and assets. product.template,default_uom -1 help product f \N \N \N \N \N +2899 en Default UoM Category product.template,default_uom_category -1 field product f \N \N \N \N \N +2900 en The category of the default Unit of Measure. product.template,default_uom_category -1 help product f \N \N \N \N \N +2901 en List Price product.template,list_price -1 field product f \N \N \N \N \N +2902 en The standard price the product is sold at. product.template,list_price -1 help product f \N \N \N \N \N +2903 en List Prices product.template,list_prices -1 field product f \N \N \N \N \N +2904 en Name product.template,name -1 field product f \N \N \N \N \N +2905 en Variants product.template,products -1 field product f \N \N \N \N \N +2906 en The different variants the product comes in. product.template,products -1 help product f \N \N \N \N \N +2907 en Type product.template,type -1 field product f \N \N \N \N \N +2908 en Goods product.template,type -1 selection product f \N \N \N \N \N +2909 en Assets product.template,type -1 selection product f \N \N \N \N \N +2910 en Service product.template,type -1 selection product f \N \N \N \N \N +2912 en Categories product.product,categories -1 field product f \N \N \N \N \N +2913 en The categories that the product is in.\nUsed to group similar products together. product.product,categories -1 help product f \N \N \N \N \N +2914 en Categories product.product,categories_all -1 field product f \N \N \N \N \N +2915 en Code product.product,code -1 field product f \N \N \N \N \N +2917 en Code Readonly product.product,code_readonly -1 field product f \N \N \N \N \N +2918 en Consumable product.product,consumable -1 field product f \N \N \N \N \N +2919 en Check to allow stock moves to be assigned regardless of stock level. product.product,consumable -1 help product f \N \N \N \N \N +2920 en Cost Price product.product,cost_price -1 field product f \N \N \N \N \N +2921 en The amount it costs to purchase or make the variant, or carry out the service. product.product,cost_price -1 help product f \N \N \N \N \N +2922 en Cost Price Method product.product,cost_price_method -1 field product f \N \N \N \N \N +2923 en The method used to calculate the cost price. product.product,cost_price_method -1 help product f \N \N \N \N \N +2924 en Fixed product.product,cost_price_method -1 selection product f \N \N \N \N \N +2925 en Average product.product,cost_price_method -1 selection product f \N \N \N \N \N +2926 en Cost Price Methods product.product,cost_price_methods -1 field product f \N \N \N \N \N +2927 en Cost Price product.product,cost_price_uom -1 field product f \N \N \N \N \N +2928 en Cost Prices product.product,cost_prices -1 field product f \N \N \N \N \N +2929 en Default UoM product.product,default_uom -1 field product f \N \N \N \N \N +2930 en The standard Unit of Measure for the product.\nUsed internally when calculating the stock levels of goods and assets. product.product,default_uom -1 help product f \N \N \N \N \N +2931 en Default UoM Category product.product,default_uom_category -1 field product f \N \N \N \N \N +2932 en The category of the default Unit of Measure. product.product,default_uom_category -1 help product f \N \N \N \N \N +2933 en Description product.product,description -1 field product f \N \N \N \N \N +2934 en Identifiers product.product,identifiers -1 field product f \N \N \N \N \N +2935 en Other identifiers associated with the variant. product.product,identifiers -1 help product f \N \N \N \N \N +2936 en List Price product.product,list_price -1 field product f \N \N \N \N \N +2937 en The standard price the product is sold at. product.product,list_price -1 help product f \N \N \N \N \N +2938 en List Price product.product,list_price_uom -1 field product f \N \N \N \N \N +2939 en List Prices product.product,list_prices -1 field product f \N \N \N \N \N +2940 en Name product.product,name -1 field product f \N \N \N \N \N +2941 en Prefix Code product.product,prefix_code -1 field product f \N \N \N \N \N +2942 en Suffix Code product.product,suffix_code -1 field product f \N \N \N \N \N +2943 en The unique identifier for the product (aka SKU). product.product,suffix_code -1 help product f \N \N \N \N \N +2944 en Product Template product.product,template -1 field product f \N \N \N \N \N +2945 en The product that defines the common properties inherited by the variant. product.product,template -1 help product f \N \N \N \N \N +2946 en Type product.product,type -1 field product f \N \N \N \N \N +2947 en Goods product.product,type -1 selection product f \N \N \N \N \N +2948 en Assets product.product,type -1 selection product f \N \N \N \N \N +2949 en Service product.product,type -1 selection product f \N \N \N \N \N +2951 en Code product.identifier,code -1 field product f \N \N \N \N \N +2952 en Product product.identifier,product -1 field product f \N \N \N \N \N +2953 en The product identified by the code. product.identifier,product -1 help product f \N \N \N \N \N +2954 en Type product.identifier,type -1 field product f \N \N \N \N \N +2955 en International Article Number product.identifier,type -1 selection product f \N \N \N \N \N +2956 en International Standard Audiovisual Number product.identifier,type -1 selection product f \N \N \N \N \N +2957 en International Standard Book Number product.identifier,type -1 selection product f \N \N \N \N \N +2958 en International Standard Identifier for Libraries product.identifier,type -1 selection product f \N \N \N \N \N +2959 en International Securities Identification Number product.identifier,type -1 selection product f \N \N \N \N \N +2960 en International Standard Music Number product.identifier,type -1 selection product f \N \N \N \N \N +2962 en Company product.list_price,company -1 field product f \N \N \N \N \N +2963 en List Price product.list_price,list_price -1 field product f \N \N \N \N \N +2964 en Template product.list_price,template -1 field product f \N \N \N \N \N +2966 en Company product.cost_price_method,company -1 field product f \N \N \N \N \N +2967 en Cost Price Method product.cost_price_method,cost_price_method -1 field product f \N \N \N \N \N +2968 en Template product.cost_price_method,template -1 field product f \N \N \N \N \N +2970 en Company product.cost_price,company -1 field product f \N \N \N \N \N +2971 en Cost Price product.cost_price,cost_price -1 field product f \N \N \N \N \N +2972 en Product product.cost_price,product -1 field product f \N \N \N \N \N +2974 en Category product.template-product.category,category -1 field product f \N \N \N \N \N +2975 en Template product.template-product.category,template -1 field product f \N \N \N \N \N +2977 en Category product.template-product.category.all,category -1 field product f \N \N \N \N \N +2978 en Template product.template-product.category.all,template -1 field product f \N \N \N \N \N +2980 en Default Cost Method product.configuration,default_cost_price_method -1 field product f \N \N \N \N \N +2981 en The default cost price method for new products. product.configuration,default_cost_price_method -1 help product f \N \N \N \N \N +2982 en Variant Sequence product.configuration,product_sequence -1 field product f \N \N \N \N \N +2983 en Used to generate the last part of the product code. product.configuration,product_sequence -1 help product f \N \N \N \N \N +2984 en Product Sequence product.configuration,template_sequence -1 field product f \N \N \N \N \N +2985 en Used to generate the first part of the product code. product.configuration,template_sequence -1 help product f \N \N \N \N \N +2987 en Default Cost Method product.configuration.default_cost_price_method,default_cost_price_method -1 field product f \N \N \N \N \N +2988 en The default cost price method for new products. product.configuration.default_cost_price_method,default_cost_price_method -1 help product f \N \N \N \N \N +2989 en Product Administration res.group,name 9 Product Administration model product f 2024-04-13 20:39:08.573524 0 \N \N \N +2990 en Products ir.ui.menu,name 125 Products model product f 2024-04-13 20:39:08.573524 0 \N \N \N +2991 en Configuration ir.ui.menu,name 126 Configuration model product f 2024-04-13 20:39:08.573524 0 \N \N \N +2992 en Reporting ir.ui.menu,name 127 Reporting model product f 2024-04-13 20:39:08.573524 0 \N \N \N +2993 en Products ir.action,name 156 Products model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +2994 en Products ir.ui.menu,name 128 Products model product f 2024-04-13 20:39:08.573524 0 \N \N \N +2995 en Product by Category ir.action,name 157 Product by Category model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +2996 en Variants ir.action,name 158 Variants model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +2997 en Variants ir.ui.menu,name 129 Variants model product f 2024-04-13 20:39:08.573524 0 \N \N \N +2998 en Variants ir.action,name 159 Variants model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +2999 en Variant ir.sequence.type,name 5 Variant model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3000 en Product ir.sequence.type,name 6 Product model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3001 en Categories ir.action,name 160 Categories model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +3002 en Categories ir.ui.menu,name 130 Categories model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3003 en Categories ir.action,name 161 Categories model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +3004 en Categories ir.ui.menu,name 131 Categories model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3005 en Add products ir.action,name 162 Add products model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +3006 en Add products ir.model.button,string 30 Add products model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3007 en Units of Measure ir.action,name 163 Units of Measure model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +3008 en Units of Measure ir.ui.menu,name 132 Units of Measure model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3009 en Categories ir.action,name 164 Categories model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +3010 en Categories ir.ui.menu,name 133 Categories model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3011 en Units product.uom.category,name 1 Units model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3012 en Unit product.uom,name 1 Unit model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3013 en u product.uom,symbol 1 u model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3014 en Weight product.uom.category,name 2 Weight model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3015 en Kilogram product.uom,name 2 Kilogram model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3016 en kg product.uom,symbol 2 kg model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3017 en Gram product.uom,name 3 Gram model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3018 en g product.uom,symbol 3 g model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3019 en Carat product.uom,name 4 Carat model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3020 en c product.uom,symbol 4 c model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3021 en Pound product.uom,name 5 Pound model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3022 en lb product.uom,symbol 5 lb model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3023 en Ounce product.uom,name 6 Ounce model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3024 en oz product.uom,symbol 6 oz model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3025 en Time product.uom.category,name 3 Time model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3026 en Second product.uom,name 7 Second model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3027 en s product.uom,symbol 7 s model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3028 en Minute product.uom,name 8 Minute model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3029 en min product.uom,symbol 8 min model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3030 en Hour product.uom,name 9 Hour model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3031 en h product.uom,symbol 9 h model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3032 en Day product.uom,name 10 Day model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3033 en d product.uom,symbol 10 d model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3034 en Length product.uom.category,name 4 Length model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3035 en Meter product.uom,name 11 Meter model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3036 en m product.uom,symbol 11 m model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3037 en Kilometer product.uom,name 12 Kilometer model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3038 en km product.uom,symbol 12 km model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3039 en Centimeter product.uom,name 13 Centimeter model product f 2024-04-13 20:39:08.573524 0 \N \N \N +2986 en Product Configuration Default Cost Price Method product.configuration.default_cost_price_method,name -1 model product f \N \N \N \N \N +3040 en cm product.uom,symbol 13 cm model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3041 en Millimeter product.uom,name 14 Millimeter model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3042 en mm product.uom,symbol 14 mm model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3043 en Foot product.uom,name 15 Foot model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3044 en ft product.uom,symbol 15 ft model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3045 en Yard product.uom,name 16 Yard model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3046 en yd product.uom,symbol 16 yd model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3047 en Inch product.uom,name 17 Inch model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3048 en in product.uom,symbol 17 in model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3049 en Mile product.uom,name 18 Mile model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3050 en mi product.uom,symbol 18 mi model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3051 en Volume product.uom.category,name 5 Volume model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3052 en Cubic meter product.uom,name 19 Cubic meter model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3053 en m³ product.uom,symbol 19 m³ model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3054 en Liter product.uom,name 20 Liter model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3055 en l product.uom,symbol 20 l model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3056 en Cubic centimeter product.uom,name 21 Cubic centimeter model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3057 en cm³ product.uom,symbol 21 cm³ model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3058 en Cubic inch product.uom,name 22 Cubic inch model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3059 en in³ product.uom,symbol 22 in³ model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3060 en Cubic foot product.uom,name 23 Cubic foot model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3061 en ft³ product.uom,symbol 23 ft³ model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3062 en Gallon product.uom,name 24 Gallon model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3063 en gal product.uom,symbol 24 gal model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3064 en Surface product.uom.category,name 6 Surface model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3065 en Square meter product.uom,name 25 Square meter model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3066 en m² product.uom,symbol 25 m² model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3067 en Square centimeter product.uom,name 26 Square centimeter model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3068 en cm² product.uom,symbol 26 cm² model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3069 en Are product.uom,name 27 Are model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3070 en a product.uom,symbol 27 a model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3071 en Hectare product.uom,name 28 Hectare model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3072 en ha product.uom,symbol 28 ha model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3073 en Square inch product.uom,name 29 Square inch model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3074 en in² product.uom,symbol 29 in² model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3075 en Square foot product.uom,name 30 Square foot model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3076 en ft² product.uom,symbol 30 ft² model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3077 en Square yard product.uom,name 31 Square yard model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3078 en yd² product.uom,symbol 31 yd² model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3079 en Energy product.uom.category,name 7 Energy model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3080 en Joule product.uom,name 32 Joule model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3081 en J product.uom,symbol 32 J model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3082 en Megajoule product.uom,name 33 Megajoule model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3083 en MJ product.uom,symbol 33 MJ model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3084 en Kilowatt-hour product.uom,name 34 Kilowatt-hour model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3085 en kW⋅h product.uom,symbol 34 kW⋅h model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3086 en Megawatt-hour product.uom,name 35 Megawatt-hour model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3087 en MW⋅h product.uom,symbol 35 MW⋅h model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3088 en Configuration ir.action,name 165 Configuration model product f 2024-04-13 20:39:08.573524 0 \N 2024-04-13 20:39:08.573524 0 +3089 en Configuration ir.ui.menu,name 134 Configuration model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3090 en You cannot modify the factor of the unit of measure "%(uom)s". ir.message,text 232 You cannot modify the factor of the unit of measure "%(uom)s". model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3091 en You cannot modify the rate of the unit of measure"%(uom)s". ir.message,text 233 You cannot modify the rate of the unit of measure"%(uom)s". model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3092 en You cannot modify the category of the unit of measure "%(uom)s". ir.message,text 234 You cannot modify the category of the unit of measure "%(uom)s". model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3093 en You cannot decrease the digits of the unit of measure "%(uom)s". ir.message,text 235 You cannot decrease the digits of the unit of measure "%(uom)s". model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3094 en If the unit of measure is still not used, you can delete it otherwise you can deactivate it and create a new one. ir.message,text 236 If the unit of measure is still not used, you can delete it otherwise you can deactivate it and create a new one. model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3095 en Incompatible factor and rate values on unit of measure"%(uom)s". ir.message,text 237 Incompatible factor and rate values on unit of measure"%(uom)s". model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3096 en Rate and factor can not be both equal to zero. ir.message,text 238 Rate and factor can not be both equal to zero. model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3097 en The %(type)s "%(code)s" for product "%(product)s" is not valid. ir.message,text 239 The %(type)s "%(code)s" for product "%(product)s" is not valid. model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3098 en Code of active product must be unique. ir.message,text 240 Code of active product must be unique. model product f 2024-04-13 20:39:08.573524 0 \N \N \N +3099 en Account Expense product.category,account_expense -1 field account_product f \N \N \N \N \N +3100 en Use Parent's accounts product.category,account_parent -1 field account_product f \N \N \N \N \N +3101 en Use the accounts defined on the parent category. product.category,account_parent -1 help account_product f \N \N \N \N \N +3102 en Account Revenue product.category,account_revenue -1 field account_product f \N \N \N \N \N +3103 en Accounting product.category,accounting -1 field account_product f \N \N \N \N \N +3104 en Check to indicate the category is used for accounting. product.category,accounting -1 help account_product f \N \N \N \N \N +3105 en Accounts product.category,accounts -1 field account_product f \N \N \N \N \N +3106 en Customer Taxes product.category,customer_taxes -1 field account_product f \N \N \N \N \N +3107 en The taxes to apply when selling products of this category. product.category,customer_taxes -1 help account_product f \N \N \N \N \N +3108 en Customer Taxes Used product.category,customer_taxes_used -1 field account_product f \N \N \N \N \N +3109 en Supplier Taxes product.category,supplier_taxes -1 field account_product f \N \N \N \N \N +3110 en The taxes to apply when purchasing products of this category. product.category,supplier_taxes -1 help account_product f \N \N \N \N \N +3111 en Supplier Taxes Deductible Rate product.category,supplier_taxes_deductible_rate -1 field account_product f \N \N \N \N \N +3112 en Supplier Taxes Used product.category,supplier_taxes_used -1 field account_product f \N \N \N \N \N +3113 en Use the Parent's Taxes product.category,taxes_parent -1 field account_product f \N \N \N \N \N +3114 en Use the taxes defined on the parent category. product.category,taxes_parent -1 help account_product f \N \N \N \N \N +3116 en Account Expense product.category.account,account_expense -1 field account_product f \N \N \N \N \N +3117 en Account Revenue product.category.account,account_revenue -1 field account_product f \N \N \N \N \N +3118 en Category product.category.account,category -1 field account_product f \N \N \N \N \N +3119 en Company product.category.account,company -1 field account_product f \N \N \N \N \N +3121 en Category product.category-customer-account.tax,category -1 field account_product f \N \N \N \N \N +3122 en Tax product.category-customer-account.tax,tax -1 field account_product f \N \N \N \N \N +3124 en Category product.category-supplier-account.tax,category -1 field account_product f \N \N \N \N \N +3125 en Tax product.category-supplier-account.tax,tax -1 field account_product f \N \N \N \N \N +3126 en Default Expense Account account.create_chart.properties,category_account_expense -1 field account_product f \N \N \N \N \N +3127 en Default Revenue Account account.create_chart.properties,category_account_revenue -1 field account_product f \N \N \N \N \N +3128 en Account Category product.template,account_category -1 field account_product f \N \N \N \N \N +3129 en Account Category product.product,account_category -1 field account_product f \N \N \N \N \N +3131 en Category product.template-product.category.account,category -1 field account_product f \N \N \N \N \N +3132 en Template product.template-product.category.account,template -1 field account_product f \N \N \N \N \N +3133 en Default Account Expense account.configuration,default_category_account_expense -1 field account_product f \N \N \N \N \N +3134 en Default Account Revenue account.configuration,default_category_account_revenue -1 field account_product f \N \N \N \N \N +3135 en Default Account Expense account.configuration.default_account,default_category_account_expense -1 field account_product f \N \N \N \N \N +3136 en Default Account Revenue account.configuration.default_account,default_category_account_revenue -1 field account_product f \N \N \N \N \N +3115 en Category Account product.category.account,name -1 model account_product f \N \N \N \N \N +3120 en Category - Customer Tax product.category-customer-account.tax,name -1 model account_product f \N \N \N \N \N +3123 en Category - Supplier Tax product.category-supplier-account.tax,name -1 model account_product f \N \N \N \N \N +3137 en Account Product Administration res.group,name 10 Account Product Administration model account_product f 2024-04-13 20:39:09.955992 0 \N \N \N +3138 en Not accounting category ir.rule.group,name 25 Not accounting category model account_product f 2024-04-13 20:39:09.955992 0 \N \N \N +3139 en Any category ir.rule.group,name 26 Any category model account_product f 2024-04-13 20:39:09.955992 0 \N \N \N +3140 en There is no "%(field)s" defined for "%(name)s". ir.message,text 241 There is no "%(field)s" defined for "%(name)s". model account_product f 2024-04-13 20:39:09.955992 0 \N \N \N +3141 en There is no account category defined on product "%(name)s". ir.message,text 242 There is no account category defined on product "%(name)s". model account_product f 2024-04-13 20:39:09.955992 0 \N \N \N +3143 en Attributes product.attribute.set,attributes -1 field product_attribute f \N \N \N \N \N +3144 en Add attributes to the set. product.attribute.set,attributes -1 help product_attribute f \N \N \N \N \N +3145 en Name product.attribute.set,name -1 field product_attribute f \N \N \N \N \N +3146 en The main identifier of product attribute set. product.attribute.set,name -1 help product_attribute f \N \N \N \N \N +3148 en Sets product.attribute,sets -1 field product_attribute f \N \N \N \N \N +3149 en Add sets to the attribute. product.attribute,sets -1 help product_attribute f \N \N \N \N \N +3151 en Attribute product.attribute-product.attribute-set,attribute -1 field product_attribute f \N \N \N \N \N +3152 en Set product.attribute-product.attribute-set,attribute_set -1 field product_attribute f \N \N \N \N \N +3130 en Template - Account Category product.template-product.category.account,name -1 model account_product f \N \N \N \N \N +3142 en Product Attribute Set product.attribute.set,name -1 model product_attribute f \N \N \N \N \N +3147 en Product Attribute product.attribute,name -1 model product_attribute f \N \N \N \N \N +3150 en Product Attribute - Set product.attribute-product.attribute-set,name -1 model product_attribute f \N \N \N \N \N +3153 en Attribute Set product.template,attribute_set -1 field product_attribute f \N \N \N \N \N +3154 en Select a set of attributes to apply on the variants. product.template,attribute_set -1 help product_attribute f \N \N \N \N \N +3155 en Attribute Set product.product,attribute_set -1 field product_attribute f \N \N \N \N \N +3156 en Select a set of attributes to apply on the variants. product.product,attribute_set -1 help product_attribute f \N \N \N \N \N +3157 en Attributes product.product,attributes -1 field product_attribute f \N \N \N \N \N +3158 en Add attributes to the variant. product.product,attributes -1 help product_attribute f \N \N \N \N \N +3159 en Attributes Name product.product,attributes_name -1 field product_attribute f \N \N \N \N \N +3160 en Attribute Sets ir.action,name 166 Attribute Sets model product_attribute f 2024-04-13 20:39:10.340704 0 \N 2024-04-13 20:39:10.340704 0 +3161 en Attribute Sets ir.ui.menu,name 135 Attribute Sets model product_attribute f 2024-04-13 20:39:10.340704 0 \N \N \N +3162 en Attributes ir.action,name 167 Attributes model product_attribute f 2024-04-13 20:39:10.340704 0 \N 2024-04-13 20:39:10.340704 0 +3163 en Attributes ir.ui.menu,name 136 Attributes model product_attribute f 2024-04-13 20:39:10.340704 0 \N \N \N +3164 en %(label)s: %(value)s ir.message,text 243 %(label)s: %(value)s model product_attribute f 2024-04-13 20:39:10.340704 0 \N \N \N +3165 en Image URL product.template,image_url -1 field product_image f \N \N \N \N \N +3166 en Images product.template,images -1 field product_image f \N \N \N \N \N +3167 en Image URL product.product,image_url -1 field product_image f \N \N \N \N \N +3168 en Images product.product,images -1 field product_image f \N \N \N \N \N +3170 en Cache product.image,cache -1 field product_image f \N \N \N \N \N +3171 en Image product.image,image -1 field product_image f \N \N \N \N \N +3172 en Image ID product.image,image_id -1 field product_image f \N \N \N \N \N +3173 en Variant product.image,product -1 field product_image f \N \N \N \N \N +3174 en Product product.image,template -1 field product_image f \N \N \N \N \N +3176 en Image product.image.cache,image -1 field product_image f \N \N \N \N \N +3177 en Image ID product.image.cache,image_id -1 field product_image f \N \N \N \N \N +3178 en Product Image product.image.cache,product_image -1 field product_image f \N \N \N \N \N +3179 en Size product.image.cache,size -1 field product_image f \N \N \N \N \N +3180 en The size of a product image must be unique. ir.message,text 244 The size of a product image must be unique. model product_image f 2024-04-13 20:39:10.672188 0 \N \N \N +3181 en Height product.template,height -1 field product_measurements f \N \N \N \N \N +3182 en Height for 1 default unit of measure. product.template,height -1 help product_measurements f \N \N \N \N \N +3183 en Height UoM product.template,height_uom -1 field product_measurements f \N \N \N \N \N +3184 en The Unit of Measure for the height. product.template,height_uom -1 help product_measurements f \N \N \N \N \N +3185 en Length product.template,length -1 field product_measurements f \N \N \N \N \N +3186 en Length for 1 default unit of measure. product.template,length -1 help product_measurements f \N \N \N \N \N +3187 en Length UoM product.template,length_uom -1 field product_measurements f \N \N \N \N \N +3188 en The Unit of Measure for the length. product.template,length_uom -1 help product_measurements f \N \N \N \N \N +3189 en Volume product.template,volume -1 field product_measurements f \N \N \N \N \N +3190 en Volume for 1 default unit of measure. product.template,volume -1 help product_measurements f \N \N \N \N \N +3191 en Volume UoM product.template,volume_uom -1 field product_measurements f \N \N \N \N \N +3192 en The Unit of Measure for the volume. product.template,volume_uom -1 help product_measurements f \N \N \N \N \N +3193 en Weight product.template,weight -1 field product_measurements f \N \N \N \N \N +3194 en Weight for 1 default unit of measure. product.template,weight -1 help product_measurements f \N \N \N \N \N +3195 en Weight UoM product.template,weight_uom -1 field product_measurements f \N \N \N \N \N +3196 en The Unit of Measure for the weight. product.template,weight_uom -1 help product_measurements f \N \N \N \N \N +3197 en Width product.template,width -1 field product_measurements f \N \N \N \N \N +3198 en Width for 1 default unit of measure. product.template,width -1 help product_measurements f \N \N \N \N \N +3199 en Width UoM product.template,width_uom -1 field product_measurements f \N \N \N \N \N +3200 en The Unit of Measure for the width. product.template,width_uom -1 help product_measurements f \N \N \N \N \N +3201 en Height product.product,height -1 field product_measurements f \N \N \N \N \N +3202 en Height for 1 default unit of measure. product.product,height -1 help product_measurements f \N \N \N \N \N +3203 en Height UoM product.product,height_uom -1 field product_measurements f \N \N \N \N \N +3204 en The Unit of Measure for the height. product.product,height_uom -1 help product_measurements f \N \N \N \N \N +3205 en Length product.product,length -1 field product_measurements f \N \N \N \N \N +3206 en Length for 1 default unit of measure. product.product,length -1 help product_measurements f \N \N \N \N \N +3207 en Length UoM product.product,length_uom -1 field product_measurements f \N \N \N \N \N +3208 en The Unit of Measure for the length. product.product,length_uom -1 help product_measurements f \N \N \N \N \N +3209 en Volume product.product,volume -1 field product_measurements f \N \N \N \N \N +3210 en Volume for 1 default unit of measure. product.product,volume -1 help product_measurements f \N \N \N \N \N +3211 en Volume UoM product.product,volume_uom -1 field product_measurements f \N \N \N \N \N +3212 en The Unit of Measure for the volume. product.product,volume_uom -1 help product_measurements f \N \N \N \N \N +3213 en Weight product.product,weight -1 field product_measurements f \N \N \N \N \N +3421 en Packed stock.shipment.out,state -1 selection stock f \N \N \N \N \N +3169 en Product Image product.image,name -1 model product_image f \N \N \N \N \N +3175 en Product Image Cache product.image.cache,name -1 model product_image f \N \N \N \N \N +3214 en Weight for 1 default unit of measure. product.product,weight -1 help product_measurements f \N \N \N \N \N +3215 en Weight UoM product.product,weight_uom -1 field product_measurements f \N \N \N \N \N +3216 en The Unit of Measure for the weight. product.product,weight_uom -1 help product_measurements f \N \N \N \N \N +3217 en Width product.product,width -1 field product_measurements f \N \N \N \N \N +3218 en Width for 1 default unit of measure. product.product,width -1 help product_measurements f \N \N \N \N \N +3219 en Width UoM product.product,width_uom -1 field product_measurements f \N \N \N \N \N +3220 en The Unit of Measure for the width. product.product,width_uom -1 help product_measurements f \N \N \N \N \N +3222 en Address stock.location,address -1 field stock f \N \N \N \N \N +3223 en Allow Pickup stock.location,allow_pickup -1 field stock f \N \N \N \N \N +3224 en Children stock.location,childs -1 field stock f \N \N \N \N \N +3225 en Used to add structure below the location. stock.location,childs -1 help stock f \N \N \N \N \N +3226 en Code stock.location,code -1 field stock f \N \N \N \N \N +3227 en The internal identifier used for the location. stock.location,code -1 help stock f \N \N \N \N \N +3228 en Cost Value stock.location,cost_value -1 field stock f \N \N \N \N \N +3229 en The value of the stock in the location. stock.location,cost_value -1 help stock f \N \N \N \N \N +3230 en Flat Children stock.location,flat_childs -1 field stock f \N \N \N \N \N +3231 en Check to enforce a single level of children with no grandchildren. stock.location,flat_childs -1 help stock f \N \N \N \N \N +3232 en Forecast Quantity stock.location,forecast_quantity -1 field stock f \N \N \N \N \N +3233 en The amount of stock expected to be in the location. stock.location,forecast_quantity -1 help stock f \N \N \N \N \N +3234 en Input stock.location,input_location -1 field stock f \N \N \N \N \N +3235 en Where incoming stock is received. stock.location,input_location -1 help stock f \N \N \N \N \N +3236 en Left stock.location,left -1 field stock f \N \N \N \N \N +3237 en Lost and Found stock.location,lost_found_location -1 field stock f \N \N \N \N \N +3238 en Used, by inventories, when correcting stock levels in the warehouse. stock.location,lost_found_location -1 help stock f \N \N \N \N \N +3239 en Name stock.location,name -1 field stock f \N \N \N \N \N +3240 en Output stock.location,output_location -1 field stock f \N \N \N \N \N +3241 en Where outgoing stock is sent from. stock.location,output_location -1 help stock f \N \N \N \N \N +3242 en Parent stock.location,parent -1 field stock f \N \N \N \N \N +3243 en Used to add structure above the location. stock.location,parent -1 help stock f \N \N \N \N \N +3244 en Picking stock.location,picking_location -1 field stock f \N \N \N \N \N +3245 en Where stock is picked from.\nLeave empty to use the storage location. stock.location,picking_location -1 help stock f \N \N \N \N \N +3246 en Quantity stock.location,quantity -1 field stock f \N \N \N \N \N +3247 en The amount of stock in the location. stock.location,quantity -1 help stock f \N \N \N \N \N +3248 en Quantity UoM stock.location,quantity_uom -1 field stock f \N \N \N \N \N +3249 en The Unit of Measure for the quantities. stock.location,quantity_uom -1 help stock f \N \N \N \N \N +3250 en Right stock.location,right -1 field stock f \N \N \N \N \N +3251 en Storage stock.location,storage_location -1 field stock f \N \N \N \N \N +3252 en The top level location where stock is stored. stock.location,storage_location -1 help stock f \N \N \N \N \N +3253 en Type stock.location,type -1 field stock f \N \N \N \N \N +3254 en Supplier stock.location,type -1 selection stock f \N \N \N \N \N +3255 en Customer stock.location,type -1 selection stock f \N \N \N \N \N +3256 en Lost and Found stock.location,type -1 selection stock f \N \N \N \N \N +3257 en Warehouse stock.location,type -1 selection stock f \N \N \N \N \N +3258 en Storage stock.location,type -1 selection stock f \N \N \N \N \N +3259 en Production stock.location,type -1 selection stock f \N \N \N \N \N +3260 en Drop stock.location,type -1 selection stock f \N \N \N \N \N +3261 en View stock.location,type -1 selection stock f \N \N \N \N \N +3262 en Warehouse stock.location,warehouse -1 field stock f \N \N \N \N \N +3263 en Waste Locations stock.location,waste_locations -1 field stock f \N \N \N \N \N +3264 en The locations used for waste products from the warehouse. stock.location,waste_locations -1 help stock f \N \N \N \N \N +3265 en Waste Warehouses stock.location,waste_warehouses -1 field stock f \N \N \N \N \N +3266 en The warehouses that use the location for waste products. stock.location,waste_warehouses -1 help stock f \N \N \N \N \N +3268 en Waste Location stock.location.waste,location -1 field stock f \N \N \N \N \N +3269 en Warehouse stock.location.waste,warehouse -1 field stock f \N \N \N \N \N +3271 en Company stock.products_by_locations.context,company -1 field stock f \N \N \N \N \N +3272 en At Date stock.products_by_locations.context,forecast_date -1 field stock f \N \N \N \N \N +3273 en The date for which the stock quantity is calculated.\n* An empty value calculates as far ahead as possible.\n* A date in the past will provide historical values. stock.products_by_locations.context,forecast_date -1 help stock f \N \N \N \N \N +3274 en At Date stock.products_by_locations.context,stock_date_end -1 field stock f \N \N \N \N \N +3276 en Consumable stock.products_by_locations,consumable -1 field stock f \N \N \N \N \N +3277 en Cost Value stock.products_by_locations,cost_value -1 field stock f \N \N \N \N \N +3278 en Default UoM stock.products_by_locations,default_uom -1 field stock f \N \N \N \N \N +3279 en The default Unit of Measure. stock.products_by_locations,default_uom -1 help stock f \N \N \N \N \N +3280 en Forecast Quantity stock.products_by_locations,forecast_quantity -1 field stock f \N \N \N \N \N +3422 en Done stock.shipment.out,state -1 selection stock f \N \N \N \N \N +3281 en Product stock.products_by_locations,product -1 field stock f \N \N \N \N \N +3282 en Quantity stock.products_by_locations,quantity -1 field stock f \N \N \N \N \N +3284 en Lead Time stock.location.lead_time,lead_time -1 field stock f \N \N \N \N \N +3285 en The time it takes to move stock between the warehouses. stock.location.lead_time,lead_time -1 help stock f \N \N \N \N \N +3286 en Warehouse From stock.location.lead_time,warehouse_from -1 field stock f \N \N \N \N \N +3287 en Warehouse To stock.location.lead_time,warehouse_to -1 field stock f \N \N \N \N \N +3289 en Assignation Required stock.move,assignation_required -1 field stock f \N \N \N \N \N +3290 en Company stock.move,company -1 field stock f \N \N \N \N \N +3291 en The company the stock move is associated with. stock.move,company -1 help stock f \N \N \N \N \N +3292 en Cost Price stock.move,cost_price -1 field stock f \N \N \N \N \N +3293 en Cost Price Required stock.move,cost_price_required -1 field stock f \N \N \N \N \N +3294 en Currency stock.move,currency -1 field stock f \N \N \N \N \N +3295 en The currency in which the unit price is specified. stock.move,currency -1 help stock f \N \N \N \N \N +3296 en Delay stock.move,delay -1 field stock f \N \N \N \N \N +3297 en Effective Date stock.move,effective_date -1 field stock f \N \N \N \N \N +3298 en When the stock was actually moved. stock.move,effective_date -1 help stock f \N \N \N \N \N +3299 en From Location stock.move,from_location -1 field stock f \N \N \N \N \N +3300 en Where the stock is moved from. stock.move,from_location -1 help stock f \N \N \N \N \N +3301 en Internal Quantity stock.move,internal_quantity -1 field stock f \N \N \N \N \N +3302 en Origin stock.move,origin -1 field stock f \N \N \N \N \N +3303 en The source of the stock move. stock.move,origin -1 help stock f \N \N \N \N \N +3304 en Origin Planned Date stock.move,origin_planned_date -1 field stock f \N \N \N \N \N +3305 en When the stock was expected to be moved originally. stock.move,origin_planned_date -1 help stock f \N \N \N \N \N +3306 en Planned Date stock.move,planned_date -1 field stock f \N \N \N \N \N +3307 en When the stock is expected to be moved. stock.move,planned_date -1 help stock f \N \N \N \N \N +3308 en Product stock.move,product -1 field stock f \N \N \N \N \N +3309 en The product that the move is associated with. stock.move,product -1 help stock f \N \N \N \N \N +3310 en Product Cost Price stock.move,product_cost_price -1 field stock f \N \N \N \N \N +3311 en The cost price of the product when different from the cost price of the move. stock.move,product_cost_price -1 help stock f \N \N \N \N \N +3312 en Product UoM Category stock.move,product_uom_category -1 field stock f \N \N \N \N \N +3313 en The category of Unit of Measure for the product. stock.move,product_uom_category -1 help stock f \N \N \N \N \N +3314 en Quantity stock.move,quantity -1 field stock f \N \N \N \N \N +3315 en The amount of stock moved. stock.move,quantity -1 help stock f \N \N \N \N \N +3316 en Shipment stock.move,shipment -1 field stock f \N \N \N \N \N +3317 en Used to group several stock moves together. stock.move,shipment -1 help stock f \N \N \N \N \N +3318 en State stock.move,state -1 field stock f \N \N \N \N \N +3319 en The current state of the stock move. stock.move,state -1 help stock f \N \N \N \N \N +3320 en Staging stock.move,state -1 selection stock f \N \N \N \N \N +3321 en Draft stock.move,state -1 selection stock f \N \N \N \N \N +3322 en Assigned stock.move,state -1 selection stock f \N \N \N \N \N +3323 en Done stock.move,state -1 selection stock f \N \N \N \N \N +3324 en Cancelled stock.move,state -1 selection stock f \N \N \N \N \N +3325 en To Location stock.move,to_location -1 field stock f \N \N \N \N \N +3326 en Where the stock is moved to. stock.move,to_location -1 help stock f \N \N \N \N \N +3327 en Unit stock.move,unit -1 field stock f \N \N \N \N \N +3328 en The unit in which the quantity is specified. stock.move,unit -1 help stock f \N \N \N \N \N +3329 en Unit Price stock.move,unit_price -1 field stock f \N \N \N \N \N +3330 en Unit Price stock.move,unit_price_company -1 field stock f \N \N \N \N \N +3331 en Unit price in company currency. stock.move,unit_price_company -1 help stock f \N \N \N \N \N +3332 en Unit Price Required stock.move,unit_price_required -1 field stock f \N \N \N \N \N +3333 en Unit Price Updated stock.move,unit_price_updated -1 field stock f \N \N \N \N \N +3335 en Company stock.shipment.in,company -1 field stock f \N \N \N \N \N +3336 en The company the shipment is associated with. stock.shipment.in,company -1 help stock f \N \N \N \N \N +3337 en Contact Address stock.shipment.in,contact_address -1 field stock f \N \N \N \N \N +3338 en The address at which the supplier can be contacted. stock.shipment.in,contact_address -1 help stock f \N \N \N \N \N +3339 en Done By stock.shipment.in,done_by -1 field stock f \N \N \N \N \N +3340 en Incoming Moves stock.shipment.in,incoming_moves -1 field stock f \N \N \N \N \N +3341 en The moves that bring the stock into the warehouse. stock.shipment.in,incoming_moves -1 help stock f \N \N \N \N \N +3342 en Inventory Moves stock.shipment.in,inventory_moves -1 field stock f \N \N \N \N \N +3343 en The moves that put the stock away into the storage area. stock.shipment.in,inventory_moves -1 help stock f \N \N \N \N \N +3344 en Moves stock.shipment.in,moves -1 field stock f \N \N \N \N \N +3345 en Number stock.shipment.in,number -1 field stock f \N \N \N \N \N +3346 en The main identifier for the shipment. stock.shipment.in,number -1 help stock f \N \N \N \N \N +3347 en Origins stock.shipment.in,origins -1 field stock f \N \N \N \N \N +3348 en Received By stock.shipment.in,received_by -1 field stock f \N \N \N \N \N +3349 en Reference stock.shipment.in,reference -1 field stock f \N \N \N \N \N +3350 en The external identifier for the shipment. stock.shipment.in,reference -1 help stock f \N \N \N \N \N +3351 en State stock.shipment.in,state -1 field stock f \N \N \N \N \N +3352 en The current state of the shipment. stock.shipment.in,state -1 help stock f \N \N \N \N \N +3353 en Draft stock.shipment.in,state -1 selection stock f \N \N \N \N \N +3354 en Received stock.shipment.in,state -1 selection stock f \N \N \N \N \N +3355 en Done stock.shipment.in,state -1 selection stock f \N \N \N \N \N +3356 en Cancelled stock.shipment.in,state -1 selection stock f \N \N \N \N \N +3357 en Supplier stock.shipment.in,supplier -1 field stock f \N \N \N \N \N +3358 en The party that supplied the stock. stock.shipment.in,supplier -1 help stock f \N \N \N \N \N +3359 en Supplier Location stock.shipment.in,supplier_location -1 field stock f \N \N \N \N \N +3360 en Warehouse stock.shipment.in,warehouse -1 field stock f \N \N \N \N \N +3361 en Where the stock is received. stock.shipment.in,warehouse -1 help stock f \N \N \N \N \N +3362 en Warehouse Input stock.shipment.in,warehouse_input -1 field stock f \N \N \N \N \N +3363 en Warehouse Storage stock.shipment.in,warehouse_storage -1 field stock f \N \N \N \N \N +3365 en Assigned By stock.shipment.in.return,assigned_by -1 field stock f \N \N \N \N \N +3366 en Company stock.shipment.in.return,company -1 field stock f \N \N \N \N \N +3367 en The company the shipment is associated with. stock.shipment.in.return,company -1 help stock f \N \N \N \N \N +3368 en Delivery Address stock.shipment.in.return,delivery_address -1 field stock f \N \N \N \N \N +3369 en Where the stock is sent to. stock.shipment.in.return,delivery_address -1 help stock f \N \N \N \N \N +3370 en Done By stock.shipment.in.return,done_by -1 field stock f \N \N \N \N \N +3371 en From Location stock.shipment.in.return,from_location -1 field stock f \N \N \N \N \N +3372 en Where the stock is moved from. stock.shipment.in.return,from_location -1 help stock f \N \N \N \N \N +3373 en Moves stock.shipment.in.return,moves -1 field stock f \N \N \N \N \N +3374 en The moves that return the stock to the supplier. stock.shipment.in.return,moves -1 help stock f \N \N \N \N \N +3375 en Number stock.shipment.in.return,number -1 field stock f \N \N \N \N \N +3376 en The main identifier for the shipment. stock.shipment.in.return,number -1 help stock f \N \N \N \N \N +3377 en Origins stock.shipment.in.return,origins -1 field stock f \N \N \N \N \N +3378 en Partially Assigned stock.shipment.in.return,partially_assigned -1 field stock f \N \N \N \N \N +3379 en Reference stock.shipment.in.return,reference -1 field stock f \N \N \N \N \N +3380 en The external identifier for the shipment. stock.shipment.in.return,reference -1 help stock f \N \N \N \N \N +3381 en State stock.shipment.in.return,state -1 field stock f \N \N \N \N \N +3382 en The current state of the shipment. stock.shipment.in.return,state -1 help stock f \N \N \N \N \N +3383 en Draft stock.shipment.in.return,state -1 selection stock f \N \N \N \N \N +3384 en Waiting stock.shipment.in.return,state -1 selection stock f \N \N \N \N \N +3385 en Assigned stock.shipment.in.return,state -1 selection stock f \N \N \N \N \N +3386 en Done stock.shipment.in.return,state -1 selection stock f \N \N \N \N \N +3387 en Cancelled stock.shipment.in.return,state -1 selection stock f \N \N \N \N \N +3388 en Supplier stock.shipment.in.return,supplier -1 field stock f \N \N \N \N \N +3389 en The party that supplied the stock. stock.shipment.in.return,supplier -1 help stock f \N \N \N \N \N +3390 en To Location stock.shipment.in.return,to_location -1 field stock f \N \N \N \N \N +3391 en Where the stock is moved to. stock.shipment.in.return,to_location -1 help stock f \N \N \N \N \N +3392 en Warehouse stock.shipment.in.return,warehouse -1 field stock f \N \N \N \N \N +3394 en Company stock.shipment.out,company -1 field stock f \N \N \N \N \N +3395 en The company the shipment is associated with. stock.shipment.out,company -1 help stock f \N \N \N \N \N +3396 en Customer stock.shipment.out,customer -1 field stock f \N \N \N \N \N +3397 en The party that purchased the stock. stock.shipment.out,customer -1 help stock f \N \N \N \N \N +3398 en Customer Location stock.shipment.out,customer_location -1 field stock f \N \N \N \N \N +3399 en Delivery Address stock.shipment.out,delivery_address -1 field stock f \N \N \N \N \N +3400 en Where the stock is sent to. stock.shipment.out,delivery_address -1 help stock f \N \N \N \N \N +3401 en Done By stock.shipment.out,done_by -1 field stock f \N \N \N \N \N +3402 en Inventory Moves stock.shipment.out,inventory_moves -1 field stock f \N \N \N \N \N +3403 en The moves that pick the stock from the storage area. stock.shipment.out,inventory_moves -1 help stock f \N \N \N \N \N +3404 en Moves stock.shipment.out,moves -1 field stock f \N \N \N \N \N +3405 en Number stock.shipment.out,number -1 field stock f \N \N \N \N \N +3406 en The main identifier for the shipment. stock.shipment.out,number -1 help stock f \N \N \N \N \N +3407 en Origins stock.shipment.out,origins -1 field stock f \N \N \N \N \N +3408 en Outgoing Moves stock.shipment.out,outgoing_moves -1 field stock f \N \N \N \N \N +3409 en The moves that send the stock to the customer. stock.shipment.out,outgoing_moves -1 help stock f \N \N \N \N \N +3410 en Packed By stock.shipment.out,packed_by -1 field stock f \N \N \N \N \N +3411 en Partially Assigned stock.shipment.out,partially_assigned -1 field stock f \N \N \N \N \N +3412 en Picked By stock.shipment.out,picked_by -1 field stock f \N \N \N \N \N +3413 en Reference stock.shipment.out,reference -1 field stock f \N \N \N \N \N +3414 en The external identifier for the shipment. stock.shipment.out,reference -1 help stock f \N \N \N \N \N +3415 en State stock.shipment.out,state -1 field stock f \N \N \N \N \N +3416 en The current state of the shipment. stock.shipment.out,state -1 help stock f \N \N \N \N \N +3417 en Draft stock.shipment.out,state -1 selection stock f \N \N \N \N \N +3418 en Waiting stock.shipment.out,state -1 selection stock f \N \N \N \N \N +3419 en Assigned stock.shipment.out,state -1 selection stock f \N \N \N \N \N +3420 en Picked stock.shipment.out,state -1 selection stock f \N \N \N \N \N +3423 en Cancelled stock.shipment.out,state -1 selection stock f \N \N \N \N \N +3424 en Warehouse stock.shipment.out,warehouse -1 field stock f \N \N \N \N \N +3425 en Where the stock is sent from. stock.shipment.out,warehouse -1 help stock f \N \N \N \N \N +3426 en Warehouse Output stock.shipment.out,warehouse_output -1 field stock f \N \N \N \N \N +3427 en Warehouse Storage stock.shipment.out,warehouse_storage -1 field stock f \N \N \N \N \N +3429 en Company stock.shipment.out.return,company -1 field stock f \N \N \N \N \N +3430 en The company the shipment is associated with. stock.shipment.out.return,company -1 help stock f \N \N \N \N \N +3431 en Contact Address stock.shipment.out.return,contact_address -1 field stock f \N \N \N \N \N +3432 en The address the customer can be contacted at. stock.shipment.out.return,contact_address -1 help stock f \N \N \N \N \N +3433 en Customer stock.shipment.out.return,customer -1 field stock f \N \N \N \N \N +3434 en The party that purchased the stock. stock.shipment.out.return,customer -1 help stock f \N \N \N \N \N +3435 en Customer Location stock.shipment.out.return,customer_location -1 field stock f \N \N \N \N \N +3436 en Done By stock.shipment.out.return,done_by -1 field stock f \N \N \N \N \N +3437 en Incoming Moves stock.shipment.out.return,incoming_moves -1 field stock f \N \N \N \N \N +3438 en The moves that bring the stock into the warehouse. stock.shipment.out.return,incoming_moves -1 help stock f \N \N \N \N \N +3439 en Inventory Moves stock.shipment.out.return,inventory_moves -1 field stock f \N \N \N \N \N +3440 en The moves that put the stock away into the storage area. stock.shipment.out.return,inventory_moves -1 help stock f \N \N \N \N \N +3441 en Moves stock.shipment.out.return,moves -1 field stock f \N \N \N \N \N +3442 en Number stock.shipment.out.return,number -1 field stock f \N \N \N \N \N +3443 en The main identifier for the shipment. stock.shipment.out.return,number -1 help stock f \N \N \N \N \N +3444 en Origins stock.shipment.out.return,origins -1 field stock f \N \N \N \N \N +3445 en Received By stock.shipment.out.return,received_by -1 field stock f \N \N \N \N \N +3446 en Reference stock.shipment.out.return,reference -1 field stock f \N \N \N \N \N +3447 en The external identifier for the shipment. stock.shipment.out.return,reference -1 help stock f \N \N \N \N \N +3448 en State stock.shipment.out.return,state -1 field stock f \N \N \N \N \N +3449 en The current state of the shipment. stock.shipment.out.return,state -1 help stock f \N \N \N \N \N +3450 en Draft stock.shipment.out.return,state -1 selection stock f \N \N \N \N \N +3451 en Received stock.shipment.out.return,state -1 selection stock f \N \N \N \N \N +3452 en Done stock.shipment.out.return,state -1 selection stock f \N \N \N \N \N +3453 en Cancelled stock.shipment.out.return,state -1 selection stock f \N \N \N \N \N +3454 en Warehouse stock.shipment.out.return,warehouse -1 field stock f \N \N \N \N \N +3455 en Where the stock is returned. stock.shipment.out.return,warehouse -1 help stock f \N \N \N \N \N +3456 en Warehouse Input stock.shipment.out.return,warehouse_input -1 field stock f \N \N \N \N \N +3457 en Warehouse Storage stock.shipment.out.return,warehouse_storage -1 field stock f \N \N \N \N \N +3459 en Received By stock.shipment.internal,assigned_by -1 field stock f \N \N \N \N \N +3460 en Company stock.shipment.internal,company -1 field stock f \N \N \N \N \N +3461 en The company the shipment is associated with. stock.shipment.internal,company -1 help stock f \N \N \N \N \N +3462 en Done By stock.shipment.internal,done_by -1 field stock f \N \N \N \N \N +3463 en Effective Start Date stock.shipment.internal,effective_start_date -1 field stock f \N \N \N \N \N +3464 en When the stock was actually sent. stock.shipment.internal,effective_start_date -1 help stock f \N \N \N \N \N +3465 en From Location stock.shipment.internal,from_location -1 field stock f \N \N \N \N \N +3466 en Where the stock is moved from. stock.shipment.internal,from_location -1 help stock f \N \N \N \N \N +3467 en Incoming Moves stock.shipment.internal,incoming_moves -1 field stock f \N \N \N \N \N +3468 en The moves that receive the stock in. stock.shipment.internal,incoming_moves -1 help stock f \N \N \N \N \N +3469 en Moves stock.shipment.internal,moves -1 field stock f \N \N \N \N \N +3470 en The moves that perform the shipment. stock.shipment.internal,moves -1 help stock f \N \N \N \N \N +3471 en Number stock.shipment.internal,number -1 field stock f \N \N \N \N \N +3472 en The main identifier for the shipment. stock.shipment.internal,number -1 help stock f \N \N \N \N \N +3473 en Outgoing Moves stock.shipment.internal,outgoing_moves -1 field stock f \N \N \N \N \N +3474 en The moves that send the stock out. stock.shipment.internal,outgoing_moves -1 help stock f \N \N \N \N \N +3475 en Partially Assigned stock.shipment.internal,partially_assigned -1 field stock f \N \N \N \N \N +3476 en Planned Start Date stock.shipment.internal,planned_start_date -1 field stock f \N \N \N \N \N +3477 en When the stock is expected to be sent. stock.shipment.internal,planned_start_date -1 help stock f \N \N \N \N \N +3478 en Reference stock.shipment.internal,reference -1 field stock f \N \N \N \N \N +3479 en The external identifier for the shipment. stock.shipment.internal,reference -1 help stock f \N \N \N \N \N +3480 en Shipped By stock.shipment.internal,shipped_by -1 field stock f \N \N \N \N \N +3481 en State stock.shipment.internal,state -1 field stock f \N \N \N \N \N +3482 en The current state of the shipment. stock.shipment.internal,state -1 help stock f \N \N \N \N \N +3483 en Request stock.shipment.internal,state -1 selection stock f \N \N \N \N \N +3484 en Draft stock.shipment.internal,state -1 selection stock f \N \N \N \N \N +3485 en Waiting stock.shipment.internal,state -1 selection stock f \N \N \N \N \N +3486 en Assigned stock.shipment.internal,state -1 selection stock f \N \N \N \N \N +3487 en Shipped stock.shipment.internal,state -1 selection stock f \N \N \N \N \N +3488 en Done stock.shipment.internal,state -1 selection stock f \N \N \N \N \N +3489 en Cancelled stock.shipment.internal,state -1 selection stock f \N \N \N \N \N +3490 en To Location stock.shipment.internal,to_location -1 field stock f \N \N \N \N \N +3491 en Where the stock is moved to. stock.shipment.internal,to_location -1 help stock f \N \N \N \N \N +3492 en Transit Location stock.shipment.internal,transit_location -1 field stock f \N \N \N \N \N +3493 en Where the stock is located while it is in transit between the warehouses. stock.shipment.internal,transit_location -1 help stock f \N \N \N \N \N +3494 en Warehouse stock.shipment.internal,warehouse -1 field stock f \N \N \N \N \N +3495 en Where the stock is sent from. stock.shipment.internal,warehouse -1 help stock f \N \N \N \N \N +3497 en Moves stock.shipment.assign.partial,moves -1 field stock f \N \N \N \N \N +3498 en The moves that were not assigned. stock.shipment.assign.partial,moves -1 help stock f \N \N \N \N \N +3499 en Customer Location party.party,customer_location -1 field stock f \N \N \N \N \N +3500 en The default destination location for stock sent to the party. party.party,customer_location -1 help stock f \N \N \N \N \N +3501 en Delivered to Warehouses party.party,delivered_to_warehouses -1 field stock f \N \N \N \N \N +3502 en Locations party.party,locations -1 field stock f \N \N \N \N \N +3503 en Supplier Location party.party,supplier_location -1 field stock f \N \N \N \N \N +3504 en The default source location for stock received from the party. party.party,supplier_location -1 help stock f \N \N \N \N \N +3506 en Customer Location party.party.location,customer_location -1 field stock f \N \N \N \N \N +3507 en The default destination location for stock sent to the party. party.party.location,customer_location -1 help stock f \N \N \N \N \N +3508 en Party party.party.location,party -1 field stock f \N \N \N \N \N +3509 en Supplier Location party.party.location,supplier_location -1 field stock f \N \N \N \N \N +3510 en The default source location for stock received from the party. party.party.location,supplier_location -1 help stock f \N \N \N \N \N +3512 en Location party.party-delivered_to-stock.location,location -1 field stock f \N \N \N \N \N +3513 en Party party.party-delivered_to-stock.location,party -1 field stock f \N \N \N \N \N +3514 en Delivery party.address,delivery -1 field stock f \N \N \N \N \N +3515 en Check to send deliveries to the address. party.address,delivery -1 help stock f \N \N \N \N \N +3516 en Warehouses party.address,warehouses -1 field stock f \N \N \N \N \N +3517 en Delivery party.contact_mechanism,delivery -1 field stock f \N \N \N \N \N +3518 en Check to use for delivery. party.contact_mechanism,delivery -1 help stock f \N \N \N \N \N +3520 en Caches stock.period,caches -1 field stock f \N \N \N \N \N +3521 en Company stock.period,company -1 field stock f \N \N \N \N \N +3522 en The company the stock period is associated with. stock.period,company -1 help stock f \N \N \N \N \N +3523 en Date stock.period,date -1 field stock f \N \N \N \N \N +3524 en When the stock period ends. stock.period,date -1 help stock f \N \N \N \N \N +3525 en State stock.period,state -1 field stock f \N \N \N \N \N +3526 en The current state of the stock period. stock.period,state -1 help stock f \N \N \N \N \N +3527 en Draft stock.period,state -1 selection stock f \N \N \N \N \N +3528 en Closed stock.period,state -1 selection stock f \N \N \N \N \N +3530 en Internal Quantity stock.period.cache,internal_quantity -1 field stock f \N \N \N \N \N +3531 en Location stock.period.cache,location -1 field stock f \N \N \N \N \N +3532 en Period stock.period.cache,period -1 field stock f \N \N \N \N \N +3533 en Product stock.period.cache,product -1 field stock f \N \N \N \N \N +3534 en Cost Value product.template,cost_value -1 field stock f \N \N \N \N \N +3535 en The value of the stock in the location. product.template,cost_value -1 help stock f \N \N \N \N \N +3536 en Forecast Quantity product.template,forecast_quantity -1 field stock f \N \N \N \N \N +3537 en The amount of stock expected to be in the location. product.template,forecast_quantity -1 help stock f \N \N \N \N \N +3538 en Quantity product.template,quantity -1 field stock f \N \N \N \N \N +3539 en The amount of stock in the location. product.template,quantity -1 help stock f \N \N \N \N \N +3540 en Cost Value product.product,cost_value -1 field stock f \N \N \N \N \N +3541 en The value of the stock in the location. product.product,cost_value -1 help stock f \N \N \N \N \N +3542 en Forecast Quantity product.product,forecast_quantity -1 field stock f \N \N \N \N \N +3543 en The amount of stock expected to be in the location. product.product,forecast_quantity -1 help stock f \N \N \N \N \N +3544 en Quantity product.product,quantity -1 field stock f \N \N \N \N \N +3545 en The amount of stock in the location. product.product,quantity -1 help stock f \N \N \N \N \N +3547 en Company product.by_location.context,company -1 field stock f \N \N \N \N \N +3548 en At Date product.by_location.context,forecast_date -1 field stock f \N \N \N \N \N +3549 en The date for which the stock quantity is calculated.\n* An empty value calculates as far ahead as possible.\n* A date in the past will provide historical values. product.by_location.context,forecast_date -1 help stock f \N \N \N \N \N +3550 en At Date product.by_location.context,stock_date_end -1 field stock f \N \N \N \N \N +3552 en Company stock.product_quantities_warehouse,company -1 field stock f \N \N \N \N \N +3553 en Date stock.product_quantities_warehouse,date -1 field stock f \N \N \N \N \N +3554 en Product stock.product_quantities_warehouse,product -1 field stock f \N \N \N \N \N +3555 en Variant stock.product_quantities_warehouse,product -1 selection stock f \N \N \N \N \N +3556 en Product stock.product_quantities_warehouse,product -1 selection stock f \N \N \N \N \N +3557 en Quantity stock.product_quantities_warehouse,quantity -1 field stock f \N \N \N \N \N +3559 en Company stock.product_quantities_warehouse.context,company -1 field stock f \N \N \N \N \N +3560 en Only storage zone stock.product_quantities_warehouse.context,stock_skip_warehouse -1 field stock f \N \N \N \N \N +3561 en Check to use only the quantity of the storage zone. stock.product_quantities_warehouse.context,stock_skip_warehouse -1 help stock f \N \N \N \N \N +3562 en Warehouse stock.product_quantities_warehouse.context,warehouse -1 field stock f \N \N \N \N \N +3563 en The warehouse for which the quantities will be calculated. stock.product_quantities_warehouse.context,warehouse -1 help stock f \N \N \N \N \N +3565 en Company stock.product_quantities_warehouse.move,company -1 field stock f \N \N \N \N \N +3566 en Cumulative Quantity Delta stock.product_quantities_warehouse.move,cumulative_quantity_delta -1 field stock f \N \N \N \N \N +3567 en Cumulative Quantity End stock.product_quantities_warehouse.move,cumulative_quantity_end -1 field stock f \N \N \N \N \N +3568 en Cumulative Quantity Start stock.product_quantities_warehouse.move,cumulative_quantity_start -1 field stock f \N \N \N \N \N +3569 en Date stock.product_quantities_warehouse.move,date -1 field stock f \N \N \N \N \N +3570 en Document stock.product_quantities_warehouse.move,document -1 field stock f \N \N \N \N \N +3571 en Move stock.product_quantities_warehouse.move,move -1 field stock f \N \N \N \N \N +3572 en Origin stock.product_quantities_warehouse.move,origin -1 field stock f \N \N \N \N \N +3573 en Product stock.product_quantities_warehouse.move,product -1 field stock f \N \N \N \N \N +3574 en Variant stock.product_quantities_warehouse.move,product -1 selection stock f \N \N \N \N \N +3575 en Product stock.product_quantities_warehouse.move,product -1 selection stock f \N \N \N \N \N +3576 en Quantity stock.product_quantities_warehouse.move,quantity -1 field stock f \N \N \N \N \N +3578 en From product.recompute_cost_price.start,from_ -1 field stock f \N \N \N \N \N +3580 en Company product.cost_price.revision,company -1 field stock f \N \N \N \N \N +3581 en New Cost Price product.cost_price.revision,cost_price -1 field stock f \N \N \N \N \N +3582 en Python expression that will be evaluated with:\n- cost_price: the current cost price of the product product.cost_price.revision,cost_price -1 help stock f \N \N \N \N \N +3583 en Date product.cost_price.revision,date -1 field stock f \N \N \N \N \N +3584 en Variant product.cost_price.revision,product -1 field stock f \N \N \N \N \N +3585 en Product product.cost_price.revision,template -1 field stock f \N \N \N \N \N +3587 en New Cost Price product.modify_cost_price.start,cost_price -1 field stock f \N \N \N \N \N +3588 en Python expression that will be evaluated with:\n- cost_price: the current cost price of the product product.modify_cost_price.start,cost_price -1 help stock f \N \N \N \N \N +3589 en Date product.modify_cost_price.start,date -1 field stock f \N \N \N \N \N +3591 en Company stock.inventory,company -1 field stock f \N \N \N \N \N +3592 en The company the inventory is associated with. stock.inventory,company -1 help stock f \N \N \N \N \N +3593 en Date stock.inventory,date -1 field stock f \N \N \N \N \N +3594 en The date of the stock count. stock.inventory,date -1 help stock f \N \N \N \N \N +3595 en Empty Quantity stock.inventory,empty_quantity -1 field stock f \N \N \N \N \N +3596 en How lines without a quantity are handled. stock.inventory,empty_quantity -1 help stock f \N \N \N \N \N +3597 en Keep stock.inventory,empty_quantity -1 selection stock f \N \N \N \N \N +3598 en Empty stock.inventory,empty_quantity -1 selection stock f \N \N \N \N \N +3599 en Lines stock.inventory,lines -1 field stock f \N \N \N \N \N +3600 en Location stock.inventory,location -1 field stock f \N \N \N \N \N +3601 en The location inventoried. stock.inventory,location -1 help stock f \N \N \N \N \N +3602 en Number stock.inventory,number -1 field stock f \N \N \N \N \N +3603 en The main identifier for the inventory. stock.inventory,number -1 help stock f \N \N \N \N \N +3604 en State stock.inventory,state -1 field stock f \N \N \N \N \N +3605 en The current state of the inventory. stock.inventory,state -1 help stock f \N \N \N \N \N +3606 en Draft stock.inventory,state -1 selection stock f \N \N \N \N \N +3607 en Done stock.inventory,state -1 selection stock f \N \N \N \N \N +3608 en Cancelled stock.inventory,state -1 selection stock f \N \N \N \N \N +3610 en Expected Quantity stock.inventory.line,expected_quantity -1 field stock f \N \N \N \N \N +3611 en The quantity the system calculated should be in the location. stock.inventory.line,expected_quantity -1 help stock f \N \N \N \N \N +3612 en Inventory stock.inventory.line,inventory -1 field stock f \N \N \N \N \N +3613 en The inventory the line belongs to. stock.inventory.line,inventory -1 help stock f \N \N \N \N \N +3614 en Date stock.inventory.line,inventory_date -1 field stock f \N \N \N \N \N +3615 en Location stock.inventory.line,inventory_location -1 field stock f \N \N \N \N \N +3616 en Inventory State stock.inventory.line,inventory_state -1 field stock f \N \N \N \N \N +3617 en Moves stock.inventory.line,moves -1 field stock f \N \N \N \N \N +3618 en Product stock.inventory.line,product -1 field stock f \N \N \N \N \N +3619 en Actual Quantity stock.inventory.line,quantity -1 field stock f \N \N \N \N \N +3620 en The actual quantity found in the location. stock.inventory.line,quantity -1 help stock f \N \N \N \N \N +3621 en Unit stock.inventory.line,unit -1 field stock f \N \N \N \N \N +3622 en The unit in which the quantity is specified. stock.inventory.line,unit -1 help stock f \N \N \N \N \N +3624 en Search stock.inventory.count.search,search -1 field stock f \N \N \N \N \N +3625 en The item that's counted. stock.inventory.count.search,search -1 help stock f \N \N \N \N \N +3626 en Product stock.inventory.count.search,search -1 selection stock f \N \N \N \N \N +3628 en Line stock.inventory.count.quantity,line -1 field stock f \N \N \N \N \N +3629 en Product stock.inventory.count.quantity,product -1 field stock f \N \N \N \N \N +3630 en Quantity stock.inventory.count.quantity,quantity -1 field stock f \N \N \N \N \N +3631 en The quantity to add to the existing count. stock.inventory.count.quantity,quantity -1 help stock f \N \N \N \N \N +3632 en Total Quantity stock.inventory.count.quantity,total_quantity -1 field stock f \N \N \N \N \N +3633 en The total amount of the line counted so far. stock.inventory.count.quantity,total_quantity -1 help stock f \N \N \N \N \N +3634 en Unit stock.inventory.count.quantity,unit -1 field stock f \N \N \N \N \N +3635 en The unit in which the quantities are specified. stock.inventory.count.quantity,unit -1 help stock f \N \N \N \N \N +3637 en Inventory Sequence stock.configuration,inventory_sequence -1 field stock f \N \N \N \N \N +3638 en Used to generate the number given to inventories. stock.configuration,inventory_sequence -1 help stock f \N \N \N \N \N +3639 en Supplier Return Shipment Sequence stock.configuration,shipment_in_return_sequence -1 field stock f \N \N \N \N \N +3640 en Used to generate the number given to supplier return shipments. stock.configuration,shipment_in_return_sequence -1 help stock f \N \N \N \N \N +3641 en Supplier Shipment Sequence stock.configuration,shipment_in_sequence -1 field stock f \N \N \N \N \N +3642 en Used to generate the number given to supplier shipments. stock.configuration,shipment_in_sequence -1 help stock f \N \N \N \N \N +3643 en Internal Shipment Sequence stock.configuration,shipment_internal_sequence -1 field stock f \N \N \N \N \N +3644 en Used to generate the number given to internal shipments. stock.configuration,shipment_internal_sequence -1 help stock f \N \N \N \N \N +3645 en Internal Shipment Transit stock.configuration,shipment_internal_transit -1 field stock f \N \N \N \N \N +3646 en The default location used for stock that is in transit between warehouses. stock.configuration,shipment_internal_transit -1 help stock f \N \N \N \N \N +3647 en Customer Return Shipment Sequence stock.configuration,shipment_out_return_sequence -1 field stock f \N \N \N \N \N +3648 en Used to generate the number given to customer return shipments. stock.configuration,shipment_out_return_sequence -1 help stock f \N \N \N \N \N +3649 en Customer Shipment Sequence stock.configuration,shipment_out_sequence -1 field stock f \N \N \N \N \N +3650 en Used to generate the number given to customer shipments. stock.configuration,shipment_out_sequence -1 help stock f \N \N \N \N \N +3652 en Company stock.configuration.sequence,company -1 field stock f \N \N \N \N \N +3653 en Inventory Sequence stock.configuration.sequence,inventory_sequence -1 field stock f \N \N \N \N \N +3654 en Supplier Return Shipment Sequence stock.configuration.sequence,shipment_in_return_sequence -1 field stock f \N \N \N \N \N +3655 en Supplier Shipment Sequence stock.configuration.sequence,shipment_in_sequence -1 field stock f \N \N \N \N \N +3656 en Internal Shipment Sequence stock.configuration.sequence,shipment_internal_sequence -1 field stock f \N \N \N \N \N +3657 en Customer Return Shipment Sequence stock.configuration.sequence,shipment_out_return_sequence -1 field stock f \N \N \N \N \N +3658 en Customer Shipment Sequence stock.configuration.sequence,shipment_out_sequence -1 field stock f \N \N \N \N \N +3660 en Internal Shipment Transit stock.configuration.location,shipment_internal_transit -1 field stock f \N \N \N \N \N +3661 en The default location used for stock that is in transit between warehouses. stock.configuration.location,shipment_internal_transit -1 help stock f \N \N \N \N \N +3662 en Recompute Cost Price from Moves ir.cron,method -1 selection stock f \N \N \N \N \N +3663 en Reschedule Customer Shipments ir.cron,method -1 selection stock f \N \N \N \N \N +3664 en Reschedule Supplier Return Shipments ir.cron,method -1 selection stock f \N \N \N \N \N +3665 en Reschedule Internal Shipments ir.cron,method -1 selection stock f \N \N \N \N \N +3666 en Assign Customer Shipments ir.cron,method -1 selection stock f \N \N \N \N \N +3667 en Assign Internal Shipments ir.cron,method -1 selection stock f \N \N \N \N \N +3668 en Current Warehouse res.user,warehouse -1 field stock f \N \N \N \N \N +3669 en The warehouse that the user works at. res.user,warehouse -1 help stock f \N \N \N \N \N +3671 en Company stock.reporting.margin.context,company -1 field stock f \N \N \N \N \N +3672 en From Date stock.reporting.margin.context,from_date -1 field stock f \N \N \N \N \N +3673 en Include Lost stock.reporting.margin.context,include_lost -1 field stock f \N \N \N \N \N +3674 en If checked, the cost of product moved to a lost and found location is included. stock.reporting.margin.context,include_lost -1 help stock f \N \N \N \N \N +3675 en Period stock.reporting.margin.context,period -1 field stock f \N \N \N \N \N +3676 en Year stock.reporting.margin.context,period -1 selection stock f \N \N \N \N \N +3677 en Month stock.reporting.margin.context,period -1 selection stock f \N \N \N \N \N +3678 en Day stock.reporting.margin.context,period -1 selection stock f \N \N \N \N \N +3679 en To Date stock.reporting.margin.context,to_date -1 field stock f \N \N \N \N \N +3681 en Time Series stock.reporting.margin.main,time_series -1 field stock f \N \N \N \N \N +3683 en Date stock.reporting.margin.main.time_series,date -1 field stock f \N \N \N \N \N +3685 en Internal Quantity stock.reporting.margin.product,internal_quantity -1 field stock f \N \N \N \N \N +3686 en Product stock.reporting.margin.product,product -1 field stock f \N \N \N \N \N +3687 en Quantity stock.reporting.margin.product,quantity -1 field stock f \N \N \N \N \N +3688 en Time Series stock.reporting.margin.product,time_series -1 field stock f \N \N \N \N \N +3689 en Unit stock.reporting.margin.product,unit -1 field stock f \N \N \N \N \N +3691 en Date stock.reporting.margin.product.time_series,date -1 field stock f \N \N \N \N \N +3692 en Internal Quantity stock.reporting.margin.product.time_series,internal_quantity -1 field stock f \N \N \N \N \N +3693 en Product stock.reporting.margin.product.time_series,product -1 field stock f \N \N \N \N \N +3694 en Quantity stock.reporting.margin.product.time_series,quantity -1 field stock f \N \N \N \N \N +3695 en Unit stock.reporting.margin.product.time_series,unit -1 field stock f \N \N \N \N \N +3697 en Category stock.reporting.margin.category,category -1 field stock f \N \N \N \N \N +3698 en Time Series stock.reporting.margin.category,time_series -1 field stock f \N \N \N \N \N +3700 en Category stock.reporting.margin.category.time_series,category -1 field stock f \N \N \N \N \N +3701 en Date stock.reporting.margin.category.time_series,date -1 field stock f \N \N \N \N \N +3703 en Children stock.reporting.margin.category.tree,children -1 field stock f \N \N \N \N \N +3704 en Name stock.reporting.margin.category.tree,name -1 field stock f \N \N \N \N \N +3705 en Parent stock.reporting.margin.category.tree,parent -1 field stock f \N \N \N \N \N +3682 en Stock Reporting Margin stock.reporting.margin.main.time_series,name -1 model stock f \N \N \N \N \N +3684 en Stock Reporting Margin per Product stock.reporting.margin.product,name -1 model stock f \N \N \N \N \N +3690 en Stock Reporting Margin per Product stock.reporting.margin.product.time_series,name -1 model stock f \N \N \N \N \N +3696 en Stock Reporting Margin per Category stock.reporting.margin.category,name -1 model stock f \N \N \N \N \N +3699 en Stock Reporting Margin per Category stock.reporting.margin.category.time_series,name -1 model stock f \N \N \N \N \N +3702 en Stock Reporting Margin per Category stock.reporting.margin.category.tree,name -1 model stock f \N \N \N \N \N +3706 en Cancel stock.shipment.assign,partial,cancel -1 wizard_button stock f \N \N \N \N \N +3707 en Wait stock.shipment.assign,partial,end -1 wizard_button stock f \N \N \N \N \N +3708 en Ignore stock.shipment.assign,partial,ignore -1 wizard_button stock f \N \N \N \N \N +3709 en Force stock.shipment.assign,partial,force -1 wizard_button stock f \N \N \N \N \N +3710 en Cancel product.recompute_cost_price,start,end -1 wizard_button stock f \N \N \N \N \N +3718 en Stock res.group,name 11 Stock model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3719 en Stock Administration res.group,name 12 Stock Administration model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3720 en Stock Force Assignment res.group,name 13 Stock Force Assignment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3721 en Inventory & Stock ir.ui.menu,name 137 Inventory & Stock model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3722 en Configuration ir.ui.menu,name 138 Configuration model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3723 en Reporting ir.ui.menu,name 139 Reporting model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3724 en Recompute Cost Price ir.action,name 168 Recompute Cost Price model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3725 en Cost Price Revision ir.action,name 169 Cost Price Revision model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3726 en User in companies ir.rule.group,name 27 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3727 en Modify Cost Price ir.action,name 170 Modify Cost Price model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3728 en Locations Tree Quantity ir.action,name 171 Locations Tree Quantity model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3729 en Locations List Quantity ir.action,name 172 Locations List Quantity model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3730 en Products Quantities By Warehouse ir.action,name 173 Products Quantities By Warehouse model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3731 en Product Quantities By Warehouse ir.action,name 174 Product Quantities By Warehouse model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3732 en User in companies ir.rule.group,name 28 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3733 en Stock Moves ir.action,name 175 Stock Moves model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3734 en Stock Moves By Warehouse ir.action,name 176 Stock Moves By Warehouse model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3735 en User in companies ir.rule.group,name 29 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3736 en Warehouses ir.action,name 177 Warehouses model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3737 en Warehouses ir.ui.menu,name 140 Warehouses model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3738 en Locations ir.action,name 178 Locations model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3739 en Locations ir.ui.menu,name 141 Locations model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3740 en Locations ir.action,name 179 Locations model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3741 en Locations ir.ui.menu,name 142 Locations model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3742 en Locations ir.ui.menu,name 143 Locations model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3743 en Products by Locations ir.action,name 180 Products by Locations model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3744 en Location Lead Times ir.action,name 181 Location Lead Times model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3745 en Location Lead Times ir.ui.menu,name 144 Location Lead Times model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3746 en Input Zone stock.location,name 1 Input Zone model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3747 en Output Zone stock.location,name 2 Output Zone model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3748 en Storage Zone stock.location,name 3 Storage Zone model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3749 en Lost and Found stock.location,name 4 Lost and Found model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3750 en Warehouse stock.location,name 5 Warehouse model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3751 en Supplier stock.location,name 6 Supplier model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3752 en Customer stock.location,name 7 Customer model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3753 en Transit stock.location,name 8 Transit model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3754 en Shipments ir.ui.menu,name 145 Shipments model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3755 en Supplier Shipments ir.action,name 182 Supplier Shipments model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3756 en Draft ir.action.act_window.domain,name 8 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3757 en Received ir.action.act_window.domain,name 9 Received model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3758 en All ir.action.act_window.domain,name 10 All model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3759 en Supplier Shipments ir.ui.menu,name 146 Supplier Shipments model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3760 en Supplier Returns ir.action,name 183 Supplier Returns model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3761 en Draft ir.action.act_window.domain,name 11 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3762 en Waiting ir.action.act_window.domain,name 12 Waiting model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3763 en Partially Assigned ir.action.act_window.domain,name 13 Partially Assigned model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3764 en Assigned ir.action.act_window.domain,name 14 Assigned model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3765 en All ir.action.act_window.domain,name 15 All model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3766 en Supplier Returns ir.ui.menu,name 147 Supplier Returns model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3767 en Customer Shipments ir.action,name 184 Customer Shipments model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3768 en Draft ir.action.act_window.domain,name 16 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3769 en Waiting ir.action.act_window.domain,name 17 Waiting model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3770 en Partially Assigned ir.action.act_window.domain,name 18 Partially Assigned model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3771 en Assigned ir.action.act_window.domain,name 19 Assigned model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3772 en Picked ir.action.act_window.domain,name 20 Picked model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3773 en Packed ir.action.act_window.domain,name 21 Packed model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3774 en All ir.action.act_window.domain,name 22 All model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3775 en Customer Shipments ir.ui.menu,name 148 Customer Shipments model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3776 en Internal Shipments ir.action,name 185 Internal Shipments model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3777 en Requests ir.action.act_window.domain,name 23 Requests model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3778 en Draft ir.action.act_window.domain,name 24 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3779 en Waiting ir.action.act_window.domain,name 25 Waiting model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3780 en Partially Assigned ir.action.act_window.domain,name 26 Partially Assigned model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3781 en Assigned ir.action.act_window.domain,name 27 Assigned model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3782 en Shipped ir.action.act_window.domain,name 28 Shipped model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3783 en All ir.action.act_window.domain,name 29 All model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3784 en Internal Shipments ir.ui.menu,name 149 Internal Shipments model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3785 en Customer Returns ir.action,name 186 Customer Returns model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3786 en Draft ir.action.act_window.domain,name 30 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3787 en Received ir.action.act_window.domain,name 31 Received model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3788 en All ir.action.act_window.domain,name 32 All model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3789 en Customer Returns ir.ui.menu,name 150 Customer Returns model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3790 en Delivery Note ir.action,name 187 Delivery Note model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3791 en Picking List ir.action,name 188 Picking List model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3792 en Restocking List ir.action,name 189 Restocking List model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3793 en Restocking List ir.action,name 190 Restocking List model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3794 en Internal Shipment ir.action,name 191 Internal Shipment model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3795 en Customer Shipment ir.sequence.type,name 7 Customer Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3796 en Customer Shipment ir.sequence,name 4 Customer Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3797 en Supplier Shipment ir.sequence.type,name 8 Supplier Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3798 en Supplier Shipment ir.sequence,name 5 Supplier Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3799 en Internal Shipment ir.sequence.type,name 9 Internal Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3800 en Internal Shipment ir.sequence,name 6 Internal Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3801 en Customer Return Shipment ir.sequence.type,name 10 Customer Return Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3802 en Customer Return Shipment ir.sequence,name 7 Customer Return Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3803 en Supplier Return Shipment ir.sequence.type,name 11 Supplier Return Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3804 en Supplier Return Shipment ir.sequence,name 8 Supplier Return Shipment model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3805 en Cancel ir.model.button,string 31 Cancel model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3806 en Reset to Draft ir.model.button,string 32 Reset to Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3807 en Receive ir.model.button,string 33 Receive model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3808 en Are you sure you want to receive the shipment? ir.model.button,confirm 33 Are you sure you want to receive the shipment? model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3809 en Done ir.model.button,string 34 Done model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3810 en Cancel ir.model.button,string 35 Cancel model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3811 en Draft ir.model.button,string 36 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3812 en Wait ir.model.button,string 37 Wait model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3813 en Pick ir.model.button,string 38 Pick model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3814 en Pack ir.model.button,string 39 Pack model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3815 en Done ir.model.button,string 40 Done model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3816 en Are you sure you want to complete the shipment? ir.model.button,confirm 40 Are you sure you want to complete the shipment? model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3817 en Assign ir.model.button,string 43 Assign model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3818 en Cancel ir.model.button,string 44 Cancel model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3819 en Draft ir.model.button,string 45 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3820 en Wait ir.model.button,string 46 Wait model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3821 en Done ir.model.button,string 47 Done model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3822 en Assign ir.model.button,string 50 Assign model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3823 en Ship ir.model.button,string 51 Ship model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3824 en Cancel ir.model.button,string 52 Cancel model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3825 en Draft ir.model.button,string 53 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3826 en Receive ir.model.button,string 54 Receive model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3827 en Are you sure you want to receive the shipment? ir.model.button,confirm 54 Are you sure you want to receive the shipment? model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3828 en Done ir.model.button,string 55 Done model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3829 en Cancel ir.model.button,string 56 Cancel model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3830 en Draft ir.model.button,string 57 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3831 en Wait ir.model.button,string 58 Wait model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3832 en Done ir.model.button,string 59 Done model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3833 en Are you sure you want to complete the shipment? ir.model.button,confirm 59 Are you sure you want to complete the shipment? model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3834 en Assign ir.model.button,string 62 Assign model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3835 en User in companies ir.rule.group,name 30 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3836 en User in companies ir.rule.group,name 31 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3837 en User in companies ir.rule.group,name 32 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3838 en User in companies ir.rule.group,name 33 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3839 en User in companies ir.rule.group,name 34 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3840 en Assign Supplier Return Shipment ir.action,name 192 Assign Supplier Return Shipment model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3841 en Assign Customer Shipment ir.action,name 193 Assign Customer Shipment model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3842 en Assign Internal Shipment ir.action,name 194 Assign Internal Shipment model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3843 en Moves ir.action,name 195 Moves model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3844 en All ir.action.act_window.domain,name 33 All model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3845 en From Suppliers ir.action.act_window.domain,name 34 From Suppliers model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3846 en From Suppliers Waiting ir.action.act_window.domain,name 35 From Suppliers Waiting model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3847 en To Customers ir.action.act_window.domain,name 36 To Customers model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3848 en Moves ir.ui.menu,name 151 Moves model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3849 en User in companies ir.rule.group,name 35 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3850 en Cancel ir.model.button,string 63 Cancel model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3851 en Are you sure you want to cancel the move? ir.model.button,confirm 63 Are you sure you want to cancel the move? model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3852 en Reset to Draft ir.model.button,string 64 Reset to Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3853 en Do ir.model.button,string 65 Do model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3854 en Are you sure you want to complete the move? ir.model.button,confirm 65 Are you sure you want to complete the move? model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3855 en Stock Moves ir.action,name 196 Stock Moves model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3856 en Inventories ir.action,name 197 Inventories model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3857 en Draft ir.action.act_window.domain,name 37 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3858 en All ir.action.act_window.domain,name 38 All model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3859 en Inventories ir.ui.menu,name 152 Inventories model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3860 en Inventory Lines ir.action,name 198 Inventory Lines model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3861 en User in companies ir.rule.group,name 36 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3862 en Confirm ir.model.button,string 66 Confirm model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3863 en Are you sure you want to confirm the inventory? ir.model.button,confirm 66 Are you sure you want to confirm the inventory? model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3864 en Cancel ir.model.button,string 67 Cancel model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3865 en Are you sure you want to cancel the inventory? ir.model.button,confirm 67 Are you sure you want to cancel the inventory? model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3866 en Complete ir.model.button,string 68 Complete model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3867 en Add an inventory line for each missing products ir.model.button,help 68 Add an inventory line for each missing products model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3868 en Count ir.model.button,string 69 Count model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3869 en Launch the wizard to count products ir.model.button,help 69 Launch the wizard to count products model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3870 en Count ir.action,name 199 Count model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3871 en Inventory ir.sequence.type,name 12 Inventory model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3872 en Inventory ir.sequence,name 9 Inventory model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3873 en Customer Shipments ir.action,name 200 Customer Shipments model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3874 en Supplier Shipments ir.action,name 201 Supplier Shipments model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3875 en Configuration ir.action,name 202 Configuration model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3876 en Configuration ir.ui.menu,name 153 Configuration model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3877 en Periods ir.action,name 203 Periods model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3878 en Periods ir.ui.menu,name 154 Periods model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3879 en User in companies ir.rule.group,name 37 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3880 en Draft ir.model.button,string 70 Draft model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3881 en Close ir.model.button,string 71 Close model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3882 en You cannot change the default unit of measure of a product which is associated with stock moves. ir.message,text 245 You cannot change the default unit of measure of a product which is associated with stock moves. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3883 en You cannot change the type of a product which is associated with stock moves. ir.message,text 246 You cannot change the type of a product which is associated with stock moves. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3884 en You cannot change the cost price of a product which is associated with stock moves.\nYou must use the "Modify Cost Price" wizard. ir.message,text 247 You cannot change the cost price of a product which is associated with stock moves.\nYou must use the "Modify Cost Price" wizard. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3885 en Invalid cost price "%(cost_price)s" for product "%(product)s" with exception "%(exception)s". ir.message,text 248 Invalid cost price "%(cost_price)s" for product "%(product)s" with exception "%(exception)s". model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3886 en The value "%(value)s" of "%(cost_price)s" for product "%(product)s" is not a number. ir.message,text 249 The value "%(value)s" of "%(cost_price)s" for product "%(product)s" is not a number. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3887 en You cannot change the type of location "%(location)s" to "%(type)s"\nbecause the type does not support moves and location has existing moves. ir.message,text 250 You cannot change the type of location "%(location)s" to "%(type)s"\nbecause the type does not support moves and location has existing moves. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3888 en To set location "%(location)s" as storage/input/output of warehouse "%(warehouse)s", it must be in the warehouse. ir.message,text 251 To set location "%(location)s" as storage/input/output of warehouse "%(warehouse)s", it must be in the warehouse. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3889 en To inactivate location "%(location)s", you must empty it. ir.message,text 252 To inactivate location "%(location)s", you must empty it. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3890 en You cannot close periods with a date in the future or today. ir.message,text 253 You cannot close periods with a date in the future or today. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3891 en You cannot close periods with assigned moves in it. ir.message,text 254 You cannot close periods with assigned moves in it. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3892 en Planned Date ir.message,text 255 Planned Date model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3893 en When the stock operation is expected to be completed. ir.message,text 256 When the stock operation is expected to be completed. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3894 en Origin Planned Date ir.message,text 257 Origin Planned Date model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3895 en When the stock operation was initially expected to be completed. ir.message,text 258 When the stock operation was initially expected to be completed. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3896 en Effective Date ir.message,text 259 Effective Date model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3897 en When the stock operation was actually completed. ir.message,text 260 When the stock operation was actually completed. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3898 en Delay ir.message,text 261 Delay model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3899 en To pack shipment "%(shipment)s" you must do the inventory moves. ir.message,text 262 To pack shipment "%(shipment)s" you must do the inventory moves. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3900 en To delete shipment "%(shipment)s" you must cancel it. ir.message,text 263 To delete shipment "%(shipment)s" you must cancel it. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3901 en The quantities of shipment "%(shipment)s" are different by %(quantities)s. ir.message,text 264 The quantities of shipment "%(shipment)s" are different by %(quantities)s. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3902 en To delete inventory "%(inventory)s" you must cancel it. ir.message,text 265 To delete inventory "%(inventory)s" you must cancel it. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3903 en To confirm the inventory "%(inventory)s" you must select an option for empty quantity. ir.message,text 266 To confirm the inventory "%(inventory)s" you must select an option for empty quantity. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3904 en To confirm the inventory "%(inventory)s" you must set a lost and found on a parent of location "%(location)s". ir.message,text 267 To confirm the inventory "%(inventory)s" you must set a lost and found on a parent of location "%(location)s". model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3905 en Inventory line "%(line)s" is not unique on inventory "%(inventory)s". ir.message,text 268 Inventory line "%(line)s" is not unique on inventory "%(inventory)s". model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3906 en Inventory line quantity must be positive. ir.message,text 269 Inventory line quantity must be positive. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3907 en To delete inventory line "%(line)s" you must cancel inventory "%(inventory)s". ir.message,text 270 To delete inventory line "%(line)s" you must cancel inventory "%(inventory)s". model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3908 en No existing line found for "%(search)s". ir.message,text 271 No existing line found for "%(search)s". model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3909 en You cannot erase party "%(party)s" while they have pending shipments with company "%(company)s". ir.message,text 272 You cannot erase party "%(party)s" while they have pending shipments with company "%(company)s". model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3910 en To delete stock move "%(move)s" you must cancel it or reset its state to draft. ir.message,text 273 To delete stock move "%(move)s" you must cancel it or reset its state to draft. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3911 en To modify stock move "%(move)s" you must reopen period "%(period)s". ir.message,text 274 To modify stock move "%(move)s" you must reopen period "%(period)s". model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3912 en To modify stock move "%(move)s" you must reset its state to draft. ir.message,text 275 To modify stock move "%(move)s" you must reset its state to draft. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3913 en You cannot modify stock move "%(move)s" because it is done. ir.message,text 276 You cannot modify stock move "%(move)s" because it is done. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3914 en You cannot modify stock move "%(move)s" because it is cancelled. ir.message,text 277 You cannot modify stock move "%(move)s" because it is cancelled. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3915 en Stock moves "%(moves)s" have no origin. ir.message,text 278 Stock moves "%(moves)s" have no origin. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3916 en Move quantity must be positive. ir.message,text 279 Move quantity must be positive. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3917 en Internal move quantity must be positive. ir.message,text 280 Internal move quantity must be positive. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3918 en The source and destination of stock move must be different. ir.message,text 281 The source and destination of stock move must be different. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3919 en The moves "%(moves)s" have effective dates in the future. ir.message,text 282 The moves "%(moves)s" have effective dates in the future. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3920 en The inventories "%(inventories)s" have dates in the future. ir.message,text 283 The inventories "%(inventories)s" have dates in the future. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3921 en Company ir.message,text 284 Company model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3922 en Number ir.message,text 285 Number model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3923 en Cost ir.message,text 286 Cost model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3924 en Revenue ir.message,text 287 Revenue model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3925 en Profit ir.message,text 288 Profit model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3926 en Margin ir.message,text 289 Margin model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3927 en Margin Trend ir.message,text 290 Margin Trend model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3928 en Currency ir.message,text 291 Currency model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3929 en The product "%(product)s" has still some quantities in locations "%(locations)s" for company "%(company)s". ir.message,text 292 The product "%(product)s" has still some quantities in locations "%(locations)s" for company "%(company)s". model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3930 en It is recommended to clear the stock from the storage locations before deactivating the product. ir.message,text 293 It is recommended to clear the stock from the storage locations before deactivating the product. model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3931 en Margins ir.ui.menu,name 155 Margins model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3932 en Margins ir.action,name 204 Margins model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3933 en User in companies ir.rule.group,name 38 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3934 en Margins ir.action,name 205 Margins model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3935 en User in companies ir.rule.group,name 39 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3936 en Margins per Product ir.action,name 206 Margins per Product model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3937 en User in companies ir.rule.group,name 40 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3938 en Margins per Product ir.action,name 207 Margins per Product model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3939 en User in companies ir.rule.group,name 41 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3940 en Margins per Category ir.action,name 208 Margins per Category model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3941 en Margins per Category ir.action,name 209 Margins per Category model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3942 en User in companies ir.rule.group,name 42 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3943 en Margins per Category ir.action,name 210 Margins per Category model stock f 2024-04-13 20:39:10.936653 0 \N 2024-04-13 20:39:10.936653 0 +3944 en User in companies ir.rule.group,name 43 User in companies model stock f 2024-04-13 20:39:10.936653 0 \N \N \N +3946 en Description account.invoice.payment_term,description -1 field account_invoice f \N \N \N \N \N +3947 en Lines account.invoice.payment_term,lines -1 field account_invoice f \N \N \N \N \N +3948 en Name account.invoice.payment_term,name -1 field account_invoice f \N \N \N \N \N +3950 en Amount account.invoice.payment_term.line,amount -1 field account_invoice f \N \N \N \N \N +3951 en Currency account.invoice.payment_term.line,currency -1 field account_invoice f \N \N \N \N \N +3952 en Divisor account.invoice.payment_term.line,divisor -1 field account_invoice f \N \N \N \N \N +3953 en Payment Term account.invoice.payment_term.line,payment -1 field account_invoice f \N \N \N \N \N +3954 en Ratio account.invoice.payment_term.line,ratio -1 field account_invoice f \N \N \N \N \N +3955 en Deltas account.invoice.payment_term.line,relativedeltas -1 field account_invoice f \N \N \N \N \N +3956 en Type account.invoice.payment_term.line,type -1 field account_invoice f \N \N \N \N \N +3957 en Fixed account.invoice.payment_term.line,type -1 selection account_invoice f \N \N \N \N \N +3958 en Percentage on Remainder account.invoice.payment_term.line,type -1 selection account_invoice f \N \N \N \N \N +3959 en Percentage on Total account.invoice.payment_term.line,type -1 selection account_invoice f \N \N \N \N \N +3960 en Remainder account.invoice.payment_term.line,type -1 selection account_invoice f \N \N \N \N \N +3962 en Day of Month account.invoice.payment_term.line.delta,day -1 field account_invoice f \N \N \N \N \N +3963 en Number of Days account.invoice.payment_term.line.delta,days -1 field account_invoice f \N \N \N \N \N +3964 en Payment Term Line account.invoice.payment_term.line.delta,line -1 field account_invoice f \N \N \N \N \N +3965 en Month account.invoice.payment_term.line.delta,month -1 field account_invoice f \N \N \N \N \N +3966 en Number of Months account.invoice.payment_term.line.delta,months -1 field account_invoice f \N \N \N \N \N +3967 en Day of Week account.invoice.payment_term.line.delta,weekday -1 field account_invoice f \N \N \N \N \N +3968 en Number of Weeks account.invoice.payment_term.line.delta,weeks -1 field account_invoice f \N \N \N \N \N +3970 en Amount account.invoice.payment_term.test,amount -1 field account_invoice f \N \N \N \N \N +3971 en Currency account.invoice.payment_term.test,currency -1 field account_invoice f \N \N \N \N \N +3945 en Payment Term account.invoice.payment_term,name -1 model account_invoice f \N \N \N \N \N +3949 en Payment Term Line account.invoice.payment_term.line,name -1 model account_invoice f \N \N \N \N \N +3961 en Payment Term Line Relative Delta account.invoice.payment_term.line.delta,name -1 model account_invoice f \N \N \N \N \N +3969 en Test Payment Term account.invoice.payment_term.test,name -1 model account_invoice f \N \N \N \N \N +3972 en Date account.invoice.payment_term.test,date -1 field account_invoice f \N \N \N \N \N +3973 en Payment Term account.invoice.payment_term.test,payment_term -1 field account_invoice f \N \N \N \N \N +3974 en Result account.invoice.payment_term.test,result -1 field account_invoice f \N \N \N \N \N +3976 en Amount account.invoice.payment_term.test.result,amount -1 field account_invoice f \N \N \N \N \N +3977 en Currency account.invoice.payment_term.test.result,currency -1 field account_invoice f \N \N \N \N \N +3978 en Date account.invoice.payment_term.test.result,date -1 field account_invoice f \N \N \N \N \N +3980 en Account account.invoice,account -1 field account_invoice f \N \N \N \N \N +3981 en Accounting Date account.invoice,accounting_date -1 field account_invoice f \N \N \N \N \N +3982 en Additional Moves account.invoice,additional_moves -1 field account_invoice f \N \N \N \N \N +3983 en Allow Cancel Invoice account.invoice,allow_cancel -1 field account_invoice f \N \N \N \N \N +3984 en Alternative Payee account.invoice,alternative_payees -1 field account_invoice f \N \N \N \N \N +3985 en Amount to Pay account.invoice,amount_to_pay -1 field account_invoice f \N \N \N \N \N +3986 en Amount to Pay Today account.invoice,amount_to_pay_today -1 field account_invoice f \N \N \N \N \N +3987 en Cancel Move account.invoice,cancel_move -1 field account_invoice f \N \N \N \N \N +3988 en Comment account.invoice,comment -1 field account_invoice f \N \N \N \N \N +3989 en Company account.invoice,company -1 field account_invoice f \N \N \N \N \N +3990 en Company Party account.invoice,company_party -1 field account_invoice f \N \N \N \N \N +3991 en Currency account.invoice,currency -1 field account_invoice f \N \N \N \N \N +3992 en Currency Date account.invoice,currency_date -1 field account_invoice f \N \N \N \N \N +3993 en Description account.invoice,description -1 field account_invoice f \N \N \N \N \N +3994 en Has Payment Method account.invoice,has_payment_method -1 field account_invoice f \N \N \N \N \N +3995 en Has Report Cached account.invoice,has_report_cache -1 field account_invoice f \N \N \N \N \N +3996 en Invoice Address account.invoice,invoice_address -1 field account_invoice f \N \N \N \N \N +3997 en Invoice Date account.invoice,invoice_date -1 field account_invoice f \N \N \N \N \N +3998 en Invoice Report account.invoice,invoice_report_cache -1 field account_invoice f \N \N \N \N \N +3999 en Invoice Report ID account.invoice,invoice_report_cache_id -1 field account_invoice f \N \N \N \N \N +4000 en Invoice Report Format account.invoice,invoice_report_format -1 field account_invoice f \N \N \N \N \N +4001 en Invoice Report Revisions account.invoice,invoice_report_revisions -1 field account_invoice f \N \N \N \N \N +4002 en Journal account.invoice,journal -1 field account_invoice f \N \N \N \N \N +4003 en Lines account.invoice,lines -1 field account_invoice f \N \N \N \N \N +4004 en Lines to Pay account.invoice,lines_to_pay -1 field account_invoice f \N \N \N \N \N +4005 en Move account.invoice,move -1 field account_invoice f \N \N \N \N \N +4006 en Number account.invoice,number -1 field account_invoice f \N \N \N \N \N +4007 en Origins account.invoice,origins -1 field account_invoice f \N \N \N \N \N +4008 en Party account.invoice,party -1 field account_invoice f \N \N \N \N \N +4009 en Party Language account.invoice,party_lang -1 field account_invoice f \N \N \N \N \N +4010 en Party Tax Identifier account.invoice,party_tax_identifier -1 field account_invoice f \N \N \N \N \N +4011 en Payment Lines account.invoice,payment_lines -1 field account_invoice f \N \N \N \N \N +4012 en Payment Term account.invoice,payment_term -1 field account_invoice f \N \N \N \N \N +4013 en Payment Term Date account.invoice,payment_term_date -1 field account_invoice f \N \N \N \N \N +4014 en The date from which the payment term is calculated.\nLeave empty to use the invoice date. account.invoice,payment_term_date -1 help account_invoice f \N \N \N \N \N +4015 en Posted By account.invoice,posted_by -1 field account_invoice f \N \N \N \N \N +4016 en Reconciled account.invoice,reconciled -1 field account_invoice f \N \N \N \N \N +4017 en Payment Lines account.invoice,reconciliation_lines -1 field account_invoice f \N \N \N \N \N +4018 en Reference account.invoice,reference -1 field account_invoice f \N \N \N \N \N +4019 en Sequence account.invoice,sequence -1 field account_invoice f \N \N \N \N \N +4020 en State account.invoice,state -1 field account_invoice f \N \N \N \N \N +4021 en Draft account.invoice,state -1 selection account_invoice f \N \N \N \N \N +4022 en Validated account.invoice,state -1 selection account_invoice f \N \N \N \N \N +4023 en Posted account.invoice,state -1 selection account_invoice f \N \N \N \N \N +4024 en Paid account.invoice,state -1 selection account_invoice f \N \N \N \N \N +4025 en Cancelled account.invoice,state -1 selection account_invoice f \N \N \N \N \N +4026 en Tax account.invoice,tax_amount -1 field account_invoice f \N \N \N \N \N +4027 en Tax Cache account.invoice,tax_amount_cache -1 field account_invoice f \N \N \N \N \N +4028 en Tax Identifier account.invoice,tax_identifier -1 field account_invoice f \N \N \N \N \N +4029 en Tax Lines account.invoice,taxes -1 field account_invoice f \N \N \N \N \N +4030 en Total account.invoice,total_amount -1 field account_invoice f \N \N \N \N \N +4031 en Total Cache account.invoice,total_amount_cache -1 field account_invoice f \N \N \N \N \N +4032 en Type account.invoice,type -1 field account_invoice f \N \N \N \N \N +4033 en Customer account.invoice,type -1 selection account_invoice f \N \N \N \N \N +4034 en Supplier account.invoice,type -1 selection account_invoice f \N \N \N \N \N +4035 en Type account.invoice,type_name -1 field account_invoice f \N \N \N \N \N +4036 en Untaxed account.invoice,untaxed_amount -1 field account_invoice f \N \N \N \N \N +4037 en Untaxed Cache account.invoice,untaxed_amount_cache -1 field account_invoice f \N \N \N \N \N +4038 en Validated By account.invoice,validated_by -1 field account_invoice f \N \N \N \N \N +4040 en Invoice account.invoice-additional-account.move,invoice -1 field account_invoice f \N \N \N \N \N +4041 en Additional Move account.invoice-additional-account.move,move -1 field account_invoice f \N \N \N \N \N +4043 en Invoice account.invoice.alternative_payee,invoice -1 field account_invoice f \N \N \N \N \N +4044 en Payee account.invoice.alternative_payee,party -1 field account_invoice f \N \N \N \N \N +4046 en Invoice account.invoice-account.move.line,invoice -1 field account_invoice f \N \N \N \N \N +4047 en Invoice Account account.invoice-account.move.line,invoice_account -1 field account_invoice f \N \N \N \N \N +4048 en Invoice Alternative Payees account.invoice-account.move.line,invoice_alternative_payees -1 field account_invoice f \N \N \N \N \N +4049 en Invoice Party account.invoice-account.move.line,invoice_party -1 field account_invoice f \N \N \N \N \N +4050 en Payment Line account.invoice-account.move.line,line -1 field account_invoice f \N \N \N \N \N +4052 en Account account.invoice.line,account -1 field account_invoice f \N \N \N \N \N +4053 en Amount account.invoice.line,amount -1 field account_invoice f \N \N \N \N \N +4054 en Company account.invoice.line,company -1 field account_invoice f \N \N \N \N \N +4055 en Currency account.invoice.line,currency -1 field account_invoice f \N \N \N \N \N +4056 en Description account.invoice.line,description -1 field account_invoice f \N \N \N \N \N +4057 en Invoice account.invoice.line,invoice -1 field account_invoice f \N \N \N \N \N +4058 en Invoice Description account.invoice.line,invoice_description -1 field account_invoice f \N \N \N \N \N +4059 en Party account.invoice.line,invoice_party -1 field account_invoice f \N \N \N \N \N +4060 en Invoice State account.invoice.line,invoice_state -1 field account_invoice f \N \N \N \N \N +4061 en Invoice Taxes account.invoice.line,invoice_taxes -1 field account_invoice f \N \N \N \N \N +4062 en Invoice Type account.invoice.line,invoice_type -1 field account_invoice f \N \N \N \N \N +4063 en Note account.invoice.line,note -1 field account_invoice f \N \N \N \N \N +4064 en Origin account.invoice.line,origin -1 field account_invoice f \N \N \N \N \N +4065 en Party account.invoice.line,party -1 field account_invoice f \N \N \N \N \N +4066 en Party Language account.invoice.line,party_lang -1 field account_invoice f \N \N \N \N \N +4067 en Product account.invoice.line,product -1 field account_invoice f \N \N \N \N \N +4068 en Product UoM Category account.invoice.line,product_uom_category -1 field account_invoice f \N \N \N \N \N +4069 en The category of Unit of Measure for the product. account.invoice.line,product_uom_category -1 help account_invoice f \N \N \N \N \N +4070 en Quantity account.invoice.line,quantity -1 field account_invoice f \N \N \N \N \N +4071 en Summary account.invoice.line,summary -1 field account_invoice f \N \N \N \N \N +4072 en Taxes account.invoice.line,taxes -1 field account_invoice f \N \N \N \N \N +4073 en Taxes Date account.invoice.line,taxes_date -1 field account_invoice f \N \N \N \N \N +4074 en The date at which the taxes are computed.\nLeave empty for the accounting date. account.invoice.line,taxes_date -1 help account_invoice f \N \N \N \N \N +4075 en Taxes Deductible Rate account.invoice.line,taxes_deductible_rate -1 field account_invoice f \N \N \N \N \N +4076 en Type account.invoice.line,type -1 field account_invoice f \N \N \N \N \N +4077 en Line account.invoice.line,type -1 selection account_invoice f \N \N \N \N \N +4078 en Subtotal account.invoice.line,type -1 selection account_invoice f \N \N \N \N \N +4079 en Title account.invoice.line,type -1 selection account_invoice f \N \N \N \N \N +4080 en Comment account.invoice.line,type -1 selection account_invoice f \N \N \N \N \N +4081 en Unit account.invoice.line,unit -1 field account_invoice f \N \N \N \N \N +4082 en Unit Price account.invoice.line,unit_price -1 field account_invoice f \N \N \N \N \N +4084 en Invoice Line account.invoice.line-account.tax,line -1 field account_invoice f \N \N \N \N \N +4085 en Tax account.invoice.line-account.tax,tax -1 field account_invoice f \N \N \N \N \N +4087 en Account account.invoice.tax,account -1 field account_invoice f \N \N \N \N \N +4088 en Amount account.invoice.tax,amount -1 field account_invoice f \N \N \N \N \N +4089 en Base account.invoice.tax,base -1 field account_invoice f \N \N \N \N \N +4090 en Currency account.invoice.tax,currency -1 field account_invoice f \N \N \N \N \N +4091 en Description account.invoice.tax,description -1 field account_invoice f \N \N \N \N \N +4092 en Invoice account.invoice.tax,invoice -1 field account_invoice f \N \N \N \N \N +4093 en Invoice State account.invoice.tax,invoice_state -1 field account_invoice f \N \N \N \N \N +4094 en Legal Notice account.invoice.tax,legal_notice -1 field account_invoice f \N \N \N \N \N +4095 en Manual account.invoice.tax,manual -1 field account_invoice f \N \N \N \N \N +4096 en Sequence Number account.invoice.tax,sequence_number -1 field account_invoice f \N \N \N \N \N +4097 en Tax account.invoice.tax,tax -1 field account_invoice f \N \N \N \N \N +4099 en Amount account.invoice.pay.start,amount -1 field account_invoice f \N \N \N \N \N +4100 en Company account.invoice.pay.start,company -1 field account_invoice f \N \N \N \N \N +4101 en Currency account.invoice.pay.start,currency -1 field account_invoice f \N \N \N \N \N +4102 en Date account.invoice.pay.start,date -1 field account_invoice f \N \N \N \N \N +4103 en Description account.invoice.pay.start,description -1 field account_invoice f \N \N \N \N \N +4104 en Invoice Account account.invoice.pay.start,invoice_account -1 field account_invoice f \N \N \N \N \N +4105 en Payee account.invoice.pay.start,payee -1 field account_invoice f \N \N \N \N \N +4106 en Payees account.invoice.pay.start,payees -1 field account_invoice f \N \N \N \N \N +4107 en Payment Method account.invoice.pay.start,payment_method -1 field account_invoice f \N \N \N \N \N +4109 en Payment Amount account.invoice.pay.ask,amount -1 field account_invoice f \N \N \N \N \N +4110 en Write-Off Amount account.invoice.pay.ask,amount_writeoff -1 field account_invoice f \N \N \N \N \N +4111 en Company account.invoice.pay.ask,company -1 field account_invoice f \N \N \N \N \N +4112 en Currency account.invoice.pay.ask,currency -1 field account_invoice f \N \N \N \N \N +4113 en Invoice account.invoice.pay.ask,invoice -1 field account_invoice f \N \N \N \N \N +4114 en Lines account.invoice.pay.ask,lines -1 field account_invoice f \N \N \N \N \N +4115 en Lines to Pay account.invoice.pay.ask,lines_to_pay -1 field account_invoice f \N \N \N \N \N +4116 en Payment Lines account.invoice.pay.ask,payment_lines -1 field account_invoice f \N \N \N \N \N +4117 en Type account.invoice.pay.ask,type -1 field account_invoice f \N \N \N \N \N +4118 en Write-Off account.invoice.pay.ask,type -1 selection account_invoice f \N \N \N \N \N +4119 en Partial Payment account.invoice.pay.ask,type -1 selection account_invoice f \N \N \N \N \N +4120 en Overpayment account.invoice.pay.ask,type -1 selection account_invoice f \N \N \N \N \N +4121 en Write Off account.invoice.pay.ask,writeoff -1 field account_invoice f \N \N \N \N \N +4123 en Invoice Date account.invoice.credit.start,invoice_date -1 field account_invoice f \N \N \N \N \N +4124 en With Refund account.invoice.credit.start,with_refund -1 field account_invoice f \N \N \N \N \N +4125 en If true, the current invoice(s) will be cancelled. account.invoice.credit.start,with_refund -1 help account_invoice f \N \N \N \N \N +4126 en With Refund Allowed account.invoice.credit.start,with_refund_allowed -1 field account_invoice f \N \N \N \N \N +4128 en Date account.invoice.report.revision,date -1 field account_invoice f \N \N \N \N \N +4129 en File Name account.invoice.report.revision,filename -1 field account_invoice f \N \N \N \N \N +4130 en Invoice account.invoice.report.revision,invoice -1 field account_invoice f \N \N \N \N \N +4131 en Invoice Report account.invoice.report.revision,invoice_report_cache -1 field account_invoice f \N \N \N \N \N +4132 en Invoice Report ID account.invoice.report.revision,invoice_report_cache_id -1 field account_invoice f \N \N \N \N \N +4133 en Invoice Report Format account.invoice.report.revision,invoice_report_format -1 field account_invoice f \N \N \N \N \N +4134 en Invoice party.address,invoice -1 field account_invoice f \N \N \N \N \N +4135 en Invoice party.contact_mechanism,invoice -1 field account_invoice f \N \N \N \N \N +4136 en Customer Payment Term party.party,customer_payment_term -1 field account_invoice f \N \N \N \N \N +4137 en Payment Terms party.party,payment_terms -1 field account_invoice f \N \N \N \N \N +4138 en Supplier Payment Term party.party,supplier_payment_term -1 field account_invoice f \N \N \N \N \N +4140 en Customer Payment Term party.party.payment_term,customer_payment_term -1 field account_invoice f \N \N \N \N \N +4141 en Party party.party.payment_term,party -1 field account_invoice f \N \N \N \N \N +4142 en Supplier Payment Term party.party.payment_term,supplier_payment_term -1 field account_invoice f \N \N \N \N \N +4143 en Default Customer Payment Term account.configuration,default_customer_payment_term -1 field account_invoice f \N \N \N \N \N +4145 en Company account.configuration.default_payment_term,company -1 field account_invoice f \N \N \N \N \N +4146 en Default Customer Payment Term account.configuration.default_payment_term,default_customer_payment_term -1 field account_invoice f \N \N \N \N \N +4148 en Company account.fiscalyear.invoice_sequence,company -1 field account_invoice f \N \N \N \N \N +4149 en Fiscal Year account.fiscalyear.invoice_sequence,fiscalyear -1 field account_invoice f \N \N \N \N \N +4150 en Supplier Credit Note Sequence account.fiscalyear.invoice_sequence,in_credit_note_sequence -1 field account_invoice f \N \N \N \N \N +4151 en Supplier Invoice Sequence account.fiscalyear.invoice_sequence,in_invoice_sequence -1 field account_invoice f \N \N \N \N \N +4152 en Customer Credit Note Sequence account.fiscalyear.invoice_sequence,out_credit_note_sequence -1 field account_invoice f \N \N \N \N \N +4153 en Customer Invoice Sequence account.fiscalyear.invoice_sequence,out_invoice_sequence -1 field account_invoice f \N \N \N \N \N +4154 en Period account.fiscalyear.invoice_sequence,period -1 field account_invoice f \N \N \N \N \N +4155 en Invoice Sequences account.fiscalyear,invoice_sequences -1 field account_invoice f \N \N \N \N \N +4156 en Invoice Payment account.move.line,invoice_payment -1 field account_invoice f \N \N \N \N \N +4157 en Invoice Payments account.move.line,invoice_payments -1 field account_invoice f \N \N \N \N \N +4159 en Company account.invoice.payment.method,company -1 field account_invoice f \N \N \N \N \N +4160 en Credit Account account.invoice.payment.method,credit_account -1 field account_invoice f \N \N \N \N \N +4161 en Debit Account account.invoice.payment.method,debit_account -1 field account_invoice f \N \N \N \N \N +4162 en Journal account.invoice.payment.method,journal -1 field account_invoice f \N \N \N \N \N +4163 en Name account.invoice.payment.method,name -1 field account_invoice f \N \N \N \N \N +4164 en Cancel Customer Invoice company.company,cancel_invoice_out -1 field account_invoice f \N \N \N \N \N +4165 en Allow cancelling move of customer invoice. company.company,cancel_invoice_out -1 help account_invoice f \N \N \N \N \N +4166 en Purchase Taxes as Expense company.company,purchase_taxes_expense -1 field account_invoice f \N \N \N \N \N +4167 en Check to book purchase taxes as expense. company.company,purchase_taxes_expense -1 help account_invoice f \N \N \N \N \N +4170 en OK account.invoice.pay,ask,pay -1 wizard_button account_invoice f \N \N \N \N \N +4171 en Cancel account.invoice.pay,start,end -1 wizard_button account_invoice f \N \N \N \N \N +4172 en OK account.invoice.pay,start,choice -1 wizard_button account_invoice f \N \N \N \N \N +4173 en Cancel account.invoice.credit,start,end -1 wizard_button account_invoice f \N \N \N \N \N +4175 en Invoices ir.ui.menu,name 156 Invoices model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4176 en Pay Invoice ir.action,name 211 Pay Invoice model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4177 en Invoices ir.action,name 212 Invoices model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4178 en Customer Invoices ir.action,name 213 Customer Invoices model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4179 en Draft ir.action.act_window.domain,name 39 Draft model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4180 en Validated ir.action.act_window.domain,name 40 Validated model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4181 en Posted ir.action.act_window.domain,name 41 Posted model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4182 en All ir.action.act_window.domain,name 42 All model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4183 en Customer Invoices ir.ui.menu,name 157 Customer Invoices model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4184 en Supplier Invoices ir.action,name 214 Supplier Invoices model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4185 en Draft ir.action.act_window.domain,name 43 Draft model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4186 en Validated ir.action.act_window.domain,name 44 Validated model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4187 en Posted ir.action.act_window.domain,name 45 Posted model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4188 en All ir.action.act_window.domain,name 46 All model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4189 en Supplier Invoices ir.ui.menu,name 158 Supplier Invoices model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4190 en Invoices ir.action,name 215 Invoices model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4191 en Pending ir.action.act_window.domain,name 47 Pending model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4192 en Paid ir.action.act_window.domain,name 48 Paid model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4193 en All ir.action.act_window.domain,name 49 All model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4194 en Cancel ir.model.button,string 72 Cancel model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4195 en Are you sure you want to cancel the invoices? ir.model.button,confirm 72 Are you sure you want to cancel the invoices? model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4196 en Cancel the invoice ir.model.button,help 72 Cancel the invoice model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4197 en Draft ir.model.button,string 73 Draft model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4198 en Validate ir.model.button,string 74 Validate model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4199 en Also known as Pro Forma ir.model.button,help 74 Also known as Pro Forma model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4200 en Post ir.model.button,string 75 Post model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4201 en Are you sure you want to post the invoices? ir.model.button,confirm 75 Are you sure you want to post the invoices? model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4202 en Pay ir.model.button,string 76 Pay model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4203 en Reschedule ir.model.button,string 77 Reschedule model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4204 en Modify Payee ir.model.button,string 78 Modify Payee model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4205 en Process ir.model.button,string 79 Process model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4206 en Invoice (revised) ir.action,name 216 Invoice (revised) model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4207 en Invoice ir.action,name 217 Invoice model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4208 en Invoice ir.sequence.type,name 13 Invoice model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4298 en Payment Term purchase.purchase,payment_term -1 field purchase f \N \N \N \N \N +4174 en Credit account.invoice.credit,start,credit -1 wizard_button account_invoice f \N \N \N \N \N +2612 en Cancel account.fiscalyear.renew,start,end -1 wizard_button account f \N \N \N \N \N +2613 en Create account.fiscalyear.renew,start,create_ -1 wizard_button account f \N \N \N \N \N +2599 en Cancel account.move.line.reschedule,preview,end -1 wizard_button account f \N \N \N \N \N +2600 en Reschedule account.move.line.reschedule,preview,reschedule -1 wizard_button account f \N \N \N \N \N +2601 en Cancel account.move.line.reschedule,start,end -1 wizard_button account f \N \N \N \N \N +4209 en Invoice Payment Methods ir.action,name 218 Invoice Payment Methods model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4210 en Invoice Payment Methods ir.ui.menu,name 159 Invoice Payment Methods model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4211 en User in companies ir.rule.group,name 44 User in companies model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4212 en Credit ir.action,name 219 Credit model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4213 en User in companies ir.rule.group,name 45 User in companies model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4214 en User in companies ir.rule.group,name 46 User in companies model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4215 en Reschedule Lines to Pay ir.action,name 220 Reschedule Lines to Pay model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4216 en Delegate Lines to Pay ir.action,name 221 Delegate Lines to Pay model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4217 en Payment Terms ir.ui.menu,name 160 Payment Terms model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4218 en Payment Terms ir.action,name 222 Payment Terms model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4219 en Payment Terms ir.ui.menu,name 161 Payment Terms model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4220 en Test Payment Term ir.action,name 223 Test Payment Term model account_invoice f 2024-04-13 20:39:14.878373 0 \N 2024-04-13 20:39:14.878373 0 +4221 en Test Payment Term ir.ui.menu,name 162 Test Payment Term model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4222 en User in companies ir.rule.group,name 47 User in companies model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4223 en To save payment term "%(payment_term)s", you must append a last remainder line. ir.message,text 294 To save payment term "%(payment_term)s", you must append a last remainder line. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4224 en To compute terms, you must append a remainder line on payment term "%(payment_term)s". ir.message,text 295 To compute terms, you must append a remainder line on payment term "%(payment_term)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4225 en The ratio and divisor are not consistent on line "%(line)s". ir.message,text 296 The ratio and divisor are not consistent on line "%(line)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4226 en You cannot erase party "%(party)s" while they have pending invoices with company "%(company)s". ir.message,text 297 You cannot erase party "%(party)s" while they have pending invoices with company "%(company)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4227 en The taxes on invoice "%(invoice)s" are not valid, you must save it again to force them to be recalculated. ir.message,text 298 The taxes on invoice "%(invoice)s" are not valid, you must save it again to force them to be recalculated. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4228 en To post invoice "%(invoice)s", you must define a sequence on fiscal year "%(fiscalyear)s". ir.message,text 299 To post invoice "%(invoice)s", you must define a sequence on fiscal year "%(fiscalyear)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4229 en To number the invoice "%(invoice)s", you must set an invoice date after "%(date)s" because the sequence "%(sequence)s" has already been used for invoice "%(after_invoice)s". ir.message,text 300 To number the invoice "%(invoice)s", you must set an invoice date after "%(date)s" because the sequence "%(sequence)s" has already been used for invoice "%(after_invoice)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4230 en You cannot modify invoice "%(invoice)s" because it is posted, paid or cancelled. ir.message,text 301 You cannot modify invoice "%(invoice)s" because it is posted, paid or cancelled. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4231 en To delete invoice "%(invoice)s" you must cancel it. ir.message,text 302 To delete invoice "%(invoice)s" you must cancel it. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4232 en You cannot delete invoice "%(invoice)s" because it has a number. ir.message,text 303 You cannot delete invoice "%(invoice)s" because it has a number. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4233 en You cannot cancel customer invoice "%(invoice)s" because it is posted and company setup does not allow it. ir.message,text 304 You cannot cancel customer invoice "%(invoice)s" because it is posted and company setup does not allow it. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4234 en Payment lines amount on invoice "%(invoice)s" can not be greater than the invoice amount. ir.message,text 305 Payment lines amount on invoice "%(invoice)s" can not be greater than the invoice amount. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4235 en You cannot add/remove payment lines on paid invoice "%(invoice)s". ir.message,text 306 You cannot add/remove payment lines on paid invoice "%(invoice)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4236 en You cannot refund invoice "%(invoice)s" because it is not posted. ir.message,text 307 You cannot refund invoice "%(invoice)s" because it is not posted. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4237 en You cannot modify line "%(line)s" because its invoice "%(invoice)s" is posted, paid or cancelled. ir.message,text 308 You cannot modify line "%(line)s" because its invoice "%(invoice)s" is posted, paid or cancelled. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4238 en You cannot add lines to invoice "%(invoice)s" because it is no longer in a draft state. ir.message,text 309 You cannot add lines to invoice "%(invoice)s" because it is no longer in a draft state. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4239 en You cannot modify tax "%(tax)s" because its invoice "%(invoice)s" is posted, paid or cancelled. ir.message,text 310 You cannot modify tax "%(tax)s" because its invoice "%(invoice)s" is posted, paid or cancelled. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4240 en You cannot add taxes to invoice "%(invoice)s" because it is no longer in a draft state. ir.message,text 311 You cannot add taxes to invoice "%(invoice)s" because it is no longer in a draft state. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4241 en A tax can be added only once to an invoice line. ir.message,text 312 A tax can be added only once to an invoice line. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4242 en You cannot add a partial payment on invoice "%(invoice)s" with an amount greater than the amount to pay "%(amount_to_pay)s". ir.message,text 313 You cannot add a partial payment on invoice "%(invoice)s" with an amount greater than the amount to pay "%(amount_to_pay)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4243 en You cannot overpay invoice "%(invoice)s" because there is no more left to pay. ir.message,text 314 You cannot overpay invoice "%(invoice)s" because there is no more left to pay. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4244 en A payment line can be linked to only one invoice. ir.message,text 315 A payment line can be linked to only one invoice. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4245 en The invoice "%(invoice)s" generates a payment date "%(date)s" in the past. ir.message,text 316 The invoice "%(invoice)s" generates a payment date "%(date)s" in the past. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4246 en To close the periods you must post the invoices "%(invoices)s". ir.message,text 317 To close the periods you must post the invoices "%(invoices)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4247 en The invoices "%(invoices)s" have an invoice date in the future. ir.message,text 318 The invoices "%(invoices)s" have an invoice date in the future. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4248 en The invoice "%(invoice)s" is similar to invoice "%(similar)s". ir.message,text 319 The invoice "%(invoice)s" is similar to invoice "%(similar)s". model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4249 en The moves "%(moves)s" have the posted invoices "%(invoices)s" as origin. ir.message,text 320 The moves "%(moves)s" have the posted invoices "%(invoices)s" as origin. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4250 en Cancelling them will reconcile the move lines thus paying the invoices. You might want to cancel the invoices first. ir.message,text 321 Cancelling them will reconcile the move lines thus paying the invoices. You might want to cancel the invoices first. model account_invoice f 2024-04-13 20:39:14.878373 0 \N \N \N +4251 en Shipments account.invoice,shipments -1 field account_invoice_stock f \N \N \N \N \N +4267 en Purchase purchase.purchase,name -1 model purchase f \N \N \N \N \N +4253 en Invoice Line account.invoice.line-stock.move,invoice_line -1 field account_invoice_stock f \N \N \N \N \N +4254 en Stock Move account.invoice.line-stock.move,stock_move -1 field account_invoice_stock f \N \N \N \N \N +4255 en Correction account.invoice.line,correction -1 field account_invoice_stock f \N \N \N \N \N +4256 en Check to correct price of already posted invoice. account.invoice.line,correction -1 help account_invoice_stock f \N \N \N \N \N +4257 en Shipments account.invoice.line,shipments -1 field account_invoice_stock f \N \N \N \N \N +4258 en Stock Moves account.invoice.line,stock_moves -1 field account_invoice_stock f \N \N \N \N \N +4259 en Warehouse account.invoice.line,warehouse -1 field account_invoice_stock f \N \N \N \N \N +4260 en Invoice Lines stock.move,invoice_lines -1 field account_invoice_stock f \N \N \N \N \N +4261 en Invoice Types stock.move,invoice_types -1 field account_invoice_stock f \N \N \N \N \N +4262 en Purchase stock.move,purchase -1 field purchase f \N \N \N \N \N +4263 en Exception State stock.move,purchase_exception_state -1 field purchase f \N \N \N \N \N +4264 en Ignored stock.move,purchase_exception_state -1 selection purchase f \N \N \N \N \N +4265 en Recreated stock.move,purchase_exception_state -1 selection purchase f \N \N \N \N \N +4266 en Supplier stock.move,supplier -1 field purchase f \N \N \N \N \N +4268 en Comment purchase.purchase,comment -1 field purchase f \N \N \N \N \N +4269 en Company purchase.purchase,company -1 field purchase f \N \N \N \N \N +4270 en Confirmed By purchase.purchase,confirmed_by -1 field purchase f \N \N \N \N \N +4271 en Contact purchase.purchase,contact -1 field purchase f \N \N \N \N \N +4272 en Currency purchase.purchase,currency -1 field purchase f \N \N \N \N \N +4273 en Delivery Date purchase.purchase,delivery_date -1 field purchase f \N \N \N \N \N +4274 en The default delivery date for each line. purchase.purchase,delivery_date -1 help purchase f \N \N \N \N \N +4275 en Description purchase.purchase,description -1 field purchase f \N \N \N \N \N +4276 en Invoice Address purchase.purchase,invoice_address -1 field purchase f \N \N \N \N \N +4277 en Invoice Method purchase.purchase,invoice_method -1 field purchase f \N \N \N \N \N +4278 en Manual purchase.purchase,invoice_method -1 selection purchase f \N \N \N \N \N +4279 en Based On Order purchase.purchase,invoice_method -1 selection purchase f \N \N \N \N \N +4280 en Based On Shipment purchase.purchase,invoice_method -1 selection purchase f \N \N \N \N \N +4281 en Invoice Party purchase.purchase,invoice_party -1 field purchase f \N \N \N \N \N +4282 en Invoice State purchase.purchase,invoice_state -1 field purchase f \N \N \N \N \N +4283 en None purchase.purchase,invoice_state -1 selection purchase f \N \N \N \N \N +4284 en Pending purchase.purchase,invoice_state -1 selection purchase f \N \N \N \N \N +4285 en Awaiting Payment purchase.purchase,invoice_state -1 selection purchase f \N \N \N \N \N +4286 en Partially Paid purchase.purchase,invoice_state -1 selection purchase f \N \N \N \N \N +4287 en Paid purchase.purchase,invoice_state -1 selection purchase f \N \N \N \N \N +4288 en Exception purchase.purchase,invoice_state -1 selection purchase f \N \N \N \N \N +4289 en Invoices purchase.purchase,invoices -1 field purchase f \N \N \N \N \N +4290 en Ignored Invoices purchase.purchase,invoices_ignored -1 field purchase f \N \N \N \N \N +4291 en Recreated Invoices purchase.purchase,invoices_recreated -1 field purchase f \N \N \N \N \N +4292 en Lines purchase.purchase,lines -1 field purchase f \N \N \N \N \N +4293 en Moves purchase.purchase,moves -1 field purchase f \N \N \N \N \N +4294 en Number purchase.purchase,number -1 field purchase f \N \N \N \N \N +4295 en Origin purchase.purchase,origin -1 field purchase f \N \N \N \N \N +4296 en Party purchase.purchase,party -1 field purchase f \N \N \N \N \N +4297 en Party Language purchase.purchase,party_lang -1 field purchase f \N \N \N \N \N +4299 en Purchase Date purchase.purchase,purchase_date -1 field purchase f \N \N \N \N \N +4300 en Quoted By purchase.purchase,quoted_by -1 field purchase f \N \N \N \N \N +4301 en Reference purchase.purchase,reference -1 field purchase f \N \N \N \N \N +4302 en Shipment Returns purchase.purchase,shipment_returns -1 field purchase f \N \N \N \N \N +4303 en Shipment State purchase.purchase,shipment_state -1 field purchase f \N \N \N \N \N +4304 en None purchase.purchase,shipment_state -1 selection purchase f \N \N \N \N \N +4305 en Waiting purchase.purchase,shipment_state -1 selection purchase f \N \N \N \N \N +4306 en Partially Shipped purchase.purchase,shipment_state -1 selection purchase f \N \N \N \N \N +4307 en Received purchase.purchase,shipment_state -1 selection purchase f \N \N \N \N \N +4308 en Exception purchase.purchase,shipment_state -1 selection purchase f \N \N \N \N \N +4309 en Shipments purchase.purchase,shipments -1 field purchase f \N \N \N \N \N +4310 en State purchase.purchase,state -1 field purchase f \N \N \N \N \N +4311 en Draft purchase.purchase,state -1 selection purchase f \N \N \N \N \N +4312 en Quotation purchase.purchase,state -1 selection purchase f \N \N \N \N \N +4313 en Confirmed purchase.purchase,state -1 selection purchase f \N \N \N \N \N +4314 en Processing purchase.purchase,state -1 selection purchase f \N \N \N \N \N +4315 en Done purchase.purchase,state -1 selection purchase f \N \N \N \N \N +4316 en Cancelled purchase.purchase,state -1 selection purchase f \N \N \N \N \N +4317 en Tax purchase.purchase,tax_amount -1 field purchase f \N \N \N \N \N +4318 en Tax Cache purchase.purchase,tax_amount_cache -1 field purchase f \N \N \N \N \N +4319 en Total purchase.purchase,total_amount -1 field purchase f \N \N \N \N \N +4320 en Total Cache purchase.purchase,total_amount_cache -1 field purchase f \N \N \N \N \N +4321 en Untaxed purchase.purchase,untaxed_amount -1 field purchase f \N \N \N \N \N +4322 en Untaxed Cache purchase.purchase,untaxed_amount_cache -1 field purchase f \N \N \N \N \N +4323 en Warehouse purchase.purchase,warehouse -1 field purchase f \N \N \N \N \N +4325 en Invoice purchase.purchase-ignored-account.invoice,invoice -1 field purchase f \N \N \N \N \N +4326 en Purchase purchase.purchase-ignored-account.invoice,purchase -1 field purchase f \N \N \N \N \N +4328 en Invoice purchase.purchase-recreated-account.invoice,invoice -1 field purchase f \N \N \N \N \N +4329 en Purchase purchase.purchase-recreated-account.invoice,purchase -1 field purchase f \N \N \N \N \N +4331 en Actual Quantity purchase.line,actual_quantity -1 field purchase f \N \N \N \N \N +4332 en Amount purchase.line,amount -1 field purchase f \N \N \N \N \N +4333 en Company purchase.line,company -1 field purchase f \N \N \N \N \N +4334 en Currency purchase.line,currency -1 field purchase f \N \N \N \N \N +4335 en Delivery Date purchase.line,delivery_date -1 field purchase f \N \N \N \N \N +4336 en Edit Delivery Date purchase.line,delivery_date_edit -1 field purchase f \N \N \N \N \N +4337 en Check to edit the delivery date. purchase.line,delivery_date_edit -1 help purchase f \N \N \N \N \N +4338 en Delivery Date purchase.line,delivery_date_store -1 field purchase f \N \N \N \N \N +4339 en Description purchase.line,description -1 field purchase f \N \N \N \N \N +4340 en From Location purchase.line,from_location -1 field purchase f \N \N \N \N \N +4341 en Invoice Lines purchase.line,invoice_lines -1 field purchase f \N \N \N \N \N +4342 en Moves purchase.line,moves -1 field purchase f \N \N \N \N \N +4343 en Moves Exception purchase.line,moves_exception -1 field purchase f \N \N \N \N \N +4344 en Ignored Moves purchase.line,moves_ignored -1 field purchase f \N \N \N \N \N +4345 en Moves Progress purchase.line,moves_progress -1 field purchase f \N \N \N \N \N +4346 en Recreated Moves purchase.line,moves_recreated -1 field purchase f \N \N \N \N \N +4347 en Note purchase.line,note -1 field purchase f \N \N \N \N \N +4348 en Product purchase.line,product -1 field purchase f \N \N \N \N \N +4349 en Supplier's Product purchase.line,product_supplier -1 field purchase f \N \N \N \N \N +4350 en Product UoM Category purchase.line,product_uom_category -1 field purchase f \N \N \N \N \N +4351 en The category of Unit of Measure for the product. purchase.line,product_uom_category -1 help purchase f \N \N \N \N \N +4352 en Purchase purchase.line,purchase -1 field purchase f \N \N \N \N \N +4353 en Purchase Date purchase.line,purchase_date -1 field purchase f \N \N \N \N \N +4354 en Purchase State purchase.line,purchase_state -1 field purchase f \N \N \N \N \N +4355 en Quantity purchase.line,quantity -1 field purchase f \N \N \N \N \N +4356 en Summary purchase.line,summary -1 field purchase f \N \N \N \N \N +4357 en Supplier purchase.line,supplier -1 field purchase f \N \N \N \N \N +4358 en Taxes purchase.line,taxes -1 field purchase f \N \N \N \N \N +4359 en To Location purchase.line,to_location -1 field purchase f \N \N \N \N \N +4360 en Type purchase.line,type -1 field purchase f \N \N \N \N \N +4361 en Line purchase.line,type -1 selection purchase f \N \N \N \N \N +4362 en Subtotal purchase.line,type -1 selection purchase f \N \N \N \N \N +4363 en Title purchase.line,type -1 selection purchase f \N \N \N \N \N +4364 en Comment purchase.line,type -1 selection purchase f \N \N \N \N \N +4365 en Unit purchase.line,unit -1 field purchase f \N \N \N \N \N +4366 en Unit Price purchase.line,unit_price -1 field purchase f \N \N \N \N \N +4367 en Warehouse purchase.line,warehouse -1 field purchase f \N \N \N \N \N +4369 en Purchase Line purchase.line-account.tax,line -1 field purchase f \N \N \N \N \N +4370 en Tax purchase.line-account.tax,tax -1 field purchase f \N \N \N \N \N +4372 en Move purchase.line-ignored-stock.move,move -1 field purchase f \N \N \N \N \N +4373 en Purchase Line purchase.line-ignored-stock.move,purchase_line -1 field purchase f \N \N \N \N \N +4375 en Move purchase.line-recreated-stock.move,move -1 field purchase f \N \N \N \N \N +4376 en Purchase Line purchase.line-recreated-stock.move,purchase_line -1 field purchase f \N \N \N \N \N +4377 en Suppliers product.template,product_suppliers -1 field purchase f \N \N \N \N \N +4378 en Purchasable product.template,purchasable -1 field purchase f \N \N \N \N \N +4379 en Purchase UoM product.template,purchase_uom -1 field purchase f \N \N \N \N \N +4380 en The default Unit of Measure for purchases. product.template,purchase_uom -1 help purchase f \N \N \N \N \N +4381 en Last Purchase Price product.product,last_purchase_price_uom -1 field purchase f \N \N \N \N \N +4382 en Suppliers product.product,product_suppliers -1 field purchase f \N \N \N \N \N +4383 en Purchasable product.product,purchasable -1 field purchase f \N \N \N \N \N +4384 en Purchase Price product.product,purchase_price_uom -1 field purchase f \N \N \N \N \N +4385 en Purchase UoM product.product,purchase_uom -1 field purchase f \N \N \N \N \N +4386 en The default Unit of Measure for purchases. product.product,purchase_uom -1 help purchase f \N \N \N \N \N +4388 en Code purchase.product_supplier,code -1 field purchase f \N \N \N \N \N +4389 en Company purchase.product_supplier,company -1 field purchase f \N \N \N \N \N +4390 en Currency purchase.product_supplier,currency -1 field purchase f \N \N \N \N \N +4391 en Lead Time purchase.product_supplier,lead_time -1 field purchase f \N \N \N \N \N +4392 en The time from confirming the purchase order to receiving the products.\nIf empty the lead time of the supplier is used. purchase.product_supplier,lead_time -1 help purchase f \N \N \N \N \N +4393 en Name purchase.product_supplier,name -1 field purchase f \N \N \N \N \N +4394 en Supplier purchase.product_supplier,party -1 field purchase f \N \N \N \N \N +4395 en Prices purchase.product_supplier,prices -1 field purchase f \N \N \N \N \N +4396 en Add price for different criteria.\nThe last matching line is used. purchase.product_supplier,prices -1 help purchase f \N \N \N \N \N +4397 en Variant purchase.product_supplier,product -1 field purchase f \N \N \N \N \N +4398 en Product purchase.product_supplier,template -1 field purchase f \N \N \N \N \N +4399 en Unit purchase.product_supplier,unit -1 field purchase f \N \N \N \N \N +4401 en Currency purchase.product_supplier.price,currency -1 field purchase f \N \N \N \N \N +4402 en Supplier purchase.product_supplier.price,product_supplier -1 field purchase f \N \N \N \N \N +4403 en Quantity purchase.product_supplier.price,quantity -1 field purchase f \N \N \N \N \N +4404 en Minimal quantity. purchase.product_supplier.price,quantity -1 help purchase f \N \N \N \N \N +4405 en Unit purchase.product_supplier.price,unit -1 field purchase f \N \N \N \N \N +4406 en The unit in which the quantity is specified. purchase.product_supplier.price,unit -1 help purchase f \N \N \N \N \N +4407 en Unit Price purchase.product_supplier.price,unit_price -1 field purchase f \N \N \N \N \N +4409 en Domain Moves purchase.handle.shipment.exception.ask,domain_moves -1 field purchase f \N \N \N \N \N +4410 en Recreate Moves purchase.handle.shipment.exception.ask,recreate_moves -1 field purchase f \N \N \N \N \N +4411 en The selected moves will be recreated. The other ones will be ignored. purchase.handle.shipment.exception.ask,recreate_moves -1 help purchase f \N \N \N \N \N +4413 en Domain Invoices purchase.handle.invoice.exception.ask,domain_invoices -1 field purchase f \N \N \N \N \N +4414 en Recreate Invoices purchase.handle.invoice.exception.ask,recreate_invoices -1 field purchase f \N \N \N \N \N +4415 en The selected invoices will be recreated. The other ones will be ignored. purchase.handle.invoice.exception.ask,recreate_invoices -1 help purchase f \N \N \N \N \N +4417 en Invoice Method purchase.configuration,purchase_invoice_method -1 field purchase f \N \N \N \N \N +4418 en Process Purchase after purchase.configuration,purchase_process_after -1 field purchase f \N \N \N \N \N +4419 en The grace period during which confirmed purchase can still be reset to draft.\nApplied only if a worker queue is activated. purchase.configuration,purchase_process_after -1 help purchase f \N \N \N \N \N +4420 en Purchase Sequence purchase.configuration,purchase_sequence -1 field purchase f \N \N \N \N \N +4422 en Company purchase.configuration.sequence,company -1 field purchase f \N \N \N \N \N +4423 en Purchase Sequence purchase.configuration.sequence,purchase_sequence -1 field purchase f \N \N \N \N \N +4425 en Invoice Method purchase.configuration.purchase_method,purchase_invoice_method -1 field purchase f \N \N \N \N \N +4426 en Exception State account.invoice,purchase_exception_state -1 field purchase f \N \N \N \N \N +4427 en Ignored account.invoice,purchase_exception_state -1 selection purchase f \N \N \N \N \N +4428 en Recreated account.invoice,purchase_exception_state -1 selection purchase f \N \N \N \N \N +4429 en Purchases account.invoice,purchases -1 field purchase f \N \N \N \N \N +4430 en Supplier Return stock.location,supplier_return_location -1 field purchase f \N \N \N \N \N +4431 en If empty the Storage location is used. stock.location,supplier_return_location -1 help purchase f \N \N \N \N \N +4432 en Customer Code party.party,customer_code -1 field purchase f \N \N \N \N \N +4433 en The code the party as supplier has assigned to the company as customer. party.party,customer_code -1 help purchase f \N \N \N \N \N +4434 en Customer Codes party.party,customer_codes -1 field purchase f \N \N \N \N \N +4435 en Supplier Currencies party.party,supplier_currencies -1 field purchase f \N \N \N \N \N +4436 en Supplier Currency party.party,supplier_currency -1 field purchase f \N \N \N \N \N +4437 en Default currency for purchases from this party. party.party,supplier_currency -1 help purchase f \N \N \N \N \N +4438 en Lead Time party.party,supplier_lead_time -1 field purchase f \N \N \N \N \N +4439 en The time from confirming the purchase order to receiving the goods from the party when used as a supplier.\nUsed if no lead time is set on the product supplier. party.party,supplier_lead_time -1 help purchase f \N \N \N \N \N +4440 en Lead Times party.party,supplier_lead_times -1 field purchase f \N \N \N \N \N +4442 en Company party.party.customer_code,company -1 field purchase f \N \N \N \N \N +4443 en Customer Code party.party.customer_code,customer_code -1 field purchase f \N \N \N \N \N +4444 en Party party.party.customer_code,party -1 field purchase f \N \N \N \N \N +4446 en Company party.party.supplier_lead_time,company -1 field purchase f \N \N \N \N \N +4447 en Party party.party.supplier_lead_time,party -1 field purchase f \N \N \N \N \N +4448 en Lead Time party.party.supplier_lead_time,supplier_lead_time -1 field purchase f \N \N \N \N \N +4449 en The time from confirming the purchase order to receiving the goods from the party when used as a supplier.\nUsed if no lead time is set on the product supplier. party.party.supplier_lead_time,supplier_lead_time -1 help purchase f \N \N \N \N \N +4451 en Party party.party.supplier_currency,party -1 field purchase f \N \N \N \N \N +4452 en Supplier Currency party.party.supplier_currency,supplier_currency -1 field purchase f \N \N \N \N \N +4453 en Default currency for purchases from this party. party.party.supplier_currency,supplier_currency -1 help purchase f \N \N \N \N \N +4456 en Company purchase.reporting.context,company -1 field purchase f \N \N \N \N \N +4457 en From Date purchase.reporting.context,from_date -1 field purchase f \N \N \N \N \N +4458 en Period purchase.reporting.context,period -1 field purchase f \N \N \N \N \N +4459 en Year purchase.reporting.context,period -1 selection purchase f \N \N \N \N \N +4460 en Month purchase.reporting.context,period -1 selection purchase f \N \N \N \N \N +4461 en Day purchase.reporting.context,period -1 selection purchase f \N \N \N \N \N +4462 en To Date purchase.reporting.context,to_date -1 field purchase f \N \N \N \N \N +4463 en Warehouse purchase.reporting.context,warehouse -1 field purchase f \N \N \N \N \N +4467 en Supplier purchase.reporting.supplier,supplier -1 field purchase f \N \N \N \N \N +4469 en Supplier purchase.reporting.supplier.time_series,supplier -1 field purchase f \N \N \N \N \N +4471 en Product purchase.reporting.product,product -1 field purchase f \N \N \N \N \N +4472 en Supplier's Product purchase.reporting.product,product_supplier -1 field purchase f \N \N \N \N \N +4474 en Product purchase.reporting.product.time_series,product -1 field purchase f \N \N \N \N \N +4475 en Supplier's Product purchase.reporting.product.time_series,product_supplier -1 field purchase f \N \N \N \N \N +4441 en Party Customer Code party.party.customer_code,name -1 model purchase f \N \N \N \N \N +4445 en Supplier Lead Time party.party.supplier_lead_time,name -1 model purchase f \N \N \N \N \N +4450 en Party Supplier Currency party.party.supplier_currency,name -1 model purchase f \N \N \N \N \N +4454 en Return Purchase purchase.return_purchase.start,name -1 model purchase f \N \N \N \N \N +4484 en Purchase res.group,name 14 Purchase model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4485 en Purchase Administrator res.group,name 15 Purchase Administrator model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4486 en Purchases ir.ui.menu,name 163 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4487 en Reporting ir.ui.menu,name 164 Reporting model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4488 en Handle Shipment Exception ir.action,name 224 Handle Shipment Exception model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4576 en Comment sale.sale,comment -1 field sale f \N \N \N \N \N +4489 en Handle Invoice Exception ir.action,name 225 Handle Invoice Exception model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4490 en Purchases ir.action,name 226 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4491 en Draft ir.action.act_window.domain,name 50 Draft model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4492 en Quotation ir.action.act_window.domain,name 51 Quotation model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4493 en Confirmed ir.action.act_window.domain,name 52 Confirmed model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4494 en Processing ir.action.act_window.domain,name 53 Processing model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4495 en Exception ir.action.act_window.domain,name 54 Exception model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4496 en All ir.action.act_window.domain,name 55 All model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4497 en Purchases ir.ui.menu,name 165 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4498 en Purchases ir.action,name 227 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4499 en Purchases ir.action,name 228 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4500 en Pending ir.action.act_window.domain,name 56 Pending model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4501 en Done ir.action.act_window.domain,name 57 Done model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4502 en All ir.action.act_window.domain,name 58 All model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4503 en Purchases ir.action,name 229 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4504 en Cancel ir.model.button,string 80 Cancel model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4505 en Draft ir.model.button,string 81 Draft model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4506 en Quote ir.model.button,string 82 Quote model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4507 en Confirm ir.model.button,string 83 Confirm model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4508 en Process ir.model.button,string 84 Process model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4509 en Create Invoice ir.model.button,string 85 Create Invoice model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4510 en Modify Header ir.model.button,string 86 Modify Header model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4511 en Handle Invoice Exception ir.model.button,string 87 Handle Invoice Exception model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4512 en Handle Shipment Exception ir.model.button,string 88 Handle Shipment Exception model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4513 en Purchase ir.sequence.type,name 14 Purchase model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4514 en Purchase ir.sequence,name 10 Purchase model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4515 en Purchase ir.action,name 230 Purchase model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4516 en Purchase Lines ir.action,name 231 Purchase Lines model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4517 en Pending ir.action.act_window.domain,name 59 Pending model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4518 en Done ir.action.act_window.domain,name 60 Done model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4519 en All ir.action.act_window.domain,name 61 All model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4520 en Suppliers ir.action,name 232 Suppliers model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4521 en Suppliers ir.ui.menu,name 166 Suppliers model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4522 en User in companies ir.rule.group,name 48 User in companies model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4523 en Prices ir.action,name 233 Prices model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4524 en Return Purchase ir.action,name 234 Return Purchase model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4525 en Parties associated to Purchases ir.action,name 235 Parties associated to Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4526 en Associated to Purchases ir.ui.menu,name 167 Associated to Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4527 en Modify Header ir.action,name 236 Modify Header model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4528 en User in companies ir.rule.group,name 49 User in companies model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4529 en Purchases ir.ui.menu,name 168 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4530 en Purchases ir.action,name 237 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4531 en User in companies ir.rule.group,name 50 User in companies model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4532 en Purchases ir.action,name 238 Purchases model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4533 en User in companies ir.rule.group,name 51 User in companies model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4534 en Purchases per Supplier ir.action,name 239 Purchases per Supplier model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4535 en User in companies ir.rule.group,name 52 User in companies model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4536 en Purchases per Supplier ir.action,name 240 Purchases per Supplier model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4537 en User in companies ir.rule.group,name 53 User in companies model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4538 en Purchases per Product ir.action,name 241 Purchases per Product model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4539 en User in companies ir.rule.group,name 54 User in companies model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4540 en Purchases per Product ir.action,name 242 Purchases per Product model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4541 en User in companies ir.rule.group,name 55 User in companies model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4542 en Configuration ir.ui.menu,name 169 Configuration model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4543 en Configuration ir.action,name 243 Configuration model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4544 en Configuration ir.ui.menu,name 170 Configuration model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4545 en Moves ir.action,name 244 Moves model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4546 en Shipments ir.action,name 245 Shipments model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4547 en Returns ir.action,name 246 Returns model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4548 en Invoices ir.action,name 247 Invoices model purchase f 2024-04-13 20:39:16.958214 0 \N 2024-04-13 20:39:16.958214 0 +4549 en You are trying to change the purchase unit of measurer on which the purchase prices are based. ir.message,text 322 You are trying to change the purchase unit of measurer on which the purchase prices are based. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4550 en You cannot erase party "%(party)s" while they have pending purchases with company "%(company)s". ir.message,text 323 You cannot erase party "%(party)s" while they have pending purchases with company "%(company)s". model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4551 en To get a quote for the purchase "%(purchase)s" you must enter a warehouse. ir.message,text 324 To get a quote for the purchase "%(purchase)s" you must enter a warehouse. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4552 en To delete purchase "%(purchase)s" you must cancel it. ir.message,text 325 To delete purchase "%(purchase)s" you must cancel it. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4553 en To process purchase "%(purchase)s" you must set a supplier location on party "%(party)s". ir.message,text 326 To process purchase "%(purchase)s" you must set a supplier location on party "%(party)s". model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4554 en To invoice purchase "%(purchase)s" you must define an account expense for product "%(product)s". ir.message,text 327 To invoice purchase "%(purchase)s" you must define an account expense for product "%(product)s". model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4555 en To invoice purchase "%(purchase)s" you must configure a default account expense. ir.message,text 328 To invoice purchase "%(purchase)s" you must configure a default account expense. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4556 en To delete line "%(line)s" you must cancel or reset to draft purchase "%(purchase)s". ir.message,text 329 To delete line "%(line)s" you must cancel or reset to draft purchase "%(purchase)s". model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4557 en The purchase line "%(line)s" is moving %(extra)s in addition to the %(quantity)s ordered. ir.message,text 330 The purchase line "%(line)s" is moving %(extra)s in addition to the %(quantity)s ordered. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4558 en To modify the header of purchase "%(purchase)s", it must be in draft state. ir.message,text 331 To modify the header of purchase "%(purchase)s", it must be in draft state. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4559 en You cannot reset invoice "%(invoice)s" to draft because it was generated by a purchase. ir.message,text 332 You cannot reset invoice "%(invoice)s" to draft because it was generated by a purchase. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4560 en You cannot reset move "%(move)s" to draft because it was generated by a purchase. ir.message,text 333 You cannot reset move "%(move)s" to draft because it was generated by a purchase. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4561 en You cannot add lines to purchase "%(purchase)s" because it is no longer in a draft state. ir.message,text 334 You cannot add lines to purchase "%(purchase)s" because it is no longer in a draft state. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4562 en A tax can be added only once to a purchase line. ir.message,text 335 A tax can be added only once to a purchase line. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4563 en Company ir.message,text 336 Company model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4564 en # ir.message,text 337 # model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4565 en Number of purchases. ir.message,text 338 Number of purchases. model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4566 en Expense ir.message,text 339 Expense model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4567 en Expense Trend ir.message,text 340 Expense Trend model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4568 en Currency ir.message,text 341 Currency model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4569 en Date ir.message,text 342 Date model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4570 en Time Series ir.message,text 343 Time Series model purchase f 2024-04-13 20:39:16.958214 0 \N \N \N +4571 en Sale stock.move,sale -1 field sale f \N \N \N \N \N +4572 en Exception State stock.move,sale_exception_state -1 field sale f \N \N \N \N \N +4573 en Ignored stock.move,sale_exception_state -1 selection sale f \N \N \N \N \N +4574 en Recreated stock.move,sale_exception_state -1 selection sale f \N \N \N \N \N +4575 en Sale sale.sale,name -1 model sale f \N \N \N \N \N +4577 en Company sale.sale,company -1 field sale f \N \N \N \N \N +4578 en Confirmed By sale.sale,confirmed_by -1 field sale f \N \N \N \N \N +4579 en Contact sale.sale,contact -1 field sale f \N \N \N \N \N +4580 en Currency sale.sale,currency -1 field sale f \N \N \N \N \N +4581 en Description sale.sale,description -1 field sale f \N \N \N \N \N +4582 en Invoice Address sale.sale,invoice_address -1 field sale f \N \N \N \N \N +4583 en Invoice Method sale.sale,invoice_method -1 field sale f \N \N \N \N \N +4584 en Manual sale.sale,invoice_method -1 selection sale f \N \N \N \N \N +4585 en On Order Processed sale.sale,invoice_method -1 selection sale f \N \N \N \N \N +4586 en On Shipment Sent sale.sale,invoice_method -1 selection sale f \N \N \N \N \N +4587 en Invoice Party sale.sale,invoice_party -1 field sale f \N \N \N \N \N +4588 en Invoice State sale.sale,invoice_state -1 field sale f \N \N \N \N \N +4589 en None sale.sale,invoice_state -1 selection sale f \N \N \N \N \N +4590 en Pending sale.sale,invoice_state -1 selection sale f \N \N \N \N \N +4591 en Awaiting Payment sale.sale,invoice_state -1 selection sale f \N \N \N \N \N +4592 en Partially Paid sale.sale,invoice_state -1 selection sale f \N \N \N \N \N +4593 en Paid sale.sale,invoice_state -1 selection sale f \N \N \N \N \N +4594 en Exception sale.sale,invoice_state -1 selection sale f \N \N \N \N \N +4595 en Invoices sale.sale,invoices -1 field sale f \N \N \N \N \N +4596 en Ignored Invoices sale.sale,invoices_ignored -1 field sale f \N \N \N \N \N +4597 en Recreated Invoices sale.sale,invoices_recreated -1 field sale f \N \N \N \N \N +4598 en Lines sale.sale,lines -1 field sale f \N \N \N \N \N +4599 en Moves sale.sale,moves -1 field sale f \N \N \N \N \N +4600 en Number sale.sale,number -1 field sale f \N \N \N \N \N +4601 en Origin sale.sale,origin -1 field sale f \N \N \N \N \N +4602 en Party sale.sale,party -1 field sale f \N \N \N \N \N +4603 en Party Language sale.sale,party_lang -1 field sale f \N \N \N \N \N +4604 en Payment Term sale.sale,payment_term -1 field sale f \N \N \N \N \N +4605 en Quoted By sale.sale,quoted_by -1 field sale f \N \N \N \N \N +4606 en Reference sale.sale,reference -1 field sale f \N \N \N \N \N +4607 en Sale Date sale.sale,sale_date -1 field sale f \N \N \N \N \N +4608 en Shipment Address sale.sale,shipment_address -1 field sale f \N \N \N \N \N +4609 en Shipment Method sale.sale,shipment_method -1 field sale f \N \N \N \N \N +4610 en Manual sale.sale,shipment_method -1 selection sale f \N \N \N \N \N +4611 en On Order Processed sale.sale,shipment_method -1 selection sale f \N \N \N \N \N +4612 en On Invoice Paid sale.sale,shipment_method -1 selection sale f \N \N \N \N \N +4613 en Shipment Party sale.sale,shipment_party -1 field sale f \N \N \N \N \N +4614 en Shipment Returns sale.sale,shipment_returns -1 field sale f \N \N \N \N \N +4615 en Shipment State sale.sale,shipment_state -1 field sale f \N \N \N \N \N +4616 en None sale.sale,shipment_state -1 selection sale f \N \N \N \N \N +4617 en Waiting sale.sale,shipment_state -1 selection sale f \N \N \N \N \N +4618 en Partially Shipped sale.sale,shipment_state -1 selection sale f \N \N \N \N \N +4619 en Sent sale.sale,shipment_state -1 selection sale f \N \N \N \N \N +4620 en Exception sale.sale,shipment_state -1 selection sale f \N \N \N \N \N +4621 en Shipments sale.sale,shipments -1 field sale f \N \N \N \N \N +4622 en Shipping Date sale.sale,shipping_date -1 field sale f \N \N \N \N \N +4623 en When the shipping of goods should start. sale.sale,shipping_date -1 help sale f \N \N \N \N \N +4624 en State sale.sale,state -1 field sale f \N \N \N \N \N +4625 en Draft sale.sale,state -1 selection sale f \N \N \N \N \N +4626 en Quotation sale.sale,state -1 selection sale f \N \N \N \N \N +4627 en Confirmed sale.sale,state -1 selection sale f \N \N \N \N \N +4628 en Processing sale.sale,state -1 selection sale f \N \N \N \N \N +4629 en Done sale.sale,state -1 selection sale f \N \N \N \N \N +4630 en Cancelled sale.sale,state -1 selection sale f \N \N \N \N \N +4631 en Tax sale.sale,tax_amount -1 field sale f \N \N \N \N \N +4632 en Tax Cache sale.sale,tax_amount_cache -1 field sale f \N \N \N \N \N +4633 en Total sale.sale,total_amount -1 field sale f \N \N \N \N \N +4634 en Total Cache sale.sale,total_amount_cache -1 field sale f \N \N \N \N \N +4635 en Untaxed sale.sale,untaxed_amount -1 field sale f \N \N \N \N \N +4636 en Untaxed Cache sale.sale,untaxed_amount_cache -1 field sale f \N \N \N \N \N +4637 en Warehouse sale.sale,warehouse -1 field sale f \N \N \N \N \N +4639 en Invoice sale.sale-ignored-account.invoice,invoice -1 field sale f \N \N \N \N \N +4640 en Sale sale.sale-ignored-account.invoice,sale -1 field sale f \N \N \N \N \N +4642 en Invoice sale.sale-recreated-account.invoice,invoice -1 field sale f \N \N \N \N \N +4643 en Sale sale.sale-recreated-account.invoice,sale -1 field sale f \N \N \N \N \N +4645 en Actual Quantity sale.line,actual_quantity -1 field sale f \N \N \N \N \N +4646 en Amount sale.line,amount -1 field sale f \N \N \N \N \N +4647 en Company sale.line,company -1 field sale f \N \N \N \N \N +4648 en Currency sale.line,currency -1 field sale f \N \N \N \N \N +4649 en Customer sale.line,customer -1 field sale f \N \N \N \N \N +4650 en Description sale.line,description -1 field sale f \N \N \N \N \N +4651 en From Location sale.line,from_location -1 field sale f \N \N \N \N \N +4652 en Invoice Lines sale.line,invoice_lines -1 field sale f \N \N \N \N \N +4653 en Moves sale.line,moves -1 field sale f \N \N \N \N \N +4654 en Moves Exception sale.line,moves_exception -1 field sale f \N \N \N \N \N +4655 en Ignored Moves sale.line,moves_ignored -1 field sale f \N \N \N \N \N +4656 en Moves Progress sale.line,moves_progress -1 field sale f \N \N \N \N \N +4657 en Recreated Moves sale.line,moves_recreated -1 field sale f \N \N \N \N \N +4658 en Note sale.line,note -1 field sale f \N \N \N \N \N +4659 en Product sale.line,product -1 field sale f \N \N \N \N \N +4660 en Product UoM Category sale.line,product_uom_category -1 field sale f \N \N \N \N \N +4661 en The category of Unit of Measure for the product. sale.line,product_uom_category -1 help sale f \N \N \N \N \N +4662 en Quantity sale.line,quantity -1 field sale f \N \N \N \N \N +4663 en Sale sale.line,sale -1 field sale f \N \N \N \N \N +4664 en Sale Date sale.line,sale_date -1 field sale f \N \N \N \N \N +4665 en Sale State sale.line,sale_state -1 field sale f \N \N \N \N \N +4666 en Shipping Date sale.line,shipping_date -1 field sale f \N \N \N \N \N +4667 en Summary sale.line,summary -1 field sale f \N \N \N \N \N +4668 en Taxes sale.line,taxes -1 field sale f \N \N \N \N \N +4669 en To Location sale.line,to_location -1 field sale f \N \N \N \N \N +4670 en Type sale.line,type -1 field sale f \N \N \N \N \N +4671 en Line sale.line,type -1 selection sale f \N \N \N \N \N +4672 en Subtotal sale.line,type -1 selection sale f \N \N \N \N \N +4673 en Title sale.line,type -1 selection sale f \N \N \N \N \N +4674 en Comment sale.line,type -1 selection sale f \N \N \N \N \N +4675 en Unit sale.line,unit -1 field sale f \N \N \N \N \N +4676 en Unit Price sale.line,unit_price -1 field sale f \N \N \N \N \N +4677 en Warehouse sale.line,warehouse -1 field sale f \N \N \N \N \N +4679 en Sale Line sale.line-account.tax,line -1 field sale f \N \N \N \N \N +4680 en Tax sale.line-account.tax,tax -1 field sale f \N \N \N \N \N +4682 en Move sale.line-ignored-stock.move,move -1 field sale f \N \N \N \N \N +4683 en Sale Line sale.line-ignored-stock.move,sale_line -1 field sale f \N \N \N \N \N +4685 en Move sale.line-recreated-stock.move,move -1 field sale f \N \N \N \N \N +4686 en Sale Line sale.line-recreated-stock.move,sale_line -1 field sale f \N \N \N \N \N +4687 en Customer Currencies party.party,customer_currencies -1 field sale f \N \N \N \N \N +4688 en Customer Currency party.party,customer_currency -1 field sale f \N \N \N \N \N +4689 en Default currency for sales to this party. party.party,customer_currency -1 help sale f \N \N \N \N \N +4690 en Invoice Method party.party,sale_invoice_method -1 field sale f \N \N \N \N \N +4691 en The default sale invoice method for the customer.\nLeave empty to use the default value from the configuration. party.party,sale_invoice_method -1 help sale f \N \N \N \N \N +4692 en Sale Methods party.party,sale_methods -1 field sale f \N \N \N \N \N +4693 en Shipment Method party.party,sale_shipment_method -1 field sale f \N \N \N \N \N +4694 en The default sale shipment method for the customer.\nLeave empty to use the default value from the configuration. party.party,sale_shipment_method -1 help sale f \N \N \N \N \N +4696 en Customer Currency party.party.customer_currency,customer_currency -1 field sale f \N \N \N \N \N +4697 en Default currency for sales to this party. party.party.customer_currency,customer_currency -1 help sale f \N \N \N \N \N +4698 en Party party.party.customer_currency,party -1 field sale f \N \N \N \N \N +4700 en Company party.party.sale_method,company -1 field sale f \N \N \N \N \N +4701 en Party party.party.sale_method,party -1 field sale f \N \N \N \N \N +4702 en Sale Invoice Method party.party.sale_method,sale_invoice_method -1 field sale f \N \N \N \N \N +4703 en Sale Shipment Method party.party.sale_method,sale_shipment_method -1 field sale f \N \N \N \N \N +4704 en Default Lead Time product.configuration,default_lead_time -1 field sale f \N \N \N \N \N +4705 en The time from confirming the sales order to sending the products.\nUsed for products without a lead time. product.configuration,default_lead_time -1 help sale f \N \N \N \N \N +4707 en Default Lead Time product.configuration.default_lead_time,default_lead_time -1 field sale f \N \N \N \N \N +4708 en The time from confirming the sales order to sending the products.\nUsed for products without a lead time. product.configuration.default_lead_time,default_lead_time -1 help sale f \N \N \N \N \N +4709 en Lead Time product.template,lead_time -1 field sale f \N \N \N \N \N +4710 en The time from confirming the sales order to sending the products.\nIf empty the default lead time from the configuration is used. product.template,lead_time -1 help sale f \N \N \N \N \N +4711 en Lead Times product.template,lead_times -1 field sale f \N \N \N \N \N +4712 en Salable product.template,salable -1 field sale f \N \N \N \N \N +4713 en Sale UoM product.template,sale_uom -1 field sale f \N \N \N \N \N +4714 en The default Unit of Measure for sales. product.template,sale_uom -1 help sale f \N \N \N \N \N +4716 en Lead Time product.lead_time,lead_time -1 field sale f \N \N \N \N \N +4717 en Template product.lead_time,template -1 field sale f \N \N \N \N \N +4718 en Lead Time product.product,lead_time -1 field sale f \N \N \N \N \N +4719 en The time from confirming the sales order to sending the products.\nIf empty the default lead time from the configuration is used. product.product,lead_time -1 help sale f \N \N \N \N \N +4720 en Lead Times product.product,lead_times -1 field sale f \N \N \N \N \N +4721 en Salable product.product,salable -1 field sale f \N \N \N \N \N +4722 en Sale Price product.product,sale_price_uom -1 field sale f \N \N \N \N \N +4723 en Sale UoM product.product,sale_uom -1 field sale f \N \N \N \N \N +4724 en The default Unit of Measure for sales. product.product,sale_uom -1 help sale f \N \N \N \N \N +4726 en Company product.sale.context,company -1 field sale f \N \N \N \N \N +4727 en Currency product.sale.context,currency -1 field sale f \N \N \N \N \N +4728 en Customer product.sale.context,customer -1 field sale f \N \N \N \N \N +4729 en Warehouses product.sale.context,locations -1 field sale f \N \N \N \N \N +4730 en Quantity product.sale.context,quantity -1 field sale f \N \N \N \N \N +4731 en Sale Date product.sale.context,sale_date -1 field sale f \N \N \N \N \N +4732 en Stock End Date product.sale.context,stock_date_end -1 field sale f \N \N \N \N \N +4734 en Domain Moves sale.handle.shipment.exception.ask,domain_moves -1 field sale f \N \N \N \N \N +4735 en Recreate Moves sale.handle.shipment.exception.ask,recreate_moves -1 field sale f \N \N \N \N \N +4737 en Domain Invoices sale.handle.invoice.exception.ask,domain_invoices -1 field sale f \N \N \N \N \N +4738 en Recreate Invoices sale.handle.invoice.exception.ask,recreate_invoices -1 field sale f \N \N \N \N \N +4739 en The selected invoices will be recreated. The other ones will be ignored. sale.handle.invoice.exception.ask,recreate_invoices -1 help sale f \N \N \N \N \N +4742 en Sale Invoice Method sale.configuration,sale_invoice_method -1 field sale f \N \N \N \N \N +4743 en Process Sale after sale.configuration,sale_process_after -1 field sale f \N \N \N \N \N +4744 en The grace period during which confirmed sale can still be reset to draft.\nApplied if a worker queue is activated. sale.configuration,sale_process_after -1 help sale f \N \N \N \N \N +4745 en Sale Sequence sale.configuration,sale_sequence -1 field sale f \N \N \N \N \N +4746 en Sale Shipment Method sale.configuration,sale_shipment_method -1 field sale f \N \N \N \N \N +4748 en Company sale.configuration.sequence,company -1 field sale f \N \N \N \N \N +4749 en Sale Sequence sale.configuration.sequence,sale_sequence -1 field sale f \N \N \N \N \N +4751 en Sale Invoice Method sale.configuration.sale_method,sale_invoice_method -1 field sale f \N \N \N \N \N +4752 en Sale Shipment Method sale.configuration.sale_method,sale_shipment_method -1 field sale f \N \N \N \N \N +4754 en Company sale.reporting.context,company -1 field sale f \N \N \N \N \N +4755 en From Date sale.reporting.context,from_date -1 field sale f \N \N \N \N \N +4756 en Period sale.reporting.context,period -1 field sale f \N \N \N \N \N +4757 en Year sale.reporting.context,period -1 selection sale f \N \N \N \N \N +4758 en Month sale.reporting.context,period -1 selection sale f \N \N \N \N \N +4759 en Day sale.reporting.context,period -1 selection sale f \N \N \N \N \N +4760 en To Date sale.reporting.context,to_date -1 field sale f \N \N \N \N \N +4761 en Warehouse sale.reporting.context,warehouse -1 field sale f \N \N \N \N \N +4765 en Customer sale.reporting.customer,customer -1 field sale f \N \N \N \N \N +4767 en Customer sale.reporting.customer.time_series,customer -1 field sale f \N \N \N \N \N +4769 en Category sale.reporting.customer.category,category -1 field sale f \N \N \N \N \N +4771 en Category sale.reporting.customer.category.time_series,category -1 field sale f \N \N \N \N \N +4773 en Children sale.reporting.customer.category.tree,children -1 field sale f \N \N \N \N \N +4774 en Currency sale.reporting.customer.category.tree,currency -1 field sale f \N \N \N \N \N +4775 en Name sale.reporting.customer.category.tree,name -1 field sale f \N \N \N \N \N +4776 en Parent sale.reporting.customer.category.tree,parent -1 field sale f \N \N \N \N \N +4777 en Revenue sale.reporting.customer.category.tree,revenue -1 field sale f \N \N \N \N \N +4779 en Product sale.reporting.product,product -1 field sale f \N \N \N \N \N +4781 en Product sale.reporting.product.time_series,product -1 field sale f \N \N \N \N \N +4783 en Category sale.reporting.product.category,category -1 field sale f \N \N \N \N \N +4785 en Category sale.reporting.product.category.time_series,category -1 field sale f \N \N \N \N \N +4787 en Children sale.reporting.product.category.tree,children -1 field sale f \N \N \N \N \N +4788 en Currency sale.reporting.product.category.tree,currency -1 field sale f \N \N \N \N \N +4789 en Name sale.reporting.product.category.tree,name -1 field sale f \N \N \N \N \N +4790 en Parent sale.reporting.product.category.tree,parent -1 field sale f \N \N \N \N \N +4791 en Revenue sale.reporting.product.category.tree,revenue -1 field sale f \N \N \N \N \N +4793 en Currency sale.reporting.region.tree,currency -1 field sale f \N \N \N \N \N +4794 en Name sale.reporting.region.tree,name -1 field sale f \N \N \N \N \N +4795 en Parent sale.reporting.region.tree,parent -1 field sale f \N \N \N \N \N +4796 en Revenue sale.reporting.region.tree,revenue -1 field sale f \N \N \N \N \N +4797 en Subregions sale.reporting.region.tree,subregions -1 field sale f \N \N \N \N \N +4799 en Country sale.reporting.country,country -1 field sale f \N \N \N \N \N +4801 en Country sale.reporting.country.time_series,country -1 field sale f \N \N \N \N \N +4803 en Country sale.reporting.country.subdivision,country -1 field sale f \N \N \N \N \N +4804 en Subdivision sale.reporting.country.subdivision,subdivision -1 field sale f \N \N \N \N \N +4806 en Country sale.reporting.country.subdivision.time_series,country -1 field sale f \N \N \N \N \N +4807 en Subdivision sale.reporting.country.subdivision.time_series,subdivision -1 field sale f \N \N \N \N \N +4809 en Children sale.reporting.country.tree,children -1 field sale f \N \N \N \N \N +4810 en Parent sale.reporting.country.tree,parent -1 field sale f \N \N \N \N \N +4811 en Region sale.reporting.country.tree,region -1 field sale f \N \N \N \N \N +4812 en Exception State account.invoice,sale_exception_state -1 field sale f \N \N \N \N \N +4813 en Ignored account.invoice,sale_exception_state -1 selection sale f \N \N \N \N \N +4814 en Recreated account.invoice,sale_exception_state -1 selection sale f \N \N \N \N \N +4815 en Sales account.invoice,sales -1 field sale f \N \N \N \N \N +4805 en Sale Reporting per Subdivision sale.reporting.country.subdivision.time_series,name -1 model sale f \N \N \N \N \N +4808 en Sale Reporting per Country sale.reporting.country.tree,name -1 model sale f \N \N \N \N \N +4824 en Sales res.group,name 16 Sales model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4825 en Sales Administrator res.group,name 17 Sales Administrator model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4826 en Sales ir.ui.menu,name 171 Sales model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4827 en Handle Shipment Exception ir.action,name 248 Handle Shipment Exception model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4828 en Handle Invoice Exception ir.action,name 249 Handle Invoice Exception model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4829 en Shipments ir.action,name 250 Shipments model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4830 en Returns ir.action,name 251 Returns model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4831 en Sales ir.action,name 252 Sales model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4832 en Draft ir.action.act_window.domain,name 62 Draft model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4833 en Quotation ir.action.act_window.domain,name 63 Quotation model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4834 en Confirmed ir.action.act_window.domain,name 64 Confirmed model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4835 en Processing ir.action.act_window.domain,name 65 Processing model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4836 en Exception ir.action.act_window.domain,name 66 Exception model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4837 en All ir.action.act_window.domain,name 67 All model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4838 en Sales ir.ui.menu,name 172 Sales model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4839 en Sales ir.action,name 253 Sales model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4840 en Pending ir.action.act_window.domain,name 68 Pending model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4841 en Done ir.action.act_window.domain,name 69 Done model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4842 en All ir.action.act_window.domain,name 70 All model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4843 en Sales ir.action,name 254 Sales model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4844 en User in companies ir.rule.group,name 56 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4845 en Cancel ir.model.button,string 89 Cancel model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4846 en Draft ir.model.button,string 90 Draft model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4847 en Quote ir.model.button,string 91 Quote model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4792 en Sale Reporting per Region sale.reporting.region.tree,name -1 model sale f \N \N \N \N \N +4798 en Sale Reporting per Country sale.reporting.country,name -1 model sale f \N \N \N \N \N +4800 en Sale Reporting per Country sale.reporting.country.time_series,name -1 model sale f \N \N \N \N \N +4802 en Sale Reporting per Subdivision sale.reporting.country.subdivision,name -1 model sale f \N \N \N \N \N +4848 en Confirm ir.model.button,string 92 Confirm model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4849 en Process ir.model.button,string 93 Process model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4850 en Create Invoice ir.model.button,string 94 Create Invoice model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4851 en Create Shipment ir.model.button,string 95 Create Shipment model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4852 en Modify Header ir.model.button,string 96 Modify Header model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4853 en Handle Shipment Exception ir.model.button,string 97 Handle Shipment Exception model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4854 en Handle Invoice Exception ir.model.button,string 98 Handle Invoice Exception model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4855 en Sale ir.sequence.type,name 15 Sale model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4856 en Sale ir.sequence,name 11 Sale model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4857 en Sale ir.action,name 255 Sale model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4858 en Sale Lines ir.action,name 256 Sale Lines model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4859 en Pending ir.action.act_window.domain,name 71 Pending model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4860 en Done ir.action.act_window.domain,name 72 Done model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4861 en All ir.action.act_window.domain,name 73 All model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4862 en Return Sale ir.action,name 257 Return Sale model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4863 en Modify Header ir.action,name 258 Modify Header model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4864 en Configuration ir.ui.menu,name 173 Configuration model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4865 en Configuration ir.action,name 259 Configuration model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4866 en Configuration ir.ui.menu,name 174 Configuration model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4867 en Reporting ir.ui.menu,name 175 Reporting model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4868 en Sales ir.ui.menu,name 176 Sales model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4869 en Sales ir.action,name 260 Sales model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4870 en User in companies ir.rule.group,name 57 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4871 en Sales ir.action,name 261 Sales model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4872 en User in companies ir.rule.group,name 58 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4873 en Sales per Customer ir.action,name 262 Sales per Customer model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4874 en User in companies ir.rule.group,name 59 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4875 en Sales per Customer ir.action,name 263 Sales per Customer model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4876 en User in companies ir.rule.group,name 60 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4877 en Sales per Customer Category ir.action,name 264 Sales per Customer Category model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4878 en Sales per Customer Category ir.action,name 265 Sales per Customer Category model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4879 en User in companies ir.rule.group,name 61 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4880 en Sales per Party Category ir.action,name 266 Sales per Party Category model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4881 en User in companies ir.rule.group,name 62 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4882 en Sales per Product ir.action,name 267 Sales per Product model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4883 en User in companies ir.rule.group,name 63 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4884 en Sales per Product ir.action,name 268 Sales per Product model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4885 en User in companies ir.rule.group,name 64 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4886 en Sales per Product Category ir.action,name 269 Sales per Product Category model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4887 en Sales per Product Category ir.action,name 270 Sales per Product Category model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4888 en User in companies ir.rule.group,name 65 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4889 en Sales per Product Category ir.action,name 271 Sales per Product Category model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4890 en User in companies ir.rule.group,name 66 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4891 en Sales per Region ir.action,name 272 Sales per Region model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4892 en Open Region ir.action,name 273 Open Region model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4893 en Sales per Country ir.action,name 274 Sales per Country model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4894 en User in companies ir.rule.group,name 67 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4895 en Sales per Country ir.action,name 275 Sales per Country model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4896 en User in companies ir.rule.group,name 68 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4897 en Sales per Subdivision ir.action,name 276 Sales per Subdivision model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4898 en User in companies ir.rule.group,name 69 User in companies model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4899 en Open Region ir.action,name 277 Open Region model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4900 en Parties associated to Sales ir.action,name 278 Parties associated to Sales model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4901 en Associated to Sales ir.ui.menu,name 177 Associated to Sales model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4902 en Moves ir.action,name 279 Moves model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4903 en Products ir.action,name 280 Products model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4904 en Products ir.ui.menu,name 178 Products model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4905 en Invoices ir.action,name 281 Invoices model sale f 2024-04-13 20:39:19.14446 0 \N 2024-04-13 20:39:19.14446 0 +4906 en You cannot erase party "%(party)s" while they have pending sales with company "%(company)s". ir.message,text 344 You cannot erase party "%(party)s" while they have pending sales with company "%(company)s". model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4907 en You cannot reset invoice "%(invoice)s" to draft because it was generated by a sale. ir.message,text 345 You cannot reset invoice "%(invoice)s" to draft because it was generated by a sale. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4908 en You cannot reset move "%(move)s" to draft because it was generated by a sale. ir.message,text 346 You cannot reset move "%(move)s" to draft because it was generated by a sale. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4909 en You cannot use together invoice "%(invoice_method)s" and shipment "%(shipment_method)s" on sale "%(sale)s". ir.message,text 347 You cannot use together invoice "%(invoice_method)s" and shipment "%(shipment_method)s" on sale "%(sale)s". model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4910 en To get a quote for sale "%(sale)s" you must enter an invoice address. ir.message,text 348 To get a quote for sale "%(sale)s" you must enter an invoice address. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4911 en To get a quote for sale "%(sale)s" you must enter a shipment address. ir.message,text 349 To get a quote for sale "%(sale)s" you must enter a shipment address. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4912 en To get a quote for sale "%(sale)s" you must enter a warehouse. ir.message,text 350 To get a quote for sale "%(sale)s" you must enter a warehouse. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4913 en To delete sale "%(sale)s" you must cancel it. ir.message,text 351 To delete sale "%(sale)s" you must cancel it. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4914 en To process sale "%(sale)s" you must set a customer location on party "%(party)s". ir.message,text 352 To process sale "%(sale)s" you must set a customer location on party "%(party)s". model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4915 en To invoice sale "%(sale)s" you must define an account revenue for product "%(product)s". ir.message,text 353 To invoice sale "%(sale)s" you must define an account revenue for product "%(product)s". model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4916 en To invoice sale "%(sale)s" you must configure a default account revenue. ir.message,text 354 To invoice sale "%(sale)s" you must configure a default account revenue. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4917 en To delete line "%(line)s" you must cancel or reset to draft sale "%(sale)s". ir.message,text 355 To delete line "%(line)s" you must cancel or reset to draft sale "%(sale)s". model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4918 en The sale line "%(line)s" is moving %(extra)s in addition to the %(quantity)s ordered. ir.message,text 356 The sale line "%(line)s" is moving %(extra)s in addition to the %(quantity)s ordered. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4919 en To modify the header of sale "%(sale)s", it must be in "draft" state. ir.message,text 357 To modify the header of sale "%(sale)s", it must be in "draft" state. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4920 en You cannot add lines to sale "%(sale)s" because it is no longer in a draft state. ir.message,text 358 You cannot add lines to sale "%(sale)s" because it is no longer in a draft state. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4921 en Company ir.message,text 359 Company model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4922 en # ir.message,text 360 # model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4923 en Number of sales ir.message,text 361 Number of sales model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4924 en Revenue ir.message,text 362 Revenue model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4925 en Revenue Trend ir.message,text 363 Revenue Trend model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4926 en Currency ir.message,text 364 Currency model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4927 en Date ir.message,text 365 Date model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4928 en Time Series ir.message,text 366 Time Series model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4929 en A tax can be added only once to a sale line. ir.message,text 367 A tax can be added only once to a sale line. model sale f 2024-04-13 20:39:19.14446 0 \N \N \N +4930 en Invima company.employee,invima -1 field optical_equipment f \N \N \N \N \N +4932 en Biomedical Class optical_equipment.equipment,biomedical_class -1 field optical_equipment f \N \N \N \N \N +4933 en Apply calibration optical_equipment.equipment,calibration -1 field optical_equipment f \N \N \N \N \N +4934 en Code optical_equipment.equipment,code -1 field optical_equipment f \N \N \N \N \N +4935 en Company optical_equipment.equipment,company -1 field optical_equipment f \N \N \N \N \N +4936 en Contract optical_equipment.equipment,contract -1 field optical_equipment f \N \N \N \N \N +4937 en Contracts optical_equipment.equipment,contract_history -1 field optical_equipment f \N \N \N \N \N +4938 en type optical_equipment.equipment,equipment_type -1 field optical_equipment f \N \N \N \N \N +4939 en Health Register optical_equipment.equipment,health_register -1 field optical_equipment f \N \N \N \N \N +4940 en Invima optical_equipment.equipment,invima -1 field optical_equipment f \N \N \N \N \N +4941 en Location optical_equipment.equipment,location -1 field optical_equipment f \N \N \N \N \N +4942 en Main tecnology optical_equipment.equipment,main_tecnology -1 field optical_equipment f \N \N \N \N \N +4943 en Maintenance Frequency optical_equipment.equipment,maintenance_frequency -1 field optical_equipment f \N \N \N \N \N +4944 en Seis Meses optical_equipment.equipment,maintenance_frequency -1 selection optical_equipment f \N \N \N \N \N +4945 en Doce Meses optical_equipment.equipment,maintenance_frequency -1 selection optical_equipment f \N \N \N \N \N +4946 en Maintenances optical_equipment.equipment,maintenance_history -1 field optical_equipment f \N \N \N \N \N +4947 en Mark optical_equipment.equipment,mark_category -1 field optical_equipment f \N \N \N \N \N +4948 en Model optical_equipment.equipment,model_category -1 field optical_equipment f \N \N \N \N \N +4949 en Origin Country optical_equipment.equipment,origin_country -1 field optical_equipment f \N \N \N \N \N +4950 en Product optical_equipment.equipment,product -1 field optical_equipment f \N \N \N \N \N +4951 en Propietary optical_equipment.equipment,propietary -1 field optical_equipment f \N \N \N \N \N +4952 en Propietary Address optical_equipment.equipment,propietary_address -1 field optical_equipment f \N \N \N \N \N +4953 en Propietarys optical_equipment.equipment,propietarys -1 field optical_equipment f \N \N \N \N \N +4954 en Purchase Origin optical_equipment.equipment,purchase_origin -1 field optical_equipment f \N \N \N \N \N +4955 en Reference optical_equipment.equipment,reference_category -1 field optical_equipment f \N \N \N \N \N +4956 en Refurbish optical_equipment.equipment,refurbish -1 field optical_equipment f \N \N \N \N \N +4957 en Type risk optical_equipment.equipment,risk -1 field optical_equipment f \N \N \N \N \N +4958 en Sale Destination optical_equipment.equipment,sale_destination -1 field optical_equipment f \N \N \N \N \N +4959 en Serial optical_equipment.equipment,serial -1 field optical_equipment f \N \N \N \N \N +4960 en Stock Move optical_equipment.equipment,shipment_destination -1 field optical_equipment f \N \N \N \N \N +4961 en Software version optical_equipment.equipment,software_version -1 field optical_equipment f \N \N \N \N \N +4962 en State optical_equipment.equipment,state -1 field optical_equipment f \N \N \N \N \N +4963 en Draft optical_equipment.equipment,state -1 selection optical_equipment f \N \N \N \N \N +4964 en Registred optical_equipment.equipment,state -1 selection optical_equipment f \N \N \N \N \N +4965 en UnContrated optical_equipment.equipment,state -1 selection optical_equipment f \N \N \N \N \N +4966 en Contrated optical_equipment.equipment,state -1 selection optical_equipment f \N \N \N \N \N +4967 en Technician Responsible optical_equipment.equipment,technician_responsible -1 field optical_equipment f \N \N \N \N \N +4968 en Use optical_equipment.equipment,use -1 field optical_equipment f \N \N \N \N \N +4969 en Useful life optical_equipment.equipment,useful_life -1 field optical_equipment f \N \N \N \N \N +4970 en Warranty optical_equipment.equipment,warranty -1 field optical_equipment f \N \N \N \N \N +4972 en Equipment optical_equipment.equipment-party.party,equipment -1 field optical_equipment f \N \N \N \N \N +4973 en Party optical_equipment.equipment-party.party,party -1 field optical_equipment f \N \N \N \N \N +4975 en Company optical_equipment.contract,company -1 field optical_equipment f \N \N \N \N \N +4976 en Make the subscription belong to the company. optical_equipment.contract,company -1 help optical_equipment f \N \N \N \N \N +4977 en Contact optical_equipment.contract,contact -1 field optical_equipment f \N \N \N \N \N +4978 en Currency optical_equipment.contract,currency -1 field optical_equipment f \N \N \N \N \N +4979 en Current Equipments optical_equipment.contract,current_equipments -1 field optical_equipment f \N \N \N \N \N +4980 en Description optical_equipment.contract,description -1 field optical_equipment f \N \N \N \N \N +4981 en End Date optical_equipment.contract,end_date -1 field optical_equipment f \N \N \N \N \N +4982 en Equipment optical_equipment.contract,equipment -1 field optical_equipment f \N \N \N \N \N +4983 en Equipments optical_equipment.contract,history_equipments -1 field optical_equipment f \N \N \N \N \N +4984 en Invoice Address optical_equipment.contract,invoice_address -1 field optical_equipment f \N \N \N \N \N +4985 en Prorogues optical_equipment.contract,maintenance_services -1 field optical_equipment f \N \N \N \N \N +4986 en Number optical_equipment.contract,number -1 field optical_equipment f \N \N \N \N \N +4987 en The main identification of the subscription. optical_equipment.contract,number -1 help optical_equipment f \N \N \N \N \N +4988 en Party optical_equipment.contract,party -1 field optical_equipment f \N \N \N \N \N +4989 en The party who subscribes. optical_equipment.contract,party -1 help optical_equipment f \N \N \N \N \N +4990 en Price Contract optical_equipment.contract,price_contract -1 field optical_equipment f \N \N \N \N \N +4991 en Reference optical_equipment.contract,reference -1 field optical_equipment f \N \N \N \N \N +5170 en Use product.template,use -1 field optical_equipment f \N \N \N \N \N +4992 en The identification of an external origin. optical_equipment.contract,reference -1 help optical_equipment f \N \N \N \N \N +4993 en Start Date optical_equipment.contract,start_date -1 field optical_equipment f \N \N \N \N \N +4994 en State optical_equipment.contract,state -1 field optical_equipment f \N \N \N \N \N +4995 en The current state of the subscription. optical_equipment.contract,state -1 help optical_equipment f \N \N \N \N \N +4996 en Draft optical_equipment.contract,state -1 selection optical_equipment f \N \N \N \N \N +4997 en Running optical_equipment.contract,state -1 selection optical_equipment f \N \N \N \N \N +4998 en Closed optical_equipment.contract,state -1 selection optical_equipment f \N \N \N \N \N +4999 en Cancelled optical_equipment.contract,state -1 selection optical_equipment f \N \N \N \N \N +5001 en Contract optical_equipment_maintenance.service-equipment.contract,contract -1 field optical_equipment f \N \N \N \N \N +5002 en Maintenance Service optical_equipment_maintenance.service-equipment.contract,maintenance_services -1 field optical_equipment f \N \N \N \N \N +5004 en Contract optical_equipment.contract-optical_equipment.equipment,contract -1 field optical_equipment f \N \N \N \N \N +5005 en Equipment optical_equipment.contract-optical_equipment.equipment,equipment -1 field optical_equipment f \N \N \N \N \N +5007 en Equipment optical_equipment.maintenance-optical_equipment.equipment,equipment -1 field optical_equipment f \N \N \N \N \N +5008 en Maintenances optical_equipment.maintenance-optical_equipment.equipment,maintenance -1 field optical_equipment f \N \N \N \N \N +5010 en Change Date optical_equipment.change_propietary.form,change_date -1 field optical_equipment f \N \N \N \N \N +5011 en Equipments optical_equipment.change_propietary.form,equipments -1 field optical_equipment f \N \N \N \N \N +5012 en New Address optical_equipment.change_propietary.form,new_address -1 field optical_equipment f \N \N \N \N \N +5013 en New Propietary optical_equipment.change_propietary.form,new_propietary -1 field optical_equipment f \N \N \N \N \N +5014 en Old Propietary optical_equipment.change_propietary.form,old_propietary -1 field optical_equipment f \N \N \N \N \N +5016 en Change optical_equipment.equipment-change_propietary.form,change -1 field optical_equipment f \N \N \N \N \N +5017 en Equipment optical_equipment.equipment-change_propietary.form,equipment -1 field optical_equipment f \N \N \N \N \N +5018 en Maintenance Service optical_equipment.equipment-change_propietary.form,maintenance_service -1 field optical_equipment f \N \N \N \N \N +5020 en Date Maintenance optical_equipment_maintenance.agended,estimated_agended -1 field optical_equipment f \N \N \N \N \N +5021 en Maintenaince Service optical_equipment_maintenance.agended,maintenance_service -1 field optical_equipment f \N \N \N \N \N +5022 en Technical optical_equipment_maintenance.agended,technical -1 field optical_equipment f \N \N \N \N \N +5024 en Date Maintenance optical_equipment_maintenance.reagended,estimated_agended -1 field optical_equipment f \N \N \N \N \N +5025 en Maintenaince Service optical_equipment_maintenance.reagended,maintenance_service -1 field optical_equipment f \N \N \N \N \N +5026 en Technical optical_equipment_maintenance.reagended,technical -1 field optical_equipment f \N \N \N \N \N +5028 en Agended optical_equipment_maintenance.service-maintenance.diary,agended -1 field optical_equipment f \N \N \N \N \N +5029 en Maintenance Service optical_equipment_maintenance.service-maintenance.diary,maintenance_service -1 field optical_equipment f \N \N \N \N \N +5031 en d_resolution optical_equipment.maintenance.calibration,d_resolution -1 field optical_equipment f \N \N \N \N \N +5032 en Standart Desviation optical_equipment.maintenance.calibration,dev_std -1 field optical_equipment f \N \N \N \N \N +5033 en Diopter optical_equipment.maintenance.calibration,diopter -1 field optical_equipment f \N \N \N \N \N +5034 en Graph Dates optical_equipment.maintenance.calibration,graph_dates -1 field optical_equipment f \N \N \N \N \N +5035 en K Crt Calibration optical_equipment.maintenance.calibration,k_c_calibration -1 field optical_equipment f \N \N \N \N \N +5036 en Maintenance optical_equipment.maintenance.calibration,maintenance -1 field optical_equipment f \N \N \N \N \N +5037 en Mean optical_equipment.maintenance.calibration,mean -1 field optical_equipment f \N \N \N \N \N +5038 en State optical_equipment.maintenance.calibration,state -1 field optical_equipment f \N \N \N \N \N +5039 en T Student optical_equipment.maintenance.calibration,t_student -1 field optical_equipment f \N \N \N \N \N +5040 en U_b1 optical_equipment.maintenance.calibration,uncertain_U_b1 -1 field optical_equipment f \N \N \N \N \N +5041 en U_b2 optical_equipment.maintenance.calibration,uncertain_U_b2_ana -1 field optical_equipment f \N \N \N \N \N +5042 en U_b2 optical_equipment.maintenance.calibration,uncertain_U_b2_dig -1 field optical_equipment f \N \N \N \N \N +5043 en U_combinated optical_equipment.maintenance.calibration,uncertain_combinated -1 field optical_equipment f \N \N \N \N \N +5044 en U eff optical_equipment.maintenance.calibration,uncertain_eff -1 field optical_equipment f \N \N \N \N \N +5045 en Uexpand optical_equipment.maintenance.calibration,uncertain_expanded -1 field optical_equipment f \N \N \N \N \N +5105 en (a) Resolution product.template,a_factor_resolution -1 field optical_equipment f \N \N \N \N \N +5046 en Uncertain Pattern optical_equipment.maintenance.calibration,uncertain_pattern -1 field optical_equipment f \N \N \N \N \N +5047 en Uncertain Type A optical_equipment.maintenance.calibration,uncertain_type_A -1 field optical_equipment f \N \N \N \N \N +5049 en Maintenance optical_equipment.maintenance.calibration_sample,maintenance -1 field optical_equipment f \N \N \N \N \N +5050 en Mistake optical_equipment.maintenance.calibration_sample,mistake -1 field optical_equipment f \N \N \N \N \N +5051 en % Mistake optical_equipment.maintenance.calibration_sample,mistake_rate -1 field optical_equipment f \N \N \N \N \N +5052 en Sample # optical_equipment.maintenance.calibration_sample,number_sample -1 field optical_equipment f \N \N \N \N \N +5053 en Product ID optical_equipment.maintenance.calibration_sample,product -1 field optical_equipment f \N \N \N \N \N +5054 en Value in Equipment optical_equipment.maintenance.calibration_sample,value_equipment -1 field optical_equipment f \N \N \N \N \N +5055 en Value Pattern optical_equipment.maintenance.calibration_sample,value_patterns -1 field optical_equipment f \N \N \N \N \N +5057 en Agended Sequence optical_equipment.configuration,agended_sequence -1 field optical_equipment f \N \N \N \N \N +5058 en Contract Sequence optical_equipment.configuration,contract_sequence -1 field optical_equipment f \N \N \N \N \N +5059 en Equipment Sequence optical_equipment.configuration,equipment_sequence -1 field optical_equipment f \N \N \N \N \N +5060 en Invima optical_equipment.configuration,invima -1 field optical_equipment f \N \N \N \N \N +5061 en Maintenance Sequence optical_equipment.configuration,maintenance_sequence -1 field optical_equipment f \N \N \N \N \N +5062 en Moisture Max optical_equipment.configuration,moisture_max -1 field optical_equipment f \N \N \N \N \N +5063 en Moisture Min optical_equipment.configuration,moisture_min -1 field optical_equipment f \N \N \N \N \N +5064 en Moisture UOM optical_equipment.configuration,moisture_uom -1 field optical_equipment f \N \N \N \N \N +5065 en Sale Quote Number optical_equipment.configuration,sale_quote_number -1 field optical_equipment f \N \N \N \N \N +5066 en Technician Responsible optical_equipment.configuration,technician_responsible -1 field optical_equipment f \N \N \N \N \N +5067 en Technician Signature optical_equipment.configuration,technician_signature -1 field optical_equipment f \N \N \N \N \N +5068 en Temp Max optical_equipment.configuration,temperature_max -1 field optical_equipment f \N \N \N \N \N +5069 en Temp Min optical_equipment.configuration,temperature_min -1 field optical_equipment f \N \N \N \N \N +5070 en Temperature UOM optical_equipment.configuration,temperature_uom -1 field optical_equipment f \N \N \N \N \N +5072 en Code optical_equipment_maintenance.diary,code -1 field optical_equipment f \N \N \N \N \N +5073 en Date End optical_equipment_maintenance.diary,date_end -1 field optical_equipment f \N \N \N \N \N +5074 en Estimated Date optical_equipment_maintenance.diary,date_estimated -1 field optical_equipment f \N \N \N \N \N +5075 en Expected Date optical_equipment_maintenance.diary,date_expected -1 field optical_equipment f \N \N \N \N \N +5076 en Maintenance Service optical_equipment_maintenance.diary,maintenance_service -1 field optical_equipment f \N \N \N \N \N +5077 en State optical_equipment_maintenance.diary,state -1 field optical_equipment f \N \N \N \N \N +5078 en Draft optical_equipment_maintenance.diary,state -1 selection optical_equipment f \N \N \N \N \N +5079 en Agended optical_equipment_maintenance.diary,state -1 selection optical_equipment f \N \N \N \N \N +5080 en In Progress optical_equipment_maintenance.diary,state -1 selection optical_equipment f \N \N \N \N \N +5081 en Failed optical_equipment_maintenance.diary,state -1 selection optical_equipment f \N \N \N \N \N +5082 en Finished optical_equipment_maintenance.diary,state -1 selection optical_equipment f \N \N \N \N \N +5083 en Technical optical_equipment_maintenance.diary,technical -1 field optical_equipment f \N \N \N \N \N +5084 en Contract Expiration ir.cron,method -1 selection optical_equipment f \N \N \N \N \N +5086 en Company optical_equipment_create.contract,company -1 field optical_equipment f \N \N \N \N \N +5087 en Make the subscription belong to the company. optical_equipment_create.contract,company -1 help optical_equipment f \N \N \N \N \N +5088 en Contact optical_equipment_create.contract,contact -1 field optical_equipment f \N \N \N \N \N +5089 en Currency optical_equipment_create.contract,currency -1 field optical_equipment f \N \N \N \N \N +5090 en End Date optical_equipment_create.contract,end_date -1 field optical_equipment f \N \N \N \N \N +5091 en Invoice Address optical_equipment_create.contract,invoice_address -1 field optical_equipment f \N \N \N \N \N +5092 en Party optical_equipment_create.contract,party -1 field optical_equipment f \N \N \N \N \N +5093 en The party who subscribes. optical_equipment_create.contract,party -1 help optical_equipment f \N \N \N \N \N +5094 en Payment Term optical_equipment_create.contract,payment_term -1 field optical_equipment f \N \N \N \N \N +5095 en Start Date optical_equipment_create.contract,start_date -1 field optical_equipment f \N \N \N \N \N +5096 en Unit Price optical_equipment_create.contract,unit_price -1 field optical_equipment f \N \N \N \N \N +5097 en Campus party.address,campus -1 field optical_equipment f \N \N \N \N \N +5098 en Party Related party.address,party_related -1 field optical_equipment f \N \N \N \N \N +5099 en Customer Type party.party,customer_type -1 field optical_equipment f \N \N \N \N \N +5100 en IPS party.party,customer_type -1 selection optical_equipment f \N \N \N \N \N +5101 en Optica party.party,customer_type -1 selection optical_equipment f \N \N \N \N \N +5102 en Otro party.party,customer_type -1 selection optical_equipment f \N \N \N \N \N +5103 en MEP product.template,MEP -1 field optical_equipment f \N \N \N \N \N +5104 en Usub i product.template,Usubi -1 field optical_equipment f \N \N \N \N \N +5106 en Analog resolution product.template,analog_resolution -1 field optical_equipment f \N \N \N \N \N +5107 en Biomedical Class product.template,biomedical_class -1 field optical_equipment f \N \N \N \N \N +5108 en No aplíca product.template,biomedical_class -1 selection optical_equipment f \N \N \N \N \N +5109 en Diagnóstico product.template,biomedical_class -1 selection optical_equipment f \N \N \N \N \N +5110 en Rehabilitación product.template,biomedical_class -1 selection optical_equipment f \N \N \N \N \N +5111 en Apply calibration product.template,calibration -1 field optical_equipment f \N \N \N \N \N +5112 en Verificar Calibración product.template,check_calibration -1 field optical_equipment f \N \N \N \N \N +5113 en Revisión del sistema electríco product.template,check_electric_system -1 field optical_equipment f \N \N \N \N \N +5114 en Revisión del Equipo product.template,check_equipment -1 field optical_equipment f \N \N \N \N \N +5115 en Limpieza de lentes y espejos product.template,clean_eyes -1 field optical_equipment f \N \N \N \N \N +5116 en Limpieza interior y exterior product.template,clean_int_ext -1 field optical_equipment f \N \N \N \N \N +5117 en Resolution d product.template,d_resolution -1 field optical_equipment f \N \N \N \N \N +5118 en Electrical Equipment product.template,electrical_equipment -1 field optical_equipment f \N \N \N \N \N +5119 en It is equipment product.template,equipment -1 field optical_equipment f \N \N \N \N \N +5120 en Equipment type product.template,equipment_type -1 field optical_equipment f \N \N \N \N \N +5121 en Mobiliario óptico product.template,equipment_type -1 selection optical_equipment f \N \N \N \N \N +5122 en Refracción product.template,equipment_type -1 selection optical_equipment f \N \N \N \N \N +5123 en Medicion product.template,equipment_type -1 selection optical_equipment f \N \N \N \N \N +5124 en Accesorios product.template,equipment_type -1 selection optical_equipment f \N \N \N \N \N +5125 en Frequency product.template,frequency -1 field optical_equipment f \N \N \N \N \N +5126 en Frequency UOM product.template,frequency_uom -1 field optical_equipment f \N \N \N \N \N +5127 en Verificación inicial de funcionamiento product.template,initial_operation -1 field optical_equipment f \N \N \N \N \N +5128 en K Pattern product.template,k_pattern -1 field optical_equipment f \N \N \N \N \N +5129 en Agregar valores separados por ',' Ej:-5,+5,-10,+10 product.template,k_pattern -1 help optical_equipment f \N \N \N \N \N +5130 en List of patterns K product.template,k_pattern_list -1 field optical_equipment f \N \N \N \N \N +5131 en Main tecnology product.template,main_tecnology -1 field optical_equipment f \N \N \N \N \N +5132 en Mecánico product.template,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5133 en Electrico product.template,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5134 en Electrónico product.template,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5135 en Hidraulico product.template,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5136 en Neumatico product.template,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5137 en Maintenance Activity product.template,maintenance_activity -1 field optical_equipment f \N \N \N \N \N +5138 en Miantenance Required product.template,maintenance_required -1 field optical_equipment f \N \N \N \N \N +5139 en Mark product.template,mark_category -1 field optical_equipment f \N \N \N \N \N +5140 en Rango de Medición product.template,measuring_range -1 field optical_equipment f \N \N \N \N \N +5141 en Dioptria product.template,measuring_range -1 selection optical_equipment f \N \N \N \N \N +5142 en mmHg product.template,measuring_range -1 selection optical_equipment f \N \N \N \N \N +5143 en Model product.template,model_category -1 field optical_equipment f \N \N \N \N \N +5144 en Moisture Max product.template,moisture_max -1 field optical_equipment f \N \N \N \N \N +5145 en Moisture Min product.template,moisture_min -1 field optical_equipment f \N \N \N \N \N +5146 en Moisture UOM product.template,moisture_uom -1 field optical_equipment f \N \N \N \N \N +5147 en Observation product.template,observation -1 field optical_equipment f \N \N \N \N \N +5148 en Optical product.template,optical -1 field optical_equipment f \N \N \N \N \N +5149 en Origin Country product.template,origin_country -1 field optical_equipment f \N \N \N \N \N +5150 en Preventive Activities product.template,preventive_activities -1 field optical_equipment f \N \N \N \N \N +5151 en Maintenance Activity product.template,product -1 field optical_equipment f \N \N \N \N \N +5152 en Reference product.template,reference_category -1 field optical_equipment f \N \N \N \N \N +5153 en Refurbish product.template,refurbish -1 field optical_equipment f \N \N \N \N \N +5154 en Replacement product.template,replacement -1 field optical_equipment f \N \N \N \N \N +5155 en Resolution Type product.template,resolution_type -1 field optical_equipment f \N \N \N \N \N +5156 en Analoga product.template,resolution_type -1 selection optical_equipment f \N \N \N \N \N +5157 en Digital product.template,resolution_type -1 selection optical_equipment f \N \N \N \N \N +5158 en Type risk product.template,risk -1 field optical_equipment f \N \N \N \N \N +5159 en No aplíca product.template,risk -1 selection optical_equipment f \N \N \N \N \N +5160 en I product.template,risk -1 selection optical_equipment f \N \N \N \N \N +5161 en IIA product.template,risk -1 selection optical_equipment f \N \N \N \N \N +5162 en IIB product.template,risk -1 selection optical_equipment f \N \N \N \N \N +5163 en Software Required product.template,software_required -1 field optical_equipment f \N \N \N \N \N +5164 en Software version product.template,software_version -1 field optical_equipment f \N \N \N \N \N +5165 en Temp Max product.template,temperature_max -1 field optical_equipment f \N \N \N \N \N +5166 en Temp Min product.template,temperature_min -1 field optical_equipment f \N \N \N \N \N +5167 en Temperature UOM product.template,temperature_uom -1 field optical_equipment f \N \N \N \N \N +5168 en Uncertainy Pattern product.template,uncertainy_pattern -1 field optical_equipment f \N \N \N \N \N +5169 en Agregar valores separados por ',' Ej:-5,+5,-10,+10 product.template,uncertainy_pattern -1 help optical_equipment f \N \N \N \N \N +5171 en Médico product.template,use -1 selection optical_equipment f \N \N \N \N \N +5172 en Basico product.template,use -1 selection optical_equipment f \N \N \N \N \N +5173 en Apoyo product.template,use -1 selection optical_equipment f \N \N \N \N \N +5174 en Use Pattern product.template,use_pattern -1 field optical_equipment f \N \N \N \N \N +5175 en Useful life product.template,useful_life -1 field optical_equipment f \N \N \N \N \N +5176 en Voltage AC product.template,voltageAC -1 field optical_equipment f \N \N \N \N \N +5177 en Voltage AC UOM product.template,voltageAC_uom -1 field optical_equipment f \N \N \N \N \N +5178 en Voltage DC product.template,voltageDC -1 field optical_equipment f \N \N \N \N \N +5179 en Voltage DC UOM product.template,voltageDC_uom -1 field optical_equipment f \N \N \N \N \N +5180 en Warranty product.template,warranty -1 field optical_equipment f \N \N \N \N \N +5181 en MEP product.product,MEP -1 field optical_equipment f \N \N \N \N \N +5182 en Usub i product.product,Usubi -1 field optical_equipment f \N \N \N \N \N +5183 en (a) Resolution product.product,a_factor_resolution -1 field optical_equipment f \N \N \N \N \N +5184 en Analog resolution product.product,analog_resolution -1 field optical_equipment f \N \N \N \N \N +5185 en Biomedical Class product.product,biomedical_class -1 field optical_equipment f \N \N \N \N \N +5186 en No aplíca product.product,biomedical_class -1 selection optical_equipment f \N \N \N \N \N +5187 en Diagnóstico product.product,biomedical_class -1 selection optical_equipment f \N \N \N \N \N +5188 en Rehabilitación product.product,biomedical_class -1 selection optical_equipment f \N \N \N \N \N +5189 en Apply calibration product.product,calibration -1 field optical_equipment f \N \N \N \N \N +5190 en Verificar Calibración product.product,check_calibration -1 field optical_equipment f \N \N \N \N \N +5191 en Revisión del sistema electríco product.product,check_electric_system -1 field optical_equipment f \N \N \N \N \N +5192 en Revisión del Equipo product.product,check_equipment -1 field optical_equipment f \N \N \N \N \N +5193 en Limpieza de lentes y espejos product.product,clean_eyes -1 field optical_equipment f \N \N \N \N \N +5194 en Limpieza interior y exterior product.product,clean_int_ext -1 field optical_equipment f \N \N \N \N \N +5195 en Resolution d product.product,d_resolution -1 field optical_equipment f \N \N \N \N \N +5196 en Electrical Equipment product.product,electrical_equipment -1 field optical_equipment f \N \N \N \N \N +5197 en It is equipment product.product,equipment -1 field optical_equipment f \N \N \N \N \N +5198 en Equipment type product.product,equipment_type -1 field optical_equipment f \N \N \N \N \N +5199 en Mobiliario óptico product.product,equipment_type -1 selection optical_equipment f \N \N \N \N \N +5200 en Refracción product.product,equipment_type -1 selection optical_equipment f \N \N \N \N \N +5201 en Medicion product.product,equipment_type -1 selection optical_equipment f \N \N \N \N \N +5202 en Accesorios product.product,equipment_type -1 selection optical_equipment f \N \N \N \N \N +5203 en Frequency product.product,frequency -1 field optical_equipment f \N \N \N \N \N +5204 en Frequency UOM product.product,frequency_uom -1 field optical_equipment f \N \N \N \N \N +5205 en Verificación inicial de funcionamiento product.product,initial_operation -1 field optical_equipment f \N \N \N \N \N +5206 en K Pattern product.product,k_pattern -1 field optical_equipment f \N \N \N \N \N +5207 en Agregar valores separados por ',' Ej:-5,+5,-10,+10 product.product,k_pattern -1 help optical_equipment f \N \N \N \N \N +5208 en List of patterns K product.product,k_pattern_list -1 field optical_equipment f \N \N \N \N \N +5209 en Main tecnology product.product,main_tecnology -1 field optical_equipment f \N \N \N \N \N +5210 en Mecánico product.product,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5211 en Electrico product.product,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5212 en Electrónico product.product,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5213 en Hidraulico product.product,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5214 en Neumatico product.product,main_tecnology -1 selection optical_equipment f \N \N \N \N \N +5215 en Maintenance Activity product.product,maintenance_activity -1 field optical_equipment f \N \N \N \N \N +5216 en Miantenance Required product.product,maintenance_required -1 field optical_equipment f \N \N \N \N \N +5217 en Mark product.product,mark_category -1 field optical_equipment f \N \N \N \N \N +5218 en Rango de Medición product.product,measuring_range -1 field optical_equipment f \N \N \N \N \N +5219 en Dioptria product.product,measuring_range -1 selection optical_equipment f \N \N \N \N \N +5220 en mmHg product.product,measuring_range -1 selection optical_equipment f \N \N \N \N \N +5221 en Model product.product,model_category -1 field optical_equipment f \N \N \N \N \N +5222 en Moisture Max product.product,moisture_max -1 field optical_equipment f \N \N \N \N \N +5223 en Moisture Min product.product,moisture_min -1 field optical_equipment f \N \N \N \N \N +5224 en Moisture UOM product.product,moisture_uom -1 field optical_equipment f \N \N \N \N \N +5225 en Observation product.product,observation -1 field optical_equipment f \N \N \N \N \N +5226 en Optical product.product,optical -1 field optical_equipment f \N \N \N \N \N +5227 en Origin Country product.product,origin_country -1 field optical_equipment f \N \N \N \N \N +5228 en Preventive Activities product.product,preventive_activities -1 field optical_equipment f \N \N \N \N \N +5229 en Maintenance Activity product.product,product -1 field optical_equipment f \N \N \N \N \N +5230 en Reference product.product,reference_category -1 field optical_equipment f \N \N \N \N \N +5231 en Refurbish product.product,refurbish -1 field optical_equipment f \N \N \N \N \N +5232 en Replacement product.product,replacement -1 field optical_equipment f \N \N \N \N \N +5233 en Resolution Type product.product,resolution_type -1 field optical_equipment f \N \N \N \N \N +5234 en Analoga product.product,resolution_type -1 selection optical_equipment f \N \N \N \N \N +5235 en Digital product.product,resolution_type -1 selection optical_equipment f \N \N \N \N \N +5236 en Type risk product.product,risk -1 field optical_equipment f \N \N \N \N \N +5237 en No aplíca product.product,risk -1 selection optical_equipment f \N \N \N \N \N +5238 en I product.product,risk -1 selection optical_equipment f \N \N \N \N \N +5239 en IIA product.product,risk -1 selection optical_equipment f \N \N \N \N \N +5240 en IIB product.product,risk -1 selection optical_equipment f \N \N \N \N \N +5241 en Software Required product.product,software_required -1 field optical_equipment f \N \N \N \N \N +5242 en Software version product.product,software_version -1 field optical_equipment f \N \N \N \N \N +5243 en Temp Max product.product,temperature_max -1 field optical_equipment f \N \N \N \N \N +5244 en Temp Min product.product,temperature_min -1 field optical_equipment f \N \N \N \N \N +5245 en Temperature UOM product.product,temperature_uom -1 field optical_equipment f \N \N \N \N \N +5246 en Uncertainy Pattern product.product,uncertainy_pattern -1 field optical_equipment f \N \N \N \N \N +5247 en Agregar valores separados por ',' Ej:-5,+5,-10,+10 product.product,uncertainy_pattern -1 help optical_equipment f \N \N \N \N \N +5248 en Use product.product,use -1 field optical_equipment f \N \N \N \N \N +5249 en Médico product.product,use -1 selection optical_equipment f \N \N \N \N \N +5250 en Basico product.product,use -1 selection optical_equipment f \N \N \N \N \N +5251 en Apoyo product.product,use -1 selection optical_equipment f \N \N \N \N \N +5252 en Use Pattern product.product,use_pattern -1 field optical_equipment f \N \N \N \N \N +5253 en Useful life product.product,useful_life -1 field optical_equipment f \N \N \N \N \N +5254 en Voltage AC product.product,voltageAC -1 field optical_equipment f \N \N \N \N \N +5255 en Voltage AC UOM product.product,voltageAC_uom -1 field optical_equipment f \N \N \N \N \N +5256 en Voltage DC product.product,voltageDC -1 field optical_equipment f \N \N \N \N \N +5257 en Voltage DC UOM product.product,voltageDC_uom -1 field optical_equipment f \N \N \N \N \N +5258 en Warranty product.product,warranty -1 field optical_equipment f \N \N \N \N \N +333 en Model data ir.model.data,name -1 model ir f \N \N \N \N \N +5260 en Value Pattern optical_equipment.product_pattern,pattern -1 field optical_equipment f \N \N \N \N \N +5261 en Template optical_equipment.product_pattern,product -1 field optical_equipment f \N \N \N \N \N +5263 en Name Pattern optical_equipment.use_pattern,name_pattern -1 field optical_equipment f \N \N \N \N \N +5264 en Equipments Creates purchase.purchase,equipment_create -1 field optical_equipment f \N \N \N \N \N +5265 en Direccion purchase.line,address_equipment -1 field optical_equipment f \N \N \N \N \N +5266 en Health Register purchase.line,health_register -1 field optical_equipment f \N \N \N \N \N +5267 en Origin Country purchase.line,origin_country -1 field optical_equipment f \N \N \N \N \N +5268 en Product Equipment purchase.line,product_equipment -1 field optical_equipment f \N \N \N \N \N +5269 en Refurbish purchase.line,refurbish -1 field optical_equipment f \N \N \N \N \N +5270 en Serial purchase.line,serial_equipment -1 field optical_equipment f \N \N \N \N \N +5271 en Software version purchase.line,software_version -1 field optical_equipment f \N \N \N \N \N +5272 en Scheduling sale.sale,agended -1 field optical_equipment f \N \N \N \N \N +5273 en Contract Base sale.sale,contract_ref -1 field optical_equipment f \N \N \N \N \N +5274 en Maintenance Type sale.sale,maintenance_type -1 field optical_equipment f \N \N \N \N \N +5275 en Preventive sale.sale,maintenance_type -1 selection optical_equipment f \N \N \N \N \N +5276 en Corrective sale.sale,maintenance_type -1 selection optical_equipment f \N \N \N \N \N +5277 en Payment Term sale.sale,payment_term_description -1 field optical_equipment f \N \N \N \N \N +5278 en Quote Number sale.sale,quote_number -1 field optical_equipment f \N \N \N \N \N +5279 en Sale Type sale.sale,sale_type -1 field optical_equipment f \N \N \N \N \N +5280 en Maintenance sale.sale,sale_type -1 selection optical_equipment f \N \N \N \N \N +5281 en Equipments sale.sale,sale_type -1 selection optical_equipment f \N \N \N \N \N +5282 en Replaces sale.sale,sale_type -1 selection optical_equipment f \N \N \N \N \N +5284 en Fecha Venta optical_equipment.confirm_sale_date.form,sale_date -1 field optical_equipment f \N \N \N \N \N +5285 en Product Equipment sale.line,product_equipment -1 field optical_equipment f \N \N \N \N \N +5287 en Code optical_equipment_maintenance.service,code -1 field optical_equipment f \N \N \N \N \N +5288 en Company optical_equipment_maintenance.service,company -1 field optical_equipment f \N \N \N \N \N +5289 en Contract Base optical_equipment_maintenance.service,contract_origin -1 field optical_equipment f \N \N \N \N \N +5290 en Current Agended optical_equipment_maintenance.service,current_agended -1 field optical_equipment f \N \N \N \N \N +5291 en Description optical_equipment_maintenance.service,description -1 field optical_equipment f \N \N \N \N \N +5292 en Date Maintenance optical_equipment_maintenance.service,estimated_agended -1 field optical_equipment f \N \N \N \N \N +5293 en History Agended optical_equipment_maintenance.service,history_agended -1 field optical_equipment f \N \N \N \N \N +5294 en Invima optical_equipment_maintenance.service,invima -1 field optical_equipment f \N \N \N \N \N +5295 en Lines optical_equipment_maintenance.service,lines -1 field optical_equipment f \N \N \N \N \N +5296 en Maintenance Type optical_equipment_maintenance.service,maintenance_type -1 field optical_equipment f \N \N \N \N \N +5297 en Initial optical_equipment_maintenance.service,maintenance_type -1 selection optical_equipment f \N \N \N \N \N +5298 en Preventive optical_equipment_maintenance.service,maintenance_type -1 selection optical_equipment f \N \N \N \N \N +5299 en Corrective optical_equipment_maintenance.service,maintenance_type -1 selection optical_equipment f \N \N \N \N \N +5300 en Moisture Max optical_equipment_maintenance.service,moisture_max -1 field optical_equipment f \N \N \N \N \N +5301 en Moisture Min optical_equipment_maintenance.service,moisture_min -1 field optical_equipment f \N \N \N \N \N +5302 en Moisture UOM optical_equipment_maintenance.service,moisture_uom -1 field optical_equipment f \N \N \N \N \N +5303 en Propietary optical_equipment_maintenance.service,propietary -1 field optical_equipment f \N \N \N \N \N +5304 en Propietary Address optical_equipment_maintenance.service,propietary_address -1 field optical_equipment f \N \N \N \N \N +5305 en Reference optical_equipment_maintenance.service,reference -1 field optical_equipment f \N \N \N \N \N +5306 en The identification of an external origin. optical_equipment_maintenance.service,reference -1 help optical_equipment f \N \N \N \N \N +5307 en Sale Date optical_equipment_maintenance.service,sale_date -1 field optical_equipment f \N \N \N \N \N +5308 en Sale Origin optical_equipment_maintenance.service,sale_origin -1 field optical_equipment f \N \N \N \N \N +5309 en State optical_equipment_maintenance.service,state -1 field optical_equipment f \N \N \N \N \N +5310 en Draft optical_equipment_maintenance.service,state -1 selection optical_equipment f \N \N \N \N \N +5311 en Agended optical_equipment_maintenance.service,state -1 selection optical_equipment f \N \N \N \N \N +5312 en In Progress optical_equipment_maintenance.service,state -1 selection optical_equipment f \N \N \N \N \N +5313 en Failed optical_equipment_maintenance.service,state -1 selection optical_equipment f \N \N \N \N \N +5314 en Finished optical_equipment_maintenance.service,state -1 selection optical_equipment f \N \N \N \N \N +5315 en State Agenda optical_equipment_maintenance.service,state_agended -1 field optical_equipment f \N \N \N \N \N +5316 en No agenda optical_equipment_maintenance.service,state_agended -1 selection optical_equipment f \N \N \N \N \N +5317 en Agended optical_equipment_maintenance.service,state_agended -1 selection optical_equipment f \N \N \N \N \N +5318 en In progress optical_equipment_maintenance.service,state_agended -1 selection optical_equipment f \N \N \N \N \N +5319 en Finish optical_equipment_maintenance.service,state_agended -1 selection optical_equipment f \N \N \N \N \N +5320 en Failed optical_equipment_maintenance.service,state_agended -1 selection optical_equipment f \N \N \N \N \N +5321 en Technical optical_equipment_maintenance.service,technical -1 field optical_equipment f \N \N \N \N \N +5322 en Technician Responsible optical_equipment_maintenance.service,technician_responsible -1 field optical_equipment f \N \N \N \N \N +5323 en Technician Signature optical_equipment_maintenance.service,technician_signature -1 field optical_equipment f \N \N \N \N \N +5324 en Temp Max optical_equipment_maintenance.service,temperature_max -1 field optical_equipment f \N \N \N \N \N +5325 en Temp Min optical_equipment_maintenance.service,temperature_min -1 field optical_equipment f \N \N \N \N \N +5326 en Temperature UOM optical_equipment_maintenance.service,temperature_uom -1 field optical_equipment f \N \N \N \N \N +344 en Log ir.model.log,name -1 model ir f \N \N \N \N \N +5328 en Calibration Total optical_equipment.maintenance,calibration_total -1 field optical_equipment f \N \N \N \N \N +5329 en Verificar Calibración optical_equipment.maintenance,check_calibration -1 field optical_equipment f \N \N \N \N \N +5330 en Revisión del sistema electríco optical_equipment.maintenance,check_electric_system -1 field optical_equipment f \N \N \N \N \N +5331 en Revisión del Equipo optical_equipment.maintenance,check_equipment -1 field optical_equipment f \N \N \N \N \N +5332 en Limpieza de lentes y espejos optical_equipment.maintenance,clean_eyes -1 field optical_equipment f \N \N \N \N \N +5333 en Limpieza interior y exterior optical_equipment.maintenance,clean_int_ext -1 field optical_equipment f \N \N \N \N \N +5334 en Code optical_equipment.maintenance,code -1 field optical_equipment f \N \N \N \N \N +5335 en Company optical_equipment.maintenance,company -1 field optical_equipment f \N \N \N \N \N +5336 en Activity optical_equipment.maintenance,description_activity -1 field optical_equipment f \N \N \N \N \N +5337 en Equipment optical_equipment.maintenance,equipment -1 field optical_equipment f \N \N \N \N \N +5338 en Calibrate Equipment optical_equipment.maintenance,equipment_calibrate -1 field optical_equipment f \N \N \N \N \N +5339 en Graphs optical_equipment.maintenance,graph_calibration -1 field optical_equipment f \N \N \N \N \N +5340 en Verificación inicial de funcionamiento optical_equipment.maintenance,initial_operation -1 field optical_equipment f \N \N \N \N \N +5341 en Invima optical_equipment.maintenance,invima -1 field optical_equipment f \N \N \N \N \N +5342 en Lines of Calibration optical_equipment.maintenance,lines_calibration -1 field optical_equipment f \N \N \N \N \N +5343 en Maintenance Activitys optical_equipment.maintenance,maintenance_activity -1 field optical_equipment f \N \N \N \N \N +5344 en Lines optical_equipment.maintenance,maintenance_lines -1 field optical_equipment f \N \N \N \N \N +5345 en Maintenance Type optical_equipment.maintenance,maintenance_type -1 field optical_equipment f \N \N \N \N \N +5346 en Initial optical_equipment.maintenance,maintenance_type -1 selection optical_equipment f \N \N \N \N \N +5347 en Preventive optical_equipment.maintenance,maintenance_type -1 selection optical_equipment f \N \N \N \N \N +5348 en Corrective optical_equipment.maintenance,maintenance_type -1 selection optical_equipment f \N \N \N \N \N +5349 en Moisture Max optical_equipment.maintenance,moisture_max -1 field optical_equipment f \N \N \N \N \N +5350 en Moisture Min optical_equipment.maintenance,moisture_min -1 field optical_equipment f \N \N \N \N \N +5351 en Moisture UOM optical_equipment.maintenance,moisture_uom -1 field optical_equipment f \N \N \N \N \N +5352 en Next Maintenance optical_equipment.maintenance,next_maintenance -1 field optical_equipment f \N \N \N \N \N +5353 en K Pattern optical_equipment.maintenance,patterns_equipments -1 field optical_equipment f \N \N \N \N \N +5354 en Propietary optical_equipment.maintenance,propietary -1 field optical_equipment f \N \N \N \N \N +5355 en Propietary Address optical_equipment.maintenance,propietary_address -1 field optical_equipment f \N \N \N \N \N +5356 en Maintenance Service optical_equipment.maintenance,service_maintenance -1 field optical_equipment f \N \N \N \N \N +5357 en State optical_equipment.maintenance,state -1 field optical_equipment f \N \N \N \N \N +5358 en Draft optical_equipment.maintenance,state -1 selection optical_equipment f \N \N \N \N \N +5359 en Finished optical_equipment.maintenance,state -1 selection optical_equipment f \N \N \N \N \N +5360 en Technician Responsible optical_equipment.maintenance,technician_responsible -1 field optical_equipment f \N \N \N \N \N +5361 en Technician Signature optical_equipment.maintenance,technician_signature -1 field optical_equipment f \N \N \N \N \N +5362 en Temp Max optical_equipment.maintenance,temperature_max -1 field optical_equipment f \N \N \N \N \N +5363 en Temp Min optical_equipment.maintenance,temperature_min -1 field optical_equipment f \N \N \N \N \N +5364 en Temperature UOM optical_equipment.maintenance,temperature_uom -1 field optical_equipment f \N \N \N \N \N +5366 en Company optical_equipment.maintenance.line,company -1 field optical_equipment f \N \N \N \N \N +5367 en Description optical_equipment.maintenance.line,description -1 field optical_equipment f \N \N \N \N \N +5368 en Maintenance Activity optical_equipment.maintenance.line,line_maintenance_activity -1 field optical_equipment f \N \N \N \N \N +5369 en Replace optical_equipment.maintenance.line,line_replace -1 field optical_equipment f \N \N \N \N \N +5370 en Maintenance optical_equipment.maintenance.line,maintenance -1 field optical_equipment f \N \N \N \N \N +5371 en Maintenance activity optical_equipment.maintenance.line,maintenance_activity -1 field optical_equipment f \N \N \N \N \N +5372 en Product Uom Category optical_equipment.maintenance.line,product_uom_category -1 field optical_equipment f \N \N \N \N \N +5373 en Quantity optical_equipment.maintenance.line,quantity -1 field optical_equipment f \N \N \N \N \N +5374 en Replacement optical_equipment.maintenance.line,replacement -1 field optical_equipment f \N \N \N \N \N +5375 en Unit optical_equipment.maintenance.line,unit -1 field optical_equipment f \N \N \N \N \N +5377 en Maintenance optical_equipment_maintenance.activity,maintenance -1 field optical_equipment f \N \N \N \N \N +5378 en Product optical_equipment_maintenance.activity,product -1 field optical_equipment f \N \N \N \N \N +1411 en Party Lang party.party.lang,name -1 model party f \N \N \N \N \N +5380 en Change Date optical_equipment.change_propietary_maintenance.form,change_date -1 field optical_equipment f \N \N \N \N \N +5381 en Maintenance Service optical_equipment.change_propietary_maintenance.form,maintenance_service -1 field optical_equipment f \N \N \N \N \N +5382 en New Address optical_equipment.change_propietary_maintenance.form,new_address -1 field optical_equipment f \N \N \N \N \N +5383 en New Propietary optical_equipment.change_propietary_maintenance.form,new_propietary -1 field optical_equipment f \N \N \N \N \N +5384 en Old Propietary optical_equipment.change_propietary_maintenance.form,old_propietary -1 field optical_equipment f \N \N \N \N \N +5385 en Equipment stock.move,equipment -1 field optical_equipment f \N \N \N \N \N +5386 en Serial stock.move,equipment_serial -1 field optical_equipment f \N \N \N \N \N +5387 en It Equipment stock.move,product_equipment -1 field optical_equipment f \N \N \N \N \N +5388 en Devolución stock.move,return_equipment -1 field optical_equipment f \N \N \N \N \N +5389 en Type sale origin stock.shipment.out,sale_type -1 field optical_equipment f \N \N \N \N \N +5390 en Maintenance Initial stock.shipment.out,service_maintenance_initial -1 field optical_equipment f \N \N \N \N \N +5391 en Type sale origin stock.shipment.out.return,sale_type -1 field optical_equipment f \N \N \N \N \N +5392 en Maintenance Initial stock.shipment.out.return,service_maintenance_initial -1 field optical_equipment f \N \N \N \N \N +5394 en Company optical_equipment.print_balance_sale_party.start,company -1 field optical_equipment f \N \N \N \N \N +5395 en End Period optical_equipment.print_balance_sale_party.start,end_period -1 field optical_equipment f \N \N \N \N \N +5396 en Fiscal Year optical_equipment.print_balance_sale_party.start,fiscalyear -1 field optical_equipment f \N \N \N \N \N +5397 en Party optical_equipment.print_balance_sale_party.start,party -1 field optical_equipment f \N \N \N \N \N +5398 en Party Type optical_equipment.print_balance_sale_party.start,party_type -1 field optical_equipment f \N \N \N \N \N +5399 en Customer optical_equipment.print_balance_sale_party.start,party_type -1 selection optical_equipment f \N \N \N \N \N +5400 en Start Period optical_equipment.print_balance_sale_party.start,start_period -1 field optical_equipment f \N \N \N \N \N +5414 en Equipment Administration res.group,name 18 Equipment Administration model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5415 en Equipment ir.ui.menu,name 179 Equipment model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5416 en Equipments ir.action,name 282 Equipments model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5417 en Draft ir.action.act_window.domain,name 74 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5418 en Registred ir.action.act_window.domain,name 75 Registred model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5419 en UnContrated ir.action.act_window.domain,name 76 UnContrated model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5420 en Contrated ir.action.act_window.domain,name 77 Contrated model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5421 en All ir.action.act_window.domain,name 78 All model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5422 en Draft ir.model.button,string 99 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5423 en Registred ir.model.button,string 100 Registred model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5424 en Are you sure you want to registred these equipments? ir.model.button,confirm 100 Are you sure you want to registred these equipments? model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5425 en Equipments ir.ui.menu,name 180 Equipments model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5426 en Serials ir.action,name 283 Serials model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5427 en Draft ir.action.act_window.domain,name 79 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5428 en Serials ir.ui.menu,name 181 Serials model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5429 en Equipment ir.action,name 284 Equipment model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5430 en Maintenance History ir.action,name 285 Maintenance History model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5431 en Change Propietary ir.action,name 286 Change Propietary model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5432 en Calibration ir.action,name 287 Calibration model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5433 en Calibrations ir.action,name 288 Calibrations model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5434 en Contracts ir.action,name 289 Contracts model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5435 en Draft ir.action.act_window.domain,name 80 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5436 en Running ir.action.act_window.domain,name 81 Running model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5437 en Closed ir.action.act_window.domain,name 82 Closed model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5438 en All ir.action.act_window.domain,name 83 All model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5439 en Draft ir.model.button,string 101 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5440 en Run ir.model.button,string 102 Run model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5441 en Closed ir.model.button,string 103 Closed model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5442 en Cancel ir.model.button,string 104 Cancel model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5443 en Contract Administration res.group,name 19 Contract Administration model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5444 en Contract ir.sequence.type,name 16 Contract model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5445 en Contract ir.sequence,name 12 Contract model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5446 en Create Contract ir.action,name 290 Create Contract model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5447 en Contract ir.action,name 291 Contract model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5448 en Prorrogation ir.action,name 292 Prorrogation model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5449 en Contracts Management ir.ui.menu,name 182 Contracts Management model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5450 en Contracts ir.ui.menu,name 183 Contracts model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5451 en Agended Administration res.group,name 20 Agended Administration model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5452 en Agended ir.action,name 293 Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5453 en Draft ir.action.act_window.domain,name 84 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5454 en Agended ir.action.act_window.domain,name 85 Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5455 en In progress ir.action.act_window.domain,name 86 In progress model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5456 en Failed ir.action.act_window.domain,name 87 Failed model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5457 en Finished ir.action.act_window.domain,name 88 Finished model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5458 en All ir.action.act_window.domain,name 89 All model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5413 en Confirmar optical_equipment.confirm_sale_date,start,confirm_date -1 wizard_button optical_equipment f \N \N \N \N \N +5459 en Agended ir.sequence.type,name 17 Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5460 en Agended ir.sequence,name 13 Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5461 en Diary ir.ui.menu,name 184 Diary model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5462 en Agended ir.ui.menu,name 185 Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5463 en Assing Agended ir.action,name 294 Assing Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5464 en ReAssing Agended ir.action,name 295 ReAssing Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5465 en Assing Agended ir.ui.menu,name 186 Assing Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5466 en ReAssing Agended ir.ui.menu,name 187 ReAssing Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5467 en Configuration ir.action,name 296 Configuration model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5468 en Configuration ir.ui.menu,name 188 Configuration model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5469 en Configuration ir.ui.menu,name 189 Configuration model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5470 en Maintenance Administration res.group,name 21 Maintenance Administration model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5471 en Equipment ir.sequence.type,name 18 Equipment model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5472 en Equipment ir.sequence,name 14 Equipment model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5473 en Maintenances ir.sequence.type,name 19 Maintenances model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5474 en Maintenance ir.sequence,name 15 Maintenance model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5475 en Services Maintenance ir.action,name 297 Services Maintenance model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5476 en Draft ir.action.act_window.domain,name 90 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5477 en Agended ir.action.act_window.domain,name 91 Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5478 en In progress ir.action.act_window.domain,name 92 In progress model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5479 en Failed ir.action.act_window.domain,name 93 Failed model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5480 en Finished ir.action.act_window.domain,name 94 Finished model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5481 en All ir.action.act_window.domain,name 95 All model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5482 en Maintenance Lines ir.action,name 298 Maintenance Lines model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5483 en Draft ir.action.act_window.domain,name 96 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5484 en Finished ir.action.act_window.domain,name 97 Finished model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5485 en All ir.action.act_window.domain,name 98 All model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5486 en Assing Agended ir.model.button,string 105 Assing Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5487 en Reassing Agended ir.model.button,string 106 Reassing Agended model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5488 en Draft ir.model.button,string 107 Draft model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5489 en In progress ir.model.button,string 108 In progress model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5490 en Finished ir.model.button,string 109 Finished model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5491 en In progress ir.model.button,string 110 In progress model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5492 en Finished ir.model.button,string 111 Finished model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5493 en Generate Samples ir.model.button,string 112 Generate Samples model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5494 en Calibrate ir.model.button,string 113 Calibrate model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5495 en Service ir.action,name 299 Service model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5496 en Hojas de Vida ir.action,name 300 Hojas de Vida model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5497 en Maintenance Service ir.action,name 301 Maintenance Service model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5498 en Time Line Maintenance Service ir.action,name 302 Time Line Maintenance Service model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5499 en Maintenances Historys ir.action,name 303 Maintenances Historys model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5500 en Change Propietary Maintenance ir.action,name 304 Change Propietary Maintenance model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5501 en Services Maintenance ir.ui.menu,name 190 Services Maintenance model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5502 en Maintenance Lines ir.ui.menu,name 191 Maintenance Lines model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5503 en Maintenance Initial ir.model.button,string 114 Maintenance Initial model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +636 en Load ir.lang.config,start,load -1 wizard_button ir f \N \N \N \N \N +5504 en Acta Entrega ir.action,name 305 Acta Entrega model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5505 en Capacitation ir.action,name 306 Capacitation model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5506 en Electric Tension product.uom.category,name 8 Electric Tension model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5507 en Volt product.uom,name 36 Volt model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5508 en V product.uom,symbol 36 V model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5509 en Radian Power product.uom.category,name 9 Radian Power model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5510 en Watt product.uom,name 37 Watt model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5511 en W product.uom,symbol 37 W model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5512 en Frequency product.uom.category,name 10 Frequency model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5513 en Hertz product.uom,name 38 Hertz model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5514 en Hrz product.uom,symbol 38 Hrz model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5515 en Temperature product.uom.category,name 11 Temperature model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5516 en Celsius product.uom,name 39 Celsius model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5517 en °C product.uom,symbol 39 °C model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5518 en Fahrenheit product.uom,name 40 Fahrenheit model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5519 en °F product.uom,symbol 40 °F model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5520 en Kelvin product.uom,name 41 Kelvin model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5521 en °K product.uom,symbol 41 °K model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5522 en Relative Humedity product.uom.category,name 12 Relative Humedity model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5523 en Relative Humedity product.uom,name 42 Relative Humedity model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5524 en %HR product.uom,symbol 42 %HR model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5525 en Use Pattern ir.action,name 307 Use Pattern model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5526 en Properties of Equipments ir.ui.menu,name 192 Properties of Equipments model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5527 en Pattern Use ir.ui.menu,name 193 Pattern Use model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5528 en Create Equipments ir.model.button,string 115 Create Equipments model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5529 en Purchase ir.action,name 308 Purchase model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5530 en Sale Quote ir.sequence,name 16 Sale Quote model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5531 en Estado de Cuenta ir.model.button,string 116 Estado de Cuenta model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5532 en Confirm Sale Date ir.action,name 309 Confirm Sale Date model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5533 en Sale Equipments ir.action,name 310 Sale Equipments model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5534 en Sale Equipments Internal ir.action,name 311 Sale Equipments Internal model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5535 en Payment ir.action,name 312 Payment model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5536 en Balance by Party ir.action,name 313 Balance by Party model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5537 en Print Balance Sale by Party ir.action,name 314 Print Balance Sale by Party model optical_equipment f 2024-04-13 20:39:21.814652 0 \N 2024-04-13 20:39:21.814652 0 +5538 en Print Balance Sale by Party ir.ui.menu,name 194 Print Balance Sale by Party model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5539 en La linea de envio se encuentra sin serial. Debe asignar un equipo a cada linea correspondiente. ir.message,text 368 La linea de envio se encuentra sin serial. Debe asignar un equipo a cada linea correspondiente. model optical_equipment f 2024-04-13 20:39:21.814652 0 \N \N \N +5540 en UAE Dirham currency.currency,name 1 UAE Dirham model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5541 en Afghani currency.currency,name 2 Afghani model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5542 en Lek currency.currency,name 3 Lek model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5543 en Armenian Dram currency.currency,name 4 Armenian Dram model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5544 en Netherlands Antillean Guilder currency.currency,name 5 Netherlands Antillean Guilder model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5545 en Kwanza currency.currency,name 6 Kwanza model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5546 en Argentine Peso currency.currency,name 7 Argentine Peso model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5547 en Australian Dollar currency.currency,name 8 Australian Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5548 en Aruban Florin currency.currency,name 9 Aruban Florin model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5549 en Azerbaijan Manat currency.currency,name 10 Azerbaijan Manat model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5550 en Convertible Mark currency.currency,name 11 Convertible Mark model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5551 en Barbados Dollar currency.currency,name 12 Barbados Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5552 en Taka currency.currency,name 13 Taka model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5553 en Bulgarian Lev currency.currency,name 14 Bulgarian Lev model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5554 en Bahraini Dinar currency.currency,name 15 Bahraini Dinar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5555 en Burundi Franc currency.currency,name 16 Burundi Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5556 en Bermudian Dollar currency.currency,name 17 Bermudian Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5557 en Brunei Dollar currency.currency,name 18 Brunei Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5558 en Boliviano currency.currency,name 19 Boliviano model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5559 en Mvdol currency.currency,name 20 Mvdol model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5560 en Brazilian Real currency.currency,name 21 Brazilian Real model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5561 en Bahamian Dollar currency.currency,name 22 Bahamian Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5562 en Ngultrum currency.currency,name 23 Ngultrum model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5563 en Pula currency.currency,name 24 Pula model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5564 en Belarusian Ruble currency.currency,name 25 Belarusian Ruble model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5565 en Belize Dollar currency.currency,name 26 Belize Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5566 en Canadian Dollar currency.currency,name 27 Canadian Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5567 en Congolese Franc currency.currency,name 28 Congolese Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5568 en WIR Euro currency.currency,name 29 WIR Euro model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5569 en Swiss Franc currency.currency,name 30 Swiss Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5570 en WIR Franc currency.currency,name 31 WIR Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5571 en Unidad de Fomento currency.currency,name 32 Unidad de Fomento model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5572 en Chilean Peso currency.currency,name 33 Chilean Peso model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5573 en Yuan Renminbi currency.currency,name 34 Yuan Renminbi model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5574 en Colombian Peso currency.currency,name 35 Colombian Peso model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5575 en Unidad de Valor Real currency.currency,name 36 Unidad de Valor Real model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5576 en Costa Rican Colon currency.currency,name 37 Costa Rican Colon model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5577 en Peso Convertible currency.currency,name 38 Peso Convertible model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5578 en Cuban Peso currency.currency,name 39 Cuban Peso model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5579 en Cabo Verde Escudo currency.currency,name 40 Cabo Verde Escudo model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5580 en Czech Koruna currency.currency,name 41 Czech Koruna model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5581 en Djibouti Franc currency.currency,name 42 Djibouti Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5582 en Danish Krone currency.currency,name 43 Danish Krone model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5583 en Dominican Peso currency.currency,name 44 Dominican Peso model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5584 en Algerian Dinar currency.currency,name 45 Algerian Dinar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5585 en Egyptian Pound currency.currency,name 46 Egyptian Pound model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5586 en Nakfa currency.currency,name 47 Nakfa model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5587 en Ethiopian Birr currency.currency,name 48 Ethiopian Birr model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5588 en Euro currency.currency,name 49 Euro model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5589 en Fiji Dollar currency.currency,name 50 Fiji Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5590 en Falkland Islands Pound currency.currency,name 51 Falkland Islands Pound model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5591 en Pound Sterling currency.currency,name 52 Pound Sterling model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5592 en Lari currency.currency,name 53 Lari model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5593 en Ghana Cedi currency.currency,name 54 Ghana Cedi model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5594 en Gibraltar Pound currency.currency,name 55 Gibraltar Pound model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5595 en Dalasi currency.currency,name 56 Dalasi model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5596 en Guinean Franc currency.currency,name 57 Guinean Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5597 en Quetzal currency.currency,name 58 Quetzal model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5598 en Guyana Dollar currency.currency,name 59 Guyana Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5599 en Hong Kong Dollar currency.currency,name 60 Hong Kong Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5600 en Lempira currency.currency,name 61 Lempira model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5601 en Kuna currency.currency,name 62 Kuna model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5602 en Gourde currency.currency,name 63 Gourde model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5603 en Forint currency.currency,name 64 Forint model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5604 en Rupiah currency.currency,name 65 Rupiah model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5605 en New Israeli Sheqel currency.currency,name 66 New Israeli Sheqel model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5606 en Indian Rupee currency.currency,name 67 Indian Rupee model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5607 en Iraqi Dinar currency.currency,name 68 Iraqi Dinar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5608 en Iranian Rial currency.currency,name 69 Iranian Rial model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5609 en Iceland Krona currency.currency,name 70 Iceland Krona model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5610 en Jamaican Dollar currency.currency,name 71 Jamaican Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5611 en Jordanian Dinar currency.currency,name 72 Jordanian Dinar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5612 en Yen currency.currency,name 73 Yen model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5613 en Kenyan Shilling currency.currency,name 74 Kenyan Shilling model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5614 en Som currency.currency,name 75 Som model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5615 en Riel currency.currency,name 76 Riel model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5616 en Comorian Franc currency.currency,name 77 Comorian Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5617 en North Korean Won currency.currency,name 78 North Korean Won model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5618 en Won currency.currency,name 79 Won model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5619 en Kuwaiti Dinar currency.currency,name 80 Kuwaiti Dinar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5620 en Cayman Islands Dollar currency.currency,name 81 Cayman Islands Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5621 en Tenge currency.currency,name 82 Tenge model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5622 en Lao Kip currency.currency,name 83 Lao Kip model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5623 en Lebanese Pound currency.currency,name 84 Lebanese Pound model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5624 en Sri Lanka Rupee currency.currency,name 85 Sri Lanka Rupee model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5625 en Liberian Dollar currency.currency,name 86 Liberian Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5626 en Loti currency.currency,name 87 Loti model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5627 en Libyan Dinar currency.currency,name 88 Libyan Dinar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5628 en Moroccan Dirham currency.currency,name 89 Moroccan Dirham model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5629 en Moldovan Leu currency.currency,name 90 Moldovan Leu model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5630 en Malagasy Ariary currency.currency,name 91 Malagasy Ariary model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5631 en Denar currency.currency,name 92 Denar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5632 en Kyat currency.currency,name 93 Kyat model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5633 en Tugrik currency.currency,name 94 Tugrik model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5634 en Pataca currency.currency,name 95 Pataca model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5635 en Ouguiya currency.currency,name 96 Ouguiya model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5636 en Mauritius Rupee currency.currency,name 97 Mauritius Rupee model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5637 en Rufiyaa currency.currency,name 98 Rufiyaa model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5638 en Malawi Kwacha currency.currency,name 99 Malawi Kwacha model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5639 en Mexican Peso currency.currency,name 100 Mexican Peso model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5640 en Mexican Unidad de Inversion (UDI) currency.currency,name 101 Mexican Unidad de Inversion (UDI) model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5641 en Malaysian Ringgit currency.currency,name 102 Malaysian Ringgit model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5642 en Mozambique Metical currency.currency,name 103 Mozambique Metical model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5643 en Namibia Dollar currency.currency,name 104 Namibia Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5644 en Naira currency.currency,name 105 Naira model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5645 en Cordoba Oro currency.currency,name 106 Cordoba Oro model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5646 en Norwegian Krone currency.currency,name 107 Norwegian Krone model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5647 en Nepalese Rupee currency.currency,name 108 Nepalese Rupee model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5648 en New Zealand Dollar currency.currency,name 109 New Zealand Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5649 en Rial Omani currency.currency,name 110 Rial Omani model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5650 en Balboa currency.currency,name 111 Balboa model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5651 en Sol currency.currency,name 112 Sol model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5652 en Kina currency.currency,name 113 Kina model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5653 en Philippine Peso currency.currency,name 114 Philippine Peso model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5654 en Pakistan Rupee currency.currency,name 115 Pakistan Rupee model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5655 en Zloty currency.currency,name 116 Zloty model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5656 en Guarani currency.currency,name 117 Guarani model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5657 en Qatari Rial currency.currency,name 118 Qatari Rial model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5658 en Romanian Leu currency.currency,name 119 Romanian Leu model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5659 en Serbian Dinar currency.currency,name 120 Serbian Dinar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5660 en Russian Ruble currency.currency,name 121 Russian Ruble model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5661 en Rwanda Franc currency.currency,name 122 Rwanda Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5662 en Saudi Riyal currency.currency,name 123 Saudi Riyal model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5663 en Solomon Islands Dollar currency.currency,name 124 Solomon Islands Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5664 en Seychelles Rupee currency.currency,name 125 Seychelles Rupee model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5665 en Sudanese Pound currency.currency,name 126 Sudanese Pound model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5666 en Swedish Krona currency.currency,name 127 Swedish Krona model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5667 en Singapore Dollar currency.currency,name 128 Singapore Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5668 en Saint Helena Pound currency.currency,name 129 Saint Helena Pound model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5669 en Leone currency.currency,name 130 Leone model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5670 en Leone currency.currency,name 131 Leone model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5671 en Somali Shilling currency.currency,name 132 Somali Shilling model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5672 en Surinam Dollar currency.currency,name 133 Surinam Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5673 en South Sudanese Pound currency.currency,name 134 South Sudanese Pound model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5674 en Dobra currency.currency,name 135 Dobra model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5675 en El Salvador Colon currency.currency,name 136 El Salvador Colon model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5676 en Syrian Pound currency.currency,name 137 Syrian Pound model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5677 en Lilangeni currency.currency,name 138 Lilangeni model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5678 en Baht currency.currency,name 139 Baht model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5679 en Somoni currency.currency,name 140 Somoni model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5680 en Turkmenistan New Manat currency.currency,name 141 Turkmenistan New Manat model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5681 en Tunisian Dinar currency.currency,name 142 Tunisian Dinar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5682 en Pa’anga currency.currency,name 143 Pa’anga model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5683 en Turkish Lira currency.currency,name 144 Turkish Lira model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5684 en Trinidad and Tobago Dollar currency.currency,name 145 Trinidad and Tobago Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5685 en New Taiwan Dollar currency.currency,name 146 New Taiwan Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5686 en Tanzanian Shilling currency.currency,name 147 Tanzanian Shilling model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5687 en Hryvnia currency.currency,name 148 Hryvnia model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5688 en Uganda Shilling currency.currency,name 149 Uganda Shilling model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5689 en US Dollar currency.currency,name 150 US Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5690 en US Dollar (Next day) currency.currency,name 151 US Dollar (Next day) model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5691 en Uruguay Peso en Unidades Indexadas (UI) currency.currency,name 152 Uruguay Peso en Unidades Indexadas (UI) model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5692 en Peso Uruguayo currency.currency,name 153 Peso Uruguayo model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5693 en Unidad Previsional currency.currency,name 154 Unidad Previsional model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5694 en Uzbekistan Sum currency.currency,name 155 Uzbekistan Sum model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5695 en Bolívar Soberano currency.currency,name 156 Bolívar Soberano model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5696 en Bolívar Soberano currency.currency,name 157 Bolívar Soberano model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5697 en Dong currency.currency,name 158 Dong model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5698 en Vatu currency.currency,name 159 Vatu model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5699 en Tala currency.currency,name 160 Tala model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5700 en CFA Franc BEAC currency.currency,name 161 CFA Franc BEAC model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5701 en Silver currency.currency,name 162 Silver model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5702 en Gold currency.currency,name 163 Gold model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5703 en Bond Markets Unit European Composite Unit (EURCO) currency.currency,name 164 Bond Markets Unit European Composite Unit (EURCO) model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5704 en Bond Markets Unit European Monetary Unit (E.M.U.-6) currency.currency,name 165 Bond Markets Unit European Monetary Unit (E.M.U.-6) model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5705 en Bond Markets Unit European Unit of Account 9 (E.U.A.-9) currency.currency,name 166 Bond Markets Unit European Unit of Account 9 (E.U.A.-9) model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5706 en Bond Markets Unit European Unit of Account 17 (E.U.A.-17) currency.currency,name 167 Bond Markets Unit European Unit of Account 17 (E.U.A.-17) model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5707 en East Caribbean Dollar currency.currency,name 168 East Caribbean Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5708 en SDR (Special Drawing Right) currency.currency,name 169 SDR (Special Drawing Right) model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5709 en CFA Franc BCEAO currency.currency,name 170 CFA Franc BCEAO model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5710 en Palladium currency.currency,name 171 Palladium model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5711 en CFP Franc currency.currency,name 172 CFP Franc model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5712 en Platinum currency.currency,name 173 Platinum model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5713 en Sucre currency.currency,name 174 Sucre model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5714 en Codes specifically reserved for testing purposes currency.currency,name 175 Codes specifically reserved for testing purposes model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5715 en ADB Unit of Account currency.currency,name 176 ADB Unit of Account model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5716 en The codes assigned for transactions where no currency is involved currency.currency,name 177 The codes assigned for transactions where no currency is involved model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5717 en Yemeni Rial currency.currency,name 178 Yemeni Rial model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5718 en Rand currency.currency,name 179 Rand model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5719 en Zambian Kwacha currency.currency,name 180 Zambian Kwacha model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5720 en Zimbabwe Dollar currency.currency,name 181 Zimbabwe Dollar model \N f 2024-04-13 20:49:23.067309 1 \N \N \N +5721 en contabilidad product.category,name 1 contabilidad model \N f 2024-04-13 20:52:46.045466 1 \N \N \N +1020 en Model Button - Group ir.model.button-res.group,name -1 model res f \N \N \N \N \N +1026 en Rule Group - Group ir.rule.group-res.group,name -1 model res f \N \N \N \N \N +1031 en Sequence Type - Group ir.sequence.type-res.group,name -1 model res f \N \N \N \N \N +1038 en Export Group ir.export-res.group,name -1 model res f \N \N \N \N \N +1041 en Export Modification Group ir.export-write-res.group,name -1 model res f \N \N \N \N \N +1044 en Cancel res.user.config,start,end -1 wizard_button res f \N \N \N \N \N +1045 en OK res.user.config,start,user -1 wizard_button res f \N \N \N \N \N +1046 en End res.user.config,user,end -1 wizard_button res f \N \N \N \N \N +1047 en Add res.user.config,user,add -1 wizard_button res f \N \N \N \N \N +1075 en Organization country.organization,name -1 model country f \N \N \N \N \N +1080 en Organization Member country.organization.member,name -1 model country f \N \N \N \N \N +1093 en Country country.country,name -1 model country f \N \N \N \N \N +1107 en Subdivision country.subdivision,name -1 model country f \N \N \N \N \N +1254 en Postal Code country.postal_code,name -1 model country f \N \N \N \N \N +1348 en Currency Cron currency.cron,name -1 model currency f \N \N \N \N \N +1364 en Currency Cron - Currency currency.cron-currency.currency,name -1 model currency f \N \N \N \N \N +1378 en Category party.category,name -1 model party f \N \N \N \N \N +1385 en Party party.party,name -1 model party f \N \N \N \N \N +948 en Group res.group,name -1 model res f \N \N \N \N \N +958 en User res.user,name -1 model res f \N \N \N \N \N +979 en Login Attempt res.user.login.attempt,name -1 model res f \N \N \N \N \N +984 en User Device res.user.device,name -1 model res f \N \N \N \N \N +987 en User - Action res.user-ir.action,name -1 model res f \N \N \N \N \N +990 en User - Group res.user-res.group,name -1 model res f \N \N \N \N \N +993 en User Warning res.user.warning,name -1 model res f \N \N \N \N \N +997 en User Application res.user.application,name -1 model res f \N \N \N \N \N +1005 en User Config Init res.user.config.start,name -1 model res f \N \N \N \N \N +1007 en UI Menu - Group ir.ui.menu-res.group,name -1 model res f \N \N \N \N \N +1010 en Action - Group ir.action-res.group,name -1 model res f \N \N \N \N \N +1804 en Account Type Template account.account.type.template,name -1 model account f \N \N \N \N \N +1820 en Account Type account.account.type,name -1 model account f \N \N \N \N \N +1843 en Account Template account.account.template,name -1 model account f \N \N \N \N \N +1863 en Account Template - Tax Template account.account.template-account.tax.template,name -1 model account f \N \N \N \N \N +1907 en Account Party account.account.party,name -1 model account f \N \N \N \N \N +1927 en Account Deferral account.account.deferral,name -1 model account f \N \N \N \N \N +1937 en Account - Tax account.account-account.tax,name -1 model account f \N \N \N \N \N +1940 en Account Context account.account.context,name -1 model account f \N \N \N \N \N +1946 en General Ledger Account account.general_ledger.account,name -1 model account f \N \N \N \N \N +1995 en General Ledger Line account.general_ledger.line,name -1 model account f \N \N \N \N \N +2580 en Create account.create_chart,properties,create_properties -1 wizard_button account f \N \N \N \N \N +2581 en Cancel account.create_chart,start,end -1 wizard_button account f \N \N \N \N \N +2566 en Renew Fiscal Year Start account.fiscalyear.renew.start,name -1 model account f \N \N \N \N \N +2858 en Unit of Measure Category product.uom.category,name -1 model product f \N \N \N \N \N +2861 en Unit of Measure product.uom,name -1 model product f \N \N \N \N \N +2875 en Product Category product.category,name -1 model product f \N \N \N \N \N +2882 en Product Template product.template,name -1 model product f \N \N \N \N \N +2911 en Product Variant product.product,name -1 model product f \N \N \N \N \N +3221 en Stock Location stock.location,name -1 model stock f \N \N \N \N \N +3267 en Warehouse Waste Location stock.location.waste,name -1 model stock f \N \N \N \N \N +3270 en Products by Locations stock.products_by_locations.context,name -1 model stock f \N \N \N \N \N +3275 en Products by Locations stock.products_by_locations,name -1 model stock f \N \N \N \N \N +3283 en Location Lead Time stock.location.lead_time,name -1 model stock f \N \N \N \N \N +3288 en Stock Move stock.move,name -1 model stock f \N \N \N \N \N +3334 en Supplier Shipment stock.shipment.in,name -1 model stock f \N \N \N \N \N +3364 en Supplier Return Shipment stock.shipment.in.return,name -1 model stock f \N \N \N \N \N +3393 en Customer Shipment stock.shipment.out,name -1 model stock f \N \N \N \N \N +3428 en Customer Return Shipment stock.shipment.out.return,name -1 model stock f \N \N \N \N \N +3458 en Internal Shipment stock.shipment.internal,name -1 model stock f \N \N \N \N \N +3975 en Test Payment Term account.invoice.payment_term.test.result,name -1 model account_invoice f \N \N \N \N \N +3979 en Invoice account.invoice,name -1 model account_invoice f \N \N \N \N \N +4039 en Invoice Additional Move account.invoice-additional-account.move,name -1 model account_invoice f \N \N \N \N \N +2950 en Product Identifier product.identifier,name -1 model product f \N \N \N \N \N +2961 en Product List Price product.list_price,name -1 model product f \N \N \N \N \N +4042 en Invoice Alternative Payee account.invoice.alternative_payee,name -1 model account_invoice f \N \N \N \N \N +2965 en Product Cost Price Method product.cost_price_method,name -1 model product f \N \N \N \N \N +2577 en Cancel account.create_chart,account,end -1 wizard_button account f \N \N \N \N \N +2578 en Create account.create_chart,account,create_account -1 wizard_button account f \N \N \N \N \N +2579 en Cancel account.create_chart,properties,end -1 wizard_button account f \N \N \N \N \N +4715 en Product Lead Time product.lead_time,name -1 model sale f \N \N \N \N \N +4725 en Product Sale Context product.sale.context,name -1 model sale f \N \N \N \N \N +4733 en Handle Shipment Exception sale.handle.shipment.exception.ask,name -1 model sale f \N \N \N \N \N +4736 en Handle Invoice Exception sale.handle.invoice.exception.ask,name -1 model sale f \N \N \N \N \N +4740 en Return Sale sale.return_sale.start,name -1 model sale f \N \N \N \N \N +4741 en Sale Configuration sale.configuration,name -1 model sale f \N \N \N \N \N +4045 en Invoice - Payment Line account.invoice-account.move.line,name -1 model account_invoice f \N \N \N \N \N +4051 en Invoice Line account.invoice.line,name -1 model account_invoice f \N \N \N \N \N +4083 en Invoice Line - Tax account.invoice.line-account.tax,name -1 model account_invoice f \N \N \N \N \N +4086 en Invoice Tax account.invoice.tax,name -1 model account_invoice f \N \N \N \N \N +4098 en Pay Invoice account.invoice.pay.start,name -1 model account_invoice f \N \N \N \N \N +4252 en Invoice Line - Stock Move account.invoice.line-stock.move,name -1 model account_invoice_stock f \N \N \N \N \N +4324 en Purchase - Ignored Invoice purchase.purchase-ignored-account.invoice,name -1 model purchase f \N \N \N \N \N +4327 en Purchase - Recreated Invoice purchase.purchase-recreated-account.invoice,name -1 model purchase f \N \N \N \N \N +4330 en Purchase Line purchase.line,name -1 model purchase f \N \N \N \N \N +4368 en Purchase Line - Tax purchase.line-account.tax,name -1 model purchase f \N \N \N \N \N +4371 en Purchase Line - Ignored Move purchase.line-ignored-stock.move,name -1 model purchase f \N \N \N \N \N +4374 en Purchase Line - Ignored Move purchase.line-recreated-stock.move,name -1 model purchase f \N \N \N \N \N +4387 en Product Supplier purchase.product_supplier,name -1 model purchase f \N \N \N \N \N +4400 en Product Supplier Price purchase.product_supplier.price,name -1 model purchase f \N \N \N \N \N +4408 en Handle Shipment Exception purchase.handle.shipment.exception.ask,name -1 model purchase f \N \N \N \N \N +4412 en Handle Invoice Exception purchase.handle.invoice.exception.ask,name -1 model purchase f \N \N \N \N \N +4416 en Purchase Configuration purchase.configuration,name -1 model purchase f \N \N \N \N \N +4747 en Sale Configuration Sequence sale.configuration.sequence,name -1 model sale f \N \N \N \N \N +4421 en Purchase Configuration Sequence purchase.configuration.sequence,name -1 model purchase f \N \N \N \N \N +4464 en Purchase Reporting purchase.reporting.main,name -1 model purchase f \N \N \N \N \N +4638 en Sale - Ignored Invoice sale.sale-ignored-account.invoice,name -1 model sale f \N \N \N \N \N +4641 en Sale - Recreated Invoice sale.sale-recreated-account.invoice,name -1 model sale f \N \N \N \N \N +4644 en Sale Line sale.line,name -1 model sale f \N \N \N \N \N +4678 en Sale Line - Tax sale.line-account.tax,name -1 model sale f \N \N \N \N \N +4681 en Sale Line - Ignored Move sale.line-ignored-stock.move,name -1 model sale f \N \N \N \N \N +4684 en Sale Line - Recreated Move sale.line-recreated-stock.move,name -1 model sale f \N \N \N \N \N +4695 en Party Customer Currency party.party.customer_currency,name -1 model sale f \N \N \N \N \N +4699 en Party Sale Method party.party.sale_method,name -1 model sale f \N \N \N \N \N +4706 en Product Default Lead Time product.configuration.default_lead_time,name -1 model sale f \N \N \N \N \N +5015 en Change Equipment optical_equipment.equipment-change_propietary.form,name -1 model optical_equipment f \N \N \N \N \N +5019 en Agended maintenance service optical_equipment_maintenance.agended,name -1 model optical_equipment f \N \N \N \N \N +5023 en Agended maintenance service optical_equipment_maintenance.reagended,name -1 model optical_equipment f \N \N \N \N \N +5027 en Service Maintenance - Agended optical_equipment_maintenance.service-maintenance.diary,name -1 model optical_equipment f \N \N \N \N \N +5030 en Calibration of Maintenance optical_equipment.maintenance.calibration,name -1 model optical_equipment f \N \N \N \N \N +5048 en Samples of Calibration optical_equipment.maintenance.calibration_sample,name -1 model optical_equipment f \N \N \N \N \N +5056 en Equipment Configuration optical_equipment.configuration,name -1 model optical_equipment f \N \N \N \N \N +5071 en Diary optical_equipment_maintenance.diary,name -1 model optical_equipment f \N \N \N \N \N +5085 en Create Contract Inicial optical_equipment_create.contract,name -1 model optical_equipment f \N \N \N \N \N +5259 en Pattern K of equipment optical_equipment.product_pattern,name -1 model optical_equipment f \N \N \N \N \N +5262 en Use Pattern optical_equipment.use_pattern,name -1 model optical_equipment f \N \N \N \N \N +4750 en Sale Configuration Sale Method sale.configuration.sale_method,name -1 model sale f \N \N \N \N \N +4753 en Sale Reporting Context sale.reporting.context,name -1 model sale f \N \N \N \N \N +4762 en Sale Reporting sale.reporting.main,name -1 model sale f \N \N \N \N \N +4931 en Optical Equipment optical_equipment.equipment,name -1 model optical_equipment f \N \N \N \N \N +4971 en Optical Equipment - Party optical_equipment.equipment-party.party,name -1 model optical_equipment f \N \N \N \N \N +4974 en Contracts optical_equipment.contract,name -1 model optical_equipment f \N \N \N \N \N +5000 en Contract - Maintenance Services optical_equipment_maintenance.service-equipment.contract,name -1 model optical_equipment f \N \N \N \N \N +5003 en Optical Equipment - Contracs Equipment optical_equipment.contract-optical_equipment.equipment,name -1 model optical_equipment f \N \N \N \N \N +5006 en Optical Equipment - Equipment - Maintenance optical_equipment.maintenance-optical_equipment.equipment,name -1 model optical_equipment f \N \N \N \N \N +5009 en Change of Propietary Equipment optical_equipment.change_propietary.form,name -1 model optical_equipment f \N \N \N \N \N +57 en Sequence Strict ir.sequence.strict,name -1 model ir f \N \N \N \N \N +76 en UI menu ir.ui.menu,name -1 model ir f \N \N \N \N \N +85 en Menu Favorite ir.ui.menu.favorite,name -1 model ir f \N \N \N \N \N +88 en View ir.ui.view,name -1 model ir f \N \N \N \N \N +105 en Show view ir.ui.view.show.start,name -1 model ir f \N \N \N \N \N +106 en View Tree Width ir.ui.view_tree_width,name -1 model ir f \N \N \N \N \N +1414 en Party - Category party.party-party.category,name -1 model party f \N \N \N \N \N +1417 en Party Identifier party.identifier,name -1 model party f \N \N \N \N \N +1425 en Check VIES party.check_vies.result,name -1 model party f \N \N \N \N \N +1967 en General Ledger Account Context account.general_ledger.account.context,name -1 model account f \N \N \N \N \N +1978 en General Ledger Account Party account.general_ledger.account.party,name -1 model account f \N \N \N \N \N +2018 en General Ledger Line Context account.general_ledger.line.context,name -1 model account f \N \N \N \N \N +2030 en Balance Sheet Context account.balance_sheet.context,name -1 model account f \N \N \N \N \N +2035 en Balance Sheet Context account.balance_sheet.comparison.context,name -1 model account f \N \N \N \N \N +2042 en Income Statement Context account.income_statement.context,name -1 model account f \N \N \N \N \N +2057 en Create Chart account.create_chart.start,name -1 model account f \N \N \N \N \N +2058 en Create Chart account.create_chart.account,name -1 model account f \N \N \N \N \N +2061 en Create Chart account.create_chart.properties,name -1 model account f \N \N \N \N \N +2065 en Update Chart account.update_chart.start,name -1 model account f \N \N \N \N \N +4108 en Pay Invoice account.invoice.pay.ask,name -1 model account_invoice f \N \N \N \N \N +2979 en Product Configuration product.configuration,name -1 model product f \N \N \N \N \N +4147 en Invoice Sequence account.fiscalyear.invoice_sequence,name -1 model account_invoice f \N \N \N \N \N +4158 en Payment Method account.invoice.payment.method,name -1 model account_invoice f \N \N \N \N \N +4168 en Close account.invoice.payment_term.test,test,end -1 wizard_button account_invoice f \N \N \N \N \N +4169 en Cancel account.invoice.pay,ask,end -1 wizard_button account_invoice f \N \N \N \N \N +2595 en Cancel account.move.cancel,default,end -1 wizard_button account f \N \N \N \N \N +2582 en OK account.create_chart,start,account -1 wizard_button account f \N \N \N \N \N +2511 en Account Move Line Template account.move.line.template,name -1 model account f \N \N \N \N \N +2525 en Account Tax Line Template account.tax.line.template,name -1 model account f \N \N \N \N \N +2533 en Create Move from Template account.move.template.create.template,name -1 model account f \N \N \N \N \N +2537 en Create Move from Template account.move.template.create.keywords,name -1 model account f \N \N \N \N \N +2550 en Party Account party.party.account,name -1 model account f \N \N \N \N \N +2557 en Create Periods Start account.fiscalyear.create_periods.start,name -1 model account f \N \N \N \N \N +3496 en Assign Shipment stock.shipment.assign.partial,name -1 model stock f \N \N \N \N \N +3505 en Party Location party.party.location,name -1 model stock f \N \N \N \N \N +3511 en Party Delivered to Warehouse party.party-delivered_to-stock.location,name -1 model stock f \N \N \N \N \N +4122 en Credit Invoice account.invoice.credit.start,name -1 model account_invoice f \N \N \N \N \N +3519 en Stock Period stock.period,name -1 model stock f \N \N \N \N \N +3529 en Stock Period Cache stock.period.cache,name -1 model stock f \N \N \N \N \N +2969 en Product Cost Price product.cost_price,name -1 model product f \N \N \N \N \N +2973 en Template - Category product.template-product.category,name -1 model product f \N \N \N \N \N +2976 en Template - Category All product.template-product.category.all,name -1 model product f \N \N \N \N \N +3546 en Product by Location product.by_location.context,name -1 model stock f \N \N \N \N \N +3551 en Product Quantities By Warehouse stock.product_quantities_warehouse,name -1 model stock f \N \N \N \N \N +3558 en Product Quantities By Warehouse stock.product_quantities_warehouse.context,name -1 model stock f \N \N \N \N \N +3564 en Product Quantities By Warehouse Moves stock.product_quantities_warehouse.move,name -1 model stock f \N \N \N \N \N +3577 en Recompute Cost Price product.recompute_cost_price.start,name -1 model stock f \N \N \N \N \N +3579 en Product Cost Price Revision product.cost_price.revision,name -1 model stock f \N \N \N \N \N +3586 en Modify Cost Price product.modify_cost_price.start,name -1 model stock f \N \N \N \N \N +3590 en Stock Inventory stock.inventory,name -1 model stock f \N \N \N \N \N +3609 en Stock Inventory Line stock.inventory.line,name -1 model stock f \N \N \N \N \N +3623 en Stock Inventory Count stock.inventory.count.search,name -1 model stock f \N \N \N \N \N +3627 en Stock Inventory Count stock.inventory.count.quantity,name -1 model stock f \N \N \N \N \N +4127 en Invoice Report Revision account.invoice.report.revision,name -1 model account_invoice f \N \N \N \N \N +4139 en Party Payment Term party.party.payment_term,name -1 model account_invoice f \N \N \N \N \N +4144 en Account Configuration Default Payment Term account.configuration.default_payment_term,name -1 model account_invoice f \N \N \N \N \N +4763 en Sale Reporting sale.reporting.main.time_series,name -1 model sale f \N \N \N \N \N +4764 en Sale Reporting per Customer sale.reporting.customer,name -1 model sale f \N \N \N \N \N +4766 en Sale Reporting per Customer sale.reporting.customer.time_series,name -1 model sale f \N \N \N \N \N +4768 en Sale Reporting per Customer Category sale.reporting.customer.category,name -1 model sale f \N \N \N \N \N +4770 en Sale Reporting per Customer Category sale.reporting.customer.category.time_series,name -1 model sale f \N \N \N \N \N +4772 en Sale Reporting per Customer Category sale.reporting.customer.category.tree,name -1 model sale f \N \N \N \N \N +4778 en Sale Reporting per Product sale.reporting.product,name -1 model sale f \N \N \N \N \N +4780 en Sale Reporting per Product sale.reporting.product.time_series,name -1 model sale f \N \N \N \N \N +4782 en Sale Reporting per Product Category sale.reporting.product.category,name -1 model sale f \N \N \N \N \N +5722 en model product.category,name 2 model model \N f 2024-04-13 21:25:36.487149 1 \N \N \N +5723 en refence product.category,name 3 refence model \N f 2024-04-13 21:26:03.452748 1 \N \N \N +5724 en mark product.category,name 4 mark model \N f 2024-04-13 21:26:38.298593 1 \N \N \N +5725 en model product.category,name 5 model model \N f 2024-04-13 21:26:55.081849 1 \N \N \N +5726 en reference product.category,name 6 reference model \N f 2024-04-13 21:27:11.822868 1 \N \N \N +5727 en SMART VISION product.category,name 7 SMART VISION model \N f 2024-04-13 21:28:24.078392 1 \N \N \N +5728 en SMART VISION U3000R product.category,name 8 SMART VISION U3000R model \N f 2024-04-13 21:28:51.983637 1 \N \N \N +5286 en Equipment Maintenance Service optical_equipment_maintenance.service,name -1 model optical_equipment f \N \N \N \N \N +5327 en Equipment Maintenance Line optical_equipment.maintenance,name -1 model optical_equipment f \N \N \N \N \N +5365 en Maintenance Line optical_equipment.maintenance.line,name -1 model optical_equipment f \N \N \N \N \N +5376 en Maintenance Activitys optical_equipment_maintenance.activity,name -1 model optical_equipment f \N \N \N \N \N +5379 en Change of Propietary Equipment optical_equipment.change_propietary_maintenance.form,name -1 model optical_equipment f \N \N \N \N \N +5393 en Balance Party Start optical_equipment.print_balance_sale_party.start,name -1 model optical_equipment f \N \N \N \N \N +5401 en Cancel optical_equipment_maintenance.assing_agended,start,end -1 wizard_button optical_equipment f \N \N \N \N \N +5402 en Assing optical_equipment_maintenance.assing_agended,start,assing_agended -1 wizard_button optical_equipment f \N \N \N \N \N +5403 en Cancel optical_equipment_maintenance.reassing_agended,start,end -1 wizard_button optical_equipment f \N \N \N \N \N +5404 en Assing optical_equipment_maintenance.reassing_agended,start,assing_agended -1 wizard_button optical_equipment f \N \N \N \N \N +5405 en Cancel optical_equipment.maintenance.contract,start,end -1 wizard_button optical_equipment f \N \N \N \N \N +5406 en Create optical_equipment.maintenance.contract,start,create_contract -1 wizard_button optical_equipment f \N \N \N \N \N +5407 en Cancel optical_equipment.change_propietary,start,end -1 wizard_button optical_equipment f \N \N \N \N \N +5408 en Create optical_equipment.change_propietary,start,change_propietary -1 wizard_button optical_equipment f \N \N \N \N \N +4784 en Sale Reporting per Product Category sale.reporting.product.category.time_series,name -1 model sale f \N \N \N \N \N +4786 en Sale Reporting per Product Category sale.reporting.product.category.tree,name -1 model sale f \N \N \N \N \N +4816 en Cancel sale.handle.shipment.exception,ask,end -1 wizard_button sale f \N \N \N \N \N +4817 en OK sale.handle.shipment.exception,ask,handle -1 wizard_button sale f \N \N \N \N \N +4818 en Cancel sale.handle.invoice.exception,ask,end -1 wizard_button sale f \N \N \N \N \N +4819 en OK sale.handle.invoice.exception,ask,handle -1 wizard_button sale f \N \N \N \N \N +5283 en Confirmacíon Fecha de Venta optical_equipment.confirm_sale_date.form,name -1 model optical_equipment f \N \N \N \N \N +5729 en U3000R product.category,name 9 U3000R model \N f 2024-04-13 21:29:32.515128 1 \N \N \N +5730 en ESTANDAR product.category,name 10 ESTANDAR model \N f 2024-04-13 21:29:46.28288 1 \N \N \N +5731 en Colombia country.country,name 1 Colombia model \N f 2024-04-13 21:31:24.535766 1 \N \N \N +5732 en UNIDAD REFRACCION ESTANDAR product.template,name 1 UNIDAD REFRACCION ESTANDAR model \N f 2024-04-13 21:37:12.808326 1 \N \N \N +1428 en Replace Party party.replace.ask,name -1 model party f \N \N \N \N \N +1433 en Erase Party party.erase.ask,name -1 model party f \N \N \N \N \N +1436 en Address party.address,name -1 model party f \N \N \N \N \N +1451 en Address Format party.address.format,name -1 model party f \N \N \N \N \N +1456 en Address Subdivision Type party.address.subdivision_type,name -1 model party f \N \N \N \N \N +1459 en Contact Mechanism party.contact_mechanism,name -1 model party f \N \N \N \N \N +2094 en Account Configuration account.configuration,name -1 model account f \N \N \N \N \N +2124 en Period account.period,name -1 model account f \N \N \N \N \N +3636 en Stock Configuration stock.configuration,name -1 model stock f \N \N \N \N \N +3651 en Stock Configuration Sequence stock.configuration.sequence,name -1 model stock f \N \N \N \N \N +3659 en Stock Configuration Location stock.configuration.location,name -1 model stock f \N \N \N \N \N +3670 en Stock Reporting Margin Context stock.reporting.margin.context,name -1 model stock f \N \N \N \N \N +3680 en Stock Reporting Margin stock.reporting.margin.main,name -1 model stock f \N \N \N \N \N +3711 en Recompute product.recompute_cost_price,start,recompute -1 wizard_button stock f \N \N \N \N \N +3712 en Cancel product.modify_cost_price,start,end -1 wizard_button stock f \N \N \N \N \N +3713 en OK product.modify_cost_price,start,modify -1 wizard_button stock f \N \N \N \N \N +3714 en Cancel stock.inventory.count,quantity,search -1 wizard_button stock f \N \N \N \N \N +3715 en Add stock.inventory.count,quantity,add -1 wizard_button stock f \N \N \N \N \N +3716 en End stock.inventory.count,search,end -1 wizard_button stock f \N \N \N \N \N +3717 en Select stock.inventory.count,search,quantity -1 wizard_button stock f \N \N \N \N \N +1486 en Contact Mechanism Language party.contact_mechanism.language,name -1 model party f \N \N \N \N \N +1489 en Party Configuration party.configuration,name -1 model party f \N \N \N \N \N +2067 en Update Chart account.update_chart.succeed,name -1 model account f \N \N \N \N \N +2068 en Aged Balance Context account.aged_balance.context,name -1 model account f \N \N \N \N \N +2085 en Aged Balance account.aged_balance,name -1 model account f \N \N \N \N \N +111 en View Tree Optional ir.ui.view_tree_optional,name -1 model ir f \N \N \N \N \N +116 en View Tree State ir.ui.view_tree_state,name -1 model ir f \N \N \N \N \N +123 en View Search ir.ui.view_search,name -1 model ir f \N \N \N \N \N +134 en Action ir.action,name -1 model ir f \N \N \N \N \N +153 en Action keyword ir.action.keyword,name -1 model ir f \N \N \N \N \N +162 en Action report ir.action.report,name -1 model ir f \N \N \N \N \N +196 en Action act window ir.action.act_window,name -1 model ir f \N \N \N \N \N +230 en Action act window view ir.action.act_window.view,name -1 model ir f \N \N \N \N \N +234 en Action act window domain ir.action.act_window.domain,name -1 model ir f \N \N \N \N \N +239 en Action wizard ir.action.wizard,name -1 model ir f \N \N \N \N \N +258 en Action URL ir.action.url,name -1 model ir f \N \N \N \N \N +274 en Model ir.model,name -1 model ir f \N \N \N \N \N +282 en Model field ir.model.field,name -1 model ir f \N \N \N \N \N +293 en Model access ir.model.access,name -1 model ir f \N \N \N \N \N +301 en Model Field Access ir.model.field.access,name -1 model ir f \N \N \N \N \N +309 en Model Button ir.model.button,name -1 model ir f \N \N \N \N \N +321 en Model Button Rule ir.model.button.rule,name -1 model ir f \N \N \N \N \N +327 en Model Button Click ir.model.button.click,name -1 model ir f \N \N \N \N \N +330 en Model Button Reset ir.model.button-button.reset,name -1 model ir f \N \N \N \N \N +4455 en Purchase Reporting Context purchase.reporting.context,name -1 model purchase f \N \N \N \N \N +2596 en OK account.move.cancel,default,cancel -1 wizard_button account f \N \N \N \N \N +4424 en Purchase Configuration Purchase Method purchase.configuration.purchase_method,name -1 model purchase f \N \N \N \N \N +4820 en Cancel sale.return_sale,start,end -1 wizard_button sale f \N \N \N \N \N +4821 en Return sale.return_sale,start,return_ -1 wizard_button sale f \N \N \N \N \N +4822 en Cancel sale.modify_header,start,end -1 wizard_button sale f \N \N \N \N \N +4823 en Modify sale.modify_header,start,modify -1 wizard_button sale f \N \N \N \N \N +5409 en Cancel optical_equipment.change_propietary_maintenance,start,end -1 wizard_button optical_equipment f \N \N \N \N \N +5410 en Create optical_equipment.change_propietary_maintenance,start,change_propietary -1 wizard_button optical_equipment f \N \N \N \N \N +5411 en Cancel optical_equipment.print_balance_sale_party,start,end -1 wizard_button optical_equipment f \N \N \N \N \N +5412 en Print optical_equipment.print_balance_sale_party,start,print_ -1 wizard_button optical_equipment f \N \N \N \N \N +2139 en Journal account.journal,name -1 model account f \N \N \N \N \N +2156 en Journal Sequence account.journal.sequence,name -1 model account f \N \N \N \N \N +2160 en Journal Cash Context account.journal.open_cash.context,name -1 model account f \N \N \N \N \N +2163 en Journal - Period account.journal.period,name -1 model account f \N \N \N \N \N +2170 en Account Move account.move,name -1 model account f \N \N \N \N \N +2186 en Account Move Reconciliation Lines account.move.reconciliation,name -1 model account f \N \N \N \N \N +2194 en Account Configuration Tax Rounding account.configuration.tax_rounding,name -1 model account f \N \N \N \N \N +2200 en Account Move Line account.move.line,name -1 model account f \N \N \N \N \N +2236 en Receivable/Payable Line Context account.move.line.receivable_payable.context,name -1 model account f \N \N \N \N \N +2240 en Reconcile Write Off account.move.reconcile.write_off,name -1 model account f \N \N \N \N \N +2246 en Open Journal Ask account.move.open_journal.ask,name -1 model account f \N \N \N \N \N +2249 en Reconcile Lines Write-Off account.move.reconcile_lines.writeoff,name -1 model account f \N \N \N \N \N +2256 en Reconcile account.reconcile.start,name -1 model account f \N \N \N \N \N +2261 en Reconcile account.reconcile.show,name -1 model account f \N \N \N \N \N +541 en Session Wizard ir.session.wizard,name -1 model ir f \N \N \N \N \N +543 en Queue ir.queue,name -1 model ir f \N \N \N \N \N +553 en Month ir.calendar.month,name -1 model ir f \N \N \N \N \N +557 en Day ir.calendar.day,name -1 model ir f \N \N \N \N \N +561 en Message ir.message,name -1 model ir f \N \N \N \N \N +563 en Email ir.email,name -1 model ir f \N \N \N \N \N +573 en Email Address ir.email.address,name -1 model ir f \N \N \N \N \N +576 en Email Template ir.email.template,name -1 model ir f \N \N \N \N \N +2108 en Account Configuration Default Account account.configuration.default_account,name -1 model account f \N \N \N \N \N +2114 en Account Configuration Default Tax Rule account.configuration.default_tax_rule,name -1 model account f \N \N \N \N \N +2118 en Account Configuration Sequence account.configuration.sequence,name -1 model account f \N \N \N \N \N +2121 en Account Configuration Journal account.configuration.journal,name -1 model account f \N \N \N \N \N +1665 en Erase party.erase,ask,erase -1 wizard_button party f \N \N \N \N \N +2611 en Create account.fiscalyear.create_periods,start,create_periods -1 wizard_button account f \N \N \N \N \N +2602 en Preview account.move.line.reschedule,start,preview -1 wizard_button account f \N \N \N \N \N +2603 en Cancel account.move.line.delegate,start,end -1 wizard_button account f \N \N \N \N \N +2604 en Delegate account.move.line.delegate,start,delegate -1 wizard_button account f \N \N \N \N \N +4465 en Purchase Reporting purchase.reporting.main.time_series,name -1 model purchase f \N \N \N \N \N +4466 en Purchase Reporting per Supplier purchase.reporting.supplier,name -1 model purchase f \N \N \N \N \N +4468 en Purchase Reporting per Supplier purchase.reporting.supplier.time_series,name -1 model purchase f \N \N \N \N \N +4470 en Purchase Reporting per Product purchase.reporting.product,name -1 model purchase f \N \N \N \N \N +4473 en Purchase Reporting per Product purchase.reporting.product.time_series,name -1 model purchase f \N \N \N \N \N +4476 en Cancel purchase.handle.shipment.exception,ask,end -1 wizard_button purchase f \N \N \N \N \N +4477 en OK purchase.handle.shipment.exception,ask,handle -1 wizard_button purchase f \N \N \N \N \N +4478 en Cancel purchase.handle.invoice.exception,ask,end -1 wizard_button purchase f \N \N \N \N \N +4479 en OK purchase.handle.invoice.exception,ask,handle -1 wizard_button purchase f \N \N \N \N \N +4480 en Cancel purchase.modify_header,start,end -1 wizard_button purchase f \N \N \N \N \N +4481 en Modify purchase.modify_header,start,modify -1 wizard_button purchase f \N \N \N \N \N +4482 en Cancel purchase.return_purchase,start,end -1 wizard_button purchase f \N \N \N \N \N +4483 en Return purchase.return_purchase,start,return_ -1 wizard_button purchase f \N \N \N \N \N +\. + + +-- +-- Data for Name: ir_trigger; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_trigger (id, action, active, condition, create_date, create_uid, limit_number, minimum_time_delay, model, name, on_create, on_delete, on_time, on_write, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_trigger_log; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_trigger_log (id, create_date, create_uid, record_id, trigger, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_ui_icon; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_ui_icon (id, create_date, create_uid, module, name, path, sequence, write_date, write_uid) FROM stdin; +1 2024-04-13 20:27:30.723827 0 ir tryton-board ui/icons/tryton-board.svg 10 \N \N +2 2024-04-13 20:27:30.723827 0 ir tryton-calendar ui/icons/tryton-calendar.svg 10 \N \N +3 2024-04-13 20:27:30.723827 0 ir tryton-folder ui/icons/tryton-folder.svg 10 \N \N +4 2024-04-13 20:27:30.723827 0 ir tryton-form ui/icons/tryton-form.svg 10 \N \N +5 2024-04-13 20:27:30.723827 0 ir tryton-graph ui/icons/tryton-graph.svg 10 \N \N +6 2024-04-13 20:27:30.723827 0 ir tryton-list ui/icons/tryton-list.svg 10 \N \N +7 2024-04-13 20:27:30.723827 0 ir tryton-settings ui/icons/tryton-settings.svg 10 \N \N +8 2024-04-13 20:27:30.723827 0 ir tryton-tree ui/icons/tryton-tree.svg 10 \N \N +9 2024-04-13 20:39:00.134374 0 country tryton-country icons/tryton-country.svg 10 \N \N +10 2024-04-13 20:39:00.792624 0 currency tryton-currency icons/tryton-currency.svg 10 \N \N +11 2024-04-13 20:39:01.136154 0 party tryton-party icons/tryton-party.svg 10 \N \N +12 2024-04-13 20:39:02.298155 0 company tryton-company icons/tryton-company.svg 10 \N \N +13 2024-04-13 20:39:03.023425 0 account tryton-account icons/tryton-account.svg 10 \N \N +14 2024-04-13 20:39:03.023425 0 account tryton-account-open icons/tryton-account-open.svg 10 \N \N +15 2024-04-13 20:39:03.023425 0 account tryton-account-close icons/tryton-account-close.svg 10 \N \N +16 2024-04-13 20:39:03.023425 0 account tryton-account-block icons/tryton-account-block.svg 10 \N \N +17 2024-04-13 20:39:08.573524 0 product tryton-product icons/tryton-product.svg 10 \N \N +18 2024-04-13 20:39:10.936653 0 stock tryton-stock icons/tryton-stock.svg 10 \N \N +19 2024-04-13 20:39:10.936653 0 stock tryton-shipment-in icons/tryton-shipment-in.svg 10 \N \N +20 2024-04-13 20:39:10.936653 0 stock tryton-shipment-out icons/tryton-shipment-out.svg 10 \N \N +21 2024-04-13 20:39:14.878373 0 account_invoice tryton-invoice icons/tryton-invoice.svg 10 \N \N +22 2024-04-13 20:39:16.958214 0 purchase tryton-purchase icons/tryton-purchase.svg 10 \N \N +23 2024-04-13 20:39:19.14446 0 sale tryton-sale icons/tryton-sale.svg 10 \N \N +\. + + +-- +-- Data for Name: ir_ui_menu; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_ui_menu (id, parent, name, icon, active, create_date, create_uid, sequence, write_date, write_uid) FROM stdin; +1 \N Administration tryton-settings t 2024-04-13 20:27:30.723827 0 9999 \N \N +2 1 User Interface tryton-folder t 2024-04-13 20:27:30.723827 0 50 \N \N +3 2 Icons tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +4 2 Menu tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +5 2 Views tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +6 2 View Tree Width tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +7 2 View Tree Optional tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +8 2 Tree State tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +9 2 View Search tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +10 2 Actions tryton-folder t 2024-04-13 20:27:30.723827 0 50 \N \N +11 10 Actions tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +12 10 Reports tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +13 10 Window Actions tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +14 10 Wizards tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +15 10 URLs tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +16 1 Models tryton-folder t 2024-04-13 20:27:30.723827 0 50 \N \N +17 16 Models tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +18 17 Fields tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +19 16 Models Access tryton-list t 2024-04-13 20:27:30.723827 0 30 \N \N +20 19 Fields Access tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +21 19 Buttons tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +22 17 Data tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +23 17 Logs tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +24 1 Sequences tryton-folder t 2024-04-13 20:27:30.723827 0 20 \N \N +25 24 Sequences tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +26 24 Sequences Strict tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +27 24 Types tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +28 16 Attachments tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +29 16 Notes tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +30 1 Scheduler tryton-folder t 2024-04-13 20:27:30.723827 0 50 \N \N +31 30 Actions tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +32 1 Localization tryton-folder t 2024-04-13 20:27:30.723827 0 30 \N \N +33 32 Languages tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +34 32 Translations tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +35 32 Set Translations tryton-launch t 2024-04-13 20:27:30.723827 0 90 \N \N +36 32 Clean Translations tryton-launch t 2024-04-13 20:27:30.723827 0 91 \N \N +37 32 Synchronize Translations tryton-launch t 2024-04-13 20:27:30.723827 0 92 \N \N +38 32 Export Translations tryton-launch t 2024-04-13 20:27:30.723827 0 93 \N \N +39 16 Exports tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +40 16 Record Rules tryton-list t 2024-04-13 20:27:30.723827 0 30 \N \N +41 1 Modules tryton-folder t 2024-04-13 20:27:30.723827 0 20 \N \N +42 41 Modules tryton-list t 2024-04-13 20:27:30.723827 0 10 \N \N +43 41 Config Wizard Items tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +44 41 Perform Pending Activation/Upgrade tryton-launch t 2024-04-13 20:27:30.723827 0 90 \N \N +45 16 Triggers tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +46 32 Messages tryton-list t 2024-04-13 20:27:30.723827 0 20 \N \N +47 16 E-mails tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +48 10 E-mail Templates tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +49 30 Errors tryton-list t 2024-04-13 20:27:30.723827 0 50 \N \N +50 1 Users tryton-folder t 2024-04-13 20:27:35.518366 0 10 \N \N +51 50 Groups tryton-list t 2024-04-13 20:27:35.518366 0 20 \N \N +52 50 Users tryton-list t 2024-04-13 20:27:35.518366 0 10 \N \N +53 1 Countries tryton-country t 2024-04-13 20:39:00.134374 0 30 \N \N +54 53 Organizations tryton-list t 2024-04-13 20:39:00.134374 0 20 \N \N +55 53 Areas tryton-tree t 2024-04-13 20:39:00.134374 0 20 \N \N +56 55 Regions tryton-list t 2024-04-13 20:39:00.134374 0 10 \N \N +57 53 Countries tryton-list t 2024-04-13 20:39:00.134374 0 10 \N \N +58 \N Currencies tryton-currency t 2024-04-13 20:39:00.792624 0 50 \N \N +59 58 Currencies tryton-list t 2024-04-13 20:39:00.792624 0 10 \N \N +60 58 Scheduled Rate Updates tryton-list t 2024-04-13 20:39:00.792624 0 20 \N \N +61 \N Parties tryton-party t 2024-04-13 20:39:01.136154 0 10 \N \N +62 61 Configuration tryton-settings t 2024-04-13 20:39:01.136154 0 0 \N \N +63 61 Parties tryton-list t 2024-04-13 20:39:01.136154 0 10 \N \N +64 61 Categories tryton-tree t 2024-04-13 20:39:01.136154 0 50 \N \N +65 64 Categories tryton-list t 2024-04-13 20:39:01.136154 0 10 \N \N +66 61 Addresses tryton-list t 2024-04-13 20:39:01.136154 0 20 \N \N +67 62 Address Formats tryton-list t 2024-04-13 20:39:01.136154 0 50 \N \N +68 62 Address Subdivision Types tryton-list t 2024-04-13 20:39:01.136154 0 50 \N \N +69 61 Contact Mechanisms tryton-list t 2024-04-13 20:39:01.136154 0 20 \N \N +70 62 Configuration tryton-list t 2024-04-13 20:39:01.136154 0 10 \N \N +71 \N Companies tryton-company t 2024-04-13 20:39:02.298155 0 20 \N \N +72 71 Companies tryton-list t 2024-04-13 20:39:02.298155 0 10 \N \N +73 71 Employees tryton-list t 2024-04-13 20:39:02.298155 0 20 \N \N +74 \N Financial tryton-account t 2024-04-13 20:39:03.023425 0 60 \N \N +75 74 Configuration tryton-settings t 2024-04-13 20:39:03.023425 0 0 \N \N +76 75 Templates tryton-folder t 2024-04-13 20:39:03.023425 0 10 \N \N +77 75 General Account tryton-folder t 2024-04-13 20:39:03.023425 0 20 \N \N +78 74 Entries tryton-folder t 2024-04-13 20:39:03.023425 0 30 \N \N +79 74 Processing tryton-folder t 2024-04-13 20:39:03.023425 0 50 \N \N +80 74 Reporting tryton-folder t 2024-04-13 20:39:03.023425 0 100 \N \N +81 76 Account Types tryton-tree t 2024-04-13 20:39:03.023425 0 10 \N \N +82 77 Account Types tryton-tree t 2024-04-13 20:39:03.023425 0 10 \N \N +83 82 Account Types tryton-list t 2024-04-13 20:39:03.023425 0 10 \N \N +84 76 Accounts tryton-tree t 2024-04-13 20:39:03.023425 0 20 \N \N +85 76 Create Chart of Accounts from Template tryton-launch t 2024-04-13 20:39:03.023425 0 90 \N \N +86 76 Update Chart of Accounts from Template tryton-launch t 2024-04-13 20:39:03.023425 0 90 \N \N +87 77 Accounts tryton-tree t 2024-04-13 20:39:03.023425 0 20 \N \N +88 87 Accounts tryton-list t 2024-04-13 20:39:03.023425 0 10 \N \N +89 80 Chart of Accounts tryton-tree t 2024-04-13 20:39:03.023425 0 30 \N \N +90 80 General Ledger tryton-list t 2024-04-13 20:39:03.023425 0 10 \N \N +91 80 Balance Sheet tryton-tree t 2024-04-13 20:39:03.023425 0 20 \N \N +92 80 Income Statement tryton-tree t 2024-04-13 20:39:03.023425 0 20 \N \N +93 80 Aged Balance tryton-list t 2024-04-13 20:39:03.023425 0 50 \N \N +94 75 Configuration tryton-list t 2024-04-13 20:39:03.023425 0 0 \N \N +95 75 Fiscal Years tryton-folder t 2024-04-13 20:39:03.023425 0 30 \N \N +96 95 Fiscal Years tryton-list t 2024-04-13 20:39:03.023425 0 10 \N \N +97 79 Close Fiscal Years tryton-list t 2024-04-13 20:39:03.023425 0 50 \N \N +98 79 Balance Non-Deferral tryton-launch t 2024-04-13 20:39:03.023425 0 40 \N \N +99 95 Renew Fiscal Year tryton-launch t 2024-04-13 20:39:03.023425 0 90 \N \N +100 95 Periods tryton-list t 2024-04-13 20:39:03.023425 0 20 \N \N +101 79 Close Periods tryton-list t 2024-04-13 20:39:03.023425 0 30 \N \N +102 75 Journals tryton-folder t 2024-04-13 20:39:03.023425 0 50 \N \N +103 102 Journals tryton-list t 2024-04-13 20:39:03.023425 0 10 \N \N +104 80 Journals Cash tryton-list t 2024-04-13 20:39:03.023425 0 50 \N \N +105 80 Journals - Periods tryton-list t 2024-04-13 20:39:03.023425 0 50 \N \N +106 78 Journals - Periods tryton-list t 2024-04-13 20:39:03.023425 0 20 \N \N +107 79 Close Journals - Periods tryton-list t 2024-04-13 20:39:03.023425 0 20 \N \N +108 78 Account Moves tryton-list t 2024-04-13 20:39:03.023425 0 50 \N \N +109 78 Open Journal tryton-list t 2024-04-13 20:39:03.023425 0 20 \N \N +110 79 Reconcile Accounts tryton-launch t 2024-04-13 20:39:03.023425 0 20 \N \N +111 102 Write-off Methods tryton-list t 2024-04-13 20:39:03.023425 0 20 \N \N +112 76 Moves tryton-list t 2024-04-13 20:39:03.023425 0 10 \N \N +113 78 Create Move from Template tryton-launch t 2024-04-13 20:39:03.023425 0 20 \N \N +114 75 Taxes tryton-folder t 2024-04-13 20:39:03.023425 0 50 \N \N +115 114 Groups tryton-list t 2024-04-13 20:39:03.023425 0 20 \N \N +116 76 Tax Codes tryton-tree t 2024-04-13 20:39:03.023425 0 20 \N \N +117 114 Codes tryton-tree t 2024-04-13 20:39:03.023425 0 20 \N \N +118 117 Codes tryton-list t 2024-04-13 20:39:03.023425 0 10 \N \N +119 80 Chart of Tax Codes tryton-tree t 2024-04-13 20:39:03.023425 0 30 \N \N +120 76 Taxes tryton-list t 2024-04-13 20:39:03.023425 0 40 \N \N +121 114 Taxes tryton-list t 2024-04-13 20:39:03.023425 0 10 \N \N +122 114 Test Tax tryton-launch t 2024-04-13 20:39:03.023425 0 90 \N \N +123 76 Tax Rules tryton-list t 2024-04-13 20:39:03.023425 0 50 \N \N +124 114 Rules tryton-list t 2024-04-13 20:39:03.023425 0 50 \N \N +125 \N Products tryton-product t 2024-04-13 20:39:08.573524 0 30 \N \N +126 125 Configuration tryton-settings t 2024-04-13 20:39:08.573524 0 0 \N \N +127 125 Reporting tryton-folder t 2024-04-13 20:39:08.573524 0 100 \N \N +128 125 Products tryton-list t 2024-04-13 20:39:08.573524 0 10 \N \N +129 128 Variants tryton-list t 2024-04-13 20:39:08.573524 0 10 \N \N +130 125 Categories tryton-tree t 2024-04-13 20:39:08.573524 0 20 \N \N +131 130 Categories tryton-list t 2024-04-13 20:39:08.573524 0 10 \N \N +132 126 Units of Measure tryton-list t 2024-04-13 20:39:08.573524 0 50 \N \N +133 132 Categories tryton-list t 2024-04-13 20:39:08.573524 0 20 \N \N +134 126 Configuration tryton-list t 2024-04-13 20:39:08.573524 0 10 \N \N +135 126 Attribute Sets tryton-list t 2024-04-13 20:39:10.340704 0 50 \N \N +136 135 Attributes tryton-list t 2024-04-13 20:39:10.340704 0 10 \N \N +137 \N Inventory & Stock tryton-stock t 2024-04-13 20:39:10.936653 0 60 \N \N +138 137 Configuration tryton-settings t 2024-04-13 20:39:10.936653 0 0 \N \N +139 137 Reporting tryton-folder f 2024-04-13 20:39:10.936653 0 100 \N \N +140 137 Warehouses tryton-list t 2024-04-13 20:39:10.936653 0 30 \N \N +141 137 Locations tryton-tree t 2024-04-13 20:39:10.936653 0 30 \N \N +142 138 Locations tryton-list t 2024-04-13 20:39:10.936653 0 20 \N \N +143 141 Locations tryton-list t 2024-04-13 20:39:10.936653 0 10 \N \N +144 138 Location Lead Times tryton-list t 2024-04-13 20:39:10.936653 0 50 \N \N +145 137 Shipments tryton-folder t 2024-04-13 20:39:10.936653 0 10 \N \N +146 145 Supplier Shipments tryton-list t 2024-04-13 20:39:10.936653 0 10 \N \N +147 145 Supplier Returns tryton-list t 2024-04-13 20:39:10.936653 0 10 \N \N +148 145 Customer Shipments tryton-list t 2024-04-13 20:39:10.936653 0 10 \N \N +149 145 Internal Shipments tryton-list t 2024-04-13 20:39:10.936653 0 20 \N \N +150 145 Customer Returns tryton-list t 2024-04-13 20:39:10.936653 0 10 \N \N +151 137 Moves tryton-list t 2024-04-13 20:39:10.936653 0 50 \N \N +152 137 Inventories tryton-list t 2024-04-13 20:39:10.936653 0 20 \N \N +153 138 Configuration tryton-list t 2024-04-13 20:39:10.936653 0 10 \N \N +154 138 Periods tryton-list t 2024-04-13 20:39:10.936653 0 30 \N \N +155 127 Margins tryton-graph t 2024-04-13 20:39:10.936653 0 50 \N \N +156 74 Invoices tryton-folder t 2024-04-13 20:39:14.878373 0 20 \N \N +157 156 Customer Invoices tryton-list t 2024-04-13 20:39:14.878373 0 10 \N \N +158 156 Supplier Invoices tryton-list t 2024-04-13 20:39:14.878373 0 10 \N \N +159 102 Invoice Payment Methods tryton-list t 2024-04-13 20:39:14.878373 0 50 \N \N +160 75 Payment Terms tryton-folder t 2024-04-13 20:39:14.878373 0 50 \N \N +161 160 Payment Terms tryton-list t 2024-04-13 20:39:14.878373 0 10 \N \N +162 160 Test Payment Term tryton-launch t 2024-04-13 20:39:14.878373 0 90 \N \N +163 \N Purchases tryton-purchase t 2024-04-13 20:39:16.958214 0 70 \N \N +164 163 Reporting tryton-folder t 2024-04-13 20:39:16.958214 0 100 \N \N +165 163 Purchases tryton-list t 2024-04-13 20:39:16.958214 0 10 \N \N +166 128 Suppliers tryton-list t 2024-04-13 20:39:16.958214 0 20 \N \N +167 63 Associated to Purchases tryton-list t 2024-04-13 20:39:16.958214 0 50 \N \N +168 164 Purchases tryton-graph t 2024-04-13 20:39:16.958214 0 10 \N \N +169 163 Configuration tryton-settings t 2024-04-13 20:39:16.958214 0 0 \N \N +170 169 Configuration tryton-list t 2024-04-13 20:39:16.958214 0 10 \N \N +171 \N Sales tryton-sale t 2024-04-13 20:39:19.14446 0 80 \N \N +172 171 Sales tryton-list t 2024-04-13 20:39:19.14446 0 10 \N \N +173 171 Configuration tryton-settings t 2024-04-13 20:39:19.14446 0 0 \N \N +174 173 Configuration tryton-list t 2024-04-13 20:39:19.14446 0 10 \N \N +175 171 Reporting tryton-folder t 2024-04-13 20:39:19.14446 0 100 \N \N +176 175 Sales tryton-graph t 2024-04-13 20:39:19.14446 0 10 \N \N +177 63 Associated to Sales tryton-list t 2024-04-13 20:39:19.14446 0 50 \N \N +178 171 Products tryton-list t 2024-04-13 20:39:19.14446 0 50 \N \N +179 \N Equipment tryton-folder t 2024-04-13 20:39:21.814652 0 40 \N \N +180 179 Equipments tryton-list t 2024-04-13 20:39:21.814652 0 60 \N \N +181 179 Serials tryton-list t 2024-04-13 20:39:21.814652 0 70 \N \N +182 179 Contracts Management tryton-folder t 2024-04-13 20:39:21.814652 0 50 \N \N +183 182 Contracts tryton-list t 2024-04-13 20:39:21.814652 0 30 \N \N +184 179 Diary tryton-folder t 2024-04-13 20:39:21.814652 0 10 \N \N +185 184 Agended tryton-folder t 2024-04-13 20:39:21.814652 0 20 \N \N +186 184 Assing Agended tryton-launch t 2024-04-13 20:39:21.814652 0 30 \N \N +187 184 ReAssing Agended tryton-launch t 2024-04-13 20:39:21.814652 0 40 \N \N +188 179 Configuration tryton-settings t 2024-04-13 20:39:21.814652 0 0 \N \N +189 188 Configuration tryton-list t 2024-04-13 20:39:21.814652 0 10 \N \N +190 179 Services Maintenance tryton-list t 2024-04-13 20:39:21.814652 0 20 \N \N +191 190 Maintenance Lines tryton-list t 2024-04-13 20:39:21.814652 0 30 \N \N +192 126 Properties of Equipments tryton-settings t 2024-04-13 20:39:21.814652 0 10 \N \N +193 192 Pattern Use tryton-list t 2024-04-13 20:39:21.814652 0 10 \N \N +194 175 Print Balance Sale by Party tryton-print t 2024-04-13 20:39:21.814652 0 50 \N \N +\. + + +-- +-- Data for Name: ir_ui_menu-res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."ir_ui_menu-res_group" (id, create_date, create_uid, "group", menu, write_date, write_uid) FROM stdin; +1 2024-04-13 20:27:35.518366 0 1 1 \N \N +2 2024-04-13 20:39:00.134374 0 1 53 \N \N +3 2024-04-13 20:39:00.792624 0 2 58 \N \N +4 2024-04-13 20:39:01.136154 0 3 62 \N \N +5 2024-04-13 20:39:02.298155 0 4 71 \N \N +6 2024-04-13 20:39:02.298155 0 5 71 \N \N +7 2024-04-13 20:39:03.023425 0 6 74 \N \N +8 2024-04-13 20:39:03.023425 0 8 74 \N \N +9 2024-04-13 20:39:03.023425 0 8 75 \N \N +10 2024-04-13 20:39:08.573524 0 9 126 \N \N +11 2024-04-13 20:39:08.573524 0 9 134 \N \N +12 2024-04-13 20:39:10.936653 0 11 137 \N \N +13 2024-04-13 20:39:10.936653 0 12 138 \N \N +14 2024-04-13 20:39:10.936653 0 12 151 \N \N +15 2024-04-13 20:39:10.936653 0 9 155 \N \N +16 2024-04-13 20:39:16.958214 0 14 163 \N \N +17 2024-04-13 20:39:16.958214 0 15 169 \N \N +18 2024-04-13 20:39:19.14446 0 16 171 \N \N +19 2024-04-13 20:39:19.14446 0 17 173 \N \N +20 2024-04-13 20:39:21.814652 0 18 179 \N \N +\. + + +-- +-- Data for Name: ir_ui_menu_favorite; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_ui_menu_favorite (id, create_date, create_uid, menu, sequence, "user", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_ui_view; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_ui_view (id, model, type, data, field_childs, priority, create_date, create_uid, domain, inherit, module, name, write_date, write_uid) FROM stdin; +1 ir.ui.icon tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir icon_view_list \N \N +2 ir.ui.icon form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir icon_view_form \N \N +3 ir.ui.menu tree \N childs 20 2024-04-13 20:27:30.723827 0 \N \N ir ui_menu_tree \N \N +4 ir.ui.menu tree \N \N 10 2024-04-13 20:27:30.723827 0 \N \N ir ui_menu_list \N \N +5 ir.ui.menu form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_menu_form \N \N +6 ir.ui.menu.favorite tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_menu_favorite_list \N \N +7 ir.ui.menu.favorite form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_menu_favorite_form \N \N +8 ir.ui.view form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_form \N \N +9 ir.ui.view tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_list \N \N +10 ir.ui.view_tree_width form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_tree_width_form \N \N +11 ir.ui.view_tree_width tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_tree_width_list \N \N +12 ir.ui.view_tree_optional form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_tree_optional_form \N \N +13 ir.ui.view_tree_optional tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_tree_optional_list \N \N +14 ir.ui.view_tree_state form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_tree_state_form \N \N +15 ir.ui.view_tree_state tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_tree_state_list \N \N +16 ir.ui.view_search form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_search_form \N \N +17 ir.ui.view_search tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir ui_view_search_list \N \N +18 ir.action form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir action_form \N \N +19 ir.action tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir action_list \N \N +20 ir.action.keyword tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir action_keyword_list \N \N +21 ir.action.keyword form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir action_keyword_form \N \N +22 ir.action.report \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 18 ir action_report_form \N \N +23 ir.action.report \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 19 ir action_report_list \N \N +24 ir.action.act_window \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 18 ir action_act_window_form \N \N +25 ir.action.act_window \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 19 ir action_act_window_list \N \N +26 ir.action.act_window.view form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir action_act_window_view_form \N \N +27 ir.action.act_window.view tree \N \N 10 2024-04-13 20:27:30.723827 0 \N \N ir action_act_window_view_list \N \N +28 ir.action.act_window.view tree \N \N 20 2024-04-13 20:27:30.723827 0 \N \N ir action_act_window_view_list2 \N \N +29 ir.action.act_window.domain form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir action_act_window_domain_form \N \N +30 ir.action.act_window.domain tree \N \N 10 2024-04-13 20:27:30.723827 0 \N \N ir action_act_window_domain_list \N \N +31 ir.action.act_window.domain tree \N \N 20 2024-04-13 20:27:30.723827 0 \N \N ir action_act_window_domain_list2 \N \N +32 ir.action.wizard \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 18 ir action_wizard_form \N \N +33 ir.action.wizard \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 19 ir action_wizard_list \N \N +34 ir.action.url \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 18 ir action_url_form \N \N +35 ir.action.url \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 19 ir action_url_list \N \N +36 ir.model form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_form \N \N +37 ir.model tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_list \N \N +38 ir.model.field form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_field_form \N \N +39 ir.model.field tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_field_list \N \N +40 ir.model.access tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_access_list \N \N +41 ir.model.access form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_access_form \N \N +42 ir.model.field.access tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_field_access_list \N \N +43 ir.model.field.access form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_field_access_form \N \N +44 ir.model.print_model_graph.start form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_print_model_graph_start_form \N \N +45 ir.model.button tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_button_list \N \N +46 ir.model.button form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_button_form \N \N +47 ir.model.button.rule tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_button_rule_list \N \N +48 ir.model.button.rule form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_button_rule_form \N \N +49 ir.model.button.click tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_button_click_list \N \N +50 ir.model.button.click form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_button_click_form \N \N +51 ir.model.data tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_data_list \N \N +52 ir.model.data form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_data_form \N \N +53 ir.model.log form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_log_form \N \N +54 ir.model.log tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir model_log_list \N \N +55 ir.sequence form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir sequence_form \N \N +56 ir.sequence tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir sequence_list \N \N +57 ir.sequence.strict \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 55 ir \N \N \N +58 ir.sequence.strict \N \N \N 16 2024-04-13 20:27:30.723827 0 \N 56 ir \N \N \N +59 ir.sequence.type form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir sequence_type_form \N \N +60 ir.sequence.type tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir sequence_type_list \N \N +61 ir.attachment form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir attachment_form \N \N +62 ir.attachment form \N \N 50 2024-04-13 20:27:30.723827 0 \N \N ir attachment_form_preview \N \N +63 ir.attachment tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir attachment_list \N \N +64 ir.note form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir note_form \N \N +65 ir.note tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir note_list \N \N +66 ir.cron tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir cron_list \N \N +67 ir.cron form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir cron_form \N \N +68 ir.lang tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir lang_list \N \N +69 ir.lang form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir lang_form \N \N +70 ir.lang.config.start form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir lang_config_start_form \N \N +71 ir.translation form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_form \N \N +72 ir.translation tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_list \N \N +73 ir.translation.set.start form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_set_start_form \N \N +74 ir.translation.set.succeed form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_set_succeed_form \N \N +75 ir.translation.clean.start form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_clean_start_form \N \N +76 ir.translation.clean.succeed form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_clean_succeed_form \N \N +77 ir.translation.update.start form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_update_start_form \N \N +78 ir.translation.export.start form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_export_start_form \N \N +79 ir.translation.export.result form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir translation_export_result_form \N \N +80 ir.export form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir export_form \N \N +81 ir.export tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir export_list \N \N +82 ir.export.line form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir export_line_form \N \N +83 ir.export.line tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir export_line_list \N \N +84 ir.rule.group form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir rule_group_form \N \N +85 ir.rule.group tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir rule_group_list \N \N +86 ir.rule form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir rule_form \N \N +87 ir.rule tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir rule_list \N \N +88 ir.module form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_form \N \N +89 ir.module tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_list \N \N +90 ir.module.dependency form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_dependency_form \N \N +91 ir.module.dependency tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_dependency_list \N \N +92 ir.module.config_wizard.item tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_config_wizard_item_list \N \N +93 ir.module.config_wizard.first form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_config_wizard_first_form \N \N +94 ir.module.config_wizard.other form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_config_wizard_other_form \N \N +95 ir.module.config_wizard.done form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_config_wizard_done_form \N \N +96 ir.module.activate_upgrade.start form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_activate_upgrade_start_form \N \N +97 ir.module.activate_upgrade.done form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_activate_upgrade_done_form \N \N +98 ir.module.config.start form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir module_config_start_form \N \N +99 ir.trigger form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir trigger_form \N \N +100 ir.trigger tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir trigger_list \N \N +101 ir.message tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir message_list \N \N +102 ir.message form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir message_form \N \N +103 ir.email form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir email_form \N \N +104 ir.email tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir email_list \N \N +105 ir.email.template form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir email_template_form \N \N +106 ir.email.template tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir email_template_list \N \N +107 ir.error tree \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir error_list \N \N +108 ir.error form \N \N 16 2024-04-13 20:27:30.723827 0 \N \N ir error_form \N \N +109 res.group form \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res group_form \N \N +110 res.group tree \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res group_list \N \N +111 res.user form \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res user_form \N \N +112 res.user form \N \N 20 2024-04-13 20:27:35.518366 0 \N \N res user_form_preferences \N \N +113 res.user tree \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res user_list \N \N +114 res.user.config.start form \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res user_config_start_form \N \N +115 res.user.warning form \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res user_warning_form \N \N +116 res.user.warning tree \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res user_warning_tree \N \N +117 res.user.application form \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res user_application_form \N \N +118 res.user.application tree \N \N 16 2024-04-13 20:27:35.518366 0 \N \N res user_application_list \N \N +119 ir.sequence.type \N \N \N 16 2024-04-13 20:27:35.518366 0 \N 59 res sequence_type_form \N \N +120 ir.export \N \N \N 16 2024-04-13 20:27:35.518366 0 \N 80 res export_form \N \N +121 ir.export \N \N \N 16 2024-04-13 20:27:35.518366 0 \N 81 res export_list \N \N +122 country.organization form \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country organization_form \N \N +123 country.organization tree \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country organization_list \N \N +124 country.organization.member form \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country organization_member_form \N \N +125 country.organization.member tree \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country organization_member_list \N \N +126 country.region form \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country region_form \N \N +127 country.region tree \N \N 10 2024-04-13 20:39:00.134374 0 \N \N country region_list \N \N +128 country.region tree \N subregions 20 2024-04-13 20:39:00.134374 0 \N \N country region_tree \N \N +129 country.country form \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country country_form \N \N +130 country.country tree \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country country_tree \N \N +131 country.subdivision form \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country subdivision_form \N \N +132 country.subdivision tree \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country subdivision_tree \N \N +133 country.postal_code form \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country postal_code_form \N \N +134 country.postal_code tree \N \N 16 2024-04-13 20:39:00.134374 0 \N \N country postal_code_list \N \N +135 currency.currency form \N \N 16 2024-04-13 20:39:00.792624 0 \N \N currency currency_form \N \N +136 currency.currency tree \N \N 16 2024-04-13 20:39:00.792624 0 \N \N currency currency_tree \N \N +137 currency.currency.rate tree \N \N 16 2024-04-13 20:39:00.792624 0 \N \N currency currency_rate_list \N \N +138 currency.currency.rate form \N \N 16 2024-04-13 20:39:00.792624 0 \N \N currency currency_rate_form \N \N +139 currency.currency.rate graph \N \N 16 2024-04-13 20:39:00.792624 0 \N \N currency currency_rate_graph \N \N +140 currency.cron tree \N \N 16 2024-04-13 20:39:00.792624 0 \N \N currency cron_list \N \N +141 currency.cron form \N \N 16 2024-04-13 20:39:00.792624 0 \N \N currency cron_form \N \N +142 party.party tree \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party party_tree \N \N +143 party.party form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party party_form \N \N +144 party.identifier form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party identifier_form \N \N +145 party.identifier tree \N \N 10 2024-04-13 20:39:01.136154 0 \N \N party identifier_list \N \N +146 party.identifier tree \N \N 20 2024-04-13 20:39:01.136154 0 \N \N party identifier_list_sequence \N \N +147 party.check_vies.result form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party check_vies_result \N \N +148 party.replace.ask form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party replace_ask_form \N \N +149 party.erase.ask form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party erase_ask_form \N \N +150 party.category form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party category_form \N \N +151 party.category tree \N childs 16 2024-04-13 20:39:01.136154 0 \N \N party category_tree \N \N +152 party.category tree \N \N 10 2024-04-13 20:39:01.136154 0 \N \N party category_list \N \N +153 party.address tree \N \N 10 2024-04-13 20:39:01.136154 0 \N \N party address_tree \N \N +154 party.address tree \N \N 20 2024-04-13 20:39:01.136154 0 \N \N party address_tree_sequence \N \N +155 party.address form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party address_form \N \N +156 party.address form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party address_form_simple \N \N +157 party.address.format tree \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party address_format_list \N \N +158 party.address.format form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party address_format_form \N \N +159 party.address.subdivision_type tree \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party address_subdivision_type_list \N \N +160 party.address.subdivision_type form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party address_subdivision_type_form \N \N +161 party.contact_mechanism tree \N \N 10 2024-04-13 20:39:01.136154 0 \N \N party contact_mechanism_tree \N \N +162 party.contact_mechanism tree \N \N 20 2024-04-13 20:39:01.136154 0 \N \N party contact_mechanism_tree_sequence \N \N +163 party.contact_mechanism form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party contact_mechanism_form \N \N +164 party.configuration form \N \N 16 2024-04-13 20:39:01.136154 0 \N \N party configuration_form \N \N +165 ir.email.template \N \N \N 16 2024-04-13 20:39:01.136154 0 \N 105 party email_template_form \N \N +166 company.company form \N \N 16 2024-04-13 20:39:02.298155 0 \N \N company company_form \N \N +167 company.company tree \N \N 10 2024-04-13 20:39:02.298155 0 \N \N company company_list \N \N +168 res.user \N \N \N 16 2024-04-13 20:39:02.298155 0 \N 111 company user_form \N \N +169 res.user \N \N \N 16 2024-04-13 20:39:02.298155 0 \N 112 company user_form_preferences \N \N +170 company.company.config.start form \N \N 16 2024-04-13 20:39:02.298155 0 \N \N company company_config_start_form \N \N +171 company.employee form \N \N 10 2024-04-13 20:39:02.298155 0 \N \N company employee_form \N \N +172 company.employee tree \N \N 16 2024-04-13 20:39:02.298155 0 \N \N company employee_tree \N \N +173 ir.sequence \N \N \N 16 2024-04-13 20:39:02.298155 0 \N 55 company sequence_form \N \N +174 ir.sequence \N \N \N 16 2024-04-13 20:39:02.298155 0 \N 56 company sequence_tree \N \N +175 ir.sequence.strict \N \N \N 16 2024-04-13 20:39:02.298155 0 \N 55 company sequence_form \N \N +176 ir.sequence.strict \N \N \N 16 2024-04-13 20:39:02.298155 0 \N 56 company sequence_tree \N \N +177 ir.cron \N \N \N 16 2024-04-13 20:39:02.298155 0 \N 67 company cron_form \N \N +178 account.account.type.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account account_type_template_form \N \N +179 account.account.type.template tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account account_type_template_list \N \N +180 account.account.type.template tree \N childs 20 2024-04-13 20:39:03.023425 0 \N \N account account_type_template_tree \N \N +181 account.account.type form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account account_type_form \N \N +182 account.account.type tree \N childs 20 2024-04-13 20:39:03.023425 0 \N \N account account_type_tree \N \N +183 account.account.type tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account account_type_list \N \N +184 account.account.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account account_template_form \N \N +185 account.account.template tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account account_template_list \N \N +186 account.account.template tree \N childs 20 2024-04-13 20:39:03.023425 0 \N \N account account_template_tree \N \N +187 account.account.deferral form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account account_deferral_form \N \N +188 account.account.deferral tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account account_deferral_tree \N \N +189 account.create_chart.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account create_chart_start_form \N \N +190 account.create_chart.account form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account create_chart_account_form \N \N +191 account.create_chart.properties form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account create_chart_properties_form \N \N +192 account.update_chart.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account update_chart_start_form \N \N +193 account.update_chart.succeed form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account update_chart_succeed_form \N \N +194 account.account form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account account_form \N \N +195 account.account tree \N childs 20 2024-04-13 20:39:03.023425 0 \N \N account account_tree \N \N +196 account.account tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account account_list \N \N +197 account.account tree \N \N 20 2024-04-13 20:39:03.023425 0 \N \N account account_list_balance_sheet \N \N +198 account.account tree \N childs 20 2024-04-13 20:39:03.023425 0 \N \N account account_tree_chart \N \N +199 account.account.context form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account account_context_form \N \N +200 account.general_ledger.account tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account general_ledger_account_list \N \N +201 account.general_ledger.account.party \N \N \N 16 2024-04-13 20:39:03.023425 0 \N 200 account general_ledger_account_party_list \N \N +202 account.general_ledger.line tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account general_ledger_line_list \N \N +203 account.general_ledger.account.context form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account general_ledger_account_context_form \N \N +204 account.general_ledger.line.context \N \N \N 16 2024-04-13 20:39:03.023425 0 \N 203 account general_ledger_line_context_form \N \N +205 account.account.type tree \N childs 16 2024-04-13 20:39:03.023425 0 \N \N account account_balance_sheet_tree \N \N +206 account.balance_sheet.context form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account balance_sheet_context_form \N \N +207 account.balance_sheet.comparison.context \N \N \N 16 2024-04-13 20:39:03.023425 0 \N 206 account balance_sheet_context_comparison_form \N \N +208 account.account.type tree \N childs 16 2024-04-13 20:39:03.023425 0 \N \N account account_income_statement_tree \N \N +209 account.income_statement.context form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account income_statement_context_form \N \N +210 account.aged_balance tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account aged_balance_list \N \N +211 account.aged_balance.context form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account aged_balance_context_form \N \N +212 account.configuration form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account configuration_form \N \N +213 company.company \N \N \N 16 2024-04-13 20:39:03.023425 0 \N 167 account company_list \N \N +214 company.company \N \N \N 16 2024-04-13 20:39:03.023425 0 \N 166 account company_form \N \N +215 account.fiscalyear form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account fiscalyear_form \N \N +216 account.fiscalyear tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account fiscalyear_tree \N \N +217 account.fiscalyear tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account fiscalyear_list_close \N \N +218 account.fiscalyear.create_periods.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account fiscalyear_create_periods_start_form \N \N +219 account.fiscalyear.balance_non_deferral.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account fiscalyear_balance_non_deferral_start_form \N \N +220 account.fiscalyear.renew.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account renew_fiscalyear_start_form \N \N +221 account.period form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account period_form \N \N +222 account.period tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account period_tree \N \N +223 account.period tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account period_list_close \N \N +224 account.journal form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account journal_form \N \N +225 account.journal tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account journal_tree \N \N +226 account.journal tree \N \N 20 2024-04-13 20:39:03.023425 0 \N \N account journal_list_cash \N \N +227 account.journal.open_cash.context form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account journal_open_cash_context \N \N +228 account.journal.period form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account journal_period_form \N \N +229 account.journal.period tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account journal_period_tree \N \N +230 account.journal.period tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account journal_period_list_close \N \N +231 account.move form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_form \N \N +232 account.move tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_tree \N \N +233 account.move.reconciliation form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_reconciliation_form \N \N +234 account.move.reconciliation tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_reconciliation_tree \N \N +235 account.move.line form \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account move_line_form \N \N +236 account.move.line form \N \N 20 2024-04-13 20:39:03.023425 0 \N \N account move_line_form_move \N \N +237 account.move.line tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account move_line_tree \N \N +238 account.move.line tree \N \N 20 2024-04-13 20:39:03.023425 0 \N \N account move_line_tree_move \N \N +239 account.move.line tree \N \N 30 2024-04-13 20:39:03.023425 0 \N \N account move_line_list_payable_receivable \N \N +240 account.move.line tree \N \N 30 2024-04-13 20:39:03.023425 0 \N \N account move_line_list_reconcile \N \N +241 account.move.line.receivable_payable.context form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_line_receivable_payable_context_form \N \N +242 account.move.open_journal.ask form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account open_journal_ask_form \N \N +243 account.move.reconcile_lines.writeoff form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account reconcile_lines_writeoff_form \N \N +244 account.reconcile.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account reconcile_start_form \N \N +245 account.reconcile.show form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account reconcile_show_form \N \N +246 account.move.cancel.default form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_cancel_default_form \N \N +247 account.move.reconcile.write_off form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account writeoff_form \N \N +248 account.move.reconcile.write_off tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account writeoff_tree \N \N +249 account.move.line.group.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_line_group_start_form \N \N +250 account.move.line.reschedule.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_line_reschedule_start_form \N \N +251 account.move.line.reschedule.preview form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_line_reschedule_preview_form \N \N +252 account.move.line.reschedule.term tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_line_reschedule_term_list \N \N +253 account.move.line.delegate.start form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_line_delegate_start_form \N \N +254 account.move.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_template_form \N \N +255 account.move.template tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_template_list \N \N +256 account.move.template.keyword form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_template_keyword_form \N \N +257 account.move.template.keyword tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account move_template_keyword_list \N \N +258 account.move.template.keyword tree \N \N 20 2024-04-13 20:39:03.023425 0 \N \N account move_template_keyword_list_sequence \N \N +259 account.move.line.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_line_template_form \N \N +260 account.move.line.template tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_line_template_list \N \N +261 account.tax.line.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_line_template_form \N \N +262 account.tax.line.template tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_line_template_list \N \N +263 account.move.template.create.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account move_template_create_template_form \N \N +264 account.tax.group form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_group_form \N \N +265 account.tax.group tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_group_tree \N \N +266 account.tax.code.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_template_form \N \N +267 account.tax.code.template tree \N childs 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_template_tree \N \N +268 account.tax.code form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_form \N \N +269 account.tax.code tree \N childs 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_tree \N \N +270 account.tax.code tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_list \N \N +271 account.tax.code tree \N childs 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_tree_chart \N \N +272 account.tax.code.context form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_context_form \N \N +273 account.tax.code.line.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_line_template_form \N \N +274 account.tax.code.line.template tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_line_template_list \N \N +275 account.tax.code.line form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_line_form \N \N +276 account.tax.code.line tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_code_line_list \N \N +277 account.tax.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_template_form \N \N +278 account.tax.template tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account tax_template_list \N \N +279 account.tax form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_form \N \N +280 account.tax tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account tax_list \N \N +281 account.tax.test form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_test_form \N \N +282 account.tax.test.result tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_test_result_list \N \N +283 account.tax.line form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_line_form \N \N +284 account.tax.line tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_line_tree \N \N +285 account.tax.rule.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_template_form \N \N +286 account.tax.rule.template tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_template_tree \N \N +287 account.tax.rule form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_form \N \N +288 account.tax.rule tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_tree \N \N +289 account.tax.rule.line.template form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_line_template_form \N \N +290 account.tax.rule.line.template tree \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_line_template_tree \N \N +291 account.tax.rule.line form \N \N 16 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_line_form \N \N +292 account.tax.rule.line tree \N \N 10 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_line_tree \N \N +293 account.tax.rule.line tree \N \N 20 2024-04-13 20:39:03.023425 0 \N \N account tax_rule_line_tree_sequence \N \N +294 party.party \N \N \N 16 2024-04-13 20:39:03.023425 0 \N 142 account party_tree \N \N +295 party.party \N \N \N 16 2024-04-13 20:39:03.023425 0 \N 143 account party_form \N \N +296 product.template tree \N \N 16 2024-04-13 20:39:08.573524 0 \N \N product template_tree \N \N +297 product.template form \N \N 16 2024-04-13 20:39:08.573524 0 \N \N product template_form \N \N +298 product.product \N \N \N 10 2024-04-13 20:39:08.573524 0 \N 296 product product_tree \N \N +299 product.product tree \N \N 20 2024-04-13 20:39:08.573524 0 \N \N product product_tree_simple \N \N +300 product.product \N \N \N 10 2024-04-13 20:39:08.573524 0 \N 297 product product_form \N \N +301 product.product form \N \N 20 2024-04-13 20:39:08.573524 0 \N \N product product_form_simple \N \N +302 product.identifier form \N \N 16 2024-04-13 20:39:08.573524 0 \N \N product identifier_form \N \N +303 product.identifier tree \N \N 10 2024-04-13 20:39:08.573524 0 \N \N product identifier_list \N \N +304 product.identifier tree \N \N 20 2024-04-13 20:39:08.573524 0 \N \N product identifier_list_sequence \N \N +305 product.category tree \N \N 10 2024-04-13 20:39:08.573524 0 \N \N product category_list \N \N +306 product.category tree \N childs 20 2024-04-13 20:39:08.573524 0 \N \N product category_tree \N \N +307 product.category form \N \N 10 2024-04-13 20:39:08.573524 0 \N \N product category_form \N \N +308 product.category form \N \N 20 2024-04-13 20:39:08.573524 0 \N \N product category_product_form \N \N +309 product.uom tree \N \N 16 2024-04-13 20:39:08.573524 0 \N \N product uom_tree \N \N +310 product.uom form \N \N 16 2024-04-13 20:39:08.573524 0 \N \N product uom_form \N \N +311 product.uom.category tree \N \N 16 2024-04-13 20:39:08.573524 0 \N \N product uom_category_tree \N \N +312 product.uom.category form \N \N 16 2024-04-13 20:39:08.573524 0 \N \N product uom_category_form \N \N +313 product.configuration form \N \N 16 2024-04-13 20:39:08.573524 0 \N \N product configuration_form \N \N +314 account.create_chart.properties \N \N \N 16 2024-04-13 20:39:09.955992 0 \N 191 account_product create_chart_properties_form \N \N +315 product.category \N \N \N 16 2024-04-13 20:39:09.955992 0 \N 307 account_product category_form \N \N +316 product.template \N \N \N 16 2024-04-13 20:39:09.955992 0 \N 297 account_product template_form \N \N +317 product.template \N \N \N 16 2024-04-13 20:39:09.955992 0 \N 296 account_product template_tree \N \N +318 account.configuration \N \N \N 16 2024-04-13 20:39:09.955992 0 \N 212 account_product configuration_form \N \N +319 product.attribute.set tree \N \N 16 2024-04-13 20:39:10.340704 0 \N \N product_attribute attribute_set_list \N \N +320 product.attribute.set form \N \N 16 2024-04-13 20:39:10.340704 0 \N \N product_attribute attribute_set_form \N \N +321 product.attribute tree \N \N 10 2024-04-13 20:39:10.340704 0 \N \N product_attribute attribute_list_simple \N \N +322 product.attribute tree \N \N 20 2024-04-13 20:39:10.340704 0 \N \N product_attribute attribute_list \N \N +323 product.attribute form \N \N 16 2024-04-13 20:39:10.340704 0 \N \N product_attribute attribute_form \N \N +324 product.template \N \N \N 16 2024-04-13 20:39:10.340704 0 \N 296 product_attribute template_tree \N \N +325 product.template \N \N \N 16 2024-04-13 20:39:10.340704 0 \N 297 product_attribute template_form \N \N +326 product.product \N \N \N 16 2024-04-13 20:39:10.340704 0 \N 298 product_attribute product_tree \N \N +327 product.product \N \N \N 16 2024-04-13 20:39:10.340704 0 \N 300 product_attribute product_form \N \N +328 product.template \N \N \N 16 2024-04-13 20:39:10.672188 0 \N 296 product_image template_list \N \N +329 product.template \N \N \N 16 2024-04-13 20:39:10.672188 0 \N 297 product_image template_form \N \N +330 product.image tree \N \N 16 2024-04-13 20:39:10.672188 0 \N \N product_image image_list \N \N +331 product.image form \N \N 16 2024-04-13 20:39:10.672188 0 \N \N product_image image_form \N \N +332 product.image list-form \N \N 16 2024-04-13 20:39:10.672188 0 \N \N product_image image_form \N \N +333 product.template \N \N \N 16 2024-04-13 20:39:10.806513 0 \N 297 product_measurements template_form \N \N +334 product.recompute_cost_price.start form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock recompute_cost_price_start_form \N \N +335 product.cost_price.revision form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock product_cost_price_revision_form \N \N +336 product.cost_price.revision tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock product_cost_price_revision_list \N \N +337 product.modify_cost_price.start form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock product_modify_cost_price_start_form \N \N +338 stock.location tree \N childs 20 2024-04-13 20:39:10.936653 0 \N \N stock location_quantity_tree \N \N +339 stock.location form \N \N 20 2024-04-13 20:39:10.936653 0 \N \N stock location_quantity_form \N \N +340 stock.location tree \N \N 20 2024-04-13 20:39:10.936653 0 \N \N stock location_quantity_tree \N \N +341 product.by_location.context form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock product_by_location_context_form \N \N +342 stock.product_quantities_warehouse graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock product_quantities_warehouse_graph \N \N +343 stock.product_quantities_warehouse tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock product_quantities_warehouse_list \N \N +344 stock.product_quantities_warehouse.context form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock product_quantities_warehouse_context_form \N \N +345 stock.product_quantities_warehouse.move tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock product_quantities_warehouse_move_list \N \N +346 stock.location form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock location_form \N \N +347 stock.location tree \N childs 20 2024-04-13 20:39:10.936653 0 \N \N stock location_tree \N \N +348 stock.location tree \N \N 10 2024-04-13 20:39:10.936653 0 \N \N stock location_list \N \N +349 stock.location tree \N \N 20 2024-04-13 20:39:10.936653 0 \N \N stock location_tree \N \N +350 stock.products_by_locations.context form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock products_by_locations_context_form \N \N +351 stock.products_by_locations tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock products_by_locations_list \N \N +352 stock.location.lead_time tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock location_lead_time_list \N \N +353 stock.location.lead_time form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock location_lead_time_form \N \N +354 stock.shipment.in form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_in_form \N \N +355 stock.shipment.in tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_in_tree \N \N +356 stock.shipment.in.return form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_in_return_form \N \N +357 stock.shipment.in.return tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_in_return_tree \N \N +358 stock.shipment.out form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_out_form \N \N +359 stock.shipment.out tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_out_tree \N \N +360 stock.shipment.internal form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_internal_form \N \N +361 stock.shipment.internal tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_internal_tree \N \N +362 stock.shipment.out.return form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_out_return_form \N \N +363 stock.shipment.out.return tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_out_return_tree \N \N +364 stock.shipment.assign.partial form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock shipment_assign_partial_form \N \N +365 stock.move form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock move_form \N \N +366 stock.move tree \N \N 10 2024-04-13 20:39:10.936653 0 \N \N stock move_tree \N \N +367 stock.move tree \N \N 20 2024-04-13 20:39:10.936653 0 \N \N stock move_tree_simple \N \N +368 stock.move tree \N \N 20 2024-04-13 20:39:10.936653 0 \N \N stock move_list_shipment_in \N \N +369 stock.move tree \N \N 20 2024-04-13 20:39:10.936653 0 \N \N stock move_list_shipment \N \N +370 stock.inventory form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock inventory_form \N \N +371 stock.inventory tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock inventory_tree \N \N +372 stock.inventory.line form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock inventory_line_form \N \N +373 stock.inventory.line tree \N \N 10 2024-04-13 20:39:10.936653 0 \N \N stock inventory_line_tree \N \N +374 stock.inventory.line tree \N \N 20 2024-04-13 20:39:10.936653 0 \N \N stock inventory_line_list_simple \N \N +375 stock.inventory.count.search form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock inventory_count_search_form \N \N +376 stock.inventory.count.quantity form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock inventory_count_quantity_form \N \N +377 party.party \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 143 stock party_form \N \N +378 party.address \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 153 stock party_address_tree \N \N +379 party.address \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 155 stock party_address_form \N \N +380 party.address \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 156 stock party_address_form \N \N +381 party.address \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 154 stock party_address_tree \N \N +382 party.contact_mechanism \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 161 stock party_contact_mechanism_tree \N \N +383 party.contact_mechanism \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 163 stock party_contact_mechanism_form \N \N +384 party.contact_mechanism \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 162 stock party_contact_mechanism_tree \N \N +385 stock.configuration form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock configuration_form \N \N +386 stock.period form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock period_form \N \N +387 stock.period tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock period_list \N \N +388 stock.period.cache form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock period_cache_form \N \N +389 stock.period.cache tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock period_cache_list \N \N +390 res.user \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 111 stock user_form \N \N +391 res.user \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 112 stock user_form_preferences \N \N +392 stock.reporting.margin.context form \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_context_form \N \N +393 stock.reporting.margin.main tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_list \N \N +394 stock.reporting.margin.main graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_graph_margin \N \N +395 stock.reporting.margin.main graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_graph_profit \N \N +396 stock.reporting.margin.main graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_graph_amount \N \N +397 stock.reporting.margin.main.time_series tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_list \N \N +398 stock.reporting.margin.main.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_margin \N \N +399 stock.reporting.margin.main.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_profit \N \N +400 stock.reporting.margin.main.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_amount \N \N +401 stock.reporting.margin.product \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 393 stock reporting_margin_product_list \N \N +402 stock.reporting.margin.product \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 394 stock reporting_margin_product_graph_margin \N \N +403 stock.reporting.margin.product \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 395 stock reporting_margin_product_graph_profit \N \N +404 stock.reporting.margin.product \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 396 stock reporting_margin_product_graph_amount \N \N +405 stock.reporting.margin.product.time_series \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 397 stock reporting_margin_product_time_series_list \N \N +406 stock.reporting.margin.product.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_margin \N \N +407 stock.reporting.margin.product.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_profit \N \N +408 stock.reporting.margin.product.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_amount \N \N +409 stock.reporting.margin.category.tree tree \N children 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_category_tree \N \N +410 stock.reporting.margin.category \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 393 stock reporting_margin_category_list \N \N +411 stock.reporting.margin.category \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 394 stock reporting_margin_category_graph_margin \N \N +412 stock.reporting.margin.category \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 395 stock reporting_margin_category_graph_profit \N \N +413 stock.reporting.margin.category \N \N \N 16 2024-04-13 20:39:10.936653 0 \N 396 stock reporting_margin_category_graph_amount \N \N +414 stock.reporting.margin.category.time_series tree \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_list \N \N +415 stock.reporting.margin.category.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_margin \N \N +416 stock.reporting.margin.category.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_profit \N \N +417 stock.reporting.margin.category.time_series graph \N \N 16 2024-04-13 20:39:10.936653 0 \N \N stock reporting_margin_main_time_series_graph_amount \N \N +418 account.invoice form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_form \N \N +419 account.invoice tree \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_tree \N \N +420 account.invoice.report.revision tree \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_report_revision_list \N \N +421 account.invoice.report.revision form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_report_revision_form \N \N +422 account.invoice.line form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_line_form \N \N +423 account.invoice.line tree \N \N 10 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_line_tree \N \N +424 account.invoice.line tree \N \N 20 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_line_tree_sequence \N \N +425 account.invoice.tax form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_tax_form \N \N +426 account.invoice.tax tree \N \N 10 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_tax_tree \N \N +427 account.invoice.tax tree \N \N 20 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_tax_tree_sequence \N \N +428 account.invoice.pay.start form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice pay_start_form \N \N +429 account.invoice.pay.ask form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice pay_ask_form \N \N +430 account.invoice.payment.method form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_method_form \N \N +431 account.invoice.payment.method tree \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_method_tree \N \N +432 account.invoice.credit.start form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice credit_start_form \N \N +433 account.invoice.payment_term form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_form \N \N +434 account.invoice.payment_term tree \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_tree \N \N +435 account.invoice.payment_term.line tree \N \N 10 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_line_list \N \N +436 account.invoice.payment_term.line tree \N \N 20 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_line_list_sequence \N \N +437 account.invoice.payment_term.line form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_line_form \N \N +438 account.invoice.payment_term.line.delta tree \N \N 10 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_line_relativedelta_list \N \N +439 account.invoice.payment_term.line.delta tree \N \N 20 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_line_relativedelta_list_sequence \N \N +440 account.invoice.payment_term.line.delta form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_line_relativedelta_form \N \N +441 account.invoice.payment_term.test form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_test_form \N \N +442 account.invoice.payment_term.test.result tree \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice payment_term_test_result_list \N \N +443 party.address \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 153 account_invoice address_tree \N \N +444 party.address \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 155 account_invoice address_form \N \N +445 party.address \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 156 account_invoice address_form \N \N +446 party.address \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 154 account_invoice address_tree_sequence \N \N +447 party.contact_mechanism \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 161 account_invoice contact_mechanism_tree \N \N +448 party.contact_mechanism \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 163 account_invoice contact_mechanism_form \N \N +449 party.contact_mechanism \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 162 account_invoice contact_mechanism_tree_sequence \N \N +450 party.party \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 143 account_invoice party_form \N \N +451 account.configuration \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 212 account_invoice configuration_form \N \N +452 account.fiscalyear \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 215 account_invoice fiscalyear_form \N \N +453 account.move.line \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 235 account_invoice move_line_form \N \N +454 account.move.line \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 236 account_invoice move_line_form \N \N +455 account.move.line \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 237 account_invoice move_line_list \N \N +456 account.move.line \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 238 account_invoice move_line_list \N \N +457 account.move.line tree \N \N 20 2024-04-13 20:39:14.878373 0 \N \N account_invoice move_line_list_payment \N \N +458 account.move.line tree \N \N 20 2024-04-13 20:39:14.878373 0 \N \N account_invoice move_line_list_to_pay \N \N +459 account.fiscalyear.invoice_sequence form \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_sequence_form \N \N +460 account.fiscalyear.invoice_sequence tree \N \N 16 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_sequence_list \N \N +461 account.fiscalyear.invoice_sequence tree \N \N 20 2024-04-13 20:39:14.878373 0 \N \N account_invoice invoice_sequence_list_sequence \N \N +462 company.company \N \N \N 16 2024-04-13 20:39:14.878373 0 \N 166 account_invoice company_form \N \N +463 account.invoice.line \N \N \N 16 2024-04-13 20:39:16.677742 0 \N 422 account_invoice_stock invoice_line_form \N \N +464 stock.move \N \N \N 16 2024-04-13 20:39:16.677742 0 \N 365 account_invoice_stock move_form \N \N +465 purchase.purchase form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_form \N \N +466 purchase.purchase tree \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_tree \N \N +467 purchase.handle.shipment.exception.ask form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase handle_shipment_exception_ask_form \N \N +468 purchase.handle.invoice.exception.ask form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase handle_invoice_exception_ask_form \N \N +469 purchase.line form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_line_form \N \N +470 purchase.line tree \N \N 10 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_line_tree \N \N +471 purchase.line tree \N \N 20 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_line_tree_sequence \N \N +472 purchase.product_supplier form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase product_supplier_form \N \N +473 purchase.product_supplier tree \N \N 10 2024-04-13 20:39:16.958214 0 \N \N purchase product_supplier_tree \N \N +474 purchase.product_supplier tree \N \N 20 2024-04-13 20:39:16.958214 0 \N \N purchase product_supplier_tree_sequence \N \N +475 purchase.product_supplier.price form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase product_supplier_price_form \N \N +476 purchase.product_supplier.price tree \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase product_supplier_price_tree \N \N +477 purchase.product_supplier.price tree \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase product_supplier_price_list_sequence \N \N +478 purchase.return_purchase.start form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase return_purchase_start_form \N \N +479 purchase.purchase \N \N \N 16 2024-04-13 20:39:16.958214 0 {"__class__": "Get", "d": false, "k": "modify_header", "v": {"__class__": "Eval", "d": {}, "v": "context"}} 465 purchase modify_header_form \N \N +480 purchase.reporting.context form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_context_form \N \N +481 purchase.reporting.main tree \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_list \N \N +482 purchase.reporting.main graph \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_graph_expense \N \N +483 purchase.reporting.main graph \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_graph_number \N \N +484 purchase.reporting.main.time_series tree \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_list \N \N +485 purchase.reporting.main.time_series graph \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_graph_expense \N \N +486 purchase.reporting.main.time_series graph \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_graph_number \N \N +487 purchase.reporting.supplier \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 481 purchase purchase_reporting_supplier_list \N \N +488 purchase.reporting.supplier \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 482 purchase purchase_reporting_supplier_graph_expense \N \N +489 purchase.reporting.supplier \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 483 purchase purchase_reporting_supplier_graph_number \N \N +490 purchase.reporting.supplier.time_series tree \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_list \N \N +491 purchase.reporting.supplier.time_series graph \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_graph_expense \N \N +492 purchase.reporting.supplier.time_series graph \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_graph_number \N \N +493 purchase.reporting.product \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 481 purchase purchase_reporting_product_list \N \N +494 purchase.reporting.product \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 482 purchase purchase_reporting_product_graph_expense \N \N +495 purchase.reporting.product \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 483 purchase purchase_reporting_product_graph_number \N \N +496 purchase.reporting.product.time_series tree \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_list \N \N +497 purchase.reporting.product.time_series graph \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_graph_expense \N \N +498 purchase.reporting.product.time_series graph \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase purchase_reporting_main_time_series_graph_number \N \N +499 purchase.configuration form \N \N 16 2024-04-13 20:39:16.958214 0 \N \N purchase configuration_form \N \N +500 party.party \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 143 purchase party_form \N \N +501 stock.move tree \N \N 20 2024-04-13 20:39:16.958214 0 \N \N purchase move_list_shipment \N \N +502 stock.location \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 346 purchase location_form \N \N +503 stock.move \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 368 purchase move_list_shipment_in \N \N +504 product.template \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 297 purchase template_form \N \N +505 product.template \N \N \N 16 2024-04-13 20:39:16.958214 0 \N 296 purchase template_tree \N \N +506 product.product tree \N \N 20 2024-04-13 20:39:16.958214 0 \N \N purchase product_list_purchase_line \N \N +507 sale.sale form \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_form \N \N +508 sale.sale tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_tree \N \N +509 sale.handle.shipment.exception.ask form \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale handle_shipment_exception_ask_form \N \N +510 sale.handle.invoice.exception.ask form \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale handle_invoice_exception_ask_form \N \N +511 sale.line form \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_line_form \N \N +512 sale.line tree \N \N 10 2024-04-13 20:39:19.14446 0 \N \N sale sale_line_tree \N \N +513 sale.line tree \N \N 20 2024-04-13 20:39:19.14446 0 \N \N sale sale_line_tree_sequence \N \N +514 sale.return_sale.start form \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale return_sale_start_form \N \N +515 sale.sale \N \N \N 16 2024-04-13 20:39:19.14446 0 {"__class__": "Get", "d": false, "k": "modify_header", "v": {"__class__": "Eval", "d": {}, "v": "context"}} 507 sale modify_header_form \N \N +516 sale.configuration form \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale configuration_form \N \N +517 sale.reporting.context form \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_context_form \N \N +518 sale.reporting.main tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_list \N \N +519 sale.reporting.main graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_graph_revenue \N \N +520 sale.reporting.main graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_graph_number \N \N +521 sale.reporting.main.time_series tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_list \N \N +522 sale.reporting.main.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_revenue \N \N +523 sale.reporting.main.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_number \N \N +524 sale.reporting.customer \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 518 sale sale_reporting_customer_list \N \N +525 sale.reporting.customer \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 519 sale sale_reporting_customer_graph_revenue \N \N +526 sale.reporting.customer \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 520 sale sale_reporting_customer_graph_number \N \N +527 sale.reporting.customer.time_series tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_list \N \N +528 sale.reporting.customer.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_revenue \N \N +529 sale.reporting.customer.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_number \N \N +530 sale.reporting.customer.category.tree tree \N children 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_customer_category_tree \N \N +531 sale.reporting.customer.category \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 518 sale sale_reporting_customer_category_list \N \N +532 sale.reporting.customer.category.time_series tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_list \N \N +533 sale.reporting.customer.category.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_revenue \N \N +534 sale.reporting.customer.category.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_number \N \N +535 sale.reporting.product \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 518 sale sale_reporting_product_list \N \N +536 sale.reporting.product \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 519 sale sale_reporting_product_graph_revenue \N \N +537 sale.reporting.product \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 520 sale sale_reporting_product_graph_number \N \N +538 sale.reporting.product.time_series tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_list \N \N +539 sale.reporting.product.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_revenue \N \N +540 sale.reporting.product.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_number \N \N +541 sale.reporting.product.category.tree tree \N children 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_product_category_tree \N \N +542 sale.reporting.product.category \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 518 sale sale_reporting_product_category_list \N \N +543 sale.reporting.product.category.time_series tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_list \N \N +544 sale.reporting.product.category.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_revenue \N \N +545 sale.reporting.product.category.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_number \N \N +546 sale.reporting.region.tree tree \N subregions 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_region_tree \N \N +547 sale.reporting.country.tree tree \N children 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_country_tree \N \N +548 sale.reporting.country.time_series tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_list \N \N +549 sale.reporting.country.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_revenue \N \N +550 sale.reporting.country.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_number \N \N +551 sale.reporting.country.subdivision.time_series tree \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_list \N \N +552 sale.reporting.country.subdivision.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_revenue \N \N +553 sale.reporting.country.subdivision.time_series graph \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale sale_reporting_main_time_series_graph_number \N \N +554 party.party \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 143 sale party_form \N \N +555 stock.move tree \N \N 20 2024-04-13 20:39:19.14446 0 \N \N sale move_list_shipment \N \N +556 product.template \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 297 sale template_form \N \N +557 product.template \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 296 sale template_tree \N \N +558 product.product tree \N \N 20 2024-04-13 20:39:19.14446 0 \N \N sale product_list_sale_line \N \N +559 product.sale.context form \N \N 16 2024-04-13 20:39:19.14446 0 \N \N sale product_sale_context_form \N \N +560 product.configuration \N \N \N 16 2024-04-13 20:39:19.14446 0 \N 313 sale product_configuration_form \N \N +561 company.employee \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 171 optical_equipment employee_form \N \N +562 optical_equipment.equipment tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment equipment_tree \N \N +563 optical_equipment.equipment form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment equipment_form \N \N +564 optical_equipment.equipment tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment equipment_serial_tree \N \N +565 optical_equipment.change_propietary.form form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment change_propietary_form \N \N +566 optical_equipment.maintenance.calibration_sample form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_sample_form \N \N +567 optical_equipment.maintenance.calibration_sample tree \N \N 10 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_calibration_tree \N \N +568 optical_equipment.maintenance.calibration tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment calibration_total_tree \N \N +569 optical_equipment.maintenance.calibration form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment calibration_total_form \N \N +570 optical_equipment.contract form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment contract_form \N \N +571 optical_equipment.contract tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment contract_list \N \N +572 optical_equipment_create.contract form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment create_contract_form \N \N +573 optical_equipment_maintenance.diary tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment diary_tree \N \N +574 optical_equipment_maintenance.diary form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment diary_form \N \N +575 optical_equipment_maintenance.agended form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment assing_agended_form \N \N +576 optical_equipment_maintenance.reagended form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment reassing_agended_form \N \N +577 optical_equipment.configuration form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment configuration_form \N \N +578 optical_equipment_maintenance.service tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_service_tree \N \N +579 optical_equipment_maintenance.service form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_service_form \N \N +580 optical_equipment.maintenance tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_tree \N \N +581 optical_equipment.maintenance form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_form \N \N +582 optical_equipment.change_propietary_maintenance.form form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment change_propietary_maintenance_form \N \N +583 optical_equipment.maintenance-optical_equipment.equipment form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_equipment_form \N \N +584 optical_equipment_maintenance.activity form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_activity_form \N \N +585 optical_equipment_maintenance.activity tree \N \N 10 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_activity_tree \N \N +586 optical_equipment.maintenance.line form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_line_form \N \N +587 optical_equipment.maintenance.line tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment maintenance_line_tree \N \N +588 stock.move \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 369 optical_equipment move_list_shipment \N \N +589 stock.move \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 365 optical_equipment move_form \N \N +590 party.party \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 142 optical_equipment party_tree \N \N +591 party.party \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 143 optical_equipment party_form \N \N +592 party.address \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 153 optical_equipment address_tree \N \N +593 party.address \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 155 optical_equipment address_form \N \N +594 optical_equipment.use_pattern tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment use_pattern_tree \N \N +595 optical_equipment.use_pattern form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment use_pattern_form \N \N +596 product.template \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 297 optical_equipment template_form \N \N +597 optical_equipment.product_pattern form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment pattern_form \N \N +598 optical_equipment.product_pattern tree \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment pattern_tree \N \N +599 purchase.purchase \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 465 optical_equipment purchase_form \N \N +600 purchase.line \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 469 optical_equipment purchase_line_form \N \N +601 product.product \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 506 optical_equipment product_list_purchase_line \N \N +602 sale.sale \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 508 optical_equipment sale_tree \N \N +603 sale.sale \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 507 optical_equipment sale_form \N \N +604 product.product \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 558 optical_equipment product_list_sale_line \N \N +605 optical_equipment.confirm_sale_date.form form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment confirm_sale_date_form \N \N +606 optical_equipment.print_balance_sale_party.start form \N \N 16 2024-04-13 20:39:21.814652 0 \N \N optical_equipment print_balance_sale_party_start_form \N \N +607 stock.shipment.out \N \N \N 16 2024-04-13 20:39:21.814652 0 \N 358 optical_equipment shipment_out_form \N \N +\. + + +-- +-- Data for Name: ir_ui_view_search; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_ui_view_search (id, create_date, create_uid, domain, model, name, "user", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_ui_view_tree_optional; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_ui_view_tree_optional (id, create_date, create_uid, field, "user", value, view_id, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: ir_ui_view_tree_state; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_ui_view_tree_state (id, child_name, create_date, create_uid, domain, model, nodes, selected_nodes, "user", write_date, write_uid) FROM stdin; +8 childs 2024-04-13 22:46:29.296372 1 [["parent","=",null]] ir.ui.menu [[61],[61,62],[179],[179,188],[163]] [] 1 \N \N +\. + + +-- +-- Data for Name: ir_ui_view_tree_width; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.ir_ui_view_tree_width (id, create_date, create_uid, field, model, "user", width, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_configuration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_configuration (id, agended_sequence, contract_sequence, create_date, create_uid, equipment_sequence, invima, maintenance_sequence, moisture_max, moisture_min, moisture_uom, sale_quote_number, technician_responsible, technician_signature, temperature_max, temperature_min, temperature_uom, write_date, write_uid) FROM stdin; +1 13 12 2024-04-13 22:16:03.29148 1 14 RH-202309-02409 15 45 43 42 16 1 \\x89504e470d0a1a0a0000000d49484452000000770000003c08060000005ca6252500000009704859730000059400000594012d4ce0a30000001974455874536f667477617265007777772e696e6b73636170652e6f72679bee3c1a0000147949444154789ced9d79545bd79dc77f7aef6961914042427a484220240462b1d884b1c1c6016c1a3b8d5dc73e6d36b7e9c99c76268d67a64bdac969dc3593d3366e3ba9d39e4933691b1f3771e3d8899d32764b83178c91d96d64304208ed2b20841624f1defce125d8262c124e3cb13eff887397dffbddfbe53dddfbbbf73e51489284049f4d9038eba3abe24582bb02166bc52b57aeacedebebfb6b5a5adaf9b2b2b2dd388e0756d3b104f113b3b8068361a3d3e964a7a5a5d50683c12f02c0ffaca25f0996c1f8f8782e00a40300442211703a9d9b038100372b2beb7da55279366671592c568a4aa5320904826f1004b11912e2de156c369bc4ebf51678bddebce9e9e9924020c035180c6c922469168ba5d66eb75368341ab0582c181919018bc5027bf7eefd671a8d86c72cae582c7e9b2449068aa2da4824d2b09a0dba1f71bbdd591313136b3c1e0fcfeff7377abd5eb1c160e08442a13c83c19032373707814000f87c7e28140acdb2d96c282c2c3ca350282c341acd4f92e4b6ecec6c168fc7eb178bc527bc5e6f9012eb68b9adaded5b2693e9a575ebd6550380737272f23d1cc79b8442a167759bfdd9c366b315f87c3e95dd6e17391c8ecfcdcece4a2c168bc4e97462e17018300c038140e0c6306c323737d7846198362d2d6d203939193232324e4aa552e30266e900400240f84642cc77aecfe74befeaea422b2b2be51c0ec7a4d7eb555c2eb71100de8ed5e66710cad8d85826411045d3d3d365e3e3e3854ea7f34b068321d9ebf5029d4e07168b05388e5fcdcece6e57abd53a0683a1e172b9560a85724626934dafe05ab3b727c42c2e8ee3368220607a7a5aa9542adf3e7ffe7cabdbedde9d9393735f8b3b3131c172bbdd05939393ebae5ebdfaa45eaf57d9ed760a822040a3d1202f2f2f909d9d7d223737d72c10083ee0f17823369b4d5f515111596d5f621617c3b0198fc703369bad92244972606040431044ed6a3af7ff04c46ab5ca8d46e386d1d1d1471c0e4783d56a456f8829140a2d0a85e2784141c13f582c569f542a1d050062be81acacacbbe258cce2262525f50a85c29b4ed26834a3dbed5e3b393999c666b3bdabe3de3d09363e3e5e6230182a1d0ec7631e8f276b66664636313141894422111cc727d56af59fcbcaca8e13047141a150040120faa9381a6b458542319095951541d16b412a8220de100804b97ebf9ff75913d7603014d86cb65d4ea7b36a6262a2d66834b2ad562ba4a7a7038ee356a954fa726363630f8fc73b2312892c00c070381c289fcff77f9a7ec72c2e0040341a856030c80700502a95e1d3a74faf4f4949a18944a27f5f1df73e795c2e57aadbed6eb4582c0fb8ddee1a9bcd56ecf7fba94ea7134d4a4a82fcfcfcabd5d5d51f70389c163e9f7f45a3d10cecdcb9736ebe8d77de79a7cde57215949595fd5c2291fcf2d38adec525eed4d414242727e75fb7139548243f0100c7aa78f609d0dfdf5f3b3636f61c8d460b4c4f4f67cecdcd31dc6e7795cd6643676666402c16934c2653ab502806b85cee690e87a3319bcd97eaebeb6f3e662512c91d76bd5e6f70fffefd69cdcdcd3f79f4d147cb711cdff98936ec3a71894ba1508020085a777737a5a2a2022c16cb5e0683319b9393b363b51cbc9b4422918ce1e1e1cd1c0e67964ea7f7cccdcd79b3b2b24e54545474656464f43299cc0e91483409d7e68f00002093c996b4cbe7f38f4a2492fa868686311e8ff78bbbd986c5884bdc94949410954a4dada8a80000808c8c8c2bd16854be2a9e7d02545656be979393c3e572b96158609eb81c0c06430e8661992291a8fb469a4c26f3666666c2e4e424363333236d6d6d6d0c04020c0048d7ebf56a044152310cc3028100e9f7fbc36c367bb6b8b8f8647e7efecbab19048a4b5c1cc7df4210e42b707de9706868289fc964aa8a8b8b2930efbffd1e8072fdf30e9fb85cae2f56a31a8de6c99696963f381c0e0a9fcf0700000cc300c330181c1c84ab57af8a6b6a6a0e0602010887c3a0542afd2449ba4422d1388bc5220d0603e6f3f92a3c1e4f52201028c771bc0b00de8dd59fdb894b5c92245dfdfdfd34bd5e5f27954affeef3f9782929295eb8b7848553a74efd391a8d2aabaaaad6f178bc99d5b29b9a9a3a249148ceb1582cd68d343a9d1eccccccb49694946ccfcdcd451e7cf0c1ef84c3e1362a950a52a9d42010085cf36d984ca6ac6834ca9d9b9b43653259df6af90610a7b8028120dcd9d9099148241d00904020901d0e8763be13e200b15aad42144567f97cbe737ec6e5cb972b8f1d3bf68842a198adabab6300c04d710706061aa2d1e8daf2f2f2970060ee76a34ba1542a354aa572c34279172e5c08611846170a851f6467676b3fce86582cb6028075a5d75e0e7189cbe572c7323232606e6e0e8c46638ed96cc6711cffc4e6b8a3a3a3b2d1d1d16febf5fa4d0e87434ea552a3b9b9b91d252525bf2c2e2e3e0600e4c58b177f74ead42954a552f531994cf78dba068341d0d2d272786c6c8cb377ef5e6d6161e1d1d5f48dc3e110e3e3e3100e87d356d3ee4a884b5c144549a7d3092e976b53341a9da55028c0e572df9f5784d2d6d6f6732a95ea59bf7efd4b30ef713d3c3c5c491044726161e199f6f6f66f31180c5d4545c5b1e55e5ba7d3894e9f3e7dde6eb77308823084c3e1d170384c3979f264ddd9b367ebbefad5af7e8f2088b1b367cf6e964824909494449b5fdf64327d71606080130e87616464e485d51697c562f9300c4b2249326535edae84b8c4050070b95c303535a5b0582c599148043233336f2e1c0c0d0d710e1f3efccdacac2c100804afe7e5e5390100b45a2dadb5b5b5154190a48c8c8caa3367cefc8c42a1cc71b9dc7c894432b69ceb8642a1ec2b57aef09a9a9adab66cd9d200d7e3b51a8d66d7db6fbffde796969617dd6e37a4a5a591dbb66d23239188c262b164088542cf850b17be7ee4c8915fac5dbb768ac160447b7b7b55c5c5c5b552a9f45cbcfd710393c994c662b10045d14f6dde1fd706b9d4d454238fc7032a95ca74bbddcd191919049d4eb7dfc8c7300c99999901bfdf0fc9c9c98c1be9c160900c0402c8ecec2c351c0e075014ed6e6b6bc35c2ed793cbbd3683c13072389cc0e1c387ebfff6b7bf1d341a8d454ea753ca643227c562b1e3d8b1631481406079ecb1c71e178bc5c73a3b3b992693e9b50f3ef8e0f0a143870ea4a5a545ebeaea1e57a9543ff6783ca0d7ebff299ebe988fc16010d068344cad560f4aa5d2c1d5b2bb52e2ba73391c4e1f87c3019fcf5759525262a2d3e9fbaf0f100000c062b17cd9683482cbe582c1c1c157701cdf0500e16030f89d8e8e8ed4f2f272e8ebeb7b757070b0d26eb7434f4fcfd39595953f822546db838383eb29140aa5b9b9f9f1b6b6b6837ffce31fbf241008bec46030201008c0891327e091471e2177eedcf9885c2eefa4d3e9aefefefe870f1c38b003c771a8adad6d2f2a2afa7e5151d187369b2db9a4a4e4f90b172e3cc166b3bb2a2a2a7ee372b9924d26d33e2693392a97cb7fb7d27e191919d9e976bb51a15078126e5b015a2694f1f171954422e95baa2f16232e71e7e6e6081a8d16999c9c241a1a1a4ae6cf191d0e47665b5bdb0f4a4a4aa0abab0b0e1c38f0799d4e7719c3b04993c9545a5d5d1d35994ce89b6fbed9b87efd7aef860d1b5ce3e3e3329d4eb7512693b50100e8f5faec4824a24e4d4dbd20140acd00d762bfefbefb6e2b8aa2e89e3d7b04cdcdcde2a2a2a2e78d4663238220c9341a4d363c3c0cf5f5f5efe5e7e76b489284929292bfa328ba6d6a6a6a5d7a7a7a9b52a9fc10ae773a8ee381babababa73e7ce9d3a74e8d0aff57afd97dd6e37c7e7f3499a9b9b5f8ca55fe8747ab0bebede85e3f8abb1d437180ceab6b6b68ef2f2f25da5a5a54762b10110a7b87c3edf2f91488e6318f62079eb7e1d467b7bfbefb55a6df233cf3cf3e68e1d3ba6ec767b592814ca989999e19696969e5bb366cdd7028140513018e48a44a2f78c4663cde0e0e07187c3f1b0dbed965fbc78f139b7db9de9743a992a95cad3d4d45423954a476c365bf2e5cb97e9d16814b66fdfbe49a954bea3542abfa9d3e95866b3f98583070f7e73f3e6cd933299ec85f93e2995ca16006859a81d0505055751147d202525e595a1a1a112168b1555abd5ff363c3cfc4a6969e98afbe5c30f3ffcc3be7dfbfe00b1ddb500005e8220c643a19022c6fa00b00a032a0070120481d168342a00804ea7a35badd6978f1e3dfa504343c3b0582c7e36272767ea63ea8edef803419081b4b4b490cd667b7c78789869b55aa9d5d5d5e7abaaaab043870ead2d2e2e7e422a95bee070389e9f9e9e8670380cafbffefa5b6ab5fa2c9d4ef75cba74695b7f7f3fbdaaaacad3d4d4b45d2a955e5a4923e472b95e2e976f8da31f6eb26fdfbe58450500809c9c9ca1a79e7a2a375e3fe21617411030994cd8d4d494c0e7f3854646467e77fcf8f1279b9a9a06aaababb72f22ec2de0386ecccacab2b4b7b7e7793c1e78fae9a77f515757f7ed9e9e9eb50882749c3e7dfadb0441085a5b5b9fdabc79b3a7a2a2e2374343431b3c1e4f0e8aa2f2f4f4f49e3d7bf65c9248243f562a95e678dbf559206e717373736d434343e0f7fb9fecefefdfa1d168149b366dea5bb76edd4337be27974b464646574b4b4b5e4e4e0ea4a6a60e000070389c108fc78337de7883a1d1689edeba75aba5aeae6e774141c1f90d1b6e0687eeb558f63d41bce2626c369b69b3d9e0c08103df455114b66cd9f2ae5aadde134b0c97c9646ae9743aac59b386e4703897010072727206b66ddbf6bc5aadfe5c4a4a8abebcbcfc3faeef76984f42d80558b6b80e8723736c6cec8b76bbbdd1e3f1284892048220447d7d7dc91d1d1df0f8e38f4f3437377f77eddab5afc5ea0c8ee33d656565505e5ede2b91487aaf27130d0d0d2f02404c23d7fb9925c5d5e97445972e5dfa5d5f5f5f8dcd6643391c0e6466661a100471e1387e69d7ae5d031886fda0bababa3d1e6101002c164bb3c562010683b192fdba093e868f15d766b3250f0e0efeb4ababeb1b131313485e5edefb5bb76e3dca66b3cfcae572035c1fe67bbd5ef6c993275f088542a9f138323030507deedcb9a7262626c066b3959bcde6249148148cc7e6fdce82e26ab5daa22b57aebcd2d3d3b349a5525dd8b973e7d7e572f9826b8dc160109b9d9da5381c8e8d70edbceea24b67369b2d9924494524f2d11e6c9224692323237fe2f3f9c8eeddbb896030c822088201000971e3e00e71474646a4274e9c68339bcddcddbb771fa8adad7d1616998c93d7806834ba649c5aa7d3f13a3b3bffa1d56a8b0982001a8d06a9a9a980a22814161606b76cd9b2b1b7b7f7872323235bc2e170010074c4d7bcfb9b5bc41d1b1be3b7b7b71f733a9d19bb77effe596d6dedf76089284b5252529424499242a12c560c00006c36db96b7de7aabf8a1871eb26464645ca5d1682e1a8dd6110e873d52a9b45f2e970f5cbd7ab5cb66b36df1f97c1248881b17b7883b3030b0fffcf9f3257bf6ecf9f9faf5eb9f5bae91e5080b00802048844aa5825028ecdeba75ebc30b9561b3d9c3737373e0f7fb6b00e0ade5fa90e04ee63f4a690683e1f37c3e1f2412c9af976b203d3ddd2b168bf5542a75c9b27c3eff98542af57577773f60b7db790b95a15028d1a9a929f07abd77e700cd7dc44d71cd66736a28144a2a282830391c0ee762956e834c4d4ded8f46a3e076bb93172b2893c9668b8a8a86868787535d2ed7e685caa0280a08820082208997a9c4c94d71a954ea2c8d468b381c0e617a7a3a7b2546a2d128582c16989a9aca5eaa6c7171f1ab2c160bec767bd342f9e9e9e9bd0a850250145d8d458dfb9a9be2f2f97cbf4824faabc96442088250afc40841103035350570ed74f7a2545555fd89cfe73b351acd17743a5ddeedf9c9c9c9e3188685272727f357e243823bb965fa525858f80a4992603299161cec2cc6dcdc1c442291f0d2258150a95427bababa982693e987b76746a35172666686989e9ece0600c602f5132c935bc44510e47c7676b6edf2e5cb8f9acde6a4651b41ae99c1306c598fd2356bd6fc974422897676767e41a7d315cdcfc3308c02d7822124c4b09738c147dc22ae52a90c8bc5e2f37d7d7dc92e97ebeb77eba2b9b9b9fd0f3cf0c05f7a7b7b934c26d3bfcccf4351948220089a786d61fcdc11555228142fb2d9ec706767e77346a3714503ab95a0542abf5f555515d268344f5fba7469e38d741cc76793939327300c83eeeeeec54c2458823bc42d2d2deda9abab3b7cfaf4e94cb3d9bc77b986489204144597fd1895c964a30d0d0d5fd1e974587b7bfbbb0e8723f3a6530842a15028644545455cdb55ee77168c071717177f4f2e974ff6f4f4fcebd8d8d89da78b6f83200840106459f1e5f99495951dd9ba756b6b6b6b2ba7b7b7773f0080cd66a387c3e1740a85e283c4227c5c2c28864c26336fd8b0617f575757da952b57968c56a1280a1c0e07180cc64a5fb713292d2ddda956ab0d3d3d3dbb474747c5388e136969697342a1b00762df3d9800163971505050f0726969a9f1d8b1630ff5f5f53dba98111445212b2b0b984ce6eddb5f96442a957a6b6a6afe53afd753fbfbfbffdb6030305014c5100459ceb42ac1227cacb8229128585353f35bafd78b68349a5f99cd66ce42e5babbbba97ebfbf824aa5029bcd8ee9ec6b6b6bebef1b1b1b4fbdfffefbcd3d3d3d035aad16210822117e8c9345bf236b6a6af63ff1c4137fe9e8e8e069b5da5fc24727d46f9297979762341ab3e72fbeaf947dfbf611e5e5e58fd5d7d75f3872e48858abd50283c188e93506093e62a9a04358a5527d6d6c6cacb1a5a5e5492e97db565e5efec6fc02044110b00a039ffcfc7c379bcd6ecacdcd7dd66eb76f1208043f8dd7e6fdce921125914834515f5fbf5da7d39d3e7af4e86f190c86fdfad18c9bac56c081c7e3cd6cdcb831b1d3719558d6d4a5a4a4e4ccae5dbb9e311a8db4b367cffeca6030a4dfc8a352a93404411014451323db7b8c65cf4b6b6b6b0fecd8b1e3e0993367f2753addef6fd4f57abd740441287c3eff2c2462c1f7142b0a3aa854aa67abababc70f1f3ebcf3e2c58bcf030058add646bd5e4f6130181377c7c504b1b2a205f19c9c9ca9dadadaafb9ddeec3870e1dfa61341a0de974ba722693097c3eff7fef9693096223a6d7e0f7f4f46c397efcf8118fc793e2f3f9a0aaaa2af2f0c30fe38957e0df5bc4b495a5bcbcfc645252d28673e7cebdaad56ad552a9f44f0961ef3d62fe018b1bf5ad56abe8b5d75eb3c47be038c1eaf37fee7ca2435c9fb3030000000049454e44ae426082 21 19 39 2024-04-13 22:42:10.770006 1 +\. + + +-- +-- Data for Name: optical_equipment_contract; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_contract (id, company, contact, create_date, create_uid, currency, description, end_date, equipment, invoice_address, number, party, price_contract, reference, start_date, state, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_contract-optical_equipment_equipment; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."optical_equipment_contract-optical_equipment_equipment" (id, contract, create_date, create_uid, equipment, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_create_contract; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_create_contract (id, company, contact, create_date, create_uid, currency, end_date, invoice_address, party, payment_term, start_date, unit_price, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_equipment; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_equipment (id, active, biomedical_class, calibration, code, company, contract, create_date, create_uid, equipment_type, health_register, location, main_tecnology, maintenance_frequency, mark_category, model_category, origin_country, product, propietary, propietary_address, purchase_origin, reference_category, refurbish, risk, sale_destination, serial, shipment_destination, software_version, state, use, useful_life, warranty, write_date, write_uid) FROM stdin; +1 t n/a f \N 1 \N 2024-04-13 22:02:59.255234 1 mobiliario_optico COL123evergreen 1 \N none 7 9 1 1 1 1 purchase.line,1 10 f n/a \N \N No Aplica draft apoyo 120 24 \N \N +\. + + +-- +-- Data for Name: optical_equipment_equipment-change_propietary_form; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."optical_equipment_equipment-change_propietary_form" (id, change, create_date, create_uid, equipment, maintenance_service, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_equipment-party_party; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."optical_equipment_equipment-party_party" (id, create_date, create_uid, equipment, party, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_maintenance (id, check_calibration, check_electric_system, check_equipment, clean_eyes, clean_int_ext, code, company, create_date, create_uid, description_activity, equipment, equipment_calibrate, graph_calibration, initial_operation, invima, maintenance_type, moisture_max, moisture_min, moisture_uom, patterns_equipments, propietary, propietary_address, service_maintenance, state, technician_responsible, technician_signature, temperature_max, temperature_min, temperature_uom, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance-optical_equipment_equipment; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."optical_equipment_maintenance-optical_equipment_equipment" (id, create_date, create_uid, equipment, maintenance, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance_activity; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_maintenance_activity (id, create_date, create_uid, maintenance, product, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance_calibration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_maintenance_calibration (id, create_date, create_uid, d_resolution, dev_std, diopter, graph_dates, k_c_calibration, maintenance, mean, state, t_student, "uncertain_U_b1", "uncertain_U_b2_ana", "uncertain_U_b2_dig", uncertain_combinated, uncertain_eff, uncertain_expanded, uncertain_pattern, "uncertain_type_A", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance_calibration_sample; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_maintenance_calibration_sample (id, create_date, create_uid, maintenance, mistake, mistake_rate, number_sample, sequence, value_equipment, value_patterns, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance_diary; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_maintenance_diary (id, code, create_date, create_uid, date_end, date_estimated, date_expected, maintenance_service, state, technical, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_maintenance_line (id, create_date, create_uid, description, line_maintenance_activity, line_replace, maintenance, maintenance_activity, quantity, replacement, unit, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance_service; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_maintenance_service (id, code, company, contract_origin, create_date, create_uid, current_agended, description, estimated_agended, invima, maintenance_type, moisture_max, moisture_min, moisture_uom, propietary, propietary_address, reference, sale_date, sale_origin, state, state_agended, technical, technician_responsible, technician_signature, temperature_max, temperature_min, temperature_uom, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance_service-equipment_contract; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."optical_equipment_maintenance_service-equipment_contract" (id, contract, create_date, create_uid, maintenance_services, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_maintenance_service-maintenance_diary; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."optical_equipment_maintenance_service-maintenance_diary" (id, agended, create_date, create_uid, maintenance_service, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_product_pattern; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_product_pattern (id, create_date, create_uid, pattern, product, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: optical_equipment_use_pattern; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.optical_equipment_use_pattern (id, create_date, create_uid, name_pattern, write_date, write_uid) FROM stdin; +1 2024-04-13 20:39:21.814652 0 Schematic Eye \N \N +2 2024-04-13 20:39:21.814652 0 Trial Lens \N \N +3 2024-04-13 20:39:21.814652 0 Calibration Weights \N \N +4 2024-04-13 20:39:21.814652 0 Calibration Spheres \N \N +\. + + +-- +-- Data for Name: party_address; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_address (id, active, city, country, create_date, create_uid, name, party, party_name, postal_code, sequence, street, subdivision, write_date, write_uid, delivery, invoice, campus, party_related) FROM stdin; +1 t \N 2024-04-13 20:44:32.553351 1 1 \N Avenida Siempre viva \N \N \N f f f \N +2 t \N 2024-04-13 21:11:25.792118 1 2 \N Avenidad siempre viva 2 \N \N \N f f f \N +3 t \N 2024-04-13 21:11:58.698962 1 3 \N Avenida siempre viva 3 \N \N \N f f f \N +4 t \N 2024-04-13 21:59:54.205412 1 4 \N Avernida siempre viva 4 \N \N \N f f f \N +5 t \N 2024-04-13 22:18:03.851229 1 5 \N \N \N \N f f f \N +\. + + +-- +-- Data for Name: party_address_format; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_address_format (id, active, country_code, create_date, create_uid, format_, language_code, write_date, write_uid) FROM stdin; +1 t AR 2024-04-13 20:39:01.136154 0 ${party_name}\n${name}\n${street}\n${subdivision}\n${POSTAL_CODE}, ${city}\n${COUNTRY} \N \N \N +2 t AU 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${name}\n${street}\n${subdivision}\n${CITY} ${SUBDIVISION} ${POSTAL_CODE}\n${COUNTRY} \N \N \N +3 t AT 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +4 t BD 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${name}\n${street}\n${city}-${postal_code}\n${COUNTRY} \N \N \N +5 t BY 2024-04-13 20:39:01.136154 0 ${party_name}\n${name}\n${street}\n${postal_code}, ${city}\n${subdivision}\n${COUNTRY} \N \N \N +6 t BE 2024-04-13 20:39:01.136154 0 ${attn}\n${party_name}\n${name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +7 t BR 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${name}\n${city} - ${subdivision_code}\n${postal_code}\n${COUNTRY} \N \N \N +8 t BG 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${name}\n${postal_code} ${city}\n${subdivision}\n${COUNTRY} \N \N \N +9 t CA 2024-04-13 20:39:01.136154 0 ${attn}\n${party_name}\n${name}\n${street}\n${city} (${subdivision}) ${postal_code}\n${COUNTRY} fr \N \N +10 t CA 2024-04-13 20:39:01.136154 0 ${ATTN}\n${PARTY_NAME}\n${NAME}\n${STREET}\n${CITY} ${SUBDIVISION_CODE} ${POSTAL_CODE}\n${COUNTRY} \N \N \N +11 t CL 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${name}\n${postal_code}\n${city}\n${COUNTRY} \N \N \N +12 t CN 2024-04-13 20:39:01.136154 0 ${COUNTRY} ${POSTAL_CODE}\n${subdivision}${city}${street}${name}\n${party_name} zh \N \N +13 t CN 2024-04-13 20:39:01.136154 0 ${COUNTRY} ${POSTAL_CODE}\n${subdivision}, ${city}, ${street}, ${name}\n${party_name} \N \N \N +14 t HR 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${COUNTRY_CODE}-${POSTAL_CODE} ${city}\n${COUNTRY} \N \N \N +15 t CZ 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${street}\n${COUNTRY_CODE}-${POSTAL_CODE} ${city}\n${COUNTRY} \N \N \N +16 t DK 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +17 t EE 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +18 t FI 2024-04-13 20:39:01.136154 0 ${attn}\n${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +19 t FR 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${name}\n${street}\n${POSTAL_CODE} ${CITY}\n${COUNTRY} \N \N \N +20 t DE 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +21 t GR 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${COUNTRY_CODE}-${POSTAL_CODE} ${CITY}\n${COUNTRY} \N \N \N +22 t HK 2024-04-13 20:39:01.136154 0 ${party_name}\n${name}\n${street}\n${subdivision}\n${COUNTRY} \N \N \N +23 t HU 2024-04-13 20:39:01.136154 0 ${party_name}\n${city}\n${street}\n${postal_code}\n${COUNTRY} \N \N \N +24 t IS 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${name}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +25 t IN 2024-04-13 20:39:01.136154 0 ${party_name}\n${name}\n${street}\n${CITY} ${postal_code}\n${subdivision}\n${COUNTRY} \N \N \N +26 t ID 2024-04-13 20:39:01.136154 0 ${party_name}\n${name}\n${street}\n${city} ${postal_code}\n${subdivision}\n${COUNTRY} \N \N \N +27 t IR 2024-04-13 20:39:01.136154 0 ${party_name}\n${name}\n${city}\n${street}\n${subdivision}\n${postal_code}\n${COUNTRY} \N \N \N +28 t IQ 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${name}\n${subdivision}\n${postal_code}\n${COUNTRY} \N \N \N +29 t IE 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city} ${postal_code}\n${COUNTRY} \N \N \N +30 t IL 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city} ${postal_code}\n${COUNTRY} \N \N \N +31 t IT 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${name}\n${street}\n${postal_code} ${city} ${SUBDIVISION_CODE}\n${COUNTRY} \N \N \N +32 t JP 2024-04-13 20:39:01.136154 0 ${COUNTRY}\n${postal_code}\n${subdivision}${city}${street}\n${party_name} jp \N \N +33 t JP 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}, ${SUBDIVISION} ${postal_code}\n${COUNTRY} \N \N \N +34 t KR 2024-04-13 20:39:01.136154 0 ${COUNTRY}\n${street}\n${party_name}\n${postal_code} ko \N \N +35 t KR 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}, ${subdivision} ${postal_code}\n${COUNTRY} \N \N \N +36 t LV 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}\n${subdivision}\n${COUNTRY_CODE}-${POSTAL_CODE}\n${COUNTRY} \N \N \N +37 t MO 2024-04-13 20:39:01.136154 0 ${COUNTRY}\n${city}\n${street}\n${party_name} zh \N \N +38 t MO 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}\n${COUNTRY} \N \N \N +39 t MY 2024-04-13 20:39:01.136154 0 ${attn}\n${party_name}\n${name}\n${street}\n${postal_code} ${CITY}\n${SUBDIVISION}\n${COUNTRY} \N \N \N +40 t MX 2024-04-13 20:39:01.136154 0 ${attn}\n${party_name}\n${street}\n${name}\n${postal_code}, ${city}, ${subdivision}\n${COUNTRY} \N \N \N +41 t NL 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${name}\n${street}\n${postal_code} ${CITY}\n${COUNTRY} \N \N \N +42 t NZ 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city} ${postal_code}\n${COUNTRY} \N \N \N +43 t NO 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${CITY}\n${COUNTRY} \N \N \N +44 t OM 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}\n${COUNTRY} \N \N \N +45 t PK 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}\n${postal_code}\n${subdivision}\n${COUNTRY} \N \N \N +46 t PE 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${name}\n${city}\n${subdivision}\n${COUNTRY} \N \N \N +47 t PH 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${CITY}\n${COUNTRY} \N \N \N +48 t PL 2024-04-13 20:39:01.136154 0 ${attn} ${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +49 t PT 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +50 t QA 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}\n${COUNTRY} \N \N \N +51 t RO 2024-04-13 20:39:01.136154 0 ${attn} ${party_name}\n${street}\n${city}\n${postal_code}\n${COUNTRY} \N \N \N +52 t RU 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}\n${subdivision}\n${COUNTRY}\n${postal_code} \N \N \N +53 t SA 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city} ${postal_code}\n${COUNTRY} \N \N \N +54 t RS 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +55 t SG 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${name}\n${CITY} ${POSTAL_CODE}\n${COUNTRY} \N \N \N +56 t SK 2024-04-13 20:39:01.136154 0 ${attn}\n${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +57 t SL 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +58 t ES 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${city}\n${subdivision}\n${COUNTRY} \N \N \N +59 t LK 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${CITY}\n${postal_code}\n${COUNTRY} \N \N \N +60 t SE 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +61 t CH 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${postal_code} ${city}\n${COUNTRY} \N \N \N +62 t TW 2024-04-13 20:39:01.136154 0 ${COUNTRY}\n${postal_code}\n${street}\n${party_name} zh \N \N +63 t TW 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}, ${subdivision} ${postal_code}\n${COUNTRY} \N \N \N +64 t TH 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${name}\n${subdivision}\n${COUNTRY}\n${postal_code} \N \N \N +65 t TR 2024-04-13 20:39:01.136154 0 ${party_name}\n${attn}\n${street}\n${name}\n${postal_code} ${city} ${subdivision}\n${COUNTRY} \N \N \N +66 t UA 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}\n${subdivision}\n${postal_code}\n${COUNTRY} \N \N \N +67 t GB 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${CITY}\n${postal_code}\n${COUNTRY} \N \N \N +68 t US 2024-04-13 20:39:01.136154 0 ${attn}\n${party_name}\n${street}\n${city}, ${subdivision_code} ${postal_code}\n${COUNTRY} \N \N \N +69 t VN 2024-04-13 20:39:01.136154 0 ${party_name}\n${street}\n${city}\n${subdivision}\n${COUNTRY} \N \N \N +\. + + +-- +-- Data for Name: party_address_subdivision_type; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_address_subdivision_type (id, active, country_code, create_date, create_uid, types, write_date, write_uid) FROM stdin; +1 t ID 2024-04-13 20:39:01.136154 0 ["autonomous province","province","special district","special region"] \N \N +2 t IT 2024-04-13 20:39:01.136154 0 ["province"] \N \N +3 t ES 2024-04-13 20:39:01.136154 0 ["autonomous city","province"] \N \N +\. + + +-- +-- Data for Name: party_category; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_category (id, active, create_date, create_uid, name, parent, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: party_category_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_category_rel (id, category, create_date, create_uid, party, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: party_configuration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_configuration (id, create_date, create_uid, identifier_types, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: party_configuration_party_lang; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_configuration_party_lang (id, create_date, create_uid, party_lang, write_date, write_uid, company) FROM stdin; +\. + + +-- +-- Data for Name: party_configuration_party_sequence; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_configuration_party_sequence (id, create_date, create_uid, party_sequence, write_date, write_uid) FROM stdin; +1 2024-04-13 20:39:01.136154 0 1 \N \N +\. + + +-- +-- Data for Name: party_contact_mechanism; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_contact_mechanism (id, active, address, comment, create_date, create_uid, name, party, sequence, type, value, value_compact, write_date, write_uid, delivery, invoice) FROM stdin; +1 t \N 2024-04-13 22:00:10.681386 1 4 \N phone 666666666 666666666 2024-04-13 22:00:10.681386 1 f f +\. + + +-- +-- Data for Name: party_contact_mechanism_language; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_contact_mechanism_language (id, contact_mechanism, create_date, create_uid, language, write_date, write_uid, company) FROM stdin; +1 1 2024-04-13 22:00:10.681386 1 \N \N \N 1 +\. + + +-- +-- Data for Name: party_identifier; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_identifier (id, active, address, code, create_date, create_uid, party, sequence, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: party_party; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party (id, active, code, create_date, create_uid, name, replaced_by, write_date, write_uid, customer_type) FROM stdin; +1 t 1 2024-04-13 20:44:32.553351 1 Smart Vision S.A.S \N \N \N otro +2 t 2 2024-04-13 21:11:25.792118 1 Customer optica \N \N \N otro +3 t 3 2024-04-13 21:11:58.698962 1 Customer ips \N \N \N otro +4 t 4 2024-04-13 21:59:54.205412 1 Supplier \N \N \N otro +5 t 5 2024-04-13 22:18:03.851229 1 Employee \N \N \N otro +\. + + +-- +-- Data for Name: party_party-delivered_to-stock_location; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."party_party-delivered_to-stock_location" (id, create_date, create_uid, location, party, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: party_party_account; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_account (id, account_payable, account_receivable, company, create_date, create_uid, customer_tax_rule, party, supplier_tax_rule, write_date, write_uid) FROM stdin; +1 \N \N \N 2024-04-13 20:44:32.553351 1 \N 1 \N 2024-04-13 20:44:32.553351 1 +2 \N \N 1 2024-04-13 21:11:25.792118 1 \N 2 \N 2024-04-13 21:11:25.792118 1 +3 \N \N 1 2024-04-13 21:11:58.698962 1 \N 3 \N 2024-04-13 21:11:58.698962 1 +4 \N \N 1 2024-04-13 21:59:54.205412 1 \N 4 \N 2024-04-13 21:59:54.205412 1 +5 \N \N 1 2024-04-13 22:18:03.851229 1 \N 5 \N 2024-04-13 22:18:03.851229 1 +\. + + +-- +-- Data for Name: party_party_customer_code; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_customer_code (id, company, create_date, create_uid, customer_code, party, write_date, write_uid) FROM stdin; +1 \N 2024-04-13 20:44:32.553351 1 1 \N \N +2 1 2024-04-13 21:11:25.792118 1 2 \N \N +3 1 2024-04-13 21:11:58.698962 1 3 \N \N +4 1 2024-04-13 21:59:54.205412 1 4 \N \N +5 1 2024-04-13 22:18:03.851229 1 5 \N \N +\. + + +-- +-- Data for Name: party_party_customer_currency; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_customer_currency (id, create_date, create_uid, customer_currency, party, write_date, write_uid) FROM stdin; +1 2024-04-13 20:44:32.553351 1 \N 1 \N \N +2 2024-04-13 21:11:25.792118 1 \N 2 \N \N +3 2024-04-13 21:11:58.698962 1 \N 3 \N \N +4 2024-04-13 21:59:54.205412 1 \N 4 \N \N +5 2024-04-13 22:18:03.851229 1 \N 5 \N \N +\. + + +-- +-- Data for Name: party_party_lang; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_lang (id, create_date, create_uid, lang, party, write_date, write_uid, company) FROM stdin; +1 2024-04-13 20:44:32.553351 1 \N 1 \N \N \N +2 2024-04-13 21:11:25.792118 1 \N 2 \N \N 1 +3 2024-04-13 21:11:58.698962 1 \N 3 \N \N 1 +4 2024-04-13 21:59:54.205412 1 \N 4 \N \N 1 +5 2024-04-13 22:18:03.851229 1 \N 5 \N \N 1 +\. + + +-- +-- Data for Name: party_party_location; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_location (id, create_date, create_uid, customer_location, party, supplier_location, write_date, write_uid) FROM stdin; +1 2024-04-13 20:44:32.553351 1 7 1 6 2024-04-13 20:44:32.553351 1 +2 2024-04-13 21:11:25.792118 1 7 2 6 2024-04-13 21:11:25.792118 1 +3 2024-04-13 21:11:58.698962 1 7 3 6 2024-04-13 21:11:58.698962 1 +4 2024-04-13 21:59:54.205412 1 7 4 6 2024-04-13 21:59:54.205412 1 +5 2024-04-13 22:18:03.851229 1 7 5 6 2024-04-13 22:18:03.851229 1 +\. + + +-- +-- Data for Name: party_party_payment_term; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_payment_term (id, create_date, create_uid, customer_payment_term, party, supplier_payment_term, write_date, write_uid) FROM stdin; +1 2024-04-13 20:44:32.553351 1 \N 1 \N 2024-04-13 20:44:32.553351 1 +2 2024-04-13 21:11:25.792118 1 \N 2 \N 2024-04-13 21:11:25.792118 1 +3 2024-04-13 21:11:58.698962 1 \N 3 \N 2024-04-13 21:11:58.698962 1 +4 2024-04-13 21:59:54.205412 1 \N 4 \N 2024-04-13 21:59:54.205412 1 +5 2024-04-13 22:18:03.851229 1 \N 5 \N 2024-04-13 22:18:03.851229 1 +\. + + +-- +-- Data for Name: party_party_sale_method; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_sale_method (id, company, create_date, create_uid, party, sale_invoice_method, sale_shipment_method, write_date, write_uid) FROM stdin; +1 \N 2024-04-13 20:44:32.553351 1 1 \N \N 2024-04-13 20:44:32.553351 1 +2 1 2024-04-13 21:11:25.792118 1 2 \N \N 2024-04-13 21:11:25.792118 1 +3 1 2024-04-13 21:11:58.698962 1 3 \N \N 2024-04-13 21:11:58.698962 1 +4 1 2024-04-13 21:59:54.205412 1 4 \N \N 2024-04-13 21:59:54.205412 1 +5 1 2024-04-13 22:18:03.851229 1 5 \N \N 2024-04-13 22:18:03.851229 1 +\. + + +-- +-- Data for Name: party_party_supplier_currency; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_supplier_currency (id, create_date, create_uid, party, supplier_currency, write_date, write_uid) FROM stdin; +1 2024-04-13 20:44:32.553351 1 1 \N \N \N +2 2024-04-13 21:11:25.792118 1 2 \N \N \N +3 2024-04-13 21:11:58.698962 1 3 \N \N \N +4 2024-04-13 21:59:54.205412 1 4 \N \N \N +5 2024-04-13 22:18:03.851229 1 5 \N \N \N +\. + + +-- +-- Data for Name: party_party_supplier_lead_time; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.party_party_supplier_lead_time (id, company, create_date, create_uid, party, supplier_lead_time, write_date, write_uid) FROM stdin; +1 \N 2024-04-13 20:44:32.553351 1 1 \N \N \N +2 1 2024-04-13 21:11:25.792118 1 2 \N \N \N +3 1 2024-04-13 21:11:58.698962 1 3 \N \N \N +4 1 2024-04-13 21:59:54.205412 1 4 \N \N \N +5 1 2024-04-13 22:18:03.851229 1 5 \N \N \N +\. + + +-- +-- Data for Name: product_attribute; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_attribute (id, create_date, create_uid, digits, domain, help, help_selection, name, selection, selection_sorted, string, type_, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_attribute-product_attribute-set; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."product_attribute-product_attribute-set" (id, attribute, attribute_set, create_date, create_uid, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_attribute_set; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_attribute_set (id, create_date, create_uid, name, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_category; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_category (id, create_date, create_uid, name, parent, write_date, write_uid, account_parent, accounting, supplier_taxes_deductible_rate, taxes_parent) FROM stdin; +1 2024-04-13 20:52:46.045466 1 contabilidad \N \N \N f t 1 f +2 2024-04-13 21:25:36.487149 1 model \N \N \N f f 1 f +3 2024-04-13 21:26:03.452748 1 refence \N \N \N f f 1 f +4 2024-04-13 21:26:38.298593 1 mark \N \N \N f f 1 f +5 2024-04-13 21:26:55.081849 1 model 4 \N \N f f 1 f +6 2024-04-13 21:27:11.822868 1 reference 5 \N \N f f 1 f +7 2024-04-13 21:28:24.078392 1 SMART VISION \N \N \N f f 1 f +8 2024-04-13 21:28:51.983637 1 SMART VISION U3000R 7 \N \N f f 1 f +9 2024-04-13 21:29:32.515128 1 U3000R 7 \N \N f f 1 f +10 2024-04-13 21:29:46.28288 1 ESTANDAR 9 \N \N f f 1 f +\. + + +-- +-- Data for Name: product_category_account; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_category_account (id, account_expense, account_revenue, category, company, create_date, create_uid, write_date, write_uid) FROM stdin; +1 3 6 1 1 2024-04-13 20:52:46.045466 1 2024-04-13 20:52:46.045466 1 +2 \N \N 2 1 2024-04-13 21:25:36.487149 1 2024-04-13 21:25:36.487149 1 +3 \N \N 3 1 2024-04-13 21:26:03.452748 1 2024-04-13 21:26:03.452748 1 +4 \N \N 4 1 2024-04-13 21:26:38.298593 1 2024-04-13 21:26:38.298593 1 +5 \N \N 5 1 2024-04-13 21:26:55.081849 1 2024-04-13 21:26:55.081849 1 +6 \N \N 6 1 2024-04-13 21:27:11.822868 1 2024-04-13 21:27:11.822868 1 +7 \N \N 7 1 2024-04-13 21:28:24.078392 1 2024-04-13 21:28:24.078392 1 +8 \N \N 8 1 2024-04-13 21:28:51.983637 1 2024-04-13 21:28:51.983637 1 +9 \N \N 9 1 2024-04-13 21:29:32.515128 1 2024-04-13 21:29:32.515128 1 +10 \N \N 10 1 2024-04-13 21:29:46.28288 1 2024-04-13 21:29:46.28288 1 +\. + + +-- +-- Data for Name: product_category_customer_taxes_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_category_customer_taxes_rel (id, category, create_date, create_uid, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_category_supplier_taxes_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_category_supplier_taxes_rel (id, category, create_date, create_uid, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_configuration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_configuration (id, create_date, create_uid, product_sequence, template_sequence, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_configuration_default_cost_price_method; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_configuration_default_cost_price_method (id, create_date, create_uid, default_cost_price_method, write_date, write_uid) FROM stdin; +1 2024-04-13 20:39:08.573524 0 fixed \N \N +\. + + +-- +-- Data for Name: product_configuration_default_lead_time; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_configuration_default_lead_time (id, create_date, create_uid, default_lead_time, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_cost_price; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_cost_price (id, company, cost_price, create_date, create_uid, product, write_date, write_uid) FROM stdin; +1 1 30000 2024-04-13 21:37:12.808326 1 1 \N \N +\. + + +-- +-- Data for Name: product_cost_price_method; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_cost_price_method (id, company, cost_price_method, create_date, create_uid, template, write_date, write_uid) FROM stdin; +1 1 fixed 2024-04-13 21:37:12.808326 1 1 \N \N +\. + + +-- +-- Data for Name: product_cost_price_revision; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_cost_price_revision (id, company, cost_price, create_date, create_uid, date, product, template, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_identifier; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_identifier (id, code, create_date, create_uid, product, sequence, type, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_image; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_image (id, create_date, create_uid, image, image_id, product, sequence, template, write_date, write_uid) FROM stdin; +1 2024-04-13 21:37:12.808326 1 \\xffd8ffe000104a46494600010100000100010000ffdb004300080606070605080707070909080a0c140d0c0b0b0c1912130f141d1a1f1e1d1a1c1c20242e2720222c231c1c2837292c30313434341f27393d38323c2e333432ffdb0043010909090c0b0c180d0d1832211c213232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232ffc000110803e703e703012200021101031101ffc4001c0001000202030100000000000000000000000102030504060708ffc4005110000201030204030504060606060a03010001020304110521061231410751611322327181147291a123334252b1c10815243462d1438292a2e1f016357483b2f11725262737445373b3c236546364ffc400190101010101010100000000000000000000000102030405ffc4002411010100020202020203010100000000000001021103310421124132511322611471ffda000c03010002110311003f00f7f00000000000000000000000000000000000000000000000000000000355aded4e84976a9fc8da9a0e27bbad6b654236f6dedebd4aaa30839f22f37978605565a4c94b3cc967a1e6977e216b0ae274a859db5084731946a667283efba697e4682f389b5fbca52855d56a2a59ff00449471f58ac93695deb8b67463615b9aa423286f872593ce7fae2df9b9612735e715938b56d2555c2bdccabd6551a51ad51b716fef379295152b6af2a3eca2a49639b7a9197d63cb83a61c964f4e1cbc18e77759e7775ebbe5a5470df4949e7f23835344a97d539ae139c93cafd9e5fa1c975ee634a12545d36bac258e597c9a4a4bf13536daf7dab54fb15771a34e4df2fb6fd22525e4e5baefdc6573fb38f8f097fab7167a05b42aa5174f9fbc60bdff00c36c9b2a161650a6f9a4bdcce62e4a128ffaad3cfd19c8b5d2bed8e34ea55ab731c6ca72ce3e4fa9d7389a76da4dfdd5bd69732a736a106f99fc967739cdfdbaddd6cb55e3256da555d3297b3959c1fe8dc60e3cafbecdbcb7e679bd5a8eff0050a938537cd5a6df2a5baf9176ae358bb51827bbda2ff651dc749d168d85252c73557d66ff0091b98dcba71cf39c7eea786f40762fed75b1ed5af2e87698ec9aee702854929a83f84e6acbdd1e9c64c7a7cfe4cee796eb2e72885d5ec55265d3dcac4304a4c3d8940121d0741d40772d8ee434c9c3c005f22f8ee5704806d17a75274de69ce507e6998922c9309bd37343882fa8259ad1a892c72496c722ef8896a1a6d7b1b9b7928d7a53a729c1f4ca6b65f5340a0bae5e4b464d2c633bf725c2574c7973c5ccf0eb4a970bd4b9b796b50af63563cd1a33a6e128cfcfa9e8d0ab0a89b84935e8f383cb5c9c9bca5e867a1755adff00555aa535d71196df81cef0cfa75c7cabd57ac525eeaeff0023345e12db73ce6d78a751a10e572a7557f8e3fe5837367c6749ed716f2863bc65cd9fa19fe3ca3d18f9183b73f32d9353438874eb86a31b88b97eef73913d5eca94733ad14be4dff031669da652f55cb60d653e23d26b5470a77d49c93c359c63f13970bfb49b4a37546527d22aa2cbfcc9b8db6547f568c8529ac4117236000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d738c34fada9e8eedadeb3a359cb309a78c492cacfa64ec6707528e68c5f9480f26b5f0e753b88c9ea3716f466f7f6946529efdf678cfd4ded970258dbd4556a57a9edb1cb374528466bd56e76ee6cc0a2f8d646a23ac54e1dd36d2328d1b58f4e936e4b3f26750d7b4e85b54fb45384634fa4d47647a55ec57bddbb1a0beb48575384d66125b971b71ae7cb87cf1d3cd6e2b50e5714d1d3f5dd26370fed168bf4d97cd1e9cdebf33b7eb9c395b4ab9f690939da4db70937f0bee99c0a34567128f367afa1deeb38f163be2aeb9a6f17f10e9141d1a1533b6232a90cca1f2ff008e4e253b3d4b5fbfa97978e72954966a55a897f03b84ace8caae5d38bf5919e349457bb1ca5d8c4e2f6eb9795eb51c5b0d32869f49c292c36bde93eace629eeb0cb28cdc9249e3e4678da3934f1f53b49a7932cf77da20961497539b07ee98a3424961a33c572a2c73ba5b72e9e7053ba2d108b7725f4d880153bb256c4174012c96c65058c225bdb6021f52762339010c7427b8c325200dedb13d88630d14a968921acf5642586195b3e48b7cf6c9083dc034b2bafc8cd46eae6835ecebd48a5d1293c2303892b3cac6966567558352a9cf4ea5c494a75b3978e8fd5e167cbb1874aa36756d350bcab637f29db2a6e94e3092c49c965ee937d31f23616f55d0ab4eb778c93f9a3d36cae3db508548ae58ce2a5cbe593cfc986aedf4bc5e5b9e3abf4d147c40f675553a7637371154d7c36d38ae6db6ce3e66cf4de2dbabfba54a5a456a516fe29657f236f193c249bc3ed92f17be5bfc4e4f5b62b74085d11214000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038b7f073a0df68ee728c571fa89faa0348a6b759dd6cd147561196ee3f89e5dc7b715a3c4f72a9d4a914a6be1935d8e97a6dcdc4f892319dc55947daad9cdb4434f6dbfbce6b874e9667978496f96715c2ea7fe82aedbbf719b6d0e945e8ba7ca514e5f69cf377c659dbb95792fc0a9a796deda4aeade546b509383ce54a3b1d36e341ab466dd096639e923e8174e0d61c22d7aa345abf07e91acbe6ad4a746ae73ed684f924cd4cac633e39976f1295afb2c7b58352ef84d99214a325eeb3d0ee3c2d8cae1ce86af5a3472bf45529a93c77f7b2535ce00953a74a1a451938a4dd4a8ea7bd27e5bf63a4e5fdbcb9789f78ba272a834b1d4b4738d8b5edbdd690e73d42855a505b73d4a728c73f3c60e3c2f695569529464ffc324d23a4cf1af365c19cedc96e7cbe85526fa98e373cd27fbababc617e2658ce32dd61fa1a96572b8e53b82ea5f7c95c65ec5fa15059c93dc020b128aa2de404823b0e8156ec59954d6496c23221d0c7cc4e58166c672885ea31b14a9ee18c60b2fcc322e81b0485572894f03042412a72b1dfaee77fe1caded74ca2f396b31674051cfc8eefc2f19474d8e7a39b68e7cbd3d5e1dd67a7654f2f62e8e1dc5edbd8d175aeabd3a1462f0ea549a8c57d59e7975e2daa7add5b4b5b3a15ece336a372eab4e4b1d7091e77d47b02e889357a26b569af6974af6d2ac671947de8a926e0fc9f933684500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000031cab5384b9655229f9360640638d7a52785522dfa32ded21fbcbf102c08caf327200c570daa326ba994c570f1464c0f0be39a919f125e63afb5c1d3344df5d537d5554766e2c9e7882e9f57ede475ad19736b6f1d3da99fb57bfe84b1a0698bae6b3fe2ced874bd36f2858f0e6935ee6ac6953f6d87293c259676cb7bdb6bc8b95b57a7552ef0926691c80001182700018ea52a7563cb52119c7ca4b28d1ea3c17c3baa3a93b9d2addd5a9d6a463cb2fa346fc04d3cfaefc2ab0972ff57ea7796914be093f689fe275bbdf0eb8a2d39aa5b4ecefb2fdd51972492faec7b302eeb37095f3e5de9faee9929c6fb48bfa6a1bcaa4697b587fb48e3d3d62cea4f1ede97928c9e259f933e89714d61ee8d7dfe85a4ea9151bed3edae147a7b4a69e0d4e4b1c72f1f1af1285572c2f67be7b26d63e7d0bc6a53949acc7997551dcf41bbf0ab87aaaa92b257163566f3cd46abc2ff57a1a0d47c31d72da39d3355a3774e11da95cc31293fbc8dce571cbc49f4d04567e141467bfbabf12f71c35c53a6c154bad0e759765695154ff00751abab7f1b7adec6ea957b4aa96650af4a51c7d4dce48e3978f94e9b1c35f16c1ca09653cbf238f42ee8d679a7523520fa49493cfd16e668d758f85af9ecff035f295caf1e516551778a0eaa7fb2895520ffc89528bc2c1a62faec5d10591b28a64e0809962a5bb60a24b15ee89c844aebe858aa93c96ce7a00291ce77e85fb63b90dac7a8112ea9adbd0f42d1e8ca869b6f4dadf972febb9d2f47b37a8ea10a38cc22f337e48efbcd183518ed858470e5cbe9eef0f0b7795742f19a33adc214d53a98f637119ca3e6b0d7f167cfb52b559c1d3a7cdccf6783e9ae27d0e1af69b5ecebca71535f147aa6ba1d334bf042d2e682ab5b51aca4a7ef4797ddc7a7a9c5efd391fd1f2d6f233d5ab56a95153a6a34dd293c2e67be71f247bb1d6f83784f4ee11d1236561cf2e67cd52ad4f8a6fd4ec81400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003caf8a38a387d6bd7142f3ed94eb527c929536f07aa1e6fc43c0da86a1acdc5d5bd3b6953a8f399bdc0ebb4f5de18ab5525abddd25e728b67321a9e8729f2c38aa71f2e74d14a9e1dea8934ac2de4fd2491c1abc01abc1efa35397dc964695bb5756b24951e3087fad239709ddc619b7e2db597a3a8751a9c0ba9c5372d066feecb738d3e0fbd8adf42bb8f9e3251dcdffd24965d1e28b26befa2255b8db97961ac69b557973472ce832e19ad16d7f565fc7d231670ee74656c9caa51d42938aceea4417d72ad7aba8569dd4631b8751fb450e99f434da14bff005937dfda9c9597694b2db69bebd71ea71f87d7f6fce3fd293ec778e30d42eaa687a469d696eebc6149d6ad15d936f0d94f062e250e25af414e4e13a19e5cedb334fc752b8b4aba7d6a556708d5b171f75ecf739fe0827ff4aabc9ef8b66b2691f408008000000000000000004609003061ad6b42e20e15a8c2a45ac3528a7933003aaea3e1e70cea51f7f4ca5466ba4e82f66d3fa1d7ae3c26f6506f4fd76ee32c6231b84a7147a581b67e31e27aaf05f1368d479e14edaf69f59d4a4dc248d03d62b5b28bbed3ae2de2b68b74f993faa3dfb54ffab2bfdc679ab8278d967cf06a6763967c32ba952d5ecab49461714dce5fb2de1afa1cea752134fde4d2ead7436573a258dd464aada527cdf149470dfd4d654e11b258fb356b9b54bb52a8f0ff00137396cede7cfc79f497bbe68fc2fa3f32ca32696df8ec7167a26b16eb9a95f51b9c3f761561bfe2579b57b76957d3255252eb3b79a697d1971e7c6dd38e5c1674e6ed1f8de3cb01ca1b6ecc70ab06b3751af4125d6b53697e2668d3a73873d3929c7b38bc9d272635cef0e726f4ae62dfbac96da59c12d2a6f2d631db23da271cec97ab35b8c7c32fd1cf95d09851a95ab469518b9ce4f092ee4d9ce95e5754a9548cf31cb70794bd19de787f47859c3ed12837564b1cddd19cb92476e3f1f2cafb5b49d2e3a3d83e649d79acd46bf81969734f9aa3eef63917d272f7174e8562b96096d85b1e5b96efb7d4c3198cf8c639c77c2fc0dadad254e84638f9fa9c3b7a5cf5136ba6ecd927b2fc445736df3ec20df5c194c745628c7e4640a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008c231d68c654a6a4934d630cca52a538d5a72849663258607cebc416d0b6d66f6924a9c15596de4b269b48f650ba4a9e7696fcddfd4fa0eef82340bfa92a97364aa4e5d5b93dce047c31e17a753da51b29529f9c6a31f6aebda970e4b5ad1b41a94a9c2a55853943125b34d19bc31e03d4b85af2f6ef537494ea45429c60f3b2ee77ab1d1adec3d9aa52a9254d622a52ca46cc200000000000000000000000000000000387aa7fd5b5fee33cdbb9e93aa7fd5b71f719e6f08b6d92b356e678c15e532a893c85b7d32c3ca4381c8e41c86349f171250f2387716fcdbb597936fecb3d8c7528271e85989a69e14e50965393f46f62d49d58b973a8c93e9eea5fc0e73a38db042a3e86d751834aa74f4fd41dc3a4e70c7c2a583b4ddf11ced74aad791b0a9c9460e597358fe068a9d14faa395a851ab73a0dddb525cd3a949a8c57764d34d056f10f5386814759969509539d77454613dfa26d9c19f8c54a10ccb46ac9757fa538f46d2e9708d1d0abd1746fa95595cb84d7ec28adcf3dd4ad1284aed732f7543192d91a8f66d2bc57b1bb74f9b4bad4954598b9558b4ff0023be69da87f595a5bdcd2a6a30ab95bcb2d23e70d12deb5d3b3b5a714ea63dc7eadec7bef09da5c5a58595b5686674d3e66ba6ec269dc62b11489008a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1ea9ff0056d7fb8cf3ba1bb923d1753ffab6e3ee33ceedbf5922566b37292a264e52ca2118d449e532a816e4030a8e3b1135848cfc863ab1e851c49432fa11c9e8727907214628431d8e750d9182303914d6e15d6af9ca5e21c21fb2f4ba9fc59e63adc1474c9e56136bf99ea17988f8896cdfede9b563fc4f32e22ffab13ff12fe62ac73b83609eb1a6cfce7189f436951e5ab8efcaff0089f3cf064f9351b06fff00af03e89d3b1f6997dd7fc42b680020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e26a7ff56dc7dc679e5b2fd29e87a97fd5d5fee33cfed62fdaa2566b98a25d40c918191402312816e4332812a1e8518540a56a5ba3991818ebc7a155c2e41c866e51c806351c1782dc9e5262823a9ea5512f1234da78eb6557f99e69c41579b4e952c7c33ce7f13d1f564fff0049ba4fada545fc4f35d7d62dab27fbff00cc95a8d870a3fedda77ff7a1fc4fa2f4f7fda73e7168f9cb841e6fac7d2b433f89f44da4b96f29af3935f9056e80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007175159d3ebaff00033a5d1a3cb563b1ddaf7fb956fbaceaca9f2d4886724a8175132f212a3e8114e52ca05d44ba4555544c35e3968e5a463a91dc0e0b86c5397d0e54a251c77030f292a264e527940e93acae5f12f426ff006a8548fe4cf37e268f2dad76bffab83d2f88128f889c38dfed2a8bf23ce38a5a8dbd786f975dff00122c5b845ff69a12f2a94bff0011f445378bfb6f5a98ff00759f3a70acd46ac73da749aff68fa169c9bd42cbff00bdff00e8c2bb18000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e3deff72abf759d6d7c49fa9d92f7fb8d6fbaceb6ba866b97ca394c83051551270480062a9f1194c53f89818da2b83211820c7ca4f296e9d4662bac97e251d1f8a528f1d70b4bcea545f91e75c56925770efeda58ff0068f45e2f717c65c2ae2d37ede7d1fa23cf38aa9ca5797d149bc5493ff788d4713863e37df0e1ff0088fa2ecd7b4bcb797eecd3ff00719f38f0cfeb64feeaff0078fa3b496a55a935df1ff840ec200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000320e85c79e24d8708d19db514ae75271f769af861eb2ff203be7324b2f647127aa58539f2cef6da32f275629ff13e4be20f12f8af5aab3f6faad6a5193da95bcbd9c52f2db77f5674fa95ead6a92a952a4e5393de4de5cbebdc0fb82a6b7a552f8f51b58ffdec4e3cf8af40a7f1eaf66bfef51f11b6dbcb6c982d826df694b8eb85a0f12d72c97fde18a5e217094739d7ecb6ff0019f1aad996ce41b7d8bffa47e0f72e55c43659fbe7229f1cf0bd5f835cb397fde1f193015f6edb6bba55e4736fa85ad45e9551cf8c94a29c5a69f468f856139d29a9d39ca125de2f0ceedc2be2b71270bca14d5d4af2d13de85c372c2f47d501f5b03a7703f887a4f1b59e6de5ec2f60bf496d397bcbd579a3b8e400000000000000000000000000000000000000000000000000000e3deff72adf759d6bb9d96fbfb956fbaceb4566b9f1f857c892b4ff00571f916000000629fc4cca6197c4c083cf78b38bae29de56b2b39ce9d1a2f92a5486cf9bbacf63d08f23d7b47ab4b52d5294b9bfb4d473ddf6ce534456bffaeafaacff00eb0b8ebdee25fe673e96a6925ed6ff00deefcd55b3aad4e117755635637928a4b78cb73970e12a4e0a9caee4dfa2dc6d74db46e2377c61a1d4a357db4685573a8e2f2a0ba659c0e22b882bdbea91926bda548bff0068d970fe96b876eeb5cdbc9d5f6b4654a51a8b3db6c1a3d3ac2f2fea5c42fe83a54da6b2bab7962eac58d5f0ddd455fb834f92728a8bfaa3e8cd15ca8d4a109e71ccb7fa33c36ef45aba6db5196951f6b5a1517bb530d63aff0013dab852d3886e6d6d6ef58950a317152f61087bdd36dc7d25773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d6eb7abdbe85a3dcea375251a7460e586fe27d92f5606838f38d6870ae98e34e5195fd658a507fb3fe27e87cb7adea75efef2adc55a929d59c9b94a4f2db66cb89f892e75bd46bde5c5572a95a59f48af2475b97bc9ca4fa0471a692ddf531b6bb13393948a770273932535b64a45651961e410688e85c802b97e439b72c432a8d919ca046488e5e9ba9de6917f4af6c2e2742e29bcc650783e9cf0d7c51b4e2fb58d8df4a14357a6bde8b78557d63ebe87cb065b5bbaf63754ee6d6aca956a6f9a1383c34c11f75e493cbbc30f146871550a5a56a5250d5e9c3e27b2af8eebd7a1ea21a00000000000000000000000000000000000000000000000071ef7fb956fbaceb4765bdfee55beeb3ad159ae6d2de944b94a3fa945c00000185f566630770070eff4cb4d4a9f2dcd2526ba496cd7d4e6020d1ae13d2d2c7b39ff00b44ae13d27afb1967efb37600d37fd15d27bdbc9ff00aeff00cc7fd15d1bbda37ff792ff00337200d5db70ee95695a35a8da454e3d1b93963f16774a7bd283f4475f37f6cf36d4dfa058ca000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008c9f3e78d9c6caf351868165593a16cf9abb8bda53f2fa1ea1e23f1853e11e1bab52135f6eaeb92de3dd3fdefa1f265cd7a9737352b559394e6dca4df76c25562e55249bdd91732515c8bb1968c7960ea35f238552596118dbc825f4233b81786c5d3ee8c68ba02f9ca1e45182aae195c34fa8c904b28fa96cbc1011007980ae458df5c69b7b46f2d2aca957a325284e3b34d1f59f86fc776fc6ba146739461a8d04a3714b3dff00797a33e44377c29c4f7bc25af50d4ece6f3078a90ced383ea981f6b834fc3bc4165c4da25bea963514e9558ee93de32ee9faa3701400000000000000000000000000000000000000000001c7bdfee55beeb3ad1d9af7fb956fbaceb2566b9b49fe891731d0fd523200000066033be8cc00000400000000037964f3694fe468cdce9ef3691f4616396000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000149ce34e129cda8c62b2dbec8b9d03c58e255a1f0ad4b6a55396e6f13a71c3dd47bbfe5f503c2fc4ee29a9c4bc517156336ed68b74e8c5f4c2ee7478c79a6979996e26e7279ead93423d67e41956e6588722e88e0bdce456799bdcc00549c0e84a0096e587727aa02324a18252d8a19c8c0c24c9ec1552321f5044000140c6c3007a07859e2055e0ed6a36f75372d2ae64a35a3fb8ff797f33eaca15e95d50a75e8ce33a5522a51945e534cf85164f78f0478fa3183e1ad56ed2dff00b1caa3fc639fe015ef208c920000000000000000000000000000000000000000060bdfee55beeb3ac9d9af7fb956fbaceb2566b976ff00aafa994c36df03f99980000087f0b3099a5f0b30900000000000000dbe98f36cfef1a8369a5bfd1cd793416360000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c756ac28529d5a8d46108b949bec91f2c7895c552e24e23af5213cdb52fd1d25fe15dfea7ae78c7c57fd4dc3eb4ab6a98babd5ef72bc38d35d7f17fccf9b2b49b7808c0d6648e4544e9d1515b37d48a14f9eb2cf444dc4b32038725b98f1833b4629adc231b412c16c129010912490d9545d89213d8640996c406f255b20923cc008760005492424c9008bd3ab528d48d4a53709c5e6328bdd3281bc81f4c7847e25c389ace3a36ab552d568c7dc9cbfd3457f347ac64f8574fbfb9d2efe95ed9d6951b8a335284a3d9a793eb4f0eb8f6d38db458cf9a34f50a292b8a39eff00bcbd185776000000000000000000000000000000000000000182f3fb956fbaceb2766bcfee55beeb3ac959ae4db7497ccce71ad9ef239200000567f0b311967f0988800000000000006cb4b7fac5f235a6c34c7fa49af40368000d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061af5e142dea57a8f14e9c5ce4fd12c998f35f197897fa9784bec14278bad424e9ac75505bc9fa7603c2b8db892af13f14de6a139e69b938515fbb04f64bcbcfea7599b4e4f62d396ff003584618c5ce6a3dd865cda09428393eace34fde91c9aeb929a81c56f957cc2a8d14922cdee32518b019764045082e0084b627043632150c868978c1044402480033b00c2a5324aa27b01665704e770936c086b636dc35c437fc2facd1d4f4eaae1569bf7a3da71ee9fa1ae512395ae9ff981f67708f13da716f0fdbea96ad2e758a94f3bc27dd1bf3e5bf0838d25c35c471b1b9a98d3ef5a854cbda13ed2ff0033ea34f2b282a40000000000000000000000000000000000060bcfee55beeb3ac9d9aeff00b9d6fbaceb2566b35b7c6d7a1ca38b6ffacfa1ca000002b3f84c464a9d0c64000000000000039ba67f7897dd38472f4e7fdabe680dc80034000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000086f0b2cf95fc54e227c41c6975c92fecd68becf4974e8f77f8e7e983dfbc42e20ffa37c1b7b79169579c7d8d1cacae6979fd327c9d55f349c9bcb6f2dbeefcc0e2cf2ccd6b4b3572fa24527b26ce65ba8aa2bf79a6f21960bb92f6984ce349bd9192a6f2cbea71e5d4aa9c90d956c3d80920ae760d813d8109802590c8cb232c087d412477220000a76c8ea185d3204a250cec5963cc084b2648c36212464401437224bf22fb8e502b16d4a2e3d56ebd0faa7c27e2dffa4dc234a171539afecbf435b3d6497c32f5cac7d727cabdd9df3c27e277c37c656eab54e5b3bb6a8d6cbd967a3fa303ead0320280000000000000000000000000000000305dff0073abf759d64ecd77fdceafdd67592a565a1fad472ce151daac4e684000052a7431992a7631900000000000000e4d8bc5dc0e319ec9e2ee9fcc0de800340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061b9ad1b6b6ab5a58e5a707279f44078178e5c43f6cd72df45a72cd3b38f3d45d33397f1db1f89e47391b1e22d527abebb7d7f36dfb7ad29acbce167634f3904da79b9b6eef639328ca9c1454b0b1ba38749e2aa6d65239756acaa664d61a5b01c593fae0c7d592e5d7b98f99e4a259593dc733225bb0200099112892ac00c8009b5d1d8827b10500464900c2e812c93868092c882624d8b232c564a2464486d25df4944f72113d4b2adf4a492ce095274dc6717ba7941af41522d25b2c147d73e1cf104789382ec2f253e6af082a55b7cbe68ed9faf5fa9db4f07fe8f9abb53d4b499cbdd6a35a0bd7a3fcb07bc1140000000000000000000000000000000186ebfbad5fbaceb0767bafeeb57eeb3ac159ab53fd645fa9ce3811da4be673c00000a54ec632f53a9420000000000000196d9e2e69fccc464a3b5687de4076003b00d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000757f10af1d8f026ad5a2f13741c62fd59da0e8de2d67ff4797d8eee280f95aa49e5bcf738f36d996a37938f26195a9be59af3397397344e145ae6394b7874038f2eafc8c4d232c934cc6d0119440c0cee01904adda4965be8919295a57af514295294e4fa24817d31641b4a7c33abd49287d92506fbcfdd5f89cda3c19aa4ab72d5f654a3de4e6a5fc0d4c6b179709dd75e2523b72e059ade5a85392f28c1a3930e09b38c1735dd7e6f251582ce3c98be471cfb749c3187da2cf44870be950a6a32a0e535d66e5d4e653d274c85350fb0dbb4bf69d34dfe25fe2b5cef9584797f24a5d22dfa2593246dae27b4285493f25167ab50a342d36b6a508a7d71148cee7cef328473e782ce1ff59be64fa8f2b8687aacd67fabaed2f3f632c7f039b4384f57af1e68d0515fe3928bfc19e91cd1c3e58e195526ba451bfe28c5f372fa8e8747833519cb96ace952f593cff0332e06bb8cbfbe5092ff000c65fe4778f68d2da293f32aa52fdf917f8b172be5e75d6a9704dbf22e7baadcddf14d63f8978f06db4a5caee6b7d208ec69cbf7d9653e5df3b97f8f167fe9e474fd4383ead084a76957da6165426b1293f43acce3286d24d3e8d33d52751d47ef743ab71469715fdba8c572bdaaa8f54fb339e7c7af71eae0f22e5759ba9ecd112cba6c97849e084f3038ededd3bff82f7b0b3f112d549f2aaf09d24bcdb3ea63e41f0de5cbe22686df4fb544faf8100005000000000000000000000000000061bafeeb57eeb3ac1d9eebfbad5fbaceb0566a57539cba1c039f1f857c80900018aa7c454b4fe22a400000000000002d078a917ea5494f0c0ec51f8512560f308fc8b0680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a7f89d6cee7c3ed55477e4a7cff0081dc0e0ead671d4349bbb49acaad4a51c79ec07c51533968e34ba9b0d4adaa59df57b6acb1528d474e49f9a7867025b84aac7a9cd83cc136705279c9caa3352d9822953a9899c9ac92471fb94aa3325a5a54bcbca7429af7a6f1b947d4ec3c214154bfab51f5841ae9e7b0c66ee98cf2f8e3b6ff004fe1ab0b5a7172a4aad55f14a7f0b7f2e983750853853508a8a82e914b097d0ace5eeec5526e19cf73d53191f2b2cf2cbddac8f97396f2532fb772bba254b0563dac986f72004491d00c145a2cb737431f400d3327d77273ea614f72c984d3267d51053232c1a64c90de0aa792ad8d8b37dcc37108d7b5ab4a7bc671e5659b7d0af3f6335bc7d5dbcdabd39d0ab3a735892786be4638b7ca6cb8829fb3d62b61e79b137f37b9ad6f0d1e4bde9f631bbc65fdbb1f01d45478e347a92e91b98e4fb11743e29d06b7d9f5eb2aa9e396b41e7ea7dab1de2be41a48002800000000000000000000000000030dd7f75abf759d60ecf75fdd6afdd67582b3439d0f823f238273697ea6205c000629fc4ca932f8990400000000000000001d828bcd183f43218ad9e6da9bf4328680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f2d78c5c3ff00d4bc6f5eb422a36f7abdbc30b6cbd9fd7397f53cde68fa8fc66e1896bbc22ef2de1cd7560dd458eae0fe24bd7647cbd516f95dc2562e6dfa992138ada39726f6f23135b92a4d6e92c0472a5ef44e3bca6ccd4e5cd1c18aaa6a40533b9da38327cb77731f382efea755c9bae16a9c9ad46397ef424beb8d8d637db9f2cde15dea52cd4613d9fccc4a5fa47e85f3b3f99e97cbb19132d931291752d8ace9644e4a263205f23263c9391b34be7219419032649c98d489e66058648c84c26966d90d95722adec1625cf3929cdb6436533978c9164757e28a515734a69a6e70cbc7e08d07483f99da389e9afb351ab9f79cdc7e983abb5eee3ccf2e73fb3eb70ddf1b2db4fd8dd52a9fb9252fc19f69e8b77f6ed0ec2ef39f6d6f09fe314cf8a92cc33e47d4be106b8b58e05b6a52966b59b7427ea9747f8608e91e80000a0000000000000000000000000000c375fddaa7dd67583b3dd7f76a9f759d60acd0e6507fa2470ce5dbbfd1fd40ca00030cbe26412fab208000000000000000037966f3694fe4720e3583cdac4e486800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018ea528d5a52a735cd09c5c64bcd33e4cf133845f09f15d6b7a69fd92be6b5bbff0b7d3e8f2bf03eb73cf3c5ee165c43c233b8a30e6bbb1cd5a785bb8fed2fe0fe807ca6d155d7aa33d48e1b4d6f9dd79187187d032cd4dfbc925f326b472b263875e8d19e5ef537b0570b3839ba45754355b7a8db494d67e47066b0cbd1972d68bf5e83ed2cdcaf4c938a8a6ba90a7b7d4e3d3aeabd2a755631520a5b3ce362ca5b9ea95f2ee3ab639317b96523029ec5949b2b1632a91393129174c2696cee59330b789174f62a69906de451364f30174975192a9e4b2025078ec467055bd8039264396c564ca391174b4a5b14725e655cb263e7f7911646a78939a5694df68cb27574f28eddaf7bda556f3cc7f89d3d660b6e870cff27d2f1ff0726824d34d1e93e0e714ff0050f133d3ee24a3697f8836ff00667fb2fe479a51a9c8d37ba6cd9c28ce0e35694b0e2f9a2d7679cec65dba7da39074bf0df8b21c51c334bda4d7dbad52a55e3ddf94beabf34cee845000000000000000000000000000061b9feed53eeb3ac1da2e7fbbd4fbaceae54a1cab6f81fcce29c9b6e8d046700798183b80080000000000000000371a73cdaaf46ce61c1d35ff00677f78e705800028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000639d38d5a72a73598c934d3ee999001f1e71e680f87f8c350b1e5c53555ce967a38cb7ff0087d0eaae3bb3dd7c7fd2e10bbd3352843deab0952a8fcf970d7f16786c93cb0888bdf739708a68e24709ae99ff0081b2a30e68a7b01aaaf1e59bf99833bb7e473f51a789ecb6381bff0020aee1a0dcaa9a7aa7b669c9ac2f2ea6cdcb123ac70ed7e5ad529b59e68aebe876094f1fc0ef8df4f07363ac9cb8cb63244e1c6a7a996353d4d6dc6c72532548c0a7b978cb25674cb9cb2c8a2e88c88acd4e0944ac12544af91645490836524cbb31c8118dbdca3dfb9697531c9ec65b8ac9e0c6dedcde44c998a6fdc68351c4d667cda654f9afe2753ea9bf53b5ea31e7d32b2ff0b67528cb6387276f778ff8ac9f23f466f34dad171f65369a7f03348b745adebca8cdc72d45f4c7630ed5df7853896af07f1253d428e656f2c42e29a7f147fcd1f4ee97aa5a6afa751beb2aaaad0ab1e68c97f07ea7c750afccfd9cdadff33bc7871c7971c21aaab3bb9ba9a4d7962a45bfd53ed35fcc2c7d360c546b53b8a30ad4a4a74e71528c93d9a6650a000000000000000000000000c571fddaa7dd6757f33b45c7f76a9f759d5ca943916dd6471ccf6cfdf611c921fc2c9225f0b0308008000000000000000036ba5bfd0cd7a9cf35da5bf72a2f546c42c000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e5be3ad92afc1346e14333a1731c3f24d3cff23e69926deecfa9bc6778f0fabfff00761fccf97258cec063a6939619b3b64bd945e4d6c5e25d77cf53616bb5bac790460d4619594cd57668dcdce2507f234f2d9bdc26dc9d3ab7d9ef29d47f0a96e76cabb4729e4e929e2a653d8edb46b7b5b0a53f38afcb63a61fa70e79bf6cf19ec648cce3c37332ea7479ec6784f739107938905b9caa7d0b1ceb3c59997530c4cd1ec698abf60990c762b2b2190ba00894f628f0597421c40c4e2dbd8c72833918c186719393c742352b8b53646194b668e5b515d7060aae29ec65d238b789cb4ead05f1383474c5b2c1dd2ab52a724bba3a6568fb2b89c7ca4d1c793bdbd7c1d58b41bc1138e7a955268bc7de4cc3d3a64a159bc41f55f09b84956b78d48fc4b697ccebfba92f34f6375a75ca7169c7dde928f6f9847af784fe232d3e74f87b57acfecf2962dab4ded07fbadf9791eeea4a4935ba7dd1f1a55b594fdea7baceccf66f0b3c4775654b8775bad8ac972db579bf8bfc0df9f916c5dbd9c0c82280000000000000000000315c7f76a9f759d5ced171fddaa7dd67572a50cd6ffacfa184c943f5a832e6112f8592567f0b0ac400200000000000000000d8e94f7a88d99abd2ff5935e86d02c000140000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e79e347ff000fabff00f761fccf9725bbd8fa87c6a9c61e1f554e493956825ebd4f981ee12b1e3739d6cdba0d238784defb1ceb4928c73d501c6a955b8bc9aea8b1b9b3bca6e9d4e74bdc91aea9d137d72118f1949af337da4d4e7b471ef17d3c91a38bd8d968f3e5b99433b4a39358f6c724de2ddc1f43344c34965b39113ac78eb253ee72699861d4e4464fc8d39d648f533c7b18e18514df52fce91a62aec828eb28b0abbe98f5c0dc4f8d65c6db92517b4ac9aa317cebaa3246dae1c62dca31df74ff00e08a9a4394575697cd94752387ef278f53932d3e13de752594b66b632ab4a2a4a5ecd39258ce5ff0e83d9e9acf68e69b49bc7917cd69d2528529d458ecb26d634e1097342118bf38ac0926fbb6fcd9354f9c9d34df64af561cca384deeb387f810f4e4b994ea36b1dbafe66de4b6314a234b391ada7a7d270719664ff79bc3fc8e93aed83b2d425b621517347fe7e67a1ca19468789ed1d6d21d58c539d296765be3cbe873e4c7d3d1e3f2eb27472c9b44631b379c7520e0f7caccb124b1d4c96f3f635949a6e3fb4bcd64c346589619ca50528e441bfb1b94a4a94fde84b1cb37d0d856b08d5519dbcdaab15cdccb6795e475ab3ab28c7d86ee49f353fe68de5adfca54e32e66a705dfb947bbf865c72f5cb2fea9d4aa7feb3b68e14a5b7b68aeff0033d1cf9328dfd7b2bea1a958cdd3baa12538ca2f7f97d4fa438378a2df8b341a57d49c5564b96bd35fb13ee458ec6000a0000000000000000c571fddaa7dd67573b4d7fd454fbaceac54a17a2ff4b1f9942d4f6a91f9865ce2b3f84b15a9f085620010000000000000000073b4b7fa792ff09b6351a66d70fee9b70b0000500000000000000000000000000000000000000000000010da4b2d94f6d4bffa90ff00690190145569cba4e2fe4cb800000000000000000000000000000000000000000000000000000000000000000000000ab6926dec97503c3fc7dd653a9a768d09bd93af563f3da3fc24786b5ea76bf1075a7aef1a6a37799727b574e09bce231db6faa7f89d5b956425519c8a33e5a3f5dcc6e2b1d088ef09a039d5392e2de51f4d8d1d58b4daf266c2d6bf2be57d8c35e9e6bc9aeeb2070e0f6ce3a9ccd3df2de45fd0e12db1e672a8733ab0e54dbc971ac65d3b2527d7a60caaa637c136d62f7e79369afd9ea8e7d2b1a2d2e7a6a4d3d9f73b495e2cac8e352a8a7b4777d92dce6dbd1a959354e0e4d76c6e72a952a5069aa714d74691cb8efbbce7ccdc8e39671c18d9dc4e39492c3e927867221a7be74e75135dd63a7d4e5671d1e3e414b0f665d3173618d8d08c5c67194f3d1c9e31f819236f4924bd9c36e99597f897e66fa9192c8cdcad65cc9cb99e24fa7bc44a524f78afa15ec4c65ca9e0ac9ed57eecbf02c9e7a12aacf95acf52a963a016e84ae992329b21bebe811325b189c7266ea8aa5dc0e3ca18460ab4956a35294e398ce3869f74732a45e0c3cad3ee4b36de396aede5f7b6bf65bcab425872849c76fe2719c5a3b37165a7b1d4217114f96ac7127db99797d0eb8f19fa1e3ca6abec71e5f2c65635b33996f35258670f2b264a32c496091a736a274e7ed21f145e51caa772bda2ab15852ddfccc31de2b26251f672e4fd97b955b3fb54a2d63a64ed5e1cf184b85b8a29ba951fd82e9aa75e3d967a4be8ce8caae629321b4b7eeba151f6dc271a908ce0d38c9269aee8b9e75e0ff14ffd20e138da579e6eec1fb2965ef28fecbfc0f452340000000000000000c75ff5153eeb3ab1da6bfea2a7dd67562a5098bc497cc8257541973ca54e85d742953b05630010000000000000000072f4e78ba5f23726974ffef71fa9ba0b000050000000000000000000000000019000ab9c63f1492f9b30caf28c7f6b2fc9203900e14eff00f721f566095d5697ed63e480d9b924b2de118a575463d669fcb7358e4e4f326dbf520239b3bf5fb106fd59867775a7fb5cabd0c00096dc9e5b6df9b64000098ca51f864d7c9e080065573592f8d99a37d35f1453f91c4006c237d4dfc49c4cd0af4a7d268d4803729a7d0934f1a938fc326bea658ddd68f569fcd056cc1c285ffefc3f03346ee94bbb5f303382aa71974927f52c00000000000000000000000000000000000000000000000000d17186a4b49e11d52fb19f674258c79bf77f99bd3ccbc6fd455a70446da351c6a5cdc4572afda8a4dbfe407cdd565cd36deedeefeacaaea437db6098167d08a4f7c60396dd050f7aa2d8238f53dcaaf1e6594b9eac1b2f770e5a871fabf26518671c49e7a99a84f9249fa915b12a8e4ba3792b4966a61f908ce51dead6a7b6b1a3512d9c7f3395466fa1a9e1caaab594e977a72fc13ff966de9ac546b07a31f71f3b926ad8e543a99e1d0c3032c7636f3d5db08ae72c9c845d125548b64a89cec17423b0cf6c0174c9e6dcaa63602fcc98fdb2b80fae422dcdd86d9455344ecc03dd6e53b966b6ea4288568b89ed2371a3ceaf2e6547124fc9773a0b5b67ccf55ad4a1736b3a151654e2e2f1ea797d7a4e856a96f3f8e9c9c72bcd1e6e69ef6fa5e2656e3638cd2f2262f0c32b9dce4f5363427986ecb56de395d5791c4a3531b1ca53cec5561c90e4deccab93594dee5399b28f44f07b885e8bc736f46736adefbf4134ded97f0fe67d4f93e1ab5b99da5dd1b8a73e5a94e6a517e4d1f6a689a84756d0ec7508e3173421576ed95920d8800280000000000031d6fd4cfeeb3ab1da6b7ea67f759d5bcca9400065cf8bf7514a9d516a7bc23f22b53a855000400000000000000001c8b17fdae99bc34369b5d53f99be0b00005000000000000018e55a9c3e29a46195f525f0a7203940d7cafa6fe18a5f998675eacfe29b03672a908fc524be6cc52bca31e8dcbe48d6f5011cb95f49fc104bd5ee6195cd59f59b4bc96c62004b6dbcb7964000000000000000000000000000000000000000136ba192371563d26cc600e546fa6be28a7f2d8cd1bea6d2e65289af006da35e94fa4d193aa34a5a33947e1935f50adc03591bcad1eb252f9a3346ff00a7343ea80e6838f1bca32eb2717e4d19a338cfe1927f2605800000000000000000000000000000000f0bfe90379cd5b47b25d611a955fd70bf933dd0f9d7c7ba8df1859535daca32ff007a407943e84225f40a2f3d022658c22f6897da22524bdd45ad73f698b0335fd2c2e6c1ae94766d791bcbc8e6dd777b9a9e55f984609ace1e3b1893e5a89f639328bc35838d24f20760e1db8542f7d9bce2aac1da79796594741a555d0ad4aae7a34cf40854856b78548f4924f1e477c2fd3c3e44f7b65832fcc618bc17cec75792c654f72c624cca9a61164b62c5762721123ea10c004cb67d5951cc54ab1395829927204928858c0c816c919c2194475e84557a3f23a1f13d9ab6d56538a4a35a2a585dbfe393be4b126923aef18db7b4b0a55e29669cb12f379ffc8e7c9378ede9f172b3391d1e5e8637d4c8d7531f7c9e67d25e9cb0fa9cc8b585e67017c5b1caa6f7dcaa554d49ed930f4caf233d49f2a6d756bfe271e5259d9e4a2cfa63b1f567831a8ff58786d61193ccede53a2fe4a4f1f960f945bcac1f44ff00479bae7e1ad52d9c9b942eb992f24e2bf9907b300028000000000003157dadea7dd67573b45c7f76a9f759d5cacd00011cda5bd25f222a7c4287ea91153e20aa8008000000000000000032db6d734fef1bf3436ab3734fef1bd6d2ebb058906195d518feda7f2dcc32bf8af860dfcc2b98464d74af2acba351f9186539cfe2937f3606ce5714a1d66be86195f417c316ff002380023932bdab2f871130caad49fc536ca0000000000000000000000000000000000000000000000000000000000000000000000000000003246bd583da6febb99a37b517c4a3238a00e7c6fe0fe28c97e66685c529f49acf9335400dd03530ad529fc3278f2ec72a9df45ed5163d5740ae602b19292cc5a6bd0b0000000000000000003e72f1e7ff00e756bff6087fe399f469f3978f3fff0039b5ff00b043ff001cc0f2a6f72e9989f52f92d44d4cb8a268be5aa9e7a1497c2ca5278a9b67a906debcd3b7c77ee6ae4d2f91c9a926e187d0e249acb0224dbcf91c79f43367260a9fcc6b632e79e92c3dd1dcf87ebfda3498a78fd1be55befe7fcce9145e6323b1f09dc3f697145eee4b9935db1ff99d30bede7e6c7785ff001d9932e9989bdcb26777cf654f73245ee614f72e9ee5659b23e657d49efd42696e84e4a2c92134b6422113859ea04a4c9643c8c80248c802721320008fc471754a0ae74db8a4d26dd3786fb35b9c87b6e467394d67e62cf4d6175657953788bcf5ee6366c758a1f66d4abc3093cb6b1d37ff00ccd7b5ee2678f5eec7d9977258c79dccf096e607d4bc2422b91565ee671938d26f67b6e8cede5672609ef8db00464f7bfe8e737c9ad43b7b8cf033df3fa3941fb2d6aa76e68440f78000500000000000062b8feed53eeb3ab9da2e3fbb54fbaceae54a00032e5dbfeabea27f1116df03f9897c4c8a80000009516fa2c8100baa527e85d515ddb0308c3f2390a115d8b01815393ec5951f36650155841424a4b395d1977294be2937f36400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f4eace93cc5e3cd799cfa1751abb3f765e5e66b4e35f5fd0d36dd5cdcd554e0a515ccfcdbc25f981d8c1584b9e11979ac960a0000000000001f39f8f71ffdb6b4979d8c17fbf33e8c3e7df1fa835c47a757c3f7adb973f293ff00303c6d975821adc2c29045bf659860da9f533369e7b1c64f13fa84ae6f366271aafc5b7919612cc4c557690562efe852584de099331cb67d40bc1f5c1b5d16e634753a39972c5bc335107ba391425c9754a5da334ff3358b194dc7a1c9e24c4258651cf9f12e9ccb25a2b647a1f2ec6552df25d330a7be0ba6566b2a658c592c9951923d4b18d3dcbe40b676213c0446422c9ee1bdca809dad9192b9c1281a5b232543780ba1b299c3c643651b0ae9dc5f4b9752a7592c4670c7cdaffcd1d76593b9715d08d4b08d6797384b67e9ff00383a62cb8b3cb9cd64fa9c196f09fe2ac45e372bccc296e65d99dcfdc30c9e592fa752ad804ba9f497f477a1ecf84b52aee38f6b79b3f4508afe27cd99efe47d65e0a58ab3f0cec65c9cb3af3a95259ef993c7e580af4500000000000000018ae3fbb54fbaceae767b9feed53eeb3aec685493f871df72a5620726368ff6a497a23246da9aea9cbe6c231db3da48bb8c9bce1e1f733462a3f0a4be4b04906054a4fae117f62b1d59900555422bb1600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a51845ca72518aeadbd90120e9faff0089dc2dc3ee54ebea11af7116d3a36fefc93f5c743ca788bc72d63518ce868b421a7526b1ed1fbf55af9f45f34b207b4f12f17e8bc2769edf55bb8c252f828c3dea93f947f9f43c2350e3ad538ff8d74ab692fb3d846f20e95ac5e7f696f2f3679e5d5edcdfdd54b8baaf52bd7a8f32a9526e5293f56cf5ff0007bc35d46f358b4e25bf83a163425cf4a338e2559e1ae9e5b947d229612489008a0000000000001e27fd20addcad744af18ed19d58ca5fece3f99ed879a78df68ee780d568c732a1730937e5169e7f901f333ce47713ea4302cb38304962794664cc557e2c8464a6cc759ee841ace3256af5030cb72ad1243e804c5e1a2f9794f3d0c49bc9973eeee58cd8eff6155dc69946b4d2cca09ff2fe472212ca66af42ace7a2d24ff673146c294b299e8c7a7cee49fdab227b991330a9175d4ae759913931c5ec5cacd5d164ca762532a32648cee5771f508b65e0752b9d88cb02e33e45323215932437b14c9190896ca37b872d8ae5770d383ac41d6d3eb53c7c51dbfe7e879f37cb36bb64f46baf7a9b5bb8b479f5ed274eeea45ac6258387247bfc5beb4e3bf8995c3ee5a49e7243396de94af261a58c90ba86f7482a610e79c611596de17a9f6d709d84b4ae10d22c6a53e4a946d29c271f2972acfe67c97e1de84f8838eb4ab174dce97b6552aaff0004777f91f67258492ec1520000000001c6bbadeca092925293c2f302f56e69d2d9bccbc91c49ded497c29451c601169549cdfbd26ca80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a9d5f89f45d0a94aa6a3a95bd049f2b8b96659c67185b9e6bae78f3a7508b868d6156e2787fa4aef9629fc9672bf003d81bc2cbe875cd738ef87387a9b95f6a54bda632a9536a53976d91f3a6bbe277146b9292ada8cade8b7954adfdc51faf5fcce9ee6e4db6e52937bb6ca3dc75ef1e9a93a7a169ab09ed5ae9f55e915d1e4f2dd738df88b881ca3a8ead5ead26b95d383e4835eb15b32742e07e25e249a8e9ba55c4e1b66a4972c17ab6cf57e1cfe8ed525c9578875351f3a16bbbff69ff91078442352acd429c65394ba452cb677be16f08f8a389e11af0b65676ade3dadc6df82ee7d29a0787dc33c3708fd834aa1ed57fa5aab9e79f3cbe9f43b4612415e53c23e06e85a0d6a777a9d496a7750c34a6b14e2feef7fae4f5484234e0a104a318ac24961245c0000000000000000003ad71f583d4f81b57b58acc9d0725f4dff0091d94c177415cd9d7a0fa55a7287e2b007c4735b95673f57b5fb16af776ad35ecabce0963a24ce0b5b8108c359998c35ba308c719fa133964c49966c0acb623b12da2ad8119c19e2b3038efa19e9bf70b12bb4f0e5652d3274bbc259fc4dbd37cb14faf33c1a0e1978a375bf78ff00337a9e29c3ef1df1e9e0e59fdab3e3deea58c79f78ba669c59174c191189174cacd644c64a9298656cb055c90e60249c95c956f70abe46e53213069720ab7ea4650349651f5264f08ae72c2c63adf033a46b94f96f5bc6d249e7d4ee95a5bb475ce21a19a10acb1b3c3faf439f274f578f7593ad3cf40c772b23ccf6a5a212cbc77fe61b32da5b56bcbca36b42329d5ad3508462b2db6695eebfd1e3879b96a1c435a92c6150a2dadf3fb4d7f03df8d07076814f867856c34a825cd469af68d7ed4def27f89bf0a000000008479c78cb56fac784adf54d3ee276f5ecaea35154875594e3df67d7b9e906938ab438712f0d5f69336a3f68a6d464fb496f17f8e00f3ae0af1634ce20a34ad3569d2b0d4b68e64f14aabff0b7d1e7b3fa367a3753e4fe28e0ed67842fbecfaa506a32caa75a1bc27f27e7e86c786bc49e21e1a8c28d0ba5756697f76b94e718ad96cfac7a744f1e811f4f83a270bf8ada0f10a8d1b997f56de4b6f675e69c1bf28cf65f8a477b4d349a69a7d180000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000061b9bbb7b3a2eadd57a5469aeb3a93514beace89aef8c3c31a44650b6ad3bfaeb2b928ac24d79b7b7e1903d04e16a1abe9da551955bfbda16f08c5c9fb49a4f1e8bab3e7ad7fc6de22d49ba7a7429e9b45e1a70f7ea2f35ccf6c7d0f3dbdd4ef752ad2ab7b7356e26db966a4dcb77d7e407d09aff008e1a069dcf4f4ba35752ac9a49afd1d369f7e66b3f91e5daf78bdc55ad39421730b0b7926bd9db47198bf36f2f3f2c1d22d6cef351aea85a5bd5b8aafa42941c9fe08f45e1df03b8ab59e4ab794e9e9b6ef0f35de64d7a457f3680f37af755ae6acaad7ab3ab5658e69ce4e527f36ce7695a06adaed68d1d2b4eb8ba949e17b383c67d5f45f89f4a70ef815c2fa3f254be55754aebafb67cb0cf9a8aff0033d26cf4fb3d3e8aa5676b46de9afd9a5051fe015f38f0e7f47cd6eff92b6b77b474ea2f7f6705ed2a7c9f44bf167ae70f7845c23c3bc93a7a7fdb2e23d2b5dbe77f86d1fc8ef800c54a953a34a34e9423084562318c7097c919700000000000000000000000000000001f26789b65f60f10b56a49350954538e7d527fc7274f7d4f57f1e74f950e2eb5bd54f14ee2d9454bce516f3f9347944a2d01431554dc5994a4fa308e16259e8592624f70981186461974558153353da0cc5dccb0f85952b77c3b349d78e7796307616fdc8edd2596756d0a58ab2f91d9e12ca3b61d3c5cd3fb33a965e4c91c9862654f636e0c8999133026644c3359132725324737a95171929ccbccaf3fa8565cfa956de4a3911cc434bf70d98f98872f506997288ce0c595e61c9602e991c97994735d8c6e7828ea05915af2e69ec70357a6ab584e2b7925947225359305c34e0d3e8d60cdf71d70f59474b795b60abeb832d7c2af24ba278313de479b4f78dfe1e67b2f811c152d4f597c47794f36b66f1432b6954f3fa1e69c2dc3b79c53c416ba4d9439a75a7ef4b1b423de4fd11f65681a1da70e6896da5d941468d0825f79f76fd5955b500eb7c6fa96afa4f095edf6876eabdfd18f3420e0e7b777cab77f20aec871eeaf2d6c68bad75734a8525b73d59a8afc59f325e71df8b1af51a55eded754a745c7319d8d84e319af3ca4f28f3ed4aeb59a7775a86ab52f2171cdcd5695c392926f7cb4fa01f5bea1e24f08e995fd85c6b541d4e5e6fd1275163e714d1a1b8f1bf84a8d494612baaa977853d9fe2d1f33e9361a9eb576edb4db5af775945cdd3a31cb4ba37f8ff133de691ace9d297dbf4abcb74babab6f282fc5a08fa3178ebc2f9dedef92f374d7f99cdb4f197846e658a9735a82f3a94de3f2c9f2daad16f0db4d799963269e7aaf5ee07d7b0d638578b2d256bf6bb1bda75331f65524b9b7db64f73cbb8d7c0c52f6b7dc3125ddbb39bffc32fe4cf19a5733a5353a739466ba34f0cee9c39e28f1270fca34e178eead57fa1b8f7b6f47d81b747beb2bad2ef2a5adedbd5b7af0c7346a4795fe7d8ed5c29e266bbc33cb42357ed764bff96af96a2bbf2beb1fe1e87a7478af81bc4eb5a763c43423a7ea1fb3566d477c7ecd4f2f478c9e49c57c117dc357d5e14f377654e728aad4e39c453c7bcbb79e7a7a81ef5c2fe23e81c50a14695c7d96f5ecedabbc36ff00c2fa4b7fafa1dbcf8c2337094649b4d2d9a78c7c8f40e15f1735ad0153b5bc6b51b25b28d593e78adbe196fd16709947d1e0ebbc35c6fa1f15518bb1ba50b86b7b5ad88d55f4eff3593b11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000112928c5ca4d24bab6f63a86b7e2770a687cf0adaa53af5945b54edbf4bccfcb31ca4fe6d01dc0a55ad4a852955ad5214e9c566529c92497ab3c275ef1e6f2b394342d3e16f04fddab73ef49fce2b65f89e67acf15eb7afd4e7d4752af5faa50e66a293ed8f203e8ed77c56e15d0dce9bbefb5d78b59a76cb9bebcdd3f33ccb5cf1d356bce7a5a4da51b2a6f31f693f7e6f3d1fa7e6791e7c8ec9a07017137134e3fd59a4dc54a6fa56a91f674fd7129613035faaf116adad56954d4750af7139632a53d9e3a6cb635b1e7ab350846529378496ed9ef7c3bfd1df95c2af10ea69e1a6e85ae775e4e4f18fa1eafc3fc05c35c3304b4dd2e8c6a2587566b9a6fe6d857cc7c3de12f1771138ce1a74ad2849e3db5d7b897d3afe47ad70eff0047bd1ecd42b6b97b56f6aac374a9ae4827e59ead7e07b3e30b0ba0c01aad2787347d0a82a5a669d6f6d15d3921bfe3d4dae09000000000000000000000000000000000000000000791f8f3a5ab9e1ab2d4565cedab3a7b768c965bff00751f3c4d6dd4fafb8f74b7ac7046ab691c733a2e71f9c77fe47c815134da6b0d76028fa149bc4486cac8238f3ea4648a8b7655302f90d95c928023240ab2d1ee546cb47dabcbe4766a0f2ba9d5f48fd6c9fa1d9283c2475c1e4e6edcc5d4c89ec624cb73a36f3b264b27ea60731ce134e43915cee618cf7279f7ea534c8d91cc6373f52bce174cae5ea473989cf72ae5bf54434cfcfea5653f230b9e0afb41b5d33b9b456537830ba852553622c8c8e6639556619d4f5304e6d936dcc5967519c6bbb8e4a529792c872c2ea6a752af9f713f999cabaf1e3bad6ce5cf2727d5bc996d2d6b5edd53b6b7a72ab5aac946108acb6df431d284eb54852a71729cdf2c5456edf923e97f08fc2c870ed0a7ae6b14d4b53a91cd2a725fa94fff00d8e4f5e9bdf0b3c3fa7c17a2aad7508cb55b98a75a5d7d9aed047a18c000435958648029184611518c5462ba24b091f36f8f1c2ef4de26a7aec6acaa435178945af82518a5b7d0fa54f37f1af46feb4f0fae2e20bf4965355b3df97a35f9a03e77e04d565a1f1d6917b14e6a17118b8e71952f77af96f9fa1f65d4a34abc5aa94e134d6312593e14529d2a90ab4e4d4a0d38c9754d1f67f056ad1d738374ad4629a756845493eb98fbaf3f801d5b8a7c19e1cd7dd4ad6707a6de4b7e7a3f0b7eb1fe67897157865c45c252954ad6df69b25b2b8b74e514bcdf75f53eb7c149c21522e338a945f54d65303e1d8bcacf4f47d8c89ec7d19c73e0e699add1a979a2429d8ea1f138258a753e9d9fa9f3eea7a55f6897f52c751b69dbd7a6da7092c6de9e61971d4bf13b2e87c5d79a572dbd6cdcd9e5e6949e5af97f91d656304aea07a15df0b68bc5568f50d2aac2dab4f2e58588a977e64ba1d1755e1dd4b469bfb55197b3ced5619717eb9fa74664d3754bad2aee35ed6a72c93f7a3fb325e4fccf4ed1f5ab2e22b7e584630b951fd25bcb7f9fcd048f1ca171568558d4a53709c5f346716e2d1e9fc2be336a7a5f25b6b9096a16cb6f6ab6ad15beff00e2edd706a78af852d2dead1ab6b4ea519dccfd9c6314bd9c67d567cb3e874fd434bbed2ebba5774274e4b6e9b3f93e81a7d5ba0f14e8dc4b6fed74bbea759a599537eece1f38bdfebd3d4dc1f1ad9df5cd85c42e6d2e2746b5379855849c5a7f33d63853c6bb8b7e4b5e23a2ee29e52575452535eb28ec9fe4fe607b9035fa3ebba66bf66aeb4bbda57349adf91ef1f492ea9fccd8000000000000000000000000000000000000000000000000000000000000000000000001b4965bc2f33aeeb7c75c39c3d197dbf54a2aa47ad2a6f9e7f8203b110da4b2da4bd4f12d7bc7d82e7a5a269adf54aadc3fcd25fccf31d738ff008978879a37da9d5f64d61d2a6f921f8203e93d6fc44e17d01495deab4a756395eca8bf692cf934ba7d4f31d7bc7caf5232a5a169aa9656d5ae5a6d3fbab63c5a4dc9b949b6fcdee722cf4fbcd46bc6859db55af566f118538b936c2b6dae71af10f114dbd4753ad3a6e5cca9465cb08fc91a0cef9fe27a8f0f7817c53ac2855be8d3d368496735be3f972f55f53d6b877c0de15d1dc2ade539ea55d6f9aff07fb2b6607cd3a470eeb1af575474bd3ae2ea59c374e0da5f37d91ea5c3bfd1ef58bde4abaeded2b0a6fad2a7fa4a9fe5f99f45d9d8da69f6f1a1676d4a8528ac28d38a8a4be872700745e1ef09784b87792a52d3e373731c3f6d73efb4d775e47778538538a8c22a315d14561170030000000000000000000000000000000000000000000000000000295211a94e5092cc64b0d79a3e36e2ad3a7a5f136a56552294a95c4b6f4ce57e47d987ccfe3768dfd5dc6df6c845fb3bea4a797de6b67f9600f2e92ebb18df5324f63137dc830d44615d4e44965181adca0c948a96dfb0458b47a32bef6c5b748acb65a4a7ed27f23b0d17d0ebda3cbe3933710a8d3c763a63d3cfcb375b0f69861d4c9c5f6bea4aa86f6e1a723da13ed1791c6e7f525486cd33ba847b4316762b9436699b9c8e67e663ca1cc36bf164e6f52ae5bf528e58292a889b34c9cc473e0c0ea3ecc8e693ee36ba65955f231ca6df72364b77b98e552114db26da91672314a78ee71eade423d2470ea5ecb3eeac92d6f1c2d72aeae552867cfa1a2ab51d49b6df53257ad56abccba1831f339dbbaf4e186a373c2d5e9daf14e935ebce30a54eee94a729bda2b9965bfa1f6ed0af4ae6842b50a91a94a6b9a338bca68f8322a5f2c743b1d9f1a713e9f4d42df88352a704b68ab99e17c9648d3ed5c927c8d61e2ef1a583f7759a9593eaabc2353ff12783bd68ff00d21aba6a1ace934e71c61ceddb8bf9ef95f801efe0e97a0f8a3c2baff2c686a50a15a5b7b2b8f71e7d33d4ee14ead3ab1e6a738ce3e71794064383ab58c352d26f2ca71528d6a52861f9b473801f0b5fda4ecafaeacaa679edeaca9bcf9a78fe47d05fd1eb5a775c3ba8e9134f36959548b6faa9ae8be5cbf99e67e30690b47f11af7962a34eee2abc125b61ecdfe299cbf03756feacf10a9db4b2e17b4a547ae127f127feebfc40faa06000230755e36e07d3b8cf4b950af054aee0bf417297bd07fe476b1803e32e20e1ed4785f55a9a76a34254e707eecbf6671ecd3359d8facb8f3826d38d34595bd44a9ddd24e56f5f1bc65e4fcd33e52bab6ad617d7165710e5af6f5254ea47ca51786bf10cb1e0cb6d735acae69d7b7a92a75a9bca927baf5f9142023d22d753b7e2ed36de351a86a56756359c338e64b6caf34f3f4c1daaad95a6a36cedaf28c2bd36b78c97fce0f10b7af5ad6e29d7a1371a90966328bdd7fe67af70c6b9475cb28b4d2af0c2ab4bba7e7f228eb3af785f37195c689579b39cdbcdf4fbacf3cbab2b9b0b995bdd519d1ab06d384e3879fa9f4adbf6cf4cf46353e1ed2b886d7d86a56b0ac92f766de271efb496eb7234f9c74cd62fb46bda777a7dd55b7af1e9284b0daf27e7ea8f60e14f1b6338d3b6e25a0e2fa2bca11d9faca1fe5f81d6f89bc20d534ee7b9d1a72beb74b3ecdbfd22f458ea79bd4a75294dc2a41c26baa6b0d7d3b01f63e9fa8d96ab690bbb0baa373427d2a529a926728f8fb45e23d57876f55de977b52dea6dcdcafdd9e3b497492f99ed1c27e3558defb3b4e21a6ad2bbc455d5359a52f9feeff0f901eb20c56f7342eede9dc5b56a75a8d48f342a53929464bcd3ee650000000000000000000000000000000000000000000000000001a9d6389f44d029b9ea7a95bdbff8653f79fd16e06d81e3faef8f5a6db7353d16c6a5dcfa2ab5bdc87e1d59e65aef8a5c55af39c67a94ed684bfd15afe8d7cb2b77f503e90d6f8c740e1e8b7a96a74294f1954f9b337f45b9e6baef8f96949ca9e87a74ab3ed56e3dd8fe1d4f079ce539b9ce4e526f2db7979223172928c536df64ba81daf5cf1238a35e728dcea7569d1967f4545f2471e4f1d7ea75494a5397349b6fbb676ee1ef0cf8af89392767a654a7425fe9ebfb90fc59eb3c3dfd1dec687256d7f50a97125bba36fee47e4df5fc02be79853a9564a34e1293f28a6cef1c3be11f177107254869f2b4b6961fb6b9f7134fba4fa9f51e89c1fc3fc394a30d2749b6b7947fd22a69d47f393ddfe26f70078d70eff47bd16c5c6aeb77956fea2eb4e1ee53ff0033d4748e1fd2742a0a8e99a7dbdac30b3ece0937f37dcdae00000000000000000000000000000000000000000000000000000000000000000003cd3c67e1b96b5c21f6da10e6b8b097b558eae1d1a5f93fa1e9662ab4a15a94e9548a94269c6517d1a7d501f0f4d26f071dec7af78a9e174386e8cb5ad2e53a96352a62ad292fd4e7a6ff00bb9c2fa9e475135b19a314b1d8c525832c8c52784f3b8831b1bbd9119dc94f73511923b7c4c4a5d8a64962d65b4d29f2c25b2c6c6c554dcd469f53964e1d9ee6c726f1be9cb39edca536fb975238d196c64e7dcdedcb4cfcc89e748e3b9e5f42536c2699bda0f699ee626bea30c1a65e71ce63f9ec1ca0bf6d034c9cfea55a4fab38f3baa54facb2fc91c4a9a84dcdaa7064dc6a615b16e31efb79982ade53a5fb59380e17370fa4be48e55be897571fe8e58f3686ed6be38ceeb055d4652da11fc4e3c9d7acf0f28ecb6bc2f85fa4aab3e491b6a3a1dad35b2cbf52cc2d66f3618f4e914ec2ad47d1c8d950d12ac92cc71f43b8c2c68d358514be48cf1a704be13538dc72f26fd3acd1e1ea724b9e1ccdf995bae0ea5554a5467ec678e9d533b5c63f532452db2ba9af8473ff00a33976f2abfd22ef4fa8e35e9b51ed25ba670b1b9ebf71468dc5374eac22e0faa92ceffc8e9dad70938fe9f4ee6926bdea52ea9fa799c73e3d7b8f670f9332f593aa35d094c54a7528c9c2a45c64b6c3d8849754f3b9cde9593c671b3f4377a471871068538bd3b56baa2a3d20a6dc7fd97b1a2e83207b0e89fd20b5bb46a1ab5950bd82eb382e49fe5b7e47a4e85e35f09eace14ee2e25a7d797ecd75eeff00b5dcf951ee51e700dbdfbc7eb1b7d474cd27882c6a53af084dd09ce9cb993525cd1e9f2678c685a8bd275fd3f514f1ec2b466f1e49eff91c186a1770b3959ab9abf66935274b9df2e57478e992b4e717952ee07dd167730bbb2a1734dfb9569c66be4d64e41e47e15f88fa2d6e1bb2d1b50bc8db5fdbaf671f6cf0aa2ecf3fe7e47acc2a46a414e12528b59524f29855c0000f9c7c45e139dedfdf6a5654d7daa15eab9c63fe9129bc7d707d1c795eac93d4af16339af3cfe2c257ceb06e716b186b669ecd7996c27dcdd71cd0b7d3388a32a4b95d787b49c574ce5acfe469154a525953482692e395866cb42d52a691aad2ba87c2bdda8bce0dee8d4cebd382cb967e463573cf250a706e4fa26b7607d1b635e35e8d3ad07984e3cd17e68dbdbcba1d4383a9dcd0e1cb1a775170a91a6bdd7d52ed93b65bbe851b9b6669f89b80f43e2ba2e5796ca1758dae697bb3faf9fd4dadbbec6c69bc448af99f8afc29d7786f9ee28c1dfd94537ed68c7de8ac7571ec747c353e8d496d9c6f93ed2c6561a4d77f53a2f15f859a1f11c6a5c5082b1be965fb5a2bdd93ff00147bfe4078270e718eb7c2d5b9f4cbd9c293799d07bd39fce2f6cfaf53daf853c62d1f5a70b5d55474ebb784a7279a337e92fd9faedea78f7147016b9c2b5e52bab7756cd37cb734b78b5db3e475552797d7e407da709c6a42338494a3259524f29af3458f94b863c40d7f8526a16574e76b9cbb5ad99d37f25dbe8d1ee1c29e2c683c46a142e66b4dbe96decabc97249ff867d3f1c01df4000000000000000000000000000000000387a8eada76914255b50bda16d4d2ce6acd473f25dc0e603cb75ef1cf87b4e73a7a5d1ada9554f692fd1d37eb97bbfc0f31d7bc63e2ad6734e8dc434fa2f2b96d561bf9c9e5fe1803e8fd575fd2744a2eaea7a85bdac576a9349bf92eacf37d7bc76d16cb9a96916b56faa2caf693f721f3f36bf03e7db9bbb8bcaceadcd7a95aa4bacaa49c9b3081deb5df16f8af5be682bdfb1507fe8ed7dcff007bafe6749ad5aadc55955af52552727bca6f2dfd59c9d3b49d4356af1a3a7d957b9a92784a941bdff91e9dc39e01f11ea9cb5755ab4b4ca2d7c32f7ea7cb1dbf10af24379a2707ebfc4555434cd32e2ba7d64a388a5e7967d33c3be0cf09683c952a5a4afee22d3f6974f9927f756d8f9e4eff0042da85ad18d1b7a34e9528eca14e2a297d101f3ef0e7f478bbadc957883518d08f7a16fbcbfda7fe47acf0ff00869c2bc3718cacf4aa352bc7fd3575ed259f359e9f43b80021452584b089c000000000000000000000000000000000000000000000000000000000000000000000000000000068b8c34fa7aaf086ad67561cea76d3715fe249b8bfc523e329d46a7284f769e19f73ca2a707192ca6b0d33e22e2ad3e7a27156a7a75451e6a17128ecf6ea35b1c19e19c79eed855977d84e4a4be86460ee8b6e984bde1279795d0d441be84f3144492ae9c8b5962ba79371179468e8a6aa2f99b8a4fccde35c738ce9e0c917b6e637529a4b3248c73baa51e935934e7a731344f32ea6b1de49fead64b43ed35e588a797e45d9f1739d78c377246096a105d1e7e48cb4b44bbb8789d36979c8dadaf0d538feb9e7d22356b372c31eda095e55a9b420f7e9926969b7b7524b136772b7d26d686f1a5152fde6b2ce62a718ad963e5fe46a617edcaf3c9d3a9db70d569e1d59c62be7966de870edad249cb337df383731696f8fc4394b38ec6a611caf3655c7a5696f47e0a508fd0e4c5d38ad97e442e5fda0d5393494b734e76dbdaedc5ad915c609c4719ced8116a5bf4db7cf99524372cba755ebe8531d7ba65ba37b7f9844c5aee9bc3c7916726d2dba32a97abc96d81b4777bf5fc8c8dc5adcabc636212cf509b6b754d0ecf5686671f67593fd6a5fc7cffe773a16a7a45de975542bd27cafe19c77523d41621ba656bd1a17949d3b88c2707fb325b1cf3e3f974f4f0f9370f57a7916ff00803b36bbc3152d1cab59c65568b79e54b78ff99d69a69e1ed83859676fa186733f71054b0c11a55ac8594d60b72918dc2b2c2a34d61e19df3843c52e21e169d3a30b8fb658a694adae1b924b3bf2beb178dbbaf43cfbb975271fe6c0faff0083bc48d0f8be842342b2b6bee5cced2b4bde4fd1fed1dcb27c2d6f73528558d4a35674ea41e6338bc34fd0f64e08f1baeac7d958f1227736ebdd8dcc57e923f7bb306df431e5facd3f65abdeafff00d24dfd5e4f43d3755b2d62ca9de69f734ee2dea2cc670793ca7c4bd5168f5b54af98b718ae58cbbb715805783f185fad4789ef2a472e109ba6937fbbb7f1cb351690a971714e8c5bcd4928c7d1b7830ce4e5272936dbdf2fab6767e01b0579c5142a4f1c9413aad3e8f1b25f3dc0ed14fc2fa16b4d56bcd4a759630e14a9aa6e2fe7979fc0ec7a1f0f695a6e2542d20ea630ea4fde93df29efb27f248dd5e4b9ac5bce7de38b652d9046f2de4f6dcda5bbe869ede5d0dadbbe851b8b77b9b4a5bc4d4dbbe9b9b4a2f622b285b3000a56a54ebd3952ad4e1529c962519aca7f34799716f835a56adcf73a34ff00abee9fbce9f5a536f3b63ac5bf9b5e87a80cbcbc01f206bfc2dacf0cdcba3aa59d4a2ba2a896612f93f5c3fc0d4c5eed6dbaee7d99796169a8db3b7bdb7a55e94b671a91ca59cff99e47c5be0952a8ea5df0dd654def2fb2d596dfeacbb7a27f881d1b85bc4dd7f86250a2abbbdb05b3b6b86de179425d63e9d97933db7853c49d078a230a31aead2fda4a56b5e49372c6ea2ff697e7e87cd3aae8f7fa35ecad750b5a96f553c72d48e32fcd767f4383ced61a934bf981f6a83e66e19f16b88b87b928d7aeb51b38edecae5b724bfc33eb9f9e57a1eb3a078c1c31acc614ee6b4b4db9961385c7c2df9292fe7803d0018adaeadef28aab6d5e956a6fa4e9cd493faa32800000000000c175796b6545d6bbb9a34292eb3ab3515f8b03383cf75cf19784f485285bdc54d46b2db96da3eee7d64f0bf0c9e65af78e7c45a8f353d2e8d0d328be928af6953fda96df82407d0f7b7f67a75075ef6ea8dbd25d67566a2bf33cf35ef1b78674b53a761edb53aeba7b25c94dff00acf7fc133e75d4356d4756aceb6a17d717551fed56a8e4ff00338607a56bde36714eaae74ec67474ca0dbc2a11ccf1e4e4ff008a48f3dbcbebbd42b3ad79735ae2abeb3ab3727f9983958c63a8546325a30727b2dcbd28a9548a96d16d26d1ed7c03a3e912d195c46c287da63395394e6b99c96d8787b203cbf4be0ed77566a56b615153e651752a7b9159f3ceff0091e87c25e115bcf56b3febcb955a129253b7a4b09ffaddd7d11e84d6db2492e87334b9726af69e95a3fc49b1de74cd174dd1e846869d6342d69a5cb8a5049b5eafabfa9b100a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000326af58d7b4ad06d5dc6a97d46d69f6f692c4a5f25d5fd0f27e24f1eade97b4a1c3f652ab2595f68b8f752f26a3dfbf5c01ed152a4295394ea494211597293c248f907c5bfb3d7f11752b8b3ad4ebd1a8d4fda5292926f1bee8c7aff1bf10f11d6e6d4752ab38f3371a707cb08fd1763ad49b6f2f206b5a69ee664938a33ca2a4b1829ecd2ef85bb08c5c8b24723c359d8c8d35b3ea4106354fd49f67ea64587d64b067a54d35eeb8e7284896b153a4d7bcfdd49ecdff0097d0e42aad2c432df99caa7a7ca5872f2dbe4732969f1c2d8dcc5cf2e491ac8d1a955ef97939f6ba2d4ad2598e33e66eed74dc25b60dad2b75492db73a4c1e7cf9ff004d5db70fd1825ed1b97a236b46ca851f829a5f433f51d0e93191e7bc9954f228acf7032dedd895093f24df4dcae627b11cdd89c258595861fc3858dc1a4e5f57b2f32e9ac2cc93c3df06349a4f1d592b0974c03d2eb09bf773be57c8ab8bc84d92de0a9b4a8938c22aa59ea5b394011254045b23255300d2f92725512fa84d27217a027c8028c5fc4b634bab70bd0d433528a8d1adbbca5b49faa3790c677594645cd34d417d499632f6de1c9961771e4f7da7dce9d59d3b8a7caff14fd53e8717992e88f5ab9d3ad2e294a95ec6328c925cb8cfe0ce99a9f0957b773a9672f6d4d36d43f6a2bf9fd0f3e5c767b8fa1c5e4639fe5dbabb7920b4a0e337169a69e304632ce6f4ff00e0ba027a0c15044f338fa04b03e6076be0be3dd57837508d5b4a9cf6d26bdadb4a5eec97f266cbc4ee3bb6e2cbe4ec23569d0a9184ea46692f79456df4793a0e1f631d459d9818d75c1e8dc096eecb4eab76f2a55a4b19fdd5dff16cf3da74bda548473ca9bc67cbe67a5594d5bd952a145a7084561ae8fcdfe23fd2bb3cb50e6b67096f99a49fe272ec5e12f91d6635e52845379fd226cec5613cc50996c6f6df6c1b6a0f746a2ddf43676efa146e683e86d28334f41f436b6ef622b9607900000003befba000d66b5c3fa5f1059ced752b4a75e124d65c7de5ea9f63c5f8b3c15beb2f6b79c3f57ed54127276f51e2a259ecfa3db7ec7bd879edd40f8b6ead6b5a5c54a1734a746b53789427169c7e6bb1c5c34df4cb5968faf788b83742e27a7c9a9d9c65523f0d686d522b39ea792f1078117b4633ada15ed3b98a4e5ec6b7b936ff00753e8fead01e5563ab6a1a655556c2f6e6d671e8e8d4941fe4cedb61e2df19d928a7ab7da20b7e5af4613fcf1cdf99d7f58e14d7740a9523a969773429c1ae6a8e19a7bf94d7baff00134dcc07ab50f1ef8860dfda34dd32a25b2e48d487ff00b3fe06c697f483af18a55b87a94e5ddc6e9a5f9c59e2adfbccab1a1edb3fe9035e4bf47c3f4a2ffc772e5ffea8d65d78f3c45372fb3e9fa6528be9cd09ce4bebcc97e4793c5920777d47c5ae32bfe64f5695bc3f72da9c69e3fd64b9bf33a85eea77da95575afaeebdcd46f3cf5aaca6f3f36ce33e8722df4faf758f674e724f6e64b08692d93b70cb46129744ff0003b05bf0bd492cd4a9caff00752cbff236d6da35ad1a6b14d4a6bbc9671f23530ae7973631d7b4ae1cd5759a91563635ab279c4947961fed3d91de74af08aeeae2a6a7790a11c26e9d15cd2f936f0b3f2c9e8bc27a853bed129c14630ab41fb3a8a2b197d9e3e58c9bb6f0ccdf55d71b329b758d2f81740d224a74ac956aa9e79eb3e77e5f23c438aac3fab789350b5db10acdac2db0f7fe67d27259ed93c63c59d39d0d72daf1452a77147976eae517bb7f8afc08ae8b6b2cd1a908c3351acaf4dcf53f0c6ff9e5756b86dce0aa67b6db3fe2793dbd7741cb6cb6b1b9e8be142ab5753baaaa2fd9c68f2b9764dc93fe4c0f5a7d0cda7b6b53b57fff00ac7f89877c992c9e2feddf65517f122bd41742485d17c89348000000000000000000000000000000000000000000000000000000000000000000000000000000001e6be2278a76fc2351e9d63495c6a4e39797eed2cf9fafa1e9475ed678238775f9d4a9a8e9742ad6a9f15551c4ded8ea07c99abeb37dadea156fafee275abd497349c9bc7c967b1c0dd9efbc49e0469f52daa56d02e6a51b88ef0a35a5cd197a67a9e19a9e9d75a46a15ac6f68ca95c51972ca32db0070d98a4b7664ea8ac926d846268aecfa97688c0119e5cf2c60f3fbcb2711a92724f6c9cd29529a92ca0386d3c752629a794c969a6d60859e6036da6ea4a9d58c6bef0f3f23bc58ab6b8a119d371717fb593ccba3363a6eaf7161554a136e3fbadeccde19eaeab872f0fca6e3d1dd0e47b3d8b631d56577f435fa76b34b50a5174da52c7bd097546cb2e516d3d9f54ba1de597a7cfcb1b8dfecaf2e13ce370d24e5979c0926f04ad8aced571ddb8b69676c05b2dfe792fe8463606d04b18dc9ee544027a1001964b2422c820912961864acf5018ee304f51840549c16e83aedd40844f72791a4b6f364b4d2ca597d802ef9f225a497337e422db584977ea4600b29fc5cab2fcfd497397472cef9f4c95c3264b2c221bcf579257932b8c32eb76536d66a9a0db6a91ccd72d45d2a47afd7cce91aae8579a5547ed61cd47f66a47e17f5ec7a626d3ea44e952b852a75e319425b38c965339e5c72fb8f471791961eaf4f207bbc3ec460eddadf0a4a9ce75f4f83943ffa5dd7cbcceab3a52a72719269af33cf71b3b7d0c33c739bc58d225a270c608da52dcae372e828ef92a21452e86d74bd5aa58c946599d17d63e5eabd4d728968c3744b36aefb42b53ad4a9d584b9a129a6a48ecf62fe1dcf32d1af656f731a151fe86724d67f659e91652e987b76263350762b67b1b5b77b23516cf646d2ddec8d0dc5066d6d99a6a0cdb5b3f50ad8add20562fdd2c40000000000000000159d38558f2d484651f292c9e79e24f0770fbe0fd675486956d0bea749d555e10519676ee7a29d57c49ffe1cebafff00f965fc501f28da50fb45c469b784d9ba7a0d39bfd63357a57bda852f99dbb0cde1371c3973b8df4d4d3e1ca3d6751fe28e7d2e1cb1493c4b3f7ce545b97a1ca507ca8e9318f3e5cb9fedc6a7a75a506a54e953525dd23324bb24b3d705b95a7d48ee5d39dcadec6395f9ec1f525bc32a37bc29a92d37588c2a34a85c629cb3d9f667a5493595df278ce764d754f27a970eea8b55d1a95472cd7a6bd9d4cf5caeff00558397263f6f678f9faf8d6c5ee8d1f13f0fd0e23d2276559f2493e7a7517ec4ba7e1be0df496fe855f538bd5d3c225e17f1146efd92a14a54f9b9555f6ab18f3c75c1ea9c2dc374786b4b56d194675a6f9ab545b733f4cf6ff89be97bb9dd7cd9d7f5ae2fd1f448ca3717519d6585ec697bd2ff009f5037d2ca5d4e25c6b361a4dc50777734e93735cb06fde97c9773c9b5af14352bee7a3a6c159d27b73fc536be7dbe8756d2abd7bde22b29d7ab3ab527730cca4f2dfbc8691f6fc1e69c5aee91731d2fd543eea321a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000c1e1de3ff0f276765c414292e6a72f635e496ed3de2dfc9ff13dc4d27166894b88785b50d2eac53f6f45a8e7b496f1fcd203e328cf996720e3cd4ad6eaad09eee9cdc1fcd3c19e2f9820d15c7a193b90d7901464167b91803155a6a4b638bd1bcf539e60ad4b7e648238e5949952530395697556ceb46b52938cd773bde8daed3d420a9c9a8d6c6f1cf5f91e7b9ca5e865a356742ac6a424e2d7469e0b8e765f4e5c9c5339efb7aa4963a3ea5777d4d1e8daf46fa3eceb7b9596dbfed1bd8cb2ba60f4e3657cecf8f2c2fb318272c323b9a6139206000dc9190c022c8aa2c8225345935d08e49632d61671f5263cb16b29e7c9ec1742dd2c6e59464f1d167cc736d8c61b5d82e8112a292eb92af2fa3c27d17916e6fe181959c83687d3a85d0365720daf9279b745321e115176fc89cb657a93902cba32124894f2c7cc0b29321efd406416f68d47973b3345acf0ed0d454eb535ecae9ace57c32f9ff99bac3f3ea5d6d35ea4b258de19dc2ee3c9ee2d6bdad6952ad4a709aeccc58ca785b1e9dae6916fa9daf2ca2a338fc1512de279e5e5956b2b89d1acb95a79f47e4d7a1e6cb0f8d7d2e1e69c93d3898c22d1e85d476ee5a31f423a918f42fcbe85e30c993936c85db893938c91e85c27a83bcb3509bcd4a4d45bf4f33cfaabcd6c2e8b766fb83aebd8eaea9676a9171c7aadd7f320f5ab497ba8dadbbe869ad249a46de83e851b7a0cdadb3dcd3dbb36b6ec2b6b0f84b18e8bf74c84000000000000000003ab7890bff771aff97d965fc51da4ea5e274b93c38d6bd6ddafcd01f2ee8cbff595baf391dbdc57b4e55d394ea3a363fad687cd1dc3fd3bfba75e3fb78f9ff2638f5c1cacec7162f350e52d933a471c86c63b957d762537e4193621acf50c0129f44762e0ed4958eadf679cb14ae709e5f46ba1d749949c62a517871795f3259b8de197c727b34e70845ca72518e3ab3a66b9e24689a5374edeabbdadfb941a6975ddcba76e8792ebdc4dac6af5a74efafead5a69e393388edd1f2adb268dbcf6ea79bae9f4b7eb6ed7aef883adeb3294615bec96effd1d07878f57d59d4e527279936dbf3393696aeea728e5a8c20e6e58e892dbf3c2fa91796b2b3af2a13fd6452e6f2ce33fcc9bf7a5e9c6fe06db85a1ed78ab49a7fbd75497fbc8d4be86ff0081e0a5c79a0c3cf50a29ff00b68a8fb5a1b423f22c42e8494000000000000000000000000000000000000000000000000000000000000000000000000000000000000060003e23e30b19699c61ab59cd6254ee66b1f379fe66aa94b95eef28f4cf1df447a771f7db29c314efa92a89f9c96d2fe4797e711f96ff002036352854a6d73c250ca4f128e3af431e30bd7b9ed7c4dc270d73c21d138868c5cb50b4b183ad2c65d48637cbeed753c5a6114c1182dd886057a30f0c91bfa04716ad3e5795d0c491cf9414a2d1c36b965864a1e5b07f30f71820c94aa4a94e32849a6b7ca3bb687ae46ee31a35fddaa96cdbea7474b08bd3a93a525283c493d99ac73f8df6e79f1cce69eabd639cfd0ae7d0ebfa0eb9f6a6a85c492a98d9bee76187bdd377e47ab1ca57cdcf8ee144b231b97506fa12b9147a3c3eefcfe4698514762d18733ea97cd93292795cbb3f2ea884fa3e9e78ee059c14579e7a6762ae6fa2dbe5d82c63e44369306d329ca7f137bf5f519d8a736db06c0ba6bb7e64f318d3190326464a929845b24220802ce439f628c85ea06452dcb2662720a58033a78253cee6152c978cb60326772cb7cb31c6459034be362e9a516bbbee57243d826968653ccb7381abe974b54b674e5884e3bc67de3ff039f1659acad9e18b259a6f1cae3771e5b716d56d6e2546aa6a51787910826777d7f488df5bba9461fa787c38fda5e474c8c249f2bd9f91e5ca5c6bea71724e4c76b538e596b99c68d079f89f645a5385ad1e79632fa1ad9559559fb79f77ee47cccb715a8f92187f1c9e5fc8d8f0e5451d6eda5cd8f7f1f91a69cf9a4de739efe672f4d9b8ea36d878fd2473f8a0af70b27b7a1b8a0fa1a2b297437541ec9946de8336b6f234f419b4b76456e283d9198e35bbe8724000000000000000001d2bc57a9c9e1d6a89fed4544eea741f18e4e3e1dddfad482fe207ce1a2b7fd634a58f8773b7f59b9f6c60ea7a1e1ea2b3fbb93b6fec1d78fa7939ff002638ac4ce4be871e1bd433f63a479ea1bdc64863b043382728ae510157caf32b51bf672f444093fd14be4293b746b87cd7353d64cc58fc8c957f5f3fbccc6f6cbf23cb5f52751e83c15a352a9a1dc5d565bd6a918a78dd462d3fc33835dc6bc3f73435bab7a9c1dbdccf316bb3c74c1da384353b4a1c374a8dcd4a74e7059945f74deccebfc41a8d2babc9d473956a70cc28c7f77f13e571e7cfff0056532e9ede2c38f39bc9d59e8d72ede75a962a463f1456d28af3c791b5e07b69c38f38764f0b3a8d1dbbfc68e3cee9ca3de31594b394f99a693ebb6e6fbc3f853baf11b42853cc9c6e954cbeb84f3ba3e9e37f6f3727c7e5fd7a7d760036e60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f1efe903a2fdb3852d35484333b3aea327e509edfc794f9b36c61b3ed6e31d216bbc1faa69ce3cd2ab6f2e45fe34b31fcd23e2ba94dd3ab3a6d6f1934fe807d27e06ea9fd77c0575a4dd355636b3745465de125b2f923c1b5eb09691c437fa6cb39b7af3a787e49bc1e85fd1ef56fb2f16de69b297bb7543315fe28eff00c0d378d563fd5fe25de548ac53b8842a27e6da59fcc0e8ed3f2230fc8bc25ce8992dbb0462c02cd11859025230d7a795948cebaf42d84d6303469ae5e44773255a7cb27d8a608ca4617763017502d0ab2a734e2da6ba34775d03881578c68dc4d46b2f865e7e8fd4e90f05e94dd36a4b6378e5aacf261339aaf554f9f75bf72399f5e9e675ed135c57118dbd597e97184ff797f99d8367b1e8994af9bc985c29ccf232c496084cd39a53780db27cc8ca480859c30b25b288db0043ea5915250164cb2c15cec89ec8227b90d16ee437b811d4868b0028d11dcb3e8533b812ba929bce7b15cee4a7ebb85d3245b7d0c8a5b2f33027b97cace1f621a7222f25faa38ded37dfa196153668a32269165f0e4c4b7dccbed128349f6ec4168c37d9753abf1169b1a352577462de5e6a2c7c2fcfe4763a934965369792ea68356d7adac93a7251ab55ac3496525e4633d59ede8e0f94cbd3a4d59bab2f6936f0b68a5dff00e0716ad5727d17c974f9133adcf39497ba9b785e5e9f230379e9b1e77d1d096646d743a4ab6af6b4e5d39f3f86ff00c8d6422df73b470a5a37772ba9473182e54fd5857a6594b383796ef6475eb197437d6f2d9151b7b77ea6d6de469edd9b4b76456e6ddf43968e0dbbd91ce5d10000000000000000003cf3c6a972f8775fd6e29afe27a19e73e37bc78753f5baa6bf881f3d684b3a83fb8cedd94a186753d03fbfcfeeb3b4cdee75e3e9e4e7fc8827ce66cac7531d3eb92cfa9d23cf46f7c0ec43ebd0641019f40dfe0473602e919dc8a8ff00472f9324ad597e8e5f264ab27b751a36556f2bd5f66d251796e5b7e05e8da5385cc7dace351279961e22b7e99291af1a716dce4a719b69278f2fc7a1c9a5a95bc294b16f2555f49b967317db18fccf3e337969f4777e2db5284afebc3650718c7117b45352cbcfd12ea4eaf4e9d946e2b52a5294675136e5b28bf44386354f6fa83b1a94a1cb5f389cbaa69677f4d8715dd537636d4a9cb3ed3dedfae16dbffcf63cdcd73fe79274d71dd3acd5bba951613515859c1defc128aa9e29e9dcdbe215a5f554e4cf3cea7a67811439fc4cb6aa97eae8557f8c1a3bc1f55800d200000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d51f1b788fa33d078f754b35070a6eabab4979c65ba3ec93e7dfe90fa1ba77fa6eb908623522e8549ff00896f1fc9303caf83b5b970ef18e99a9736234eb479f1de0de24bf067acff00483d25555a3ebb452946717466d6eb1f12678555cadd75ebf53e9de19b6b5f133c1ba1a7ddcbf4f4e9fb1e7ef0a90d93fc80f9a293707179cff339794d65772755d26e744d52e34ebe83a7716f3709e5633eabd0e3d2928e537d4232bc64a6372738d9a190231b975b7522528c7ab471eadcaf862045ccd39289c72ae4dc9b7d4ba226939200ec34882cc8ebb1205e9ce54aa46506d38bce51ddb45d6637d4fd9cde2bc56ebf7979af53a317a556546ac6a42528b8bca699ac72d5633c2651ea3d511949ec6ab45d5e1a85ba8392f6f1eb17dcda2ead9e99657cdcb0b8dd54e584fcca39ee4b7d30544a7d494cae7c86422e9939f231730c834cc993931a65d64a8b27b04f24648ee05d9055b21bc812d95c90009c94cefb90fa8e6c91a5b76f39254b731f310daed88b7b7bddc848cfcdef7a17f68a2b27025564a4e3ecdcbb663d17ccc35f53b7b34fdbd6849eebd9a7bf4ebe9f31728dce3b5b6fb4378f6716fd0c3717d6f631752eeb25b654575c9d52fb8a6a4dce3674fd929757dcebb56bd4ab394aa547393eadb39de47a30f1bf6ec5a9f1456af174ad13a54f38ebbb5f33acd4a93a92e6a926e4fbf52adec51b395b6f6f5e384c67a4ee424d4be63a96853dd36f6ee469c9b5a13ad5a14e3bca4f08ef9a75385b52a7461bc61dd777dd9a5d174ef656352f6b4333ca5497a3ce7f963ea6deca5d3bfa951da6c65b23b05b3d91d62c65d0ec56b2cc501b9b77d0da5bb351419b4b7634adcdbcba1b086f146aaddee8d9d2794342efa8008000000000000079b78e2f1e1e3ffb652fe67a49e69e393ffd805ff6ba7fcc0f02e1fdafe4ff00c2768a9e88eada0bfed72fba7686fddf53ae1d3c9cdf92d4ff000327d4c34fb97933a3854b7b11cc55bd884c82cde48232467702c63adfab97dd659ee52e5f2db49fa325e9ac7b8e9553e37f32ac6361d8f37adbe8ce9c8b1b995a5c3af078a8a0d47ea9afe0c5e5cbbaadcd86a292518feeaf23046129be58c5b673a869951fbd51f2af22c97697291c08a72788a793dabfa3de9335c497f7b516234edb11f9b92fe479bd1b7a74a1b457cfb9effe0769f2a1c3b7d7d28ac5c57c425dda8ac3fccd7c7518c793e574f550011d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a4f8a7a02e20e02d4294629d7b78fb7a6f1969c7778f5c651dd8aca0a717192ca6b0d01f09b584d35bf47f33d63c06e2e8e93af55d02ea7cb42fde6936f655176fa9d3fc43e1d970bf1a5f5928f2dbca6ea50cf47096eb73ac53ab56d2ea95d5bce50ad4e4a519c7669a08fa43c66f0fa5aee9ff00d7da65172d42da1fa5846397560bd3bb47cdb3cc5bc672bb773ec1f0f78b68f1a709dbdf663f698a54aea9edb4d2df6f27d7ea799f8a7e11b7edf5de1fa5b6f3af6b05baf3715fc82bc3237588a525f5293badfdd2b5538ae569a7e4d18193633734aae72ca747831aa8e2c3937b9516cee593cbc18f2593dc22efafa12d0ea83582022481908923be4647522b93657352cae21714e5cae2faf92f53be586a50d46da3561b4ba4e1fbacf3be79358399a7ea35f4eaf1ab49edfb51ed25e474c72f8b9f2f1cce7faf42716b725be860b3bca77b6b1ad19662fb793f2324de1e1763d12be75965d54b6d74632f051cb71ccdec134c992372a9fa96dd22a2e999398c2999134d6e0ab37b319e851ec32134c9b6486d1472c30e6b0366966ca3785b32aea43bcb631baaa4f963194b7ddc77c0dacc76c8e4bb95e7497cfa7a9c4af7b4ad57356ad1a5b27cb2eafd3d7e8692eb8939538db47197f14b7c98b9c8ef8f0e55d8675630f7a524a3ddcb64ff00cbea6aeeb5fb4a336a33957e56fdcc623f56755b8bfb9ba966ad46fcbd0e33ead3395e47a71f1e4edb9bde21bcb85c909fb28768c1f635529ca72cc9b72299c1066db5db1c64f4be524565258ebba2b29246372c91ad2ce457ab18d8b2597b2620b28e19b7d174efb5d653a89fb183dfd5f64534bd22adec954a9eed15bb6fbaf43b5d2a54e8d254e9452847648995d21565c969282e9ce96df26459be8455dede5f7975f932b68f1218ddc4765b378e53b159cb314758b29b783b1594b64695bca0cd9dbb353419b4b7622b6f6cf746d28bd8d4dbbe86d68bd90a330008000000000000079878eb34b81e947f7aea0ff89e9e794f8f32c708da473d6e57e40786682bfb5cfee9d9ff0060eb3a0ff7a9fdd3b1b6d61763ae1d3c9cbf932535d49975269a5c9921f536e152fa147d497221e0010324658128c57b251b2a9f232a315cc21528b84b74fa92b58dd574e8529cdf2c536fd0e7dbe9729ef55f2c4d9c68d2a5b4229174f639cc647a72e5b7a63a56d4e8af762917785b072655ee69cb7b5b9b0b6ea7d47e1ce9b1d3380f4ba51528ba949569a92dd4a5bb3e65d32c27a96ab69634fdd9dc568d24df44e4f1fccfb02852546de9d2492508a8e17a19c9db867db3000c3b800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003c9bc71e127acf0e4357b6a6ddcd865cf972dba5dff0ea7cd72c72c934b3e47dcf5e853b9a152856829d3a91719464b29a67c81e2170ad6e12e2bb8b1717f6693e7b693e92837b7e0067f0cb8e6b705f12c6755e74eba6a1731c745fbcbd51f5adb5cd0beb4a77142a42ad0ab15284e2f2a49aec7c3138f32cafc7fc8f57f08bc4d970eca7a26ad51bd3e6a52b79c9ed4a58cf2fc981d53c568d852f10f54a7a751852a319a4d47a73e165fe393a54b6365aedfbd4f5cbebd7ff00cc579d4c76599366b24cc8a772575260b2cc8a9ee6914e84c7de6648c39ba67e467a745755b8148c3089c19a5021c5208c0d1568ccd14e5dc8283e45b01ec0407d864259606d745d5656170a336dd19bf7967fe7a1dd3994d2945f341acc64bba3cdbf693f23b3f0e6ad178b0aa9fbcf34de7a3f23af1e5f55e7e7e2967ca3b1636ea47a9792c3c67e651bc3c1d9e25bb164b631f31752605b2bea5a2f7ec63e9d5fd08f68bf67dedbb04d3349ecde7a1475163aacfab31b97324ba37be3071abdd50b78f356aaa29755dd3edff912d6b1c2d72e535cb9dd2ecf055b8c97bd24976cff00cee686e7892149e2da8e7fc4df99a2bad46eaf5e6ad694a3fbbd8c5cde8c3c7b7b769bcd62cade3bb7564b1851f3fe6686eb886eeaa71a5374a18c622dac7f91a9965eedb7e657383172b5e9c78b1c56a95aa5593739b6df764fb3c2ea532b039bd4c5ff005d35fa1ed20fa9494ca39360d7daee491572ca2af732d0b6af755152b7a33ab393c2508e5b03175d89c6e92ddbec7a6f0bf81fc4fadb856bf8c74cb66d3e6abbcdfca27b4f0bf83fc2dc36a356569f6fbb5fe9aebdefc23d3f222be75e1af0e389b8a651763a7ce36eff00d3d65cb0fc59da7883c2b8707bb295ede7daeb564dca115882f45dcfa82308d38a8c528c52c2496c8f26f1976b8d35be8e32fe22f48f28c2853c41612d97a154da787d0b4a5ccf0ba18ea6cb29ee24dcf6cf68a8dcade4fca4bf998ed9e268b49bfb2bdfac97f331527cb34319a8b5d82ca5d0ec964f64756b27d0ec9652d91a1d8283e86d2dd9a8b77b23696ec0dbdbbe86d2de5948d45bcba1b4b77d08ae680b7000000000000000f22f1f658e1dd3639eb712fe08f5d3c73fa40cb1a36911f3ab53f8203c674178b8a9f23b14b3b1d7743debcdfa23b04a5868eb874f272fe4e543f56887b08bc4110d9b7043209632b003040c91e4152f6c9c7b89f447236c6e706acf3364ab228df991923b92f632e8ab19c119256e0775f0ab4c5a971f584a749d4a56ee55a5fe169662ff001c1f4d9e25e0469ca575aaea5ccd384634397e7ef7f23db4e7976f571cd6290011b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e83e29f03c78cb8666a8452d46d53a96f2c7c5fe17f33bf0c01f094e9d4b6af3b7ad070ab0938ca325ba6b668c8d28c5bee8f77f18fc329ddcaa71368b473557bd77420be2c7eda5e7e67825497b8d631e8668e34ba98a66593d8c531157a5e665ed8ec71e12e57e8664dbe8699722093c767e6648bf7b1d31f99c784f184668d44f09eebb819b3ccd656ecbfb2ca303938a4f0e51c6135d51685c724718ca7fb48089470626b7cf63630a74aa528b534dbec8e35c5150972a08e2e3628ccdecf6292861640c633b82ad85645864c653a3514e0f125ba68a4658c1c9853555c57603b969ba8c6fec5557b545b4d7a9b08a4e8b97a9d3347b9feafbefd2615196d3dfa67b9da2ad78b5984d4a0f7e65d3276c32dc787978accbd390e492c9494f6d8e24f50b4a117edaac56dda5ba7e8fc8d65cf10c1655049fed67fc5e65b9c8ce3c56b7bd21cd19ac6134a6f6c1c2b8d5eded5b5525172f2a7d5ff91d5ebea975779f6951b4fb2d8e2e1e5b6f7f4e862e6ef8707edb6bcd7eb549c9516e9c1f92c37f335552bd5ab2cce727eadf52ae380636ef8e331e88efbb27a0ca59ec55ce2bb91af7f699746637248ad4a89aea63e6dfa855dcfd0abdd64ab61294ba278025fa1b3d1b86f59e21b95474bd3ebdc4df784765f53876d08c2bd19d7873d38cd3943cd67a1f6bf0bda69b69c3b60b4bb6a542da7461351a7eab3bbeafea078af0b7f47bb8abc95f88ef5518f5fb3dbeefeb23d9387f82f87f8669463a5e9b4694d7fa56b9a6ff00d67b9d84011824000cf22f1a9353d325db1247ae9e4fe3647fb2e973ff001cd7e4825790adf0ca4de64fd08e6c32b2dd16b11593cd17f797f32917efa659fea9fde5fcca2ebf20adcd94b0e2764b196c8ead672f84ec7632c2415d92de5b23696ccd45b4b291b4b7606e2ddf436b6cfa1a7b797436b6d2e815b15e64911f849200000000000001e2ff00d20dbfeafd0d79d5abfc227b41e2bfd211ff0062d0d77f6957f8440f22d0be3a9f437b3ea8d1e829b9556bb60dd37cdd37c33ae3d3c9cbf9396be04477216d05b8c9b713a821b23204919190052b4b96070a5bb6722e24b3838cdee66ba49e8e84498643ea45404f0c64b53839d48c526db6961770d3e91f0834d958702d1ab529a8d4b9a92ab9fde8be877fec6b387b4fa7a5f0f5858d2cf251a118acf5e86cfb1cabd53a480028000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002ae2a49a6934faa678378a9e1234eb6bbc3b4331799dc5a41747de515fc8f7b21a4d61eebc80f82aa45c5ca324d493c34cc5247d3fe21783165c452a9a8e88e167a83de74f18a755ff267cf1aff000e6adc357f2b3d5acea50a987cbccb2a4bcd3ee4d0d21921349e1f42982f0a352a7c1094beeac8195f9f611961978db5c41c61528558a97c398b59f918e7169eeb0c6f48e4d3a997d70cbb51ca93caf54f1938596b0d753914ebbc24f728cf2a9cd34db4daead3e46fe9d0a4a7296edcb77d64b2597b39f6c175462927198189d5c778b5f2653db27179c7a1c874e5bef930f2633949ee062935cfdb7f52adc53ff819b952ecbf0231f2fc00c51cb7b67e864519bcefb79378256efae0b6d8c303139e30fbf963f99c995f5c54828caa4b0a2a2b7c74f9181c77d825b0f70b254b4e49f34bf2184913b3db247a0ff577e93f20b62ae6a263955cf408cb269189d45d8c4e6fcca396e06494db299f5232decba992141c9fbcd47e6158fbec5a34e537be51ca8d08a8a69afc0b632b7ec118636f15d77665e551dbf81658ce721a4decc0ab49e5bfcfb9f57f83baa2d4fc38b18b4f9ad252b7936f396bdefe1247ca3bf4c9efbfd1e35294ec358d3a755629d4855841f5df2a4d7e1103dc0001400003cabc6d59d3749f5ab517e48f55c9e43e355fdb54b6d32d6957a73af4eacdce9c649ca2b0baf901e44d2ce1159bc20a4f063948ac0f7a6de7f697f323cc8eb4e4fd500361652f84ec9672d91d5ed65ba3b159cb6459d8ecb692d91b7b76692c9ec8dcd07d064adbdbbe86d2d9ee8d45bbe86d2d9ee8456da9f42e63a4f6321900000000000003c3ff00a41cdffea587ad47fc0f703c27fa40cffb5e8f1f284dfe6079970eff00f31f246da87c53f9b355c3bf05c7c91b5a3f14be675c7a79393f2ae57ecc4827f62255a36e275180464006f09b08a5c3e587cc2b8d397349989f5253dcacba98748321821ee143b1f03e9f3d578cf4ab5872e7dbc6a352e8d47de7f923aea3d3bc12d355d71657bda949b8dad07cb35d2336d2fe0d92f4d633763e844b0b0ba1201cdea000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e1dee9963a853e4bcb4a3711f2ab052fe273001d6eaf0070a56799e8566ffd439d63c35a2e996fec2cf4bb5a54f2e5caa927bfd4db11903e72f156fe95d718d6b6a108d3a569154928c12c4bbff23cc351d3e7272ad4e3b6ed9daf89b5096a7c49a8ddcd2e6ab5e4de3a6cf06adbcc5a7b9d3e3b8f37f26b274e92c49a7d13213e57b74371a969d86ead2598f78f7350d35b3e872b2c7a31ca64c91a9dcbaab8efb9c7e88265dab96ab3eec8f6b9eece3676239ba136393ed3d43a99ee7194b24e4bb19b9b3d48e630b7ea4b93c0d8c9cdb16e6d8c29b0e5b0d8caea6198e551f9946ca3605dcbd4ae588c5c9a51596726168d61cda49ae8981c7c39630b2fd0e442caa3e5e7f772b3f43971853a74fdd492fcc94d765f8f91748c50a6a9eca384fa67a97cb71edb3e9dcbd45cd1725e785831a4977dc82dcbcc9bce30dff02ad7ba9add35be49e5cf5e8467671ca4b20461463cb8e81c713cc9e135945e118778be6cf7ff009ea63ef9c6fd0067d4f4af02f5185a7883ecaa49afb5dbce94179cb29ff04cf346b0baa7e8762e00d43faaf8f746ba6f095c283ff5bddfe607d940ab928acb692f36741e2cf16f86386233a5f6afb75e2d950b66a587eb2e8bf8857a064e9bc53e2670cf0a4650bcbe55ae96cadedfdf9e7c9f65f53e7fe2cf19b89388d4e8dbd5feaeb393c7b2a0fde6bc9c8f399d69549ca75272949bcb72796c0f54e2cf1cb8835be7b7d2e2b4db47b27079a925f3ec74ad22f2a5cd5acee2e2556b4e59cd4965bfc4ebf94c4672a73528c9a6ba3412bbbb6d772b266a2c35655796956694fa73767f3369ccb7cf5ec5652b2a9c979c919174461d9c72a5bf3233203916cf133b059cbdd475ca2f1511bdb396c8b3b1da2c65b1baa0fa1a0b196c8ded06b0864adbdbbe86d2ddf434f6efa1b4b797432adc507946738b41ec72800000000000001e07fd20279d5f4aa59dd5094bfde67be1f3cf8fd2cf15e9b17d159e7fdf97f901e7fa0e57b437745af6869b4258a737ea6de93fd31d71e9e4e4fcab9127ef3c152d2f8d9434e4300005f3305ccf3b7919fa279383396642b522a4319cb127b996d521f40fa07d00983d99efde0669dec3866f7517279bab8e5e5c74e45ff13c021d5e51f58f01e9b2d2b8274bb6a9050aaa8a9544bbb7be4ce4ebc53dbb2800c3b80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020d76bb72ecf40d42e63250953b6a928c9be8f95e3f3364749f156ea36de1f6a09c9c65579211f9f327fc13112dd47cdd39b9d494dbde4db7f52aa58ee63ce41d9e3acadf3a7e7834ba869fcadd5a4b2bba36e997694a386c966e2e39fc6ba8b58ea4aa6dc25258c4719dfccdb5f69dbbab4239f348d56eb29fd4e3669ea997ca31618dcbb5b79157927a6f48591d09e9d43088ea88c87e8145c93c265d0648ce4e442caab8a9b588633cc737ec54a8413c29cb6cb96d87e45d15ada746a547851ebdd9c9a562a4f79737c8e5cd72c65069c5e7741727baf1ba8a7f308c9468c7df50a5ba5f0aead63a94e582a6bdf7badf08b73ca50d9e3a6127f3125152c6ca292497a0144a329eed463db3fc88e5519a92edb7c8c984d3ff000fc5e4d06df2be5ca4f640554b1b296cfd4c5169369e725a5b63e2df7df7134a38f3c7e204351534d6fe844bde93c46297930b1d7f121b71ed9402496136f3d5f5ee447186dfd03c671b132e592c25bae8055bdba16b5b9a969774ae29bf7a9cd4d7ab4f2bf8147d776525f101daf89bc52e28e25a7f67ad7b2b7b44947d8d07ca9fcdf73a4b9c9b6db6dbeadf52f55627e8ca25f880e6f3252cb23042ce40bf2a5b91843b138d80ae4db586a6dc551af3785d246a1ec4a7b37dc41dbe9ca2a19cf74724eb361a93a6a346abcc1b4f276484e338a945e53f22a3241fbe8de5a4b646862fde46e2d25d0b3b4768b196c6f6ddec8ebb6123b05bbd90cbb56deddf43696ef183516efa1b4b77d0cab736ef63988e05bbe873974024000000000000f9e3c7f78e2ed3bfec2bff00c923e873e75f1f67cfc6362bf72c92ff007e4c0e8fa12fd0cfe66d2dbdeaef26af43fd449fa9b5b45fda19d71e9e4e4eeb34dfbeca65a2d37fa4914669c92e4c94f6dca92151527887cce0b919ab4bdec2ec60ea4adc88e8c672f7192bdc8a90c809e5fc88ad868d64aff5cb0b3c371af5e10925bece4b3f91f6150a51a16f4a8c7e1a71515f24b07cd5e1169d2d43c41b5a8b1cb690956927dd6397f8c91f4c99c9df8a7a4800cba0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000cf2cf1c6e393856ca8278752e937ea9459ea6cf24f1da125a169b553f755ce1ffb2cb3b673fc5e1a1adc85ba2d93abc895b059c7521e7b92ba04645cbde3938d716346e1b6e093f4390b7250496ce9aa7a2c70f96a3fa9865a25658fd2c77f466f62896913e11d3f97268168755a79ad1caed86523a628bc4e6db5e46ffa338353e37f327c6459c99570e367462be1cbf3627463158492391d0acd67217e55c5a3bd4e471ce1636782ea5dd294ff008cbd0a4f319e72d27b4be46592c554e9c949456dd8c58ef8ddc43f7f976e892961770e928b9656711ea93c60b24a514e09f2f7cbee513719392e5c3ea88abc5a506fd9636df3dbfe725545e1734774f7f4f40f93659edcb88f7f9fe44f328be593972a7db19f9e40a2ca5cd958ced92553e66f6efb12d7bb8714b2fabeac86e316f09a9630dbe880a4f09ed8ca5d960897c2b6f53272f3253ce36dfd4a4975c2031a7b6db97ce22d2efd488a797358c2237cb6fbf500f6cec9b2a9c5c9e76c22d996ef09e4aeea39ea043456517d7a17db38ebb156f2d81c7ad1d9331f2bea722aef0f330e40af2e46305932ac0893d895ba212c96492028d04b665991dc0aa7839d63a94ed66936dd3ee705f564640ee96f714ebd352a72ca66e6c9f4479ddade54b49a706f1dd67a9dcb45d4e8dd452e6519774d96269dd6c1e0ec36d2d91d62c279c753b1dabd9168dcdbbe86d2ddf43516f2dd1b4b67d08adc5bcba1b183cc4d5dbbe86ce9ef120b8000000000001f3478e15fdaf1f4a9e7f576f08e3f3fe67d2e7cb5e31bcf897a92cf4852ff00c110349a33e4b4ce3e2933696e9c66e6fa1aad25ff00638fde66da97c275c7a79393b4c9e64d95c9693592ad799a734a79273859289e0ad59e22174e34e596fe6632d3782bf532d84319232146c45a4ff321ee3b3441ed9e02e9a9ad57539d3795cb4694df7eae5fc227b69d0bc22d3dd8787d6736f2ee672aff002ced8ff74efbd8c57a719a80008d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020f35f1bace773c0f4eb416d6f7509cbe4d38ff168f4a3a9f8936df6be00d5a9a596a9a97e124ff90897a7cb7096cb2cbf73027dccd1793b478ec5da257a84f60c22d9c227a9544a08baf99665117451479c6e706a6f366c25f0b35d3f8d92b58aa435b162b2ea65a60a91ca6bb18a0ff46d49be686c8e44d6c71aa7b928cf09a4f74fa12bae15953a7296137bf5dff326706da8c36c756899d374e384f1e6f66429f2632e5eaa3dcc3aa145a70e668bf2cd663858c6d9dc296ce318e76ce25d7fe7729cab2e4b3becb2f78b0224a5ecf965f3fa10924d3936d2eabae4b6f8fdac2d889623392e54fae31b760232ded2db7e8bc88f8a39dd603e54f64b1d77fe420a53972f76063dfb74f2f31fb2b2835d76db9b08849adfb20256ea59ce70465aca5b67a912cacf9aea4bdde5bcfd00879515878cadcaa974fccb61b5d1fd4c52cc64fb0133c6e719f5391d76ea71da719b0055bdc4b2229e72c092400208240146b7230cb8028d19a8d7950a919d36e324fb18a6556cc0ef9c2fc52a75d5adee136fdca9fc99e9b67523249c5a69f43e79849c5b69b4fccef1c29c6f3b1942d2ff00dea0f653f21b1ecd41f436b6efa1a3b0b8a7754615a8d45384965346e6ddf42a3716efa1b3a2f6351419b5a12d88ace0000000000007cafe303cf89faa7a2a5ffe389f541f2bf8c0bff79faafca97ff8a206974bc7d9238f366e29feacd4696b1690f9b3714d7e8d1d71e9e4e4ed57d595659f52adee69cd1d3738f5659975d8cf5258833872912b72227b94248646904821b228cc96f46775734ade9acceacd423f36f0bf898f2765f0f34d5ab71de936b28c9d3f6ded26d76514e5fc520b27b7d4ba2d9c74ed16cace3050f634611715d9e37fcf26c0039bd200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a7e28a2ae385356a5d79aceae3e7c8f06e0c17743ed1675e83e9529ca1f8ac01f17e1c5e1f55d4c9165af21ecaf6bd3fdda925f9b30e4eb1e4ae547a128c54e4642b0b16ec57b13d822c8ba7b989174ca2cfa7d0d74fe37f3360dfbace04fe37f3256b151f6f9912ea892199690d6c71e71ca6bb33906292dc56a562a72cc3d94df2e1eef19c22f4a2da49b7b3cf9e598dbf675a336fdd6f12c178bc4f0da5b6179e73d4c5edde5dc5e09f3c94a326fb7a6ebf2dcac93f68d36b29eff00f3ff003d42e6cb6df5ca7ea56294739c6e454bcb97273e23df62b8e9eee525b32cb2babca5d8a29252f870f7c809492e5e6ca58cb262f2f99c9a69676f322518a4fe2c6719279974d9fa8159a51924bbbf22af6c2dbbede45a7f0a6fb187a637032671eb921cb324f7ce5bdfa14e6d92df62134d3db080ba9657bcbdd5bbdca34b99e08ce53dd91b3ff300f6f998249a93f539187f431545d18185f52cba22b3ce762adb480c83a33173b1ccc0c8ba11dc65919604820011220964005d075602223b570af185d70fd78c672954b5cfbd4dbcfe07bbe87ac596b36aabd9d78d48b5ba5d51f2f1bce1fe24bde1cd421736951f2e573d3ed24583ea7a0fccda507d0e8dc1dc5f63c4f69cd464a9dcc7e3a0deebd57a1ddedde520ae680ba000000000007cb1e31fff0014355f951fff00144fa9cf94fc59a9ed7c4bd5a5eb4d7e108a0353a66d694fd73fc4dcc7f548d4e9dfdce9ff00cf73690f851db1e9e3e4ed3e651fc8bbd8a4a5b36565c7af2db94e332d566e526d98ccba449040c91419232427ef012d9eb3e03e98eb7115fea2d270b7b754f7f393ce7fdd679337be7f81f45781da62b4e0fad7b2a6e352eebb6a4ff6a292c63f164b7d3784f6f52001877000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007c7dc516ced38a353b7c6392e24b1f5353dced9e245baa1e21eb09ac73d6e75f2675296d2d8e93a796f6bc7a333464b0616f18c7726326565c9ce418e32ecfa19163056685e246105b045dfc2cd7cfe3673ff00659c1a8b1362b58a81820cb482924642ad642b04e2a516b1d4c6aa45c630a89660faa5ef60cd3dbe4619b719a9f6335d30acd26b9535193895c7bdd563d0ac659cc92d9bddaedff0223352f793cc9f5cf432eab38f93493eaf226d28777b90ba61acac76262d2fab4967cc0ae1ca39ca6defb90f0a29f57dc49fbe92de2b6fa858d927e8c0a4be15e4634f2be1cbec649652924934d98b0f99e36c7600d27d33ea4ae57e655b6df90c012f0b6c0ed8ec47ae76185d4087bbc9128e60c9644b6ce00c2565d095278c10f7029ca1a658802d90435d00123b95e6790dbc8132ec5465bea0880000139641207334dd4ef34abc85d5956952ab17b34cfa13c3df132cb8828d3b2d4271b7d45617bcf11a9eabd4f9bcbd2ab528cd54a72709279524f0f215f6ec7759f324f11f0f3c604d50d23886587b53a778fa7a297f99edb092a918ca12528cb74d3cafa799448233924000001f23f88d55d6f1035993ed5dafc36fe47d707c7fc6f3e7e37d69e7a5e545fef3055b4e79b3a6bd0da456c8d669ebfb253f91b38f43b63d3c59f6acba182b4f11c799c86faa3815a599bf214c631bdca364b654cba192b92cca2c858b14cfe9189330caa28b726c8b26dc893dbf23ebde08d3a3a5705e936917951b78cb3f7bdefe67c615af66f689ebfe1af8d15f4a54349e2294ab596d0a572b7952f47e68cdaeb863a7d220e3d9dedb6a16b4eead2b42b50a8b309c1e5347208d800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e68f18edd50f112bb4b6a9429cf3eaf279fcd6e8f52f1d687b3e2db2af8deadbe3f07ff0013cba4f2d1d31e9e6ce7f64c9740ba112ec4ae856175d0cb1964c29968bc152b3a25158bd8be30194f6670aafc6ce66767b1c4aab326c56b1622097b1065a1904e437b05629a314a1cc9a7d199e4cc2e5b86a30c25c91c7ed26d134d26f2fe7b762953319a92e9dcc8b68e177ea62f6ed8df4b3c26df365f421252925cc92f915ef86f763a74dfd48a35152da597cdd83527f0a78e8465e16165e719262e51c2cb78edea0564e497f131f5d9169b7fb4bfe051a49a604358dc3c7906dbdc8025ac7911d56e4a4961f98ee05738d887b966467a0181a49b457aec5e6b12298c6e030432c4302cf7c118dc96477028fa86f725f52bea04820920003b04095b8ea1001e80054f4e87a67879e2addf0f57a7a7ead52771a5cbdd4dbcca97aaf4f43cc898bc3ce1147dada7ea567aad9c2f2cae29d6a151654e0f2728f93382b8fb53e0ebee7a3275ecea35edada6fdd92f4f267d31c31c55a6f15e951bed3eaf376a94a5f1425e4d01bb03cc0047c71c5adbe32d6dbfff00bf5fff001b3ec747c6fc5abff6cb5bff00b7d7ff00f23215ccb058b5a4bd0d92d91aeb17fa0a4bd0d8ae876c7a78b3ed8ab4b962d9af93cb33ddd4df94e2f36fd05ad6312fa15e625be65846396c46d6c91392513054af182dce0d6bb73da3944b5a98dae4d5b951584f738352a4a72dd98f2d8ee677b76c71913932c5e1673b985964f622bbdf01789baaf055e469c652b9d366ff00496d27b2f58f933eadd075ab5e21d12d755b36fd85cc39e29f55e8cf861633fe67d7fe0fe7ff00463a467f71e3f103bd80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c9d1f8b7c53e1be119d4b7b9b875ef61b3b6a3bc93f27e4787f14f8e3c47ae39d0d3a4b4cb57b2f65f1b5eb2edf403b778ed7365757da53b7baa552bd18ce1521092728e5aebf81e439f7b26b6dee6adcddd4ad5eacea5596ee73796d9b0ddbd8de2e19f6bbcec08c8c95cd74cb45ee632cbab2a32a666e6cf438eba174ca963329632f1b9c6a8ba99d7c261ac2918595e84b28d99692daee55cc87d4abe81ad0db6626b732604b704609479935e652974e46f0d79995982a24a6a4ba677335d31aca9f324de3c884d6f8fa1558cf33fc8657e265d1315e52f9957bc56dd3afa896ddc9524ba770225d31b146b6dc99c9676f84872ca023a0c6f8dc34b1d087f37900f7c22481dc03ea43e9ea4bc67d486b31ce7708c5570f95afa9432c97bacc5d829dc87b9202258db0180aa35ef10fa1679c9569e3a0003a0ee00760020894412881dc00000ee115529e1eeb26df40e23d4786b5385f697712a55161496769af292ee8d3b2c888faaf813c44d378c6ca10e68dbea515fa5b66f76fce3e699dd3cfd0f8a2d2eebd8dd53b9b5af3a35a9be6a7383c34d1f41787be2e5bebb2a1a5eb8e343507eec2bbda355ff26caaf554f747c71c5af3c63adffdbebbff007d9f634b68b7e48f8d78964e7c57abcbcef6b3ff007d888d958ef429fc8e5569f241bc9c4b36fd8431e44dcd4cac64ebbf4f2d9bc9c694dc9bcb2b9c10dac67a1c6ad71186775932e926d9ea4d460de4e1d4bbc2697538d52e2751633b1877336ba4c1695494de594e84a8f721bc91b077031b81382795edb75d91ced2347bfd6efe165a75b54af71378518473ff0091f42f00f81b67a64695ff0012f2dd5d2de16dfe8e1f3f3615e59c09e146b7c6156173384acb4c4f7b8a8b1cde915dcfa9b87f43b6e1cd0ad349b472746da1c9172eafd59b1a54a1469c69d3846108ac4631584919000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8bfc45abedfc41d6e7b3fed0d7e0923aa33bc789fc3f7fa0f1adf3bc86637151d6a5512da516ce96d27fc44a1467eceaa79e8cdd53a8a704d74344d61e51ccb2aed4b91f4ec595cf3c76da2248c6304ae86dc5645914459151744a65512823341ed838f527bb32a7d4e3cfe3608a36572195234b321821f4019dd90c0615865d4ab8a6be65dee1c48d471a39e592ef1270d933f7679eddc3e558c753163acf6821b68978fa946f215206ed64aef902f9ea57b929a7d7047700c8c8cac87dfc8087d4001112e8cc26666292c361500760fa1113923f6cb323b1542192ba10fa0159762099762180017464f60002e80882ea00680004ec507d09ec47c87720945d3e49a716d63a35d4a1251ec3e1df8b75ad271d2388ebba96d28f251ba93cba7e4a4fbaf53a4f1af0bea5a3eb15afabc6156cafab4eadbdd52973426a526d6fe786b63a9be86da3c43a87f527f544ebbab651aaaac29d4df924bf75f64fc845f75cda32f676d1ce7296373875abc799bc9867a8c5d1c631235f52b4aa37966ee5e9c71c2fdb935ef33eec7ea70a527396584b2435e467dd76924591242ce704903b142fdd1cfd2745d475dbd859e9d6952e2bcde14611e9f37d80d6a593d17813c26d6b8be50b9ad195969b9debd45bc97f8577f99ea5c03e0758e90a9ea3c47cb777bd636cbf574dfafef3fcbd0f62a74e14a9c69d38c6108ac28c56125e815a0e15e0cd17842c55be976b184f1efd696f39bf57fc8ec600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001d3fc42e09b6e35e1da96b28a8ded24e76d57bc65e5f267c83a8e9f71a5ea35ec6ea94a9d7a52709c5f9a3eee3c6bc69f0f3fadeca5c45a5d2fedb6f1fed108adea41757f3407cd724fa8849c65b752edb4dc64b0ca544d2c8ff51b6b6afed618cee8e4a794692d6bfb29acbd99b9a72e68e53d9f4372edc73c74c9d8b47a95ec5a269cd745f08a22e19a98f54716a7c6ce52dbe671aafc6c2c619104c83e846d00100490001568c6ccb831c82c5271e68e30618ef95d1a33e4c15572c93ecfa99ade3496e910d63a10de525be107b63a1974191ea1f421ec04ac67182cfd3b15fdadcb2db3ea047e017718f421756043ea43ec33b8604772953a991746526ba04503ea30c10406c0c155083271844010c923b8ee04860000874080761dc90440000112990002240022454b32aba800032a8464911ebb85477ea4adda367a4687a86bba842cb4cb4ab735a6f1cb05d3e7e5f53e86e01f03f4fd1bd96a1c42a1797cbde8d0eb4e9bf5f360796f027845ad716d4a775711958e9b9deb548fbd35fe15fccfa4f85b83b46e10b056ba55b460f1efd696f39bf57fc8dfd3a70a508c29c5461158518ac248b8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b28a9c5c64934d61a7d196007cbfe31f876f873537ad69f49ff565d4fde515b519f93f24cf29797168fb9b57d26d35bd2ee34ebea4aadbd78f2ca2ff008fcd753e3ee39e0fbce0ce22ad615e2dd06dca855c6d38127a2baaf4ec6cac6e1c97236b3d8e04e39dc539f234d6c6a5f6cd9b76058c27dc95d72705ddaf61cf15e872adea7b58266f7b70b8d8e44738dcb15458ae752ba9c7adf1b33986bfc4c2c71dee180c8da0000002320325245d957b858c4fa9138f3471e64c960752351c74f9136d65af325addef959d8bd65c9352c672b73136e3249f433a749767995792debd88cefb762299cb2cd94ce71d99702376572d365b74cabd9b0233d80003b912e8c90f758031e510c9784d90c88119259050eabe440cf6258541058010c2e8186009c6c5724e401246094102481d0000c104800082a91623380a9ec55b2c93974363a2e83a9710ea10b1d32d6a5c5793e908ed15e6df645d8d6a5967a4f01f83facf154e9ddde46761a5bdfdad4589d45fe18f5fa9ea5c01e08e9da0aa5a86bdcb7b7eb128d1ff004749ff00367aec211a705084546296124b090568f86784346e12b08dae976b186c94eab599cdf9b66fc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074ef10b82adf8d7876a5ab518ded24e76d57ca5e5f26771007c25a8d85c6977d5ec6ee94a9d7a33709c5add34709a69e0fa57c69f0ed6af632e22d328ff6db78e6bc22b7a905dfd5a3e6e924f0b18c76089a33e46e1269c5a36f694d420929651a392c3ee6c74fb9cae46fe46a319cdc6dba12a455352411b79f4ba7931575be7ccc91ea52bf45f204edc50011b4603782725580c91904054b2af6248ea08abe9d772ab6652ad68c1bdce1d4b86d61333b6f19b72eb56a78c632f1f9982325286175471d49bce4b425892f525adc9a72395ed82bbe596ede808aa63d5193b11f419dfd006efa949752e51fc40464920012080114963999025f107d51019049751c145147cd06bc8bb443c320a025a688c14430484008c12c0019209ec40ec000a0ee18c36f6604e43219293db628ab62317266cf43e1fd4f88f50858e956952e2b49f48ad97ab7d91f45f007827a7680a95feb9c97ba82c4953eb4e9bfe6c2bcbb80fc1ed638a9d3bbbf8cac74cce79e6b129aff000afe67d23c35c25a3f09d846d34ab485258f7aa63339bf36cddc631845462928ae8922c030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b28a945c64b29f54cf97fc63f0edf0ceaaf59d3a9634bba9b728c56d466faaf44cfa88d76b1a45a6b7a55c69d7d4a356debc1c6516bf35ea07c33349f47f5290938cb2baa6769e38e0fbbe0de20ada75ca72a3972b7ad8daa43b7d4eacd6fe411bab4b98d58633892ea72d3c753af52a92a551491bca15235e29aee6e570cf1d5678eecad7e88b6d059452abe68459a739db8cc86c96f72922369c919cec884b24a4a3b914c60159d44965bc1c3a979da02d592d72a752115972470eadd49ed1d97a1c77273796c87b19ae931439393cb1cbe64f601a1248640ea119e12cac16c98212e5667ca6b39229b8000157f132c55f502000006192b11dd912a994d20889e1c7a94ee88dd938dd05596362c5512441844770c06d2ea55ac3f42c31902897523b1771c15603b001000032a8095d086f60008796cdae83c3baaf126a10b2d2ed2a57ab27fb2b68fab7d901ab49cb0bab7e47a77017839ab714ba57ba829d869ade79e4b13a8bfc2bf99ea5c05e0ae99c3ca9dfeb2a17da8ecd41afd1d37f2eff0053d6231518a8c524974482b4dc39c2da470a69f1b3d26d21463fb734bde9bf393eacdd609000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074ef10f826db8db872a5ac928ded24e76d571bc65e5f267c87a969f73a65f57b2bca2e9dc509b84e2d630d753eec3c6bc6bf0e96af652e22d2e8afb6d08ff00688457eb20bbfcd04d3e6ac3e63976775ec2a61fc2cc138b4f75f46fb947b305f734ec51a9ed5663d0b4d72d348d6d85ca58849efd8d8c9e6193a4bb79f2c755c6ee4496c4c9ee61ad5a30d9b22c9b59cb1dce3d6ba51585b982adc39f4e87153cbdc9b7498b254ad2a8f77b18cbe36e84196fa1b2acb0292a3f6047a1247ed600904b21040cf079460c64bc65cac8acc411d89dfa760182afae0ba8a198adb1b815c6fbbc227385b156f247602afde796460b32022305bbac91dd92fa053e43d4b2e9d06de4415083ea10419287d09c248087d0a38e3a99301b4f60316c3b969430f6ee460a01af319c156f77b82273e44c22dbc2596fa616e6d787f86b55e25bf8d9e95693af565dd6d18fab7d8fa3b80bc17d2b86d53bed5942ff0052586949669d27e8bbbf57f805796f01f835aaf133a77baa295869af74dc7152a2f44fa7cd9f47f0ff000ce93c2fa746cb4ab4850a6961c92cca5eadf566dd45452492497448b0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4a0a7171924e2d61a7dd17007cbde3178792e1ad59eb3a7516f4cba93728c56d467dd7c99e4f3587b1f74eb1a45a6bba55c69b7d4d54b7af071926ba7aaf53e3ee39e10bbe0de20ada7574e545fbf6f571b4e19db7f3411d5a32945b69e0dc5b5ca9db7bcd7325dcd437d865e3a965d259b732e2ef7c43a799c29cdcde5b6436137d89bd92690175187e430c69560fa11b91bfa144c775b938f42ab2865fa1048ee55b791928b3ce415e67e833be482ec87d08cf719c819e0f28cbeec31cde5d0e3c1b896cb6f7dc0b4a6de16308a80101d802887d08ec5b1921ad80a96c95045654c8c98f9993cec09ce5b0995cf5270b011392522aba974d27b904b4f382bf08cb9bc24436974796554f36db98db0f77b9b8e1fe17d5789f50859e956952bcde3324bdd8af36fb01a854f9da4b2db7db73d4b80bc16d5789654efb5653d3f4dd9a525fa4aabd176f99ea7c01e0d697c310a77baa725fea3b4b759a74dfa2eff0033d494545249612e89056a787f86b49e18d3e365a4da428524bde697bd37e6df73700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a77889c116dc6bc3952d9a8c6f68a73b6aaff665e5f26001f1f5eda54b2baab6f5925529cdc27879dd338fe8004aa8c80441b646580553998cbf300065f98cbf30001000027000168acbf42e945760009db24805000040000087d0002b80c022a3b8c00012ea59200889cf913858e66c00aa3937d360d35bb0011ea5e1df83b79c550a7a8ea55636ba5b7cc9464a53a8bd31d3ebf81f48e85c39a5f0dd8c2cf4bb4a74294561b4bde97ab60155b600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffd9 \N 1 \N 1 2024-04-13 21:37:25.008192 1 +\. + + +-- +-- Data for Name: product_image_cache; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_image_cache (id, create_date, create_uid, image, image_id, product_image, size, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_lead_time; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_lead_time (id, create_date, create_uid, lead_time, template, write_date, write_uid) FROM stdin; +1 2024-04-13 21:37:12.808326 1 \N 1 \N \N +\. + + +-- +-- Data for Name: product_list_price; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_list_price (id, company, create_date, create_uid, list_price, template, write_date, write_uid) FROM stdin; +1 1 2024-04-13 21:37:12.808326 1 50000 1 \N \N +\. + + +-- +-- Data for Name: product_product; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_product (id, active, code, create_date, create_uid, description, suffix_code, template, write_date, write_uid, attributes) FROM stdin; +1 t \N 2024-04-13 21:37:12.808326 1 \N 1 \N \N \N +\. + + +-- +-- Data for Name: product_template; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_template (id, active, code, consumable, create_date, create_uid, default_uom, name, type, write_date, write_uid, account_category, attribute_set, height, height_uom, length, length_uom, volume, volume_uom, weight, weight_uom, width, width_uom, purchasable, purchase_uom, salable, sale_uom, "MEP", "Usubi", a_factor_resolution, analog_resolution, biomedical_class, calibration, check_calibration, check_electric_system, check_equipment, clean_eyes, clean_int_ext, d_resolution, electrical_equipment, equipment, equipment_type, frequency, frequency_uom, initial_operation, k_pattern, main_tecnology, maintenance_activity, maintenance_required, mark_category, measuring_range, model_category, moisture_max, moisture_min, moisture_uom, observation, optical, origin_country, preventive_activities, product, reference_category, refurbish, replacement, resolution_type, risk, software_required, software_version, temperature_max, temperature_min, temperature_uom, uncertainy_pattern, use, use_pattern, useful_life, "voltageAC", "voltageAC_uom", "voltageDC", "voltageDC_uom", warranty) FROM stdin; +1 t \N f 2024-04-13 21:37:12.808326 1 1 UNIDAD REFRACCION ESTANDAR goods 2024-04-13 21:55:27.847752 1 1 \N 170 13 120 13 1836000 21 120 2 90 13 t 1 t 1 \N \N \N \N n/a f f t t f t \N t t mobiliario_optico 0 38 t electrico f t 7 dioptria 9 90 30 42 f 1 \N 10 f f \N n/a f 35 10 39 \N apoyo \N 120 0 36 0 36 24 +\. + + +-- +-- Data for Name: product_template-product_category; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."product_template-product_category" (id, category, create_date, create_uid, template, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: product_uom; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_uom (id, active, category, create_date, create_uid, digits, factor, name, rate, rounding, symbol, write_date, write_uid) FROM stdin; +1 t 1 2024-04-13 20:39:08.573524 0 0 1 Unit 1 1 u \N \N +2 t 2 2024-04-13 20:39:08.573524 0 2 1 Kilogram 1 0.01 kg \N \N +3 t 2 2024-04-13 20:39:08.573524 0 2 0.001 Gram 1000 0.01 g \N \N +4 t 2 2024-04-13 20:39:08.573524 0 2 0.0002 Carat 5000 0.01 c \N \N +5 t 2 2024-04-13 20:39:08.573524 0 2 0.45359237 Pound 2.204622621849 0.01 lb \N \N +6 t 2 2024-04-13 20:39:08.573524 0 2 0.028349523125 Ounce 35.27396194958 0.01 oz \N \N +7 t 3 2024-04-13 20:39:08.573524 0 2 0.000277777778 Second 3600 0.01 s \N \N +8 t 3 2024-04-13 20:39:08.573524 0 2 0.016666666667 Minute 60 0.01 min \N \N +9 t 3 2024-04-13 20:39:08.573524 0 2 1 Hour 1 0.01 h \N \N +10 t 3 2024-04-13 20:39:08.573524 0 2 24 Day 0.041666666667 0.01 d \N \N +11 t 4 2024-04-13 20:39:08.573524 0 2 1 Meter 1 0.01 m \N \N +12 t 4 2024-04-13 20:39:08.573524 0 2 1000 Kilometer 0.001 0.01 km \N \N +13 t 4 2024-04-13 20:39:08.573524 0 2 0.01 Centimeter 100 0.01 cm \N \N +14 t 4 2024-04-13 20:39:08.573524 0 2 0.001 Millimeter 1000 0.01 mm \N \N +15 t 4 2024-04-13 20:39:08.573524 0 2 0.3048 Foot 3.280839895013 0.01 ft \N \N +16 t 4 2024-04-13 20:39:08.573524 0 2 0.9144 Yard 1.093613298338 0.01 yd \N \N +17 t 4 2024-04-13 20:39:08.573524 0 2 0.0254 Inch 39.370078740157 0.01 in \N \N +18 t 4 2024-04-13 20:39:08.573524 0 2 1609.344 Mile 0.000621371192 0.01 mi \N \N +19 t 5 2024-04-13 20:39:08.573524 0 2 1000 Cubic meter 0.001 0.01 m³ \N \N +20 t 5 2024-04-13 20:39:08.573524 0 2 1 Liter 1 0.01 l \N \N +21 t 5 2024-04-13 20:39:08.573524 0 2 0.001 Cubic centimeter 1000 0.01 cm³ \N \N +22 t 5 2024-04-13 20:39:08.573524 0 2 0.016387064 Cubic inch 61.023744094732 0.01 in³ \N \N +23 t 5 2024-04-13 20:39:08.573524 0 2 28.316846592 Cubic foot 0.035314666721 0.01 ft³ \N \N +24 t 5 2024-04-13 20:39:08.573524 0 2 3.785411784 Gallon 0.264172052358 0.01 gal \N \N +25 t 6 2024-04-13 20:39:08.573524 0 2 1 Square meter 1 0.01 m² \N \N +26 t 6 2024-04-13 20:39:08.573524 0 2 0.0001 Square centimeter 10000 0.01 cm² \N \N +27 t 6 2024-04-13 20:39:08.573524 0 2 100 Are 0.01 0.01 a \N \N +28 t 6 2024-04-13 20:39:08.573524 0 2 10000 Hectare 0.0001 0.01 ha \N \N +29 t 6 2024-04-13 20:39:08.573524 0 2 0.00064516 Square inch 1550.0031000062 0.01 in² \N \N +30 t 6 2024-04-13 20:39:08.573524 0 2 0.09290304 Square foot 10.76391041671 0.01 ft² \N \N +31 t 6 2024-04-13 20:39:08.573524 0 2 0.83612736 Square yard 1.195990046301 0.01 yd² \N \N +32 t 7 2024-04-13 20:39:08.573524 0 2 1 Joule 1 0.01 J \N \N +33 t 7 2024-04-13 20:39:08.573524 0 2 1000000 Megajoule 1e-06 0.01 MJ \N \N +34 t 7 2024-04-13 20:39:08.573524 0 2 3600000 Kilowatt-hour 2.77778e-07 0.01 kW⋅h \N \N +35 t 7 2024-04-13 20:39:08.573524 0 2 3600000000 Megawatt-hour 2.78e-10 0.01 MW⋅h \N \N +36 t 8 2024-04-13 20:39:21.814652 0 0 1 Volt 1 1 V \N \N +37 t 9 2024-04-13 20:39:21.814652 0 0 1 Watt 1 1 W \N \N +38 t 10 2024-04-13 20:39:21.814652 0 0 1 Hertz 1 1 Hrz \N \N +39 t 11 2024-04-13 20:39:21.814652 0 0 1 Celsius 1 1 °C \N \N +40 t 11 2024-04-13 20:39:21.814652 0 0 1 Fahrenheit 1 1 °F \N \N +41 t 11 2024-04-13 20:39:21.814652 0 0 1 Kelvin 1 1 °K \N \N +42 t 12 2024-04-13 20:39:21.814652 0 0 1 Relative Humedity 1 1 %HR \N \N +\. + + +-- +-- Data for Name: product_uom_category; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.product_uom_category (id, create_date, create_uid, name, write_date, write_uid) FROM stdin; +1 2024-04-13 20:39:08.573524 0 Units \N \N +2 2024-04-13 20:39:08.573524 0 Weight \N \N +3 2024-04-13 20:39:08.573524 0 Time \N \N +4 2024-04-13 20:39:08.573524 0 Length \N \N +5 2024-04-13 20:39:08.573524 0 Volume \N \N +6 2024-04-13 20:39:08.573524 0 Surface \N \N +7 2024-04-13 20:39:08.573524 0 Energy \N \N +8 2024-04-13 20:39:21.814652 0 Electric Tension \N \N +9 2024-04-13 20:39:21.814652 0 Radian Power \N \N +10 2024-04-13 20:39:21.814652 0 Frequency \N \N +11 2024-04-13 20:39:21.814652 0 Temperature \N \N +12 2024-04-13 20:39:21.814652 0 Relative Humedity \N \N +\. + + +-- +-- Data for Name: purchase_configuration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_configuration (id, create_date, create_uid, purchase_process_after, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_configuration_purchase_method; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_configuration_purchase_method (id, create_date, create_uid, purchase_invoice_method, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_configuration_sequence; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_configuration_sequence (id, company, create_date, create_uid, purchase_sequence, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_invoice_ignored_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_invoice_ignored_rel (id, create_date, create_uid, invoice, purchase, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_invoice_recreated_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_invoice_recreated_rel (id, create_date, create_uid, invoice, purchase, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_line (id, actual_quantity, create_date, create_uid, delivery_date_edit, delivery_date_store, description, note, product, product_supplier, purchase, quantity, sequence, type, unit, unit_price, write_date, write_uid, address_equipment, health_register, origin_country, product_equipment, refurbish, serial_equipment, software_version) FROM stdin; +1 1 2024-04-13 22:02:50.149223 1 f \N 1 \N 1 1 \N line 1 50000 2024-04-13 22:02:57.479999 1 1 COL123evergreen \N t f +\. + + +-- +-- Data for Name: purchase_line_account_tax; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_line_account_tax (id, create_date, create_uid, line, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_line_moves_ignored_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_line_moves_ignored_rel (id, create_date, create_uid, move, purchase_line, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_line_moves_recreated_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_line_moves_recreated_rel (id, create_date, create_uid, move, purchase_line, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_product_supplier; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_product_supplier (id, active, code, company, create_date, create_uid, currency, lead_time, name, party, product, sequence, template, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_product_supplier_price; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_product_supplier_price (id, create_date, create_uid, product_supplier, quantity, sequence, unit_price, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: purchase_purchase; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.purchase_purchase (id, comment, company, confirmed_by, contact, create_date, create_uid, currency, delivery_date, description, invoice_address, invoice_method, invoice_party, invoice_state, number, origin, party, payment_term, purchase_date, quoted_by, reference, shipment_state, state, tax_amount_cache, total_amount_cache, untaxed_amount_cache, warehouse, write_date, write_uid, equipment_create) FROM stdin; +1 1 \N 1 2024-04-13 22:00:22.9446 1 35 \N 4 order \N pending 1 \N 4 \N 2024-04-13 \N received processing 0 50000.00 50000.00 5 2024-04-13 22:04:41.165863 1 t +\. + + +-- +-- Data for Name: res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.res_group (id, name, active, create_date, create_uid, parent, write_date, write_uid) FROM stdin; +1 Administration t 2024-04-13 20:27:35.518366 0 \N \N \N +2 Currency Administration t 2024-04-13 20:39:00.792624 0 \N \N \N +3 Party Administration t 2024-04-13 20:39:01.136154 0 \N \N \N +4 Company Administration t 2024-04-13 20:39:02.298155 0 \N \N \N +5 Employee Administration t 2024-04-13 20:39:02.298155 0 \N \N \N +6 Account t 2024-04-13 20:39:03.023425 0 \N \N \N +7 Accounting Party t 2024-04-13 20:39:03.023425 0 6 \N \N +8 Account Administration t 2024-04-13 20:39:03.023425 0 6 \N \N +9 Product Administration t 2024-04-13 20:39:08.573524 0 \N \N \N +10 Account Product Administration t 2024-04-13 20:39:09.955992 0 9 \N \N +11 Stock t 2024-04-13 20:39:10.936653 0 \N \N \N +12 Stock Administration t 2024-04-13 20:39:10.936653 0 11 \N \N +13 Stock Force Assignment t 2024-04-13 20:39:10.936653 0 11 \N \N +14 Purchase t 2024-04-13 20:39:16.958214 0 \N \N \N +15 Purchase Administrator t 2024-04-13 20:39:16.958214 0 14 \N \N +16 Sales t 2024-04-13 20:39:19.14446 0 \N \N \N +17 Sales Administrator t 2024-04-13 20:39:19.14446 0 16 \N \N +18 Equipment Administration t 2024-04-13 20:39:21.814652 0 \N \N \N +19 Contract Administration t 2024-04-13 20:39:21.814652 0 \N \N \N +20 Agended Administration t 2024-04-13 20:39:21.814652 0 \N \N \N +21 Maintenance Administration t 2024-04-13 20:39:21.814652 0 \N \N \N +\. + + +-- +-- Data for Name: res_user; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.res_user (id, name, active, login, password, create_date, create_uid, email, language, menu, password_hash, password_reset, password_reset_expire, signature, write_date, write_uid, company, company_filter, employee, warehouse) FROM stdin; +0 Root f root \N 2024-04-13 20:27:35.559002 0 \N \N 2 \N \N \N \N \N \N \N one \N \N +1 Administrator t admin \N 2024-04-13 20:27:35.518366 0 admin \N 2 $scrypt$ln=16,r=8,p=1$lbJWqrW2FiKkdM6Z857Teg$syCquxKO0+yI/VATZcL0maEdwBnidzAcpJMXLdt+NwQ \N \N \N 2024-04-13 20:50:30.229733 1 1 one \N \N +\. + + +-- +-- Data for Name: res_user-company_company; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."res_user-company_company" (id, company, create_date, create_uid, "user", write_date, write_uid) FROM stdin; +1 1 2024-04-13 20:50:30.229733 1 1 \N \N +\. + + +-- +-- Data for Name: res_user-company_employee; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."res_user-company_employee" (id, create_date, create_uid, employee, "user", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: res_user-ir_action; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."res_user-ir_action" (id, action, create_date, create_uid, "user", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: res_user-res_group; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public."res_user-res_group" (id, "user", "group", create_date, create_uid, write_date, write_uid) FROM stdin; +1 1 1 2024-04-13 20:27:35.518366 0 \N \N +2 1 2 2024-04-13 20:39:00.792624 0 \N \N +3 1 3 2024-04-13 20:39:01.136154 0 \N \N +4 1 4 2024-04-13 20:39:02.298155 0 \N \N +5 1 5 2024-04-13 20:39:02.298155 0 \N \N +6 1 6 2024-04-13 20:39:03.023425 0 \N \N +7 1 7 2024-04-13 20:39:03.023425 0 \N \N +8 1 8 2024-04-13 20:39:03.023425 0 \N \N +9 1 9 2024-04-13 20:39:08.573524 0 \N \N +10 1 10 2024-04-13 20:39:09.955992 0 \N \N +11 1 12 2024-04-13 20:39:10.936653 0 \N \N +12 1 11 2024-04-13 20:39:10.936653 0 \N \N +13 1 13 2024-04-13 20:39:10.936653 0 \N \N +14 1 14 2024-04-13 20:39:16.958214 0 \N \N +15 1 15 2024-04-13 20:39:16.958214 0 \N \N +16 1 16 2024-04-13 20:39:19.14446 0 \N \N +17 1 17 2024-04-13 20:39:19.14446 0 \N \N +18 1 18 2024-04-13 20:39:21.814652 0 \N \N +19 1 19 2024-04-13 20:39:21.814652 0 \N \N +20 1 20 2024-04-13 20:39:21.814652 0 \N \N +21 1 21 2024-04-13 20:39:21.814652 0 \N \N +\. + + +-- +-- Data for Name: res_user_application; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.res_user_application (id, application, create_date, create_uid, key, state, "user", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: res_user_device; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.res_user_device (id, cookie, create_date, create_uid, login, write_date, write_uid) FROM stdin; +1 c2e58d4de6874a1f856cf6bd87f2b3f6 2024-04-13 20:37:02.146425 1 admin \N \N +\. + + +-- +-- Data for Name: res_user_login_attempt; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.res_user_login_attempt (id, create_date, create_uid, device_cookie, ip_address, ip_network, login, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: res_user_warning; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.res_user_warning (id, always, create_date, create_uid, name, "user", write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_configuration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_configuration (id, create_date, create_uid, sale_process_after, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_configuration_sale_method; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_configuration_sale_method (id, create_date, create_uid, sale_invoice_method, sale_shipment_method, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_configuration_sequence; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_configuration_sequence (id, company, create_date, create_uid, sale_sequence, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_invoice_ignored_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_invoice_ignored_rel (id, create_date, create_uid, invoice, sale, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_invoice_recreated_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_invoice_recreated_rel (id, create_date, create_uid, invoice, sale, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_line (id, actual_quantity, create_date, create_uid, description, note, product, quantity, sale, sequence, type, unit, unit_price, write_date, write_uid, product_equipment) FROM stdin; +\. + + +-- +-- Data for Name: sale_line_account_tax; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_line_account_tax (id, create_date, create_uid, line, tax, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_line_moves_ignored_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_line_moves_ignored_rel (id, create_date, create_uid, move, sale_line, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_line_moves_recreated_rel; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_line_moves_recreated_rel (id, create_date, create_uid, move, sale_line, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: sale_sale; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.sale_sale (id, comment, company, confirmed_by, contact, create_date, create_uid, currency, description, invoice_address, invoice_method, invoice_party, invoice_state, number, origin, party, payment_term, quoted_by, reference, sale_date, shipment_address, shipment_method, shipment_party, shipment_state, shipping_date, state, tax_amount_cache, total_amount_cache, untaxed_amount_cache, warehouse, write_date, write_uid, agended, contract_ref, maintenance_type, payment_term_description, quote_number, sale_type) FROM stdin; +\. + + +-- +-- Data for Name: stock_configuration; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_configuration (id, create_date, create_uid, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_configuration_location; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_configuration_location (id, create_date, create_uid, shipment_internal_transit, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_configuration_sequence; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_configuration_sequence (id, company, create_date, create_uid, inventory_sequence, shipment_in_return_sequence, shipment_in_sequence, shipment_internal_sequence, shipment_out_return_sequence, shipment_out_sequence, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_inventory; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_inventory (id, company, create_date, create_uid, date, empty_quantity, location, number, state, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_inventory_line; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_inventory_line (id, create_date, create_uid, expected_quantity, inventory, product, quantity, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_location; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_location (id, active, address, allow_pickup, code, create_date, create_uid, flat_childs, input_location, "left", lost_found_location, name, output_location, parent, picking_location, "right", storage_location, type, write_date, write_uid, supplier_return_location) FROM stdin; +4 t \N f \N 2024-04-13 20:39:10.936653 0 f \N 15 \N Lost and Found \N \N \N 16 \N lost_found \N \N \N +3 t \N f STO 2024-04-13 20:39:10.936653 0 f \N 20 \N Storage Zone \N 5 \N 21 \N storage 2024-04-13 20:39:10.936653 0 \N +1 t \N f IN 2024-04-13 20:39:10.936653 0 f \N 22 \N Input Zone \N 5 \N 23 \N storage 2024-04-13 20:39:10.936653 0 \N +5 t \N f WH 2024-04-13 20:39:10.936653 0 f 1 19 4 Warehouse 2 \N \N 26 3 warehouse \N \N \N +2 t \N f OUT 2024-04-13 20:39:10.936653 0 f \N 24 \N Output Zone \N 5 \N 25 \N storage 2024-04-13 20:39:10.936653 0 \N +6 t \N f SUP 2024-04-13 20:39:10.936653 0 f \N 29 \N Supplier \N \N \N 30 \N supplier \N \N \N +7 t \N f CUS 2024-04-13 20:39:10.936653 0 f \N 33 \N Customer \N \N \N 34 \N customer \N \N \N +8 t \N f \N 2024-04-13 20:39:10.936653 0 f \N 37 \N Transit \N \N \N 38 \N storage \N \N \N +\. + + +-- +-- Data for Name: stock_location_lead_time; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_location_lead_time (id, create_date, create_uid, lead_time, sequence, warehouse_from, warehouse_to, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_location_waste; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_location_waste (id, create_date, create_uid, location, warehouse, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_move; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_move (id, company, cost_price, create_date, create_uid, currency, effective_date, from_location, internal_quantity, origin, origin_planned_date, planned_date, product, product_cost_price, quantity, shipment, state, to_location, unit, unit_price, unit_price_updated, write_date, write_uid, equipment, return_equipment) FROM stdin; +1 1 30000 2024-04-13 22:02:57.479999 1 35 2024-04-13 6 1 purchase.line,1 \N \N 1 \N 1 \N done 1 1 50000 t 2024-04-13 22:04:41.11089 1 \N f +\. + + +-- +-- Data for Name: stock_period; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_period (id, company, create_date, create_uid, date, state, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_period_cache; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_period_cache (id, create_date, create_uid, internal_quantity, location, period, product, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_shipment_in; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_shipment_in (id, company, contact_address, create_date, create_uid, done_by, effective_date, number, origin_planned_date, planned_date, received_by, reference, state, supplier, warehouse, warehouse_input, warehouse_storage, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_shipment_in_return; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_shipment_in_return (id, assigned_by, company, create_date, create_uid, delivery_address, done_by, effective_date, from_location, number, origin_planned_date, planned_date, reference, state, supplier, to_location, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_shipment_internal; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_shipment_internal (id, assigned_by, company, create_date, create_uid, done_by, effective_date, effective_start_date, from_location, number, origin_planned_date, planned_date, planned_start_date, reference, shipped_by, state, to_location, write_date, write_uid) FROM stdin; +\. + + +-- +-- Data for Name: stock_shipment_out; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_shipment_out (id, company, create_date, create_uid, customer, delivery_address, done_by, effective_date, number, origin_planned_date, packed_by, picked_by, planned_date, reference, state, warehouse, warehouse_output, warehouse_storage, write_date, write_uid, sale_type, service_maintenance_initial) FROM stdin; +\. + + +-- +-- Data for Name: stock_shipment_out_return; Type: TABLE DATA; Schema: public; Owner: tryton +-- + +COPY public.stock_shipment_out_return (id, company, contact_address, create_date, create_uid, customer, done_by, effective_date, number, origin_planned_date, planned_date, received_by, reference, state, warehouse, warehouse_input, warehouse_storage, write_date, write_uid, sale_type, service_maintenance_initial) FROM stdin; +\. + + +-- +-- Name: account_account_deferral_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_account_deferral_id_seq', 1, false); + + +-- +-- Name: account_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_account_id_seq', 7, true); + + +-- +-- Name: account_account_tax_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_account_tax_rel_id_seq', 1, false); + + +-- +-- Name: account_account_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_account_template_id_seq', 7, true); + + +-- +-- Name: account_account_template_tax_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_account_template_tax_rel_id_seq', 1, false); + + +-- +-- Name: account_account_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_account_type_id_seq', 16, true); + + +-- +-- Name: account_account_type_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_account_type_template_id_seq', 16, true); + + +-- +-- Name: account_configuration_default_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_configuration_default_account_id_seq', 1, true); + + +-- +-- Name: account_configuration_default_payment_term_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_configuration_default_payment_term_id_seq', 1, false); + + +-- +-- Name: account_configuration_default_tax_rule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_configuration_default_tax_rule_id_seq', 1, false); + + +-- +-- Name: account_configuration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_configuration_id_seq', 1, true); + + +-- +-- Name: account_configuration_journal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_configuration_journal_id_seq', 1, true); + + +-- +-- Name: account_configuration_sequence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_configuration_sequence_id_seq', 1, true); + + +-- +-- Name: account_configuration_tax_rounding_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_configuration_tax_rounding_id_seq', 1, true); + + +-- +-- Name: account_fiscalyear_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_fiscalyear_id_seq', 1, false); + + +-- +-- Name: account_fiscalyear_invoice_sequence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_fiscalyear_invoice_sequence_id_seq', 1, false); + + +-- +-- Name: account_invoice-account_move_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."account_invoice-account_move_line_id_seq"', 1, false); + + +-- +-- Name: account_invoice-additional-account_move_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."account_invoice-additional-account_move_id_seq"', 1, false); + + +-- +-- Name: account_invoice_alternative_payee_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_alternative_payee_id_seq', 1, false); + + +-- +-- Name: account_invoice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_id_seq', 1, true); + + +-- +-- Name: account_invoice_line-stock_move_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."account_invoice_line-stock_move_id_seq"', 1, true); + + +-- +-- Name: account_invoice_line_account_tax_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_line_account_tax_id_seq', 1, false); + + +-- +-- Name: account_invoice_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_line_id_seq', 1, true); + + +-- +-- Name: account_invoice_payment_method_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_payment_method_id_seq', 1, false); + + +-- +-- Name: account_invoice_payment_term_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_payment_term_id_seq', 1, false); + + +-- +-- Name: account_invoice_payment_term_line_delta_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_payment_term_line_delta_id_seq', 1, false); + + +-- +-- Name: account_invoice_payment_term_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_payment_term_line_id_seq', 1, false); + + +-- +-- Name: account_invoice_report_revision_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_report_revision_id_seq', 1, false); + + +-- +-- Name: account_invoice_tax_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_invoice_tax_id_seq', 1, false); + + +-- +-- Name: account_journal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_journal_id_seq', 6, true); + + +-- +-- Name: account_journal_period_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_journal_period_id_seq', 1, false); + + +-- +-- Name: account_journal_sequence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_journal_sequence_id_seq', 6, true); + + +-- +-- Name: account_move_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_move_id_seq', 1, false); + + +-- +-- Name: account_move_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_move_line_id_seq', 1, false); + + +-- +-- Name: account_move_line_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_move_line_template_id_seq', 1, false); + + +-- +-- Name: account_move_reconcile_write_off_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_move_reconcile_write_off_id_seq', 1, false); + + +-- +-- Name: account_move_reconciliation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_move_reconciliation_id_seq', 1, false); + + +-- +-- Name: account_move_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_move_template_id_seq', 1, false); + + +-- +-- Name: account_move_template_keyword_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_move_template_keyword_id_seq', 1, false); + + +-- +-- Name: account_period_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_period_id_seq', 1, false); + + +-- +-- Name: account_tax_code_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_code_id_seq', 1, false); + + +-- +-- Name: account_tax_code_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_code_line_id_seq', 1, false); + + +-- +-- Name: account_tax_code_line_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_code_line_template_id_seq', 1, false); + + +-- +-- Name: account_tax_code_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_code_template_id_seq', 1, false); + + +-- +-- Name: account_tax_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_group_id_seq', 1, false); + + +-- +-- Name: account_tax_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_id_seq', 1, false); + + +-- +-- Name: account_tax_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_line_id_seq', 1, false); + + +-- +-- Name: account_tax_line_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_line_template_id_seq', 1, false); + + +-- +-- Name: account_tax_rule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_rule_id_seq', 1, false); + + +-- +-- Name: account_tax_rule_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_rule_line_id_seq', 1, false); + + +-- +-- Name: account_tax_rule_line_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_rule_line_template_id_seq', 1, false); + + +-- +-- Name: account_tax_rule_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_rule_template_id_seq', 1, false); + + +-- +-- Name: account_tax_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.account_tax_template_id_seq', 1, false); + + +-- +-- Name: company_company_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.company_company_id_seq', 1, true); + + +-- +-- Name: company_employee_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.company_employee_id_seq', 1, true); + + +-- +-- Name: country_country_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.country_country_id_seq', 1, true); + + +-- +-- Name: country_organization_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.country_organization_id_seq', 19, true); + + +-- +-- Name: country_organization_member_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.country_organization_member_id_seq', 1, false); + + +-- +-- Name: country_postal_code_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.country_postal_code_id_seq', 1, false); + + +-- +-- Name: country_region_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.country_region_id_seq', 33, true); + + +-- +-- Name: country_subdivision_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.country_subdivision_id_seq', 1, false); + + +-- +-- Name: cron_company_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.cron_company_rel_id_seq', 1, false); + + +-- +-- Name: currency_cron-currency_currency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."currency_cron-currency_currency_id_seq"', 1, false); + + +-- +-- Name: currency_cron_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.currency_cron_id_seq', 1, false); + + +-- +-- Name: currency_currency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.currency_currency_id_seq', 181, true); + + +-- +-- Name: currency_currency_rate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.currency_currency_rate_id_seq', 1, false); + + +-- +-- Name: ir_action-res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_action-res_group_id_seq"', 16, true); + + +-- +-- Name: ir_action_act_window_domain_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_action_act_window_domain_id_seq', 98, true); + + +-- +-- Name: ir_action_act_window_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_action_act_window_id_seq', 307, true); + + +-- +-- Name: ir_action_act_window_view_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_action_act_window_view_id_seq', 365, true); + + +-- +-- Name: ir_action_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_action_id_seq', 314, true); + + +-- +-- Name: ir_action_keyword_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_action_keyword_id_seq', 311, true); + + +-- +-- Name: ir_action_report_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_action_report_id_seq', 313, true); + + +-- +-- Name: ir_action_url_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_action_url_id_seq', 1, false); + + +-- +-- Name: ir_action_wizard_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_action_wizard_id_seq', 314, true); + + +-- +-- Name: ir_attachment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_attachment_id_seq', 1, false); + + +-- +-- Name: ir_avatar_cache_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_avatar_cache_id_seq', 2, true); + + +-- +-- Name: ir_avatar_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_avatar_id_seq', 1, true); + + +-- +-- Name: ir_cache_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_cache_id_seq', 40, true); + + +-- +-- Name: ir_calendar_day_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_calendar_day_id_seq', 7, true); + + +-- +-- Name: ir_calendar_month_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_calendar_month_id_seq', 12, true); + + +-- +-- Name: ir_configuration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_configuration_id_seq', 1, true); + + +-- +-- Name: ir_cron_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_cron_id_seq', 6, true); + + +-- +-- Name: ir_email_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_email_address_id_seq', 1, false); + + +-- +-- Name: ir_email_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_email_id_seq', 1, false); + + +-- +-- Name: ir_email_template-ir_action_report_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_email_template-ir_action_report_id_seq"', 1, false); + + +-- +-- Name: ir_email_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_email_template_id_seq', 1, false); + + +-- +-- Name: ir_error_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_error_id_seq', 1, false); + + +-- +-- Name: ir_export-res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_export-res_group_id_seq"', 1, false); + + +-- +-- Name: ir_export-write-res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_export-write-res_group_id_seq"', 1, false); + + +-- +-- Name: ir_export_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_export_id_seq', 1, false); + + +-- +-- Name: ir_export_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_export_line_id_seq', 1, false); + + +-- +-- Name: ir_lang_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_lang_id_seq', 25, true); + + +-- +-- Name: ir_message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_message_id_seq', 369, true); + + +-- +-- Name: ir_model_access_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_access_id_seq', 253, true); + + +-- +-- Name: ir_model_button-button_reset_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_model_button-button_reset_id_seq"', 1, false); + + +-- +-- Name: ir_model_button-res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_model_button-res_group_id_seq"', 22, true); + + +-- +-- Name: ir_model_button_click_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_button_click_id_seq', 1, false); + + +-- +-- Name: ir_model_button_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_button_id_seq', 116, true); + + +-- +-- Name: ir_model_button_rule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_button_rule_id_seq', 1, false); + + +-- +-- Name: ir_model_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_data_id_seq', 3137, true); + + +-- +-- Name: ir_model_field_access_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_field_access_id_seq', 40, true); + + +-- +-- Name: ir_model_field_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_field_id_seq', 4506, true); + + +-- +-- Name: ir_model_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_id_seq', 368, true); + + +-- +-- Name: ir_model_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_model_log_id_seq', 17, true); + + +-- +-- Name: ir_module_config_wizard_item_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_module_config_wizard_item_id_seq', 5, true); + + +-- +-- Name: ir_module_dependency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_module_dependency_id_seq', 82, true); + + +-- +-- Name: ir_module_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_module_id_seq', 18, true); + + +-- +-- Name: ir_note_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_note_id_seq', 1, false); + + +-- +-- Name: ir_note_read_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_note_read_id_seq', 1, false); + + +-- +-- Name: ir_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_queue_id_seq', 2, true); + + +-- +-- Name: ir_rule_group-res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_rule_group-res_group_id_seq"', 2, true); + + +-- +-- Name: ir_rule_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_rule_group_id_seq', 69, true); + + +-- +-- Name: ir_rule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_rule_id_seq', 73, true); + + +-- +-- Name: ir_sequence_1; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_1', 5, true); + + +-- +-- Name: ir_sequence_10; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_10', 1, true); + + +-- +-- Name: ir_sequence_11; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_11', 1, false); + + +-- +-- Name: ir_sequence_12; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_12', 1, false); + + +-- +-- Name: ir_sequence_13; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_13', 1, false); + + +-- +-- Name: ir_sequence_14; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_14', 1, false); + + +-- +-- Name: ir_sequence_15; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_15', 1, false); + + +-- +-- Name: ir_sequence_16; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_16', 1, false); + + +-- +-- Name: ir_sequence_2; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_2', 1, false); + + +-- +-- Name: ir_sequence_3; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_3', 1, false); + + +-- +-- Name: ir_sequence_4; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_4', 1, false); + + +-- +-- Name: ir_sequence_5; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_5', 1, false); + + +-- +-- Name: ir_sequence_6; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_6', 1, false); + + +-- +-- Name: ir_sequence_7; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_7', 1, false); + + +-- +-- Name: ir_sequence_8; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_8', 1, false); + + +-- +-- Name: ir_sequence_9; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_9', 1, false); + + +-- +-- Name: ir_sequence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_id_seq', 16, true); + + +-- +-- Name: ir_sequence_strict_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_strict_id_seq', 1, false); + + +-- +-- Name: ir_sequence_type-res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_sequence_type-res_group_id_seq"', 38, true); + + +-- +-- Name: ir_sequence_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_sequence_type_id_seq', 19, true); + + +-- +-- Name: ir_session_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_session_id_seq', 1, true); + + +-- +-- Name: ir_session_wizard_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_session_wizard_id_seq', 8, true); + + +-- +-- Name: ir_translation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_translation_id_seq', 5733, true); + + +-- +-- Name: ir_trigger_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_trigger_id_seq', 1, false); + + +-- +-- Name: ir_trigger_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_trigger_log_id_seq', 1, false); + + +-- +-- Name: ir_ui_icon_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_ui_icon_id_seq', 23, true); + + +-- +-- Name: ir_ui_menu-res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."ir_ui_menu-res_group_id_seq"', 20, true); + + +-- +-- Name: ir_ui_menu_favorite_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_ui_menu_favorite_id_seq', 1, false); + + +-- +-- Name: ir_ui_menu_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_ui_menu_id_seq', 194, true); + + +-- +-- Name: ir_ui_view_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_ui_view_id_seq', 607, true); + + +-- +-- Name: ir_ui_view_search_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_ui_view_search_id_seq', 1, false); + + +-- +-- Name: ir_ui_view_tree_optional_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_ui_view_tree_optional_id_seq', 1, false); + + +-- +-- Name: ir_ui_view_tree_state_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_ui_view_tree_state_id_seq', 8, true); + + +-- +-- Name: ir_ui_view_tree_width_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.ir_ui_view_tree_width_id_seq', 1, false); + + +-- +-- Name: optical_equipment_configuration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_configuration_id_seq', 1, true); + + +-- +-- Name: optical_equipment_contract-optical_equipment_equipment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."optical_equipment_contract-optical_equipment_equipment_id_seq"', 1, false); + + +-- +-- Name: optical_equipment_contract_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_contract_id_seq', 1, false); + + +-- +-- Name: optical_equipment_create_contract_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_create_contract_id_seq', 1, false); + + +-- +-- Name: optical_equipment_equipment-change_propietary_form_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."optical_equipment_equipment-change_propietary_form_id_seq"', 1, false); + + +-- +-- Name: optical_equipment_equipment-party_party_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."optical_equipment_equipment-party_party_id_seq"', 1, false); + + +-- +-- Name: optical_equipment_equipment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_equipment_id_seq', 1, true); + + +-- +-- Name: optical_equipment_maintenance-optical_equipment_equipmen_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."optical_equipment_maintenance-optical_equipment_equipmen_id_seq"', 1, false); + + +-- +-- Name: optical_equipment_maintenance_activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_maintenance_activity_id_seq', 1, false); + + +-- +-- Name: optical_equipment_maintenance_calibration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_maintenance_calibration_id_seq', 1, false); + + +-- +-- Name: optical_equipment_maintenance_calibration_sample_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_maintenance_calibration_sample_id_seq', 1, false); + + +-- +-- Name: optical_equipment_maintenance_diary_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_maintenance_diary_id_seq', 1, false); + + +-- +-- Name: optical_equipment_maintenance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_maintenance_id_seq', 1, false); + + +-- +-- Name: optical_equipment_maintenance_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_maintenance_line_id_seq', 1, false); + + +-- +-- Name: optical_equipment_maintenance_service-equipment_contract_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."optical_equipment_maintenance_service-equipment_contract_id_seq"', 1, false); + + +-- +-- Name: optical_equipment_maintenance_service-maintenance_diary_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."optical_equipment_maintenance_service-maintenance_diary_id_seq"', 1, false); + + +-- +-- Name: optical_equipment_maintenance_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_maintenance_service_id_seq', 1, false); + + +-- +-- Name: optical_equipment_product_pattern_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_product_pattern_id_seq', 1, false); + + +-- +-- Name: optical_equipment_use_pattern_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.optical_equipment_use_pattern_id_seq', 4, true); + + +-- +-- Name: party_address_format_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_address_format_id_seq', 69, true); + + +-- +-- Name: party_address_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_address_id_seq', 5, true); + + +-- +-- Name: party_address_subdivision_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_address_subdivision_type_id_seq', 3, true); + + +-- +-- Name: party_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_category_id_seq', 1, false); + + +-- +-- Name: party_category_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_category_rel_id_seq', 1, false); + + +-- +-- Name: party_configuration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_configuration_id_seq', 1, false); + + +-- +-- Name: party_configuration_party_lang_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_configuration_party_lang_id_seq', 1, false); + + +-- +-- Name: party_configuration_party_sequence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_configuration_party_sequence_id_seq', 1, true); + + +-- +-- Name: party_contact_mechanism_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_contact_mechanism_id_seq', 1, true); + + +-- +-- Name: party_contact_mechanism_language_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_contact_mechanism_language_id_seq', 1, true); + + +-- +-- Name: party_identifier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_identifier_id_seq', 1, false); + + +-- +-- Name: party_party-delivered_to-stock_location_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."party_party-delivered_to-stock_location_id_seq"', 1, false); + + +-- +-- Name: party_party_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_account_id_seq', 5, true); + + +-- +-- Name: party_party_customer_code_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_customer_code_id_seq', 5, true); + + +-- +-- Name: party_party_customer_currency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_customer_currency_id_seq', 5, true); + + +-- +-- Name: party_party_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_id_seq', 5, true); + + +-- +-- Name: party_party_lang_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_lang_id_seq', 5, true); + + +-- +-- Name: party_party_location_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_location_id_seq', 5, true); + + +-- +-- Name: party_party_payment_term_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_payment_term_id_seq', 5, true); + + +-- +-- Name: party_party_sale_method_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_sale_method_id_seq', 5, true); + + +-- +-- Name: party_party_supplier_currency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_supplier_currency_id_seq', 5, true); + + +-- +-- Name: party_party_supplier_lead_time_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.party_party_supplier_lead_time_id_seq', 5, true); + + +-- +-- Name: product_attribute-product_attribute-set_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."product_attribute-product_attribute-set_id_seq"', 1, false); + + +-- +-- Name: product_attribute_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_attribute_id_seq', 1, false); + + +-- +-- Name: product_attribute_set_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_attribute_set_id_seq', 1, false); + + +-- +-- Name: product_category_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_category_account_id_seq', 10, true); + + +-- +-- Name: product_category_customer_taxes_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_category_customer_taxes_rel_id_seq', 1, false); + + +-- +-- Name: product_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_category_id_seq', 10, true); + + +-- +-- Name: product_category_supplier_taxes_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_category_supplier_taxes_rel_id_seq', 1, false); + + +-- +-- Name: product_configuration_default_cost_price_method_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_configuration_default_cost_price_method_id_seq', 1, true); + + +-- +-- Name: product_configuration_default_lead_time_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_configuration_default_lead_time_id_seq', 1, false); + + +-- +-- Name: product_configuration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_configuration_id_seq', 1, false); + + +-- +-- Name: product_cost_price_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_cost_price_id_seq', 1, true); + + +-- +-- Name: product_cost_price_method_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_cost_price_method_id_seq', 1, true); + + +-- +-- Name: product_cost_price_revision_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_cost_price_revision_id_seq', 1, false); + + +-- +-- Name: product_identifier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_identifier_id_seq', 1, false); + + +-- +-- Name: product_image_cache_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_image_cache_id_seq', 1, false); + + +-- +-- Name: product_image_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_image_id_seq', 1, true); + + +-- +-- Name: product_lead_time_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_lead_time_id_seq', 1, true); + + +-- +-- Name: product_list_price_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_list_price_id_seq', 1, true); + + +-- +-- Name: product_product_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_product_id_seq', 1, true); + + +-- +-- Name: product_template-product_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."product_template-product_category_id_seq"', 1, false); + + +-- +-- Name: product_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_template_id_seq', 1, true); + + +-- +-- Name: product_uom_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_uom_category_id_seq', 12, true); + + +-- +-- Name: product_uom_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.product_uom_id_seq', 42, true); + + +-- +-- Name: purchase_configuration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_configuration_id_seq', 1, false); + + +-- +-- Name: purchase_configuration_purchase_method_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_configuration_purchase_method_id_seq', 1, false); + + +-- +-- Name: purchase_configuration_sequence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_configuration_sequence_id_seq', 1, false); + + +-- +-- Name: purchase_invoice_ignored_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_invoice_ignored_rel_id_seq', 1, false); + + +-- +-- Name: purchase_invoice_recreated_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_invoice_recreated_rel_id_seq', 1, false); + + +-- +-- Name: purchase_line_account_tax_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_line_account_tax_id_seq', 1, false); + + +-- +-- Name: purchase_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_line_id_seq', 1, true); + + +-- +-- Name: purchase_line_moves_ignored_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_line_moves_ignored_rel_id_seq', 1, false); + + +-- +-- Name: purchase_line_moves_recreated_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_line_moves_recreated_rel_id_seq', 1, false); + + +-- +-- Name: purchase_product_supplier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_product_supplier_id_seq', 1, false); + + +-- +-- Name: purchase_product_supplier_price_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_product_supplier_price_id_seq', 1, false); + + +-- +-- Name: purchase_purchase_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.purchase_purchase_id_seq', 1, true); + + +-- +-- Name: res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.res_group_id_seq', 21, true); + + +-- +-- Name: res_user-company_company_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."res_user-company_company_id_seq"', 1, true); + + +-- +-- Name: res_user-company_employee_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."res_user-company_employee_id_seq"', 1, false); + + +-- +-- Name: res_user-ir_action_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."res_user-ir_action_id_seq"', 1, false); + + +-- +-- Name: res_user-res_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public."res_user-res_group_id_seq"', 21, true); + + +-- +-- Name: res_user_application_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.res_user_application_id_seq', 1, false); + + +-- +-- Name: res_user_device_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.res_user_device_id_seq', 1, true); + + +-- +-- Name: res_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.res_user_id_seq', 1, true); + + +-- +-- Name: res_user_login_attempt_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.res_user_login_attempt_id_seq', 1, true); + + +-- +-- Name: res_user_warning_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.res_user_warning_id_seq', 1, false); + + +-- +-- Name: sale_configuration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_configuration_id_seq', 1, false); + + +-- +-- Name: sale_configuration_sale_method_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_configuration_sale_method_id_seq', 1, false); + + +-- +-- Name: sale_configuration_sequence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_configuration_sequence_id_seq', 1, false); + + +-- +-- Name: sale_invoice_ignored_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_invoice_ignored_rel_id_seq', 1, false); + + +-- +-- Name: sale_invoice_recreated_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_invoice_recreated_rel_id_seq', 1, false); + + +-- +-- Name: sale_line_account_tax_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_line_account_tax_id_seq', 1, false); + + +-- +-- Name: sale_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_line_id_seq', 1, false); + + +-- +-- Name: sale_line_moves_ignored_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_line_moves_ignored_rel_id_seq', 1, false); + + +-- +-- Name: sale_line_moves_recreated_rel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_line_moves_recreated_rel_id_seq', 1, false); + + +-- +-- Name: sale_sale_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.sale_sale_id_seq', 1, false); + + +-- +-- Name: stock_configuration_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_configuration_id_seq', 1, false); + + +-- +-- Name: stock_configuration_location_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_configuration_location_id_seq', 1, false); + + +-- +-- Name: stock_configuration_sequence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_configuration_sequence_id_seq', 1, false); + + +-- +-- Name: stock_inventory_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_inventory_id_seq', 1, false); + + +-- +-- Name: stock_inventory_line_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_inventory_line_id_seq', 1, false); + + +-- +-- Name: stock_location_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_location_id_seq', 8, true); + + +-- +-- Name: stock_location_lead_time_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_location_lead_time_id_seq', 1, false); + + +-- +-- Name: stock_location_waste_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_location_waste_id_seq', 1, false); + + +-- +-- Name: stock_move_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_move_id_seq', 1, true); + + +-- +-- Name: stock_period_cache_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_period_cache_id_seq', 1, false); + + +-- +-- Name: stock_period_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_period_id_seq', 1, false); + + +-- +-- Name: stock_shipment_in_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_shipment_in_id_seq', 1, false); + + +-- +-- Name: stock_shipment_in_return_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_shipment_in_return_id_seq', 1, false); + + +-- +-- Name: stock_shipment_internal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_shipment_internal_id_seq', 1, false); + + +-- +-- Name: stock_shipment_out_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_shipment_out_id_seq', 1, false); + + +-- +-- Name: stock_shipment_out_return_id_seq; Type: SEQUENCE SET; Schema: public; Owner: tryton +-- + +SELECT pg_catalog.setval('public.stock_shipment_out_return_id_seq', 1, false); + + +-- +-- Name: account_account_deferral account_account_deferral_deferral_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_deferral + ADD CONSTRAINT account_account_deferral_deferral_uniq UNIQUE (account, fiscalyear); + + +-- +-- Name: account_account_deferral account_account_deferral_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_deferral + ADD CONSTRAINT account_account_deferral_pkey PRIMARY KEY (id); + + +-- +-- Name: account_account account_account_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_pkey PRIMARY KEY (id); + + +-- +-- Name: account_account_tax_rel account_account_tax_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_tax_rel + ADD CONSTRAINT account_account_tax_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: account_account_template account_account_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template + ADD CONSTRAINT account_account_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_account_template_tax_rel account_account_template_tax_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template_tax_rel + ADD CONSTRAINT account_account_template_tax_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: account_account_type account_account_type_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_type + ADD CONSTRAINT account_account_type_pkey PRIMARY KEY (id); + + +-- +-- Name: account_account_type_template account_account_type_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_type_template + ADD CONSTRAINT account_account_type_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_configuration_default_account account_configuration_default_account_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_account + ADD CONSTRAINT account_configuration_default_account_pkey PRIMARY KEY (id); + + +-- +-- Name: account_configuration_default_payment_term account_configuration_default_payment_term_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_payment_term + ADD CONSTRAINT account_configuration_default_payment_term_pkey PRIMARY KEY (id); + + +-- +-- Name: account_configuration_default_tax_rule account_configuration_default_tax_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_tax_rule + ADD CONSTRAINT account_configuration_default_tax_rule_pkey PRIMARY KEY (id); + + +-- +-- Name: account_configuration_journal account_configuration_journal_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_journal + ADD CONSTRAINT account_configuration_journal_pkey PRIMARY KEY (id); + + +-- +-- Name: account_configuration account_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration + ADD CONSTRAINT account_configuration_pkey PRIMARY KEY (id); + + +-- +-- Name: account_configuration_sequence account_configuration_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_sequence + ADD CONSTRAINT account_configuration_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: account_configuration account_configuration_singleton; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration + ADD CONSTRAINT account_configuration_singleton EXCLUDE USING btree (((id * 0)) WITH =); + + +-- +-- Name: account_configuration_tax_rounding account_configuration_tax_rounding_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_tax_rounding + ADD CONSTRAINT account_configuration_tax_rounding_pkey PRIMARY KEY (id); + + +-- +-- Name: account_fiscalyear_invoice_sequence account_fiscalyear_invoice_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear_invoice_sequence + ADD CONSTRAINT account_fiscalyear_invoice_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: account_fiscalyear account_fiscalyear_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear + ADD CONSTRAINT account_fiscalyear_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice-account_move_line account_invoice-account_move_line_line_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice-account_move_line" + ADD CONSTRAINT "account_invoice-account_move_line_line_unique" UNIQUE (line); + + +-- +-- Name: account_invoice-account_move_line account_invoice-account_move_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice-account_move_line" + ADD CONSTRAINT "account_invoice-account_move_line_pkey" PRIMARY KEY (id); + + +-- +-- Name: account_invoice-additional-account_move account_invoice-additional-account_move_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice-additional-account_move" + ADD CONSTRAINT "account_invoice-additional-account_move_pkey" PRIMARY KEY (id); + + +-- +-- Name: account_invoice_alternative_payee account_invoice_alternative_payee_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_alternative_payee + ADD CONSTRAINT account_invoice_alternative_payee_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice_line-stock_move account_invoice_line-stock_move_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice_line-stock_move" + ADD CONSTRAINT "account_invoice_line-stock_move_pkey" PRIMARY KEY (id); + + +-- +-- Name: account_invoice_line_account_tax account_invoice_line_account_tax_line_tax_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line_account_tax + ADD CONSTRAINT account_invoice_line_account_tax_line_tax_unique UNIQUE (line, tax); + + +-- +-- Name: account_invoice_line_account_tax account_invoice_line_account_tax_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line_account_tax + ADD CONSTRAINT account_invoice_line_account_tax_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice_line account_invoice_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line + ADD CONSTRAINT account_invoice_line_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice_payment_method account_invoice_payment_method_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_method + ADD CONSTRAINT account_invoice_payment_method_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice_payment_term_line_delta account_invoice_payment_term_line_delta_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_term_line_delta + ADD CONSTRAINT account_invoice_payment_term_line_delta_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice_payment_term_line account_invoice_payment_term_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_term_line + ADD CONSTRAINT account_invoice_payment_term_line_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice_payment_term account_invoice_payment_term_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_term + ADD CONSTRAINT account_invoice_payment_term_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice account_invoice_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice_report_revision account_invoice_report_revision_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_report_revision + ADD CONSTRAINT account_invoice_report_revision_pkey PRIMARY KEY (id); + + +-- +-- Name: account_invoice_tax account_invoice_tax_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_tax + ADD CONSTRAINT account_invoice_tax_pkey PRIMARY KEY (id); + + +-- +-- Name: account_journal_period account_journal_period_journal_period_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal_period + ADD CONSTRAINT account_journal_period_journal_period_uniq UNIQUE (journal, period); + + +-- +-- Name: account_journal_period account_journal_period_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal_period + ADD CONSTRAINT account_journal_period_pkey PRIMARY KEY (id); + + +-- +-- Name: account_journal account_journal_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal + ADD CONSTRAINT account_journal_pkey PRIMARY KEY (id); + + +-- +-- Name: account_journal_sequence account_journal_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal_sequence + ADD CONSTRAINT account_journal_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: account_move_line account_move_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line + ADD CONSTRAINT account_move_line_pkey PRIMARY KEY (id); + + +-- +-- Name: account_move_line_template account_move_line_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line_template + ADD CONSTRAINT account_move_line_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_move account_move_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move + ADD CONSTRAINT account_move_pkey PRIMARY KEY (id); + + +-- +-- Name: account_move_reconcile_write_off account_move_reconcile_write_off_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_reconcile_write_off + ADD CONSTRAINT account_move_reconcile_write_off_pkey PRIMARY KEY (id); + + +-- +-- Name: account_move_reconciliation account_move_reconciliation_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_reconciliation + ADD CONSTRAINT account_move_reconciliation_pkey PRIMARY KEY (id); + + +-- +-- Name: account_move_template_keyword account_move_template_keyword_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_template_keyword + ADD CONSTRAINT account_move_template_keyword_pkey PRIMARY KEY (id); + + +-- +-- Name: account_move_template account_move_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_template + ADD CONSTRAINT account_move_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_period account_period_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_period + ADD CONSTRAINT account_period_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_code_line account_tax_code_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_line + ADD CONSTRAINT account_tax_code_line_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_code_line_template account_tax_code_line_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_line_template + ADD CONSTRAINT account_tax_code_line_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_code account_tax_code_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code + ADD CONSTRAINT account_tax_code_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_code_template account_tax_code_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_template + ADD CONSTRAINT account_tax_code_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_group account_tax_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_group + ADD CONSTRAINT account_tax_group_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_line account_tax_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_line + ADD CONSTRAINT account_tax_line_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_line_template account_tax_line_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_line_template + ADD CONSTRAINT account_tax_line_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax account_tax_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax + ADD CONSTRAINT account_tax_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_rule_line account_tax_rule_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line + ADD CONSTRAINT account_tax_rule_line_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_rule_line_template account_tax_rule_line_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line_template + ADD CONSTRAINT account_tax_rule_line_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_rule account_tax_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule + ADD CONSTRAINT account_tax_rule_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_rule_template account_tax_rule_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_template + ADD CONSTRAINT account_tax_rule_template_pkey PRIMARY KEY (id); + + +-- +-- Name: account_tax_template account_tax_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_template + ADD CONSTRAINT account_tax_template_pkey PRIMARY KEY (id); + + +-- +-- Name: company_company company_company_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.company_company + ADD CONSTRAINT company_company_pkey PRIMARY KEY (id); + + +-- +-- Name: company_employee company_employee_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.company_employee + ADD CONSTRAINT company_employee_pkey PRIMARY KEY (id); + + +-- +-- Name: country_country country_country_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_country + ADD CONSTRAINT country_country_pkey PRIMARY KEY (id); + + +-- +-- Name: country_organization_member country_organization_member_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_organization_member + ADD CONSTRAINT country_organization_member_pkey PRIMARY KEY (id); + + +-- +-- Name: country_organization country_organization_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_organization + ADD CONSTRAINT country_organization_pkey PRIMARY KEY (id); + + +-- +-- Name: country_postal_code country_postal_code_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_postal_code + ADD CONSTRAINT country_postal_code_pkey PRIMARY KEY (id); + + +-- +-- Name: country_region country_region_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_region + ADD CONSTRAINT country_region_pkey PRIMARY KEY (id); + + +-- +-- Name: country_subdivision country_subdivision_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_subdivision + ADD CONSTRAINT country_subdivision_pkey PRIMARY KEY (id); + + +-- +-- Name: cron_company_rel cron_company_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.cron_company_rel + ADD CONSTRAINT cron_company_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: currency_cron-currency_currency currency_cron-currency_currency_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."currency_cron-currency_currency" + ADD CONSTRAINT "currency_cron-currency_currency_pkey" PRIMARY KEY (id); + + +-- +-- Name: currency_cron currency_cron_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.currency_cron + ADD CONSTRAINT currency_cron_pkey PRIMARY KEY (id); + + +-- +-- Name: currency_currency currency_currency_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.currency_currency + ADD CONSTRAINT currency_currency_pkey PRIMARY KEY (id); + + +-- +-- Name: currency_currency_rate currency_currency_rate_date_currency_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.currency_currency_rate + ADD CONSTRAINT currency_currency_rate_date_currency_uniq UNIQUE (date, currency); + + +-- +-- Name: currency_currency_rate currency_currency_rate_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.currency_currency_rate + ADD CONSTRAINT currency_currency_rate_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_action-res_group ir_action-res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_action-res_group" + ADD CONSTRAINT "ir_action-res_group_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_action_act_window_domain ir_action_act_window_domain_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_act_window_domain + ADD CONSTRAINT ir_action_act_window_domain_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_action_act_window ir_action_act_window_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_act_window + ADD CONSTRAINT ir_action_act_window_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_action_act_window_view ir_action_act_window_view_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_act_window_view + ADD CONSTRAINT ir_action_act_window_view_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_action_keyword ir_action_keyword_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_keyword + ADD CONSTRAINT ir_action_keyword_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_action ir_action_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action + ADD CONSTRAINT ir_action_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_action_report ir_action_report_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_report + ADD CONSTRAINT ir_action_report_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_action_url ir_action_url_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_url + ADD CONSTRAINT ir_action_url_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_action_wizard ir_action_wizard_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_wizard + ADD CONSTRAINT ir_action_wizard_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_attachment ir_attachment_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_attachment + ADD CONSTRAINT ir_attachment_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_avatar_cache ir_avatar_cache_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_avatar_cache + ADD CONSTRAINT ir_avatar_cache_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_avatar_cache ir_avatar_cache_size_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_avatar_cache + ADD CONSTRAINT ir_avatar_cache_size_unique UNIQUE (avatar, size); + + +-- +-- Name: ir_avatar ir_avatar_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_avatar + ADD CONSTRAINT ir_avatar_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_avatar ir_avatar_resource_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_avatar + ADD CONSTRAINT ir_avatar_resource_unique UNIQUE (resource); + + +-- +-- Name: ir_calendar_day ir_calendar_day_index_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_calendar_day + ADD CONSTRAINT ir_calendar_day_index_unique UNIQUE (index); + + +-- +-- Name: ir_calendar_day ir_calendar_day_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_calendar_day + ADD CONSTRAINT ir_calendar_day_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_calendar_month ir_calendar_month_index_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_calendar_month + ADD CONSTRAINT ir_calendar_month_index_unique UNIQUE (index); + + +-- +-- Name: ir_calendar_month ir_calendar_month_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_calendar_month + ADD CONSTRAINT ir_calendar_month_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_configuration ir_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_configuration + ADD CONSTRAINT ir_configuration_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_configuration ir_configuration_singleton; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_configuration + ADD CONSTRAINT ir_configuration_singleton EXCLUDE USING btree (((id * 0)) WITH =); + + +-- +-- Name: ir_cron ir_cron_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_cron + ADD CONSTRAINT ir_cron_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_email_address ir_email_address_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_email_address + ADD CONSTRAINT ir_email_address_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_email ir_email_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_email + ADD CONSTRAINT ir_email_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_email_template-ir_action_report ir_email_template-ir_action_report_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_email_template-ir_action_report" + ADD CONSTRAINT "ir_email_template-ir_action_report_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_email_template ir_email_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_email_template + ADD CONSTRAINT ir_email_template_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_error ir_error_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_error + ADD CONSTRAINT ir_error_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_export-res_group ir_export-res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_export-res_group" + ADD CONSTRAINT "ir_export-res_group_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_export-write-res_group ir_export-write-res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_export-write-res_group" + ADD CONSTRAINT "ir_export-write-res_group_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_export_line ir_export_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_export_line + ADD CONSTRAINT ir_export_line_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_export ir_export_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_export + ADD CONSTRAINT ir_export_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_lang ir_lang_code_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_lang + ADD CONSTRAINT ir_lang_code_unique UNIQUE (code); + + +-- +-- Name: ir_lang ir_lang_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_lang + ADD CONSTRAINT ir_lang_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_message ir_message_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_message + ADD CONSTRAINT ir_message_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model_access ir_model_access_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_access + ADD CONSTRAINT ir_model_access_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model_button-button_reset ir_model_button-button_reset_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_model_button-button_reset" + ADD CONSTRAINT "ir_model_button-button_reset_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_model_button-res_group ir_model_button-res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_model_button-res_group" + ADD CONSTRAINT "ir_model_button-res_group_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_model_button_click ir_model_button_click_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button_click + ADD CONSTRAINT ir_model_button_click_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model_button ir_model_button_name_model_exclude; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button + ADD CONSTRAINT ir_model_button_name_model_exclude EXCLUDE USING btree (name WITH =, model WITH =) WHERE ((active = true)); + + +-- +-- Name: ir_model_button ir_model_button_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button + ADD CONSTRAINT ir_model_button_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model_button_rule ir_model_button_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button_rule + ADD CONSTRAINT ir_model_button_rule_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model_data ir_model_data_fs_id_module_model_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_data + ADD CONSTRAINT ir_model_data_fs_id_module_model_uniq UNIQUE (fs_id, module, model); + + +-- +-- Name: ir_model_data ir_model_data_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_data + ADD CONSTRAINT ir_model_data_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model_field_access ir_model_field_access_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_field_access + ADD CONSTRAINT ir_model_field_access_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model_field ir_model_field_name_model_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_field + ADD CONSTRAINT ir_model_field_name_model_uniq UNIQUE (name, model); + + +-- +-- Name: ir_model_field ir_model_field_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_field + ADD CONSTRAINT ir_model_field_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model_log ir_model_log_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_log + ADD CONSTRAINT ir_model_log_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_model ir_model_model_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model + ADD CONSTRAINT ir_model_model_uniq UNIQUE (model); + + +-- +-- Name: ir_model ir_model_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model + ADD CONSTRAINT ir_model_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_module_config_wizard_item ir_module_config_wizard_item_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_module_config_wizard_item + ADD CONSTRAINT ir_module_config_wizard_item_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_module_dependency ir_module_dependency_name_module_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_module_dependency + ADD CONSTRAINT ir_module_dependency_name_module_uniq UNIQUE (name, module); + + +-- +-- Name: ir_module_dependency ir_module_dependency_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_module_dependency + ADD CONSTRAINT ir_module_dependency_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_module ir_module_name_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_module + ADD CONSTRAINT ir_module_name_uniq UNIQUE (name); + + +-- +-- Name: ir_module ir_module_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_module + ADD CONSTRAINT ir_module_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_note ir_note_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_note + ADD CONSTRAINT ir_note_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_note_read ir_note_read_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_note_read + ADD CONSTRAINT ir_note_read_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_queue ir_queue_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_queue + ADD CONSTRAINT ir_queue_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_rule_group-res_group ir_rule_group-res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_rule_group-res_group" + ADD CONSTRAINT "ir_rule_group-res_group_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_rule_group ir_rule_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_rule_group + ADD CONSTRAINT ir_rule_group_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_rule ir_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_rule + ADD CONSTRAINT ir_rule_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_sequence ir_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_sequence + ADD CONSTRAINT ir_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_sequence_strict ir_sequence_strict_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_sequence_strict + ADD CONSTRAINT ir_sequence_strict_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_sequence_type-res_group ir_sequence_type-res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_sequence_type-res_group" + ADD CONSTRAINT "ir_sequence_type-res_group_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_sequence_type ir_sequence_type_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_sequence_type + ADD CONSTRAINT ir_sequence_type_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_session ir_session_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_session + ADD CONSTRAINT ir_session_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_session_wizard ir_session_wizard_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_session_wizard + ADD CONSTRAINT ir_session_wizard_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_translation ir_translation_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_translation + ADD CONSTRAINT ir_translation_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_trigger_log ir_trigger_log_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_trigger_log + ADD CONSTRAINT ir_trigger_log_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_trigger ir_trigger_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_trigger + ADD CONSTRAINT ir_trigger_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_ui_icon ir_ui_icon_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_icon + ADD CONSTRAINT ir_ui_icon_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_ui_menu-res_group ir_ui_menu-res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_ui_menu-res_group" + ADD CONSTRAINT "ir_ui_menu-res_group_pkey" PRIMARY KEY (id); + + +-- +-- Name: ir_ui_menu_favorite ir_ui_menu_favorite_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_menu_favorite + ADD CONSTRAINT ir_ui_menu_favorite_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_ui_menu ir_ui_menu_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_menu + ADD CONSTRAINT ir_ui_menu_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_ui_view ir_ui_view_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view + ADD CONSTRAINT ir_ui_view_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_ui_view_search ir_ui_view_search_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_search + ADD CONSTRAINT ir_ui_view_search_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_ui_view_tree_optional ir_ui_view_tree_optional_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_tree_optional + ADD CONSTRAINT ir_ui_view_tree_optional_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_ui_view_tree_state ir_ui_view_tree_state_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_tree_state + ADD CONSTRAINT ir_ui_view_tree_state_pkey PRIMARY KEY (id); + + +-- +-- Name: ir_ui_view_tree_width ir_ui_view_tree_width_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_tree_width + ADD CONSTRAINT ir_ui_view_tree_width_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_singleton; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_singleton EXCLUDE USING btree (((id * 0)) WITH =); + + +-- +-- Name: optical_equipment_contract-optical_equipment_equipment optical_equipment_contract-optical_equipment_equipment_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_contract-optical_equipment_equipment" + ADD CONSTRAINT "optical_equipment_contract-optical_equipment_equipment_pkey" PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_contract optical_equipment_contract_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_contract + ADD CONSTRAINT optical_equipment_contract_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_create_contract optical_equipment_create_contract_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_create_contract + ADD CONSTRAINT optical_equipment_create_contract_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_equipment-change_propietary_form optical_equipment_equipment-change_propietary_form_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_equipment-change_propietary_form" + ADD CONSTRAINT "optical_equipment_equipment-change_propietary_form_pkey" PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_equipment-party_party optical_equipment_equipment-party_party_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_equipment-party_party" + ADD CONSTRAINT "optical_equipment_equipment-party_party_pkey" PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance-optical_equipment_equipment optical_equipment_maintenance-optical_equipment_equipment_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance-optical_equipment_equipment" + ADD CONSTRAINT "optical_equipment_maintenance-optical_equipment_equipment_pkey" PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance_activity optical_equipment_maintenance_activity_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_activity + ADD CONSTRAINT optical_equipment_maintenance_activity_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance_calibration optical_equipment_maintenance_calibration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_calibration + ADD CONSTRAINT optical_equipment_maintenance_calibration_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance_calibration_sample optical_equipment_maintenance_calibration_sample_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_calibration_sample + ADD CONSTRAINT optical_equipment_maintenance_calibration_sample_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance_diary optical_equipment_maintenance_diary_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_diary + ADD CONSTRAINT optical_equipment_maintenance_diary_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance_line optical_equipment_maintenance_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_line + ADD CONSTRAINT optical_equipment_maintenance_line_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance optical_equipment_maintenance_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance + ADD CONSTRAINT optical_equipment_maintenance_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance_service-equipment_contract optical_equipment_maintenance_service-equipment_contract_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance_service-equipment_contract" + ADD CONSTRAINT "optical_equipment_maintenance_service-equipment_contract_pkey" PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance_service-maintenance_diary optical_equipment_maintenance_service-maintenance_diary_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance_service-maintenance_diary" + ADD CONSTRAINT "optical_equipment_maintenance_service-maintenance_diary_pkey" PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_maintenance_service optical_equipment_maintenance_service_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_service + ADD CONSTRAINT optical_equipment_maintenance_service_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_product_pattern optical_equipment_product_pattern_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_product_pattern + ADD CONSTRAINT optical_equipment_product_pattern_pkey PRIMARY KEY (id); + + +-- +-- Name: optical_equipment_use_pattern optical_equipment_use_pattern_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_use_pattern + ADD CONSTRAINT optical_equipment_use_pattern_pkey PRIMARY KEY (id); + + +-- +-- Name: party_address_format party_address_format_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_address_format + ADD CONSTRAINT party_address_format_pkey PRIMARY KEY (id); + + +-- +-- Name: party_address party_address_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_address + ADD CONSTRAINT party_address_pkey PRIMARY KEY (id); + + +-- +-- Name: party_address_subdivision_type party_address_subdivision_type_country_code_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_address_subdivision_type + ADD CONSTRAINT party_address_subdivision_type_country_code_unique EXCLUDE USING btree (country_code WITH =) WHERE ((active = true)); + + +-- +-- Name: party_address_subdivision_type party_address_subdivision_type_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_address_subdivision_type + ADD CONSTRAINT party_address_subdivision_type_pkey PRIMARY KEY (id); + + +-- +-- Name: party_category party_category_name_parent_exclude; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_category + ADD CONSTRAINT party_category_name_parent_exclude EXCLUDE USING btree (name WITH =, COALESCE(parent, '-1'::integer) WITH =); + + +-- +-- Name: party_category party_category_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_category + ADD CONSTRAINT party_category_pkey PRIMARY KEY (id); + + +-- +-- Name: party_category_rel party_category_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_category_rel + ADD CONSTRAINT party_category_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: party_configuration_party_lang party_configuration_party_lang_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_configuration_party_lang + ADD CONSTRAINT party_configuration_party_lang_pkey PRIMARY KEY (id); + + +-- +-- Name: party_configuration_party_sequence party_configuration_party_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_configuration_party_sequence + ADD CONSTRAINT party_configuration_party_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: party_configuration party_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_configuration + ADD CONSTRAINT party_configuration_pkey PRIMARY KEY (id); + + +-- +-- Name: party_configuration party_configuration_singleton; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_configuration + ADD CONSTRAINT party_configuration_singleton EXCLUDE USING btree (((id * 0)) WITH =); + + +-- +-- Name: party_contact_mechanism_language party_contact_mechanism_language_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_contact_mechanism_language + ADD CONSTRAINT party_contact_mechanism_language_pkey PRIMARY KEY (id); + + +-- +-- Name: party_contact_mechanism party_contact_mechanism_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_contact_mechanism + ADD CONSTRAINT party_contact_mechanism_pkey PRIMARY KEY (id); + + +-- +-- Name: party_identifier party_identifier_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_identifier + ADD CONSTRAINT party_identifier_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party-delivered_to-stock_location party_party-delivered_to-stock_location_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."party_party-delivered_to-stock_location" + ADD CONSTRAINT "party_party-delivered_to-stock_location_pkey" PRIMARY KEY (id); + + +-- +-- Name: party_party_account party_party_account_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_account + ADD CONSTRAINT party_party_account_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party party_party_code_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party + ADD CONSTRAINT party_party_code_uniq UNIQUE (code); + + +-- +-- Name: party_party_customer_code party_party_customer_code_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_customer_code + ADD CONSTRAINT party_party_customer_code_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party_customer_currency party_party_customer_currency_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_customer_currency + ADD CONSTRAINT party_party_customer_currency_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party_lang party_party_lang_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_lang + ADD CONSTRAINT party_party_lang_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party_location party_party_location_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_location + ADD CONSTRAINT party_party_location_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party_payment_term party_party_payment_term_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_payment_term + ADD CONSTRAINT party_party_payment_term_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party party_party_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party + ADD CONSTRAINT party_party_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party_sale_method party_party_sale_method_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_sale_method + ADD CONSTRAINT party_party_sale_method_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party_supplier_currency party_party_supplier_currency_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_supplier_currency + ADD CONSTRAINT party_party_supplier_currency_pkey PRIMARY KEY (id); + + +-- +-- Name: party_party_supplier_lead_time party_party_supplier_lead_time_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_supplier_lead_time + ADD CONSTRAINT party_party_supplier_lead_time_pkey PRIMARY KEY (id); + + +-- +-- Name: product_attribute-product_attribute-set product_attribute-product_attribute-set_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."product_attribute-product_attribute-set" + ADD CONSTRAINT "product_attribute-product_attribute-set_pkey" PRIMARY KEY (id); + + +-- +-- Name: product_attribute product_attribute_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_attribute + ADD CONSTRAINT product_attribute_pkey PRIMARY KEY (id); + + +-- +-- Name: product_attribute_set product_attribute_set_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_attribute_set + ADD CONSTRAINT product_attribute_set_pkey PRIMARY KEY (id); + + +-- +-- Name: product_category_account product_category_account_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_account + ADD CONSTRAINT product_category_account_pkey PRIMARY KEY (id); + + +-- +-- Name: product_category_customer_taxes_rel product_category_customer_taxes_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_customer_taxes_rel + ADD CONSTRAINT product_category_customer_taxes_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: product_category product_category_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category + ADD CONSTRAINT product_category_pkey PRIMARY KEY (id); + + +-- +-- Name: product_category_supplier_taxes_rel product_category_supplier_taxes_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_supplier_taxes_rel + ADD CONSTRAINT product_category_supplier_taxes_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: product_configuration_default_cost_price_method product_configuration_default_cost_price_method_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_configuration_default_cost_price_method + ADD CONSTRAINT product_configuration_default_cost_price_method_pkey PRIMARY KEY (id); + + +-- +-- Name: product_configuration_default_lead_time product_configuration_default_lead_time_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_configuration_default_lead_time + ADD CONSTRAINT product_configuration_default_lead_time_pkey PRIMARY KEY (id); + + +-- +-- Name: product_configuration product_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_configuration + ADD CONSTRAINT product_configuration_pkey PRIMARY KEY (id); + + +-- +-- Name: product_configuration product_configuration_singleton; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_configuration + ADD CONSTRAINT product_configuration_singleton EXCLUDE USING btree (((id * 0)) WITH =); + + +-- +-- Name: product_cost_price_method product_cost_price_method_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price_method + ADD CONSTRAINT product_cost_price_method_pkey PRIMARY KEY (id); + + +-- +-- Name: product_cost_price product_cost_price_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price + ADD CONSTRAINT product_cost_price_pkey PRIMARY KEY (id); + + +-- +-- Name: product_cost_price_revision product_cost_price_revision_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price_revision + ADD CONSTRAINT product_cost_price_revision_pkey PRIMARY KEY (id); + + +-- +-- Name: product_identifier product_identifier_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_identifier + ADD CONSTRAINT product_identifier_pkey PRIMARY KEY (id); + + +-- +-- Name: product_image_cache product_image_cache_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_image_cache + ADD CONSTRAINT product_image_cache_pkey PRIMARY KEY (id); + + +-- +-- Name: product_image_cache product_image_cache_size_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_image_cache + ADD CONSTRAINT product_image_cache_size_unique UNIQUE (product_image, size); + + +-- +-- Name: product_image product_image_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_image + ADD CONSTRAINT product_image_pkey PRIMARY KEY (id); + + +-- +-- Name: product_lead_time product_lead_time_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_lead_time + ADD CONSTRAINT product_lead_time_pkey PRIMARY KEY (id); + + +-- +-- Name: product_list_price product_list_price_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_list_price + ADD CONSTRAINT product_list_price_pkey PRIMARY KEY (id); + + +-- +-- Name: product_product product_product_code_exclude; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_product + ADD CONSTRAINT product_product_code_exclude EXCLUDE USING btree (code WITH =) WHERE (((active = true) AND ((code)::text <> ''::text))); + + +-- +-- Name: product_product product_product_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_product + ADD CONSTRAINT product_product_pkey PRIMARY KEY (id); + + +-- +-- Name: product_template-product_category product_template-product_category_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."product_template-product_category" + ADD CONSTRAINT "product_template-product_category_pkey" PRIMARY KEY (id); + + +-- +-- Name: product_template product_template_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_pkey PRIMARY KEY (id); + + +-- +-- Name: product_uom_category product_uom_category_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_uom_category + ADD CONSTRAINT product_uom_category_pkey PRIMARY KEY (id); + + +-- +-- Name: product_uom product_uom_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_uom + ADD CONSTRAINT product_uom_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_configuration purchase_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_configuration + ADD CONSTRAINT purchase_configuration_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_configuration_purchase_method purchase_configuration_purchase_method_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_configuration_purchase_method + ADD CONSTRAINT purchase_configuration_purchase_method_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_configuration_sequence purchase_configuration_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_configuration_sequence + ADD CONSTRAINT purchase_configuration_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_configuration purchase_configuration_singleton; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_configuration + ADD CONSTRAINT purchase_configuration_singleton EXCLUDE USING btree (((id * 0)) WITH =); + + +-- +-- Name: purchase_invoice_ignored_rel purchase_invoice_ignored_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_invoice_ignored_rel + ADD CONSTRAINT purchase_invoice_ignored_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_invoice_recreated_rel purchase_invoice_recreated_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_invoice_recreated_rel + ADD CONSTRAINT purchase_invoice_recreated_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_line_account_tax purchase_line_account_tax_line_tax_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_account_tax + ADD CONSTRAINT purchase_line_account_tax_line_tax_unique UNIQUE (line, tax); + + +-- +-- Name: purchase_line_account_tax purchase_line_account_tax_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_account_tax + ADD CONSTRAINT purchase_line_account_tax_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_line_moves_ignored_rel purchase_line_moves_ignored_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_moves_ignored_rel + ADD CONSTRAINT purchase_line_moves_ignored_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_line_moves_recreated_rel purchase_line_moves_recreated_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_moves_recreated_rel + ADD CONSTRAINT purchase_line_moves_recreated_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_line purchase_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line + ADD CONSTRAINT purchase_line_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_product_supplier purchase_product_supplier_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_product_supplier + ADD CONSTRAINT purchase_product_supplier_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_product_supplier_price purchase_product_supplier_price_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_product_supplier_price + ADD CONSTRAINT purchase_product_supplier_price_pkey PRIMARY KEY (id); + + +-- +-- Name: purchase_purchase purchase_purchase_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_pkey PRIMARY KEY (id); + + +-- +-- Name: res_group res_group_name_uniq; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_group + ADD CONSTRAINT res_group_name_uniq UNIQUE (name); + + +-- +-- Name: res_group res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_group + ADD CONSTRAINT res_group_pkey PRIMARY KEY (id); + + +-- +-- Name: res_user-company_company res_user-company_company_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-company_company" + ADD CONSTRAINT "res_user-company_company_pkey" PRIMARY KEY (id); + + +-- +-- Name: res_user-company_employee res_user-company_employee_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-company_employee" + ADD CONSTRAINT "res_user-company_employee_pkey" PRIMARY KEY (id); + + +-- +-- Name: res_user-ir_action res_user-ir_action_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-ir_action" + ADD CONSTRAINT "res_user-ir_action_pkey" PRIMARY KEY (id); + + +-- +-- Name: res_user-res_group res_user-res_group_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-res_group" + ADD CONSTRAINT "res_user-res_group_pkey" PRIMARY KEY (id); + + +-- +-- Name: res_user_application res_user_application_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user_application + ADD CONSTRAINT res_user_application_pkey PRIMARY KEY (id); + + +-- +-- Name: res_user_device res_user_device_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user_device + ADD CONSTRAINT res_user_device_pkey PRIMARY KEY (id); + + +-- +-- Name: res_user_login_attempt res_user_login_attempt_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user_login_attempt + ADD CONSTRAINT res_user_login_attempt_pkey PRIMARY KEY (id); + + +-- +-- Name: res_user res_user_login_key; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user + ADD CONSTRAINT res_user_login_key UNIQUE (login); + + +-- +-- Name: res_user res_user_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user + ADD CONSTRAINT res_user_pkey PRIMARY KEY (id); + + +-- +-- Name: res_user_warning res_user_warning_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user_warning + ADD CONSTRAINT res_user_warning_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_configuration sale_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_configuration + ADD CONSTRAINT sale_configuration_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_configuration_sale_method sale_configuration_sale_method_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_configuration_sale_method + ADD CONSTRAINT sale_configuration_sale_method_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_configuration_sequence sale_configuration_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_configuration_sequence + ADD CONSTRAINT sale_configuration_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_configuration sale_configuration_singleton; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_configuration + ADD CONSTRAINT sale_configuration_singleton EXCLUDE USING btree (((id * 0)) WITH =); + + +-- +-- Name: sale_invoice_ignored_rel sale_invoice_ignored_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_invoice_ignored_rel + ADD CONSTRAINT sale_invoice_ignored_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_invoice_recreated_rel sale_invoice_recreated_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_invoice_recreated_rel + ADD CONSTRAINT sale_invoice_recreated_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_line_account_tax sale_line_account_tax_line_tax_unique; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_account_tax + ADD CONSTRAINT sale_line_account_tax_line_tax_unique UNIQUE (line, tax); + + +-- +-- Name: sale_line_account_tax sale_line_account_tax_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_account_tax + ADD CONSTRAINT sale_line_account_tax_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_line_moves_ignored_rel sale_line_moves_ignored_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_moves_ignored_rel + ADD CONSTRAINT sale_line_moves_ignored_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_line_moves_recreated_rel sale_line_moves_recreated_rel_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_moves_recreated_rel + ADD CONSTRAINT sale_line_moves_recreated_rel_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_line sale_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line + ADD CONSTRAINT sale_line_pkey PRIMARY KEY (id); + + +-- +-- Name: sale_sale sale_sale_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_configuration_location stock_configuration_location_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_location + ADD CONSTRAINT stock_configuration_location_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_configuration stock_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration + ADD CONSTRAINT stock_configuration_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_configuration_sequence stock_configuration_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_sequence + ADD CONSTRAINT stock_configuration_sequence_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_configuration stock_configuration_singleton; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration + ADD CONSTRAINT stock_configuration_singleton EXCLUDE USING btree (((id * 0)) WITH =); + + +-- +-- Name: stock_inventory_line stock_inventory_line_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_inventory_line + ADD CONSTRAINT stock_inventory_line_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_inventory stock_inventory_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_inventory + ADD CONSTRAINT stock_inventory_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_location_lead_time stock_location_lead_time_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location_lead_time + ADD CONSTRAINT stock_location_lead_time_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_location stock_location_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_location_waste stock_location_waste_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location_waste + ADD CONSTRAINT stock_location_waste_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_move stock_move_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_move + ADD CONSTRAINT stock_move_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_period_cache stock_period_cache_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_period_cache + ADD CONSTRAINT stock_period_cache_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_period stock_period_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_period + ADD CONSTRAINT stock_period_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_shipment_in stock_shipment_in_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_shipment_in_return stock_shipment_in_return_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in_return + ADD CONSTRAINT stock_shipment_in_return_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_shipment_internal stock_shipment_internal_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_internal + ADD CONSTRAINT stock_shipment_internal_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_shipment_out stock_shipment_out_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_pkey PRIMARY KEY (id); + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_pkey; Type: CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_pkey PRIMARY KEY (id); + + +-- +-- Name: idx_0018de0b6bd17f48154a2579b4a6e02295e24d838edd9744e1120c22352; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_0018de0b6bd17f48154a2579b4a6e02295e24d838edd9744e1120c22352 ON public.product_category_supplier_taxes_rel USING btree (category); + + +-- +-- Name: idx_04535aafbfe3f34a48c91fae3976cdb4c94d6e9a539e63c83e6dcf444d6; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_04535aafbfe3f34a48c91fae3976cdb4c94d6e9a539e63c83e6dcf444d6 ON public.purchase_line_moves_recreated_rel USING btree (purchase_line); + + +-- +-- Name: idx_08f1d11c3147b22a5767a687cc0f8ca3730c47ae61a81bf044f6b0ce04e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_08f1d11c3147b22a5767a687cc0f8ca3730c47ae61a81bf044f6b0ce04e ON public."optical_equipment_equipment-party_party" USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_090d027c7c35ab5de60b06b77ea91805ee091921b8e7fe553e9688501d3; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_090d027c7c35ab5de60b06b77ea91805ee091921b8e7fe553e9688501d3 ON public.stock_move USING btree (to_location, product, COALESCE(effective_date, planned_date, '9999-12-31'::date)); + + +-- +-- Name: idx_0ca4cfabf07564075d2155e02f3ba98799082234a17605ee95ec718a265; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_0ca4cfabf07564075d2155e02f3ba98799082234a17605ee95ec718a265 ON public.optical_equipment_maintenance_activity USING btree (maintenance) WHERE (maintenance IS NOT NULL); + + +-- +-- Name: idx_10c6466c65e1e39768bef807f7934779d0c55e5b102e9cbc55ecd19b362; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_10c6466c65e1e39768bef807f7934779d0c55e5b102e9cbc55ecd19b362 ON public."account_invoice-additional-account_move" USING btree (invoice); + + +-- +-- Name: idx_11c577e755ab172ff463a9593be592c0a566be11f6fbedc473ce64f96c5; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_11c577e755ab172ff463a9593be592c0a566be11f6fbedc473ce64f96c5 ON public.account_invoice_payment_term_line_delta USING btree (line); + + +-- +-- Name: idx_11c68751c99ddcccc5cebc997903f0e4f28585d8123c1532a45e0b4dddd; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_11c68751c99ddcccc5cebc997903f0e4f28585d8123c1532a45e0b4dddd ON public.optical_equipment_maintenance_diary USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_13bf287d47ae81a8e019c11669b70ac60ad0c9656ae2737d72892730308; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_13bf287d47ae81a8e019c11669b70ac60ad0c9656ae2737d72892730308 ON public.sale_sale USING hash (invoice_state) WHERE ((state)::text = ANY ((ARRAY['none'::character varying, 'waiting'::character varying, 'exception'::character varying])::text[])); + + +-- +-- Name: idx_15eef86e4bf2371fea52e38e27ff9fe62dcce70725b6ffe9431f3a4d018; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_15eef86e4bf2371fea52e38e27ff9fe62dcce70725b6ffe9431f3a4d018 ON public."party_party-delivered_to-stock_location" USING btree (location); + + +-- +-- Name: idx_19215ae1a7e8025b460055748c07f4035eabf9c91bb7e4c7ef2674cbf35; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_19215ae1a7e8025b460055748c07f4035eabf9c91bb7e4c7ef2674cbf35 ON public.optical_equipment_maintenance_calibration_sample USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_1c124e309b6f44ba5d69158026e252b77ce911ab5daf672b84a913bac6c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_1c124e309b6f44ba5d69158026e252b77ce911ab5daf672b84a913bac6c ON public.account_invoice_payment_method USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_1f7b2ba95e638f734d1b351479a7f30267873e49755c61ff16bdccce31a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_1f7b2ba95e638f734d1b351479a7f30267873e49755c61ff16bdccce31a ON public.account_invoice_alternative_payee USING btree (invoice); + + +-- +-- Name: idx_2216d93c1d5937fe1ba839071c5bbd1b5667c8793f8a2c63555fad42384; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_2216d93c1d5937fe1ba839071c5bbd1b5667c8793f8a2c63555fad42384 ON public.account_invoice_report_revision USING btree (invoice); + + +-- +-- Name: idx_2a90e4870442e72121bb52a8cf9d19a4a2045ed415c506fbff83494bba1; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_2a90e4870442e72121bb52a8cf9d19a4a2045ed415c506fbff83494bba1 ON public.account_invoice_payment_term_line USING btree (payment); + + +-- +-- Name: idx_2dc40000214ba070ffb0541b1d9a1395c054cba432f67bcf29b76cca0af; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_2dc40000214ba070ffb0541b1d9a1395c054cba432f67bcf29b76cca0af ON public.account_move_reconcile_write_off USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_2e747d478906e503fd41537ce713d0b8aafb3cb366c61d16823980a07d8; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_2e747d478906e503fd41537ce713d0b8aafb3cb366c61d16823980a07d8 ON public.ir_avatar USING btree (resource varchar_pattern_ops, (("substring"((resource)::text, ("position"((resource)::text, ','::text) + 1)))::integer)); + + +-- +-- Name: idx_308b60ab4111d392656dc2200ee52739f1022a00e88847e9b957f34063b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_308b60ab4111d392656dc2200ee52739f1022a00e88847e9b957f34063b ON public.stock_shipment_out_return USING hash (state) WHERE ((state)::text = ANY ((ARRAY['draft'::character varying, 'received'::character varying])::text[])); + + +-- +-- Name: idx_32df56dacadd56519de7d06e81823625161678d458be073644c1b5c8561; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_32df56dacadd56519de7d06e81823625161678d458be073644c1b5c8561 ON public.sale_sale USING hash (shipment_state) WHERE ((state)::text = ANY ((ARRAY['none'::character varying, 'waiting'::character varying, 'exception'::character varying])::text[])); + + +-- +-- Name: idx_3ee36fd8b31109dba8636302cf6388cf9172bbb7c8934f59889617e13c0; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_3ee36fd8b31109dba8636302cf6388cf9172bbb7c8934f59889617e13c0 ON public.purchase_purchase USING hash (state) WHERE ((state)::text = ANY ((ARRAY['draft'::character varying, 'quotation'::character varying, 'confirmed'::character varying, 'processing'::character varying])::text[])); + + +-- +-- Name: idx_407a1a36fe41073c774ad4c9d40d23e74c0325ae2123544fa5af0942ae9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_407a1a36fe41073c774ad4c9d40d23e74c0325ae2123544fa5af0942ae9 ON public.account_invoice_payment_term_line USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_441012b68d878ed6d461cb338a543c90d4e1f994e37aa78533aec415aff; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_441012b68d878ed6d461cb338a543c90d4e1f994e37aa78533aec415aff ON public.sale_line_moves_ignored_rel USING btree (move); + + +-- +-- Name: idx_44671daca14df3e5b9d79ba472d144861305d13115495df271e83abf66c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_44671daca14df3e5b9d79ba472d144861305d13115495df271e83abf66c ON public.sale_sale USING hash (state) WHERE ((state)::text = ANY ((ARRAY['draft'::character varying, 'quotation'::character varying, 'confirmed'::character varying, 'processing'::character varying])::text[])); + + +-- +-- Name: idx_4736401669386c0d5aeceb81a7e2822356b05f99ca5d074dbb05ea465b6; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_4736401669386c0d5aeceb81a7e2822356b05f99ca5d074dbb05ea465b6 ON public."account_invoice_line-stock_move" USING btree (invoice_line); + + +-- +-- Name: idx_4a232667bd39dfc7d3c1c1d6988fbb4ab03c3a61c2600aa946d87837d9a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_4a232667bd39dfc7d3c1c1d6988fbb4ab03c3a61c2600aa946d87837d9a ON public.optical_equipment_maintenance_calibration USING btree (maintenance); + + +-- +-- Name: idx_4bf334c7d700cc3293974029f5aaeaba51324dbb58ebf216cb245feb785; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_4bf334c7d700cc3293974029f5aaeaba51324dbb58ebf216cb245feb785 ON public.purchase_product_supplier_price USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_4df746e05f3272e7aa06d074bd6f70407622a7224be39b01d57e19c85e7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_4df746e05f3272e7aa06d074bd6f70407622a7224be39b01d57e19c85e7 ON public.purchase_product_supplier_price USING btree (product_supplier); + + +-- +-- Name: idx_4eb47c65e84919e0277e3de1ad1a31e1d5f51850dee0e7654b76e324c48; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_4eb47c65e84919e0277e3de1ad1a31e1d5f51850dee0e7654b76e324c48 ON public.stock_shipment_in_return USING hash (state) WHERE ((state)::text = ANY ((ARRAY['draft'::character varying, 'waiting'::character varying, 'assigned'::character varying])::text[])); + + +-- +-- Name: idx_4eeb2f3b6fef415bb0d5f4488cf93e9a7e7ccc87a2eaf37c6ce006ad14d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_4eeb2f3b6fef415bb0d5f4488cf93e9a7e7ccc87a2eaf37c6ce006ad14d ON public.account_account_type_template USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_4f00b2dcb483156ec7333c52bafcb83e44046c0b04c2664166cf971674d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_4f00b2dcb483156ec7333c52bafcb83e44046c0b04c2664166cf971674d ON public.ir_module_config_wizard_item USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_51e013e763a97dd35702dd65ded9d94c94d84b0c433c6e5987c5e496200; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_51e013e763a97dd35702dd65ded9d94c94d84b0c433c6e5987c5e496200 ON public.sale_line_moves_ignored_rel USING btree (sale_line); + + +-- +-- Name: idx_54b5e5846edc835125838fe33ebcd63f91f7d6e115d61bbcc81a3658c5a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_54b5e5846edc835125838fe33ebcd63f91f7d6e115d61bbcc81a3658c5a ON public.stock_move USING btree (origin varchar_pattern_ops, (("substring"((origin)::text, ("position"((origin)::text, ','::text) + 1)))::integer)) WHERE (origin IS NOT NULL); + + +-- +-- Name: idx_54ee5f6013cf5394139e2e71cfa8208ff64d4fac1bb81c552644a73f7ff; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_54ee5f6013cf5394139e2e71cfa8208ff64d4fac1bb81c552644a73f7ff ON public.account_account_type_template USING btree (parent); + + +-- +-- Name: idx_580712ae254ae6480821dcabd63e80f2408c6b358dbfa58d16009717c58; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_580712ae254ae6480821dcabd63e80f2408c6b358dbfa58d16009717c58 ON public.stock_period USING btree (company, date DESC) WHERE ((state)::text = 'closed'::text); + + +-- +-- Name: idx_59d505cd496db8b61414d50472485f31a90a119f2b9094d40eee2d19414; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_59d505cd496db8b61414d50472485f31a90a119f2b9094d40eee2d19414 ON public.optical_equipment_maintenance USING btree (service_maintenance) WHERE (service_maintenance IS NOT NULL); + + +-- +-- Name: idx_5a14a1309427a6d27f3ff59bfe035caaf8d8ecf3e7d45d35833c2711aa8; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_5a14a1309427a6d27f3ff59bfe035caaf8d8ecf3e7d45d35833c2711aa8 ON public.party_contact_mechanism_language USING btree (contact_mechanism) WHERE (contact_mechanism IS NOT NULL); + + +-- +-- Name: idx_5b7073bdba5e375228dc484ff2a18cf86683c865c285266793ed033a05c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_5b7073bdba5e375228dc484ff2a18cf86683c865c285266793ed033a05c ON public.sale_line_moves_recreated_rel USING btree (move); + + +-- +-- Name: idx_5ddd4b960809fef89f180eb75f8a30a37f9925eee70eb7beedaddc2b41f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_5ddd4b960809fef89f180eb75f8a30a37f9925eee70eb7beedaddc2b41f ON public.account_fiscalyear_invoice_sequence USING btree (fiscalyear); + + +-- +-- Name: idx_5f3de56ee74ba6a4351e761656985fed2f3bdf0cb86132d01404c10bddd; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_5f3de56ee74ba6a4351e761656985fed2f3bdf0cb86132d01404c10bddd ON public."optical_equipment_maintenance_service-equipment_contract" USING btree (contract) WHERE (contract IS NOT NULL); + + +-- +-- Name: idx_60313faeab5ea34d328901af21dcd233dd938c515f2672b61d6f01decaf; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_60313faeab5ea34d328901af21dcd233dd938c515f2672b61d6f01decaf ON public.purchase_line_moves_ignored_rel USING btree (purchase_line); + + +-- +-- Name: idx_624b4eb6d39a462c6db0e0e143f17ec0ddbe19de930b79883011f2029f0; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_624b4eb6d39a462c6db0e0e143f17ec0ddbe19de930b79883011f2029f0 ON public."ir_email_template-ir_action_report" USING btree (template); + + +-- +-- Name: idx_63cfb0a75175503d06cdc7be8dff99ecd76f7400d93f9f9e16f7f81a1bc; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_63cfb0a75175503d06cdc7be8dff99ecd76f7400d93f9f9e16f7f81a1bc ON public.account_account_type_template USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_66041a30b3eb13dba501b7fa3a5646df6294bad0c8c2c9b2a712d02be91; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_66041a30b3eb13dba501b7fa3a5646df6294bad0c8c2c9b2a712d02be91 ON public.ir_action_keyword USING btree (model varchar_pattern_ops, (("substring"((model)::text, ("position"((model)::text, ','::text) + 1)))::integer)) WHERE (model IS NOT NULL); + + +-- +-- Name: idx_663087e65df51b3e754463a72d9e2b793f881149c72351f5927e967553d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_663087e65df51b3e754463a72d9e2b793f881149c72351f5927e967553d ON public.account_tax_rule_line_template USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_689991ba7f818848c9e4144fb709cf2540ef810e99b540328d7a1d57256; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_689991ba7f818848c9e4144fb709cf2540ef810e99b540328d7a1d57256 ON public.account_invoice_payment_term USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_6bd18ed2a7954ac12aef1298595fd02e3ef5e7f8caec39644b97f76c880; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_6bd18ed2a7954ac12aef1298595fd02e3ef5e7f8caec39644b97f76c880 ON public.account_invoice USING hash (state) WHERE ((state)::text = ANY ((ARRAY['draft'::character varying, 'validated'::character varying, 'posted'::character varying])::text[])); + + +-- +-- Name: idx_6be4c0f393b7ded593f6507d15d9e6b81394bb43389b1a18caf41a1f01d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_6be4c0f393b7ded593f6507d15d9e6b81394bb43389b1a18caf41a1f01d ON public.account_account_template_tax_rel USING btree (tax); + + +-- +-- Name: idx_6c04214cddc8882aba1a8a9a2b007a3721382be78b8140f22d72ebae9a8; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_6c04214cddc8882aba1a8a9a2b007a3721382be78b8140f22d72ebae9a8 ON public.purchase_purchase USING hash (shipment_state) WHERE ((state)::text = ANY ((ARRAY['none'::character varying, 'waiting'::character varying, 'exception'::character varying])::text[])); + + +-- +-- Name: idx_6c9224d3ecbdb05592b9152ff84bc54993d5cfd012dca14c44ff2ba904b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_6c9224d3ecbdb05592b9152ff84bc54993d5cfd012dca14c44ff2ba904b ON public.account_invoice_alternative_payee USING btree (party); + + +-- +-- Name: idx_6d8c2f6c25fb5de3ef1cfdac44acf30b3a271ef5813d5cc2e28067dc589; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_6d8c2f6c25fb5de3ef1cfdac44acf30b3a271ef5813d5cc2e28067dc589 ON public."optical_equipment_maintenance_service-equipment_contract" USING btree (maintenance_services) WHERE (maintenance_services IS NOT NULL); + + +-- +-- Name: idx_6e01468c53c8f4328462938d8a174b0c8429d115e9fe12908a9865a3468; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_6e01468c53c8f4328462938d8a174b0c8429d115e9fe12908a9865a3468 ON public.purchase_line_moves_recreated_rel USING btree (move); + + +-- +-- Name: idx_6e96d41a586f8d554fa009b1cf4508e3e04aac09ceefb1ebce79b0a4ca2; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_6e96d41a586f8d554fa009b1cf4508e3e04aac09ceefb1ebce79b0a4ca2 ON public.stock_move USING btree (from_location, product, COALESCE(effective_date, planned_date, '9999-12-31'::date)); + + +-- +-- Name: idx_6f2daca1f01386708dc5812c204440edc2378c1a8e746445d968f5bea8b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_6f2daca1f01386708dc5812c204440edc2378c1a8e746445d968f5bea8b ON public.product_cost_price_revision USING btree (product, template, company); + + +-- +-- Name: idx_78344a86f61f50c0cab01ae844ffe291b61a95b2148f18fad2db884cc8e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_78344a86f61f50c0cab01ae844ffe291b61a95b2148f18fad2db884cc8e ON public."optical_equipment_maintenance_service-maintenance_diary" USING btree (agended) WHERE (agended IS NOT NULL); + + +-- +-- Name: idx_7be74026bd990509ebb438446903f8a7d6fabedb76fddb9202c26f44485; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_7be74026bd990509ebb438446903f8a7d6fabedb76fddb9202c26f44485 ON public.account_move_reconciliation USING btree (date); + + +-- +-- Name: idx_7e053e6bc3f91990afa16eb12823d298781da5fb7de03abb316025a5af7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_7e053e6bc3f91990afa16eb12823d298781da5fb7de03abb316025a5af7 ON public."product_attribute-product_attribute-set" USING btree (attribute_set); + + +-- +-- Name: idx_7eb7bc83f41a3bb39c6a20dfbbb98ad2c9dbfd6989ececd023e497c4eb1; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_7eb7bc83f41a3bb39c6a20dfbbb98ad2c9dbfd6989ececd023e497c4eb1 ON public.purchase_invoice_recreated_rel USING btree (invoice); + + +-- +-- Name: idx_8169386f51389f0437439e18fa2c925f99819025a2f93d0959ca25ef312; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_8169386f51389f0437439e18fa2c925f99819025a2f93d0959ca25ef312 ON public.account_invoice_line_account_tax USING btree (line); + + +-- +-- Name: idx_8205d79a4e340d4aab903376f02ead9ab915b9c9f438f9d18e9c7fe391f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_8205d79a4e340d4aab903376f02ead9ab915b9c9f438f9d18e9c7fe391f ON public.stock_shipment_internal USING hash (state) WHERE ((state)::text = ANY ((ARRAY['request'::character varying, 'draft'::character varying, 'waiting'::character varying, 'assigned'::character varying, 'shipped'::character varying])::text[])); + + +-- +-- Name: idx_83dca6bbfc5009bba1c10f0239db140448fa3f6d51acc8006b0143bb3a5; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_83dca6bbfc5009bba1c10f0239db140448fa3f6d51acc8006b0143bb3a5 ON public.account_invoice_line_account_tax USING btree (tax); + + +-- +-- Name: idx_8635ab8cbfb718dd1788509c8639318bcb8d4965dafdf24a589be1872e4; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_8635ab8cbfb718dd1788509c8639318bcb8d4965dafdf24a589be1872e4 ON public."optical_equipment_contract-optical_equipment_equipment" USING btree (contract) WHERE (contract IS NOT NULL); + + +-- +-- Name: idx_8858c3ec2e699f6c5c95b8a9235f386e6b4a7fee9a5d64019565d280250; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_8858c3ec2e699f6c5c95b8a9235f386e6b4a7fee9a5d64019565d280250 ON public.ir_note USING btree (resource varchar_pattern_ops, (("substring"((resource)::text, ("position"((resource)::text, ','::text) + 1)))::integer)); + + +-- +-- Name: idx_8e152d7ce92fbb76cb949de6655ae4d7336c240e8d17c2e82975b3ae3d0; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_8e152d7ce92fbb76cb949de6655ae4d7336c240e8d17c2e82975b3ae3d0 ON public."ir_model_button-button_reset" USING btree (button); + + +-- +-- Name: idx_8e49dcc2e45dda3564665f36b6423ea78d5da395954f55e507e0b395d6d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_8e49dcc2e45dda3564665f36b6423ea78d5da395954f55e507e0b395d6d ON public."account_invoice_line-stock_move" USING btree (stock_move); + + +-- +-- Name: idx_900d31315d86fe1e4865e6de380491e84bf1ee380a8c0dc8415314c19cd; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_900d31315d86fe1e4865e6de380491e84bf1ee380a8c0dc8415314c19cd ON public."optical_equipment_equipment-party_party" USING btree (equipment) WHERE (equipment IS NOT NULL); + + +-- +-- Name: idx_92e585bcea1a94c759317d9ee583d726af8bc453edc679d4ccf57abfec4; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_92e585bcea1a94c759317d9ee583d726af8bc453edc679d4ccf57abfec4 ON public.optical_equipment_equipment USING btree (contract) WHERE (contract IS NOT NULL); + + +-- +-- Name: idx_95db4c86f2d91bac7a6de9cd703e1047ef0e2a435ab1b56ffb30a5560e7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_95db4c86f2d91bac7a6de9cd703e1047ef0e2a435ab1b56ffb30a5560e7 ON public.product_category_supplier_taxes_rel USING btree (tax); + + +-- +-- Name: idx_9616c04973a8290844b934960267f234481d02cdee86841303badb79547; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_9616c04973a8290844b934960267f234481d02cdee86841303badb79547 ON public.optical_equipment_maintenance_line USING btree (maintenance) WHERE (maintenance IS NOT NULL); + + +-- +-- Name: idx_98543f6527c5b0be885fac59b2e69c3192509e73d9c9bde881d232b7b44; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_98543f6527c5b0be885fac59b2e69c3192509e73d9c9bde881d232b7b44 ON public.product_category_customer_taxes_rel USING btree (category); + + +-- +-- Name: idx_994b399f21c06af8a79cf2c2a84566aaa348b32d977cd8089e2f485af30; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_994b399f21c06af8a79cf2c2a84566aaa348b32d977cd8089e2f485af30 ON public.purchase_invoice_recreated_rel USING btree (purchase); + + +-- +-- Name: idx_9a8f76d96ac2347a4eee1f2d8dd968e9d33ec8789a21d49de44f6822f0b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_9a8f76d96ac2347a4eee1f2d8dd968e9d33ec8789a21d49de44f6822f0b ON public.country_organization_member USING btree (organization); + + +-- +-- Name: idx_9cbdad2571aa81b4597a6c45e83a3c8abd5a5bb88ce47c66801c435628e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_9cbdad2571aa81b4597a6c45e83a3c8abd5a5bb88ce47c66801c435628e ON public."ir_model_button-button_reset" USING btree (button_ruled); + + +-- +-- Name: idx_a1142ebc94e3ea66d09d1ee77bab9a2732cafc754ff614784add9fa02e6; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_a1142ebc94e3ea66d09d1ee77bab9a2732cafc754ff614784add9fa02e6 ON public.optical_equipment_product_pattern USING btree (product) WHERE (product IS NOT NULL); + + +-- +-- Name: idx_a122c6a4b49b59819830377c08c043440a4037f9087a3779c0d96373694; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_a122c6a4b49b59819830377c08c043440a4037f9087a3779c0d96373694 ON public.account_move_reconciliation USING btree (delegate_to) WHERE (delegate_to IS NOT NULL); + + +-- +-- Name: idx_a8d53a5d7a9906efa820494197554661578f6532140f2652b41e77716c9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_a8d53a5d7a9906efa820494197554661578f6532140f2652b41e77716c9 ON public.account_tax_rule_line_template USING btree (rule); + + +-- +-- Name: idx_account_account_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_6acf76edbc377218609e58df40d82127 ON public.account_account USING btree (parent); + + +-- +-- Name: idx_account_account_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_d884bc69b0c18974fe282eea226f070d ON public.account_account USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_account_deferral_d7eb83f3fdd19e98d2616a22bcdd5f7f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_deferral_d7eb83f3fdd19e98d2616a22bcdd5f7f ON public.account_account_deferral USING btree (account); + + +-- +-- Name: idx_account_account_deferral_e510ec96d30aa616c4268c4721f175c6; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_deferral_e510ec96d30aa616c4268c4721f175c6 ON public.account_account_deferral USING btree (fiscalyear, account); + + +-- +-- Name: idx_account_account_ff051ed1e543dfbaf88d78a9578dc805; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_ff051ed1e543dfbaf88d78a9578dc805 ON public.account_account USING btree ("left", "right"); + + +-- +-- Name: idx_account_account_tax_rel_0402bf580705ea6c4485db5d0d5eb381; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_tax_rel_0402bf580705ea6c4485db5d0d5eb381 ON public.account_account_tax_rel USING btree (tax); + + +-- +-- Name: idx_account_account_tax_rel_d7eb83f3fdd19e98d2616a22bcdd5f7f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_tax_rel_d7eb83f3fdd19e98d2616a22bcdd5f7f ON public.account_account_tax_rel USING btree (account); + + +-- +-- Name: idx_account_account_template_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_template_6acf76edbc377218609e58df40d82127 ON public.account_account_template USING btree (parent); + + +-- +-- Name: idx_account_account_template_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_template_d884bc69b0c18974fe282eea226f070d ON public.account_account_template USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_account_type_5c101fc9ac0e72350a59898585080e53; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_type_5c101fc9ac0e72350a59898585080e53 ON public.account_account_type USING btree (id) WHERE (receivable OR payable); + + +-- +-- Name: idx_account_account_type_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_type_6acf76edbc377218609e58df40d82127 ON public.account_account_type USING btree (parent); + + +-- +-- Name: idx_account_account_type_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_type_6c19ea0bd65983713b156b49cf9c2cc9 ON public.account_account_type USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_account_account_type_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_account_type_d884bc69b0c18974fe282eea226f070d ON public.account_account_type USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_fiscalyear_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_fiscalyear_d884bc69b0c18974fe282eea226f070d ON public.account_fiscalyear USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_invoice_0af740e8643a2f6ffc1b8815a8ff42c5; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_0af740e8643a2f6ffc1b8815a8ff42c5 ON public.account_invoice USING btree (untaxed_amount_cache); + + +-- +-- Name: idx_account_invoice_1bcbd43f84d70f2764788eab0a4db3ac; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_1bcbd43f84d70f2764788eab0a4db3ac ON public.account_invoice USING btree (untaxed_amount_cache) INCLUDE (id) WHERE (untaxed_amount_cache IS NULL); + + +-- +-- Name: idx_account_invoice_5c69121c7f117d2b309707f651ea6599; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_5c69121c7f117d2b309707f651ea6599 ON public.account_invoice USING btree (tax_amount_cache); + + +-- +-- Name: idx_account_invoice_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_bd77ab5ed1955cb25e0da1e470953471 ON public.account_invoice USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_account_invoice_c169f42a37f136efdd7fdf9444a78b51; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_c169f42a37f136efdd7fdf9444a78b51 ON public.account_invoice USING btree (tax_amount_cache) INCLUDE (id) WHERE (tax_amount_cache IS NULL); + + +-- +-- Name: idx_account_invoice_dbe3e42fc1f4792cdad27cc2991eaac7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_dbe3e42fc1f4792cdad27cc2991eaac7 ON public.account_invoice USING btree (reference varchar_pattern_ops); + + +-- +-- Name: idx_account_invoice_ed083c52c22bdfc6a9fe96087460a1a3; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_ed083c52c22bdfc6a9fe96087460a1a3 ON public.account_invoice USING btree (total_amount_cache) INCLUDE (id) WHERE (total_amount_cache IS NULL); + + +-- +-- Name: idx_account_invoice_f0174f28930b9baff30dc4961abc9692; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_f0174f28930b9baff30dc4961abc9692 ON public.account_invoice USING btree (total_amount_cache); + + +-- +-- Name: idx_account_invoice_line_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_line_6c19ea0bd65983713b156b49cf9c2cc9 ON public.account_invoice_line USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_account_invoice_line_c8647a47154a5b2a9881c3e38a8df4f9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_line_c8647a47154a5b2a9881c3e38a8df4f9 ON public.account_invoice_line USING btree (invoice) WHERE (invoice IS NOT NULL); + + +-- +-- Name: idx_account_invoice_line_fe15e9b21e3eb9ce168dd0a215b5de42; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_line_fe15e9b21e3eb9ce168dd0a215b5de42 ON public.account_invoice_line USING hash (origin) WHERE (origin IS NOT NULL); + + +-- +-- Name: idx_account_invoice_tax_41b8bce64e6508c6d3e158fe8fcaa1c3; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_tax_41b8bce64e6508c6d3e158fe8fcaa1c3 ON public.account_invoice_tax USING btree (invoice); + + +-- +-- Name: idx_account_invoice_tax_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_tax_6c19ea0bd65983713b156b49cf9c2cc9 ON public.account_invoice_tax USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_account_invoice_tax_e31dd9b18ad1b28f4c0535d335939d20; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_invoice_tax_e31dd9b18ad1b28f4c0535d335939d20 ON public.account_invoice_tax USING btree (description varchar_pattern_ops); + + +-- +-- Name: idx_account_journal_a088a8bd47b8c2cf4ff78e30d4d01c2f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_journal_a088a8bd47b8c2cf4ff78e30d4d01c2f ON public.account_journal USING btree (matching_sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_account_journal_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_journal_d884bc69b0c18974fe282eea226f070d ON public.account_journal USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_journal_sequence_f49cde75247f74525e9e07e07446e74c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_journal_sequence_f49cde75247f74525e9e07e07446e74c ON public.account_journal_sequence USING btree (journal) WHERE (journal IS NOT NULL); + + +-- +-- Name: idx_account_move_2e89004f45b9e2d2840708f1836fa42d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_2e89004f45b9e2d2840708f1836fa42d ON public.account_move USING hash (period); + + +-- +-- Name: idx_account_move_8fcfe357c64a8c13d6cb85d5da7da9c8; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_8fcfe357c64a8c13d6cb85d5da7da9c8 ON public.account_move USING btree (date, number); + + +-- +-- Name: idx_account_move_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_bd77ab5ed1955cb25e0da1e470953471 ON public.account_move USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_account_move_c4a7c42ba393c7da5d92b292fda080a1; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_c4a7c42ba393c7da5d92b292fda080a1 ON public.account_move USING btree (journal, period); + + +-- +-- Name: idx_account_move_line_139326b625a227470bd45264ea7d532d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_line_139326b625a227470bd45264ea7d532d ON public.account_move_line USING btree (account, party) WHERE (reconciliation IS NULL); + + +-- +-- Name: idx_account_move_line_229eb837d05ffc709a846e42338af90f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_line_229eb837d05ffc709a846e42338af90f ON public.account_move_line USING btree (move); + + +-- +-- Name: idx_account_move_line_52660c18726339f2cc2363b1108055f9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_line_52660c18726339f2cc2363b1108055f9 ON public.account_move_line USING btree (reconciliation) WHERE (reconciliation IS NOT NULL); + + +-- +-- Name: idx_account_move_line_ac639ca7a39f112f0610a40e285d6a46; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_line_ac639ca7a39f112f0610a40e285d6a46 ON public.account_move_line USING btree (account, party); + + +-- +-- Name: idx_account_move_line_c75e2ee1d38efbb5d5d9a1a2631c607d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_line_c75e2ee1d38efbb5d5d9a1a2631c607d ON public.account_move_line USING btree (account, party, id) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_account_move_line_d7a4c0b713d140af40efda82951f3604; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_line_d7a4c0b713d140af40efda82951f3604 ON public.account_move_line USING btree (move, account); + + +-- +-- Name: idx_account_move_line_e8bf869335e168d0086331c68661e8f3; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_line_e8bf869335e168d0086331c68661e8f3 ON public.account_move_line USING hash (reconciliation); + + +-- +-- Name: idx_account_move_line_template_229eb837d05ffc709a846e42338af90f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_line_template_229eb837d05ffc709a846e42338af90f ON public.account_move_line_template USING btree (move); + + +-- +-- Name: idx_account_move_template_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_move_template_d884bc69b0c18974fe282eea226f070d ON public.account_move_template USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_period_172ecb6db4657a46a54b962e0d0528ab; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_period_172ecb6db4657a46a54b962e0d0528ab ON public.account_period USING btree (fiscalyear); + + +-- +-- Name: idx_account_period_b9817c3bd5e9d54d1eb89d8667a23677; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_period_b9817c3bd5e9d54d1eb89d8667a23677 ON public.account_period USING btree (start_date, end_date); + + +-- +-- Name: idx_account_period_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_period_d884bc69b0c18974fe282eea226f070d ON public.account_period USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_tax_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_6acf76edbc377218609e58df40d82127 ON public.account_tax USING btree (parent); + + +-- +-- Name: idx_account_tax_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_6c19ea0bd65983713b156b49cf9c2cc9 ON public.account_tax USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_account_tax_code_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_code_6acf76edbc377218609e58df40d82127 ON public.account_tax_code USING btree (parent); + + +-- +-- Name: idx_account_tax_code_cf45a1328bfa8015c37420f68834059f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_code_cf45a1328bfa8015c37420f68834059f ON public.account_tax_code USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_account_tax_code_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_code_d884bc69b0c18974fe282eea226f070d ON public.account_tax_code USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_tax_code_line_05c3d3c7ad46fa1838d4efc3cf3fe144; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_code_line_05c3d3c7ad46fa1838d4efc3cf3fe144 ON public.account_tax_code_line USING btree (code); + + +-- +-- Name: idx_account_tax_code_template_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_code_template_6acf76edbc377218609e58df40d82127 ON public.account_tax_code_template USING btree (parent); + + +-- +-- Name: idx_account_tax_code_template_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_code_template_d884bc69b0c18974fe282eea226f070d ON public.account_tax_code_template USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_tax_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_d884bc69b0c18974fe282eea226f070d ON public.account_tax USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_tax_group_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_group_d884bc69b0c18974fe282eea226f070d ON public.account_tax_group USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_tax_line_2101ef6114f648cb23f81d25c68c95cf; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_line_2101ef6114f648cb23f81d25c68c95cf ON public.account_tax_line USING btree (move_line); + + +-- +-- Name: idx_account_tax_line_template_da6df17534b9562adfb181e4ad5b4515; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_line_template_da6df17534b9562adfb181e4ad5b4515 ON public.account_tax_line_template USING btree (line); + + +-- +-- Name: idx_account_tax_rule_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_rule_d884bc69b0c18974fe282eea226f070d ON public.account_tax_rule USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_tax_rule_line_00da1e73afb28f7281e28990ef0320bb; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_rule_line_00da1e73afb28f7281e28990ef0320bb ON public.account_tax_rule_line USING btree (rule); + + +-- +-- Name: idx_account_tax_rule_line_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_rule_line_6c19ea0bd65983713b156b49cf9c2cc9 ON public.account_tax_rule_line USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_account_tax_rule_template_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_rule_template_d884bc69b0c18974fe282eea226f070d ON public.account_tax_rule_template USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_account_tax_template_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_template_6acf76edbc377218609e58df40d82127 ON public.account_tax_template USING btree (parent); + + +-- +-- Name: idx_account_tax_template_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_template_6c19ea0bd65983713b156b49cf9c2cc9 ON public.account_tax_template USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_account_tax_template_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_account_tax_template_d884bc69b0c18974fe282eea226f070d ON public.account_tax_template USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ad28eeeedab5477abd7e5faddc45265b30b84f25c496e99825f1aca3c2c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ad28eeeedab5477abd7e5faddc45265b30b84f25c496e99825f1aca3c2c ON public.purchase_purchase USING hash (invoice_state) WHERE ((state)::text = ANY ((ARRAY['none'::character varying, 'waiting'::character varying, 'exception'::character varying])::text[])); + + +-- +-- Name: idx_aeba889a7cd648d0d2e3a39fc40abf6234d11cc8d3111e0ae8f5411cd4f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_aeba889a7cd648d0d2e3a39fc40abf6234d11cc8d3111e0ae8f5411cd4f ON public.purchase_line_moves_ignored_rel USING btree (move); + + +-- +-- Name: idx_af78c25ca0668b901d91cbb386c24d130b89b2f0f66bd6ff0e6d07d8f7e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_af78c25ca0668b901d91cbb386c24d130b89b2f0f66bd6ff0e6d07d8f7e ON public.stock_shipment_out USING hash (state) WHERE ((state)::text = ANY ((ARRAY['draft'::character varying, 'waiting'::character varying, 'assigned'::character varying, 'picked'::character varying, 'packed'::character varying])::text[])); + + +-- +-- Name: idx_b3ad695881258171abf262aaca0ebeae807b187c257d622a14cac18f2bd; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_b3ad695881258171abf262aaca0ebeae807b187c257d622a14cac18f2bd ON public.sale_line_moves_recreated_rel USING btree (sale_line); + + +-- +-- Name: idx_b4e93b22eef7a75343e8c52f9d7ac8bf226a98ceeafeba4d37124d4a103; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_b4e93b22eef7a75343e8c52f9d7ac8bf226a98ceeafeba4d37124d4a103 ON public.account_move_template_keyword USING btree (move); + + +-- +-- Name: idx_b6c7301926d28a1ef2ceeb0e02e8cb02d75f94cdd547e43dbbe2a14159f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_b6c7301926d28a1ef2ceeb0e02e8cb02d75f94cdd547e43dbbe2a14159f ON public."account_invoice-account_move_line" USING btree (invoice); + + +-- +-- Name: idx_b7af1f96de2dc27941f5110e6feff9e1781f21a42b19b85e3a40408bc55; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_b7af1f96de2dc27941f5110e6feff9e1781f21a42b19b85e3a40408bc55 ON public."currency_cron-currency_currency" USING btree (cron); + + +-- +-- Name: idx_b7b221eca0da9eaebe95b3327a46589ab755ff43e21b481b49efc498a0f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_b7b221eca0da9eaebe95b3327a46589ab755ff43e21b481b49efc498a0f ON public.account_move_template_keyword USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_b8c28e2e9c5e550780e42b6938dfecd16318be4ec72f3e375dfef38abef; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_b8c28e2e9c5e550780e42b6938dfecd16318be4ec72f3e375dfef38abef ON public."party_party-delivered_to-stock_location" USING btree (party); + + +-- +-- Name: idx_b95d8e3ff36aaf3768c6a25958be7c742ce7e988f7b156213ebac85c5ce; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_b95d8e3ff36aaf3768c6a25958be7c742ce7e988f7b156213ebac85c5ce ON public.ir_action_act_window_domain USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_ba43d034daf4274e7714ea3b1613a0d9f9de46321517369015267c88fac; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ba43d034daf4274e7714ea3b1613a0d9f9de46321517369015267c88fac ON public.purchase_invoice_ignored_rel USING btree (purchase); + + +-- +-- Name: idx_be79e08166eab242131db954137366289079744b8da3f353a9dc5f532cc; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_be79e08166eab242131db954137366289079744b8da3f353a9dc5f532cc ON public.party_party_supplier_lead_time USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_c2516d0cfd38c7d9d8d70e2a3e55c825196754f23af4113b433fc2f06fc; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_c2516d0cfd38c7d9d8d70e2a3e55c825196754f23af4113b433fc2f06fc ON public."product_template-product_category" USING btree (template); + + +-- +-- Name: idx_c68c9a925b66155a82a449b1202482be5ec71aa2c84777e3cf8368ff415; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_c68c9a925b66155a82a449b1202482be5ec71aa2c84777e3cf8368ff415 ON public.account_move_reconciliation USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_c6e182cab088397578046fcfecb635db847be0138fdac5ab52d507bcb88; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_c6e182cab088397578046fcfecb635db847be0138fdac5ab52d507bcb88 ON public.party_party_supplier_currency USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_c71842155d59fefe3c30e3db49d2f558eddd12e6222a8456eb7e4c9c2f6; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_c71842155d59fefe3c30e3db49d2f558eddd12e6222a8456eb7e4c9c2f6 ON public.optical_equipment_use_pattern USING btree (name_pattern varchar_pattern_ops); + + +-- +-- Name: idx_c732a85ac1abdb07782446e4264482067e10a9a9f31f82e51ac82f14887; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_c732a85ac1abdb07782446e4264482067e10a9a9f31f82e51ac82f14887 ON public.account_fiscalyear_invoice_sequence USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_c79f95493b6bff9a1189b9afd72df0f4139fb326d3a6e76138957f20d15; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_c79f95493b6bff9a1189b9afd72df0f4139fb326d3a6e76138957f20d15 ON public.ir_action_act_window_domain USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ca9b44576ac69a4853681ff39f414c22f5c87031369cc0424ae9b6c8d7f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ca9b44576ac69a4853681ff39f414c22f5c87031369cc0424ae9b6c8d7f ON public.account_account_template_tax_rel USING btree (account); + + +-- +-- Name: idx_company_employee_506cf1d05b67a10cc7bd83844dbb080d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_company_employee_506cf1d05b67a10cc7bd83844dbb080d ON public.company_employee USING btree (supervisor); + + +-- +-- Name: idx_country_country_8136856be1880d04b9c7bc02eb914df4; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_country_country_8136856be1880d04b9c7bc02eb914df4 ON public.country_country USING btree (region) WHERE (region IS NOT NULL); + + +-- +-- Name: idx_country_country_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_country_country_d884bc69b0c18974fe282eea226f070d ON public.country_country USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_country_organization_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_country_organization_d884bc69b0c18974fe282eea226f070d ON public.country_organization USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_country_postal_code_1d081e766e3358f1522a7426992b25ab; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_country_postal_code_1d081e766e3358f1522a7426992b25ab ON public.country_postal_code USING btree (city varchar_pattern_ops, country, subdivision); + + +-- +-- Name: idx_country_region_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_country_region_6acf76edbc377218609e58df40d82127 ON public.country_region USING btree (parent); + + +-- +-- Name: idx_country_region_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_country_region_d884bc69b0c18974fe282eea226f070d ON public.country_region USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_country_subdivision_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_country_subdivision_d884bc69b0c18974fe282eea226f070d ON public.country_subdivision USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_country_subdivision_dd73c69840e545f91c6ad0da0902ae77; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_country_subdivision_dd73c69840e545f91c6ad0da0902ae77 ON public.country_subdivision USING btree (country); + + +-- +-- Name: idx_cron_company_rel_0908ed6e8feee1b587a74eb033bfbc55; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_cron_company_rel_0908ed6e8feee1b587a74eb033bfbc55 ON public.cron_company_rel USING btree (cron); + + +-- +-- Name: idx_cron_company_rel_d40b5071818073d767eba05756b2ec6e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_cron_company_rel_d40b5071818073d767eba05756b2ec6e ON public.cron_company_rel USING btree (company); + + +-- +-- Name: idx_currency_currency_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_currency_currency_d884bc69b0c18974fe282eea226f070d ON public.currency_currency USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_currency_currency_rate_7ff983284ecffa4fc480c317bebd0faa; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_currency_currency_rate_7ff983284ecffa4fc480c317bebd0faa ON public.currency_currency_rate USING btree (currency) WHERE (currency IS NOT NULL); + + +-- +-- Name: idx_currency_currency_rate_d512596278ef1377d970ddc4d80ebc35; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_currency_currency_rate_d512596278ef1377d970ddc4d80ebc35 ON public.currency_currency_rate USING btree (currency, date); + + +-- +-- Name: idx_d1caf8c031fcd747c596480b7f1d30417b5e454bec5dbab16b23714c30b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_d1caf8c031fcd747c596480b7f1d30417b5e454bec5dbab16b23714c30b ON public."optical_equipment_maintenance_service-maintenance_diary" USING btree (maintenance_service) WHERE (maintenance_service IS NOT NULL); + + +-- +-- Name: idx_d2f7e8469aa13531b094395750a885730efcab29a2f97aa1ddf81343c7d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_d2f7e8469aa13531b094395750a885730efcab29a2f97aa1ddf81343c7d ON public.purchase_invoice_ignored_rel USING btree (invoice); + + +-- +-- Name: idx_d4a20780f2c0b8e185b659d77587ac4d59fa195a5d03f1e9e9fd7ffd13f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_d4a20780f2c0b8e185b659d77587ac4d59fa195a5d03f1e9e9fd7ffd13f ON public.stock_move USING hash (state) WHERE ((state)::text = ANY ((ARRAY['staging'::character varying, 'draft'::character varying, 'assigned'::character varying])::text[])); + + +-- +-- Name: idx_d6f6d764f5767661578285ce5ecf81a53df18d3ce9cc03eebb9479f536d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_d6f6d764f5767661578285ce5ecf81a53df18d3ce9cc03eebb9479f536d ON public."currency_cron-currency_currency" USING btree (currency); + + +-- +-- Name: idx_d969cf47a6a53c1916d048feccb33800f79d9d9d440492b11b25583dcbf; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_d969cf47a6a53c1916d048feccb33800f79d9d9d440492b11b25583dcbf ON public."product_template-product_category" USING btree (category); + + +-- +-- Name: idx_dabff1e78403e91063422dcd5ced59119265205fc74b3042026605acdb7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_dabff1e78403e91063422dcd5ced59119265205fc74b3042026605acdb7 ON public.stock_move USING btree (shipment varchar_pattern_ops, (("substring"((shipment)::text, ("position"((shipment)::text, ','::text) + 1)))::integer)) WHERE (shipment IS NOT NULL); + + +-- +-- Name: idx_dce1e3e6eb549aa4d562692d357bba5eafbde1599f1830f7c84eae20277; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_dce1e3e6eb549aa4d562692d357bba5eafbde1599f1830f7c84eae20277 ON public.product_category_customer_taxes_rel USING btree (tax); + + +-- +-- Name: idx_ddd9a40e6493038263bfdfeb0562240eb6c1da3958d9af8832b53242204; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ddd9a40e6493038263bfdfeb0562240eb6c1da3958d9af8832b53242204 ON public.account_tax_code_line_template USING btree (code); + + +-- +-- Name: idx_dfcc64b054cf997698d460a64f9a60885f2b5ee79dfadeb1633b59eb1de; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_dfcc64b054cf997698d460a64f9a60885f2b5ee79dfadeb1633b59eb1de ON public."ir_email_template-ir_action_report" USING btree (report); + + +-- +-- Name: idx_e014c942a366bc903708054901760d5ee71db5904df287558b1a2283a72; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_e014c942a366bc903708054901760d5ee71db5904df287558b1a2283a72 ON public.stock_shipment_in USING hash (state) WHERE ((state)::text = ANY ((ARRAY['draft'::character varying, 'received'::character varying])::text[])); + + +-- +-- Name: idx_e1f900d8ebba701f3b2e8f7850560f79a89cc22e1443994e856d32d393b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_e1f900d8ebba701f3b2e8f7850560f79a89cc22e1443994e856d32d393b ON public."optical_equipment_contract-optical_equipment_equipment" USING btree (equipment) WHERE (equipment IS NOT NULL); + + +-- +-- Name: idx_e2e0afe5fedc883619ef5753788d50b425f729b5d4ed33e841442384e6e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_e2e0afe5fedc883619ef5753788d50b425f729b5d4ed33e841442384e6e ON public.party_party_customer_currency USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_e2e352bdb168722ee5e251732c930273880a0c4cfb4dddc41bf6460ae3b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_e2e352bdb168722ee5e251732c930273880a0c4cfb4dddc41bf6460ae3b ON public.ir_action_act_window_domain USING btree (act_window); + + +-- +-- Name: idx_e7382c5ede0fd7a67f6c0ecd081a4b8ff1eab97689803eb91012e66517f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_e7382c5ede0fd7a67f6c0ecd081a4b8ff1eab97689803eb91012e66517f ON public."account_invoice-additional-account_move" USING btree (move) WHERE (move IS NOT NULL); + + +-- +-- Name: idx_eba542bb24bebd7b2a2929629feafd30965950e17a97e0c209462331197; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_eba542bb24bebd7b2a2929629feafd30965950e17a97e0c209462331197 ON public.ir_attachment USING btree (resource varchar_pattern_ops, (("substring"((resource)::text, ("position"((resource)::text, ','::text) + 1)))::integer)); + + +-- +-- Name: idx_ebd4e885b6a01f13173ca79706765369292568094fc66d5b0b74d2ca1fa; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ebd4e885b6a01f13173ca79706765369292568094fc66d5b0b74d2ca1fa ON public.optical_equipment_maintenance_calibration_sample USING btree (maintenance) WHERE (maintenance IS NOT NULL); + + +-- +-- Name: idx_ebe66949ad4d8ea26d9b5ba7e9a4157b2a7a237d71e4452367aa1a52724; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ebe66949ad4d8ea26d9b5ba7e9a4157b2a7a237d71e4452367aa1a52724 ON public.stock_inventory USING hash (state) WHERE ((state)::text = 'draft'::text); + + +-- +-- Name: idx_ecd2eedf976a201cb0ebc6fa3ae75dea373073b068df548550cbde7498e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ecd2eedf976a201cb0ebc6fa3ae75dea373073b068df548550cbde7498e ON public."account_invoice-account_move_line" USING btree (line); + + +-- +-- Name: idx_ee4d021175d026cbfb8c85c2d6c005239a3b453e20d8b6470411a08b1aa; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ee4d021175d026cbfb8c85c2d6c005239a3b453e20d8b6470411a08b1aa ON public.account_move_template_keyword USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_f3d1eb5db2b1745f906b5c9976fa776e4a983443a4d4979a0119ac23034; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_f3d1eb5db2b1745f906b5c9976fa776e4a983443a4d4979a0119ac23034 ON public.ir_error USING hash (state) WHERE ((state)::text = ANY ((ARRAY['open'::character varying, 'processing'::character varying])::text[])); + + +-- +-- Name: idx_f653b39760db5fab762a382a498620072a0980813d82ac7e48e4c772a9b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_f653b39760db5fab762a382a498620072a0980813d82ac7e48e4c772a9b ON public.account_invoice_line USING btree (origin varchar_pattern_ops, (("substring"((origin)::text, ("position"((origin)::text, ','::text) + 1)))::integer)) WHERE (origin IS NOT NULL); + + +-- +-- Name: idx_f90bbbefcca00814977da8daa82baef2ad9ecc7c27da750731dc0ec9748; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_f90bbbefcca00814977da8daa82baef2ad9ecc7c27da750731dc0ec9748 ON public.country_organization_member USING btree (country); + + +-- +-- Name: idx_fa6c4628a0b3104561d75212f1db36754e18b3c83be10525883154be5ae; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_fa6c4628a0b3104561d75212f1db36754e18b3c83be10525883154be5ae ON public.account_invoice_payment_term_line_delta USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_fca7c055eccb5c8eb82c12fce24741724467e80967cf0d151d9a554b12d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_fca7c055eccb5c8eb82c12fce24741724467e80967cf0d151d9a554b12d ON public."product_attribute-product_attribute-set" USING btree (attribute); + + +-- +-- Name: idx_ir_action-res_group_378958288fb22e1c369289310230a07a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_action-res_group_378958288fb22e1c369289310230a07a" ON public."ir_action-res_group" USING btree ("group"); + + +-- +-- Name: idx_ir_action-res_group_b3e46abd464f2ac1955ceeb0f47ea6cf; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_action-res_group_b3e46abd464f2ac1955ceeb0f47ea6cf" ON public."ir_action-res_group" USING btree (action); + + +-- +-- Name: idx_ir_action_act_window_view_4635af06f24aa52c27a68b68f3a14681; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_action_act_window_view_4635af06f24aa52c27a68b68f3a14681 ON public.ir_action_act_window_view USING btree (act_window) WHERE (act_window IS NOT NULL); + + +-- +-- Name: idx_ir_action_act_window_view_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_action_act_window_view_6c19ea0bd65983713b156b49cf9c2cc9 ON public.ir_action_act_window_view USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_ir_action_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_action_d884bc69b0c18974fe282eea226f070d ON public.ir_action USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_action_keyword_2265577b37e81dbfa907f45a3252a05a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_action_keyword_2265577b37e81dbfa907f45a3252a05a ON public.ir_action_keyword USING btree (action) WHERE (action IS NOT NULL); + + +-- +-- Name: idx_ir_action_keyword_69c9711bc85b4d7f4593189f57762718; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_action_keyword_69c9711bc85b4d7f4593189f57762718 ON public.ir_action_keyword USING btree (keyword, model); + + +-- +-- Name: idx_ir_action_keyword_f69ae7f615f5236539f858ee9607bb3d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_action_keyword_f69ae7f615f5236539f858ee9607bb3d ON public.ir_action_keyword USING hash (model) WHERE (model IS NOT NULL); + + +-- +-- Name: idx_ir_attachment_9afa8eacf74322ca4ca42f7ae244d4e2; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_attachment_9afa8eacf74322ca4ca42f7ae244d4e2 ON public.ir_attachment USING hash (resource); + + +-- +-- Name: idx_ir_attachment_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_attachment_d884bc69b0c18974fe282eea226f070d ON public.ir_attachment USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_attachment_e610abf0052b09718d80156228c6ff5e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_attachment_e610abf0052b09718d80156228c6ff5e ON public.ir_attachment USING btree (resource varchar_pattern_ops); + + +-- +-- Name: idx_ir_avatar_9afa8eacf74322ca4ca42f7ae244d4e2; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_avatar_9afa8eacf74322ca4ca42f7ae244d4e2 ON public.ir_avatar USING hash (resource); + + +-- +-- Name: idx_ir_avatar_cache_362c0440f3157fd18d1c4d6d0209bef1; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_avatar_cache_362c0440f3157fd18d1c4d6d0209bef1 ON public.ir_avatar_cache USING btree (avatar); + + +-- +-- Name: idx_ir_avatar_e610abf0052b09718d80156228c6ff5e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_avatar_e610abf0052b09718d80156228c6ff5e ON public.ir_avatar USING btree (resource varchar_pattern_ops); + + +-- +-- Name: idx_ir_cache_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_cache_d884bc69b0c18974fe282eea226f070d ON public.ir_cache USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_calendar_day_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_calendar_day_d884bc69b0c18974fe282eea226f070d ON public.ir_calendar_day USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_calendar_month_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_calendar_month_d884bc69b0c18974fe282eea226f070d ON public.ir_calendar_month USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_cron_158bf18574127f52dd672369bfd6c307; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_cron_158bf18574127f52dd672369bfd6c307 ON public.ir_cron USING btree (next_call); + + +-- +-- Name: idx_ir_email_address_1c2ed617c392ca0f2c485f4231d7920a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_email_address_1c2ed617c392ca0f2c485f4231d7920a ON public.ir_email_address USING btree (email); + + +-- +-- Name: idx_ir_email_e610abf0052b09718d80156228c6ff5e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_email_e610abf0052b09718d80156228c6ff5e ON public.ir_email USING btree (resource varchar_pattern_ops); + + +-- +-- Name: idx_ir_email_template_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_email_template_d884bc69b0c18974fe282eea226f070d ON public.ir_email_template USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_export-res_group_2afd4ada31e01c85e280638375a5f42e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_export-res_group_2afd4ada31e01c85e280638375a5f42e" ON public."ir_export-res_group" USING btree (export); + + +-- +-- Name: idx_ir_export-res_group_378958288fb22e1c369289310230a07a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_export-res_group_378958288fb22e1c369289310230a07a" ON public."ir_export-res_group" USING btree ("group"); + + +-- +-- Name: idx_ir_export-write-res_group_2afd4ada31e01c85e280638375a5f42e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_export-write-res_group_2afd4ada31e01c85e280638375a5f42e" ON public."ir_export-write-res_group" USING btree (export); + + +-- +-- Name: idx_ir_export-write-res_group_378958288fb22e1c369289310230a07a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_export-write-res_group_378958288fb22e1c369289310230a07a" ON public."ir_export-write-res_group" USING btree ("group"); + + +-- +-- Name: idx_ir_export_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_export_d884bc69b0c18974fe282eea226f070d ON public.ir_export USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_export_line_2afd4ada31e01c85e280638375a5f42e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_export_line_2afd4ada31e01c85e280638375a5f42e ON public.ir_export_line USING btree (export); + + +-- +-- Name: idx_ir_export_line_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_export_line_d884bc69b0c18974fe282eea226f070d ON public.ir_export_line USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_lang_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_lang_d884bc69b0c18974fe282eea226f070d ON public.ir_lang USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_model_access_8fb996dbbf6c8700a713be23683edf7a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_access_8fb996dbbf6c8700a713be23683edf7a ON public.ir_model_access USING btree ("group") WHERE ("group" IS NOT NULL); + + +-- +-- Name: idx_ir_model_button-res_group_378958288fb22e1c369289310230a07a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_model_button-res_group_378958288fb22e1c369289310230a07a" ON public."ir_model_button-res_group" USING btree ("group"); + + +-- +-- Name: idx_ir_model_button-res_group_cf6eeb7b4a4f06a4335a4b6ec7ace163; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_model_button-res_group_cf6eeb7b4a4f06a4335a4b6ec7ace163" ON public."ir_model_button-res_group" USING btree (button); + + +-- +-- Name: idx_ir_model_button_click_cf6eeb7b4a4f06a4335a4b6ec7ace163; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_button_click_cf6eeb7b4a4f06a4335a4b6ec7ace163 ON public.ir_model_button_click USING btree (button); + + +-- +-- Name: idx_ir_model_button_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_button_d884bc69b0c18974fe282eea226f070d ON public.ir_model_button USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_model_button_rule_cf6eeb7b4a4f06a4335a4b6ec7ace163; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_button_rule_cf6eeb7b4a4f06a4335a4b6ec7ace163 ON public.ir_model_button_rule USING btree (button); + + +-- +-- Name: idx_ir_model_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_d884bc69b0c18974fe282eea226f070d ON public.ir_model USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_model_data_38ebf93cecf5de8075e9cef707640354; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_data_38ebf93cecf5de8075e9cef707640354 ON public.ir_model_data USING hash (module); + + +-- +-- Name: idx_ir_model_data_45bf20ec06f6b07061b37aa2d0a2a282; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_data_45bf20ec06f6b07061b37aa2d0a2a282 ON public.ir_model_data USING btree (fs_id, module, model); + + +-- +-- Name: idx_ir_model_field_a8ade1d4ca7836d0d78918cc7850c201; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_field_a8ade1d4ca7836d0d78918cc7850c201 ON public.ir_model_field USING btree (model); + + +-- +-- Name: idx_ir_model_field_access_8fb996dbbf6c8700a713be23683edf7a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_field_access_8fb996dbbf6c8700a713be23683edf7a ON public.ir_model_field_access USING btree ("group") WHERE ("group" IS NOT NULL); + + +-- +-- Name: idx_ir_model_field_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_field_d884bc69b0c18974fe282eea226f070d ON public.ir_model_field USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_model_log_e610abf0052b09718d80156228c6ff5e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_model_log_e610abf0052b09718d80156228c6ff5e ON public.ir_model_log USING btree (resource varchar_pattern_ops); + + +-- +-- Name: idx_ir_module_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_module_d884bc69b0c18974fe282eea226f070d ON public.ir_module USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_module_dependency_1e2e60344731773a0b609246211ecea1; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_module_dependency_1e2e60344731773a0b609246211ecea1 ON public.ir_module_dependency USING btree (module); + + +-- +-- Name: idx_ir_module_dependency_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_module_dependency_d884bc69b0c18974fe282eea226f070d ON public.ir_module_dependency USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_note_9afa8eacf74322ca4ca42f7ae244d4e2; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_note_9afa8eacf74322ca4ca42f7ae244d4e2 ON public.ir_note USING hash (resource); + + +-- +-- Name: idx_ir_note_e610abf0052b09718d80156228c6ff5e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_note_e610abf0052b09718d80156228c6ff5e ON public.ir_note USING btree (resource varchar_pattern_ops); + + +-- +-- Name: idx_ir_queue_27afbe251854e7670e897f1a8d124652; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_queue_27afbe251854e7670e897f1a8d124652 ON public.ir_queue USING btree (scheduled_at, expected_at, dequeued_at, name); + + +-- +-- Name: idx_ir_queue_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_queue_d884bc69b0c18974fe282eea226f070d ON public.ir_queue USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_rule_9464bb4eaf5cdda0236997a121b8cd0c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_rule_9464bb4eaf5cdda0236997a121b8cd0c ON public.ir_rule USING hash (rule_group); + + +-- +-- Name: idx_ir_rule_group-res_group_378958288fb22e1c369289310230a07a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_rule_group-res_group_378958288fb22e1c369289310230a07a" ON public."ir_rule_group-res_group" USING btree ("group"); + + +-- +-- Name: idx_ir_rule_group-res_group_b7b14dfeb1382c96494497535d1dc676; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_rule_group-res_group_b7b14dfeb1382c96494497535d1dc676" ON public."ir_rule_group-res_group" USING btree (rule_group); + + +-- +-- Name: idx_ir_rule_group_7f68600ff949b9684afe458df9e33bd5; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_rule_group_7f68600ff949b9684afe458df9e33bd5 ON public.ir_rule_group USING hash (model); + + +-- +-- Name: idx_ir_rule_group_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_rule_group_d884bc69b0c18974fe282eea226f070d ON public.ir_rule_group USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_sequence_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_sequence_d884bc69b0c18974fe282eea226f070d ON public.ir_sequence USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_sequence_strict_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_sequence_strict_d884bc69b0c18974fe282eea226f070d ON public.ir_sequence_strict USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_sequence_type-res_group_378958288fb22e1c369289310230a07a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_sequence_type-res_group_378958288fb22e1c369289310230a07a" ON public."ir_sequence_type-res_group" USING btree ("group"); + + +-- +-- Name: idx_ir_sequence_type-res_group_c5b575c945cb888fca85f38690d215dc; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_sequence_type-res_group_c5b575c945cb888fca85f38690d215dc" ON public."ir_sequence_type-res_group" USING btree (sequence_type); + + +-- +-- Name: idx_ir_sequence_type_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_sequence_type_d884bc69b0c18974fe282eea226f070d ON public.ir_sequence_type USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_session_247e526a8246a90d68d280cc611545c9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_session_247e526a8246a90d68d280cc611545c9 ON public.ir_session USING btree (key, create_uid); + + +-- +-- Name: idx_ir_session_54cc978ef84e98830833f7809d650dcf; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_session_54cc978ef84e98830833f7809d650dcf ON public.ir_session USING btree (key, write_date); + + +-- +-- Name: idx_ir_session_a8d224f4f736135a784f3542f2908b7c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_session_a8d224f4f736135a784f3542f2908b7c ON public.ir_session USING btree (key varchar_pattern_ops); + + +-- +-- Name: idx_ir_session_dcaa912348cff6e9e72b1a3f94807f36; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_session_dcaa912348cff6e9e72b1a3f94807f36 ON public.ir_session USING btree (key, create_date); + + +-- +-- Name: idx_ir_translation_17959a6671e3a3c93dfdf2fc3640d645; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_translation_17959a6671e3a3c93dfdf2fc3640d645 ON public.ir_translation USING btree (value varchar_pattern_ops); + + +-- +-- Name: idx_ir_translation_568bba27202a433e89d8342072032e49; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_translation_568bba27202a433e89d8342072032e49 ON public.ir_translation USING btree (type, name, lang, res_id, fuzzy, value varchar_pattern_ops); + + +-- +-- Name: idx_ir_translation_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_translation_d884bc69b0c18974fe282eea226f070d ON public.ir_translation USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_translation_ea012a27ce068b95c9870200bf2efeaf; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_translation_ea012a27ce068b95c9870200bf2efeaf ON public.ir_translation USING btree (src varchar_pattern_ops); + + +-- +-- Name: idx_ir_translation_f2a4fcb9b6c0b66206ab35733fcdb6e4; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_translation_f2a4fcb9b6c0b66206ab35733fcdb6e4 ON public.ir_translation USING btree (res_id, name, lang, type); + + +-- +-- Name: idx_ir_translation_f888e9353f6783b60d26976f43d08082; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_translation_f888e9353f6783b60d26976f43d08082 ON public.ir_translation USING btree (type, name, lang, fuzzy); + + +-- +-- Name: idx_ir_trigger_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_trigger_d884bc69b0c18974fe282eea226f070d ON public.ir_trigger USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_trigger_log_b9043ededb2474e2213ae2f0398bb5ae; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_trigger_log_b9043ededb2474e2213ae2f0398bb5ae ON public.ir_trigger_log USING btree (trigger, record_id); + + +-- +-- Name: idx_ir_ui_icon_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_icon_6c19ea0bd65983713b156b49cf9c2cc9 ON public.ir_ui_icon USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_ir_ui_icon_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_icon_d884bc69b0c18974fe282eea226f070d ON public.ir_ui_icon USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_ui_menu-res_group_378958288fb22e1c369289310230a07a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_ui_menu-res_group_378958288fb22e1c369289310230a07a" ON public."ir_ui_menu-res_group" USING btree ("group"); + + +-- +-- Name: idx_ir_ui_menu-res_group_c2bd4fd9910532be322f341c5192b0f1; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_ir_ui_menu-res_group_c2bd4fd9910532be322f341c5192b0f1" ON public."ir_ui_menu-res_group" USING btree (menu); + + +-- +-- Name: idx_ir_ui_menu_0ae03d1b7c72f8659c054520bebbef07; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_menu_0ae03d1b7c72f8659c054520bebbef07 ON public.ir_ui_menu USING btree (sequence, id); + + +-- +-- Name: idx_ir_ui_menu_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_menu_6acf76edbc377218609e58df40d82127 ON public.ir_ui_menu USING btree (parent); + + +-- +-- Name: idx_ir_ui_menu_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_menu_d884bc69b0c18974fe282eea226f070d ON public.ir_ui_menu USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_ui_menu_favorite_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_menu_favorite_6c19ea0bd65983713b156b49cf9c2cc9 ON public.ir_ui_menu_favorite USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_ir_ui_view_047376b12a12744182fea9bc458974d2; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_047376b12a12744182fea9bc458974d2 ON public.ir_ui_view USING btree (model varchar_pattern_ops); + + +-- +-- Name: idx_ir_ui_view_1b15904986e79839d7f13bc79e1a4024; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_1b15904986e79839d7f13bc79e1a4024 ON public.ir_ui_view USING btree (id, inherit); + + +-- +-- Name: idx_ir_ui_view_9ecdcf8fa5cd3d1f7be30262af71adc4; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_9ecdcf8fa5cd3d1f7be30262af71adc4 ON public.ir_ui_view USING btree (model, inherit); + + +-- +-- Name: idx_ir_ui_view_search_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_search_d884bc69b0c18974fe282eea226f070d ON public.ir_ui_view_search USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_ir_ui_view_tree_optional_c5a47eae5cb8ebd415430b4756c0cd31; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_tree_optional_c5a47eae5cb8ebd415430b4756c0cd31 ON public.ir_ui_view_tree_optional USING btree ("user", view_id); + + +-- +-- Name: idx_ir_ui_view_tree_state_047376b12a12744182fea9bc458974d2; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_tree_state_047376b12a12744182fea9bc458974d2 ON public.ir_ui_view_tree_state USING btree (model varchar_pattern_ops); + + +-- +-- Name: idx_ir_ui_view_tree_state_c16c6e7836f7535e6d4185d88d0cb414; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_tree_state_c16c6e7836f7535e6d4185d88d0cb414 ON public.ir_ui_view_tree_state USING btree ("user", model, child_name, domain); + + +-- +-- Name: idx_ir_ui_view_tree_width_047376b12a12744182fea9bc458974d2; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_tree_width_047376b12a12744182fea9bc458974d2 ON public.ir_ui_view_tree_width USING btree (model varchar_pattern_ops); + + +-- +-- Name: idx_ir_ui_view_tree_width_d221d98ddcad8d7ed502138109c4998c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_ir_ui_view_tree_width_d221d98ddcad8d7ed502138109c4998c ON public.ir_ui_view_tree_width USING btree ("user", model, field); + + +-- +-- Name: idx_optical_equipment_contract_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_optical_equipment_contract_bd77ab5ed1955cb25e0da1e470953471 ON public.optical_equipment_contract USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_party_address_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_address_6c19ea0bd65983713b156b49cf9c2cc9 ON public.party_address USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_party_address_9b5f54125f2db1b09f75bd5874850801; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_address_9b5f54125f2db1b09f75bd5874850801 ON public.party_address USING btree (party); + + +-- +-- Name: idx_party_address_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_address_d884bc69b0c18974fe282eea226f070d ON public.party_address USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_party_category_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_category_6acf76edbc377218609e58df40d82127 ON public.party_category USING btree (parent); + + +-- +-- Name: idx_party_category_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_category_d884bc69b0c18974fe282eea226f070d ON public.party_category USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_party_category_rel_9b5f54125f2db1b09f75bd5874850801; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_category_rel_9b5f54125f2db1b09f75bd5874850801 ON public.party_category_rel USING btree (party); + + +-- +-- Name: idx_party_category_rel_c8509d2106040556dcbd2fb26c909494; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_category_rel_c8509d2106040556dcbd2fb26c909494 ON public.party_category_rel USING btree (category); + + +-- +-- Name: idx_party_contact_mechanism_17959a6671e3a3c93dfdf2fc3640d645; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_contact_mechanism_17959a6671e3a3c93dfdf2fc3640d645 ON public.party_contact_mechanism USING btree (value varchar_pattern_ops); + + +-- +-- Name: idx_party_contact_mechanism_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_contact_mechanism_6c19ea0bd65983713b156b49cf9c2cc9 ON public.party_contact_mechanism USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_party_contact_mechanism_6eb54d8f44ab07574310c8ff7f62103e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_contact_mechanism_6eb54d8f44ab07574310c8ff7f62103e ON public.party_contact_mechanism USING btree (address) WHERE (address IS NOT NULL); + + +-- +-- Name: idx_party_contact_mechanism_9a81380222902c26259c878d42d88a6e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_contact_mechanism_9a81380222902c26259c878d42d88a6e ON public.party_contact_mechanism USING btree (value_compact varchar_pattern_ops); + + +-- +-- Name: idx_party_contact_mechanism_9b5f54125f2db1b09f75bd5874850801; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_contact_mechanism_9b5f54125f2db1b09f75bd5874850801 ON public.party_contact_mechanism USING btree (party); + + +-- +-- Name: idx_party_identifier_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_identifier_6c19ea0bd65983713b156b49cf9c2cc9 ON public.party_identifier USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_party_identifier_6eb54d8f44ab07574310c8ff7f62103e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_identifier_6eb54d8f44ab07574310c8ff7f62103e ON public.party_identifier USING btree (address) WHERE (address IS NOT NULL); + + +-- +-- Name: idx_party_identifier_9b5f54125f2db1b09f75bd5874850801; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_identifier_9b5f54125f2db1b09f75bd5874850801 ON public.party_identifier USING btree (party); + + +-- +-- Name: idx_party_identifier_cf45a1328bfa8015c37420f68834059f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_identifier_cf45a1328bfa8015c37420f68834059f ON public.party_identifier USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_party_party_2f61fbd9cc50d7dd47cd2548ef9cd4d6; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_2f61fbd9cc50d7dd47cd2548ef9cd4d6 ON public.party_party USING hash (code); + + +-- +-- Name: idx_party_party_account_963f34c5cb67576cd53735e6c35a9ade; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_account_963f34c5cb67576cd53735e6c35a9ade ON public.party_party_account USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_party_party_cf45a1328bfa8015c37420f68834059f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_cf45a1328bfa8015c37420f68834059f ON public.party_party USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_party_party_customer_code_963f34c5cb67576cd53735e6c35a9ade; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_customer_code_963f34c5cb67576cd53735e6c35a9ade ON public.party_party_customer_code USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_party_party_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_d884bc69b0c18974fe282eea226f070d ON public.party_party USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_party_party_lang_963f34c5cb67576cd53735e6c35a9ade; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_lang_963f34c5cb67576cd53735e6c35a9ade ON public.party_party_lang USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_party_party_location_963f34c5cb67576cd53735e6c35a9ade; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_location_963f34c5cb67576cd53735e6c35a9ade ON public.party_party_location USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_party_party_payment_term_963f34c5cb67576cd53735e6c35a9ade; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_payment_term_963f34c5cb67576cd53735e6c35a9ade ON public.party_party_payment_term USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_party_party_sale_method_963f34c5cb67576cd53735e6c35a9ade; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_party_party_sale_method_963f34c5cb67576cd53735e6c35a9ade ON public.party_party_sale_method USING btree (party) WHERE (party IS NOT NULL); + + +-- +-- Name: idx_product_attribute_368743371fe3508f9da0a011fa673c9f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_attribute_368743371fe3508f9da0a011fa673c9f ON public.product_attribute USING btree (string varchar_pattern_ops); + + +-- +-- Name: idx_product_attribute_set_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_attribute_set_d884bc69b0c18974fe282eea226f070d ON public.product_attribute_set USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_product_category_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_category_6acf76edbc377218609e58df40d82127 ON public.product_category USING btree (parent); + + +-- +-- Name: idx_product_category_account_bb829bfbfcd213ec5646acc31b9fce3a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_category_account_bb829bfbfcd213ec5646acc31b9fce3a ON public.product_category_account USING btree (category) WHERE (category IS NOT NULL); + + +-- +-- Name: idx_product_category_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_category_d884bc69b0c18974fe282eea226f070d ON public.product_category USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_product_cost_price_8a2f58c3dc9e5e092112de92ad6c1977; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_cost_price_8a2f58c3dc9e5e092112de92ad6c1977 ON public.product_cost_price USING btree (product) WHERE (product IS NOT NULL); + + +-- +-- Name: idx_product_cost_price_method_d85215815040a8bc3e83e5590588e11a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_cost_price_method_d85215815040a8bc3e83e5590588e11a ON public.product_cost_price_method USING btree (template) WHERE (template IS NOT NULL); + + +-- +-- Name: idx_product_identifier_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_identifier_6c19ea0bd65983713b156b49cf9c2cc9 ON public.product_identifier USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_product_identifier_93b97ec1173a87c165602424da9607e2; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_identifier_93b97ec1173a87c165602424da9607e2 ON public.product_identifier USING btree (product, code varchar_pattern_ops); + + +-- +-- Name: idx_product_identifier_a759ec91469fde38820adfc7fce51a75; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_identifier_a759ec91469fde38820adfc7fce51a75 ON public.product_identifier USING btree (product); + + +-- +-- Name: idx_product_identifier_cf45a1328bfa8015c37420f68834059f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_identifier_cf45a1328bfa8015c37420f68834059f ON public.product_identifier USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_product_image_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_image_6c19ea0bd65983713b156b49cf9c2cc9 ON public.product_image USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_product_image_8a2f58c3dc9e5e092112de92ad6c1977; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_image_8a2f58c3dc9e5e092112de92ad6c1977 ON public.product_image USING btree (product) WHERE (product IS NOT NULL); + + +-- +-- Name: idx_product_image_a77a352f88a9ec514e9ebeb8bf91e270; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_image_a77a352f88a9ec514e9ebeb8bf91e270 ON public.product_image USING btree (template); + + +-- +-- Name: idx_product_image_cache_80da4c1f359b3011c7415a320c5164fe; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_image_cache_80da4c1f359b3011c7415a320c5164fe ON public.product_image_cache USING btree (product_image); + + +-- +-- Name: idx_product_lead_time_d85215815040a8bc3e83e5590588e11a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_lead_time_d85215815040a8bc3e83e5590588e11a ON public.product_lead_time USING btree (template) WHERE (template IS NOT NULL); + + +-- +-- Name: idx_product_list_price_d85215815040a8bc3e83e5590588e11a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_list_price_d85215815040a8bc3e83e5590588e11a ON public.product_list_price USING btree (template) WHERE (template IS NOT NULL); + + +-- +-- Name: idx_product_product_a77a352f88a9ec514e9ebeb8bf91e270; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_product_a77a352f88a9ec514e9ebeb8bf91e270 ON public.product_product USING btree (template); + + +-- +-- Name: idx_product_product_cf45a1328bfa8015c37420f68834059f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_product_cf45a1328bfa8015c37420f68834059f ON public.product_product USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_product_template_cf45a1328bfa8015c37420f68834059f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_template_cf45a1328bfa8015c37420f68834059f ON public.product_template USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_product_template_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_template_d884bc69b0c18974fe282eea226f070d ON public.product_template USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_product_uom_c8509d2106040556dcbd2fb26c909494; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_uom_c8509d2106040556dcbd2fb26c909494 ON public.product_uom USING btree (category); + + +-- +-- Name: idx_product_uom_category_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_uom_category_d884bc69b0c18974fe282eea226f070d ON public.product_uom_category USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_product_uom_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_product_uom_d884bc69b0c18974fe282eea226f070d ON public.product_uom USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_purchase_line_5a17d72236b7d10f54ad6feabac7afce; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_line_5a17d72236b7d10f54ad6feabac7afce ON public.purchase_line USING btree (purchase); + + +-- +-- Name: idx_purchase_line_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_line_6c19ea0bd65983713b156b49cf9c2cc9 ON public.purchase_line USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_purchase_line_account_tax_0402bf580705ea6c4485db5d0d5eb381; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_line_account_tax_0402bf580705ea6c4485db5d0d5eb381 ON public.purchase_line_account_tax USING btree (tax); + + +-- +-- Name: idx_purchase_line_account_tax_da6df17534b9562adfb181e4ad5b4515; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_line_account_tax_da6df17534b9562adfb181e4ad5b4515 ON public.purchase_line_account_tax USING btree (line); + + +-- +-- Name: idx_purchase_product_supplier_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_product_supplier_6c19ea0bd65983713b156b49cf9c2cc9 ON public.purchase_product_supplier USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_purchase_product_supplier_8a2f58c3dc9e5e092112de92ad6c1977; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_product_supplier_8a2f58c3dc9e5e092112de92ad6c1977 ON public.purchase_product_supplier USING btree (product) WHERE (product IS NOT NULL); + + +-- +-- Name: idx_purchase_product_supplier_a77a352f88a9ec514e9ebeb8bf91e270; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_product_supplier_a77a352f88a9ec514e9ebeb8bf91e270 ON public.purchase_product_supplier USING btree (template); + + +-- +-- Name: idx_purchase_product_supplier_cf45a1328bfa8015c37420f68834059f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_product_supplier_cf45a1328bfa8015c37420f68834059f ON public.purchase_product_supplier USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_purchase_product_supplier_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_product_supplier_d884bc69b0c18974fe282eea226f070d ON public.purchase_product_supplier USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_purchase_purchase_298d358e6a7daa1c2e6096440fc75690; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_purchase_298d358e6a7daa1c2e6096440fc75690 ON public.purchase_purchase USING hash (party); + + +-- +-- Name: idx_purchase_purchase_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_purchase_bd77ab5ed1955cb25e0da1e470953471 ON public.purchase_purchase USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_purchase_purchase_dbe3e42fc1f4792cdad27cc2991eaac7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_purchase_purchase_dbe3e42fc1f4792cdad27cc2991eaac7 ON public.purchase_purchase USING btree (reference varchar_pattern_ops); + + +-- +-- Name: idx_res_group_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_res_group_d884bc69b0c18974fe282eea226f070d ON public.res_group USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_res_user-company_company_3a3ad7b3fa511ca5dabc4f43d9d57489; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_res_user-company_company_3a3ad7b3fa511ca5dabc4f43d9d57489" ON public."res_user-company_company" USING btree ("user"); + + +-- +-- Name: idx_res_user-company_company_d40b5071818073d767eba05756b2ec6e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_res_user-company_company_d40b5071818073d767eba05756b2ec6e" ON public."res_user-company_company" USING btree (company); + + +-- +-- Name: idx_res_user-company_employee_3a3ad7b3fa511ca5dabc4f43d9d57489; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_res_user-company_employee_3a3ad7b3fa511ca5dabc4f43d9d57489" ON public."res_user-company_employee" USING btree ("user"); + + +-- +-- Name: idx_res_user-company_employee_b515e60aff4a6eade2cf5eb51737ab59; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_res_user-company_employee_b515e60aff4a6eade2cf5eb51737ab59" ON public."res_user-company_employee" USING btree (employee); + + +-- +-- Name: idx_res_user-ir_action_3a3ad7b3fa511ca5dabc4f43d9d57489; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_res_user-ir_action_3a3ad7b3fa511ca5dabc4f43d9d57489" ON public."res_user-ir_action" USING btree ("user"); + + +-- +-- Name: idx_res_user-ir_action_b3e46abd464f2ac1955ceeb0f47ea6cf; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_res_user-ir_action_b3e46abd464f2ac1955ceeb0f47ea6cf" ON public."res_user-ir_action" USING btree (action); + + +-- +-- Name: idx_res_user-res_group_378958288fb22e1c369289310230a07a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_res_user-res_group_378958288fb22e1c369289310230a07a" ON public."res_user-res_group" USING btree ("group"); + + +-- +-- Name: idx_res_user-res_group_3a3ad7b3fa511ca5dabc4f43d9d57489; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX "idx_res_user-res_group_3a3ad7b3fa511ca5dabc4f43d9d57489" ON public."res_user-res_group" USING btree ("user"); + + +-- +-- Name: idx_res_user_application_2fa250eededfb203c0a94742ea621f2b; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_res_user_application_2fa250eededfb203c0a94742ea621f2b ON public.res_user_application USING btree (key, application, state); + + +-- +-- Name: idx_res_user_application_7d85bec6dae4caa02a3a6428f0edd16a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_res_user_application_7d85bec6dae4caa02a3a6428f0edd16a ON public.res_user_application USING btree ("user") WHERE ("user" IS NOT NULL); + + +-- +-- Name: idx_res_user_application_a8d224f4f736135a784f3542f2908b7c; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_res_user_application_a8d224f4f736135a784f3542f2908b7c ON public.res_user_application USING btree (key varchar_pattern_ops); + + +-- +-- Name: idx_res_user_application_ad0b70b4fd13362db475d5968d7dcb31; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_res_user_application_ad0b70b4fd13362db475d5968d7dcb31 ON public.res_user_application USING btree ("user", state); + + +-- +-- Name: idx_res_user_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_res_user_d884bc69b0c18974fe282eea226f070d ON public.res_user USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_res_user_warning_3a3ad7b3fa511ca5dabc4f43d9d57489; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_res_user_warning_3a3ad7b3fa511ca5dabc4f43d9d57489 ON public.res_user_warning USING btree ("user"); + + +-- +-- Name: idx_res_user_warning_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_res_user_warning_d884bc69b0c18974fe282eea226f070d ON public.res_user_warning USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_sale_invoice_ignored_rel_41b8bce64e6508c6d3e158fe8fcaa1c3; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_invoice_ignored_rel_41b8bce64e6508c6d3e158fe8fcaa1c3 ON public.sale_invoice_ignored_rel USING btree (invoice); + + +-- +-- Name: idx_sale_invoice_ignored_rel_9b3b8c36dcbe836db300f95bf9292366; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_invoice_ignored_rel_9b3b8c36dcbe836db300f95bf9292366 ON public.sale_invoice_ignored_rel USING btree (sale); + + +-- +-- Name: idx_sale_invoice_recreated_rel_41b8bce64e6508c6d3e158fe8fcaa1c3; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_invoice_recreated_rel_41b8bce64e6508c6d3e158fe8fcaa1c3 ON public.sale_invoice_recreated_rel USING btree (invoice); + + +-- +-- Name: idx_sale_invoice_recreated_rel_9b3b8c36dcbe836db300f95bf9292366; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_invoice_recreated_rel_9b3b8c36dcbe836db300f95bf9292366 ON public.sale_invoice_recreated_rel USING btree (sale); + + +-- +-- Name: idx_sale_line_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_line_6c19ea0bd65983713b156b49cf9c2cc9 ON public.sale_line USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_sale_line_9b3b8c36dcbe836db300f95bf9292366; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_line_9b3b8c36dcbe836db300f95bf9292366 ON public.sale_line USING btree (sale); + + +-- +-- Name: idx_sale_line_account_tax_0402bf580705ea6c4485db5d0d5eb381; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_line_account_tax_0402bf580705ea6c4485db5d0d5eb381 ON public.sale_line_account_tax USING btree (tax); + + +-- +-- Name: idx_sale_line_account_tax_da6df17534b9562adfb181e4ad5b4515; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_line_account_tax_da6df17534b9562adfb181e4ad5b4515 ON public.sale_line_account_tax USING btree (line); + + +-- +-- Name: idx_sale_sale_298d358e6a7daa1c2e6096440fc75690; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_sale_298d358e6a7daa1c2e6096440fc75690 ON public.sale_sale USING hash (party); + + +-- +-- Name: idx_sale_sale_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_sale_bd77ab5ed1955cb25e0da1e470953471 ON public.sale_sale USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_sale_sale_dbe3e42fc1f4792cdad27cc2991eaac7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_sale_sale_dbe3e42fc1f4792cdad27cc2991eaac7 ON public.sale_sale USING btree (reference varchar_pattern_ops); + + +-- +-- Name: idx_stock_inventory_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_inventory_bd77ab5ed1955cb25e0da1e470953471 ON public.stock_inventory USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_stock_inventory_line_d881b485b5d8b606d973e3da68c9b7c9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_inventory_line_d881b485b5d8b606d973e3da68c9b7c9 ON public.stock_inventory_line USING btree (inventory); + + +-- +-- Name: idx_stock_location_6acf76edbc377218609e58df40d82127; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_location_6acf76edbc377218609e58df40d82127 ON public.stock_location USING btree (parent); + + +-- +-- Name: idx_stock_location_6eb54d8f44ab07574310c8ff7f62103e; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_location_6eb54d8f44ab07574310c8ff7f62103e ON public.stock_location USING btree (address) WHERE (address IS NOT NULL); + + +-- +-- Name: idx_stock_location_cf45a1328bfa8015c37420f68834059f; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_location_cf45a1328bfa8015c37420f68834059f ON public.stock_location USING btree (code varchar_pattern_ops); + + +-- +-- Name: idx_stock_location_d884bc69b0c18974fe282eea226f070d; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_location_d884bc69b0c18974fe282eea226f070d ON public.stock_location USING btree (name varchar_pattern_ops); + + +-- +-- Name: idx_stock_location_ff051ed1e543dfbaf88d78a9578dc805; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_location_ff051ed1e543dfbaf88d78a9578dc805 ON public.stock_location USING btree ("left", "right"); + + +-- +-- Name: idx_stock_location_lead_time_6c19ea0bd65983713b156b49cf9c2cc9; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_location_lead_time_6c19ea0bd65983713b156b49cf9c2cc9 ON public.stock_location_lead_time USING btree (sequence NULLS FIRST, id NULLS FIRST); + + +-- +-- Name: idx_stock_location_waste_5b7fc2cbac9b44c431568e7868d7a715; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_location_waste_5b7fc2cbac9b44c431568e7868d7a715 ON public.stock_location_waste USING btree (warehouse); + + +-- +-- Name: idx_stock_location_waste_de428e255c23d9b2dea2150bd0b100cd; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_location_waste_de428e255c23d9b2dea2150bd0b100cd ON public.stock_location_waste USING btree (location); + + +-- +-- Name: idx_stock_move_e0107eab695b17bbbed354ed7a0ff735; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_move_e0107eab695b17bbbed354ed7a0ff735 ON public.stock_move USING hash (shipment) WHERE (shipment IS NOT NULL); + + +-- +-- Name: idx_stock_move_fe15e9b21e3eb9ce168dd0a215b5de42; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_move_fe15e9b21e3eb9ce168dd0a215b5de42 ON public.stock_move USING hash (origin) WHERE (origin IS NOT NULL); + + +-- +-- Name: idx_stock_period_cache_815382b03bf21971358e99cfb9ba6285; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_period_cache_815382b03bf21971358e99cfb9ba6285 ON public.stock_period_cache USING hash (location); + + +-- +-- Name: idx_stock_period_cache_a5d4235e5d2b2e69e564d7c9dd882d9a; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_period_cache_a5d4235e5d2b2e69e564d7c9dd882d9a ON public.stock_period_cache USING btree (period); + + +-- +-- Name: idx_stock_period_cache_c4bb9bc9df5a7f12121178920deb9ceb; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_period_cache_c4bb9bc9df5a7f12121178920deb9ceb ON public.stock_period_cache USING btree (period, product) INCLUDE (internal_quantity); + + +-- +-- Name: idx_stock_shipment_in_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_in_bd77ab5ed1955cb25e0da1e470953471 ON public.stock_shipment_in USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_in_dbe3e42fc1f4792cdad27cc2991eaac7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_in_dbe3e42fc1f4792cdad27cc2991eaac7 ON public.stock_shipment_in USING btree (reference varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_in_return_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_in_return_bd77ab5ed1955cb25e0da1e470953471 ON public.stock_shipment_in_return USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_in_return_dbe3e42fc1f4792cdad27cc2991eaac7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_in_return_dbe3e42fc1f4792cdad27cc2991eaac7 ON public.stock_shipment_in_return USING btree (reference varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_internal_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_internal_bd77ab5ed1955cb25e0da1e470953471 ON public.stock_shipment_internal USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_internal_dbe3e42fc1f4792cdad27cc2991eaac7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_internal_dbe3e42fc1f4792cdad27cc2991eaac7 ON public.stock_shipment_internal USING btree (reference varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_out_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_out_bd77ab5ed1955cb25e0da1e470953471 ON public.stock_shipment_out USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_out_dbe3e42fc1f4792cdad27cc2991eaac7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_out_dbe3e42fc1f4792cdad27cc2991eaac7 ON public.stock_shipment_out USING btree (reference varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_out_return_bd77ab5ed1955cb25e0da1e470953471; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_out_return_bd77ab5ed1955cb25e0da1e470953471 ON public.stock_shipment_out_return USING btree (number varchar_pattern_ops); + + +-- +-- Name: idx_stock_shipment_out_return_dbe3e42fc1f4792cdad27cc2991eaac7; Type: INDEX; Schema: public; Owner: tryton +-- + +CREATE INDEX idx_stock_shipment_out_return_dbe3e42fc1f4792cdad27cc2991eaac7 ON public.stock_shipment_out_return USING btree (reference varchar_pattern_ops); + + +-- +-- Name: account_configuration_default_account 0bacdc0f4c36b8a80bfca095a88eeee611f780c6915f09aabdee071cd71e29d; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_account + ADD CONSTRAINT "0bacdc0f4c36b8a80bfca095a88eeee611f780c6915f09aabdee071cd71e29d" FOREIGN KEY (currency_exchange_debit_account) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_service-equipment_contract 0d543c897847bea06f1e3d5037a5f11eee0f664c1f960791afa645ce7e03edb; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance_service-equipment_contract" + ADD CONSTRAINT "0d543c897847bea06f1e3d5037a5f11eee0f664c1f960791afa645ce7e03edb" FOREIGN KEY (maintenance_services) REFERENCES public.optical_equipment_maintenance_service(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_default_tax_rule 10d412efbe7c0856ccf9999a0232e4082be90c5c6197c27ea90e66975b81423; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_tax_rule + ADD CONSTRAINT "10d412efbe7c0856ccf9999a0232e4082be90c5c6197c27ea90e66975b81423" FOREIGN KEY (default_supplier_tax_rule) REFERENCES public.account_tax_rule(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_calibration_sample 11532ef7685e7234d52772cc6253c540b3831cdf0b40f4a6de7975a05d73898; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_calibration_sample + ADD CONSTRAINT "11532ef7685e7234d52772cc6253c540b3831cdf0b40f4a6de7975a05d73898" FOREIGN KEY (value_patterns) REFERENCES public.optical_equipment_product_pattern(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_equipment-change_propietary_form 166603ec61561538a5a679674936ff36e1836944789c67aaba030a7e3822186; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_equipment-change_propietary_form" + ADD CONSTRAINT "166603ec61561538a5a679674936ff36e1836944789c67aaba030a7e3822186" FOREIGN KEY (maintenance_service) REFERENCES public.optical_equipment_maintenance_service(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_equipment-change_propietary_form 1fbb3b3a29e54db0c0a0378bd69c0246f7e4470c111d8c0109d32b37fb8681b; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_equipment-change_propietary_form" + ADD CONSTRAINT "1fbb3b3a29e54db0c0a0378bd69c0246f7e4470c111d8c0109d32b37fb8681b" FOREIGN KEY (equipment) REFERENCES public.optical_equipment_equipment(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_service-equipment_contract 29d5abd89238a92544a60143144aca2f38300348bdc8e2a7068dbadef1be205; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance_service-equipment_contract" + ADD CONSTRAINT "29d5abd89238a92544a60143144aca2f38300348bdc8e2a7068dbadef1be205" FOREIGN KEY (contract) REFERENCES public.optical_equipment_contract(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_default_account 2b3f54e5b3afe9c9cd004e35d0fa46c3a5bea39905919ec72e1ead6dc254e10; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_account + ADD CONSTRAINT "2b3f54e5b3afe9c9cd004e35d0fa46c3a5bea39905919ec72e1ead6dc254e10" FOREIGN KEY (default_category_account_expense) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_default_payment_term 41e2c3cc58b3489cbe42b0100e1c7ee474195a4dd3a41f7087659622289393c; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_payment_term + ADD CONSTRAINT "41e2c3cc58b3489cbe42b0100e1c7ee474195a4dd3a41f7087659622289393c" FOREIGN KEY (default_customer_payment_term) REFERENCES public.account_invoice_payment_term(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_default_account 42c14eada2f2de3d7097278580165ef3b692e1e665528587320b6d9974e7795; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_account + ADD CONSTRAINT "42c14eada2f2de3d7097278580165ef3b692e1e665528587320b6d9974e7795" FOREIGN KEY (currency_exchange_credit_account) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_service-maintenance_diary 4bdb4065cc1604124ee55d35a0ef4a9928f3e555a8a0595fae61f3f96c5ba88; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance_service-maintenance_diary" + ADD CONSTRAINT "4bdb4065cc1604124ee55d35a0ef4a9928f3e555a8a0595fae61f3f96c5ba88" FOREIGN KEY (maintenance_service) REFERENCES public.optical_equipment_maintenance_service(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_service-maintenance_diary 6de85db13eaf8619dc6c876de2ee1d2e5e52c809e6c79eeccd2bd66464af877; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance_service-maintenance_diary" + ADD CONSTRAINT "6de85db13eaf8619dc6c876de2ee1d2e5e52c809e6c79eeccd2bd66464af877" FOREIGN KEY (agended) REFERENCES public.optical_equipment_maintenance_diary(id) ON DELETE SET NULL; + + +-- +-- Name: account_account account_account_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account account_account_credit_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_credit_type_fkey FOREIGN KEY (credit_type) REFERENCES public.account_account_type(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account account_account_debit_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_debit_type_fkey FOREIGN KEY (debit_type) REFERENCES public.account_account_type(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_deferral account_account_deferral_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_deferral + ADD CONSTRAINT account_account_deferral_account_fkey FOREIGN KEY (account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_deferral account_account_deferral_fiscalyear_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_deferral + ADD CONSTRAINT account_account_deferral_fiscalyear_fkey FOREIGN KEY (fiscalyear) REFERENCES public.account_fiscalyear(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account account_account_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_parent_fkey FOREIGN KEY (parent) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account account_account_replaced_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_replaced_by_fkey FOREIGN KEY (replaced_by) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: account_account account_account_second_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_second_currency_fkey FOREIGN KEY (second_currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_tax_rel account_account_tax_rel_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_tax_rel + ADD CONSTRAINT account_account_tax_rel_account_fkey FOREIGN KEY (account) REFERENCES public.account_account(id) ON DELETE CASCADE; + + +-- +-- Name: account_account_tax_rel account_account_tax_rel_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_tax_rel + ADD CONSTRAINT account_account_tax_rel_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_template account_account_template_credit_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template + ADD CONSTRAINT account_account_template_credit_type_fkey FOREIGN KEY (credit_type) REFERENCES public.account_account_type_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_template account_account_template_debit_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template + ADD CONSTRAINT account_account_template_debit_type_fkey FOREIGN KEY (debit_type) REFERENCES public.account_account_type_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account account_account_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_template_fkey FOREIGN KEY (template) REFERENCES public.account_account_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_account_template account_account_template_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template + ADD CONSTRAINT account_account_template_parent_fkey FOREIGN KEY (parent) REFERENCES public.account_account_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_template account_account_template_replaced_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template + ADD CONSTRAINT account_account_template_replaced_by_fkey FOREIGN KEY (replaced_by) REFERENCES public.account_account_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_account_template_tax_rel account_account_template_tax_rel_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template_tax_rel + ADD CONSTRAINT account_account_template_tax_rel_account_fkey FOREIGN KEY (account) REFERENCES public.account_account_template(id) ON DELETE CASCADE; + + +-- +-- Name: account_account_template_tax_rel account_account_template_tax_rel_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template_tax_rel + ADD CONSTRAINT account_account_template_tax_rel_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_template account_account_template_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_template + ADD CONSTRAINT account_account_template_type_fkey FOREIGN KEY (type) REFERENCES public.account_account_type_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_type account_account_type_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_type + ADD CONSTRAINT account_account_type_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account account_account_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account + ADD CONSTRAINT account_account_type_fkey FOREIGN KEY (type) REFERENCES public.account_account_type(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_type account_account_type_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_type + ADD CONSTRAINT account_account_type_parent_fkey FOREIGN KEY (parent) REFERENCES public.account_account_type(id) ON DELETE RESTRICT; + + +-- +-- Name: account_account_type account_account_type_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_type + ADD CONSTRAINT account_account_type_template_fkey FOREIGN KEY (template) REFERENCES public.account_account_type_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_account_type_template account_account_type_template_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_account_type_template + ADD CONSTRAINT account_account_type_template_parent_fkey FOREIGN KEY (parent) REFERENCES public.account_account_type_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_configuration_default_account account_configuration_default_account_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_account + ADD CONSTRAINT account_configuration_default_account_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: account_configuration_default_payment_term account_configuration_default_payment_term_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_payment_term + ADD CONSTRAINT account_configuration_default_payment_term_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: account_configuration_default_tax_rule account_configuration_default_tax_rule_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_tax_rule + ADD CONSTRAINT account_configuration_default_tax_rule_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: account_configuration_journal account_configuration_journal_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_journal + ADD CONSTRAINT account_configuration_journal_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: account_configuration_journal account_configuration_journal_currency_exchange_journal_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_journal + ADD CONSTRAINT account_configuration_journal_currency_exchange_journal_fkey FOREIGN KEY (currency_exchange_journal) REFERENCES public.account_journal(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_sequence account_configuration_sequence_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_sequence + ADD CONSTRAINT account_configuration_sequence_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: account_configuration_sequence account_configuration_sequence_reconciliation_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_sequence + ADD CONSTRAINT account_configuration_sequence_reconciliation_sequence_fkey FOREIGN KEY (reconciliation_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: account_configuration_tax_rounding account_configuration_tax_rounding_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_tax_rounding + ADD CONSTRAINT account_configuration_tax_rounding_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: account_configuration_tax_rounding account_configuration_tax_rounding_configuration_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_tax_rounding + ADD CONSTRAINT account_configuration_tax_rounding_configuration_fkey FOREIGN KEY (configuration) REFERENCES public.account_configuration(id) ON DELETE CASCADE; + + +-- +-- Name: account_fiscalyear account_fiscalyear_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear + ADD CONSTRAINT account_fiscalyear_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_fiscalyear_invoice_sequence account_fiscalyear_invoice_sequence_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear_invoice_sequence + ADD CONSTRAINT account_fiscalyear_invoice_sequence_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_fiscalyear_invoice_sequence account_fiscalyear_invoice_sequence_fiscalyear_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear_invoice_sequence + ADD CONSTRAINT account_fiscalyear_invoice_sequence_fiscalyear_fkey FOREIGN KEY (fiscalyear) REFERENCES public.account_fiscalyear(id) ON DELETE CASCADE; + + +-- +-- Name: account_fiscalyear_invoice_sequence account_fiscalyear_invoice_sequence_in_invoice_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear_invoice_sequence + ADD CONSTRAINT account_fiscalyear_invoice_sequence_in_invoice_sequence_fkey FOREIGN KEY (in_invoice_sequence) REFERENCES public.ir_sequence_strict(id) ON DELETE RESTRICT; + + +-- +-- Name: account_fiscalyear_invoice_sequence account_fiscalyear_invoice_sequence_out_invoice_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear_invoice_sequence + ADD CONSTRAINT account_fiscalyear_invoice_sequence_out_invoice_sequence_fkey FOREIGN KEY (out_invoice_sequence) REFERENCES public.ir_sequence_strict(id) ON DELETE RESTRICT; + + +-- +-- Name: account_fiscalyear_invoice_sequence account_fiscalyear_invoice_sequence_period_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear_invoice_sequence + ADD CONSTRAINT account_fiscalyear_invoice_sequence_period_fkey FOREIGN KEY (period) REFERENCES public.account_period(id) ON DELETE SET NULL; + + +-- +-- Name: account_fiscalyear account_fiscalyear_post_move_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear + ADD CONSTRAINT account_fiscalyear_post_move_sequence_fkey FOREIGN KEY (post_move_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice-account_move_line account_invoice-account_move_line_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice-account_move_line" + ADD CONSTRAINT "account_invoice-account_move_line_invoice_fkey" FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice-account_move_line account_invoice-account_move_line_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice-account_move_line" + ADD CONSTRAINT "account_invoice-account_move_line_line_fkey" FOREIGN KEY (line) REFERENCES public.account_move_line(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice-additional-account_move account_invoice-additional-account_move_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice-additional-account_move" + ADD CONSTRAINT "account_invoice-additional-account_move_invoice_fkey" FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice-additional-account_move account_invoice-additional-account_move_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice-additional-account_move" + ADD CONSTRAINT "account_invoice-additional-account_move_move_fkey" FOREIGN KEY (move) REFERENCES public.account_move(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice account_invoice_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_account_fkey FOREIGN KEY (account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_alternative_payee account_invoice_alternative_payee_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_alternative_payee + ADD CONSTRAINT account_invoice_alternative_payee_invoice_fkey FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice_alternative_payee account_invoice_alternative_payee_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_alternative_payee + ADD CONSTRAINT account_invoice_alternative_payee_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_cancel_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_cancel_move_fkey FOREIGN KEY (cancel_move) REFERENCES public.account_move(id) ON DELETE SET NULL; + + +-- +-- Name: account_invoice account_invoice_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_invoice_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_invoice_address_fkey FOREIGN KEY (invoice_address) REFERENCES public.party_address(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_journal_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_journal_fkey FOREIGN KEY (journal) REFERENCES public.account_journal(id) ON DELETE SET NULL; + + +-- +-- Name: account_invoice_line-stock_move account_invoice_line-stock_move_invoice_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice_line-stock_move" + ADD CONSTRAINT "account_invoice_line-stock_move_invoice_line_fkey" FOREIGN KEY (invoice_line) REFERENCES public.account_invoice_line(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice_line-stock_move account_invoice_line-stock_move_stock_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."account_invoice_line-stock_move" + ADD CONSTRAINT "account_invoice_line-stock_move_stock_move_fkey" FOREIGN KEY (stock_move) REFERENCES public.stock_move(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice_line account_invoice_line_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line + ADD CONSTRAINT account_invoice_line_account_fkey FOREIGN KEY (account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_line_account_tax account_invoice_line_account_tax_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line_account_tax + ADD CONSTRAINT account_invoice_line_account_tax_line_fkey FOREIGN KEY (line) REFERENCES public.account_invoice_line(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice_line_account_tax account_invoice_line_account_tax_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line_account_tax + ADD CONSTRAINT account_invoice_line_account_tax_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_line account_invoice_line_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line + ADD CONSTRAINT account_invoice_line_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_line account_invoice_line_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line + ADD CONSTRAINT account_invoice_line_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_line account_invoice_line_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line + ADD CONSTRAINT account_invoice_line_invoice_fkey FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice_line account_invoice_line_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line + ADD CONSTRAINT account_invoice_line_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE SET NULL; + + +-- +-- Name: account_invoice_line account_invoice_line_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line + ADD CONSTRAINT account_invoice_line_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_line account_invoice_line_unit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_line + ADD CONSTRAINT account_invoice_line_unit_fkey FOREIGN KEY (unit) REFERENCES public.product_uom(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_move_fkey FOREIGN KEY (move) REFERENCES public.account_move(id) ON DELETE SET NULL; + + +-- +-- Name: account_invoice account_invoice_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_party_tax_identifier_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_party_tax_identifier_fkey FOREIGN KEY (party_tax_identifier) REFERENCES public.party_identifier(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_payment_method account_invoice_payment_method_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_method + ADD CONSTRAINT account_invoice_payment_method_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_payment_method account_invoice_payment_method_credit_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_method + ADD CONSTRAINT account_invoice_payment_method_credit_account_fkey FOREIGN KEY (credit_account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_payment_method account_invoice_payment_method_debit_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_method + ADD CONSTRAINT account_invoice_payment_method_debit_account_fkey FOREIGN KEY (debit_account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_payment_method account_invoice_payment_method_journal_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_method + ADD CONSTRAINT account_invoice_payment_method_journal_fkey FOREIGN KEY (journal) REFERENCES public.account_journal(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_payment_term_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_payment_term_fkey FOREIGN KEY (payment_term) REFERENCES public.account_invoice_payment_term(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_payment_term_line account_invoice_payment_term_line_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_term_line + ADD CONSTRAINT account_invoice_payment_term_line_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE SET NULL; + + +-- +-- Name: account_invoice_payment_term_line_delta account_invoice_payment_term_line_delta_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_term_line_delta + ADD CONSTRAINT account_invoice_payment_term_line_delta_line_fkey FOREIGN KEY (line) REFERENCES public.account_invoice_payment_term_line(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice_payment_term_line_delta account_invoice_payment_term_line_delta_month_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_term_line_delta + ADD CONSTRAINT account_invoice_payment_term_line_delta_month_fkey FOREIGN KEY (month) REFERENCES public.ir_calendar_month(id) ON DELETE SET NULL; + + +-- +-- Name: account_invoice_payment_term_line_delta account_invoice_payment_term_line_delta_weekday_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_term_line_delta + ADD CONSTRAINT account_invoice_payment_term_line_delta_weekday_fkey FOREIGN KEY (weekday) REFERENCES public.ir_calendar_day(id) ON DELETE SET NULL; + + +-- +-- Name: account_invoice_payment_term_line account_invoice_payment_term_line_payment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_payment_term_line + ADD CONSTRAINT account_invoice_payment_term_line_payment_fkey FOREIGN KEY (payment) REFERENCES public.account_invoice_payment_term(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice account_invoice_posted_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_posted_by_fkey FOREIGN KEY (posted_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: account_invoice_report_revision account_invoice_report_revision_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_report_revision + ADD CONSTRAINT account_invoice_report_revision_invoice_fkey FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice_tax account_invoice_tax_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_tax + ADD CONSTRAINT account_invoice_tax_account_fkey FOREIGN KEY (account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_tax_identifier_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_tax_identifier_fkey FOREIGN KEY (tax_identifier) REFERENCES public.party_identifier(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice_tax account_invoice_tax_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_tax + ADD CONSTRAINT account_invoice_tax_invoice_fkey FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE CASCADE; + + +-- +-- Name: account_invoice_tax account_invoice_tax_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice_tax + ADD CONSTRAINT account_invoice_tax_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: account_invoice account_invoice_validated_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_invoice + ADD CONSTRAINT account_invoice_validated_by_fkey FOREIGN KEY (validated_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: account_journal_period account_journal_period_journal_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal_period + ADD CONSTRAINT account_journal_period_journal_fkey FOREIGN KEY (journal) REFERENCES public.account_journal(id) ON DELETE CASCADE; + + +-- +-- Name: account_journal_period account_journal_period_period_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal_period + ADD CONSTRAINT account_journal_period_period_fkey FOREIGN KEY (period) REFERENCES public.account_period(id) ON DELETE CASCADE; + + +-- +-- Name: account_journal_sequence account_journal_sequence_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal_sequence + ADD CONSTRAINT account_journal_sequence_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: account_journal_sequence account_journal_sequence_journal_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal_sequence + ADD CONSTRAINT account_journal_sequence_journal_fkey FOREIGN KEY (journal) REFERENCES public.account_journal(id) ON DELETE CASCADE; + + +-- +-- Name: account_journal_sequence account_journal_sequence_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_journal_sequence + ADD CONSTRAINT account_journal_sequence_sequence_fkey FOREIGN KEY (sequence) REFERENCES public.ir_sequence(id) ON DELETE SET NULL; + + +-- +-- Name: account_move account_move_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move + ADD CONSTRAINT account_move_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move account_move_journal_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move + ADD CONSTRAINT account_move_journal_fkey FOREIGN KEY (journal) REFERENCES public.account_journal(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_line account_move_line_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line + ADD CONSTRAINT account_move_line_account_fkey FOREIGN KEY (account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_line account_move_line_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line + ADD CONSTRAINT account_move_line_move_fkey FOREIGN KEY (move) REFERENCES public.account_move(id) ON DELETE CASCADE; + + +-- +-- Name: account_move_line account_move_line_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line + ADD CONSTRAINT account_move_line_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_line account_move_line_reconciliation_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line + ADD CONSTRAINT account_move_line_reconciliation_fkey FOREIGN KEY (reconciliation) REFERENCES public.account_move_reconciliation(id) ON DELETE SET NULL; + + +-- +-- Name: account_move_line account_move_line_second_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line + ADD CONSTRAINT account_move_line_second_currency_fkey FOREIGN KEY (second_currency) REFERENCES public.currency_currency(id) ON DELETE SET NULL; + + +-- +-- Name: account_move_line_template account_move_line_template_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line_template + ADD CONSTRAINT account_move_line_template_account_fkey FOREIGN KEY (account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_line_template account_move_line_template_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_line_template + ADD CONSTRAINT account_move_line_template_move_fkey FOREIGN KEY (move) REFERENCES public.account_move_template(id) ON DELETE CASCADE; + + +-- +-- Name: account_move account_move_period_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move + ADD CONSTRAINT account_move_period_fkey FOREIGN KEY (period) REFERENCES public.account_period(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_reconcile_write_off account_move_reconcile_write_off_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_reconcile_write_off + ADD CONSTRAINT account_move_reconcile_write_off_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_reconcile_write_off account_move_reconcile_write_off_credit_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_reconcile_write_off + ADD CONSTRAINT account_move_reconcile_write_off_credit_account_fkey FOREIGN KEY (credit_account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_reconcile_write_off account_move_reconcile_write_off_debit_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_reconcile_write_off + ADD CONSTRAINT account_move_reconcile_write_off_debit_account_fkey FOREIGN KEY (debit_account) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_reconcile_write_off account_move_reconcile_write_off_journal_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_reconcile_write_off + ADD CONSTRAINT account_move_reconcile_write_off_journal_fkey FOREIGN KEY (journal) REFERENCES public.account_journal(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_reconciliation account_move_reconciliation_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_reconciliation + ADD CONSTRAINT account_move_reconciliation_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_reconciliation account_move_reconciliation_delegate_to_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_reconciliation + ADD CONSTRAINT account_move_reconciliation_delegate_to_fkey FOREIGN KEY (delegate_to) REFERENCES public.account_move_line(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_template account_move_template_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_template + ADD CONSTRAINT account_move_template_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_template account_move_template_journal_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_template + ADD CONSTRAINT account_move_template_journal_fkey FOREIGN KEY (journal) REFERENCES public.account_journal(id) ON DELETE RESTRICT; + + +-- +-- Name: account_move_template_keyword account_move_template_keyword_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_move_template_keyword + ADD CONSTRAINT account_move_template_keyword_move_fkey FOREIGN KEY (move) REFERENCES public.account_move_template(id) ON DELETE CASCADE; + + +-- +-- Name: account_period account_period_fiscalyear_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_period + ADD CONSTRAINT account_period_fiscalyear_fkey FOREIGN KEY (fiscalyear) REFERENCES public.account_fiscalyear(id) ON DELETE RESTRICT; + + +-- +-- Name: account_period account_period_post_move_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_period + ADD CONSTRAINT account_period_post_move_sequence_fkey FOREIGN KEY (post_move_sequence) REFERENCES public.ir_sequence(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax_code account_tax_code_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code + ADD CONSTRAINT account_tax_code_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_code_line account_tax_code_line_code_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_line + ADD CONSTRAINT account_tax_code_line_code_fkey FOREIGN KEY (code) REFERENCES public.account_tax_code(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_code_line account_tax_code_line_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_line + ADD CONSTRAINT account_tax_code_line_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_code_line_template account_tax_code_line_template_code_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_line_template + ADD CONSTRAINT account_tax_code_line_template_code_fkey FOREIGN KEY (code) REFERENCES public.account_tax_code_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_code_line account_tax_code_line_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_line + ADD CONSTRAINT account_tax_code_line_template_fkey FOREIGN KEY (template) REFERENCES public.account_tax_code_line_template(id) ON DELETE CASCADE; + + +-- +-- Name: account_tax_code_line_template account_tax_code_line_template_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_line_template + ADD CONSTRAINT account_tax_code_line_template_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_code account_tax_code_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code + ADD CONSTRAINT account_tax_code_parent_fkey FOREIGN KEY (parent) REFERENCES public.account_tax_code(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax_code_template account_tax_code_template_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_template + ADD CONSTRAINT account_tax_code_template_account_fkey FOREIGN KEY (account) REFERENCES public.account_account_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_code account_tax_code_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code + ADD CONSTRAINT account_tax_code_template_fkey FOREIGN KEY (template) REFERENCES public.account_tax_code_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax_code_template account_tax_code_template_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_code_template + ADD CONSTRAINT account_tax_code_template_parent_fkey FOREIGN KEY (parent) REFERENCES public.account_tax_code_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax account_tax_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax + ADD CONSTRAINT account_tax_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax account_tax_credit_note_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax + ADD CONSTRAINT account_tax_credit_note_account_fkey FOREIGN KEY (credit_note_account) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax account_tax_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax + ADD CONSTRAINT account_tax_group_fkey FOREIGN KEY ("group") REFERENCES public.account_tax_group(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax account_tax_invoice_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax + ADD CONSTRAINT account_tax_invoice_account_fkey FOREIGN KEY (invoice_account) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax_line account_tax_line_move_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_line + ADD CONSTRAINT account_tax_line_move_line_fkey FOREIGN KEY (move_line) REFERENCES public.account_move_line(id) ON DELETE CASCADE; + + +-- +-- Name: account_tax_line account_tax_line_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_line + ADD CONSTRAINT account_tax_line_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_line_template account_tax_line_template_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_line_template + ADD CONSTRAINT account_tax_line_template_line_fkey FOREIGN KEY (line) REFERENCES public.account_move_line_template(id) ON DELETE CASCADE; + + +-- +-- Name: account_tax_line_template account_tax_line_template_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_line_template + ADD CONSTRAINT account_tax_line_template_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax account_tax_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax + ADD CONSTRAINT account_tax_parent_fkey FOREIGN KEY (parent) REFERENCES public.account_tax(id) ON DELETE CASCADE; + + +-- +-- Name: account_tax_rule account_tax_rule_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule + ADD CONSTRAINT account_tax_rule_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_rule_line account_tax_rule_line_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line + ADD CONSTRAINT account_tax_rule_line_group_fkey FOREIGN KEY ("group") REFERENCES public.account_tax_group(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_rule_line account_tax_rule_line_origin_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line + ADD CONSTRAINT account_tax_rule_line_origin_tax_fkey FOREIGN KEY (origin_tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_rule_line account_tax_rule_line_rule_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line + ADD CONSTRAINT account_tax_rule_line_rule_fkey FOREIGN KEY (rule) REFERENCES public.account_tax_rule(id) ON DELETE CASCADE; + + +-- +-- Name: account_tax_rule_line account_tax_rule_line_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line + ADD CONSTRAINT account_tax_rule_line_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_rule_line account_tax_rule_line_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line + ADD CONSTRAINT account_tax_rule_line_template_fkey FOREIGN KEY (template) REFERENCES public.account_tax_rule_line_template(id) ON DELETE CASCADE; + + +-- +-- Name: account_tax_rule_line_template account_tax_rule_line_template_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line_template + ADD CONSTRAINT account_tax_rule_line_template_group_fkey FOREIGN KEY ("group") REFERENCES public.account_tax_group(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_rule_line_template account_tax_rule_line_template_origin_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line_template + ADD CONSTRAINT account_tax_rule_line_template_origin_tax_fkey FOREIGN KEY (origin_tax) REFERENCES public.account_tax_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_rule_line_template account_tax_rule_line_template_rule_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line_template + ADD CONSTRAINT account_tax_rule_line_template_rule_fkey FOREIGN KEY (rule) REFERENCES public.account_tax_rule_template(id) ON DELETE CASCADE; + + +-- +-- Name: account_tax_rule_line_template account_tax_rule_line_template_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_line_template + ADD CONSTRAINT account_tax_rule_line_template_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_rule_template account_tax_rule_template_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule_template + ADD CONSTRAINT account_tax_rule_template_account_fkey FOREIGN KEY (account) REFERENCES public.account_account_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_rule account_tax_rule_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_rule + ADD CONSTRAINT account_tax_rule_template_fkey FOREIGN KEY (template) REFERENCES public.account_tax_rule_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax_template account_tax_template_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_template + ADD CONSTRAINT account_tax_template_account_fkey FOREIGN KEY (account) REFERENCES public.account_account_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_template account_tax_template_credit_note_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_template + ADD CONSTRAINT account_tax_template_credit_note_account_fkey FOREIGN KEY (credit_note_account) REFERENCES public.account_account_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax account_tax_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax + ADD CONSTRAINT account_tax_template_fkey FOREIGN KEY (template) REFERENCES public.account_tax_template(id) ON DELETE RESTRICT; + + +-- +-- Name: account_tax_template account_tax_template_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_template + ADD CONSTRAINT account_tax_template_group_fkey FOREIGN KEY ("group") REFERENCES public.account_tax_group(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax_template account_tax_template_invoice_account_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_template + ADD CONSTRAINT account_tax_template_invoice_account_fkey FOREIGN KEY (invoice_account) REFERENCES public.account_account_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_tax_template account_tax_template_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_tax_template + ADD CONSTRAINT account_tax_template_parent_fkey FOREIGN KEY (parent) REFERENCES public.account_tax_template(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_default_tax_rule ae04de3638a6b7bbe49651ded8a35086fdf179f7c61e2c3ba715a408fccc498; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_tax_rule + ADD CONSTRAINT ae04de3638a6b7bbe49651ded8a35086fdf179f7c61e2c3ba715a408fccc498 FOREIGN KEY (default_customer_tax_rule) REFERENCES public.account_tax_rule(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance-optical_equipment_equipment b1c2ba8de9dfa22d99f2a1c42ad3271f9f4221319877356cb8e6d3641bac596; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance-optical_equipment_equipment" + ADD CONSTRAINT b1c2ba8de9dfa22d99f2a1c42ad3271f9f4221319877356cb8e6d3641bac596 FOREIGN KEY (equipment) REFERENCES public.optical_equipment_equipment(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_contract-optical_equipment_equipment b7863a262e083fc3fe9947112f3f8695169648c0b4a478782a3b2c4bd35fc10; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_contract-optical_equipment_equipment" + ADD CONSTRAINT b7863a262e083fc3fe9947112f3f8695169648c0b4a478782a3b2c4bd35fc10 FOREIGN KEY (contract) REFERENCES public.optical_equipment_contract(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_default_account c1f0e4fdce663e399dca2d3e0f8d50f43dbd0e1e1163d8d3f6ca3dfe09f2e13; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_account + ADD CONSTRAINT c1f0e4fdce663e399dca2d3e0f8d50f43dbd0e1e1163d8d3f6ca3dfe09f2e13 FOREIGN KEY (default_account_receivable) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_default_account c2efde61a60de84a72f69af27d7d48be9c9a3685c4f4136458754cb5bd4feae; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_account + ADD CONSTRAINT c2efde61a60de84a72f69af27d7d48be9c9a3685c4f4136458754cb5bd4feae FOREIGN KEY (default_category_account_revenue) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_calibration_sample c58967637469c055fcb75a08a66de9bbb9842950d146cc72cb373e098d6c3f0; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_calibration_sample + ADD CONSTRAINT c58967637469c055fcb75a08a66de9bbb9842950d146cc72cb373e098d6c3f0 FOREIGN KEY (maintenance) REFERENCES public.optical_equipment_maintenance(id) ON DELETE SET NULL; + + +-- +-- Name: company_company company_company_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.company_company + ADD CONSTRAINT company_company_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: company_company company_company_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.company_company + ADD CONSTRAINT company_company_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: company_employee company_employee_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.company_employee + ADD CONSTRAINT company_employee_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: company_employee company_employee_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.company_employee + ADD CONSTRAINT company_employee_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: company_employee company_employee_supervisor_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.company_employee + ADD CONSTRAINT company_employee_supervisor_fkey FOREIGN KEY (supervisor) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: country_country country_country_region_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_country + ADD CONSTRAINT country_country_region_fkey FOREIGN KEY (region) REFERENCES public.country_region(id) ON DELETE SET NULL; + + +-- +-- Name: country_organization_member country_organization_member_country_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_organization_member + ADD CONSTRAINT country_organization_member_country_fkey FOREIGN KEY (country) REFERENCES public.country_country(id) ON DELETE RESTRICT; + + +-- +-- Name: country_organization_member country_organization_member_organization_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_organization_member + ADD CONSTRAINT country_organization_member_organization_fkey FOREIGN KEY (organization) REFERENCES public.country_organization(id) ON DELETE RESTRICT; + + +-- +-- Name: country_postal_code country_postal_code_country_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_postal_code + ADD CONSTRAINT country_postal_code_country_fkey FOREIGN KEY (country) REFERENCES public.country_country(id) ON DELETE CASCADE; + + +-- +-- Name: country_postal_code country_postal_code_subdivision_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_postal_code + ADD CONSTRAINT country_postal_code_subdivision_fkey FOREIGN KEY (subdivision) REFERENCES public.country_subdivision(id) ON DELETE CASCADE; + + +-- +-- Name: country_region country_region_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_region + ADD CONSTRAINT country_region_parent_fkey FOREIGN KEY (parent) REFERENCES public.country_region(id) ON DELETE SET NULL; + + +-- +-- Name: country_subdivision country_subdivision_country_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_subdivision + ADD CONSTRAINT country_subdivision_country_fkey FOREIGN KEY (country) REFERENCES public.country_country(id) ON DELETE RESTRICT; + + +-- +-- Name: country_subdivision country_subdivision_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.country_subdivision + ADD CONSTRAINT country_subdivision_parent_fkey FOREIGN KEY (parent) REFERENCES public.country_subdivision(id) ON DELETE SET NULL; + + +-- +-- Name: cron_company_rel cron_company_rel_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.cron_company_rel + ADD CONSTRAINT cron_company_rel_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: cron_company_rel cron_company_rel_cron_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.cron_company_rel + ADD CONSTRAINT cron_company_rel_cron_fkey FOREIGN KEY (cron) REFERENCES public.ir_cron(id) ON DELETE CASCADE; + + +-- +-- Name: currency_cron-currency_currency currency_cron-currency_currency_cron_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."currency_cron-currency_currency" + ADD CONSTRAINT "currency_cron-currency_currency_cron_fkey" FOREIGN KEY (cron) REFERENCES public.currency_cron(id) ON DELETE CASCADE; + + +-- +-- Name: currency_cron-currency_currency currency_cron-currency_currency_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."currency_cron-currency_currency" + ADD CONSTRAINT "currency_cron-currency_currency_currency_fkey" FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE CASCADE; + + +-- +-- Name: currency_cron currency_cron_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.currency_cron + ADD CONSTRAINT currency_cron_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: currency_cron currency_cron_weekday_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.currency_cron + ADD CONSTRAINT currency_cron_weekday_fkey FOREIGN KEY (weekday) REFERENCES public.ir_calendar_day(id) ON DELETE SET NULL; + + +-- +-- Name: currency_currency_rate currency_currency_rate_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.currency_currency_rate + ADD CONSTRAINT currency_currency_rate_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE CASCADE; + + +-- +-- Name: account_fiscalyear_invoice_sequence d808daf5b0d1407a0c785d3716280e925f9161ccb2bcede0436b93a3cc309a8; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear_invoice_sequence + ADD CONSTRAINT d808daf5b0d1407a0c785d3716280e925f9161ccb2bcede0436b93a3cc309a8 FOREIGN KEY (out_credit_note_sequence) REFERENCES public.ir_sequence_strict(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_maintenance-optical_equipment_equipment dd580720bac2ad90ccafe3e2d5b2c32c19dd6e266e9d5530d6f6cff5a7baeba; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_maintenance-optical_equipment_equipment" + ADD CONSTRAINT dd580720bac2ad90ccafe3e2d5b2c32c19dd6e266e9d5530d6f6cff5a7baeba FOREIGN KEY (maintenance) REFERENCES public.optical_equipment_maintenance(id) ON DELETE SET NULL; + + +-- +-- Name: account_configuration_default_account e163442b5a9bd02d636a480a4def30ef47841edeeffb8382c25ab3a7e40740b; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_configuration_default_account + ADD CONSTRAINT e163442b5a9bd02d636a480a4def30ef47841edeeffb8382c25ab3a7e40740b FOREIGN KEY (default_account_payable) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: account_fiscalyear_invoice_sequence e1d9aeb93ea6fb0ca37bb2625854de693245400db090c008b31ed3846e76402; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.account_fiscalyear_invoice_sequence + ADD CONSTRAINT e1d9aeb93ea6fb0ca37bb2625854de693245400db090c008b31ed3846e76402 FOREIGN KEY (in_credit_note_sequence) REFERENCES public.ir_sequence_strict(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_contract-optical_equipment_equipment fe6e3e8bd2f0ea574834fec5b8e453ead698fd490e7c94d5a7e5771ef1ab56f; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_contract-optical_equipment_equipment" + ADD CONSTRAINT fe6e3e8bd2f0ea574834fec5b8e453ead698fd490e7c94d5a7e5771ef1ab56f FOREIGN KEY (equipment) REFERENCES public.optical_equipment_equipment(id) ON DELETE SET NULL; + + +-- +-- Name: ir_action-res_group ir_action-res_group_action_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_action-res_group" + ADD CONSTRAINT "ir_action-res_group_action_fkey" FOREIGN KEY (action) REFERENCES public.ir_action(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action-res_group ir_action-res_group_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_action-res_group" + ADD CONSTRAINT "ir_action-res_group_group_fkey" FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action_act_window ir_action_act_window_action_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_act_window + ADD CONSTRAINT ir_action_act_window_action_fkey FOREIGN KEY (action) REFERENCES public.ir_action(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action_act_window_domain ir_action_act_window_domain_act_window_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_act_window_domain + ADD CONSTRAINT ir_action_act_window_domain_act_window_fkey FOREIGN KEY (act_window) REFERENCES public.ir_action_act_window(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action_act_window_view ir_action_act_window_view_act_window_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_act_window_view + ADD CONSTRAINT ir_action_act_window_view_act_window_fkey FOREIGN KEY (act_window) REFERENCES public.ir_action_act_window(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action_act_window_view ir_action_act_window_view_view_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_act_window_view + ADD CONSTRAINT ir_action_act_window_view_view_fkey FOREIGN KEY (view) REFERENCES public.ir_ui_view(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action ir_action_icon_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action + ADD CONSTRAINT ir_action_icon_fkey FOREIGN KEY (icon) REFERENCES public.ir_ui_icon(id) ON DELETE SET NULL; + + +-- +-- Name: ir_action_keyword ir_action_keyword_action_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_keyword + ADD CONSTRAINT ir_action_keyword_action_fkey FOREIGN KEY (action) REFERENCES public.ir_action(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action_report ir_action_report_action_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_report + ADD CONSTRAINT ir_action_report_action_fkey FOREIGN KEY (action) REFERENCES public.ir_action(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action_url ir_action_url_action_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_url + ADD CONSTRAINT ir_action_url_action_fkey FOREIGN KEY (action) REFERENCES public.ir_action(id) ON DELETE CASCADE; + + +-- +-- Name: ir_action_wizard ir_action_wizard_action_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_action_wizard + ADD CONSTRAINT ir_action_wizard_action_fkey FOREIGN KEY (action) REFERENCES public.ir_action(id) ON DELETE CASCADE; + + +-- +-- Name: ir_avatar_cache ir_avatar_cache_avatar_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_avatar_cache + ADD CONSTRAINT ir_avatar_cache_avatar_fkey FOREIGN KEY (avatar) REFERENCES public.ir_avatar(id) ON DELETE CASCADE; + + +-- +-- Name: ir_cron ir_cron_weekday_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_cron + ADD CONSTRAINT ir_cron_weekday_fkey FOREIGN KEY (weekday) REFERENCES public.ir_calendar_day(id) ON DELETE SET NULL; + + +-- +-- Name: ir_email_address ir_email_address_email_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_email_address + ADD CONSTRAINT ir_email_address_email_fkey FOREIGN KEY (email) REFERENCES public.ir_email(id) ON DELETE CASCADE; + + +-- +-- Name: ir_email_template-ir_action_report ir_email_template-ir_action_report_report_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_email_template-ir_action_report" + ADD CONSTRAINT "ir_email_template-ir_action_report_report_fkey" FOREIGN KEY (report) REFERENCES public.ir_action_report(id) ON DELETE CASCADE; + + +-- +-- Name: ir_email_template-ir_action_report ir_email_template-ir_action_report_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_email_template-ir_action_report" + ADD CONSTRAINT "ir_email_template-ir_action_report_template_fkey" FOREIGN KEY (template) REFERENCES public.ir_email_template(id) ON DELETE CASCADE; + + +-- +-- Name: ir_email_template ir_email_template_model_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_email_template + ADD CONSTRAINT ir_email_template_model_fkey FOREIGN KEY (model) REFERENCES public.ir_model(id) ON DELETE RESTRICT; + + +-- +-- Name: ir_email_template ir_email_template_recipients_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_email_template + ADD CONSTRAINT ir_email_template_recipients_fkey FOREIGN KEY (recipients) REFERENCES public.ir_model_field(id) ON DELETE SET NULL; + + +-- +-- Name: ir_email_template ir_email_template_recipients_hidden_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_email_template + ADD CONSTRAINT ir_email_template_recipients_hidden_fkey FOREIGN KEY (recipients_hidden) REFERENCES public.ir_model_field(id) ON DELETE SET NULL; + + +-- +-- Name: ir_email_template ir_email_template_recipients_secondary_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_email_template + ADD CONSTRAINT ir_email_template_recipients_secondary_fkey FOREIGN KEY (recipients_secondary) REFERENCES public.ir_model_field(id) ON DELETE SET NULL; + + +-- +-- Name: ir_error ir_error_processed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_error + ADD CONSTRAINT ir_error_processed_by_fkey FOREIGN KEY (processed_by) REFERENCES public.res_user(id) ON DELETE SET NULL; + + +-- +-- Name: ir_error ir_error_solved_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_error + ADD CONSTRAINT ir_error_solved_by_fkey FOREIGN KEY (solved_by) REFERENCES public.res_user(id) ON DELETE SET NULL; + + +-- +-- Name: ir_export-res_group ir_export-res_group_export_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_export-res_group" + ADD CONSTRAINT "ir_export-res_group_export_fkey" FOREIGN KEY (export) REFERENCES public.ir_export(id) ON DELETE CASCADE; + + +-- +-- Name: ir_export-res_group ir_export-res_group_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_export-res_group" + ADD CONSTRAINT "ir_export-res_group_group_fkey" FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_export-write-res_group ir_export-write-res_group_export_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_export-write-res_group" + ADD CONSTRAINT "ir_export-write-res_group_export_fkey" FOREIGN KEY (export) REFERENCES public.ir_export(id) ON DELETE CASCADE; + + +-- +-- Name: ir_export-write-res_group ir_export-write-res_group_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_export-write-res_group" + ADD CONSTRAINT "ir_export-write-res_group_group_fkey" FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_export_line ir_export_line_export_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_export_line + ADD CONSTRAINT ir_export_line_export_fkey FOREIGN KEY (export) REFERENCES public.ir_export(id) ON DELETE CASCADE; + + +-- +-- Name: ir_export ir_export_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_export + ADD CONSTRAINT ir_export_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_access ir_model_access_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_access + ADD CONSTRAINT ir_model_access_group_fkey FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_access ir_model_access_model_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_access + ADD CONSTRAINT ir_model_access_model_fkey FOREIGN KEY (model) REFERENCES public.ir_model(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button-button_reset ir_model_button-button_reset_button_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_model_button-button_reset" + ADD CONSTRAINT "ir_model_button-button_reset_button_fkey" FOREIGN KEY (button) REFERENCES public.ir_model_button(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button-button_reset ir_model_button-button_reset_button_ruled_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_model_button-button_reset" + ADD CONSTRAINT "ir_model_button-button_reset_button_ruled_fkey" FOREIGN KEY (button_ruled) REFERENCES public.ir_model_button(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button-res_group ir_model_button-res_group_button_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_model_button-res_group" + ADD CONSTRAINT "ir_model_button-res_group_button_fkey" FOREIGN KEY (button) REFERENCES public.ir_model_button(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button-res_group ir_model_button-res_group_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_model_button-res_group" + ADD CONSTRAINT "ir_model_button-res_group_group_fkey" FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button_click ir_model_button_click_button_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button_click + ADD CONSTRAINT ir_model_button_click_button_fkey FOREIGN KEY (button) REFERENCES public.ir_model_button(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button_click ir_model_button_click_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button_click + ADD CONSTRAINT ir_model_button_click_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button ir_model_button_model_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button + ADD CONSTRAINT ir_model_button_model_fkey FOREIGN KEY (model) REFERENCES public.ir_model(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button_rule ir_model_button_rule_button_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button_rule + ADD CONSTRAINT ir_model_button_rule_button_fkey FOREIGN KEY (button) REFERENCES public.ir_model_button(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_button_rule ir_model_button_rule_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_button_rule + ADD CONSTRAINT ir_model_button_rule_group_fkey FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_field_access ir_model_field_access_field_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_field_access + ADD CONSTRAINT ir_model_field_access_field_fkey FOREIGN KEY (field) REFERENCES public.ir_model_field(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_field_access ir_model_field_access_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_field_access + ADD CONSTRAINT ir_model_field_access_group_fkey FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_field ir_model_field_model_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_field + ADD CONSTRAINT ir_model_field_model_fkey FOREIGN KEY (model) REFERENCES public.ir_model(id) ON DELETE CASCADE; + + +-- +-- Name: ir_model_log ir_model_log_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_model_log + ADD CONSTRAINT ir_model_log_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE SET NULL; + + +-- +-- Name: ir_module_config_wizard_item ir_module_config_wizard_item_action_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_module_config_wizard_item + ADD CONSTRAINT ir_module_config_wizard_item_action_fkey FOREIGN KEY (action) REFERENCES public.ir_action(id) ON DELETE RESTRICT; + + +-- +-- Name: ir_module_dependency ir_module_dependency_module_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_module_dependency + ADD CONSTRAINT ir_module_dependency_module_fkey FOREIGN KEY (module) REFERENCES public.ir_module(id) ON DELETE CASCADE; + + +-- +-- Name: ir_note_read ir_note_read_note_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_note_read + ADD CONSTRAINT ir_note_read_note_fkey FOREIGN KEY (note) REFERENCES public.ir_note(id) ON DELETE CASCADE; + + +-- +-- Name: ir_note_read ir_note_read_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_note_read + ADD CONSTRAINT ir_note_read_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: ir_rule_group-res_group ir_rule_group-res_group_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_rule_group-res_group" + ADD CONSTRAINT "ir_rule_group-res_group_group_fkey" FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_rule_group-res_group ir_rule_group-res_group_rule_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_rule_group-res_group" + ADD CONSTRAINT "ir_rule_group-res_group_rule_group_fkey" FOREIGN KEY (rule_group) REFERENCES public.ir_rule_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_rule_group ir_rule_group_model_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_rule_group + ADD CONSTRAINT ir_rule_group_model_fkey FOREIGN KEY (model) REFERENCES public.ir_model(id) ON DELETE CASCADE; + + +-- +-- Name: ir_rule ir_rule_rule_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_rule + ADD CONSTRAINT ir_rule_rule_group_fkey FOREIGN KEY (rule_group) REFERENCES public.ir_rule_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_sequence ir_sequence_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_sequence + ADD CONSTRAINT ir_sequence_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE SET NULL; + + +-- +-- Name: ir_sequence ir_sequence_sequence_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_sequence + ADD CONSTRAINT ir_sequence_sequence_type_fkey FOREIGN KEY (sequence_type) REFERENCES public.ir_sequence_type(id) ON DELETE RESTRICT; + + +-- +-- Name: ir_sequence_strict ir_sequence_strict_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_sequence_strict + ADD CONSTRAINT ir_sequence_strict_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE SET NULL; + + +-- +-- Name: ir_sequence_strict ir_sequence_strict_sequence_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_sequence_strict + ADD CONSTRAINT ir_sequence_strict_sequence_type_fkey FOREIGN KEY (sequence_type) REFERENCES public.ir_sequence_type(id) ON DELETE RESTRICT; + + +-- +-- Name: ir_sequence_type-res_group ir_sequence_type-res_group_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_sequence_type-res_group" + ADD CONSTRAINT "ir_sequence_type-res_group_group_fkey" FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_sequence_type-res_group ir_sequence_type-res_group_sequence_type_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_sequence_type-res_group" + ADD CONSTRAINT "ir_sequence_type-res_group_sequence_type_fkey" FOREIGN KEY (sequence_type) REFERENCES public.ir_sequence_type(id) ON DELETE CASCADE; + + +-- +-- Name: ir_trigger_log ir_trigger_log_trigger_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_trigger_log + ADD CONSTRAINT ir_trigger_log_trigger_fkey FOREIGN KEY (trigger) REFERENCES public.ir_trigger(id) ON DELETE CASCADE; + + +-- +-- Name: ir_trigger ir_trigger_model_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_trigger + ADD CONSTRAINT ir_trigger_model_fkey FOREIGN KEY (model) REFERENCES public.ir_model(id) ON DELETE RESTRICT; + + +-- +-- Name: ir_ui_menu-res_group ir_ui_menu-res_group_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_ui_menu-res_group" + ADD CONSTRAINT "ir_ui_menu-res_group_group_fkey" FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_menu-res_group ir_ui_menu-res_group_menu_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."ir_ui_menu-res_group" + ADD CONSTRAINT "ir_ui_menu-res_group_menu_fkey" FOREIGN KEY (menu) REFERENCES public.ir_ui_menu(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_menu_favorite ir_ui_menu_favorite_menu_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_menu_favorite + ADD CONSTRAINT ir_ui_menu_favorite_menu_fkey FOREIGN KEY (menu) REFERENCES public.ir_ui_menu(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_menu_favorite ir_ui_menu_favorite_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_menu_favorite + ADD CONSTRAINT ir_ui_menu_favorite_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_menu ir_ui_menu_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_menu + ADD CONSTRAINT ir_ui_menu_parent_fkey FOREIGN KEY (parent) REFERENCES public.ir_ui_menu(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_view ir_ui_view_inherit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view + ADD CONSTRAINT ir_ui_view_inherit_fkey FOREIGN KEY (inherit) REFERENCES public.ir_ui_view(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_view_search ir_ui_view_search_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_search + ADD CONSTRAINT ir_ui_view_search_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_view_tree_optional ir_ui_view_tree_optional_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_tree_optional + ADD CONSTRAINT ir_ui_view_tree_optional_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_view_tree_optional ir_ui_view_tree_optional_view_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_tree_optional + ADD CONSTRAINT ir_ui_view_tree_optional_view_id_fkey FOREIGN KEY (view_id) REFERENCES public.ir_ui_view(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_view_tree_state ir_ui_view_tree_state_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_tree_state + ADD CONSTRAINT ir_ui_view_tree_state_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: ir_ui_view_tree_width ir_ui_view_tree_width_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.ir_ui_view_tree_width + ADD CONSTRAINT ir_ui_view_tree_width_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_agended_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_agended_sequence_fkey FOREIGN KEY (agended_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_contract_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_contract_sequence_fkey FOREIGN KEY (contract_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_equipment_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_equipment_sequence_fkey FOREIGN KEY (equipment_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_maintenance_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_maintenance_sequence_fkey FOREIGN KEY (maintenance_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_moisture_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_moisture_uom_fkey FOREIGN KEY (moisture_uom) REFERENCES public.product_uom(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_sale_quote_number_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_sale_quote_number_fkey FOREIGN KEY (sale_quote_number) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_technician_responsible_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_technician_responsible_fkey FOREIGN KEY (technician_responsible) REFERENCES public.company_employee(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_configuration optical_equipment_configuration_temperature_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_configuration + ADD CONSTRAINT optical_equipment_configuration_temperature_uom_fkey FOREIGN KEY (temperature_uom) REFERENCES public.product_uom(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_contract optical_equipment_contract_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_contract + ADD CONSTRAINT optical_equipment_contract_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_contract optical_equipment_contract_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_contract + ADD CONSTRAINT optical_equipment_contract_contact_fkey FOREIGN KEY (contact) REFERENCES public.party_contact_mechanism(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_contract optical_equipment_contract_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_contract + ADD CONSTRAINT optical_equipment_contract_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_contract optical_equipment_contract_equipment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_contract + ADD CONSTRAINT optical_equipment_contract_equipment_fkey FOREIGN KEY (equipment) REFERENCES public.optical_equipment_equipment(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_contract optical_equipment_contract_invoice_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_contract + ADD CONSTRAINT optical_equipment_contract_invoice_address_fkey FOREIGN KEY (invoice_address) REFERENCES public.party_address(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_contract optical_equipment_contract_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_contract + ADD CONSTRAINT optical_equipment_contract_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_create_contract optical_equipment_create_contract_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_create_contract + ADD CONSTRAINT optical_equipment_create_contract_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_create_contract optical_equipment_create_contract_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_create_contract + ADD CONSTRAINT optical_equipment_create_contract_contact_fkey FOREIGN KEY (contact) REFERENCES public.party_contact_mechanism(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_create_contract optical_equipment_create_contract_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_create_contract + ADD CONSTRAINT optical_equipment_create_contract_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_create_contract optical_equipment_create_contract_invoice_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_create_contract + ADD CONSTRAINT optical_equipment_create_contract_invoice_address_fkey FOREIGN KEY (invoice_address) REFERENCES public.party_address(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_create_contract optical_equipment_create_contract_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_create_contract + ADD CONSTRAINT optical_equipment_create_contract_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_create_contract optical_equipment_create_contract_payment_term_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_create_contract + ADD CONSTRAINT optical_equipment_create_contract_payment_term_fkey FOREIGN KEY (payment_term) REFERENCES public.account_invoice_payment_term(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_equipment-party_party optical_equipment_equipment-party_party_equipment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_equipment-party_party" + ADD CONSTRAINT "optical_equipment_equipment-party_party_equipment_fkey" FOREIGN KEY (equipment) REFERENCES public.optical_equipment_equipment(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_equipment-party_party optical_equipment_equipment-party_party_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."optical_equipment_equipment-party_party" + ADD CONSTRAINT "optical_equipment_equipment-party_party_party_fkey" FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_contract_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_contract_fkey FOREIGN KEY (contract) REFERENCES public.optical_equipment_contract(id) ON DELETE CASCADE; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_location_fkey FOREIGN KEY (location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_mark_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_mark_category_fkey FOREIGN KEY (mark_category) REFERENCES public.product_category(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_model_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_model_category_fkey FOREIGN KEY (model_category) REFERENCES public.product_category(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_origin_country_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_origin_country_fkey FOREIGN KEY (origin_country) REFERENCES public.country_country(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_propietary_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_propietary_address_fkey FOREIGN KEY (propietary_address) REFERENCES public.party_address(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_propietary_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_propietary_fkey FOREIGN KEY (propietary) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_equipment optical_equipment_equipment_reference_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_equipment + ADD CONSTRAINT optical_equipment_equipment_reference_category_fkey FOREIGN KEY (reference_category) REFERENCES public.product_category(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_activity optical_equipment_maintenance_activity_maintenance_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_activity + ADD CONSTRAINT optical_equipment_maintenance_activity_maintenance_fkey FOREIGN KEY (maintenance) REFERENCES public.optical_equipment_maintenance(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_activity optical_equipment_maintenance_activity_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_activity + ADD CONSTRAINT optical_equipment_maintenance_activity_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_calibration optical_equipment_maintenance_calibration_maintenance_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_calibration + ADD CONSTRAINT optical_equipment_maintenance_calibration_maintenance_fkey FOREIGN KEY (maintenance) REFERENCES public.optical_equipment_maintenance(id) ON DELETE CASCADE; + + +-- +-- Name: optical_equipment_maintenance optical_equipment_maintenance_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance + ADD CONSTRAINT optical_equipment_maintenance_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_diary optical_equipment_maintenance_diary_maintenance_service_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_diary + ADD CONSTRAINT optical_equipment_maintenance_diary_maintenance_service_fkey FOREIGN KEY (maintenance_service) REFERENCES public.optical_equipment_maintenance_service(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_maintenance_diary optical_equipment_maintenance_diary_technical_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_diary + ADD CONSTRAINT optical_equipment_maintenance_diary_technical_fkey FOREIGN KEY (technical) REFERENCES public.company_employee(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_maintenance optical_equipment_maintenance_equipment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance + ADD CONSTRAINT optical_equipment_maintenance_equipment_fkey FOREIGN KEY (equipment) REFERENCES public.optical_equipment_equipment(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_line optical_equipment_maintenance_line_maintenance_activity_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_line + ADD CONSTRAINT optical_equipment_maintenance_line_maintenance_activity_fkey FOREIGN KEY (maintenance_activity) REFERENCES public.product_product(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_line optical_equipment_maintenance_line_maintenance_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_line + ADD CONSTRAINT optical_equipment_maintenance_line_maintenance_fkey FOREIGN KEY (maintenance) REFERENCES public.optical_equipment_maintenance(id) ON DELETE CASCADE; + + +-- +-- Name: optical_equipment_maintenance_line optical_equipment_maintenance_line_replacement_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_line + ADD CONSTRAINT optical_equipment_maintenance_line_replacement_fkey FOREIGN KEY (replacement) REFERENCES public.product_product(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_maintenance_line optical_equipment_maintenance_line_unit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_line + ADD CONSTRAINT optical_equipment_maintenance_line_unit_fkey FOREIGN KEY (unit) REFERENCES public.product_uom(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_maintenance optical_equipment_maintenance_moisture_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance + ADD CONSTRAINT optical_equipment_maintenance_moisture_uom_fkey FOREIGN KEY (moisture_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance optical_equipment_maintenance_propietary_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance + ADD CONSTRAINT optical_equipment_maintenance_propietary_address_fkey FOREIGN KEY (propietary_address) REFERENCES public.party_address(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance optical_equipment_maintenance_propietary_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance + ADD CONSTRAINT optical_equipment_maintenance_propietary_fkey FOREIGN KEY (propietary) REFERENCES public.party_party(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_service optical_equipment_maintenance_service_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_service + ADD CONSTRAINT optical_equipment_maintenance_service_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_service optical_equipment_maintenance_service_current_agended_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_service + ADD CONSTRAINT optical_equipment_maintenance_service_current_agended_fkey FOREIGN KEY (current_agended) REFERENCES public.optical_equipment_maintenance_diary(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance optical_equipment_maintenance_service_maintenance_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance + ADD CONSTRAINT optical_equipment_maintenance_service_maintenance_fkey FOREIGN KEY (service_maintenance) REFERENCES public.optical_equipment_maintenance_service(id) ON DELETE CASCADE; + + +-- +-- Name: optical_equipment_maintenance_service optical_equipment_maintenance_service_moisture_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_service + ADD CONSTRAINT optical_equipment_maintenance_service_moisture_uom_fkey FOREIGN KEY (moisture_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_service optical_equipment_maintenance_service_propietary_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_service + ADD CONSTRAINT optical_equipment_maintenance_service_propietary_address_fkey FOREIGN KEY (propietary_address) REFERENCES public.party_address(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_maintenance_service optical_equipment_maintenance_service_propietary_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_service + ADD CONSTRAINT optical_equipment_maintenance_service_propietary_fkey FOREIGN KEY (propietary) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: optical_equipment_maintenance_service optical_equipment_maintenance_service_technical_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_service + ADD CONSTRAINT optical_equipment_maintenance_service_technical_fkey FOREIGN KEY (technical) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance_service optical_equipment_maintenance_service_temperature_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance_service + ADD CONSTRAINT optical_equipment_maintenance_service_temperature_uom_fkey FOREIGN KEY (temperature_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_maintenance optical_equipment_maintenance_temperature_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_maintenance + ADD CONSTRAINT optical_equipment_maintenance_temperature_uom_fkey FOREIGN KEY (temperature_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: optical_equipment_product_pattern optical_equipment_product_pattern_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.optical_equipment_product_pattern + ADD CONSTRAINT optical_equipment_product_pattern_product_fkey FOREIGN KEY (product) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: party_address party_address_country_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_address + ADD CONSTRAINT party_address_country_fkey FOREIGN KEY (country) REFERENCES public.country_country(id) ON DELETE SET NULL; + + +-- +-- Name: party_address party_address_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_address + ADD CONSTRAINT party_address_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_address party_address_party_related_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_address + ADD CONSTRAINT party_address_party_related_fkey FOREIGN KEY (party_related) REFERENCES public.party_party(id) ON DELETE SET NULL; + + +-- +-- Name: party_address party_address_subdivision_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_address + ADD CONSTRAINT party_address_subdivision_fkey FOREIGN KEY (subdivision) REFERENCES public.country_subdivision(id) ON DELETE SET NULL; + + +-- +-- Name: party_category party_category_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_category + ADD CONSTRAINT party_category_parent_fkey FOREIGN KEY (parent) REFERENCES public.party_category(id) ON DELETE SET NULL; + + +-- +-- Name: party_category_rel party_category_rel_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_category_rel + ADD CONSTRAINT party_category_rel_category_fkey FOREIGN KEY (category) REFERENCES public.party_category(id) ON DELETE CASCADE; + + +-- +-- Name: party_category_rel party_category_rel_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_category_rel + ADD CONSTRAINT party_category_rel_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_configuration_party_lang party_configuration_party_lang_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_configuration_party_lang + ADD CONSTRAINT party_configuration_party_lang_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: party_configuration_party_lang party_configuration_party_lang_party_lang_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_configuration_party_lang + ADD CONSTRAINT party_configuration_party_lang_party_lang_fkey FOREIGN KEY (party_lang) REFERENCES public.ir_lang(id) ON DELETE SET NULL; + + +-- +-- Name: party_configuration_party_sequence party_configuration_party_sequence_party_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_configuration_party_sequence + ADD CONSTRAINT party_configuration_party_sequence_party_sequence_fkey FOREIGN KEY (party_sequence) REFERENCES public.ir_sequence(id) ON DELETE SET NULL; + + +-- +-- Name: party_contact_mechanism party_contact_mechanism_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_contact_mechanism + ADD CONSTRAINT party_contact_mechanism_address_fkey FOREIGN KEY (address) REFERENCES public.party_address(id) ON DELETE CASCADE; + + +-- +-- Name: party_contact_mechanism_language party_contact_mechanism_language_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_contact_mechanism_language + ADD CONSTRAINT party_contact_mechanism_language_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: party_contact_mechanism_language party_contact_mechanism_language_contact_mechanism_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_contact_mechanism_language + ADD CONSTRAINT party_contact_mechanism_language_contact_mechanism_fkey FOREIGN KEY (contact_mechanism) REFERENCES public.party_contact_mechanism(id) ON DELETE CASCADE; + + +-- +-- Name: party_contact_mechanism_language party_contact_mechanism_language_language_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_contact_mechanism_language + ADD CONSTRAINT party_contact_mechanism_language_language_fkey FOREIGN KEY (language) REFERENCES public.ir_lang(id) ON DELETE SET NULL; + + +-- +-- Name: party_contact_mechanism party_contact_mechanism_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_contact_mechanism + ADD CONSTRAINT party_contact_mechanism_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_identifier party_identifier_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_identifier + ADD CONSTRAINT party_identifier_address_fkey FOREIGN KEY (address) REFERENCES public.party_address(id) ON DELETE CASCADE; + + +-- +-- Name: party_identifier party_identifier_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_identifier + ADD CONSTRAINT party_identifier_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party-delivered_to-stock_location party_party-delivered_to-stock_location_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."party_party-delivered_to-stock_location" + ADD CONSTRAINT "party_party-delivered_to-stock_location_location_fkey" FOREIGN KEY (location) REFERENCES public.stock_location(id) ON DELETE CASCADE; + + +-- +-- Name: party_party-delivered_to-stock_location party_party-delivered_to-stock_location_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."party_party-delivered_to-stock_location" + ADD CONSTRAINT "party_party-delivered_to-stock_location_party_fkey" FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_account party_party_account_account_payable_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_account + ADD CONSTRAINT party_party_account_account_payable_fkey FOREIGN KEY (account_payable) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: party_party_account party_party_account_account_receivable_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_account + ADD CONSTRAINT party_party_account_account_receivable_fkey FOREIGN KEY (account_receivable) REFERENCES public.account_account(id) ON DELETE RESTRICT; + + +-- +-- Name: party_party_account party_party_account_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_account + ADD CONSTRAINT party_party_account_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_account party_party_account_customer_tax_rule_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_account + ADD CONSTRAINT party_party_account_customer_tax_rule_fkey FOREIGN KEY (customer_tax_rule) REFERENCES public.account_tax_rule(id) ON DELETE RESTRICT; + + +-- +-- Name: party_party_account party_party_account_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_account + ADD CONSTRAINT party_party_account_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_account party_party_account_supplier_tax_rule_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_account + ADD CONSTRAINT party_party_account_supplier_tax_rule_fkey FOREIGN KEY (supplier_tax_rule) REFERENCES public.account_tax_rule(id) ON DELETE RESTRICT; + + +-- +-- Name: party_party_customer_code party_party_customer_code_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_customer_code + ADD CONSTRAINT party_party_customer_code_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_customer_code party_party_customer_code_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_customer_code + ADD CONSTRAINT party_party_customer_code_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_customer_currency party_party_customer_currency_customer_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_customer_currency + ADD CONSTRAINT party_party_customer_currency_customer_currency_fkey FOREIGN KEY (customer_currency) REFERENCES public.currency_currency(id) ON DELETE SET NULL; + + +-- +-- Name: party_party_customer_currency party_party_customer_currency_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_customer_currency + ADD CONSTRAINT party_party_customer_currency_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_lang party_party_lang_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_lang + ADD CONSTRAINT party_party_lang_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_lang party_party_lang_lang_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_lang + ADD CONSTRAINT party_party_lang_lang_fkey FOREIGN KEY (lang) REFERENCES public.ir_lang(id) ON DELETE SET NULL; + + +-- +-- Name: party_party_lang party_party_lang_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_lang + ADD CONSTRAINT party_party_lang_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_location party_party_location_customer_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_location + ADD CONSTRAINT party_party_location_customer_location_fkey FOREIGN KEY (customer_location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: party_party_location party_party_location_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_location + ADD CONSTRAINT party_party_location_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_location party_party_location_supplier_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_location + ADD CONSTRAINT party_party_location_supplier_location_fkey FOREIGN KEY (supplier_location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: party_party_payment_term party_party_payment_term_customer_payment_term_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_payment_term + ADD CONSTRAINT party_party_payment_term_customer_payment_term_fkey FOREIGN KEY (customer_payment_term) REFERENCES public.account_invoice_payment_term(id) ON DELETE SET NULL; + + +-- +-- Name: party_party_payment_term party_party_payment_term_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_payment_term + ADD CONSTRAINT party_party_payment_term_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_payment_term party_party_payment_term_supplier_payment_term_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_payment_term + ADD CONSTRAINT party_party_payment_term_supplier_payment_term_fkey FOREIGN KEY (supplier_payment_term) REFERENCES public.account_invoice_payment_term(id) ON DELETE SET NULL; + + +-- +-- Name: party_party party_party_replaced_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party + ADD CONSTRAINT party_party_replaced_by_fkey FOREIGN KEY (replaced_by) REFERENCES public.party_party(id) ON DELETE SET NULL; + + +-- +-- Name: party_party_sale_method party_party_sale_method_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_sale_method + ADD CONSTRAINT party_party_sale_method_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_sale_method party_party_sale_method_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_sale_method + ADD CONSTRAINT party_party_sale_method_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_supplier_currency party_party_supplier_currency_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_supplier_currency + ADD CONSTRAINT party_party_supplier_currency_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_supplier_currency party_party_supplier_currency_supplier_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_supplier_currency + ADD CONSTRAINT party_party_supplier_currency_supplier_currency_fkey FOREIGN KEY (supplier_currency) REFERENCES public.currency_currency(id) ON DELETE SET NULL; + + +-- +-- Name: party_party_supplier_lead_time party_party_supplier_lead_time_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_supplier_lead_time + ADD CONSTRAINT party_party_supplier_lead_time_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: party_party_supplier_lead_time party_party_supplier_lead_time_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.party_party_supplier_lead_time + ADD CONSTRAINT party_party_supplier_lead_time_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: product_attribute-product_attribute-set product_attribute-product_attribute-set_attribute_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."product_attribute-product_attribute-set" + ADD CONSTRAINT "product_attribute-product_attribute-set_attribute_fkey" FOREIGN KEY (attribute) REFERENCES public.product_attribute(id) ON DELETE CASCADE; + + +-- +-- Name: product_attribute-product_attribute-set product_attribute-product_attribute-set_attribute_set_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."product_attribute-product_attribute-set" + ADD CONSTRAINT "product_attribute-product_attribute-set_attribute_set_fkey" FOREIGN KEY (attribute_set) REFERENCES public.product_attribute_set(id) ON DELETE CASCADE; + + +-- +-- Name: product_category_account product_category_account_account_expense_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_account + ADD CONSTRAINT product_category_account_account_expense_fkey FOREIGN KEY (account_expense) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: product_category_account product_category_account_account_revenue_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_account + ADD CONSTRAINT product_category_account_account_revenue_fkey FOREIGN KEY (account_revenue) REFERENCES public.account_account(id) ON DELETE SET NULL; + + +-- +-- Name: product_category_account product_category_account_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_account + ADD CONSTRAINT product_category_account_category_fkey FOREIGN KEY (category) REFERENCES public.product_category(id) ON DELETE CASCADE; + + +-- +-- Name: product_category_account product_category_account_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_account + ADD CONSTRAINT product_category_account_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: product_category_customer_taxes_rel product_category_customer_taxes_rel_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_customer_taxes_rel + ADD CONSTRAINT product_category_customer_taxes_rel_category_fkey FOREIGN KEY (category) REFERENCES public.product_category(id) ON DELETE CASCADE; + + +-- +-- Name: product_category_customer_taxes_rel product_category_customer_taxes_rel_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_customer_taxes_rel + ADD CONSTRAINT product_category_customer_taxes_rel_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: product_category product_category_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category + ADD CONSTRAINT product_category_parent_fkey FOREIGN KEY (parent) REFERENCES public.product_category(id) ON DELETE SET NULL; + + +-- +-- Name: product_category_supplier_taxes_rel product_category_supplier_taxes_rel_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_supplier_taxes_rel + ADD CONSTRAINT product_category_supplier_taxes_rel_category_fkey FOREIGN KEY (category) REFERENCES public.product_category(id) ON DELETE CASCADE; + + +-- +-- Name: product_category_supplier_taxes_rel product_category_supplier_taxes_rel_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_category_supplier_taxes_rel + ADD CONSTRAINT product_category_supplier_taxes_rel_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: product_configuration product_configuration_product_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_configuration + ADD CONSTRAINT product_configuration_product_sequence_fkey FOREIGN KEY (product_sequence) REFERENCES public.ir_sequence(id) ON DELETE SET NULL; + + +-- +-- Name: product_configuration product_configuration_template_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_configuration + ADD CONSTRAINT product_configuration_template_sequence_fkey FOREIGN KEY (template_sequence) REFERENCES public.ir_sequence(id) ON DELETE SET NULL; + + +-- +-- Name: product_cost_price product_cost_price_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price + ADD CONSTRAINT product_cost_price_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: product_cost_price_method product_cost_price_method_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price_method + ADD CONSTRAINT product_cost_price_method_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: product_cost_price_method product_cost_price_method_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price_method + ADD CONSTRAINT product_cost_price_method_template_fkey FOREIGN KEY (template) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: product_cost_price product_cost_price_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price + ADD CONSTRAINT product_cost_price_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE CASCADE; + + +-- +-- Name: product_cost_price_revision product_cost_price_revision_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price_revision + ADD CONSTRAINT product_cost_price_revision_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: product_cost_price_revision product_cost_price_revision_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price_revision + ADD CONSTRAINT product_cost_price_revision_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE CASCADE; + + +-- +-- Name: product_cost_price_revision product_cost_price_revision_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_cost_price_revision + ADD CONSTRAINT product_cost_price_revision_template_fkey FOREIGN KEY (template) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: product_identifier product_identifier_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_identifier + ADD CONSTRAINT product_identifier_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE CASCADE; + + +-- +-- Name: product_image_cache product_image_cache_product_image_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_image_cache + ADD CONSTRAINT product_image_cache_product_image_fkey FOREIGN KEY (product_image) REFERENCES public.product_image(id) ON DELETE CASCADE; + + +-- +-- Name: product_image product_image_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_image + ADD CONSTRAINT product_image_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE SET NULL; + + +-- +-- Name: product_image product_image_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_image + ADD CONSTRAINT product_image_template_fkey FOREIGN KEY (template) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: product_lead_time product_lead_time_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_lead_time + ADD CONSTRAINT product_lead_time_template_fkey FOREIGN KEY (template) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: product_list_price product_list_price_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_list_price + ADD CONSTRAINT product_list_price_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: product_list_price product_list_price_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_list_price + ADD CONSTRAINT product_list_price_template_fkey FOREIGN KEY (template) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: product_product product_product_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_product + ADD CONSTRAINT product_product_template_fkey FOREIGN KEY (template) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: product_template-product_category product_template-product_category_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."product_template-product_category" + ADD CONSTRAINT "product_template-product_category_category_fkey" FOREIGN KEY (category) REFERENCES public.product_category(id) ON DELETE CASCADE; + + +-- +-- Name: product_template-product_category product_template-product_category_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."product_template-product_category" + ADD CONSTRAINT "product_template-product_category_template_fkey" FOREIGN KEY (template) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: product_template product_template_account_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_account_category_fkey FOREIGN KEY (account_category) REFERENCES public.product_category(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_attribute_set_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_attribute_set_fkey FOREIGN KEY (attribute_set) REFERENCES public.product_attribute_set(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_default_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_default_uom_fkey FOREIGN KEY (default_uom) REFERENCES public.product_uom(id) ON DELETE RESTRICT; + + +-- +-- Name: product_template product_template_frequency_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_frequency_uom_fkey FOREIGN KEY (frequency_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_height_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_height_uom_fkey FOREIGN KEY (height_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_length_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_length_uom_fkey FOREIGN KEY (length_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_mark_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_mark_category_fkey FOREIGN KEY (mark_category) REFERENCES public.product_category(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_model_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_model_category_fkey FOREIGN KEY (model_category) REFERENCES public.product_category(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_moisture_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_moisture_uom_fkey FOREIGN KEY (moisture_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_origin_country_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_origin_country_fkey FOREIGN KEY (origin_country) REFERENCES public.country_country(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_product_fkey FOREIGN KEY (product) REFERENCES public.optical_equipment_maintenance(id) ON DELETE CASCADE; + + +-- +-- Name: product_template product_template_purchase_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_purchase_uom_fkey FOREIGN KEY (purchase_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_reference_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_reference_category_fkey FOREIGN KEY (reference_category) REFERENCES public.product_category(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_sale_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_sale_uom_fkey FOREIGN KEY (sale_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_temperature_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_temperature_uom_fkey FOREIGN KEY (temperature_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_use_pattern_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_use_pattern_fkey FOREIGN KEY (use_pattern) REFERENCES public.optical_equipment_use_pattern(id) ON DELETE RESTRICT; + + +-- +-- Name: product_template product_template_voltageAC_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT "product_template_voltageAC_uom_fkey" FOREIGN KEY ("voltageAC_uom") REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_voltageDC_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT "product_template_voltageDC_uom_fkey" FOREIGN KEY ("voltageDC_uom") REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_volume_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_volume_uom_fkey FOREIGN KEY (volume_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_weight_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_weight_uom_fkey FOREIGN KEY (weight_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_template product_template_width_uom_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_template + ADD CONSTRAINT product_template_width_uom_fkey FOREIGN KEY (width_uom) REFERENCES public.product_uom(id) ON DELETE SET NULL; + + +-- +-- Name: product_uom product_uom_category_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.product_uom + ADD CONSTRAINT product_uom_category_fkey FOREIGN KEY (category) REFERENCES public.product_uom_category(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_configuration_sequence purchase_configuration_sequence_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_configuration_sequence + ADD CONSTRAINT purchase_configuration_sequence_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_configuration_sequence purchase_configuration_sequence_purchase_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_configuration_sequence + ADD CONSTRAINT purchase_configuration_sequence_purchase_sequence_fkey FOREIGN KEY (purchase_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_invoice_ignored_rel purchase_invoice_ignored_rel_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_invoice_ignored_rel + ADD CONSTRAINT purchase_invoice_ignored_rel_invoice_fkey FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_invoice_ignored_rel purchase_invoice_ignored_rel_purchase_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_invoice_ignored_rel + ADD CONSTRAINT purchase_invoice_ignored_rel_purchase_fkey FOREIGN KEY (purchase) REFERENCES public.purchase_purchase(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_invoice_recreated_rel purchase_invoice_recreated_rel_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_invoice_recreated_rel + ADD CONSTRAINT purchase_invoice_recreated_rel_invoice_fkey FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_invoice_recreated_rel purchase_invoice_recreated_rel_purchase_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_invoice_recreated_rel + ADD CONSTRAINT purchase_invoice_recreated_rel_purchase_fkey FOREIGN KEY (purchase) REFERENCES public.purchase_purchase(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_line_account_tax purchase_line_account_tax_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_account_tax + ADD CONSTRAINT purchase_line_account_tax_line_fkey FOREIGN KEY (line) REFERENCES public.purchase_line(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_line_account_tax purchase_line_account_tax_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_account_tax + ADD CONSTRAINT purchase_line_account_tax_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_line purchase_line_address_equipment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line + ADD CONSTRAINT purchase_line_address_equipment_fkey FOREIGN KEY (address_equipment) REFERENCES public.party_address(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_line_moves_ignored_rel purchase_line_moves_ignored_rel_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_moves_ignored_rel + ADD CONSTRAINT purchase_line_moves_ignored_rel_move_fkey FOREIGN KEY (move) REFERENCES public.stock_move(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_line_moves_ignored_rel purchase_line_moves_ignored_rel_purchase_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_moves_ignored_rel + ADD CONSTRAINT purchase_line_moves_ignored_rel_purchase_line_fkey FOREIGN KEY (purchase_line) REFERENCES public.purchase_line(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_line_moves_recreated_rel purchase_line_moves_recreated_rel_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_moves_recreated_rel + ADD CONSTRAINT purchase_line_moves_recreated_rel_move_fkey FOREIGN KEY (move) REFERENCES public.stock_move(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_line_moves_recreated_rel purchase_line_moves_recreated_rel_purchase_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line_moves_recreated_rel + ADD CONSTRAINT purchase_line_moves_recreated_rel_purchase_line_fkey FOREIGN KEY (purchase_line) REFERENCES public.purchase_line(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_line purchase_line_origin_country_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line + ADD CONSTRAINT purchase_line_origin_country_fkey FOREIGN KEY (origin_country) REFERENCES public.country_country(id) ON DELETE SET NULL; + + +-- +-- Name: purchase_line purchase_line_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line + ADD CONSTRAINT purchase_line_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_line purchase_line_product_supplier_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line + ADD CONSTRAINT purchase_line_product_supplier_fkey FOREIGN KEY (product_supplier) REFERENCES public.purchase_product_supplier(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_line purchase_line_purchase_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line + ADD CONSTRAINT purchase_line_purchase_fkey FOREIGN KEY (purchase) REFERENCES public.purchase_purchase(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_line purchase_line_unit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_line + ADD CONSTRAINT purchase_line_unit_fkey FOREIGN KEY (unit) REFERENCES public.product_uom(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_product_supplier purchase_product_supplier_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_product_supplier + ADD CONSTRAINT purchase_product_supplier_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_product_supplier purchase_product_supplier_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_product_supplier + ADD CONSTRAINT purchase_product_supplier_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_product_supplier purchase_product_supplier_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_product_supplier + ADD CONSTRAINT purchase_product_supplier_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_product_supplier_price purchase_product_supplier_price_product_supplier_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_product_supplier_price + ADD CONSTRAINT purchase_product_supplier_price_product_supplier_fkey FOREIGN KEY (product_supplier) REFERENCES public.purchase_product_supplier(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_product_supplier purchase_product_supplier_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_product_supplier + ADD CONSTRAINT purchase_product_supplier_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE SET NULL; + + +-- +-- Name: purchase_product_supplier purchase_product_supplier_template_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_product_supplier + ADD CONSTRAINT purchase_product_supplier_template_fkey FOREIGN KEY (template) REFERENCES public.product_template(id) ON DELETE CASCADE; + + +-- +-- Name: purchase_purchase purchase_purchase_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_purchase purchase_purchase_confirmed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_confirmed_by_fkey FOREIGN KEY (confirmed_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: purchase_purchase purchase_purchase_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_contact_fkey FOREIGN KEY (contact) REFERENCES public.party_contact_mechanism(id) ON DELETE SET NULL; + + +-- +-- Name: purchase_purchase purchase_purchase_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_purchase purchase_purchase_invoice_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_invoice_address_fkey FOREIGN KEY (invoice_address) REFERENCES public.party_address(id) ON DELETE SET NULL; + + +-- +-- Name: purchase_purchase purchase_purchase_invoice_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_invoice_party_fkey FOREIGN KEY (invoice_party) REFERENCES public.party_party(id) ON DELETE SET NULL; + + +-- +-- Name: purchase_purchase purchase_purchase_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_purchase purchase_purchase_payment_term_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_payment_term_fkey FOREIGN KEY (payment_term) REFERENCES public.account_invoice_payment_term(id) ON DELETE RESTRICT; + + +-- +-- Name: purchase_purchase purchase_purchase_quoted_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_quoted_by_fkey FOREIGN KEY (quoted_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: purchase_purchase purchase_purchase_warehouse_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.purchase_purchase + ADD CONSTRAINT purchase_purchase_warehouse_fkey FOREIGN KEY (warehouse) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: res_group res_group_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_group + ADD CONSTRAINT res_group_parent_fkey FOREIGN KEY (parent) REFERENCES public.res_group(id) ON DELETE SET NULL; + + +-- +-- Name: res_user-company_company res_user-company_company_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-company_company" + ADD CONSTRAINT "res_user-company_company_company_fkey" FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: res_user-company_company res_user-company_company_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-company_company" + ADD CONSTRAINT "res_user-company_company_user_fkey" FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: res_user-company_employee res_user-company_employee_employee_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-company_employee" + ADD CONSTRAINT "res_user-company_employee_employee_fkey" FOREIGN KEY (employee) REFERENCES public.company_employee(id) ON DELETE CASCADE; + + +-- +-- Name: res_user-company_employee res_user-company_employee_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-company_employee" + ADD CONSTRAINT "res_user-company_employee_user_fkey" FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: res_user-ir_action res_user-ir_action_action_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-ir_action" + ADD CONSTRAINT "res_user-ir_action_action_fkey" FOREIGN KEY (action) REFERENCES public.ir_action(id) ON DELETE CASCADE; + + +-- +-- Name: res_user-ir_action res_user-ir_action_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-ir_action" + ADD CONSTRAINT "res_user-ir_action_user_fkey" FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: res_user-res_group res_user-res_group_group_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-res_group" + ADD CONSTRAINT "res_user-res_group_group_fkey" FOREIGN KEY ("group") REFERENCES public.res_group(id) ON DELETE CASCADE; + + +-- +-- Name: res_user-res_group res_user-res_group_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public."res_user-res_group" + ADD CONSTRAINT "res_user-res_group_user_fkey" FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE CASCADE; + + +-- +-- Name: res_user_application res_user_application_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user_application + ADD CONSTRAINT res_user_application_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE SET NULL; + + +-- +-- Name: res_user res_user_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user + ADD CONSTRAINT res_user_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE SET NULL; + + +-- +-- Name: res_user res_user_employee_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user + ADD CONSTRAINT res_user_employee_fkey FOREIGN KEY (employee) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: res_user res_user_language_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user + ADD CONSTRAINT res_user_language_fkey FOREIGN KEY (language) REFERENCES public.ir_lang(id) ON DELETE SET NULL; + + +-- +-- Name: res_user res_user_menu_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user + ADD CONSTRAINT res_user_menu_fkey FOREIGN KEY (menu) REFERENCES public.ir_action(id) ON DELETE RESTRICT; + + +-- +-- Name: res_user res_user_warehouse_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user + ADD CONSTRAINT res_user_warehouse_fkey FOREIGN KEY (warehouse) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: res_user_warning res_user_warning_user_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.res_user_warning + ADD CONSTRAINT res_user_warning_user_fkey FOREIGN KEY ("user") REFERENCES public.res_user(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_configuration_sequence sale_configuration_sequence_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_configuration_sequence + ADD CONSTRAINT sale_configuration_sequence_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: sale_configuration_sequence sale_configuration_sequence_sale_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_configuration_sequence + ADD CONSTRAINT sale_configuration_sequence_sale_sequence_fkey FOREIGN KEY (sale_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_invoice_ignored_rel sale_invoice_ignored_rel_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_invoice_ignored_rel + ADD CONSTRAINT sale_invoice_ignored_rel_invoice_fkey FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_invoice_ignored_rel sale_invoice_ignored_rel_sale_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_invoice_ignored_rel + ADD CONSTRAINT sale_invoice_ignored_rel_sale_fkey FOREIGN KEY (sale) REFERENCES public.sale_sale(id) ON DELETE CASCADE; + + +-- +-- Name: sale_invoice_recreated_rel sale_invoice_recreated_rel_invoice_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_invoice_recreated_rel + ADD CONSTRAINT sale_invoice_recreated_rel_invoice_fkey FOREIGN KEY (invoice) REFERENCES public.account_invoice(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_invoice_recreated_rel sale_invoice_recreated_rel_sale_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_invoice_recreated_rel + ADD CONSTRAINT sale_invoice_recreated_rel_sale_fkey FOREIGN KEY (sale) REFERENCES public.sale_sale(id) ON DELETE CASCADE; + + +-- +-- Name: sale_line_account_tax sale_line_account_tax_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_account_tax + ADD CONSTRAINT sale_line_account_tax_line_fkey FOREIGN KEY (line) REFERENCES public.sale_line(id) ON DELETE CASCADE; + + +-- +-- Name: sale_line_account_tax sale_line_account_tax_tax_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_account_tax + ADD CONSTRAINT sale_line_account_tax_tax_fkey FOREIGN KEY (tax) REFERENCES public.account_tax(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_line_moves_ignored_rel sale_line_moves_ignored_rel_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_moves_ignored_rel + ADD CONSTRAINT sale_line_moves_ignored_rel_move_fkey FOREIGN KEY (move) REFERENCES public.stock_move(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_line_moves_ignored_rel sale_line_moves_ignored_rel_sale_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_moves_ignored_rel + ADD CONSTRAINT sale_line_moves_ignored_rel_sale_line_fkey FOREIGN KEY (sale_line) REFERENCES public.sale_line(id) ON DELETE CASCADE; + + +-- +-- Name: sale_line_moves_recreated_rel sale_line_moves_recreated_rel_move_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_moves_recreated_rel + ADD CONSTRAINT sale_line_moves_recreated_rel_move_fkey FOREIGN KEY (move) REFERENCES public.stock_move(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_line_moves_recreated_rel sale_line_moves_recreated_rel_sale_line_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line_moves_recreated_rel + ADD CONSTRAINT sale_line_moves_recreated_rel_sale_line_fkey FOREIGN KEY (sale_line) REFERENCES public.sale_line(id) ON DELETE CASCADE; + + +-- +-- Name: sale_line sale_line_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line + ADD CONSTRAINT sale_line_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_line sale_line_sale_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line + ADD CONSTRAINT sale_line_sale_fkey FOREIGN KEY (sale) REFERENCES public.sale_sale(id) ON DELETE CASCADE; + + +-- +-- Name: sale_line sale_line_unit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_line + ADD CONSTRAINT sale_line_unit_fkey FOREIGN KEY (unit) REFERENCES public.product_uom(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_sale sale_sale_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_sale sale_sale_confirmed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_confirmed_by_fkey FOREIGN KEY (confirmed_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: sale_sale sale_sale_contact_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_contact_fkey FOREIGN KEY (contact) REFERENCES public.party_contact_mechanism(id) ON DELETE SET NULL; + + +-- +-- Name: sale_sale sale_sale_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_sale sale_sale_invoice_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_invoice_address_fkey FOREIGN KEY (invoice_address) REFERENCES public.party_address(id) ON DELETE SET NULL; + + +-- +-- Name: sale_sale sale_sale_invoice_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_invoice_party_fkey FOREIGN KEY (invoice_party) REFERENCES public.party_party(id) ON DELETE SET NULL; + + +-- +-- Name: sale_sale sale_sale_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_party_fkey FOREIGN KEY (party) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_sale sale_sale_payment_term_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_payment_term_fkey FOREIGN KEY (payment_term) REFERENCES public.account_invoice_payment_term(id) ON DELETE RESTRICT; + + +-- +-- Name: sale_sale sale_sale_quoted_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_quoted_by_fkey FOREIGN KEY (quoted_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: sale_sale sale_sale_shipment_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_shipment_address_fkey FOREIGN KEY (shipment_address) REFERENCES public.party_address(id) ON DELETE SET NULL; + + +-- +-- Name: sale_sale sale_sale_shipment_party_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_shipment_party_fkey FOREIGN KEY (shipment_party) REFERENCES public.party_party(id) ON DELETE SET NULL; + + +-- +-- Name: sale_sale sale_sale_warehouse_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.sale_sale + ADD CONSTRAINT sale_sale_warehouse_fkey FOREIGN KEY (warehouse) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: stock_configuration_location stock_configuration_location_shipment_internal_transit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_location + ADD CONSTRAINT stock_configuration_location_shipment_internal_transit_fkey FOREIGN KEY (shipment_internal_transit) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_configuration_sequence stock_configuration_sequence_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_sequence + ADD CONSTRAINT stock_configuration_sequence_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE CASCADE; + + +-- +-- Name: stock_configuration_sequence stock_configuration_sequence_inventory_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_sequence + ADD CONSTRAINT stock_configuration_sequence_inventory_sequence_fkey FOREIGN KEY (inventory_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_configuration_sequence stock_configuration_sequence_shipment_in_return_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_sequence + ADD CONSTRAINT stock_configuration_sequence_shipment_in_return_sequence_fkey FOREIGN KEY (shipment_in_return_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_configuration_sequence stock_configuration_sequence_shipment_in_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_sequence + ADD CONSTRAINT stock_configuration_sequence_shipment_in_sequence_fkey FOREIGN KEY (shipment_in_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_configuration_sequence stock_configuration_sequence_shipment_internal_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_sequence + ADD CONSTRAINT stock_configuration_sequence_shipment_internal_sequence_fkey FOREIGN KEY (shipment_internal_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_configuration_sequence stock_configuration_sequence_shipment_out_return_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_sequence + ADD CONSTRAINT stock_configuration_sequence_shipment_out_return_sequence_fkey FOREIGN KEY (shipment_out_return_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_configuration_sequence stock_configuration_sequence_shipment_out_sequence_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_configuration_sequence + ADD CONSTRAINT stock_configuration_sequence_shipment_out_sequence_fkey FOREIGN KEY (shipment_out_sequence) REFERENCES public.ir_sequence(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_inventory stock_inventory_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_inventory + ADD CONSTRAINT stock_inventory_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_inventory_line stock_inventory_line_inventory_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_inventory_line + ADD CONSTRAINT stock_inventory_line_inventory_fkey FOREIGN KEY (inventory) REFERENCES public.stock_inventory(id) ON DELETE CASCADE; + + +-- +-- Name: stock_inventory_line stock_inventory_line_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_inventory_line + ADD CONSTRAINT stock_inventory_line_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_inventory stock_inventory_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_inventory + ADD CONSTRAINT stock_inventory_location_fkey FOREIGN KEY (location) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_location stock_location_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_address_fkey FOREIGN KEY (address) REFERENCES public.party_address(id) ON DELETE SET NULL; + + +-- +-- Name: stock_location stock_location_input_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_input_location_fkey FOREIGN KEY (input_location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: stock_location_lead_time stock_location_lead_time_warehouse_from_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location_lead_time + ADD CONSTRAINT stock_location_lead_time_warehouse_from_fkey FOREIGN KEY (warehouse_from) REFERENCES public.stock_location(id) ON DELETE CASCADE; + + +-- +-- Name: stock_location_lead_time stock_location_lead_time_warehouse_to_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location_lead_time + ADD CONSTRAINT stock_location_lead_time_warehouse_to_fkey FOREIGN KEY (warehouse_to) REFERENCES public.stock_location(id) ON DELETE CASCADE; + + +-- +-- Name: stock_location stock_location_lost_found_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_lost_found_location_fkey FOREIGN KEY (lost_found_location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: stock_location stock_location_output_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_output_location_fkey FOREIGN KEY (output_location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: stock_location stock_location_parent_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_parent_fkey FOREIGN KEY (parent) REFERENCES public.stock_location(id) ON DELETE CASCADE; + + +-- +-- Name: stock_location stock_location_picking_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_picking_location_fkey FOREIGN KEY (picking_location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: stock_location stock_location_storage_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_storage_location_fkey FOREIGN KEY (storage_location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: stock_location stock_location_supplier_return_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location + ADD CONSTRAINT stock_location_supplier_return_location_fkey FOREIGN KEY (supplier_return_location) REFERENCES public.stock_location(id) ON DELETE SET NULL; + + +-- +-- Name: stock_location_waste stock_location_waste_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location_waste + ADD CONSTRAINT stock_location_waste_location_fkey FOREIGN KEY (location) REFERENCES public.stock_location(id) ON DELETE CASCADE; + + +-- +-- Name: stock_location_waste stock_location_waste_warehouse_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_location_waste + ADD CONSTRAINT stock_location_waste_warehouse_fkey FOREIGN KEY (warehouse) REFERENCES public.stock_location(id) ON DELETE CASCADE; + + +-- +-- Name: stock_move stock_move_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_move + ADD CONSTRAINT stock_move_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_move stock_move_currency_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_move + ADD CONSTRAINT stock_move_currency_fkey FOREIGN KEY (currency) REFERENCES public.currency_currency(id) ON DELETE SET NULL; + + +-- +-- Name: stock_move stock_move_equipment_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_move + ADD CONSTRAINT stock_move_equipment_fkey FOREIGN KEY (equipment) REFERENCES public.optical_equipment_equipment(id) ON DELETE SET NULL; + + +-- +-- Name: stock_move stock_move_from_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_move + ADD CONSTRAINT stock_move_from_location_fkey FOREIGN KEY (from_location) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_move stock_move_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_move + ADD CONSTRAINT stock_move_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_move stock_move_to_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_move + ADD CONSTRAINT stock_move_to_location_fkey FOREIGN KEY (to_location) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_move stock_move_unit_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_move + ADD CONSTRAINT stock_move_unit_fkey FOREIGN KEY (unit) REFERENCES public.product_uom(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_period_cache stock_period_cache_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_period_cache + ADD CONSTRAINT stock_period_cache_location_fkey FOREIGN KEY (location) REFERENCES public.stock_location(id) ON DELETE CASCADE; + + +-- +-- Name: stock_period_cache stock_period_cache_period_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_period_cache + ADD CONSTRAINT stock_period_cache_period_fkey FOREIGN KEY (period) REFERENCES public.stock_period(id) ON DELETE CASCADE; + + +-- +-- Name: stock_period_cache stock_period_cache_product_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_period_cache + ADD CONSTRAINT stock_period_cache_product_fkey FOREIGN KEY (product) REFERENCES public.product_product(id) ON DELETE CASCADE; + + +-- +-- Name: stock_period stock_period_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_period + ADD CONSTRAINT stock_period_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in stock_shipment_in_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in stock_shipment_in_contact_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_contact_address_fkey FOREIGN KEY (contact_address) REFERENCES public.party_address(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_in stock_shipment_in_done_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_done_by_fkey FOREIGN KEY (done_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_in stock_shipment_in_received_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_received_by_fkey FOREIGN KEY (received_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_in_return stock_shipment_in_return_assigned_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in_return + ADD CONSTRAINT stock_shipment_in_return_assigned_by_fkey FOREIGN KEY (assigned_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_in_return stock_shipment_in_return_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in_return + ADD CONSTRAINT stock_shipment_in_return_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in_return stock_shipment_in_return_delivery_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in_return + ADD CONSTRAINT stock_shipment_in_return_delivery_address_fkey FOREIGN KEY (delivery_address) REFERENCES public.party_address(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_in_return stock_shipment_in_return_done_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in_return + ADD CONSTRAINT stock_shipment_in_return_done_by_fkey FOREIGN KEY (done_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_in_return stock_shipment_in_return_from_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in_return + ADD CONSTRAINT stock_shipment_in_return_from_location_fkey FOREIGN KEY (from_location) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in_return stock_shipment_in_return_supplier_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in_return + ADD CONSTRAINT stock_shipment_in_return_supplier_fkey FOREIGN KEY (supplier) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in_return stock_shipment_in_return_to_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in_return + ADD CONSTRAINT stock_shipment_in_return_to_location_fkey FOREIGN KEY (to_location) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in stock_shipment_in_supplier_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_supplier_fkey FOREIGN KEY (supplier) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in stock_shipment_in_warehouse_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_warehouse_fkey FOREIGN KEY (warehouse) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in stock_shipment_in_warehouse_input_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_warehouse_input_fkey FOREIGN KEY (warehouse_input) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_in stock_shipment_in_warehouse_storage_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_in + ADD CONSTRAINT stock_shipment_in_warehouse_storage_fkey FOREIGN KEY (warehouse_storage) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_internal stock_shipment_internal_assigned_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_internal + ADD CONSTRAINT stock_shipment_internal_assigned_by_fkey FOREIGN KEY (assigned_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_internal stock_shipment_internal_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_internal + ADD CONSTRAINT stock_shipment_internal_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_internal stock_shipment_internal_done_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_internal + ADD CONSTRAINT stock_shipment_internal_done_by_fkey FOREIGN KEY (done_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_internal stock_shipment_internal_from_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_internal + ADD CONSTRAINT stock_shipment_internal_from_location_fkey FOREIGN KEY (from_location) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_internal stock_shipment_internal_shipped_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_internal + ADD CONSTRAINT stock_shipment_internal_shipped_by_fkey FOREIGN KEY (shipped_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_internal stock_shipment_internal_to_location_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_internal + ADD CONSTRAINT stock_shipment_internal_to_location_fkey FOREIGN KEY (to_location) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out stock_shipment_out_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out stock_shipment_out_customer_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_customer_fkey FOREIGN KEY (customer) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out stock_shipment_out_delivery_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_delivery_address_fkey FOREIGN KEY (delivery_address) REFERENCES public.party_address(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out stock_shipment_out_done_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_done_by_fkey FOREIGN KEY (done_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_out stock_shipment_out_packed_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_packed_by_fkey FOREIGN KEY (packed_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_out stock_shipment_out_picked_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_picked_by_fkey FOREIGN KEY (picked_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_company_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_company_fkey FOREIGN KEY (company) REFERENCES public.company_company(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_contact_address_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_contact_address_fkey FOREIGN KEY (contact_address) REFERENCES public.party_address(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_customer_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_customer_fkey FOREIGN KEY (customer) REFERENCES public.party_party(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_done_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_done_by_fkey FOREIGN KEY (done_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_received_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_received_by_fkey FOREIGN KEY (received_by) REFERENCES public.company_employee(id) ON DELETE SET NULL; + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_warehouse_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_warehouse_fkey FOREIGN KEY (warehouse) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_warehouse_input_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_warehouse_input_fkey FOREIGN KEY (warehouse_input) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out_return stock_shipment_out_return_warehouse_storage_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out_return + ADD CONSTRAINT stock_shipment_out_return_warehouse_storage_fkey FOREIGN KEY (warehouse_storage) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out stock_shipment_out_warehouse_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_warehouse_fkey FOREIGN KEY (warehouse) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out stock_shipment_out_warehouse_output_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_warehouse_output_fkey FOREIGN KEY (warehouse_output) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- Name: stock_shipment_out stock_shipment_out_warehouse_storage_fkey; Type: FK CONSTRAINT; Schema: public; Owner: tryton +-- + +ALTER TABLE ONLY public.stock_shipment_out + ADD CONSTRAINT stock_shipment_out_warehouse_storage_fkey FOREIGN KEY (warehouse_storage) REFERENCES public.stock_location(id) ON DELETE RESTRICT; + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/tests/files/signature.png b/tests/files/signature.png new file mode 100644 index 0000000000000000000000000000000000000000..d353ac49d82797121e89ff2371c7ec73d841179f GIT binary patch literal 5356 zcmWky2{=?;AHSA_G!%^`T3HyLWfx$FAn2^Ik-jy!hl5L5cgNj@!o$O5eFFVL?zjivl?}pq z5!ciOAc!Z@SYO8`;@N6Zq>U4;s6Rex-N!vgTUR&ANLNIh*`s#sVQu$227dvy43~b* z0HvnofoEZo8D1|gsD?7qtQ_Rp&_G~1Kz zy}bxo=mis`FM2LmwTQ^{08*Bbp~sS}Bb6{%2c+#|6OsZOb3zaob1nb*xv2~OO2l6J zHawzZs(pERIagcc?R7p5|6Fk&cpB+TVACycMS<7$NIrgkhO|D$=-strFM*8Yeq^;h zGL9&2%<{PGtC9Gp*M(Xxb}c4sRnE1!O# z4eiCmN%OE%>&E@1kx2D&D`}*n0M#=0d*jNAKRm0S&YRXJ)$SUUeV*>!QdPC;B#B=p z-J^fG&2&EmhuhQ;>?eZxyzUW?$9pjK7xrQ_36p`mHv}_>s2@L?AmM4f%b^~#!F+NY zOb@hY-pTocWoZxHpDJCs5+HKp2ET%Wf`tjmdY%!p3~4iJ?-}TR2(KPmGF|`qQ&&bt zWKj)Zs#njEvl!pPx^%sMs=PN&IV^zRg% zN+lBw)(*6zjHZEdUTnG{R(^1T!fBJx0XH9w!{V@bPDq5eDLbktF}4&4|9?d65H%a{}3%c zc`KGrth%b*xKZ#9Q{O?EpVDAc($sYIkmExL!TRqAXG!^CFa}EU@;a#iWrF=uqrTfE z?*|7nxtXy#rB=)gA_rs@0Y6ldu6#Cua6xC-PY018GR4Kp+!EJSvg^Q2bCcs4^KW#q zsHpe#@F@G@tyouOEAyhFf+=&}mTYr?yL0CbXI8(O*!ff>^fp*UP`YGjH@+~gA1MoI zD+(mJ$^Cm8vO*AMM=C69ERBszQ}xT@(L%eLk0{jy#^~ zlUV!wnMYhoY6;!MO)wJIVu1Q9BX-#SH$9D3Q&QRy%rH1(W@+j5kxG^S78p*TV)VQ) z7;PjRZzg$*VkOPe?7Zd!ODUHpQuBY(=|P$piSq+OVI8hP!GBJUeW+BbR^;zt!}nOh z>HSot6;*7iX{ptH5mv|WaAi_i86y(@-jyX$o`}cS-)RtRC+dslq|eUIQUzgNPb?~S zKTxTW^>uX?Ha0e)cRf9SD-?Wy`Yk7_y#s|>y?qQF=QgmZ; z^PXp1+{t?iKl5W#XTknyU9Rsk!LiH1-rmwB1D=(S)6y=>t#=&@-^U$q!AhE)tFPLY z3uG(~JbCg&OGOaIUNUqVf;f7h9yvZi!G{#Pn#X>=zAzR>2G*3G=QfCAapP8f(P5Re zKGCx*Op9Cl2z6mgYY{H#er)?0Xewj0WFpnnIal1}`1n|{!xb$>F!{5#wI6Z$@@3cN zriV$lDlCp~2xK5Am6cyMBH9Z^>xhMgs^U3DA8YNAUosR`i-bRX`0(aQUY`FDm5LIM z`PIGtuxC~YL14Ege-`0lb>0eiYWDJ#x8h(Ck*If9!C~5WpM|TUnelQph3YEhyYI~CXz!kQol_I5Z}#q37prsw2%y%)Xn zV6-MKOXN{)z1L9S6C?5LygYp(dfHPV7VGAApBt9q?&=&R7DzABcJWAIs{eW%x7L%&4(D;m=tXsMQB=}chVd2+C|M5={ZN5Pu14Ek# z>N;KmNadXjRDMAs7Jq`p2WzlQl_qDCrDuXWaLHbI`9`+QJ@pyXi+qN8j%2 z>uazk|8{Oa#xmgt^4@vWLa1TOfT>F~mX^<-ZNvbPBM5_`ZIe`fetza6i>B#+`{g(a z3JMsyra1=&2GTDsce`bSmiu>Q1$kW%cG`+(HPFwm$61z!f8U{$*e!=sdG>a;Cx!lJ zr>RRwQ6K|lQE_X~Q$ecFqjr9*_72YjZMVpk+J0dmvHhxQY6U=A8#p!hW`33GrNBTL zDEiNz!ggdEt(^$<=QR4C%f+2fv%1~5{^zY|R%Od+Li*G_TGwVh*BWv|(Be``4@1e2 zorATtN7=~oVGSo21ikgBjT!e=OnASL(B0i_7c4k^3YvA3+bhb<%>2B$iTgpPN8bw$ ze*G!1Nzc-9XoNr@XeCG(Oe7{I(t$XUT3Yru8XFrE z>fM<7HUt6@H;-${HJ2RGl*HdaSHzn~64A775gB2t3G7EF_4iVsgAeu+l zdgo!F%;T~j#TwDfKn&)}%F3294DN^}hzuwSm@BEPb8K&KuP-bu`2lB`o15EJF5Md7 z>+9 zsc$W23aPzZ35#}+<{5liP%sNnU+h$mq0$&1Xy26M`~FzJY!|Q&b!KJ;o6@uKdSdkn zx;M)D(;0hs0@Y47K#*&K$UD8#Y|(cI&}()k1QdLp`N6QaA_BT^QBm$x^(8+` zSmVG-Pp=0sM4Xb8l-JKYKQpKHm~^rqym|8`n~I5!iHLaW)8I%3R$&PU#B0zVRaazX z<8%>(&Y579;*#Rx^D!OuIMkVmW;9%XGrlzGxb>WDE<%;;5c6Pg~#l^)9tO=pdG-D4Ym~~hk zot#R(wnx@il$FgX>*?uT1cC^AT(d3_|%WjynVnljk?JLh;y^rv1*Fjlp}w@ z(-)xPl|y~<_h6NL1_+14u`~uu?6f;poj9AAJnn37KhmmR4|{5s zgEZ%ndw8EXkyqAlR|6Z|p&=MsyGNGgJv8NsXVYh|WhfYl1bjZxy8!@~b1 zGchr-__?k9f7d44Qh^l~Wldm!*s$|6Fsz}0!3!yiXWrL{)Nhk*;g3G_G zZ^c&6XO0yk8-V-&l#cqQu_ZtP87yQn`F@!+4;;?YRKt5reZa8fD%Mf^U1vf=2)`LPh^Hc8nCSHQBkVV5(Z_%()LLB)55|**GhjZ zc7uY1p8@Sn z-7=fow~teYmej5bP^l%E2LPigWpD8GrrV3MB}7k^}d-Z5@-Bk@kXD6a1@VPTD{ zfRnQdsf#b}Ueu{B=$7+$$oh2M@5@oXzG!M#SXi7+#mEKfP>)!2@|aWo*IRT{bTkM+BV8Yc^ls)Qh_Dt$1h^l4J9pb! zn&)cW_)4&s*HVZukE zY6{na?o%=4DLu2HATB5NipDr2rIXDhuLX_0c8|BSv-?Vrv3rtkTPn>CY#1NMI}?x( zFJHMbNw%e&)zHvrGc+{pQ_1A^@$m`KEq#63V_M@W1iyi`vaJp41^1{j2=kBiyi;~PY`Xw0i-(Hv>} zTer5HYG`TRiiPL`D(0i^LTg(aIj*ZK!Gy#}q-HL!fHLUo7cXA4?D%tXNChv%V`T6-CiURdZS37I+Vh?xDEi5c# zjnZgn72Nkn_LNb^#O_DS*IC#!J;=}X>`B(K0sj84YDuI8W7+%(TUXbUcSnrOI$S_; zOOB3Wl!?^9K`J#Cd_M|0&&sToK?9tZdrku6)0=2?mrKP+k!IBIA3^*a$;Su7>BLvI zZy)r}Q~kd+%h!%z3HDz;lYoi)Q0>xIEH9Ap284iO2p=`9?tnxyP0XH-ZumikTFkd>rctR zmvvN*`i=tQZ^`DquHkXQkalsq%9iq@f#zD@8$F}a{c|gREv8J*xul*6e5r(tQ5O2u Ix^4;o2PK|5iU0rr literal 0 HcmV?d00001 diff --git a/tests/scenario_optical_equipment.rst b/tests/scenario_optical_equipment.rst new file mode 100644 index 0000000..274d65e --- /dev/null +++ b/tests/scenario_optical_equipment.rst @@ -0,0 +1,444 @@ +=========================== +Optical Equipment Scenario +=========================== +Imports:: + >>> from proteus import Model, Wizard + >>> from trytond.tests.tools import activate_modules, set_user + >>> from datetime import date, timedelta, datetime + >>> import xml.etree.ElementTree as ET + >>> from trytond.modules.company.tests.tools import create_company, get_company + >>> from trytond.modules.account.tests.tools import (create_chart, create_fiscalyear, create_tax, get_accounts) + >>> from trytond.modules.account_invoice.tests.tools import (create_payment_term, set_fiscalyear_invoice_sequences) + >>> from decimal import Decimal + >>> import datetime + >>> today = datetime.date.today() + >>> from trytond.tools import file_open + +Activate modules:: + >>> config = activate_modules('optical_equipment') + +Create company:: + >>> _ = create_company() + >>> company = get_company() + +Create user admin:: + >>> Group = Model.get("res.group") + >>> User = Model.get("res.user") + >>> user = User(config.user) + >>> user.login = "admin" + >>> user.save() + >>> group, = Group().find(["name", "=", "Administration"]) + >>> group + proteus.Model.get('res.group')(1) + + >>> group_equipment, = Group().find(["name", "=", "Equipment Administration"]) + >>> group_equipment + proteus.Model.get('res.group')(18) + + >>> group.users.append(user) + >>> group.save() + >>> group_equipment.users + [proteus.Model.get('res.user')(1)] + +Set employee:: + >>> User = Model.get('res.user') + >>> Party = Model.get('party.party') + >>> Employee = Model.get('company.employee') + >>> employee_party = Party(name="Employee") + >>> employee_party.save() + >>> employee = Employee(party=employee_party) + >>> employee.save() + >>> user = User(config.user) + >>> user.employees.append(employee) + >>> user.employee = employee + >>> user.save() + >>> set_user(user.id) + +Create fiscal year:: + >>> fiscalyear = set_fiscalyear_invoice_sequences(create_fiscalyear(company)) + >>> fiscalyear.click('create_period') + +Create chart of accounts:: + >>> _ = create_chart(company) + >>> accounts = get_accounts(company) + >>> accounts + {'receivable': proteus.Model.get('account.account')(5), 'payable': proteus.Model.get('account.account')(4), 'revenue': proteus.Model.get('account.account')(6), 'expense': proteus.Model.get('account.account')(3), 'cash': proteus.Model.get('account.account')(2), 'tax': proteus.Model.get('account.account')(7)} + + >>> revenue = accounts['revenue'] + >>> expense = accounts['expense'] + >>> cash = accounts['cash'] + + >>> Journal = Model.get('account.journal') + >>> PaymentMethod = Model.get('account.invoice.payment.method') + >>> cash_journal, = Journal.find([('type', '=', 'cash')]) + >>> cash_journal.save() + >>> payment_method = PaymentMethod() + >>> payment_method.name = 'Cash' + >>> payment_method.journal = cash_journal + >>> payment_method.credit_account = cash + >>> payment_method.debit_account = cash + >>> payment_method.save() + +Create tax:: + >>> tax = create_tax(Decimal('.10')) + >>> tax.save() + +Create supplier:: + >>> Party = Model.get('party.party') + >>> supplier = Party(name='Supplier') + >>> supplier.save() + + +Create customer type optica:: + >>> customer_optica = Party(name='Customer optica', customer_type='optica') + >>> customer_optica.save() + >>> customer_optica.customer_type + 'optica' + + +Create customer type ips:: + >>> customer_ips = Party(name='Customer ips', customer_type='ips') + >>> customer_ips.save() + >>> customer_ips.customer_type + 'ips' + +Creaate contact optica:: + >>> local_phone = customer_optica.contact_mechanisms.new() + >>> local_phone.type = 'phone' + >>> local_phone.value = '666666666' + >>> local_phone.value + '666666666' + +Creaate contact ips:: + >>> local_phone = customer_ips.contact_mechanisms.new() + >>> local_phone.type = 'phone' + >>> local_phone.value = '666666666' + >>> local_phone.value + '666666666' + + +Create account categories:: + >>> ProductCategory = Model.get('product.category') + >>> optical_equitment_category = ProductCategory(name="Optical Equipment") + >>> optical_equitment_category.accounting = True + >>> optical_equitment_category.account_expense = expense + >>> optical_equitment_category.account_revenue = revenue + >>> children_1 = optical_equitment_category.childs.new(name="Optical Mobiliario") + >>> optical_equitment_category.save() + >>> len(optical_equitment_category.childs) + 1 + +Create taxes:: + >>> optical_equitment_category_tax, = optical_equitment_category.duplicate() + >>> optical_equitment_category_tax.customer_taxes.append(tax) + >>> optical_equitment_category_tax.save() + +Create mark, model and reference category:: + >>> mark_category = ProductCategory(name="ADLER") + >>> mark_category.save() + >>> model_category = ProductCategory(name="ADLER_01", parent=mark_category) + >>> model_category.save() + >>> reference_category = ProductCategory(name="ADLER_01", parent=model_category) + >>> reference_category.save() + + >>> mark_category.childs + [proteus.Model.get('product.category')(6)] + +Create product optical equipment:: + >>> ProductUom = Model.get('product.uom') + >>> unit, = ProductUom.find([('name', '=', 'Unit')]) + >>> ProductTemplate = Model.get('product.template') + >>> template = ProductTemplate() + >>> template.name = 'UNIDAD REFRACCION ESTANDAR' + >>> template.default_uom = unit + >>> template.type = 'goods' + >>> template.salable = True + >>> template.purchasable = True + >>> template.equipment = True + >>> template.list_price = Decimal('10') + >>> template.account_category = optical_equitment_category_tax + >>> template.maintenance_required = True + +Mark Maintenance Activities:: + >>> template.initial_operation = True + >>> template.check_equipment = True + >>> template.check_electric_system = True + >>> template.clean_int_ext = True + >>> template.preventive_activities = "Se verificaron las condiciones ambientales, se verificó estado físico del equipo, se verificó funcionamiento, se verificó tomas eléctricas y conexiones, se verificó el estado de los pulsadores, se verificó que el motor de la silla suba y baje, se realizó limpieza general, se lubricaron partes que lo requieren, se confirmó nuevamente funcionamiento." + +Mark Calibration Required:: + >>> template.calibration = True + >>> template.uncertainy_pattern = 0.1 + >>> template.k_pattern = '-5.00' + >>> UsePattern = Model.get('optical_equipment.use_pattern') + >>> schematic_eye, = UsePattern.find([('name_pattern', '=', 'Schematic Eye')]) + >>> template.use_pattern = schematic_eye + >>> k_pattern = template.k_pattern_list.new(pattern=-5) + >>> k_pattern.save() + >>> template.MEP = 0.1 + >>> template.Usubi = 200 + >>> template.resolution_type = 'digital' + >>> template.d_resolution = 0.25 + >>> template.equipment_type = 'mobiliario_optico' + >>> template.biomedical_class = 'diagnostico' + >>> template.main_tecnology = 'electronico' + >>> template.mark_category = mark_category + >>> template.model_category = model_category + >>> template.use = 'medico' + >>> template.reference_category = reference_category + >>> template.save() + >>> len(template.k_pattern_list) + 1 + >>> product, = template.products + >>> product.name + 'UNIDAD REFRACCION ESTANDAR' + +Create configuration equipment:: + >>> Config = Model.get("optical_equipment.configuration") + >>> UOM = Model.get("product.uom") + >>> celsius = UOM.find([("name", "=", "Celsius")]) + >>> celsius + [proteus.Model.get('product.uom')(39)] + + >>> moisture = UOM.find([("name", "=", "Relative Humedity")]) + >>> moisture + [proteus.Model.get('product.uom')(42)] + + >>> config = Config().find([])[0] + >>> equipment_sequence, = Model.get("ir.sequence").find(["name", "=", "Equipment"]) + >>> equipment_sequence + proteus.Model.get('ir.sequence')(14) + + >>> config.technician_responsible = employee + >>> with file_open("optical_equipment/tests/files/signature.png", "rb") as signature: + ... config.technician_signature = signature.read() + >>> config.invima = "RH-202309-02409" + >>> config.equipment_sequence = equipment_sequence + >>> maintenance_sequence, = Model.get("ir.sequence").find(["name", "=", "Maintenance"]) + >>> maintenance_sequence + proteus.Model.get('ir.sequence')(15) + + + >>> config.maintenance_sequence = maintenance_sequence + >>> agended_sequence, = Model.get("ir.sequence").find(["name", "=", "Agended"]) + >>> agended_sequence + proteus.Model.get('ir.sequence')(13) + + >>> config.agended_sequence = agended_sequence + + >>> contract_sequence, = Model.get("ir.sequence").find(["name", "=", "Contract"]) + >>> contract_sequence + proteus.Model.get('ir.sequence')(12) + >>> config.contract_sequence = contract_sequence + + >>> sale_quote_number, = Model.get("ir.sequence").find(["name", "=", "Sale Quote"]) + >>> sale_quote_number + proteus.Model.get('ir.sequence')(16) + >>> config.sale_quote_number = sale_quote_number + + >>> config.temperature_min = 19 + >>> config.temperature_max = 21 + >>> config.temperature_uom = celsius[0] + + >>> config.moisture_min = 43 + >>> config.moisture_max = 45 + >>> config.moisture_uom = moisture[0] + >>> config.save() + +Create payment term:: + >>> payment_term = create_payment_term() + >>> payment_term.save() + +Purchase 5 products: + >>> Purchase = Model.get('purchase.purchase') + >>> PurchaseLine = Model.get('purchase.line') + >>> purchase = Purchase() + >>> purchase.party = supplier + >>> purchase.payment_term = payment_term + >>> purchase.invoice_method = 'order' + >>> purchase_line = PurchaseLine() + >>> purchase.lines.append(purchase_line) + >>> purchase_line.product = product + >>> purchase_line.quantity = 2.0 + >>> purchase_line.product_equipment + True + >>> purchase_line.unit_price = Decimal('6182237.0000') + >>> purchase_line.health_register = 'COL123evergreen' + >>> purchase.click('quote') + >>> purchase.click('confirm') + >>> purchase.click('create_equipments') + >>> Equipment = Model.get('optical_equipment.equipment') + >>> equipments = Equipment.find() + >>> equipments + [proteus.Model.get('optical_equipment.equipment')(1), proteus.Model.get('optical_equipment.equipment')(2)] + >>> len(equipments) + 2 + >>> purchase.equipment_create + 1 + +Finalize the purchase inventory movements:: + >>> for move in purchase.moves: + ... move.click('do') + +Registred equipment without serial:: + >>> equipment_1 = equipments[0] + >>> equipment_2 = equipments[1] + >>> equipment_1.click('registred') # doctest: +IGNORE_EXCEPTION_DETAIL + Traceback (most recent call last): + ... + UserError: ... + >>> equipment_1.serial = "2020DM-0021167" + >>> equipment_1.click('registred') + >>> equipment_2.serial = "2020DM-002119" + >>> equipment_2.click('registred') + +First sale:: + >>> Sale = Model.get('sale.sale') + >>> SaleLine = Model.get('sale.line') + >>> sale = Sale() + >>> sale.party = customer_optica + >>> sale.contact = local_phone + >>> sale.description = 'El producto se debe entregar el fin de semana' + >>> sale.sale_date = today + >>> sale.sale_type = 'equipments' + >>> sale.payment_term = payment_term + >>> sale.invoice_method = 'order' + >>> sale_line = SaleLine() + >>> sale.lines.append(sale_line) + >>> sale_line.product = product + >>> sale_line.quantity = 2.0 + >>> sale_line = SaleLine() + >>> sale.lines.append(sale_line) + >>> sale_line.type = 'comment' + >>> sale_line.description = 'Comment' + >>> sale_line = SaleLine() + >>> sale.lines.append(sale_line) + >>> sale_line.product = product + >>> sale_line.quantity = 3.0 + >>> sale.click('quote') + >>> SaleConfirmDate = sale.click('confirm') + >>> SaleConfirmDate.form.sale_date == today + True + >>> SaleConfirmDate.execute('confirm_date') + >>> sale.state + 'processing' + >>> sale.shipments + [proteus.Model.get('stock.shipment.out')(1)] + +Verify that the sale state could be returned to the draft state:: + >>> sale.click("draft") + >>> sale.state + 'draft' + >>> sale_line = SaleLine() + >>> sale.lines.append(sale_line) + >>> sale_line.product = product + >>> sale_line.quantity = 2.0 + >>> sale.click('quote') + >>> SaleConfirmDate = sale.click('confirm') + >>> SaleConfirmDate.execute('confirm_date') + >>> sale.shipments + [proteus.Model.get('stock.shipment.out')(1), proteus.Model.get('stock.shipment.out')(2)] + +Verify that the shipment cannot be assigned if the shipment lines do not have equipment:: + >>> shipment_one = sale.shipments[0] + >>> shipment_one.click('pick') # doctest: +IGNORE_EXCEPTION_DETAIL + Traceback (most recent call last): + ... + ValidationError: ... + +Restrict assignment when the shipment has no serialized items:: + >>> shipment_one = sale.shipments[0] + >>> line_one = shipment_one.inventory_moves[0] + >>> line_one.equipment = equipment_1 + >>> line_one.equipment_serial + '2020DM-0021167' + >>> line_two = shipment_one.inventory_moves[1] + >>> line_two.equipment = equipment_2 + >>> line_two.equipment_serial + '2020DM-002119' + >>> shipment_one.click('assign_try') + >>> shipment_one.click('pick') + >>> shipment_one.click('pack') + >>> shipment_one.click('done') + +Create a new Maintenance Service:: + >>> shipment_one.click('maintenance_initial') + >>> MantenanceServices = Model.get("optical_equipment_maintenance.service") + >>> mantenanceServices, = MantenanceServices.find() + >>> mantenanceServices + proteus.Model.get('optical_equipment_maintenance.service')(1) + >>> mantenanceServices.state + 'draft' + + >>> MaintenanceLines = Model.get("optical_equipment.maintenance") + >>> maintenanceLines = MaintenanceLines.find() + >>> maintenanceLines + [proteus.Model.get('optical_equipment.maintenance')(1), proteus.Model.get('optical_equipment.maintenance')(2)] + >>> maintenanceLines[0].state + 'draft' + + >>> maintenance_1 = maintenanceLines[0] + >>> maintenance_2 = maintenanceLines[1] + >>> maintenance_1.equipment.state + 'uncontrated' + >>> maintenance_1.equipment.propietary == customer_optica + True + >>> maintenance_1.equipment.propietary_address.street + + >>> maintenance_2.equipment.state + 'uncontrated' + >>> maintenance_2.equipment.propietary == customer_optica + True + >>> maintenance_2.equipment.propietary_address.street + +Assing schedule to maintenance service: + >>> AssingSchedule = Wizard('optical_equipment_maintenance.assing_agended', [mantenanceServices]) + >>> AssingSchedule.form.estimated_agended = datetime.datetime.now() + >>> AssingSchedule.form.technical = employee + >>> AssingSchedule.execute('assing_agended') + + >>> mantenanceServices.state + 'agended' + + >>> mantenanceServices.click('in_progress') + >>> mantenanceServices.state + 'in_progress' + + >>> mantenanceServices.lines + [proteus.Model.get('optical_equipment.maintenance')(1), proteus.Model.get('optical_equipment.maintenance')(2)] + +Calibrate Maintenance Lines:: + >>> mantenance_lines = mantenanceServices.lines + >>> mantenance_line_one = mantenance_lines[0] + >>> mantenance_line_two = mantenance_lines[1] + >>> mantenance_line_one.click('samples') + >>> len(mantenance_line_one.lines_calibration) + 5 + >>> mantenance_line_one.click('calibrate') + >>> mantenance_line_one.calibration_total + [proteus.Model.get('optical_equipment.maintenance.calibration')(1)] + >>> len(mantenance_line_one.graph_calibration) + 14857 + + >>> mantenance_line_one.click('finished') + >>> mantenance_line_one.state + 'finished' + +Finished Maintenance Service:: + >>> mantenanceServices.click('finished') # doctest: +IGNORE_EXCEPTION_DETAIL + Traceback (most recent call last): + ... + Exception: ... + + >>> mantenance_line_two.click('samples') + >>> len(mantenance_line_two.lines_calibration) + 5 + >>> mantenance_line_two.click('calibrate') + >>> mantenance_line_two.calibration_total + [proteus.Model.get('optical_equipment.maintenance.calibration')(2)] + >>> len(mantenance_line_two.graph_calibration) + 14857 + >>> mantenance_line_two.click('finished') + >>> mantenanceServices.click('finished') + >>> mantenanceServices.state + 'finished' diff --git a/tests/test_scenario.py b/tests/test_scenario.py new file mode 100644 index 0000000..dc1d23e --- /dev/null +++ b/tests/test_scenario.py @@ -0,0 +1,8 @@ +# This file is part of Tryton. The COPYRIGHT file at the top level of +# this repository contains the full copyright notices and license terms. + +from trytond.tests.test_tryton import load_doc_tests + + +def load_tests(*args, **kwargs): + return load_doc_tests(__name__, __file__, *args, **kwargs) diff --git a/tryton.cfg b/tryton.cfg index d93ba83..9e1e3b0 100644 --- a/tryton.cfg +++ b/tryton.cfg @@ -1,5 +1,5 @@ [tryton] -version=6.4 +version=7.0.0 depends: ir company @@ -27,4 +27,5 @@ xml: purchase.xml sale.xml balance_sale_party.xml - shipment.xml \ No newline at end of file + shipment.xml + messages.xml \ No newline at end of file diff --git a/view/address_tree.xml b/view/address_tree.xml index 54d0c35..c1ad352 100644 --- a/view/address_tree.xml +++ b/view/address_tree.xml @@ -2,7 +2,7 @@ - - - + + + diff --git a/view/calibration_total_form.xml b/view/calibration_total_form.xml new file mode 100644 index 0000000..41cad33 --- /dev/null +++ b/view/calibration_total_form.xml @@ -0,0 +1,35 @@ + + +
+