From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/l10n_cl/__init__.py | 3 + addons/l10n_cl/__manifest__.py | 54 + .../l10n_cl/data/account_chart_template_data.xml | 8 + addons/l10n_cl/data/account_data.xml | 11 + addons/l10n_cl/data/account_fiscal_template.xml | 134 ++ addons/l10n_cl/data/account_tax_data.xml | 684 ++++++++ addons/l10n_cl/data/account_tax_group_data.xml | 27 + addons/l10n_cl/data/account_tax_report_data.xml | 214 +++ addons/l10n_cl/data/account_tax_tags_data.xml | 188 +++ addons/l10n_cl/data/l10n_cl_chart_data.xml | 1681 ++++++++++++++++++++ addons/l10n_cl/data/l10n_latam.document.type.csv | 53 + .../data/l10n_latam_identification_type_data.xml | 24 + addons/l10n_cl/data/menuitem_data.xml | 4 + addons/l10n_cl/data/product_data.xml | 13 + addons/l10n_cl/data/res.bank.csv | 33 + addons/l10n_cl/data/res.country.csv | 160 ++ addons/l10n_cl/data/res.currency.csv | 29 + addons/l10n_cl/data/res_currency_data.xml | 30 + addons/l10n_cl/data/res_partner.xml | 34 + addons/l10n_cl/data/uom_data.xml | 165 ++ addons/l10n_cl/demo/bmya_icon.png | Bin 0 -> 10852 bytes addons/l10n_cl/demo/demo_company.xml | 35 + addons/l10n_cl/demo/foto_dab.png | Bin 0 -> 128675 bytes addons/l10n_cl/demo/partner_demo.xml | 44 + addons/l10n_cl/demo/teksa-logo-300.png | Bin 0 -> 5667 bytes addons/l10n_cl/i18n/es.po | 694 ++++++++ addons/l10n_cl/i18n/l10n_cl.pot | 661 ++++++++ addons/l10n_cl/models/__init__.py | 14 + addons/l10n_cl/models/account_chart_template.py | 15 + addons/l10n_cl/models/account_journal.py | 11 + addons/l10n_cl/models/account_move.py | 126 ++ addons/l10n_cl/models/account_tax.py | 27 + addons/l10n_cl/models/ir_sequence.py | 10 + addons/l10n_cl/models/l10n_latam_document_type.py | 37 + addons/l10n_cl/models/res_company.py | 12 + addons/l10n_cl/models/res_country.py | 12 + addons/l10n_cl/models/res_currency.py | 10 + addons/l10n_cl/models/res_partner.py | 65 + addons/l10n_cl/models/res_partner_bank.py | 9 + addons/l10n_cl/models/uom_uom.py | 9 + addons/l10n_cl/static/description/icon.png | Bin 0 -> 10696 bytes addons/l10n_cl/static/sii_logo.jpeg | Bin 0 -> 6445 bytes addons/l10n_cl/static/tgr_logo.png | Bin 0 -> 5573 bytes addons/l10n_cl/views/account_move_view.xml | 98 ++ addons/l10n_cl/views/account_tax_view.xml | 48 + addons/l10n_cl/views/ir_sequence_view.xml | 26 + .../views/l10n_latam_document_type_view.xml | 13 + addons/l10n_cl/views/report_invoice.xml | 210 +++ addons/l10n_cl/views/res_bank_view.xml | 28 + addons/l10n_cl/views/res_config_settings_view.xml | 20 + addons/l10n_cl/views/res_country_view.xml | 29 + addons/l10n_cl/views/res_partner.xml | 24 + 52 files changed, 5836 insertions(+) create mode 100644 addons/l10n_cl/__init__.py create mode 100644 addons/l10n_cl/__manifest__.py create mode 100644 addons/l10n_cl/data/account_chart_template_data.xml create mode 100644 addons/l10n_cl/data/account_data.xml create mode 100644 addons/l10n_cl/data/account_fiscal_template.xml create mode 100644 addons/l10n_cl/data/account_tax_data.xml create mode 100644 addons/l10n_cl/data/account_tax_group_data.xml create mode 100644 addons/l10n_cl/data/account_tax_report_data.xml create mode 100644 addons/l10n_cl/data/account_tax_tags_data.xml create mode 100644 addons/l10n_cl/data/l10n_cl_chart_data.xml create mode 100644 addons/l10n_cl/data/l10n_latam.document.type.csv create mode 100644 addons/l10n_cl/data/l10n_latam_identification_type_data.xml create mode 100644 addons/l10n_cl/data/menuitem_data.xml create mode 100644 addons/l10n_cl/data/product_data.xml create mode 100644 addons/l10n_cl/data/res.bank.csv create mode 100644 addons/l10n_cl/data/res.country.csv create mode 100644 addons/l10n_cl/data/res.currency.csv create mode 100644 addons/l10n_cl/data/res_currency_data.xml create mode 100644 addons/l10n_cl/data/res_partner.xml create mode 100644 addons/l10n_cl/data/uom_data.xml create mode 100755 addons/l10n_cl/demo/bmya_icon.png create mode 100644 addons/l10n_cl/demo/demo_company.xml create mode 100644 addons/l10n_cl/demo/foto_dab.png create mode 100644 addons/l10n_cl/demo/partner_demo.xml create mode 100644 addons/l10n_cl/demo/teksa-logo-300.png create mode 100644 addons/l10n_cl/i18n/es.po create mode 100644 addons/l10n_cl/i18n/l10n_cl.pot create mode 100644 addons/l10n_cl/models/__init__.py create mode 100644 addons/l10n_cl/models/account_chart_template.py create mode 100644 addons/l10n_cl/models/account_journal.py create mode 100644 addons/l10n_cl/models/account_move.py create mode 100644 addons/l10n_cl/models/account_tax.py create mode 100644 addons/l10n_cl/models/ir_sequence.py create mode 100644 addons/l10n_cl/models/l10n_latam_document_type.py create mode 100644 addons/l10n_cl/models/res_company.py create mode 100644 addons/l10n_cl/models/res_country.py create mode 100644 addons/l10n_cl/models/res_currency.py create mode 100644 addons/l10n_cl/models/res_partner.py create mode 100644 addons/l10n_cl/models/res_partner_bank.py create mode 100644 addons/l10n_cl/models/uom_uom.py create mode 100644 addons/l10n_cl/static/description/icon.png create mode 100644 addons/l10n_cl/static/sii_logo.jpeg create mode 100644 addons/l10n_cl/static/tgr_logo.png create mode 100644 addons/l10n_cl/views/account_move_view.xml create mode 100644 addons/l10n_cl/views/account_tax_view.xml create mode 100644 addons/l10n_cl/views/ir_sequence_view.xml create mode 100644 addons/l10n_cl/views/l10n_latam_document_type_view.xml create mode 100644 addons/l10n_cl/views/report_invoice.xml create mode 100644 addons/l10n_cl/views/res_bank_view.xml create mode 100644 addons/l10n_cl/views/res_config_settings_view.xml create mode 100644 addons/l10n_cl/views/res_country_view.xml create mode 100644 addons/l10n_cl/views/res_partner.xml (limited to 'addons/l10n_cl') diff --git a/addons/l10n_cl/__init__.py b/addons/l10n_cl/__init__.py new file mode 100644 index 00000000..be9f4fab --- /dev/null +++ b/addons/l10n_cl/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import models diff --git a/addons/l10n_cl/__manifest__.py b/addons/l10n_cl/__manifest__.py new file mode 100644 index 00000000..837e426a --- /dev/null +++ b/addons/l10n_cl/__manifest__.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +# Copyright (c) 2019 - Blanco Martín & Asociados. https://www.bmya.cl +{ + 'name': 'Chile - Accounting', + 'version': "3.0", + 'description': """ +Chilean accounting chart and tax localization. +Plan contable chileno e impuestos de acuerdo a disposiciones vigentes + """, + 'author': 'Blanco Martín & Asociados', + 'website': 'https://www.odoo.com/documentation/14.0/applications/finance/accounting/fiscal_localizations/localizations/chile.html', + 'category': 'Accounting/Localizations/Account Charts', + 'depends': [ + 'contacts', + 'base_address_city', + 'base_vat', + 'l10n_latam_base', + 'l10n_latam_invoice_document', + 'uom', + ], + 'data': [ + 'views/account_move_view.xml', + 'views/account_tax_view.xml', + 'views/ir_sequence_view.xml', + 'views/res_bank_view.xml', + 'views/res_country_view.xml', + 'views/report_invoice.xml', + 'views/res_partner.xml', + 'views/res_config_settings_view.xml', + 'data/l10n_cl_chart_data.xml', + 'data/account_tax_report_data.xml', + 'data/account_tax_group_data.xml', + 'data/account_tax_tags_data.xml', + 'data/account_tax_data.xml', + 'data/l10n_latam_identification_type_data.xml', + 'data/l10n_latam.document.type.csv', + 'data/menuitem_data.xml', + 'data/product_data.xml', + 'data/uom_data.xml', + 'data/res.currency.csv', + 'data/res_currency_data.xml', + 'data/res.bank.csv', + 'data/res.country.csv', + 'data/res_partner.xml', + 'data/account_fiscal_template.xml', + 'data/account_chart_template_data.xml', + ], + 'demo': [ + 'demo/demo_company.xml', + 'demo/partner_demo.xml', + ], + 'license': 'LGPL-3', +} diff --git a/addons/l10n_cl/data/account_chart_template_data.xml b/addons/l10n_cl/data/account_chart_template_data.xml new file mode 100644 index 00000000..8094f1f1 --- /dev/null +++ b/addons/l10n_cl/data/account_chart_template_data.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/addons/l10n_cl/data/account_data.xml b/addons/l10n_cl/data/account_data.xml new file mode 100644 index 00000000..be719a16 --- /dev/null +++ b/addons/l10n_cl/data/account_data.xml @@ -0,0 +1,11 @@ + + + + + + + IVA 19% + + + + diff --git a/addons/l10n_cl/data/account_fiscal_template.xml b/addons/l10n_cl/data/account_fiscal_template.xml new file mode 100644 index 00000000..06bf25d6 --- /dev/null +++ b/addons/l10n_cl/data/account_fiscal_template.xml @@ -0,0 +1,134 @@ + + + + + + Compras - destinadas a generar operaciones no gravadas o exentas + + + + + + + + + + Compras - Facturas de proveedores registrados fuera de plazo + + + + + + + + + + Compras - Gastos rechazados + + + + + + + + + + Compras - Entregas gratuitas (premios, bonificaciones, etc.) recibidos + + + + + + + + + + + + + + + + + + + + Compras - Otros + + + + + + + + + + Compras - Activo Fijo + + + + + + + + + + + + + + + + + + + + Compras - Exentas + + + + + + + + + + + + + + Compras - Supermercado + + + + + + + + + + + + + + + + + + + + Ventas - Exentas + + + + + + + + + + + + + + \ No newline at end of file diff --git a/addons/l10n_cl/data/account_tax_data.xml b/addons/l10n_cl/data/account_tax_data.xml new file mode 100644 index 00000000..13c7ece4 --- /dev/null +++ b/addons/l10n_cl/data/account_tax_data.xml @@ -0,0 +1,684 @@ + + + + + + + + IVA 19% Venta + IVA 19% Vta + 19 + percent + sale + 14 + + + + + + + + IVA 19% Compra + IVA 19% Comp + 19 + percent + purchase + 14 + + + + + + + + Ret. 2da Categoría + Ret. 2da Cat + -10.75 + + percent + purchase + 15 + + + + + + + + Específico Compra + Espec. Comp + 63 + percent + purchase + 29 + + + + + + + + + IVA Compra 19% Activo Fijo + IVA 19% ActF + 19 + percent + purchase + 14 + + + + + + + + + IVA Compra 19% Act. Fijo Uso Común + IVA 19% ActFUC + 19 + percent + purchase + 14 + + + + + + + + + IVA Compra 19% Activo Fijo No Recup + IVA 19% ActFNR + 19 + percent + purchase + 14 + + + + + + + + + Beb. Analc. 10% (Compras) + ILA C 10% + 10 + percent + 27 + purchase + + + + + + + + + Beb. Analc 18% (Compras) + ILA C 18% + 18 + percent + 26 + purchase + + + + + + + + + Vinos (Compras) + ILA C 20.5% + 20.5 + percent + 25 + purchase + + + + + + + + + Licores 31.5% (Compras) + ILA C 31.5% + 31.5 + percent + 24 + purchase + + + + + + + + + Beb. Analc. 10% (Ventas) + ILA V 10% + 10 + percent + 27 + sale + + + + + + + + + Beb. Analc 18% (Ventas) + ILA V 18% + 18 + percent + 26 + sale + + + + + + + + + Vinos (Ventas) + ILA V 20.5% + 20.5 + percent + 25 + sale + + + + + + + + + Licores 31.5% (Ventas) + ILA V 31.5% + 31.5 + percent + 24 + sale + + + + + + + + + IVA Compra 19% No Recup. + IVA 19% NoR + 19 + percent + purchase + 14 + + + + + + + + + IVA Compra 19% Uso Común + IVA 19% CUC + 19 + percent + purchase + 14 + + + + + + + + + IVA Compra 19% Superm. + IVA 19% SupMRec + 19 + percent + purchase + 14 + + + + + + + diff --git a/addons/l10n_cl/data/account_tax_group_data.xml b/addons/l10n_cl/data/account_tax_group_data.xml new file mode 100644 index 00000000..9d8cf4f6 --- /dev/null +++ b/addons/l10n_cl/data/account_tax_group_data.xml @@ -0,0 +1,27 @@ + + + + + + + IVA 19% + + + + Impuestos Específicos + + + + ILA + + + + Retención de 2da Categoría + + + + Retenciones + + + + \ No newline at end of file diff --git a/addons/l10n_cl/data/account_tax_report_data.xml b/addons/l10n_cl/data/account_tax_report_data.xml new file mode 100644 index 00000000..d55ad2d2 --- /dev/null +++ b/addons/l10n_cl/data/account_tax_report_data.xml @@ -0,0 +1,214 @@ + + + + + Tax Report + + + + + Base Imponible Ventas + Base Imponible Ventas + + + + + + Ventas Netas Gravadas con IVA + Ventas Netas Gravadas con IVA + + + + + + Ventas Exentas + Ventas Exentas + + + + + + + Impuesto a la Renta Primera Categoría a Pagar + Impuesto a la Renta Primera Categoría a Pagar + + + + + + + Impuesto Originado por la Venta + Impuesto Originado por la Venta + + + + + + IVA Debito Fiscal + IVA Debito Fiscal + + + + + + PPM + PPM + + + + + + Compras Netas Gravadas Con IVA (recuperable) + Compras Netas Gravadas Con IVA (recuperable) + + + + + + Compra Netas Gravadas Con IVA Uso Comun + Compra Netas Gravadas Con IVA Uso Comun + + + + + + Compras IVA No Recuperable + Compras IVA No Recuperable + + + + + + Compras De Supermercado + Compras De Supermercado + + + + + + Compras de Activo Fijo + Compras de Activo Fijo + + + + + + Compras de Activo Fijo Uso Común + Compras de Activo Fijo Uso Común + + + + + + Compras de Activo Fijo No Recuperable + Compras de Activo Fijo No Recuperable + + + + + + Compras No Gravadas Con IVA + Compras No Gravadas Con IVA + + + + + + Impuestos Pagados en la Compra + Impuestos Pagados en la Compra + + + + + + IVA Pagado Compras Recuperables + IVA Pagado Compras Recuperables + + + + + + IVA Pagado Compras Uso Común + IVA Pagado Compras Uso Común + + + + + + IVA Pagado No Recuperable + IVA Pagado No Recuperable + + + + + + IVA Pagado Compras Supermercado + IVA Pagado Compras Supermercado + + + + + + Compras Activo Fijo + Compras Activo Fijo + + + + + + Compras Activo Fijo Uso Común + Compras Activo Fijo Uso Común + + + + + + Compras Activo Fijo No Recuperables + Compras Activo Fijo No Recuperables + + + + + + Retención Segunda Categoría + Retención Segunda Categoría + + + + + + Base Retención Segunda Categoría + Base Retención Segunda Categoría + + + + + + Base Retenciones ILA (compras) + Base Retenciones ILA (compras) + + + + + + Impuesto Ret Sufrida ILA (compras) + Retenciones ILA (compras) + + + + + + Base Retenciones ILA (ventas) + Base Retenciones ILA (ventas) + + + + + + Impuesto Ret Practicadas ILA (ventas) + Retenciones ILA (ventas) + + + + + diff --git a/addons/l10n_cl/data/account_tax_tags_data.xml b/addons/l10n_cl/data/account_tax_tags_data.xml new file mode 100644 index 00000000..89c3d2ee --- /dev/null +++ b/addons/l10n_cl/data/account_tax_tags_data.xml @@ -0,0 +1,188 @@ + + + + + + + Ventas - Monto IVA + taxes + + + + + + Ventas - IVA Fuera de Plazo + taxes + + + + + + Ventas - IVA Propio + taxes + + + + + + Ventas - IVA Terceros + taxes + + + + + + Ventas - IVA Ley 18211 + taxes + + + + + + Ventas - Otros Impuestos + taxes + + + + + + Ventas - IVA Retenido Total + taxes + + + + + + Ventas - IVA Retenido Parcial + taxes + + + + + + Ventas - Credito Especial 65% Empresas Constructoras + taxes + + + + + + Ventas - Depósito de Envases + taxes + + + + + + Ventas - IVA Comisiones y Otros Cargos + taxes + + + + + + Ventas - IVA No Retenido + taxes + + + + + + Compras - Monto IVA Recuperable + taxes + + + + + + Compras - Monto IVA Activo Fijo + taxes + + + + + + Compras - Monto IVA Activo Fijo (Uso Común) + taxes + + + + + + Compras - Monto IVA Activo Fijo (Uso Común) + taxes + + + + + + + Compras - Monto IVA No Recuperable + taxes + + + + + + Compras - Monto IVA Uso Comun + taxes + + + + + Compras - Monto IVA Compras Supermercado + taxes + + + + + + Compras - Monto Otros Impuestos + taxes + + + + + + Compras - Impuestos Sin Crédito + taxes + + + + + + Compras - IVA No Retenido Fac de compra + taxes + + + + + + Compras - Credito Imp Art 42 + taxes + + + + + + Compras - Impuesto Sin Credito + taxes + + + + + + Compras - IVA No Retenido + taxes + + + + + + Compras - Impuesto a Vehículos Automotores + taxes + + + + + \ No newline at end of file diff --git a/addons/l10n_cl/data/l10n_cl_chart_data.xml b/addons/l10n_cl/data/l10n_cl_chart_data.xml new file mode 100644 index 00000000..b602685b --- /dev/null +++ b/addons/l10n_cl/data/l10n_cl_chart_data.xml @@ -0,0 +1,1681 @@ + + + + + + + Ventas - Total Monto Exento o No Gravado + accounts + + + + + Ventas - Total Monto Neto + accounts + + + + + Ventas - Total Valor Neto Comisiones y Otros Cargos + accounts + + + + + Ventas - Total Valor Neto Comisiones y Otros Cargos No Afectos + accounts + + + + + Ventas - Total Monto No Facturable + accounts + + + + + Ventas - Exento Ventas de Pasajes Nacional + accounts + + + + + Ventas - Exento Ventas de Pasajes Internacional + accounts + + + + + + Compras - Total Monto Exento o No Gravado + accounts + + + + + Compras - Total Monto Neto + accounts + + + + + Compras - Total Monto Neto Uso Común + accounts + + + + + Compras - Total Monto Neto No Recuperable + accounts + + + + + Compras - Total Monto Neto Compras de Supermercado + accounts + + + + + + Compras - Total Monto Neto Activo Fijo + accounts + + + + + + Compras - Total Tabacos Manufacturados Puros + accounts + + + + + Compras - Total Tabacos Manufacturados Cigarrillos + accounts + + + + + Compras - Total Tabacos Manufacturados Elaborados + accounts + + + + Remantente de Crédito Fiscal + accounts + + + + Impuesto Unico Trabajadores + accounts + + + + + Honorarios - Montos Sujetos a Retención Renta 2 Categoría + accounts + + + + Chile - Plan de Cuentas + 1101 + 1101 + 117 + 6 + + + + + + 117000 + Cuenta de Transferencia + + + + + + + 110210 + Depósitos en Divisas + + + + + + + 110220 + Acciones + + + + + + + 110310 + Clientes + + + + + + + 110320 + Anticipo Proveedores + + + + + + + 110410 + Cheques a Fecha Por Cobrar + + + + + + + 110420 + Deudores Varios + + + + + + + 110421 + Deudores por Ventas (Pos) + + + + + + + + 110430 + Boletas en Garantía + + + + + + + 110440 + Letras en Cartera + + + + + + + 110450 + Documentos Protestados + + + + + + + 110510 + Anticipo de Sueldo + + + + + + + 110520 + Préstamos otorgados + + + + + + + 110530 + Anticipos de Viáticos + + + + + + + 110540 + Fondos x Rendir + + + + + + + 110550 + Anticipo de Honorarios + + + + + + + 110560 + Anticipo de Aguinaldo + + + + + + + 110570 + Asignación Familiar + + + + + + + 110580 + Anticipo de Impuestos + + + + + + + 110585 + Alquileres Pagados por Adelantado + + + + + + + 110590 + Intereses Pagados por Adelantado + + + + + + + 110610 + Mercaderías + + + + + + + 110612 + Materia Prima + + + + + + + 110615 + Materiales + + + + + + + 110620 + Insumos + + + + + + + 110625 + Equipos + + + + + + + 110630 + Repuestos + + + + + + + 110640 + Existencias en Tránsito + + + + + + + 110650 + Productos Fabricados + + + + + + + 110660 + Productos En Proceso + + + + + + + 110670 + Envases + + + + + + + 110710 + IVA Crédito Fiscal + + + + + + + 110720 + Remanente Crédito Fiscal + + + + + + + + 110730 + Crédito por Activo Fijo + + + + + + + 110740 + P.P.M. / Art 33 BIS + + + + + + + 110750 + Crédito Sence + + + + + + + 110810 + Anticipos Comercio Exterior + + + + + + + 110820 + Gastos Anticipados + + + + + + + 110830 + Organización y Puesta en Marcha + + + + + + + 110910 + Retiros Socios + + + + + + + 110920 + Retiros Reinversión + + + + + + + 111010 + Gastos Reorganización + + + + + + + 111110 + Cuentas Obligadas Socios + + + + + + + 111210 + Gastos Tributarios + + + + + + + 111310 + Cuenta Importaciones + + + + + + + 111410 + Gastos Rechazados + + + + + + + 120110 + Deudores Morosos + + + + + + + 120120 + Deudores en Gestión Judicial + + + + + + + 121110 + Equipos y Mobiliario de Oficina + + + + + + + + 121120 + Equipos Computacionales + + + + + + + + 121130 + Vehículos + + + + + + + + 121140 + Maquinaria + + + + + + + + 121210 + Bienes Raíces + + + + + + + + 121310 + Depreciación Acum Equipos y Mob de Oficina + + + + + + + 121320 + Depreciación Acum Equipos Computacionales + + + + + + + 121330 + Depreciación Acum Otros Activos + + + + + + + + 130110 + Activo Intangible - Derecho de Llaves + + + + + + + 130112 + Activo Intangible - Concesiones y Franquicias + + + + + + + 130114 + Activo Intangible - Marcas y Patentes de Invención + + + + + + + 130116 + Activo Intangible - (-) Amortización Acumulada + + + + + + + 130120 + Derechos Otras Empresas + + + + + + + 130130 + Cuentas por Cobrar a Personas y Empresas Relacionadas Largo Plazo + + + + + + + 130140 + Documentos y Cuentas por Cobrar a Largo Plazo + + + + + + + 130150 + Garantías de Obligaciones a Largo Plazo y de Obligaciones de Terceros + + + + + + + 130160 + Títulos Patrimoniales Bolsas de Productos + + + + + + + 190110 + Boletas de Garantía + + + + + + + 190210 + Letras Descontadas + + + + + + + 190310 + Documentos en Garantía + + + + + + + 190410 + Acciones Suscritas + + + + + + + 210110 + Tarjeta de Crédito Corporativa + + + + + + + 210120 + Linea de Crédito Bancaria + + + + + + + 210140 + Crédito Comercial C/Plazo + + + + + + + 210150 + Obligaciones Leasing Corto Plazo + + + + + + + 210160 + Crédito Hipotecario C/Plazo + + + + + + + 210170 + Crédito Comercial LP Venc. C/Plazo + + + + + + + 210180 + Dividendos por Pagar + + + + + + + 210190 + Intereses a Devengar por Compras al Crédito + + + + + + + 210195 + Intereses a pagar + + + + + + + 210210 + Proveedores + + + + + + + + 210220 + Anticipo de Clientes + + + + + + + 210230 + Facturas por Recibir + + + + + + + 210310 + Cheques Girados y No Cobrados + + + + + + + 210320 + Documentos en Garantía + + + + + + + 210330 + Boleta en Garantia + + + + + + + 210410 + AFP x Pagar + + + + + + + 210420 + C.C.A.F. x Pagar + + + + + + + 210430 + INP x Pagar + + + + + + + 210440 + ISAPRES x Pagar + + + + + + + 210450 + Mutual Seg. x Pagar + + + + + + + 210510 + Sueldos por Pagar + + + + + + + 210520 + Honorarios por Pagar + + + + + + + 210550 + Rendiciones por Pagar + + + + + + + 210560 + Provisión de Vacaciones + + + + + + + 210565 + Provisión por Finiquitos + + + + + + + 210610 + Provisión de Impuesto PPM + + + + + + + 210620 + Otras Provisiones + + + + + + + 210710 + IVA Débito Fiscal + + + + + + + 210720 + PPM por Pagar + + + + + + + 210730 + Impuesto Único Trabajadores + + + + + + + + 210740 + Impuesto Retención Segunda Categoría + + + + + + + 210750 + Impuesto Renta 1a Categoría por Pagar + + + + + + + 210760 + Impuesto Mensuales por Pagar + + + + + + + 220120 + Obligaciones Leasing L/Plazo + + + + + + + 220130 + Crédito Comercial L/Plazo + + + + + + + 220210 + Provisión Indemnización por Años de Servicio + + + + + + + 220310 + Cta Corriente Empresa Relacionada + + + + + + + 220320 + Impuesto Diferido Largo Plazo + + + + + + + 220330 + Otros Pasivos + + + + + + + 230110 + Capital Social + + + + + + + 230120 + Acciones en Circulación + + + + + + + 230130 + Dividendos a Distribuir en Acciones + + + + + + + 230140 + Descuento de Emisión de Acciones + + + + + + + 230210 + Revalorización Capital Propio + + + + + + + 230220 + Otras Revalorizaciones + + + + + + + 230230 + Revalorización Activo Fijo + + + + + + + 230240 + Fluctuación de Valores + + + + + + + 230250 + Reserva Legal + + + + + + + 230260 + Reserva Estatutaria + + + + + + + 230270 + Reserva Facultativa + + + + + + + 230280 + Reserva para Renovación de Activo Fijo + + + + + + + 230290 + Resultados Acumulados + + + + + + + 230300 + Utilidades y Pérdidas del Ejercicio + + + + + + + 230310 + Resultados Acumulados del Ejercicio Anterior + + + + + + + 230510 + Resultado del Ejercicio + + + + + + + 290110 + Cuenta Puente + + + + + + + 290210 + Responsable Boletas Garantía + + + + + + + 290220 + Responsable Documentos Garantía + + + + + + + 290230 + Responsable Letras Descontadas + + + + + + + 310110 + Ingresos por Consultoría + + + + + + + 310115 + Ventas de Productos + + + + + + + + 310120 + Ventas de Servicios + + + + + + + + 310125 + Ventas de Exportación + + + + + + + 310130 + Comisiones Percibidas por Ventas + + + + + + + 320210 + Utilidad Venta Activo Fijo + + + + + + + 320220 + Intereses Percibidos Sobre Préstamos Otorgados + + + + + + + 320225 + Arriendos ganados, obtenidos, percibidos + + + + + + + 320230 + Descuentos ganados, obtenidos, percibidos + + + + + + + 320235 + Intereses sobre Inversiones + + + + + + + 320240 + Ganancia Venta de Acciones + + + + + + + 320245 + Recupero de Rezagos + + + + + + + 320250 + Recupero de Deudores Incobrables + + + + + + + 320255 + Donaciones obtenidas, ganandas, percibidas + + + + + + + 320260 + Ganancia Venta Inversiones Permanentes + + + + + + + 320265 + Diferencia tipo de cambio + + + + + + + 320270 + Cŕeditos a Largo Plazo + + + + + + + 320275 + Otros Ingresos + + + + + + + 320280 + Corrección Monetaria Activos + + + + + + + 320285 + Corrección Monetaria Bienes Leasing + + + + + + + 410110 + Remuneraciones Operación + + + + + + + 410115 + Aporte Patronal Operación + + + + + + + 410120 + Viáticos + + + + + + + 410125 + Capacitación + + + + + + + 410130 + Honorarios Pagados + + + + + + + 410135 + Asesorías + + + + + + + 410140 + Arriendos Oficina + + + + + + + 410145 + Arriendos Bodega + + + + + + + 410150 + Comunicaciones + + + + + + + 410155 + Servicios Legales + + + + + + + 410160 + Manutención y Reparación de Activos + + + + + + + 410165 + Papelería-Aseo-Gastos Diversos + + + + + + + 410170 + Remuneraciones Administración + + + + + + + 410175 + Aporte Patronal Administración + + + + + + + 410180 + Electricidad + + + + + + + 410185 + Gastos Comunes + + + + + + + 410190 + Gastos Bancarios + + + + + + + 410195 + Diferencia Tipo de Cambio + + + + + + + 410200 + Corrección Monetaria + + + + + + + 410205 + Multas Fiscales + + + + + + + 410210 + Impuesto a la Renta 1ra Categoría + + + + + + + 410215 + Pérdida por Venta Activo + + + + + + + 410220 + Ajuste Ejercicio Anterior + + + + + + + 410225 + Donación + + + + + + + 410230 + Compras Productos 1ra Categoría + + + + + + + 410231 + Compras Netas (IVA Uso Común) + + + + + + + 410232 + Compras Netas (IVA No Recuperable) + + + + + + + 410233 + Compras de Supermercado + + + + + + + + 410235 + Costo de Mercaderías Vendidas - Prod. 1ra Categoría + + + + + + + + 410240 + Importaciones + + + + + + + 410245 + CIF + + + + + + + 410250 + Compras de Materia Prima + + + + + + + 410255 + Mano de Obra Directa + + + + + + + 420110 + Mercaderias Recibidas en Consignación + + + + + + + 440210 + Comitente por Mercaderias Recibidas en Consignación + + + + + + 420120 + Gastos en Depreciación de Activo Fijo + + + + + + + 420140 + Gastos en Amortización + + + + + + + 420150 + Gastos en Siniestros + + + + + + + 420170 + Garantias Otorgadas + + + + + + + 420220 + Gastos Otros Impuestos + + + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_cl/data/l10n_latam.document.type.csv b/addons/l10n_cl/data/l10n_latam.document.type.csv new file mode 100644 index 00000000..97119bd7 --- /dev/null +++ b/addons/l10n_cl/data/l10n_latam.document.type.csv @@ -0,0 +1,53 @@ +id,sequence,code,name,report_name,internal_type,doc_code_prefix,country_id/id,active +dc_a_f_dte,1,33,Factura Electrónica,FACTURA,invoice,FAC,base.cl,True +dc_y_f_dte,2,34,Factura no Afecta o Exenta Electrónica,F-EXENTA,invoice,FNA,base.cl,True +dc_nc_f_dte,3,61,Nota de Crédito Electrónica,NOTA DE CREDITO,credit_note,N/C,base.cl,True +dc_nd_f_dte,4,56,Nota de Débito Electrónica,NOTA DE DEBITO,debit_note,N/D,base.cl,True +dc_b_f_dte,5,39,Boleta Electrónica,BEL,invoice,BEL,base.cl,True +dc_m_d_dtn,6,71,Boleta de Honorarios Electrónica,BHE,invoice,BHE,base.cl,True +dc_b_e_dtn,7,38,Boleta exenta,BEX,invoice,BEX,base.cl,False +dc_I_f_dtn,10,29,Factura de Inicio,FAI,invoice,FAI,base.cl,False +dc_a_f_dtn,10,30,Factura,FACTURA,invoice,FAC,base.cl,False +dc_y_f_dtn,10,32,Factura de Ventas y Servicios no Afectos o Exentos de IVA,F-EXENTA,invoice,FNA,base.cl,False +dc_l_f_dtn,10,40,Liquidación Factura,L-FACTURAM,invoice,FAL,base.cl,False +dc_l_f_dte,10,43,Liquidación Factura Electrónica,L-FACTURAE,invoice,FAL,base.cl,False +dc_fc_f_dtn,10,45,Factura de Compra,FACTURA,invoice_in,FAC,base.cl,False +dc_fc_f_dte,10,46,Factura de Compra Electrónica,FACTURA,invoice_in,FAC,base.cl,False +dc_nd_f_dtn,10,55,Nota de Débito,NOTA DE DEBITO,debit_note,N/D,base.cl,False +dc_nc_f_dtn,10,60,Nota de Crédito,NOTA DE CREDITO,credit_note,N/C,base.cl,False +dc_s_f_dtn,10,108,SRF Solicitud de Registro de Factura,SOL REGISTRO,,REG,base.cl,False +dc_ftf_f_dtn,10,901,Factura de ventas a empresas del territorio preferencial ( Res. Ex. N° 1057,FACTURA,invoice,FAC,base.cl,False +dc_din_f_dtn,10,914,Declaración de Ingreso (DIN),DEC ING,invoice_in,DIN,base.cl,False +dc_dizf_f_dtn,10,911,Declaración de Ingreso a Zona Franca Primaria,DEC ING,invoice_in,DIN,base.cl,False +dc_ftt_f_dtn,10,904,Factura de Traspaso,FACT TR,invoice,FTR,base.cl,False +dc_frr_f_dtn,10,905,Factura de Reexpedición,FACT RX,invoice,FRX,base.cl,False +dc_bzf_f_dtn,10,906,Boletas Venta Módulos ZF (todas),BOLETA ZF,invoice,BZF,base.cl,False +dc_fzf_f_dtn,10,907,Facturas Venta Módulo ZF (todas),FACTURA ZF,invoice,FZF,base.cl,False +dc_tca_f_dtn,10,500,Ajuste aumento Tipo de Cambio (código 500),TC-A,,TCA,base.cl,False +dc_tcd_f_dtn,10,501,Ajuste disminución Tipo de Cambio (código 501),TC-D,,TCD,base.cl,False +dc_b_f_dtn,10,35,Boleta de Venta,BOL,invoice,BOL,base.cl,False +dc_b_e_dte,10,41,Boleta Exenta Electrónica,BXE,invoice,BXE,base.cl,False +dc_m_f_dtn,10,70,Boleta de Honorarios,BHO,invoice,BHO,base.cl,False +dc_hes,10,HES,Hoja de Entrada de Servicio (HES),HES,,HES,base.cl,False +dc_hem,10,HEM,Hoja de Entrada de Materiales (HEM),HEM,,HEM,base.cl,False +dc_migo,10,MIG,Movimiento de Mercancías (MIGO),MIGO,,MIGO,base.cl,False +dc_li,10,103,Liquidación,LIQ,,LIQ,base.cl,False +dc_fe_dte,10,110,Factura de Exportación Electrónica,FCXE,invoice,FCXE,base.cl,False +dc_ndex_dte,10,111,Nota de Débito de Exportación Electrónica,NDXE,debit_note,NDXE,base.cl,False +dc_ncex_dte,10,112,Nota de Crédito de Exportación Electrónica,NCXE,credit_note,NCXE,base.cl,False +dc_odc,10,801,Orden de Compra,OC,,OC,base.cl,False +dc_ndp,10,802,Nota de pedido,NP,,NP,base.cl,False +dc_cont,10,803,Contrato,CONT,,CONT,base.cl,False +dc_resol,10,804,Resolución,RES,,RES,base.cl,False +dc_prchc,10,805,Proceso ChileCompra,PCHC,,PCHC,base.cl,False +dc_fichc,10,806,Ficha ChileCompra,FCHC,,FCHC,base.cl,False +dc_dus,10,807,DUS,DUS,,DUS,base.cl,False +dc_bl_cemb,10,808,B/L (Conocimiento de embarque),B/L,,B/L,base.cl,False +dc_awb,10,809,AWB Airway Bill,AWB,,AWB,base.cl,False +dc_mic_dta,10,810,MIC/DTA,MDT,,MDT,base.cl,False +dc_cpor,10,811,Carta de Porte,CPR,,CPR,base.cl,False +dc_res_sna,10,812,Resolución del SNA donde califica Servicios de Exportación,RSN,,RSN,base.cl,False +dc_pasap,10,813,Pasaporte,PSP,,PSP,base.cl,False +dc_cd_bol,10,814,Certificado de Depósito Bolsa Prod. Chile.,CRTD,,CRTD,base.cl,False +dc_vp_pren,10,815,Vale de Prenda Bolsa Prod. Chile,VLPR,,VLPR,base.cl,False +dc_oc,300,10,Orden de Compra,OC,,OC,base.cl,False diff --git a/addons/l10n_cl/data/l10n_latam_identification_type_data.xml b/addons/l10n_cl/data/l10n_latam_identification_type_data.xml new file mode 100644 index 00000000..8bc1bc71 --- /dev/null +++ b/addons/l10n_cl/data/l10n_latam_identification_type_data.xml @@ -0,0 +1,24 @@ + + + + + RUT + RUT + 11 + + + + + RUN + Cédula + 12 + + + + DNI + DNI Extranjero + 13 + + + + diff --git a/addons/l10n_cl/data/menuitem_data.xml b/addons/l10n_cl/data/menuitem_data.xml new file mode 100644 index 00000000..effb0ee9 --- /dev/null +++ b/addons/l10n_cl/data/menuitem_data.xml @@ -0,0 +1,4 @@ + + + + diff --git a/addons/l10n_cl/data/product_data.xml b/addons/l10n_cl/data/product_data.xml new file mode 100644 index 00000000..4fd5e70d --- /dev/null +++ b/addons/l10n_cl/data/product_data.xml @@ -0,0 +1,13 @@ + + + + + Ad-Valorem + service + AD_VALOREM + Cargo para calculo de Ad-Valorem en DIN + + + + + diff --git a/addons/l10n_cl/data/res.bank.csv b/addons/l10n_cl/data/res.bank.csv new file mode 100644 index 00000000..48c1a67c --- /dev/null +++ b/addons/l10n_cl/data/res.bank.csv @@ -0,0 +1,33 @@ +id,name,l10n_cl_sbif_code,country +bank_001_0,Banco de Chile,001,Chile +bank_001_1,Banco Edwards,001,Chile +bank_001_2,Citi,001,Chile +bank_001_3,Atlas,001,Chile +bank_001_4,CrediChile,001,Chile +bank_009_0,Banco Internacional,009,Chile +bank_012_0,Banco Estado,012,Chile +bank_014_0,Scotiabank Chile,014,Chile +bank_016_0,Banco De Credito e Inversiones (BCI),016,Chile +bank_016_1,Tbanc,016,Chile +bank_016_2,BCI Nova,016,Chile +bank_027_0,Corpbanca,027,Chile +bank_027_1,Banco Condell,027,Chile +bank_028_0,Banco Bice,028,Chile +bank_031_0,Hsbc Bank,031,Chile +bank_037_0,Banco Santander-Chile,037,Chile +bank_037_1,Banefe,037,Chile +bank_039_0,Banco Itaú Chile,039,Chile +bank_049_0,Banco Security,049,Chile +bank_051_0,Banco Falabella,051,Chile +bank_052_0,Deutsche Bank,052,Chile +bank_053_0,Banco Ripley,053,Chile +bank_054_0,Rabobank Chile (Ex Hns Banco),054,Chile +bank_055_0,Banco Consorcio (Ex Banco Monex),055,Chile +bank_056_0,Banco Penta,056,Chile +bank_057_0,Banco Paris,057,Chile +bank_504_0,Banco Bilbao Vizcaya Argentaria Chile (BBVA),504,Chile +bank_504_1,BBVA Express,504,Chile +bank_059_0,Banco Btg Pactual Chile,059,Chile +bank_017_0,Banco Do Brasil S.A.,017,Chile +bank_041_0,Jp Morgan Chase Bank N. A.,041,Chile +bank_043_0,Banco De La Nacion Argentina,043,Chile diff --git a/addons/l10n_cl/data/res.country.csv b/addons/l10n_cl/data/res.country.csv new file mode 100644 index 00000000..c88c6d36 --- /dev/null +++ b/addons/l10n_cl/data/res.country.csv @@ -0,0 +1,160 @@ +id,l10n_cl_customs_code +base.ad,525 +base.af,308 +base.ag,240 +base.al,518 +base.am,540 +base.ao,140 +base.ar,224 +base.at,509 +base.au,406 +base.aw,243 +base.az,541 +base.bb,204 +base.bd,321 +base.bf,161 +base.bg,527 +base.bi,141 +base.bj,150 +base.bm,244 +base.bo,221 +base.br,220 +base.bs,207 +base.bw,113 +base.by,542 +base.ca,226 +base.cg,144 +base.ch,508 +base.ci,107 +base.ck,427 +base.cl,997 +base.cn,336 +base.co,202 +base.cr,211 +base.cu,209 +base.cv,129 +base.cy,305 +base.de,563 +base.dj,155 +base.dk,507 +base.dm,231 +base.dz,127 +base.ec,218 +base.ee,549 +base.eg,124 +base.er,163 +base.es,517 +base.fi,512 +base.fj,401 +base.fm,417 +base.fr,505 +base.ga,145 +base.gd,232 +base.ge,550 +base.gg,566 +base.gh,108 +base.gi,565 +base.gl,253 +base.gm,102 +base.gn,104 +base.gq,147 +base.gr,520 +base.gt,215 +base.gu,425 +base.gy,217 +base.hn,214 +base.hr,547 +base.ht,208 +base.id,328 +base.ie,506 +base.il,306 +base.in,317 +base.iq,307 +base.ir,309 +base.is,516 +base.it,504 +base.je,568 +base.jm,205 +base.jo,301 +base.ke,137 +base.kh,315 +base.ki,416 +base.kp,334 +base.kr,333 +base.kw,303 +base.la,316 +base.li,534 +base.lk,314 +base.lr,106 +base.ls,114 +base.lt,554 +base.lv,553 +base.ly,125 +base.ma,128 +base.mc,535 +base.md,556 +base.mg,120 +base.mh,164 +base.ml,133 +base.mn,337 +base.mo,345 +base.mp,424 +base.mq,250 +base.mr,134 +base.mt,523 +base.mu,119 +base.mw,115 +base.mx,216 +base.my,329 +base.mz,121 +base.na,159 +base.nc,423 +base.ne,131 +base.ng,111 +base.ni,212 +base.nl,515 +base.no,513 +base.np,320 +base.nr,402 +base.nu,421 +base.om,304 +base.pa,210 +base.pe,219 +base.pf,422 +base.ph,335 +base.pk,324 +base.pl,528 +base.pr,251 +base.pt,501 +base.py,222 +base.qa,312 +base.rw,142 +base.sc,156 +base.sd,123 +base.se,511 +base.sg,332 +base.si,548 +base.sl,105 +base.sm,536 +base.sn,101 +base.so,138 +base.sr,235 +base.sv,213 +base.sy,310 +base.td,130 +base.tg,109 +base.tm,558 +base.tt,203 +base.tv,419 +base.tz,135 +base.ua,559 +base.ug,136 +base.uk,510 +base.uy,223 +base.uz,560 +base.vc,234 +base.ve,201 +base.vn,325 +base.vu,415 +base.zm,117 +base.zw,116 \ No newline at end of file diff --git a/addons/l10n_cl/data/res.currency.csv b/addons/l10n_cl/data/res.currency.csv new file mode 100644 index 00000000..5dcffd66 --- /dev/null +++ b/addons/l10n_cl/data/res.currency.csv @@ -0,0 +1,29 @@ +id,l10n_cl_currency_code,l10n_cl_short_name +base.AED,139,DIRHAM +base.ARS,1,PESO +base.AUD,36,DOLAR AUST +base.BOB,4,BOLIVIANO +base.BRL,5,CRUZEIRO REAL +base.CAD,6,DOLAR CAN +base.CHF,82,FRANCO SZ +base.CLP,200,PESO CL +base.CNY,48,RENMINBI +base.COP,129,PESO COL +base.ECS,130,SUCRE +base.EUR,142,EURO +base.GBP,102,LIBRA EST +base.HKD,127,DOLAR HK +base.INR,137,RUPIA +base.JPY,72,YEN +base.MXN,132,PESO MEX +base.NOK,96,CORONA NOR +base.NZD,97,DOLAR NZ +base.PEN,24,NUEVO SOL +base.PYG,23,GUARANI +base.SEK,113,CORONA SC +base.SGD,136,DOLAR SIN +base.TWD,138,DOLAR TAI +base.USD,13,DOLAR USA +base.UYU,26,PESO URUG +base.VEF,134,BOLIVAR +base.ZAR,128,RAND diff --git a/addons/l10n_cl/data/res_currency_data.xml b/addons/l10n_cl/data/res_currency_data.xml new file mode 100644 index 00000000..d7d8f8c7 --- /dev/null +++ b/addons/l10n_cl/data/res_currency_data.xml @@ -0,0 +1,30 @@ + + + + + UF + UF + 0.01 + after + Unidad de Fomento + Unidad de Fomento + + + + UTM + UTM + 0.01 + after + Unidad Tributaria Mensual + Unidad Tributaria Mensual + + + + OTR + OTR + 1 + 900 + OTR + + + diff --git a/addons/l10n_cl/data/res_partner.xml b/addons/l10n_cl/data/res_partner.xml new file mode 100644 index 00000000..0303c653 --- /dev/null +++ b/addons/l10n_cl/data/res_partner.xml @@ -0,0 +1,34 @@ + + + + + + Consumidor Final Anónimo + 3 + + 66666666-6 + + + + + Tesorería General de la República + company + 1 + + 60805000-0 + + + + + + Servicio de Impuestos Internos + company + 1 + + 60803000-K + + + + + + diff --git a/addons/l10n_cl/data/uom_data.xml b/addons/l10n_cl/data/uom_data.xml new file mode 100644 index 00000000..f0b9fbd4 --- /dev/null +++ b/addons/l10n_cl/data/uom_data.xml @@ -0,0 +1,165 @@ + + + + + Energía + + + Otros + + + + 10 + U + + + + 11 + DOC + + + + 14 + MT + + + + 13 + P2 + + + + 6 + KN + + + + 9 + LT + + + + 0 + S.U.M + + smaller + + + + 1 + TMB + + bigger + + + + 12 + U(JGO) + + bigger + + + + 15 + MT2 + + bigger + + + + 16 + MCUB + + bigger + + + + 17 + PAR + + bigger + + + + 18 + KNFC + + bigger + + + + 19 + CARTON + + bigger + + + + 2 + QMB + + bigger + + + + 20 + KWH + + + + + 23 + BAR + + bigger + + + + 24 + M2/1MM + + smaller + + + + 3 + MKWH + + bigger + + + + 4 + TMN + + bigger + + + + 5 + QNT + + bigger + + + + 7 + GN + smaller + + + + 8 + HL + + bigger + + + + 99 + S.U.M + + bigger + + + \ No newline at end of file diff --git a/addons/l10n_cl/demo/bmya_icon.png b/addons/l10n_cl/demo/bmya_icon.png new file mode 100755 index 00000000..02e87bcc Binary files /dev/null and b/addons/l10n_cl/demo/bmya_icon.png differ diff --git a/addons/l10n_cl/demo/demo_company.xml b/addons/l10n_cl/demo/demo_company.xml new file mode 100644 index 00000000..3af9b385 --- /dev/null +++ b/addons/l10n_cl/demo/demo_company.xml @@ -0,0 +1,35 @@ + + + + CL Company + CL22060449-7 + 1 + 1 + Santiago + + + + +57 321 1234567 + info@company.clexample.com + www.clexample.com + + + + CL Company + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_cl/demo/foto_dab.png b/addons/l10n_cl/demo/foto_dab.png new file mode 100644 index 00000000..42e152a9 Binary files /dev/null and b/addons/l10n_cl/demo/foto_dab.png differ diff --git a/addons/l10n_cl/demo/partner_demo.xml b/addons/l10n_cl/demo/partner_demo.xml new file mode 100644 index 00000000..650b7c49 --- /dev/null +++ b/addons/l10n_cl/demo/partner_demo.xml @@ -0,0 +1,44 @@ + + + + + Blanco Martin & Asociados EIRL + info@bmya.cl + 1 + Las Condes + + Apoquindo 6410 + Oficina 212, Santiago (RM) + +56 2 28400990 + http://www.bmya.cl + + 1 + 76201224-3 + + + + + Daniel Blanco + contact + + + + + + + Teksa SpA + teksa@teksa.cl + 1 + Pudahuel + + Puerto Madero 9710 + Of A15, Santiago (RM) + +562 2840 5918 + http://www.teksa.cl + + 1 + 76882486-K + + + + diff --git a/addons/l10n_cl/demo/teksa-logo-300.png b/addons/l10n_cl/demo/teksa-logo-300.png new file mode 100644 index 00000000..d3e2e12a Binary files /dev/null and b/addons/l10n_cl/demo/teksa-logo-300.png differ diff --git a/addons/l10n_cl/i18n/es.po b/addons/l10n_cl/i18n/es.po new file mode 100644 index 00000000..0707f44a --- /dev/null +++ b/addons/l10n_cl/i18n/es.po @@ -0,0 +1,694 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_cl +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-01-14 12:35+0000\n" +"PO-Revision-Date: 2021-01-14 12:35+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_cl +#: model:ir.model.fields,help:l10n_cl.field_res_partner__l10n_cl_sii_taxpayer_type +#: model:ir.model.fields,help:l10n_cl.field_res_users__l10n_cl_sii_taxpayer_type +msgid "" +"1 - VAT Affected (1st Category) (Most of the cases)\n" +"2 - Fees Receipt Issuer (Applies to suppliers who issue fees receipt)\n" +"3 - End consumer (only receipts)\n" +"4 - Foreigner" +msgstr "" +"1 - IVA Afecto (la mayoría de los casos)\n" +"2 - Emisor Boletas (aplica solo para proveedores emisores de boleta)\n" +"3 - Consumidor Final (se le emitirán siempre boletas)\n" +"4 - Extranjero" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "" +"
\n" +"\n" +" Customer:" +msgstr "" +"
\n" +"\n" +" Cliente:" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.custom_header +msgid "" +"
\n" +" RUT:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.custom_header +msgid "" +"
\n" +" Nº:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "" +"
\n" +" Incoterm:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "" +"
\n" +" Address:" +msgstr "" +"
\n" +" Dirección:" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.report_invoice_document +msgid "Taxes" +msgstr "Impuestos" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "Due Date:" +msgstr "Fecha de vencimiento:" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "GIRO:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "Payment Terms:" +msgstr "Plazos de pago:" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_chart_template +msgid "Account Chart Template" +msgstr "Plantilla de Plan de Cuentas" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Accounting Date" +msgstr "Fecha contable" + +#. module: l10n_cl +#: model:product.product,name:l10n_cl.product_product_ad_valorem +#: model:product.template,name:l10n_cl.product_product_ad_valorem_product_template +msgid "Ad-Valorem" +msgstr "Ad-Valorem" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Amount Due" +msgstr "Monto adeudado" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Amount Untaxed" +msgstr "Monto sin impuestos" + +#. module: l10n_cl +#: model:ir.model.fields,help:l10n_cl.field_account_bank_statement_line__l10n_latam_internal_type +#: model:ir.model.fields,help:l10n_cl.field_account_move__l10n_latam_internal_type +#: model:ir.model.fields,help:l10n_cl.field_account_payment__l10n_latam_internal_type +#: model:ir.model.fields,help:l10n_cl.field_l10n_latam_document_type__internal_type +msgid "" +"Analog to odoo account.move.move_type but with more options allowing to " +"identify the kind of document we are working with. (not only related to " +"account.move, could be for documents of other models like stock.picking)" +msgstr "" +"Análogo a account.move.type de Odoo pero con más opciones, permitiendo " +"identificar el tipo de documento sobre el que estamos trabajando. (no " +"solamente relativo a account.move, podría ser relativo a otros modelos, como" +" por ejemplo stock.picking)" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_bar +msgid "BAR" +msgstr "BAR" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_bank +msgid "Bank" +msgstr "Banco" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_carton +msgid "CARTON" +msgstr "CARTON" + +#. module: l10n_cl +#: model:product.product,description:l10n_cl.product_product_ad_valorem +#: model:product.template,description:l10n_cl.product_product_ad_valorem_product_template +msgid "Cargo para calculo de Ad-Valorem en DIN" +msgstr "" + +#. module: l10n_cl +#: model:ir.ui.menu,name:l10n_cl.account_reports_cl_statements_menu +msgid "Chile" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.res_config_settings_view_form +msgid "Chilean Localization" +msgstr "Localización Chilena" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_bank__l10n_cl_sbif_code +msgid "Cod. SBIF" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,help:l10n_cl.field_account_bank_statement_line__l10n_latam_document_type_id_code +#: model:ir.model.fields,help:l10n_cl.field_account_move__l10n_latam_document_type_id_code +#: model:ir.model.fields,help:l10n_cl.field_account_payment__l10n_latam_document_type_id_code +msgid "Code used by different localizations" +msgstr "Código usado por diferentes localizaciones" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_country +msgid "Country" +msgstr "País" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__credit_note +msgid "Credit Notes" +msgstr "Notas de Crédito" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_currency +msgid "Currency" +msgstr "Moneda" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency__l10n_cl_currency_code +msgid "Currency Code" +msgstr "Código de moneda" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__l10n_cl_customs_abbreviation +msgid "Customs Abbreviation" +msgstr "Abreviatura de aduana" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__l10n_cl_customs_code +msgid "Customs Code" +msgstr "Código de aduana" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__l10n_cl_customs_name +msgid "Customs Name" +msgstr "Nombre de aduana" + +#. module: l10n_cl +#: model:l10n_latam.identification.type,name:l10n_cl.it_DNI +msgid "DNI" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "Date:" +msgstr "Fecha:" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_move_form +msgid "Datos adic. dirección y Ciudad" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__debit_note +msgid "Debit Notes" +msgstr "Notas de Débito" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_account_journal__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax_template__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_ir_sequence__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_l10n_latam_document_type__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_bank__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_company__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_partner__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_uom_uom__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_bank_statement_line__l10n_latam_document_type_id_code +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__l10n_latam_document_type_id_code +#: model:ir.model.fields,field_description:l10n_cl.field_account_payment__l10n_latam_document_type_id_code +msgid "Doc Type" +msgstr "Tipo documento" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"Document types for foreign customers must be export type (codes 110, 111 or " +"112) or you should define the customer as an end" +" consumer and use receipts (codes 39 or 41)" +msgstr "Los tipos de documento para clientes extranjeros deben ser de exportación. " +"(Códigos 110, 111 o 112) o debe definir al cliente como consumidor final y utilizar " +"recibos (códigos 39 o 41)" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/res_partner.py:0 +#: model:ir.model.fields.selection,name:l10n_cl.selection__res_partner__l10n_cl_sii_taxpayer_type__3 +#, python-format +msgid "End Consumer" +msgstr "Consumidor final" + +#. module: l10n_cl +#: model:uom.category,name:l10n_cl.uom_categ_energy +msgid "Energía" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/res_partner.py:0 +#: model:ir.model.fields.selection,name:l10n_cl.selection__res_partner__l10n_cl_sii_taxpayer_type__2 +#, python-format +msgid "Fees Receipt Issuer (2nd category)" +msgstr "Emisor de boleta 2da categoría" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/res_partner.py:0 +#: model:ir.model.fields.selection,name:l10n_cl.selection__res_partner__l10n_cl_sii_taxpayer_type__4 +#, python-format +msgid "Foreigner" +msgstr "Extranjero" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_hl +msgid "HL" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_chart_template__id +#: model:ir.model.fields,field_description:l10n_cl.field_account_journal__id +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__id +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax__id +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax_template__id +#: model:ir.model.fields,field_description:l10n_cl.field_ir_sequence__id +#: model:ir.model.fields,field_description:l10n_cl.field_l10n_latam_document_type__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_bank__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_company__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_partner__id +#: model:ir.model.fields,field_description:l10n_cl.field_uom_uom__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_ila +msgid "ILA" +msgstr "" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_iva_19 +msgid "IVA 19%" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,help:l10n_cl.field_account_bank_statement_line__partner_id_vat +#: model:ir.model.fields,help:l10n_cl.field_account_move__partner_id_vat +#: model:ir.model.fields,help:l10n_cl.field_account_payment__partner_id_vat +msgid "Identification Number for selected type" +msgstr "Número de identificación para el tipo seleccionado" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_impuestos_especificos +msgid "Impuestos Específicos" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_l10n_latam_document_type__internal_type +msgid "Internal Type" +msgstr "Tipo interno" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__invoice +msgid "Invoices" +msgstr "Facturas" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Invoices and Refunds" +msgstr "Facturas y notas de crédito" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_move +msgid "Journal Entry" +msgstr "Asiento contable" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_ir_sequence__l10n_cl_journal_ids +msgid "Journals" +msgstr "Diarios" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_knfc +msgid "KNFC" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_kwh +msgid "KWH" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_bank_statement_line__l10n_latam_internal_type +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__l10n_latam_internal_type +#: model:ir.model.fields,field_description:l10n_cl.field_account_payment__l10n_latam_internal_type +msgid "L10n Latam Internal Type" +msgstr "L10n Tipo Interno (Latam)" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_account_journal____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_account_move____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax_template____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_ir_sequence____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_l10n_latam_document_type____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_bank____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_company____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_country____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_partner____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_uom_uom____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_l10n_latam_document_type +msgid "Latam Document Type" +msgstr "Tipo Documento (LA)" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.custom_header +msgid "Logo" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_mm +msgid "M2/1MM" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_mcub +msgid "MCUB" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_mkwh +msgid "MKWH" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_mt2 +msgid "MT2" +msgstr "" + +#. module: l10n_cl +#: model:uom.category,name:l10n_cl.uom_categ_others +msgid "Otros" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_par +msgid "PAR" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_uom_uom +msgid "Product Unit of Measure" +msgstr "Unidad de medida del producto" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__invoice_in +msgid "Purchase Invoices" +msgstr "Facturas de proveedores" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_qmb +msgid "QMB" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_qnt +msgid "QNT" +msgstr "" + +#. module: l10n_cl +#: model:l10n_latam.identification.type,name:l10n_cl.it_RUN +msgid "RUN" +msgstr "" + +#. module: l10n_cl +#: model:l10n_latam.identification.type,name:l10n_cl.it_RUT +msgid "RUT" +msgstr "RUT" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__receipt_invoice +msgid "Receipt Invoice" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_move_form +msgid "Región" +msgstr "" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_retenciones +msgid "Retenciones" +msgstr "" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_2da_categ +msgid "Retención de 2da Categoría" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_sum +#: model:uom.uom,name:l10n_cl.product_uom_sum_99 +msgid "S.U.M" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax__l10n_cl_sii_code +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax_template__l10n_cl_sii_code +#: model:ir.model.fields,field_description:l10n_cl.field_uom_uom__l10n_cl_sii_code +msgid "SII Code" +msgstr "Código SII" + +#. module: l10n_cl +#: model:ir.actions.act_window,name:l10n_cl.sale_invoices_credit_notes +msgid "Sale Invoices and Credit Notes" +msgstr "Facturas de Venta y Notas de Crédito" + +#. module: l10n_cl +#: model:ir.ui.menu,name:l10n_cl.menu_sale_invoices_credit_notes +msgid "Sale Invoices and Credit Notes (CL)" +msgstr "Facturas de Vta y Notas de Crédito (CL)" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Sales Person" +msgstr "Comercial" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_ir_sequence +msgid "Sequence" +msgstr "Secuencia" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_bank_statement_import_journal_creation__l10n_cl_sequence_ids +#: model:ir.model.fields,field_description:l10n_cl.field_account_journal__l10n_cl_sequence_ids +msgid "Sequences (cl)" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency__l10n_cl_short_name +msgid "Short Name" +msgstr "Nombre corto" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Source Document" +msgstr "Documento origen" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_tmb +msgid "TMB" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_tmn +msgid "TMN" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_tax +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Tax" +msgstr "Impuesto" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_move_form +msgid "Tax Payer Type" +msgstr "Tipo de Contribuyente" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"Tax payer type and vat number are mandatory for this type of document. " +"Please set the current tax payer type of this customer" +msgstr "" +"El tipo de contribuyente y el número de RUT son requeridos para este tipo de" +" documento. Por favor establezca un valor para el tipo de contribuyente de " +"este Cliente" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"Tax payer type and vat number are mandatory for this type of document. " +"Please set the current tax payer type of this supplier" +msgstr "" +"El tipo de contribuyente y el número de RUT son requeridos para este tipo de" +" documento. Por favor establezca un valor para el tipo de contribuyente de " +"este Proveedor" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_partner__l10n_cl_sii_taxpayer_type +#: model:ir.model.fields,field_description:l10n_cl.field_res_users__l10n_cl_sii_taxpayer_type +msgid "Taxpayer Type" +msgstr "Tipo de Contribuyente" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_tax_template +msgid "Templates for Taxes" +msgstr "Plantilla de impuestos" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"The DIN document is intended to be used only with RUT 60805000-0 (Tesorería " +"General de La República)" +msgstr "" +"El documento “declaración de ingreso” (DIN) debe ser usado solamente para " +"“Tesorería General de La República” (RUT 60805000-0)" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"The tax payer type of this supplier is incorrect for the selected type of " +"document." +msgstr "" +"El tipo de contribuyente de este proveedor es incorrecto para el tipo de " +"documento seleccionado." + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"The tax payer type of this supplier is not entitled to deliver fees " +"documents" +msgstr "" +"El tipo de contribuyente para este proveedor no puede emitir boletas de " +"honorarios" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"The tax payer type of this supplier is not entitled to deliver imports " +"documents" +msgstr "" +"El tipo de contribuyente para este proveedor no puede emitir documentos de " +"importación" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"This supplier should be defined as foreigner tax payer type and the country " +"should be different from Chile to register purchases." +msgstr "" +"Este proveedor debería ser definido como tipo de contribuyente “Extranjero” " +"y el país debería ser diferente de Chile para registrar compras." + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Total" +msgstr "Total" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_u +msgid "U(JGO)" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/res_partner.py:0 +#: model:ir.model.fields.selection,name:l10n_cl.selection__res_partner__l10n_cl_sii_taxpayer_type__1 +#, python-format +msgid "VAT Affected (1st Category)" +msgstr "IVA afecto 1ª categoría" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_bank_statement_line__partner_id_vat +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__partner_id_vat +#: model:ir.model.fields,field_description:l10n_cl.field_account_payment__partner_id_vat +msgid "VAT No" +msgstr "RUT Nº" + +#. module: l10n_cl +#: model:ir.actions.act_window,name:l10n_cl.vendor_bills_and_refunds +msgid "Vendor Bills and Refunds" +msgstr "Facturas y Notas de Créd de Proveedores" + +#. module: l10n_cl +#: model:ir.ui.menu,name:l10n_cl.menu_vendor_bills_and_refunds +msgid "Vendor Bills and Refunds (CL)" +msgstr "Facturas de Proveedor y Notas de Crédito (CL)" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "You need a journal without the use of documents for foreign suppliers" +msgstr "" +"Ud. necesita un diario que no use documentos para registrar facturas de " +"proveedores extranjeros" diff --git a/addons/l10n_cl/i18n/l10n_cl.pot b/addons/l10n_cl/i18n/l10n_cl.pot new file mode 100644 index 00000000..ec8207cc --- /dev/null +++ b/addons/l10n_cl/i18n/l10n_cl.pot @@ -0,0 +1,661 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * l10n_cl +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-01-14 12:18+0000\n" +"PO-Revision-Date: 2021-01-14 12:18+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: l10n_cl +#: model:ir.model.fields,help:l10n_cl.field_res_partner__l10n_cl_sii_taxpayer_type +#: model:ir.model.fields,help:l10n_cl.field_res_users__l10n_cl_sii_taxpayer_type +msgid "" +"1 - VAT Affected (1st Category) (Most of the cases)\n" +"2 - Fees Receipt Issuer (Applies to suppliers who issue fees receipt)\n" +"3 - End consumer (only receipts)\n" +"4 - Foreigner" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "" +"
\n" +"\n" +" Customer:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.custom_header +msgid "" +"
\n" +" RUT:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.custom_header +msgid "" +"
\n" +" Nº:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "" +"
\n" +" Incoterm:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "" +"
\n" +" Address:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.report_invoice_document +msgid "Taxes" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "Due Date:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "GIRO:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "Payment Terms:" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Accounting Date" +msgstr "" + +#. module: l10n_cl +#: model:product.product,name:l10n_cl.product_product_ad_valorem +#: model:product.template,name:l10n_cl.product_product_ad_valorem_product_template +msgid "Ad-Valorem" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Amount Due" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Amount Untaxed" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,help:l10n_cl.field_account_bank_statement_line__l10n_latam_internal_type +#: model:ir.model.fields,help:l10n_cl.field_account_move__l10n_latam_internal_type +#: model:ir.model.fields,help:l10n_cl.field_account_payment__l10n_latam_internal_type +#: model:ir.model.fields,help:l10n_cl.field_l10n_latam_document_type__internal_type +msgid "" +"Analog to odoo account.move.move_type but with more options allowing to " +"identify the kind of document we are working with. (not only related to " +"account.move, could be for documents of other models like stock.picking)" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_bar +msgid "BAR" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_bank +msgid "Bank" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_carton +msgid "CARTON" +msgstr "" + +#. module: l10n_cl +#: model:product.product,description:l10n_cl.product_product_ad_valorem +#: model:product.template,description:l10n_cl.product_product_ad_valorem_product_template +msgid "Cargo para calculo de Ad-Valorem en DIN" +msgstr "" + +#. module: l10n_cl +#: model:ir.ui.menu,name:l10n_cl.account_reports_cl_statements_menu +msgid "Chile" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.res_config_settings_view_form +msgid "Chilean Localization" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_bank__l10n_cl_sbif_code +msgid "Cod. SBIF" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,help:l10n_cl.field_account_bank_statement_line__l10n_latam_document_type_id_code +#: model:ir.model.fields,help:l10n_cl.field_account_move__l10n_latam_document_type_id_code +#: model:ir.model.fields,help:l10n_cl.field_account_payment__l10n_latam_document_type_id_code +msgid "Code used by different localizations" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_company +msgid "Companies" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_partner +msgid "Contact" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_country +msgid "Country" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__credit_note +msgid "Credit Notes" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_res_currency +msgid "Currency" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency__l10n_cl_currency_code +msgid "Currency Code" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__l10n_cl_customs_abbreviation +msgid "Customs Abbreviation" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__l10n_cl_customs_code +msgid "Customs Code" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__l10n_cl_customs_name +msgid "Customs Name" +msgstr "" + +#. module: l10n_cl +#: model:l10n_latam.identification.type,name:l10n_cl.it_DNI +msgid "DNI" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.informations +msgid "Date:" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_move_form +msgid "Datos adic. dirección y Ciudad" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__debit_note +msgid "Debit Notes" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_chart_template__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_account_journal__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax_template__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_ir_sequence__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_l10n_latam_document_type__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_bank__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_company__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_res_partner__display_name +#: model:ir.model.fields,field_description:l10n_cl.field_uom_uom__display_name +msgid "Display Name" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_bank_statement_line__l10n_latam_document_type_id_code +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__l10n_latam_document_type_id_code +#: model:ir.model.fields,field_description:l10n_cl.field_account_payment__l10n_latam_document_type_id_code +msgid "Doc Type" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"Document types for foreign customers must be export type (codes 110, 111 or " +"112) or you should define the customer as an end" +" consumer and use receipts (codes 39 or 41)" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/res_partner.py:0 +#: model:ir.model.fields.selection,name:l10n_cl.selection__res_partner__l10n_cl_sii_taxpayer_type__3 +#, python-format +msgid "End Consumer" +msgstr "" + +#. module: l10n_cl +#: model:uom.category,name:l10n_cl.uom_categ_energy +msgid "Energía" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/res_partner.py:0 +#: model:ir.model.fields.selection,name:l10n_cl.selection__res_partner__l10n_cl_sii_taxpayer_type__2 +#, python-format +msgid "Fees Receipt Issuer (2nd category)" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/res_partner.py:0 +#: model:ir.model.fields.selection,name:l10n_cl.selection__res_partner__l10n_cl_sii_taxpayer_type__4 +#, python-format +msgid "Foreigner" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_hl +msgid "HL" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_chart_template__id +#: model:ir.model.fields,field_description:l10n_cl.field_account_journal__id +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__id +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax__id +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax_template__id +#: model:ir.model.fields,field_description:l10n_cl.field_ir_sequence__id +#: model:ir.model.fields,field_description:l10n_cl.field_l10n_latam_document_type__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_bank__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_company__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_country__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency__id +#: model:ir.model.fields,field_description:l10n_cl.field_res_partner__id +#: model:ir.model.fields,field_description:l10n_cl.field_uom_uom__id +msgid "ID" +msgstr "" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_ila +msgid "ILA" +msgstr "" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_iva_19 +msgid "IVA 19%" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,help:l10n_cl.field_account_bank_statement_line__partner_id_vat +#: model:ir.model.fields,help:l10n_cl.field_account_move__partner_id_vat +#: model:ir.model.fields,help:l10n_cl.field_account_payment__partner_id_vat +msgid "Identification Number for selected type" +msgstr "" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_impuestos_especificos +msgid "Impuestos Específicos" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_l10n_latam_document_type__internal_type +msgid "Internal Type" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__invoice +msgid "Invoices" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Invoices and Refunds" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_journal +msgid "Journal" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_ir_sequence__l10n_cl_journal_ids +msgid "Journals" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_knfc +msgid "KNFC" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_kwh +msgid "KWH" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_bank_statement_line__l10n_latam_internal_type +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__l10n_latam_internal_type +#: model:ir.model.fields,field_description:l10n_cl.field_account_payment__l10n_latam_internal_type +msgid "L10n Latam Internal Type" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_chart_template____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_account_journal____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_account_move____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax_template____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_ir_sequence____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_l10n_latam_document_type____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_bank____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_company____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_country____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_res_partner____last_update +#: model:ir.model.fields,field_description:l10n_cl.field_uom_uom____last_update +msgid "Last Modified on" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_l10n_latam_document_type +msgid "Latam Document Type" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.custom_header +msgid "Logo" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_mm +msgid "M2/1MM" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_mcub +msgid "MCUB" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_mkwh +msgid "MKWH" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_mt2 +msgid "MT2" +msgstr "" + +#. module: l10n_cl +#: model:uom.category,name:l10n_cl.uom_categ_others +msgid "Otros" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_par +msgid "PAR" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_uom_uom +msgid "Product Unit of Measure" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__invoice_in +msgid "Purchase Invoices" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_qmb +msgid "QMB" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_qnt +msgid "QNT" +msgstr "" + +#. module: l10n_cl +#: model:l10n_latam.identification.type,name:l10n_cl.it_RUN +msgid "RUN" +msgstr "" + +#. module: l10n_cl +#: model:l10n_latam.identification.type,name:l10n_cl.it_RUT +msgid "RUT" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields.selection,name:l10n_cl.selection__l10n_latam_document_type__internal_type__receipt_invoice +msgid "Receipt Invoice" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_move_form +msgid "Región" +msgstr "" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_retenciones +msgid "Retenciones" +msgstr "" + +#. module: l10n_cl +#: model:account.tax.group,name:l10n_cl.tax_group_2da_categ +msgid "Retención de 2da Categoría" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_sum +#: model:uom.uom,name:l10n_cl.product_uom_sum_99 +msgid "S.U.M" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax__l10n_cl_sii_code +#: model:ir.model.fields,field_description:l10n_cl.field_account_tax_template__l10n_cl_sii_code +#: model:ir.model.fields,field_description:l10n_cl.field_uom_uom__l10n_cl_sii_code +msgid "SII Code" +msgstr "" + +#. module: l10n_cl +#: model:ir.actions.act_window,name:l10n_cl.sale_invoices_credit_notes +msgid "Sale Invoices and Credit Notes" +msgstr "" + +#. module: l10n_cl +#: model:ir.ui.menu,name:l10n_cl.menu_sale_invoices_credit_notes +msgid "Sale Invoices and Credit Notes (CL)" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Sales Person" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_ir_sequence +msgid "Sequence" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_bank_statement_import_journal_creation__l10n_cl_sequence_ids +#: model:ir.model.fields,field_description:l10n_cl.field_account_journal__l10n_cl_sequence_ids +msgid "Sequences (cl)" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_currency__l10n_cl_short_name +msgid "Short Name" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Source Document" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_tmb +msgid "TMB" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_tmn +msgid "TMN" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_tax +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Tax" +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_move_form +msgid "Tax Payer Type" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"Tax payer type and vat number are mandatory for this type of document. " +"Please set the current tax payer type of this customer" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"Tax payer type and vat number are mandatory for this type of document. " +"Please set the current tax payer type of this supplier" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_res_partner__l10n_cl_sii_taxpayer_type +#: model:ir.model.fields,field_description:l10n_cl.field_res_users__l10n_cl_sii_taxpayer_type +msgid "Taxpayer Type" +msgstr "" + +#. module: l10n_cl +#: model:ir.model,name:l10n_cl.model_account_tax_template +msgid "Templates for Taxes" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"The DIN document is intended to be used only with RUT 60805000-0 (Tesorería " +"General de La República)" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"The tax payer type of this supplier is incorrect for the selected type of " +"document." +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"The tax payer type of this supplier is not entitled to deliver fees " +"documents" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"The tax payer type of this supplier is not entitled to deliver imports " +"documents" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "" +"This supplier should be defined as foreigner tax payer type and the country " +"should be different from Chile to register purchases." +msgstr "" + +#. module: l10n_cl +#: model_terms:ir.ui.view,arch_db:l10n_cl.view_complete_invoice_refund_tree +msgid "Total" +msgstr "" + +#. module: l10n_cl +#: model:uom.uom,name:l10n_cl.product_uom_u +msgid "U(JGO)" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/res_partner.py:0 +#: model:ir.model.fields.selection,name:l10n_cl.selection__res_partner__l10n_cl_sii_taxpayer_type__1 +#, python-format +msgid "VAT Affected (1st Category)" +msgstr "" + +#. module: l10n_cl +#: model:ir.model.fields,field_description:l10n_cl.field_account_bank_statement_line__partner_id_vat +#: model:ir.model.fields,field_description:l10n_cl.field_account_move__partner_id_vat +#: model:ir.model.fields,field_description:l10n_cl.field_account_payment__partner_id_vat +msgid "VAT No" +msgstr "" + +#. module: l10n_cl +#: model:ir.actions.act_window,name:l10n_cl.vendor_bills_and_refunds +msgid "Vendor Bills and Refunds" +msgstr "" + +#. module: l10n_cl +#: model:ir.ui.menu,name:l10n_cl.menu_vendor_bills_and_refunds +msgid "Vendor Bills and Refunds (CL)" +msgstr "" + +#. module: l10n_cl +#: code:addons/l10n_cl/models/account_move.py:0 +#, python-format +msgid "You need a journal without the use of documents for foreign suppliers" +msgstr "" diff --git a/addons/l10n_cl/models/__init__.py b/addons/l10n_cl/models/__init__.py new file mode 100644 index 00000000..54120897 --- /dev/null +++ b/addons/l10n_cl/models/__init__.py @@ -0,0 +1,14 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import account_chart_template +from . import account_journal +from . import account_move +from . import account_tax +from . import ir_sequence +from . import l10n_latam_document_type +from . import res_company +from . import res_country +from . import res_currency +from . import res_partner +from . import res_partner_bank +from . import uom_uom diff --git a/addons/l10n_cl/models/account_chart_template.py b/addons/l10n_cl/models/account_chart_template.py new file mode 100644 index 00000000..ef586451 --- /dev/null +++ b/addons/l10n_cl/models/account_chart_template.py @@ -0,0 +1,15 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models +from odoo.http import request + + +class AccountChartTemplate(models.Model): + _inherit = 'account.chart.template' + + def _load(self, sale_tax_rate, purchase_tax_rate, company): + """ Set tax calculation rounding method required in Chilean localization""" + res = super()._load(sale_tax_rate, purchase_tax_rate, company) + if company.country_id.code == 'CL': + company.write({'tax_calculation_rounding_method': 'round_globally'}) + return res diff --git a/addons/l10n_cl/models/account_journal.py b/addons/l10n_cl/models/account_journal.py new file mode 100644 index 00000000..5917e688 --- /dev/null +++ b/addons/l10n_cl/models/account_journal.py @@ -0,0 +1,11 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models, api + + +class AccountJournal(models.Model): + _inherit = "account.journal" + + l10n_cl_sequence_ids = fields.Many2many( + 'ir.sequence', 'l10n_cl_journal_sequence_rel', 'journal_id', 'sequence_id', string='Sequences (cl)', + domain="[('l10n_latam_document_type_id', '!=', False)]") \ No newline at end of file diff --git a/addons/l10n_cl/models/account_move.py b/addons/l10n_cl/models/account_move.py new file mode 100644 index 00000000..06588533 --- /dev/null +++ b/addons/l10n_cl/models/account_move.py @@ -0,0 +1,126 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo.exceptions import ValidationError +from odoo import models, fields, api, _ +from odoo.osv import expression + +SII_VAT = '60805000-0' + + +class AccountMove(models.Model): + _inherit = "account.move" + + l10n_latam_document_type_id_code = fields.Char(related='l10n_latam_document_type_id.code', string='Doc Type') + partner_id_vat = fields.Char(related='partner_id.vat', string='VAT No') + l10n_latam_internal_type = fields.Selection( + related='l10n_latam_document_type_id.internal_type', string='L10n Latam Internal Type') + + def _get_l10n_latam_documents_domain(self): + self.ensure_one() + if self.journal_id.company_id.country_id != self.env.ref('base.cl') or not \ + self.journal_id.l10n_latam_use_documents: + return super()._get_l10n_latam_documents_domain() + if self.journal_id.type == 'sale': + domain = [('country_id.code', '=', "CL"), ('internal_type', '!=', 'invoice_in')] + if self.company_id.partner_id.l10n_cl_sii_taxpayer_type == '1': + domain += [('code', '!=', '71')] # Companies with VAT Affected doesn't have "Boleta de honorarios Electrónica" + return domain + domain = [ + ('country_id.code', '=', 'CL'), + ('internal_type', 'in', ['invoice', 'debit_note', 'credit_note', 'invoice_in'])] + if self.partner_id.l10n_cl_sii_taxpayer_type == '1' and self.partner_id_vat != '60805000-0': + domain += [('code', 'not in', ['39', '70', '71', '914', '911'])] + elif self.partner_id.l10n_cl_sii_taxpayer_type == '1' and self.partner_id_vat == '60805000-0': + domain += [('code', 'not in', ['39', '70', '71'])] + if self.move_type == 'in_invoice': + domain += [('internal_type', '!=', 'credit_note')] + elif self.partner_id.l10n_cl_sii_taxpayer_type == '2': + domain += [('code', 'in', ['70', '71', '56', '61'])] + elif self.partner_id.l10n_cl_sii_taxpayer_type == '3': + domain += [('code', 'in', ['35', '38', '39', '41', '56', '61'])] + elif not self.partner_id.l10n_cl_sii_taxpayer_type or self.partner_id.country_id != self.env.ref( + 'base.cl') or self.partner_id.l10n_cl_sii_taxpayer_type == '4': + domain += [('code', 'in', [])] + return domain + + + def _check_document_types_post(self): + for rec in self.filtered( + lambda r: r.company_id.country_id.code == "CL" and + r.journal_id.type in ['sale', 'purchase']): + tax_payer_type = rec.partner_id.l10n_cl_sii_taxpayer_type + vat = rec.partner_id.vat + country_id = rec.partner_id.country_id + latam_document_type_code = rec.l10n_latam_document_type_id.code + if (not tax_payer_type or not vat) and (country_id.code == "CL" and latam_document_type_code + and latam_document_type_code not in ['35', '38', '39', '41']): + raise ValidationError(_('Tax payer type and vat number are mandatory for this type of ' + 'document. Please set the current tax payer type of this customer')) + if rec.journal_id.type == 'sale' and rec.journal_id.l10n_latam_use_documents: + if country_id.code != "CL": + if not ((tax_payer_type == '4' and latam_document_type_code in ['110', '111', '112']) or ( + tax_payer_type == '3' and latam_document_type_code in ['39', '41', '61', '56'])): + raise ValidationError(_( + 'Document types for foreign customers must be export type (codes 110, 111 or 112) or you \ + should define the customer as an end consumer and use receipts (codes 39 or 41)')) + if rec.journal_id.type == 'purchase' and rec.journal_id.l10n_latam_use_documents: + if vat != SII_VAT and latam_document_type_code == '914': + raise ValidationError(_('The DIN document is intended to be used only with RUT 60805000-0' + ' (Tesorería General de La República)')) + if not tax_payer_type or not vat: + if country_id.code == "CL" and latam_document_type_code not in [ + '35', '38', '39', '41']: + raise ValidationError(_('Tax payer type and vat number are mandatory for this type of ' + 'document. Please set the current tax payer type of this supplier')) + if tax_payer_type == '2' and latam_document_type_code not in ['70', '71', '56', '61']: + raise ValidationError(_('The tax payer type of this supplier is incorrect for the selected type' + ' of document.')) + if tax_payer_type in ['1', '3']: + if latam_document_type_code in ['70', '71']: + raise ValidationError(_('The tax payer type of this supplier is not entitled to deliver ' + 'fees documents')) + if latam_document_type_code in ['110', '111', '112']: + raise ValidationError(_('The tax payer type of this supplier is not entitled to deliver ' + 'imports documents')) + if tax_payer_type == '4' or country_id.code != "CL": + raise ValidationError(_('You need a journal without the use of documents for foreign ' + 'suppliers')) + if rec.journal_id.type == 'purchase' and not rec.journal_id.l10n_latam_use_documents: + if tax_payer_type != '4': + raise ValidationError(_('This supplier should be defined as foreigner tax payer type and ' + 'the country should be different from Chile to register purchases.')) + + @api.onchange('journal_id') + def _l10n_cl_onchange_journal(self): + self.l10n_latam_document_type_id = False + + def _post(self, soft=True): + self._check_document_types_post() + return super()._post(soft) + + def _l10n_cl_get_formatted_sequence(self, number=0): + return '%s %06d' % (self.l10n_latam_document_type_id.doc_code_prefix, number) + + def _get_starting_sequence(self): + """ If use documents then will create a new starting sequence using the document type code prefix and the + journal document number with a 6 padding number """ + if self.journal_id.l10n_latam_use_documents and self.env.company.country_id.code == "CL": + if self.l10n_latam_document_type_id: + return self._l10n_cl_get_formatted_sequence() + return super()._get_starting_sequence() + + def _get_last_sequence_domain(self, relaxed=False): + where_string, param = super(AccountMove, self)._get_last_sequence_domain(relaxed) + if self.company_id.country_id.code == "CL" and self.l10n_latam_use_documents: + where_string = where_string.replace('journal_id = %(journal_id)s AND', '') + where_string += ' AND l10n_latam_document_type_id = %(l10n_latam_document_type_id)s AND ' \ + 'company_id = %(company_id)s AND move_type IN (\'out_invoice\', \'out_refund\')' + param['company_id'] = self.company_id.id or False + param['l10n_latam_document_type_id'] = self.l10n_latam_document_type_id.id or 0 + return where_string, param + + def _get_name_invoice_report(self): + self.ensure_one() + if self.l10n_latam_use_documents and self.company_id.country_id.code == 'CL': + return 'l10n_cl.report_invoice_document' + return super()._get_name_invoice_report() diff --git a/addons/l10n_cl/models/account_tax.py b/addons/l10n_cl/models/account_tax.py new file mode 100644 index 00000000..0f102863 --- /dev/null +++ b/addons/l10n_cl/models/account_tax.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import fields, models + + +class AccountTax(models.Model): + _name = 'account.tax' + _inherit = 'account.tax' + + l10n_cl_sii_code = fields.Integer('SII Code', group_operator=False) + + +class AccountTaxTemplate(models.Model): + _name = 'account.tax.template' + _inherit = 'account.tax.template' + + l10n_cl_sii_code = fields.Integer('SII Code') + + def _get_tax_vals(self, company, tax_template_to_tax): + self.ensure_one() + vals = super(AccountTaxTemplate, self)._get_tax_vals(company, tax_template_to_tax) + vals.update({ + 'l10n_cl_sii_code': self.l10n_cl_sii_code, + }) + if self.tax_group_id: + vals['tax_group_id'] = self.tax_group_id.id + return vals diff --git a/addons/l10n_cl/models/ir_sequence.py b/addons/l10n_cl/models/ir_sequence.py new file mode 100644 index 00000000..5da1e5c9 --- /dev/null +++ b/addons/l10n_cl/models/ir_sequence.py @@ -0,0 +1,10 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import fields, models + + +class IrSequence(models.Model): + + _inherit = 'ir.sequence' + + l10n_cl_journal_ids = fields.Many2many('account.journal', 'l10n_cl_journal_sequence_rel', 'sequence_id', + 'journal_id', 'Journals', readonly=True) diff --git a/addons/l10n_cl/models/l10n_latam_document_type.py b/addons/l10n_cl/models/l10n_latam_document_type.py new file mode 100644 index 00000000..e458cb71 --- /dev/null +++ b/addons/l10n_cl/models/l10n_latam_document_type.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import models, fields + + +class L10nLatamDocumentType(models.Model): + + _inherit = 'l10n_latam.document.type' + + internal_type = fields.Selection( + selection_add=[ + ('invoice', 'Invoices'), + ('invoice_in', 'Purchase Invoices'), + ('debit_note', 'Debit Notes'), + ('credit_note', 'Credit Notes'), + ('receipt_invoice', 'Receipt Invoice')]) + + def _format_document_number(self, document_number): + """ Make validation of Import Dispatch Number + * making validations on the document_number. If it is wrong it should raise an exception + * format the document_number against a pattern and return it + """ + self.ensure_one() + if self.country_id.code != "CL": + return super()._format_document_number(document_number) + + if not document_number: + return False + + return document_number.zfill(6) + + def _filter_taxes_included(self, taxes): + """ In Chile we include taxes depending on document type """ + self.ensure_one() + if self.country_id.code == "CL" and self.code in ['39', '41', '110', '111', '112', '34']: + return taxes.filtered(lambda x: x.l10n_cl_sii_code == 14) + return super()._filter_taxes_included(taxes) diff --git a/addons/l10n_cl/models/res_company.py b/addons/l10n_cl/models/res_company.py new file mode 100644 index 00000000..8821be52 --- /dev/null +++ b/addons/l10n_cl/models/res_company.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import models, fields + + +class ResCompany(models.Model): + _inherit = "res.company" + + def _localization_use_documents(self): + """ Chilean localization use documents """ + self.ensure_one() + return self.country_id.code == "CL" or super()._localization_use_documents() diff --git a/addons/l10n_cl/models/res_country.py b/addons/l10n_cl/models/res_country.py new file mode 100644 index 00000000..7e78a0ca --- /dev/null +++ b/addons/l10n_cl/models/res_country.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import fields, models + + +class ResPartner(models.Model): + _name = 'res.country' + _inherit = 'res.country' + + l10n_cl_customs_code = fields.Char('Customs Code') + l10n_cl_customs_name = fields.Char('Customs Name') + l10n_cl_customs_abbreviation = fields.Char('Customs Abbreviation') diff --git a/addons/l10n_cl/models/res_currency.py b/addons/l10n_cl/models/res_currency.py new file mode 100644 index 00000000..473cad7f --- /dev/null +++ b/addons/l10n_cl/models/res_currency.py @@ -0,0 +1,10 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import _, api, fields, models + + +class ResCurrency(models.Model): + _name = "res.currency" + _inherit = "res.currency" + + l10n_cl_currency_code = fields.Char('Currency Code') + l10n_cl_short_name = fields.Char('Short Name') diff --git a/addons/l10n_cl/models/res_partner.py b/addons/l10n_cl/models/res_partner.py new file mode 100644 index 00000000..cc7c9786 --- /dev/null +++ b/addons/l10n_cl/models/res_partner.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +import stdnum +from odoo import _, api, fields, models +from odoo.exceptions import UserError, ValidationError + + +class ResPartner(models.Model): + _name = 'res.partner' + _inherit = 'res.partner' + + _sii_taxpayer_types = [ + ('1', _('VAT Affected (1st Category)')), + ('2', _('Fees Receipt Issuer (2nd category)')), + ('3', _('End Consumer')), + ('4', _('Foreigner')), + ] + + l10n_cl_sii_taxpayer_type = fields.Selection( + _sii_taxpayer_types, 'Taxpayer Type', index=True, + help='1 - VAT Affected (1st Category) (Most of the cases)\n' + '2 - Fees Receipt Issuer (Applies to suppliers who issue fees receipt)\n' + '3 - End consumer (only receipts)\n' + '4 - Foreigner') + + @api.model + def _commercial_fields(self): + return super()._commercial_fields() + ['l10n_cl_sii_taxpayer_type'] + + def _format_vat_cl(self, values): + identification_types = [self.env.ref('l10n_latam_base.it_vat').id, self.env.ref('l10n_cl.it_RUT').id, + self.env.ref('l10n_cl.it_RUN').id] + country = self.env["res.country"].browse(values.get('country_id')) + identification_type = self.env['l10n_latam.identification.type'].browse( + values.get('l10n_latam_identification_type_id') + ) + partner_country_is_chile = country.code == "CL" or identification_type.country_id.code == "CL" + if partner_country_is_chile and \ + values.get('l10n_latam_identification_type_id') in identification_types and values.get('vat'): + return stdnum.util.get_cc_module('cl', 'vat').format(values['vat']).replace('.', '').replace( + 'CL', '').upper() + else: + return values['vat'] + + def _format_dotted_vat_cl(self, vat): + vat_l = vat.split('-') + n_vat, n_dv = vat_l[0], vat_l[1] + return '%s-%s' % (format(int(n_vat), ',d').replace(',', '.'), n_dv) + + @api.model + def create(self, values): + if values.get('vat'): + values['vat'] = self._format_vat_cl(values) + return super().create(values) + + def write(self, values): + for record in self: + vat_values = { + 'vat': values.get('vat', record.vat), + 'l10n_latam_identification_type_id': values.get( + 'l10n_latam_identification_type_id', record.l10n_latam_identification_type_id.id), + 'country_id': values.get('country_id', record.country_id.id) + } + values['vat'] = self._format_vat_cl(vat_values) + return super().write(values) diff --git a/addons/l10n_cl/models/res_partner_bank.py b/addons/l10n_cl/models/res_partner_bank.py new file mode 100644 index 00000000..611c14e1 --- /dev/null +++ b/addons/l10n_cl/models/res_partner_bank.py @@ -0,0 +1,9 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo import fields, models + + +class ResBank(models.Model): + _name = 'res.bank' + _inherit = 'res.bank' + + l10n_cl_sbif_code = fields.Char('Cod. SBIF', size=10) diff --git a/addons/l10n_cl/models/uom_uom.py b/addons/l10n_cl/models/uom_uom.py new file mode 100644 index 00000000..f4ec5de0 --- /dev/null +++ b/addons/l10n_cl/models/uom_uom.py @@ -0,0 +1,9 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models, api, _ + + +class UomUom(models.Model): + _inherit = 'uom.uom' + + l10n_cl_sii_code = fields.Char('SII Code') diff --git a/addons/l10n_cl/static/description/icon.png b/addons/l10n_cl/static/description/icon.png new file mode 100644 index 00000000..aaaf873a Binary files /dev/null and b/addons/l10n_cl/static/description/icon.png differ diff --git a/addons/l10n_cl/static/sii_logo.jpeg b/addons/l10n_cl/static/sii_logo.jpeg new file mode 100644 index 00000000..52ffded7 Binary files /dev/null and b/addons/l10n_cl/static/sii_logo.jpeg differ diff --git a/addons/l10n_cl/static/tgr_logo.png b/addons/l10n_cl/static/tgr_logo.png new file mode 100644 index 00000000..6edcce87 Binary files /dev/null and b/addons/l10n_cl/static/tgr_logo.png differ diff --git a/addons/l10n_cl/views/account_move_view.xml b/addons/l10n_cl/views/account_move_view.xml new file mode 100644 index 00000000..2d588cfe --- /dev/null +++ b/addons/l10n_cl/views/account_move_view.xml @@ -0,0 +1,98 @@ + + + + + account.move.form.inherit.l10n.cl + account.move + + +
+ + + + {'invisible': [('move_type', '=', 'out_invoice'), ('l10n_latam_internal_type', '!=', 'debit_note')], 'required': [('l10n_latam_internal_type', '=', 'debit_note')]} + +
+
+ + + account.move.latam.form.inherit.l10n.cl + account.move + + + + { + 'invisible': [ + '|', + ('l10n_latam_use_documents', '=', False), + ('l10n_latam_manual_document_number', '=', False), + '|', '|', + ('l10n_latam_use_documents', '=', False), + ('highest_name', '!=', False), + ('state', '!=', 'draft'), + '|', '|', '|', + ('l10n_latam_use_documents', '=', False), + ('posted_before', '=', False), + ('state', '!=', 'draft'), + ('country_code', '!=', 'CL') + ], + 'readonly': [('posted_before', '=', True), ('state', '!=', 'draft')], + 'required': ['|', ('l10n_latam_manual_document_number', '=', True), ('highest_name', '=', False)]} + + + + + + + account.move.tree2 + account.move + + + + + + + + + + + + + + + + + + + + + + + + + + + + Sale Invoices and Credit Notes + + account.move + [('move_type', 'in', ['out_invoice', 'out_refund'])] + {'default_move_type': 'out_invoice'} + current + tree,form + + + + Vendor Bills and Refunds + + account.move + [('move_type', 'in', ['in_invoice', 'in_refund'])] + {'default_move_type': 'in_invoice'} + current + tree,form + + + + + +
diff --git a/addons/l10n_cl/views/account_tax_view.xml b/addons/l10n_cl/views/account_tax_view.xml new file mode 100644 index 00000000..051c7c01 --- /dev/null +++ b/addons/l10n_cl/views/account_tax_view.xml @@ -0,0 +1,48 @@ + + + + + account.tax.form + account.tax + + + + + + + + + + account.tax.sii.code.tree + account.tax + + + + + + + + + + account.tax.template.form + account.tax.template + + + + + + + + + + account.tax.template.sii.tree + account.tax.template + + + + + + + + + \ No newline at end of file diff --git a/addons/l10n_cl/views/ir_sequence_view.xml b/addons/l10n_cl/views/ir_sequence_view.xml new file mode 100644 index 00000000..6964642f --- /dev/null +++ b/addons/l10n_cl/views/ir_sequence_view.xml @@ -0,0 +1,26 @@ + + + + + ir.sequence.form + ir.sequence + + + + + + + + + + ir.sequence.search + ir.sequence + + + + + + + + + diff --git a/addons/l10n_cl/views/l10n_latam_document_type_view.xml b/addons/l10n_cl/views/l10n_latam_document_type_view.xml new file mode 100644 index 00000000..3d518e1d --- /dev/null +++ b/addons/l10n_cl/views/l10n_latam_document_type_view.xml @@ -0,0 +1,13 @@ + + + + l10n.cl.latam.document.type.view + l10n_latam.document.type + + + + handle + + + + diff --git a/addons/l10n_cl/views/report_invoice.xml b/addons/l10n_cl/views/report_invoice.xml new file mode 100644 index 00000000..c2692ff3 --- /dev/null +++ b/addons/l10n_cl/views/report_invoice.xml @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_cl/views/res_bank_view.xml b/addons/l10n_cl/views/res_bank_view.xml new file mode 100644 index 00000000..653180a0 --- /dev/null +++ b/addons/l10n_cl/views/res_bank_view.xml @@ -0,0 +1,28 @@ + + + + + + res.bank.form + res.bank + + + + + + + + + + bank.bank.tree + res.bank + + + + + + + + + + \ No newline at end of file diff --git a/addons/l10n_cl/views/res_config_settings_view.xml b/addons/l10n_cl/views/res_config_settings_view.xml new file mode 100644 index 00000000..ad7d6d10 --- /dev/null +++ b/addons/l10n_cl/views/res_config_settings_view.xml @@ -0,0 +1,20 @@ + + + + + res.config.settings.view.form.chilean.loc + res.config.settings + + + +
+

Chilean Localization

+
+
+ +
+
+
+
+ +
diff --git a/addons/l10n_cl/views/res_country_view.xml b/addons/l10n_cl/views/res_country_view.xml new file mode 100644 index 00000000..4879b79c --- /dev/null +++ b/addons/l10n_cl/views/res_country_view.xml @@ -0,0 +1,29 @@ + + + + + res.country.form + res.country + + + + + + + + + + + + res.country.tree + res.country + + + + + + + + + + \ No newline at end of file diff --git a/addons/l10n_cl/views/res_partner.xml b/addons/l10n_cl/views/res_partner.xml new file mode 100644 index 00000000..18fb48af --- /dev/null +++ b/addons/l10n_cl/views/res_partner.xml @@ -0,0 +1,24 @@ + + + + + res.partner.placeholders.l10n_cl.form + + res.partner + + + Datos adic. dirección y Ciudad + + + {'placeholder': 'Comuna'} + + + Región + + + + + + + + -- cgit v1.2.3