From bb9a56d9d03b32db1688aeda6abad8ddd2ed8111 Mon Sep 17 00:00:00 2001 From: nvi-openerp Date: Wed, 3 Nov 2010 13:37:28 +0100 Subject: [PATCH] [ADD] Added Costa Rica accounting bzr revid: nicolas.vanhoren@openerp.com-20101103123728-v5w9snxtquoa79h0 --- addons/l10n_cr/__init__.py | 34 + addons/l10n_cr/__openerp__.py | 68 + .../l10n_cr/data/account_account_template.xml | 3653 +++++++++++++++++ addons/l10n_cr/data/account_account_type.xml | 97 + .../l10n_cr/data/account_chart_template.xml | 33 + .../data/account_tax_code_template.xml | 48 + addons/l10n_cr/data/account_tax_template.xml | 67 + addons/l10n_cr/l10n_cr_base_data.xml | 229 ++ addons/l10n_cr/l10n_wizard.xml | 11 + addons/l10n_pl/__openerp__.py | 44 + 10 files changed, 4284 insertions(+) create mode 100644 addons/l10n_cr/__init__.py create mode 100644 addons/l10n_cr/__openerp__.py create mode 100644 addons/l10n_cr/data/account_account_template.xml create mode 100644 addons/l10n_cr/data/account_account_type.xml create mode 100644 addons/l10n_cr/data/account_chart_template.xml create mode 100644 addons/l10n_cr/data/account_tax_code_template.xml create mode 100644 addons/l10n_cr/data/account_tax_template.xml create mode 100644 addons/l10n_cr/l10n_cr_base_data.xml create mode 100644 addons/l10n_cr/l10n_wizard.xml create mode 100644 addons/l10n_pl/__openerp__.py diff --git a/addons/l10n_cr/__init__.py b/addons/l10n_cr/__init__.py new file mode 100644 index 00000000000..c4c6ee3e380 --- /dev/null +++ b/addons/l10n_cr/__init__.py @@ -0,0 +1,34 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# __init__.py +# l10n_cr_account +# First author: Carlos Vásquez (ClearCorp S.A.) +# Copyright (c) 2010-TODAY ClearCorp S.A. (http://clearcorp.co.cr). All rights reserved. +# +# Redistribution and use in source and binary forms, with or without modification, are +# permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright notice, this list of +# conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright notice, this list +# of conditions and the following disclaimer in the documentation and/or other materials +# provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL OR +# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# The views and conclusions contained in the software and documentation are those of the +# authors and should not be interpreted as representing official policies, either expressed +# or implied, of ClearCorp S.A.. +# +############################################################################## + diff --git a/addons/l10n_cr/__openerp__.py b/addons/l10n_cr/__openerp__.py new file mode 100644 index 00000000000..57d088cfcc4 --- /dev/null +++ b/addons/l10n_cr/__openerp__.py @@ -0,0 +1,68 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# __openerp__.py +# l10n_cr_account +# First author: Carlos Vásquez (ClearCorp S.A.) +# Copyright (c) 2010-TODAY ClearCorp S.A. (http://clearcorp.co.cr). All rights reserved. +# +# Redistribution and use in source and binary forms, with or without modification, are +# permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright notice, this list of +# conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright notice, this list +# of conditions and the following disclaimer in the documentation and/or other materials +# provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY ``AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +# FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL OR +# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# The views and conclusions contained in the software and documentation are those of the +# authors and should not be interpreted as representing official policies, either expressed +# or implied, of ClearCorp S.A.. +# +############################################################################## + +{ + 'name': 'Costa Rica - Chart of Accounts', + 'version': '0.1', + 'url': 'http://launchpad.net/openerp-costa-rica', + 'author': 'ClearCorp S.A.', + 'website': 'http://clearcorp.co.cr', + 'category': 'Localisation/Account Charts', + 'description': """Chart of accounts for Costa Rica + Includes: + * account.type + * account.account.template + * account.tax.template + * account.tax.code.template + * account.chart.template + + Everything is in English with Spanish translation. Further translations are welcome, please go to + http://translations.launchpad.net/openerp-costa-rica + """, + 'depends': ['account','account_chart', 'base'], + 'init_xml': [], + 'demo_xml': [], + 'update_xml': [ + 'l10n_cr_base_data.xml', + 'data/account_account_type.xml', + 'data/account_account_template.xml', + 'data/account_tax_code_template.xml', + 'data/account_chart_template.xml', + 'data/account_tax_template.xml', + 'l10n_wizard.xml' + ], + 'license': 'Other OSI approved licence', + 'installable': True, + 'active': False, +} diff --git a/addons/l10n_cr/data/account_account_template.xml b/addons/l10n_cr/data/account_account_template.xml new file mode 100644 index 00000000000..baecb1b51bd --- /dev/null +++ b/addons/l10n_cr/data/account_account_template.xml @@ -0,0 +1,3653 @@ + + + + + + 0-000000 + 0-Plan Contable + 0-CAT + + + + view + + + + 0-100000 + 0-Activo + 0-Ac + + + + view + + + + 0-110000 + 0-Activo circulante + 0-Cir + + + + view + + + + 0-111000 + 0-Activo circulante disponible + 0-Dis + + + + view + + + + 0-111100 + 0-Fondos de caja + 0-CyB + + + + view + + + + 0-111110 + 0-Fondos de caja CRC + 0-FC-CRC + + + + view + + + + 0-111111 + 0-Fondo de caja oficinas centrales CRC + + + + + other + + + + 0-111120 + 0-Fondos de caja USD + 0-FC-USD + + + + view + + + + 0-111121 + 0-Fondo de caja oficinas centrales USD + + + + + other + + + + 0-111200 + 0-Bancos + 0-CyB + + + + view + + + + 0-111210 + 0-Cuentas corrientes CRC + 0-CC-CRC + + + + view + + + + 0-111211 + 0-Cuenta en CRC 1 + + + + + other + + + + 0-111220 + 0-Cuentas corrientes USD + 0-CC-USD + + + + view + + + + 0-111221 + 0-Cuenta en USD 1 + + + + + other + + + + 0-111300 + 0-PayPal + 0-PayPal + + + + view + + + + 0-111301 + 0-Cuenta PayPal 1 + + + + + other + + + + 0-111400 + 0-Fondos en tránsito + 0-FT + + + + view + + + + 0-111401 + 0-Fondos en tránsito en tesorería + 0-Trans. Tes. + + + + other + + + + 0-111402 + 0-Fondos en tránsito en bancos + 0-Trans. Ban. + + + + other + + + + 0-111403 + 0-Fondos en tránsito de PayPal a Bancos + 0-Trans. PayPal + + + + other + + + + 0-111500 + 0-Inversiones a la vista + 0-Inv-Vis + + + + view + + + + 0-111501 + 0-Inversión 1 + + + + + other + + + + 0-112000 + 0-Activo circulante exigible + 0-Exi + + + + view + + + + 0-112001 + 0-Cuentas por cobrar comerciales + 0-CxC-Com + + + + receivable + + + + 0-112002 + 0-Cuentas por cobrar a compañías relacionadas + 0-CxC-Rel + + + + receivable + + + + 0-112003 + 0-Cuentas por cobrar a empleados + 0-CxC-Emp + + + + receivable + + + + 0-112004 + 0-Otras cuentas por cobrar + 0-CxC-Ot + + + + receivable + + + + 0-112005 + 0-Inversiones de corto plazo + 0-Inv-CP + + + + receivable + + + + 0-113000 + 0-Activo circulante realizable + 0-Rea + + + + view + + + + 0-113100 + 0-Inventarios + 0-Inv + + + + view + + + + 0-113101 + 0-Inventario de producto para la venta + 0-Prod + + + + other + + + + 0-113102 + 0-Inventario de consumibles + 0-Cons + + + + other + + + + 0-120000 + 0-Activo fijo + 0-AF + + + + view + + + + 0-121000 + 0-Activo fijo no depreciable + 0-No-Dep + + + + view + + + + 0-121100 + 0-Terrenos + 0-Ter + + + + view + + + + 0-121110 + 0-Valores originales + 0-VO + + + + view + + + + 0-121111 + 0-Terreno 1 + + + + + other + + + + 0-121120 + 0-Revaluaciones + 0-Rev + + + + view + + + + 0-121121 + 0-Terreno 1 + + + + + other + + + + 0-122000 + 0-Activo fijo depreciable + 0-Dep + + + + view + + + + 0-122100 + 0-Edificios + 0-Ed + + + + view + + + + 0-122110 + 0-Edificios – Valores originales + 0-VO + + + + view + + + + 0-122111 + 0-Edificio 1 + + + + + other + + + + 0-122120 + 0-Edificios – Revaluaciones + 0-Rev + + + + view + + + + 0-122121 + 0-Edificio 1 + + + + + other + + + + 0-122200 + 0-Mejoras a edificios + 0-Mej-Ed + + + + view + + + + 0-122210 + 0-Mejoras a edificios – Valores originales + 0-VO + + + + view + + + + 0-122211 + 0-Edificio 1 + + + + + other + + + + 0-122220 + 0-Mejoras a edificios – Revaluaciones + 0-Rev + + + + view + + + + 0-122221 + 0-Edificio 1 + + + + + other + + + + 0-122300 + 0-Activos depreciables móviles + 0-Mov + + + + view + + + + 0-122301 + 0-Maquinaria y equipo de edificios + 0-MyE-Ed + + + + other + + + + 0-122302 + 0-Herramientas mayores + 0-HM + + + + other + + + + 0-122303 + 0-Moibliario y equipo de oficina + 0-Mob + + + + other + + + + 0-122304 + 0-Equipo de cómputo + 0-Comp + + + + other + + + + 0-122305 + 0-Vehículos + 0-Veh + + + + other + + + + 0-130000 + 0-Depreciaciones acumuladas sobre activo fijo depreciable + 0-Dep-Ac + + + + view + + + + 0-131000 + 0-Dep. ac. de edificios + 0-Ed + + + + view + + + + 0-131100 + 0-Dep. ac. de edificios – Valores originales + 0-VO + + + + view + + + + 0-131101 + 0-Edificio 1 + + + + + other + + + + 0-131200 + 0-Dep. ac. de edificios – Revaluaciones + 0-Rev + + + + view + + + + 0-131201 + 0-Edificio 1 + + + + + other + + + + 0-132000 + 0-Dep. ac. de mejoras a edificios + 0-Mej-Ed + + + + view + + + + 0-132100 + 0-Dep. ac. de mejoras a edificios – Valores originales + 0-VO + + + + view + + + + 0-132101 + 0-Edificio 1 + + + + + other + + + + 0-132200 + 0-Dep. ac. de mejoras a edificios – Revaluaciones + 0-Rev + + + + view + + + + 0-132201 + 0-Edificio 1 + + + + + other + + + + 0-133000 + 0-Dep. ac. de activos depreciables móviles + 0-Mej-Ed + + + + view + + + + 0-133001 + 0-Dep. ac. de maquinaria y equipo de edificios + 0-MyE-Ed + + + + other + + + + 0-133002 + 0-Dep. ac. de herramientas mayores + 0-HM + + + + other + + + + 0-133003 + 0-Dep. ac. de mobiliario y equipo de oficina + 0-Mob + + + + other + + + + 0-133004 + 0-Dep. ac. de equipo de cómputo + 0-Comp + + + + other + + + + 0-133005 + 0-Dep. ac. de vehículos + 0-Veh + + + + other + + + + 0-140000 + 0-Otros activos + 0-Ot + + + + view + + + + 0-141000 + 0-Gastos pagados por anticipado + 0-Gas-Ant + + + + view + + + + 0-141001 + 0-Pólizas de seguros prepagadas + 0-Pol + + + + receivable + + + + 0-142000 + 0-Depósitos de garantía + 0-Dep + + + + view + + + + 0-142001 + 0-Depósitos sobre derechos telefónicos + 0-Tel + + + + receivable + + + + 0-142002 + 0-Depósitos sobre conexiones de Internet + 0-Int + + + + receivable + + + + 0-142003 + 0-Depósitos sobre locales en alquiler + 0-Alq. + + + + receivable + + + + 0-200000 + 0-Pasivo + 0-Pa + + + + view + + + + 0-210000 + 0-Pasivo circulante + 0-Cir + + + + view + + + + 0-211000 + 0-Cuentas por pagar + 0-CxP + + + + view + + + + 0-211001 + 0-Cuentas por pagar a proveedores + 0-Prove + + + + payable + + + + 0-211002 + 0-Cuentas por pagar a empleados + 0-Emp + + + + payable + + + + 0-211003 + 0-Cuentas por pagar de provisiones + 0-Provi + + + + payable + + + + 0-211004 + 0-Cuentas por pagar a compañías relacionadas + 0-Rel + + + + payable + + + + 0-212000 + 0-Impuestos + 0-CxP + + + + view + + + + 0-212100 + 0-Impuesto de ventas + 0-IV + + + + view + + + + 0-212101 + 0-Impuesto de ventas por pagar + 0-IVxP + + + + payable + + + + 0-212102 + 0-Impuesto de ventas pagado + 0-IVPag + + + + payable + + + + 0-212200 + 0-Impuesto de renta + 0-IR + + + + view + + + + 0-212201 + 0-Impuesto de renta por pagar + 0-IRxP + + + + payable + + + + 0-212202 + 0-Adelantos de impuesto de renta + 0-AdIR + + + + payable + + + + 0-212203 + 0-Retenciones de impuesto de renta + 0-RetIR + + + + payable + + + + 0-300000 + 0-Patrimonio + 0-Pa + + + + view + + + + 0-310000 + 0-Capital social + 0-CS + + + + view + + + + 0-310001 + 0-Socio 1 + + + + + other + + + + 0-320000 + 0-Reserva legal + 0-RL + + + + view + + + + 0-320001 + 0-Reserva legal + 0-RL + + + + other + + + + 0-330000 + 0-Otras reservas + 0-OR + + + + view + + + + 0-330001 + 0-Reserva para mejoras + 0-Mej + + + + other + + + + 0-330002 + 0-Reserva para proyectos + 0-Pro + + + + other + + + + 0-340000 + 0-Aportes de capital + 0-AC + + + + view + + + + 0-340001 + 0-Socio 1 + + + + + other + + + + 0-350000 + 0-Cuentas de superávit + 0-Sup + + + + view + + + + 0-350001 + 0-Superávit de capital + 0-Cap + + + + other + + + + 0-350002 + 0-Superavit por revaluación de activos + 0-Rev + + + + other + + + + 0-350003 + 0-Superavit ganado + 0-Gan + + + + other + + + + 0-360000 + 0-Utilidad o pérdida acumulada de periodos anteriores + 0-Ut-Ac + + + + view + + + + 0-360001 + 0-Periodo 1 + + + + + other + + + + 0-370000 + 0-Utilidad o pérdida del período actual + 0-Ut-Per + + + + view + + + + 0-370001 + 0-Utilidad o pérdida del período actual + 0-Ut-Per + + + + other + + + + 0-380000 + 0-Balance inicial + 0-Bal-Ini + + + + view + + + + 0-380001 + 0-Balance inicial + 0-Bal-Ini + + + + other + + + + 0-400000 + 0-Ingresos + 0-In + + + + view + + + + 0-410000 + 0-Ingresos por ventas + 0-Ventas + + + + view + + + + 0-410001 + 0-Categoría 1 + + + + + other + + + + 0-420000 + 0-Ingresos por administración + 0-CCorp + + + + view + + + + 0-420001 + 0-Cuota por administración + 0-CA + + + + other + + + + 0-430000 + 0-Ingresos financieros + 0-Fi + + + + view + + + + 0-430001 + 0-Intereses ganados sobre cuentas corrientes + 0-Int + + + + other + + + + 0-440000 + 0-Otros ingresos + 0-OI + + + + view + + + + 0-440001 + 0-Ajustes + 0-Aj + + + + other + + + + 0-440002 + 0-Donaciones + 0-Don + + + + other + + + + 0-450000 + 0-Ingresos no gravables + 0-NG + + + + view + + + + 0-450001 + 0-Diferencial cambiario + 0-Dif + + + + other + + + + 0-500000 + 0-Gastos + 0-Ga + + + + view + + + + 0-510000 + 0-Gastos principales + 0-Gprin + + + + view + + + + 0-511000 + 0-Gastos operativos + 0-GO + + + + view + + + + 0-511100 + 0-Gastos de personal + 0-Gpers + + + + view + + + + 0-511110 + 0-Salarios y deducciones + 0-GO + + + + view + + + + 0-511111 + 0-Salarios + 0-Sal + + + + other + + + + 0-511112 + 0-Extras + 0-Ext + + + + other + + + + 0-511113 + 0-Bonificaciones + 0-Bon + + + + other + + + + 0-511114 + 0-Comisiones + 0-Com + + + + other + + + + 0-511115 + 0-Cargas patronales + 0-Cpat + + + + other + + + + 0-511116 + 0-Aguinaldo + 0-Ag + + + + other + + + + 0-511117 + 0-Preaviso + 0-Pre + + + + other + + + + 0-511118 + 0-Cesantía + 0-Ces + + + + other + + + + 0-511120 + 0-Viáticos + 0-Via + + + + view + + + + 0-511121 + 0-Transporte + 0-Trans + + + + other + + + + 0-511122 + 0-Alimentación + 0-Alim + + + + other + + + + 0-511123 + 0-Hospedaje + 0-Hosp + + + + other + + + + 0-511200 + 0-Servicios profesionales + 0-Serv-Prof + + + + view + + + + 0-511201 + 0-Categoría 1 + + + + + other + + + + 0-511300 + 0-Costo de venta de producto + 0-CVenProd + + + + view + + + + 0-511301 + 0-Costo de producto + 0-CProd + + + + other + + + + 0-511302 + 0-Costo de materia prima + 0-CMatPrim + + + + other + + + + 0-511303 + 0-Costo de producción + 0-CFab + + + + other + + + + 0-511304 + 0-Costo de almacenamiento + 0-CAlm + + + + other + + + + 0-511305 + 0-Costo de distribución + 0-CDist + + + + other + + + + 0-511400 + 0-Gastos de mercadeo + 0-GMerc + + + + view + + + + 0-511401 + 0-Diseño de imagen + 0-Dis + + + + other + + + + 0-511402 + 0-Campañas publicitarias + 0-Pub + + + + other + + + + 0-512000 + 0-Gastos administrativos + 0-GAdm + + + + view + + + + 0-512100 + 0-Cuota por administración + 0-CuAdm + + + + view + + + + 0-512101 + 0-Compañía administradora 1 + + + + + other + + + + 0-512200 + 0-Alquiler + 0-Alq + + + + view + + + + 0-512201 + 0-Oficina 1 + + + + + other + + + + 0-512300 + 0-Servicios públicos + 0-ServPub + + + + view + + + + 0-512310 + 0-Agua + 0-Ag + + + + view + + + + 0-512311 + 0-Medidor 1 + + + + + other + + + + 0-512320 + 0-Luz + 0-Luz + + + + view + + + + 0-512321 + 0-Medidor 1 + + + + + other + + + + 0-512330 + 0-Teléfono + 0-Tel + + + + view + + + + 0-512331 + 0-Teléfono 1 + + + + + other + + + + 0-512340 + 0-Internet + 0-Int + + + + view + + + + 0-512341 + 0-Contrato 1 + + + + + other + + + + 0-512400 + 0-Suministros de oficina + 0-SumOf + + + + view + + + + 0-512401 + 0-Departamento 1 + + + + + other + + + + 0-512500 + 0-Equipo de cómputo y comunicación + 0-CompCom + + + + view + + + + 0-512501 + 0-Departamento 1 + + + + + other + + + + 0-520000 + 0-Otros gastos + 0-OtG + + + + view + + + + 0-520001 + 0-Ajustes + 0-Aj + + + + other + + + + 0-520002 + 0-Gastos Financieros + 0-GF + + + + other + + + + 0-520003 + 0-Depreciación de activo fijo + 0-Dep.AF + + + + other + + + + 0-520004 + 0-Perdida por robo + 0-Robo + + + + other + + + + 0-520005 + 0-Donaciones deducibles + 0-Don + + + + other + + + + 0-530000 + 0-Gastos no deducibles + 0-GND + + + + view + + + + 0-530001 + 0-Donaciones no deducibles + 0-Don + + + + other + + + + 0-530002 + 0-Gastos de presidencia + 0-GPres + + + + other + + + + 0-530003 + 0-Multas + 0-Mul + + + + other + + + + 0-530004 + 0-Diferencial cambiario + 0-Dif.Cam + + + + other + + + + x000000 + xPlan Contable + xCAT + + + + view + + + + x100000 + xActivo + xAc + + + + view + + + + x110000 + xActivo circulante + xCir + + + + view + + + + x111000 + xActivo circulante disponible + xDis + + + + view + + + + x111100 + xFondos de caja + xCyB + + + + view + + + + x111110 + xFondos de caja CRC + xFC-CRC + + + + view + + + + x111111 + xFondo de caja oficinas centrales CRC + + + + + other + + + + x111120 + xFondos de caja USD + xFC-USD + + + + view + + + + x111121 + xFondo de caja oficinas centrales USD + + + + + other + + + + x111200 + xBancos + xCyB + + + + view + + + + + + + + x111300 + xPayPal + xPayPal + + + + view + + + + x111301 + xCuenta PayPal 1 + + + + + other + + + + x111400 + xFondos en tránsito + xFT + + + + view + + + + x111401 + xFondos en tránsito en tesorería + xTrans. Tes. + + + + other + + + + x111402 + xFondos en tránsito en bancos + xTrans. Ban. + + + + other + + + + x111403 + xFondos en tránsito de PayPal a Bancos + xTrans. PayPal + + + + other + + + + x111500 + xInversiones a la vista + xInv-Vis + + + + view + + + + x111501 + xInversión 1 + + + + + other + + + + x112000 + xActivo circulante exigible + xExi + + + + view + + + + x112001 + xCuentas por cobrar comerciales + xCxC-Com + + + + receivable + + + + x112002 + xCuentas por cobrar a compañías relacionadas + xCxC-Rel + + + + receivable + + + + x112003 + xCuentas por cobrar a empleados + xCxC-Emp + + + + receivable + + + + x112004 + xOtras cuentas por cobrar + xCxC-Ot + + + + receivable + + + + x112005 + xInversiones de corto plazo + xInv-CP + + + + receivable + + + + x113000 + xActivo circulante realizable + xRea + + + + view + + + + x113100 + xInventarios + xInv + + + + view + + + + x113101 + xInventario de producto para la venta + xProd + + + + other + + + + x113102 + xInventario de consumibles + xCons + + + + other + + + + x120000 + xActivo fijo + xAF + + + + view + + + + x121000 + xActivo fijo no depreciable + xNo-Dep + + + + view + + + + x121100 + xTerrenos + xTer + + + + view + + + + x121110 + xValores originales + xVO + + + + view + + + + x121111 + xTerreno 1 + + + + + other + + + + x121120 + xRevaluaciones + xRev + + + + view + + + + x121121 + xTerreno 1 + + + + + other + + + + x122000 + xActivo fijo depreciable + xDep + + + + view + + + + x122100 + xEdificios + xEd + + + + view + + + + x122110 + xEdificios – Valores originales + xVO + + + + view + + + + x122111 + xEdificio 1 + + + + + other + + + + x122120 + xEdificios – Revaluaciones + xRev + + + + view + + + + x122121 + xEdificio 1 + + + + + other + + + + x122200 + xMejoras a edificios + xMej-Ed + + + + view + + + + x122210 + xMejoras a edificios – Valores originales + xVO + + + + view + + + + x122211 + xEdificio 1 + + + + + other + + + + x122220 + xMejoras a edificios – Revaluaciones + xRev + + + + view + + + + x122221 + xEdificio 1 + + + + + other + + + + x122300 + xActivos depreciables móviles + xMov + + + + view + + + + x122301 + xMaquinaria y equipo de edificios + xMyE-Ed + + + + other + + + + x122302 + xHerramientas mayores + xHM + + + + other + + + + x122303 + xMoibliario y equipo de oficina + xMob + + + + other + + + + x122304 + xEquipo de cómputo + xComp + + + + other + + + + x122305 + xVehículos + xVeh + + + + other + + + + x130000 + xDepreciaciones acumuladas sobre activo fijo depreciable + xDep-Ac + + + + view + + + + x131000 + xDep. ac. de edificios + xEd + + + + view + + + + x131100 + xDep. ac. de edificios – Valores originales + xVO + + + + view + + + + x131101 + xEdificio 1 + + + + + other + + + + x131200 + xDep. ac. de edificios – Revaluaciones + xRev + + + + view + + + + x131201 + xEdificio 1 + + + + + other + + + + x132000 + xDep. ac. de mejoras a edificios + xMej-Ed + + + + view + + + + x132100 + xDep. ac. de mejoras a edificios – Valores originales + xVO + + + + view + + + + x132101 + xEdificio 1 + + + + + other + + + + x132200 + xDep. ac. de mejoras a edificios – Revaluaciones + xRev + + + + view + + + + x132201 + xEdificio 1 + + + + + other + + + + x133000 + xDep. ac. de activos depreciables móviles + xMej-Ed + + + + view + + + + x133001 + xDep. ac. de maquinaria y equipo de edificios + xMyE-Ed + + + + other + + + + x133002 + xDep. ac. de herramientas mayores + xHM + + + + other + + + + x133003 + xDep. ac. de mobiliario y equipo de oficina + xMob + + + + other + + + + x133004 + xDep. ac. de equipo de cómputo + xComp + + + + other + + + + x133005 + xDep. ac. de vehículos + xVeh + + + + other + + + + x140000 + xOtros activos + xOt + + + + view + + + + x141000 + xGastos pagados por anticipado + xGas-Ant + + + + view + + + + x141001 + xPólizas de seguros prepagadas + xPol + + + + receivable + + + + x142000 + xDepósitos de garantía + xDep + + + + view + + + + x142001 + xDepósitos sobre derechos telefónicos + xTel + + + + receivable + + + + x142002 + xDepósitos sobre conexiones de Internet + xInt + + + + receivable + + + + x142003 + xDepósitos sobre locales en alquiler + xAlq. + + + + receivable + + + + x200000 + xPasivo + xPa + + + + view + + + + x210000 + xPasivo circulante + xCir + + + + view + + + + x211000 + xCuentas por pagar + xCxP + + + + view + + + + x211001 + xCuentas por pagar a proveedores + xProve + + + + payable + + + + x211002 + xCuentas por pagar a empleados + xEmp + + + + payable + + + + x211003 + xCuentas por pagar de provisiones + xProvi + + + + payable + + + + x211004 + xCuentas por pagar a compañías relacionadas + xRel + + + + payable + + + + x212000 + xImpuestos + xCxP + + + + view + + + + x212100 + xImpuesto de ventas + xIV + + + + view + + + + x212101 + xImpuesto de ventas por pagar + xIVxP + + + + payable + + + + x212102 + xImpuesto de ventas pagado + xIVPag + + + + payable + + + + x212200 + xImpuesto de renta + xIR + + + + view + + + + x212201 + xImpuesto de renta por pagar + xIRxP + + + + payable + + + + x212202 + xAdelantos de impuesto de renta + xAdIR + + + + payable + + + + x212203 + xRetenciones de impuesto de renta + xRetIR + + + + payable + + + + x300000 + xPatrimonio + xPa + + + + view + + + + x310000 + xCapital social + xCS + + + + view + + + + x310001 + xSocio 1 + + + + + other + + + + x320000 + xReserva legal + xRL + + + + view + + + + x320001 + xReserva legal + xRL + + + + other + + + + x330000 + xOtras reservas + xOR + + + + view + + + + x330001 + xReserva para mejoras + xMej + + + + other + + + + x330002 + xReserva para proyectos + xPro + + + + other + + + + x340000 + xAportes de capital + xAC + + + + view + + + + x340001 + xSocio 1 + + + + + other + + + + x350000 + xCuentas de superávit + xSup + + + + view + + + + x350001 + xSuperávit de capital + xCap + + + + other + + + + x350002 + xSuperavit por revaluación de activos + xRev + + + + other + + + + x350003 + xSuperavit ganado + xGan + + + + other + + + + x360000 + xUtilidad o pérdida acumulada de periodos anteriores + xUt-Ac + + + + view + + + + x360001 + xPeriodo 1 + + + + + other + + + + x370000 + xUtilidad o pérdida del período actual + xUt-Per + + + + view + + + + x370001 + xUtilidad o pérdida del período actual + xUt-Per + + + + other + + + + x380000 + xBalance inicial + xBal-Ini + + + + view + + + + x380001 + xBalance inicial + xBal-Ini + + + + other + + + + x400000 + xIngresos + xIn + + + + view + + + + x410000 + xIngresos por ventas + xVentas + + + + view + + + + x410001 + xCategoría 1 + + + + + other + + + + x420000 + xIngresos por administración + xCCorp + + + + view + + + + x420001 + xCuota por administración + xCA + + + + other + + + + x430000 + xIngresos financieros + xFi + + + + view + + + + x430001 + xIntereses ganados sobre cuentas corrientes + xInt + + + + other + + + + x440000 + xOtros ingresos + xOI + + + + view + + + + x440001 + xAjustes + xAj + + + + other + + + + x440002 + xDonaciones + xDon + + + + other + + + + x450000 + xIngresos no gravables + xNG + + + + view + + + + x450001 + xDiferencial cambiario + xDif + + + + other + + + + x500000 + xGastos + xGa + + + + view + + + + x510000 + xGastos principales + xGprin + + + + view + + + + x511000 + xGastos operativos + xGO + + + + view + + + + x511100 + xGastos de personal + xGpers + + + + view + + + + x511110 + xSalarios y deducciones + xGO + + + + view + + + + x511111 + xSalarios + xSal + + + + other + + + + x511112 + xExtras + xExt + + + + other + + + + x511113 + xBonificaciones + xBon + + + + other + + + + x511114 + xComisiones + xCom + + + + other + + + + x511115 + xCargas patronales + xCpat + + + + other + + + + x511116 + xAguinaldo + xAg + + + + other + + + + x511117 + xPreaviso + xPre + + + + other + + + + x511118 + xCesantía + xCes + + + + other + + + + x511120 + xViáticos + xVia + + + + view + + + + x511121 + xTransporte + xTrans + + + + other + + + + x511122 + xAlimentación + xAlim + + + + other + + + + x511123 + xHospedaje + xHosp + + + + other + + + + x511200 + xServicios profesionales + xServ-Prof + + + + view + + + + x511201 + xCategoría 1 + + + + + other + + + + x511300 + xCosto de venta de producto + xCVenProd + + + + view + + + + x511301 + xCosto de producto + xCProd + + + + other + + + + x511302 + xCosto de materia prima + xCMatPrim + + + + other + + + + x511303 + xCosto de producción + xCFab + + + + other + + + + x511304 + xCosto de almacenamiento + xCAlm + + + + other + + + + x511305 + xCosto de distribución + xCDist + + + + other + + + + x511400 + xGastos de mercadeo + xGMerc + + + + view + + + + x511401 + xDiseño de imagen + xDis + + + + other + + + + x511402 + xCampañas publicitarias + xPub + + + + other + + + + x512000 + xGastos administrativos + xGAdm + + + + view + + + + x512100 + xCuota por administración + xCuAdm + + + + view + + + + x512101 + xCompañía administradora 1 + + + + + other + + + + x512200 + xAlquiler + xAlq + + + + view + + + + x512201 + xOficina 1 + + + + + other + + + + x512300 + xServicios públicos + xServPub + + + + view + + + + x512310 + xAgua + xAg + + + + view + + + + x512311 + xMedidor 1 + + + + + other + + + + x512320 + xLuz + xLuz + + + + view + + + + x512321 + xMedidor 1 + + + + + other + + + + x512330 + xTeléfono + xTel + + + + view + + + + x512331 + xTeléfono 1 + + + + + other + + + + x512340 + xInternet + xInt + + + + view + + + + x512341 + xContrato 1 + + + + + other + + + + x512400 + xSuministros de oficina + xSumOf + + + + view + + + + x512401 + xDepartamento 1 + + + + + other + + + + x512500 + xEquipo de cómputo y comunicación + xCompCom + + + + view + + + + x512501 + xDepartamento 1 + + + + + other + + + + x520000 + xOtros gastos + xOtG + + + + view + + + + x520001 + xAjustes + xAj + + + + other + + + + x520002 + xGastos Financieros + xGF + + + + other + + + + x520003 + xDepreciación de activo fijo + xDep.AF + + + + other + + + + x520004 + xPerdida por robo + xRobo + + + + other + + + + x520005 + xDonaciones deducibles + xDon + + + + other + + + + x530000 + xGastos no deducibles + xGND + + + + view + + + + x530001 + xDonaciones no deducibles + xDon + + + + other + + + + x530002 + xGastos de presidencia + xGPres + + + + other + + + + x530003 + xMultas + xMul + + + + other + + + + x530004 + xDiferencial cambiario + xDif.Cam + + + + other + + + + diff --git a/addons/l10n_cr/data/account_account_type.xml b/addons/l10n_cr/data/account_account_type.xml new file mode 100644 index 00000000000..ab4370761d5 --- /dev/null +++ b/addons/l10n_cr/data/account_account_type.xml @@ -0,0 +1,97 @@ + + + + + + A + Asset + 10 + + + balance + + + AV + Asset valuation + 13 + + + balance + + + C + Cash + 11 + + + balance + + + Eq + Equity + 30 + + + detail + + + Ex + Expense + 50 + + + none + + + I + Income + 40 + + + none + + + Pas + Passive + 20 + + + balance + + + Pay + Payable + 21 + + + unreconciled + + + R + Receivable + 12 + + + unreconciled + + + T + Tax + 22 + + + unreconciled + + + V + View + 0 + + + none + + + diff --git a/addons/l10n_cr/data/account_chart_template.xml b/addons/l10n_cr/data/account_chart_template.xml new file mode 100644 index 00000000000..03a3a486077 --- /dev/null +++ b/addons/l10n_cr/data/account_chart_template.xml @@ -0,0 +1,33 @@ + + + + + + Costa Rica - Company 0 + + + + + + + + + + + + Costa Rica - Company 1 + + + + + + + + + + + + diff --git a/addons/l10n_cr/data/account_tax_code_template.xml b/addons/l10n_cr/data/account_tax_code_template.xml new file mode 100644 index 00000000000..788e70a0e8c --- /dev/null +++ b/addons/l10n_cr/data/account_tax_code_template.xml @@ -0,0 +1,48 @@ + + + + + + CR + Costa Rica + Costa Rica + + + + + Tax + Taxes + Costa Rica Taxes + + + + + + Prin + Principal + Costa Rica Tax Principal + + + + + + IVTax + IV Tax + Sales Tax – Tax + + + + + + IVPrin + IV Principal + Sales Tax – Principal + + + + + + diff --git a/addons/l10n_cr/data/account_tax_template.xml b/addons/l10n_cr/data/account_tax_template.xml new file mode 100644 index 00000000000..8ac4288efa8 --- /dev/null +++ b/addons/l10n_cr/data/account_tax_template.xml @@ -0,0 +1,67 @@ + + + + + + 0 Sales Tax + IV + 10 + 13 + percent + vat + all + true + + + + + + + + + + + + + + + + x Sales Tax + IV + 10 + 13 + percent + vat + all + true + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/l10n_cr/l10n_cr_base_data.xml b/addons/l10n_cr/l10n_cr_base_data.xml new file mode 100644 index 00000000000..4b6939395fb --- /dev/null +++ b/addons/l10n_cr/l10n_cr_base_data.xml @@ -0,0 +1,229 @@ + + + + + + + SJ + San José + + + + A + Alajuela + + + + H + Heredia + + + + C + Cartago + + + + P + Puntarenas + + + + G + Guanacaste + + + + L + Limón + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CRC + CRC + 0.01 + 4 + ¢ + + + 1.0 + + + + + 571.81 + + + + + 1.4324 + + + + + + + Corporation + Corp. + partner + + + Limited Company + Ltd. + partner + + + Mister + Sr. + contact + + + Miss + Mss. + contact + + + Madam + Ms. + contact + + + Sociedad Anónima Laboral + S.A.L. + partner + + + Asociation + Asoc. + partner + + + Government + Gov. + partner + + + Educational Institution + Edu. + partner + + + Professor + Prof. + partner + + + Independant Professional + Ind. Prof. + partner + + + Doctor + Dr. + contact + + + Doctora + Dra. + contact + + + Msc. + Msc. + contact + + + MBA + MBA + contact + + + Licenciado + Lic. + contact + + + Licenciada + Licda. + contact + + + Ingeniero/a + Ing. + contact + + + diff --git a/addons/l10n_cr/l10n_wizard.xml b/addons/l10n_cr/l10n_wizard.xml new file mode 100644 index 00000000000..0e691260425 --- /dev/null +++ b/addons/l10n_cr/l10n_wizard.xml @@ -0,0 +1,11 @@ + + + + + + + onskip + + + + diff --git a/addons/l10n_pl/__openerp__.py b/addons/l10n_pl/__openerp__.py new file mode 100644 index 00000000000..201f7c8542b --- /dev/null +++ b/addons/l10n_pl/__openerp__.py @@ -0,0 +1,44 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2009 Grzegorz Grzelak grzegorz.grzelak@cirrus.pl +# All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## +{ + "name" : "Poland - Chart of Accounts", + "version" : "1.0", + "author" : "Grzegorz Grzelak (Cirrus)", + "website": "http://www.cirrus.pl", + "category" : "Localisation/Account Charts", + "description": """ + This is the module to manage the accounting chart and taxes for Poland in Open ERP. + + To jest moduł do tworzenia wzorcowego planu kont i podstawowych ustawień do podatków + VAT 0%, 7% i 22%. Moduł ustawia też konta do kupna i sprzedaży towarów zakładając, + że wszystkie towary są w obrocie hurtowym. + """, + "depends" : ["account", "base_iban", "base_vat", "account_chart"], + "demo_xml" : [], + "update_xml" : ['account_tax_code.xml',"account_chart.xml", + 'account_tax.xml','l10n_chart_pl_wizard.xml'], + "active": False, + "installable": True +} +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +