[ADD] l10n_do: Chart of Account for Dominican Republic

Fixes #2257
This commit is contained in:
eneldoserrata 2014-09-08 12:21:46 -04:00 committed by Martin Trigaux
parent 4d0f6f518a
commit 41cf52c917
15 changed files with 878 additions and 0 deletions

22
addons/l10n_do/__init__.py Executable file
View File

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# #############################################################################
#
# OpenERP, Open Source Management Solution
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

72
addons/l10n_do/__openerp__.py Executable file
View File

@ -0,0 +1,72 @@
# -*- coding: utf-8 -*-
# #############################################################################
#
# First author: Jose Ernesto Mendez <tecnologia@obsdr.com> (Open Business Solutions SRL.)
# Copyright (c) 2012 -TODAY Open Business Solutions, SRL. (http://obsdr.com). All rights reserved.
#
# This is a fork to upgrade to odoo 8.0
# by Marcos Organizador de Negocios - Eneldo Serrata - www.marcos.org.do
#
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs.
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company like Marcos Organizador de Negocios.
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
##############################################################################
{
'name': 'Dominican Republic - Accounting',
'version': '1.0',
'category': 'Localization/Account Charts',
'description': """
This is the base module to manage the accounting chart for Dominican Republic.
==============================================================================
* Chart of Accounts.
* The Tax Code Chart for Domincan Republic
* The main taxes used in Domincan Republic
* Fiscal position for local """,
'author': 'Eneldo Serrata - Marcos Organizador de Negocios, SRL.',
'website': 'http://marcos.do',
'depends': ['account', 'base_iban'],
'data': [
# basic accounting data
'data/ir_sequence_type.xml',
'data/ir_sequence.xml',
'data/account_journal.xml',
'data/account.account.type.csv',
'data/account.account.template.csv',
'data/account.tax.code.template.csv',
'data/account_chart_template.xml',
'data/account.tax.template.csv',
'data/l10n_do_base_data.xml',
# Adds fiscal position
'data/account.fiscal.position.template.csv',
'data/account.fiscal.position.tax.template.csv',
# configuration wizard, views, reports...
'data/l10n_do_wizard.xml'
],
'test': [],
'demo': [],
'installable': True,
'auto_install': False,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,261 @@
id,code,name,parent_id/id,type,user_type/id,reconcile
default_chart_a_account_1,0,Your Company,,view,default_chart_a_type_1,false
default_chart_a_account_2,1,Activos,default_chart_a_account_1,view,default_chart_a_type_12,false
default_chart_a_account_58,2,Pasivos,default_chart_a_account_1,view,default_chart_a_type_13,false
default_chart_a_account_73,3,Capital,default_chart_a_account_1,view,default_chart_a_type_1,false
default_chart_a_account_85,4,Ingresos,default_chart_a_account_1,view,default_chart_a_type_10,false
default_chart_a_account_95,5,Costos,default_chart_a_account_1,view,default_chart_a_type_11,false
default_chart_a_account_105,6,Gastos,default_chart_a_account_1,view,default_chart_a_type_11,false
default_chart_a_account_141,7,Cuentas de Liquidacion y Resumen,default_chart_a_account_1,view,default_chart_a_type_1,false
default_chart_a_account_3,11,Activos Corrientes,default_chart_a_account_2,view,default_chart_a_type_12,false
default_chart_a_account_27,12,Activos Fijos,default_chart_a_account_2,view,default_chart_a_type_12,false
default_chart_a_account_37,13,Activos Diferidos,default_chart_a_account_2,view,default_chart_a_type_12,false
default_chart_a_account_41,14,Inversiones,default_chart_a_account_2,view,default_chart_a_type_12,false
default_chart_a_account_45,15,Otros Activos,default_chart_a_account_2,view,default_chart_a_type_12,false
default_chart_a_account_52,16,DGII,default_chart_a_account_2,view,default_chart_a_type_12,false
default_chart_a_account_59,21,Pasivos Corrientes,default_chart_a_account_58,view,default_chart_a_type_13,false
default_chart_a_account_74,31,Capital,default_chart_a_account_73,view,default_chart_a_type_1,false
default_chart_a_account_78,32,Reservas,default_chart_a_account_73,view,default_chart_a_type_1,false
default_chart_a_account_81,33,Superavit,default_chart_a_account_73,view,default_chart_a_type_1,false
default_chart_a_account_86,41,Ventas,default_chart_a_account_85,view,default_chart_a_type_10,false
default_chart_a_account_88,42,Otros Ingresos,default_chart_a_account_85,view,default_chart_a_type_10,false
default_chart_a_account_96,51,Costos de Produccion,default_chart_a_account_95,view,default_chart_a_type_11,false
default_chart_a_account_100,52,Costos de Ventas,default_chart_a_account_95,view,default_chart_a_type_11,false
default_chart_a_account_106,61,Gastos Operacionales,default_chart_a_account_105,view,default_chart_a_type_11,false
default_chart_a_account_142,71,"Retiro de Propiedad, Planta y Equipos",default_chart_a_account_141,view,default_chart_a_type_1,false
default_chart_a_account_4,111,Efectivo en Caja,default_chart_a_account_3,view,default_chart_a_type_12,false
default_chart_a_account_7,112,Efectivo en Bancos,default_chart_a_account_3,view,default_chart_a_type_12,false
default_chart_a_account_12,113,Cuentas por Cobrar,default_chart_a_account_3,view,default_chart_a_type_12,false
default_chart_a_account_16,114,Inventarios,default_chart_a_account_3,view,default_chart_a_type_12,false
default_chart_a_account_21,115,Gastos Pagados por Adelantados,default_chart_a_account_3,view,default_chart_a_type_12,false
default_chart_a_account_60,211,Cuentas por Pagar,default_chart_a_account_59,view,default_chart_a_type_13,false
default_chart_a_account_65,212,Retenciones por Pagar,default_chart_a_account_59,view,default_chart_a_type_13,false
default_chart_a_account_706,611,Gastos Generales y Administrativos,default_chart_a_account_106,view,default_chart_a_type_11,false
default_chart_a_account_506,6111,Gastos Funcionarios y Empleados,default_chart_a_account_706,view,default_chart_a_type_11,false
default_chart_a_account_527,6112,Otros Gastos de Administración,default_chart_a_account_706,view,default_chart_a_type_11,false
default_chart_a_account_530,6113,Depreciación y Amortizaciones,default_chart_a_account_706,view,default_chart_a_type_11,false
default_chart_a_account_541,6114,Alquileres,default_chart_a_account_706,view,default_chart_a_type_11,false
default_chart_a_account_546,6115,Honorarios por Servicios,default_chart_a_account_706,view,default_chart_a_type_11,false
default_chart_a_account_585,6116,Gastos No Deducible ISR,default_chart_a_account_706,view,default_chart_a_type_11,false
default_chart_a_account_593,6117,Gastos Financieros,default_chart_a_account_706,view,default_chart_a_type_11,false
default_chart_a_account_599,6118,Impuestos sobre la Renta,default_chart_a_account_706,view,default_chart_a_type_11,false
default_chart_a_account_528,61121,"Agua, Luz y Basura",default_chart_a_account_527,other,default_chart_a_type_9,false
default_chart_a_account_529,61122,Telecomunicaciones,default_chart_a_account_527,other,default_chart_a_type_9,false
default_chart_a_account_721,61123,Otros Gastos Administrativos,default_chart_a_account_527,other,default_chart_a_type_9,false
default_chart_a_account_531,61131,Depreciación Edificio,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_532,61132,Depreciación Mobiliario y Equipos de Oficina,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_533,61133,Depreciación Equipos de Cómputos y Telecomunicaciones,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_534,61134,Depreciación Equipos de Transporte,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_535,61135,Depreciación Maquinarias y Equipos,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_536,61136,Depreciación Otros Activos,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_537,61137,Amortización Mejoras en Propiedad Arrendada,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_538,61138,Amortización Gastos de Organización y Constitución,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_539,61139,Amortización Patentes y Derechos de Explotación,default_chart_a_account_530,other,default_chart_a_type_9,false
default_chart_a_account_542,61141,Alquiler de Locales ,default_chart_a_account_541,other,default_chart_a_type_9,false
default_chart_a_account_543,61142,Alquiler de Equipos,default_chart_a_account_541,other,default_chart_a_type_9,false
default_chart_a_account_544,61143,Alquiler de Vehículos,default_chart_a_account_541,other,default_chart_a_type_9,false
default_chart_a_account_545,61144,Alquileres Generales,default_chart_a_account_541,other,default_chart_a_type_9,false
default_chart_a_account_722,61160,Otras Deducciones Admitidas,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_586,61161,Impuesto de Fiscalización,default_chart_a_account_585,other,default_chart_a_type_9,false
default_chart_a_account_587,61162,Retenciones de Impuesto sobre la Rentas Asumidas,default_chart_a_account_585,other,default_chart_a_type_9,false
default_chart_a_account_588,61163,"Penalidades, Mora e Interés Indemnizatorios",default_chart_a_account_585,other,default_chart_a_type_9,false
default_chart_a_account_589,61164,Gastos Sin Comprobantes No Admitidos,default_chart_a_account_585,other,default_chart_a_type_9,false
default_chart_a_account_590,61165,Gastos de Años Anteriores No Admitidos,default_chart_a_account_585,other,default_chart_a_type_9,false
default_chart_a_account_591,61166,Otros Gastos No Deducible ISR,default_chart_a_account_585,other,default_chart_a_type_9,false
default_chart_a_account_592,61167,Otros Gastos Generales y Administrativos,default_chart_a_account_585,other,default_chart_a_type_9,false
default_chart_a_account_594,61171,Cargos Bancarios,default_chart_a_account_593,other,default_chart_a_type_9,false
default_chart_a_account_595,61172,Cargos Carnet,default_chart_a_account_593,other,default_chart_a_type_9,false
default_chart_a_account_596,61173,Pérdida en Ajuste por Tipo de Cambio,default_chart_a_account_593,other,default_chart_a_type_9,false
default_chart_a_account_597,61174,Intereses sobre Prestamos Bancarios,default_chart_a_account_593,other,default_chart_a_type_9,false
default_chart_a_account_598,61175,Intereses sobre Prestamos Particulares,default_chart_a_account_593,other,default_chart_a_type_9,false
default_chart_a_account_600,61181,Impuestos sobre la Renta Corrientes,default_chart_a_account_599,other,default_chart_a_type_9,false
default_chart_a_account_601,61182,Impuestos sobre Activos Corrientes,default_chart_a_account_599,other,default_chart_a_type_9,false
default_chart_a_account_602,61183,Impuestos Sobre la Renta Diferidos,default_chart_a_account_599,other,default_chart_a_type_9,false
default_chart_a_account_603,61184,Crédito Fiscal por Retención de Dividendos,default_chart_a_account_599,other,default_chart_a_type_9,false
default_chart_a_account_604,61185,Impuestos de años anteriores,default_chart_a_account_599,other,default_chart_a_type_9,false
default_chart_a_account_605,61186,Impuestos sobre Activos de años anteriores,default_chart_a_account_599,other,default_chart_a_type_9,false
default_chart_a_account_5,111010,Caja Chica,default_chart_a_account_4,view,default_chart_a_type_12,false
default_chart_a_account_170,111030,Caja,default_chart_a_account_4,view,default_chart_a_type_12,true
default_chart_a_account_146,112001,Efectivo,default_chart_a_account_7,liquidity,default_chart_a_type_5,false
default_chart_a_account_147,112002,Banco,default_chart_a_account_7,liquidity,default_chart_a_type_4,false
default_chart_a_account_9,112020,Banco Popular,default_chart_a_account_7,liquidity,default_chart_a_type_4,true
default_chart_a_account_180,112021,Chequera Banco Popular,default_chart_a_account_7,liquidity,default_chart_a_type_4,true
default_chart_a_account_181,112022,Operaciones en transito Banco Popular,default_chart_a_account_7,liquidity,default_chart_a_type_4,true
default_chart_a_account_177,112030,Cardnet,default_chart_a_account_7,view,default_chart_a_type_12,true
default_chart_a_account_152,112050,Efectivo en transito,default_chart_a_account_7,liquidity,default_chart_a_type_5,false
default_chart_a_account_153,112051,Sobrante en caja,default_chart_a_account_7,liquidity,default_chart_a_type_5,false
default_chart_a_account_154,112052,Faltante en caja,default_chart_a_account_7,liquidity,default_chart_a_type_5,false
default_chart_a_account_13,113010,Cuentas por Cobrar Clientes,default_chart_a_account_12,receivable,default_chart_a_type_2,true
default_chart_a_account_14,113020,Cuentas por Cobrar Funcionarios y Empleados,default_chart_a_account_12,receivable,default_chart_a_type_2,true
default_chart_a_account_15,113030,Otras Cuentas por Cobrar,default_chart_a_account_12,receivable,default_chart_a_type_2,true
default_chart_a_account_707,113040,Pendientes de conciliar,default_chart_a_account_12,other,default_chart_a_type_6,true
default_chart_a_account_709,113050,Operaciones bancarias en transito,default_chart_a_account_12,other,default_chart_a_type_6,true
default_chart_a_account_716,113060,Gastos Pagados Por Adelantado,default_chart_a_account_12,other,default_chart_a_type_6,false
default_chart_a_account_17,114010,Mercancias,default_chart_a_account_16,other,default_chart_a_type_6,false
default_chart_a_account_18,114020,Materia Prima,default_chart_a_account_16,other,default_chart_a_type_6,false
default_chart_a_account_19,114030,Productos en procesos,default_chart_a_account_16,other,default_chart_a_type_6,false
default_chart_a_account_20,114040,Productos terminados,default_chart_a_account_16,other,default_chart_a_type_6,false
default_chart_a_account_22,115010,Seguros,default_chart_a_account_21,other,default_chart_a_type_6,false
default_chart_a_account_23,115020,Placas y Patentes,default_chart_a_account_21,other,default_chart_a_type_6,false
default_chart_a_account_24,115030,I.S.R.,default_chart_a_account_21,other,default_chart_a_type_6,false
default_chart_a_account_25,115040,Intereses cobrados por adelantados,default_chart_a_account_21,other,default_chart_a_type_6,false
default_chart_a_account_26,115050,Otros,default_chart_a_account_21,other,default_chart_a_type_6,false
default_chart_a_account_28,121000,Terrenos (Activos no despreciable),default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_29,122000,Edificio (Categoría 1),default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_30,123000,Mobiliario y Equipos de Oficina (Categoria 2),default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_182,123100,Mobiliario y Equipos de Oficina,default_chart_a_account_30,other,default_chart_a_type_6,false
default_chart_a_account_183,123200,Deprec. Acumulada Mobiliario y Equipos de Oficina,default_chart_a_account_30,other,default_chart_a_type_6,false
default_chart_a_account_186,124000,Equipos de Cómputos y Telecomunicaciones (Categoría 2),default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_184,124100,Equipos de Cómputos y Telecomunicaciones,default_chart_a_account_186,other,default_chart_a_type_6,false
default_chart_a_account_185,124200,Deprec. Acumulada Equipos de Cómputos y Telecomunicaciones,default_chart_a_account_186,other,default_chart_a_type_6,false
default_chart_a_account_189,125000,Equipos de Transporte (Categoría 2),default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_187,125100,Equipos de Transporte Livianos,default_chart_a_account_189,other,default_chart_a_type_6,false
default_chart_a_account_188,125200,Deprec. Acumulada Equipos de Transporte Livianos,default_chart_a_account_189,other,default_chart_a_type_6,false
default_chart_a_account_190,125300,Equipos de Transporte Pesados,default_chart_a_account_189,other,default_chart_a_type_6,false
default_chart_a_account_191,125400,Deprec. Acumulada Equipos de Transporte Pesados,default_chart_a_account_189,other,default_chart_a_type_6,false
default_chart_a_account_192,126000,Maquinarias y Equipos,default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_193,127000,Otros Activos Despreciables (Categoría 3),default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_194,127100,Otros Activos Depreciables,default_chart_a_account_193,other,default_chart_a_type_6,false
default_chart_a_account_195,127200,Deprec. Acumulada Otros Activos Depreciables,default_chart_a_account_193,other,default_chart_a_type_6,false
default_chart_a_account_199,128000,Mejoras en Propiedad Arrendada (Categoría 3),default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_197,128100,Mejoras en Propiedad Arrendada,default_chart_a_account_199,other,default_chart_a_type_6,false
default_chart_a_account_198,128200,Amortización Mejoras en Propiedad Arrendada,default_chart_a_account_199,other,default_chart_a_type_6,false
default_chart_a_account_202,129000,Activos Fijos en Proceso (Categoría 3),default_chart_a_account_27,view,default_chart_a_type_12,false
default_chart_a_account_200,129100,Terreno en Proceso de Capitalización,default_chart_a_account_202,other,default_chart_a_type_6,false
default_chart_a_account_201,129200,Edificio en Proceso de Capitalización,default_chart_a_account_202,other,default_chart_a_type_6,false
default_chart_a_account_203,129400,Equipos de Cómputos y Telecom. en Proceso de Instalación,default_chart_a_account_202,other,default_chart_a_type_6,false
default_chart_a_account_204,129500,Equipos de Transporte en Proceso de Liquidación,default_chart_a_account_202,other,default_chart_a_type_6,false
default_chart_a_account_205,129700,Otros Activos Depreciables en Proceso de Instalación,default_chart_a_account_202,other,default_chart_a_type_6,false
default_chart_a_account_38,131000,Mejoras Propiedad Arrendadas,default_chart_a_account_37,other,default_chart_a_type_6,false
default_chart_a_account_39,132000,Gastos de Organizacion,default_chart_a_account_37,other,default_chart_a_type_6,false
default_chart_a_account_40,133000,Gastos Legales,default_chart_a_account_37,other,default_chart_a_type_6,false
default_chart_a_account_42,141000,Acciones,default_chart_a_account_41,other,default_chart_a_type_6,false
default_chart_a_account_43,142000,bonos,default_chart_a_account_41,other,default_chart_a_type_6,false
default_chart_a_account_44,143000,Bienes Muebles e Inmuebles,default_chart_a_account_41,other,default_chart_a_type_6,false
default_chart_a_account_46,151000,Fianzas,default_chart_a_account_45,other,default_chart_a_type_6,false
default_chart_a_account_47,152000,Depositos,default_chart_a_account_45,other,default_chart_a_type_6,false
default_chart_a_account_48,153000,Codetel,default_chart_a_account_45,other,default_chart_a_type_6,false
default_chart_a_account_49,154000,CDEEE,default_chart_a_account_45,other,default_chart_a_type_6,false
default_chart_a_account_50,155000,CAASD,default_chart_a_account_45,other,default_chart_a_type_6,false
default_chart_a_account_51,156000,Telecable Nacional,default_chart_a_account_45,other,default_chart_a_type_6,false
default_chart_a_account_719,157000,Obras de Arte,default_chart_a_account_45,other,default_chart_a_type_6,false
default_chart_a_account_53,161000,ITBIS Pagado en compras,default_chart_a_account_52,other,default_chart_a_type_6,false
default_chart_a_account_54,162000,Anticipos ISR,default_chart_a_account_52,other,default_chart_a_type_6,false
default_chart_a_account_55,163000,ITBIS retenido cobros con tarjetas,default_chart_a_account_52,other,default_chart_a_type_6,false
default_chart_a_account_56,164000,ITBIS Pagado en importaciones,default_chart_a_account_52,other,default_chart_a_type_6,false
default_chart_a_account_57,165000,ITBIS por servicios deducibles,default_chart_a_account_52,other,default_chart_a_type_6,false
default_chart_a_account_70,201050,Retencion Empleados SFS,default_chart_a_account_65,payable,default_chart_a_type_3,true
default_chart_a_account_61,211010,Suplidores,default_chart_a_account_60,payable,default_chart_a_type_3,true
default_chart_a_account_62,211020,Proveedores,default_chart_a_account_60,payable,default_chart_a_type_3,true
default_chart_a_account_63,211030,Instituciones Estatales,default_chart_a_account_60,payable,default_chart_a_type_3,true
default_chart_a_account_64,211040,Prestamos por Pagar,default_chart_a_account_60,other,default_chart_a_type_3,true
default_chart_a_account_713,211050,Cheques popular en transito,default_chart_a_account_60,other,default_chart_a_type_3,false
default_chart_a_account_714,211060,Caja Chica por pagar,default_chart_a_account_60,payable,default_chart_a_type_3,true
default_chart_a_account_715,211070,Sueldo y Salarios por Pagar,default_chart_a_account_60,other,default_chart_a_type_3,true
default_chart_a_account_717,211080,Otras Cuentas Por Pagar,default_chart_a_account_60,other,default_chart_a_type_3,true
default_chart_a_account_718,211090,Cobros anticipados,default_chart_a_account_60,other,default_chart_a_type_3,true
default_chart_a_account_66,212010,Retención Empleados SVDS,default_chart_a_account_65,payable,default_chart_a_type_3,true
default_chart_a_account_67,212020,I.S.R.,default_chart_a_account_65,payable,default_chart_a_type_3,true
default_chart_a_account_723,212021,I.S.R. RETENCIONES DE ASALARIADOS,default_chart_a_account_65,payable,default_chart_a_type_3,true
default_chart_a_account_68,212030,Infotep,default_chart_a_account_65,payable,default_chart_a_type_3,true
default_chart_a_account_69,212040,TSS,default_chart_a_account_65,payable,default_chart_a_type_3,true
default_chart_a_account_71,212060,ITBIS,default_chart_a_account_65,other,default_chart_a_type_3,false
default_chart_a_account_163,212061,ITBIS 18% retenido a personas fisicas,default_chart_a_account_65,other,default_chart_a_type_3,false
default_chart_a_account_712,212062,ISR 10% retenido a personas fisicas,default_chart_a_account_65,other,default_chart_a_type_3,false
default_chart_a_account_72,212070,Otras Retenciones,default_chart_a_account_65,payable,default_chart_a_type_3,true
default_chart_a_account_720,212080,Otros Impuestos Por Pagar,default_chart_a_account_65,other,default_chart_a_type_3,true
default_chart_a_account_75,311000,Capital Autorizado,default_chart_a_account_74,other,default_chart_a_type_15,false
default_chart_a_account_76,312000,Acciones no emitidas,default_chart_a_account_74,other,default_chart_a_type_15,false
default_chart_a_account_77,313000,Capital Social,default_chart_a_account_74,other,default_chart_a_type_15,false
default_chart_a_account_79,321000,Reserva Legal,default_chart_a_account_78,other,default_chart_a_type_15,false
default_chart_a_account_80,322000,Reservas para Contingencias,default_chart_a_account_78,other,default_chart_a_type_15,false
default_chart_a_account_82,331000,Ganancias retenidas años anteriores,default_chart_a_account_81,other,default_chart_a_type_15,false
default_chart_a_account_83,332000,Ajustes años anteriores,default_chart_a_account_81,other,default_chart_a_type_15,false
default_chart_a_account_84,333000,Ganancia del periodo,default_chart_a_account_81,other,default_chart_a_type_15,false
default_chart_a_account_87,411000,Ventas,default_chart_a_account_86,other,default_chart_a_type_8,false
default_chart_a_account_89,421000,Ingresos por Servicios,default_chart_a_account_88,other,default_chart_a_type_8,false
default_chart_a_account_90,422000,Intereses Cobrados,default_chart_a_account_88,other,default_chart_a_type_8,false
default_chart_a_account_91,423000,Donaciones,default_chart_a_account_88,other,default_chart_a_type_8,false
default_chart_a_account_92,424000,Ingresos en Ventas de Activos Fijos,default_chart_a_account_88,other,default_chart_a_type_8,false
default_chart_a_account_93,430000,Devoluciones en Ventas,default_chart_a_account_88,other,default_chart_a_type_8,false
default_chart_a_account_94,440000,Descuentos en Ventas,default_chart_a_account_88,other,default_chart_a_type_8,false
default_chart_a_account_148,450000,Ingresos por diferencia de cambio,default_chart_a_account_88,other,default_chart_a_type_8,false
default_chart_a_account_724,460000,Otros Ingresos,default_chart_a_account_88,other,default_chart_a_type_8,false
default_chart_a_account_97,511000,Materiales Directos,default_chart_a_account_96,other,default_chart_a_type_9,false
default_chart_a_account_98,512000,Mano de Obra Directa,default_chart_a_account_96,other,default_chart_a_type_9,false
default_chart_a_account_99,513000,Costos Indirectos de Fabricacion,default_chart_a_account_96,other,default_chart_a_type_9,false
default_chart_a_account_101,521000,Compras de mercancias,default_chart_a_account_100,other,default_chart_a_type_9,false
default_chart_a_account_162,522000,Compras de mercancías en US,default_chart_a_account_100,other,default_chart_a_type_9,true
default_chart_a_account_102,523000,Devoluciones en compras,default_chart_a_account_100,other,default_chart_a_type_9,false
default_chart_a_account_103,524000,Descuentos en Compras,default_chart_a_account_100,other,default_chart_a_type_9,false
default_chart_a_account_104,525000,Transporte en Compras,default_chart_a_account_100,other,default_chart_a_type_9,false
default_chart_a_account_150,526000,Costo en ventas,default_chart_a_account_100,other,default_chart_a_type_9,false
default_chart_a_account_507,611110,Salarios,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_516,611111,Infotep,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_517,611112,Aporte Plan Básico de Salud (SFS),default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_518,611113,Aporte Plan de Pensiones (AFP),default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_519,611114,Aporte Riesgos Laborales (ARL) ,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_520,611115,Seguro Medico y de Vida Privado,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_521,611116,Uniforme,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_522,611117,Dietas y Viáticos a Empleados,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_523,611118,Actividades Sociales Empleados,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_525,611120,Impuesto de Retribuciones Complementarias,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_508,611121,Comisiones Funcionarios y Empleados,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_526,611122,Otros Beneficios Empleados,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_509,611123,Incentivos y Horas Extras,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_510,611124,Bonificación,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_511,611125,Salario de Navidad,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_512,611126,Vacaciones,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_513,611127,Preaviso y Cesantía,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_514,611128,Compensación uso de vehículos,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_515,611129,Entrenamiento y Capacitación,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_524,611130,Gasto de Retribuciones Complementarias,default_chart_a_account_506,other,default_chart_a_type_9,false
default_chart_a_account_547,611501,Honorarios por Servicios Profesionales Sociedades,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_548,611502,Honorarios por Servicios Profesionales Personas Físicas,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_549,611503,Comisiones por Venta a Terceros Personas Físicas,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_550,611504,Transporte y Acarreo,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_551,611505,Combustible y Lubricantes Vehículos,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_552,611506,Combustible Planta Eléctrica,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_553,611507,Estadía Hoteles,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_554,611508,Gastos por Cuentas Malas,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_555,611509,Reparaciones de Edificio,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_556,611510,Reparaciones de Activos Fijos Categoría 2 y 3,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_557,611511,Mantenimiento de Activos Fijos,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_558,611512,Promociones,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_559,611513,Publicidad,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_560,611514,Viáticos y Representación,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_561,611515,Patrocinio y aportes,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_562,611516,Participación en concursos,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_563,611517,Material Gastable y Papelería,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_564,611518,Material de Limpieza,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_565,611519,Atenciones a Clientes,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_566,611520,Gastos de Correo y Envíos,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_567,611521,Gastos Legales,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_568,611522,Seguridad Electrónica,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_569,611523,Guardianes y Vigilancia,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_570,611524,Fumigación y Control de Plagas,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_571,611525,Suscripciones y Membresías,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_572,611526,Donaciones,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_573,611527,Gastos de Representación,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_574,611528,Pérdida por Obsolescencia de Inventarios,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_575,611529,Pérdida en Venta de Inversiones,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_576,611530,Pérdida en Venta de Activos Fijos,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_577,611531,Pérdida en Venta de Terreno,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_578,611532,Pérdida en Venta de Edificio,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_579,611533,Pérdida en Venta de Mobiliario y Equipos de Oficina,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_580,611534,Pérdida en Venta de Maquinarias y Equipos,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_581,611535,Pérdida en Venta de Otros Activos Fijos,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_582,611536,Pérdida en Participación Patrimonial en Subsidiarias,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_583,611537,Pérdida en Indemnización de Seguros,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_584,611538,Consulta de Datos e Formación Crediticia,default_chart_a_account_546,other,default_chart_a_type_9,false
default_chart_a_account_143,711000,"Beneficio en retiro de Propiedad, Planta y Equipos",default_chart_a_account_142,liquidity,default_chart_a_type_5,true
default_chart_a_account_144,712000,"Perdida en retiro de Propiedad, Planta y Equipos",default_chart_a_account_142,liquidity,default_chart_a_type_5,true
default_chart_a_account_145,720000,Resumen de Ganancias y Perdidas,default_chart_a_account_141,liquidity,default_chart_a_type_5,true
default_chart_a_account_165,11101002,Caja Chica,default_chart_a_account_4,liquidity,default_chart_a_type_5,false
default_chart_a_account_172,11103001,Efectivo,default_chart_a_account_4,liquidity,default_chart_a_type_5,true
default_chart_a_account_173,11103002,Cheques en caja,default_chart_a_account_170,liquidity,default_chart_a_type_5,true
default_chart_a_account_174,11103003,Diferencia en caja,default_chart_a_account_170,liquidity,default_chart_a_type_5,false
default_chart_a_account_175,11103004,Sobrante en caja,default_chart_a_account_170,liquidity,default_chart_a_type_5,false
default_chart_a_account_176,11103005,Caja en transito,default_chart_a_account_170,liquidity,default_chart_a_type_5,false
default_chart_a_account_179,11203002,Cardnet,default_chart_a_account_177,liquidity,default_chart_a_type_4,true
default_chart_a_account_710,11203003,Cardnet Cargos,default_chart_a_account_177,other,default_chart_a_type_6,true
1 id code name parent_id/id type user_type/id reconcile
2 default_chart_a_account_1 0 Your Company view default_chart_a_type_1 false
3 default_chart_a_account_2 1 Activos default_chart_a_account_1 view default_chart_a_type_12 false
4 default_chart_a_account_58 2 Pasivos default_chart_a_account_1 view default_chart_a_type_13 false
5 default_chart_a_account_73 3 Capital default_chart_a_account_1 view default_chart_a_type_1 false
6 default_chart_a_account_85 4 Ingresos default_chart_a_account_1 view default_chart_a_type_10 false
7 default_chart_a_account_95 5 Costos default_chart_a_account_1 view default_chart_a_type_11 false
8 default_chart_a_account_105 6 Gastos default_chart_a_account_1 view default_chart_a_type_11 false
9 default_chart_a_account_141 7 Cuentas de Liquidacion y Resumen default_chart_a_account_1 view default_chart_a_type_1 false
10 default_chart_a_account_3 11 Activos Corrientes default_chart_a_account_2 view default_chart_a_type_12 false
11 default_chart_a_account_27 12 Activos Fijos default_chart_a_account_2 view default_chart_a_type_12 false
12 default_chart_a_account_37 13 Activos Diferidos default_chart_a_account_2 view default_chart_a_type_12 false
13 default_chart_a_account_41 14 Inversiones default_chart_a_account_2 view default_chart_a_type_12 false
14 default_chart_a_account_45 15 Otros Activos default_chart_a_account_2 view default_chart_a_type_12 false
15 default_chart_a_account_52 16 DGII default_chart_a_account_2 view default_chart_a_type_12 false
16 default_chart_a_account_59 21 Pasivos Corrientes default_chart_a_account_58 view default_chart_a_type_13 false
17 default_chart_a_account_74 31 Capital default_chart_a_account_73 view default_chart_a_type_1 false
18 default_chart_a_account_78 32 Reservas default_chart_a_account_73 view default_chart_a_type_1 false
19 default_chart_a_account_81 33 Superavit default_chart_a_account_73 view default_chart_a_type_1 false
20 default_chart_a_account_86 41 Ventas default_chart_a_account_85 view default_chart_a_type_10 false
21 default_chart_a_account_88 42 Otros Ingresos default_chart_a_account_85 view default_chart_a_type_10 false
22 default_chart_a_account_96 51 Costos de Produccion default_chart_a_account_95 view default_chart_a_type_11 false
23 default_chart_a_account_100 52 Costos de Ventas default_chart_a_account_95 view default_chart_a_type_11 false
24 default_chart_a_account_106 61 Gastos Operacionales default_chart_a_account_105 view default_chart_a_type_11 false
25 default_chart_a_account_142 71 Retiro de Propiedad, Planta y Equipos default_chart_a_account_141 view default_chart_a_type_1 false
26 default_chart_a_account_4 111 Efectivo en Caja default_chart_a_account_3 view default_chart_a_type_12 false
27 default_chart_a_account_7 112 Efectivo en Bancos default_chart_a_account_3 view default_chart_a_type_12 false
28 default_chart_a_account_12 113 Cuentas por Cobrar default_chart_a_account_3 view default_chart_a_type_12 false
29 default_chart_a_account_16 114 Inventarios default_chart_a_account_3 view default_chart_a_type_12 false
30 default_chart_a_account_21 115 Gastos Pagados por Adelantados default_chart_a_account_3 view default_chart_a_type_12 false
31 default_chart_a_account_60 211 Cuentas por Pagar default_chart_a_account_59 view default_chart_a_type_13 false
32 default_chart_a_account_65 212 Retenciones por Pagar default_chart_a_account_59 view default_chart_a_type_13 false
33 default_chart_a_account_706 611 Gastos Generales y Administrativos default_chart_a_account_106 view default_chart_a_type_11 false
34 default_chart_a_account_506 6111 Gastos Funcionarios y Empleados default_chart_a_account_706 view default_chart_a_type_11 false
35 default_chart_a_account_527 6112 Otros Gastos de Administración default_chart_a_account_706 view default_chart_a_type_11 false
36 default_chart_a_account_530 6113 Depreciación y Amortizaciones default_chart_a_account_706 view default_chart_a_type_11 false
37 default_chart_a_account_541 6114 Alquileres default_chart_a_account_706 view default_chart_a_type_11 false
38 default_chart_a_account_546 6115 Honorarios por Servicios default_chart_a_account_706 view default_chart_a_type_11 false
39 default_chart_a_account_585 6116 Gastos No Deducible ISR default_chart_a_account_706 view default_chart_a_type_11 false
40 default_chart_a_account_593 6117 Gastos Financieros default_chart_a_account_706 view default_chart_a_type_11 false
41 default_chart_a_account_599 6118 Impuestos sobre la Renta default_chart_a_account_706 view default_chart_a_type_11 false
42 default_chart_a_account_528 61121 Agua, Luz y Basura default_chart_a_account_527 other default_chart_a_type_9 false
43 default_chart_a_account_529 61122 Telecomunicaciones default_chart_a_account_527 other default_chart_a_type_9 false
44 default_chart_a_account_721 61123 Otros Gastos Administrativos default_chart_a_account_527 other default_chart_a_type_9 false
45 default_chart_a_account_531 61131 Depreciación Edificio default_chart_a_account_530 other default_chart_a_type_9 false
46 default_chart_a_account_532 61132 Depreciación Mobiliario y Equipos de Oficina default_chart_a_account_530 other default_chart_a_type_9 false
47 default_chart_a_account_533 61133 Depreciación Equipos de Cómputos y Telecomunicaciones default_chart_a_account_530 other default_chart_a_type_9 false
48 default_chart_a_account_534 61134 Depreciación Equipos de Transporte default_chart_a_account_530 other default_chart_a_type_9 false
49 default_chart_a_account_535 61135 Depreciación Maquinarias y Equipos default_chart_a_account_530 other default_chart_a_type_9 false
50 default_chart_a_account_536 61136 Depreciación Otros Activos default_chart_a_account_530 other default_chart_a_type_9 false
51 default_chart_a_account_537 61137 Amortización Mejoras en Propiedad Arrendada default_chart_a_account_530 other default_chart_a_type_9 false
52 default_chart_a_account_538 61138 Amortización Gastos de Organización y Constitución default_chart_a_account_530 other default_chart_a_type_9 false
53 default_chart_a_account_539 61139 Amortización Patentes y Derechos de Explotación default_chart_a_account_530 other default_chart_a_type_9 false
54 default_chart_a_account_542 61141 Alquiler de Locales default_chart_a_account_541 other default_chart_a_type_9 false
55 default_chart_a_account_543 61142 Alquiler de Equipos default_chart_a_account_541 other default_chart_a_type_9 false
56 default_chart_a_account_544 61143 Alquiler de Vehículos default_chart_a_account_541 other default_chart_a_type_9 false
57 default_chart_a_account_545 61144 Alquileres Generales default_chart_a_account_541 other default_chart_a_type_9 false
58 default_chart_a_account_722 61160 Otras Deducciones Admitidas default_chart_a_account_546 other default_chart_a_type_9 false
59 default_chart_a_account_586 61161 Impuesto de Fiscalización default_chart_a_account_585 other default_chart_a_type_9 false
60 default_chart_a_account_587 61162 Retenciones de Impuesto sobre la Rentas Asumidas default_chart_a_account_585 other default_chart_a_type_9 false
61 default_chart_a_account_588 61163 Penalidades, Mora e Interés Indemnizatorios default_chart_a_account_585 other default_chart_a_type_9 false
62 default_chart_a_account_589 61164 Gastos Sin Comprobantes No Admitidos default_chart_a_account_585 other default_chart_a_type_9 false
63 default_chart_a_account_590 61165 Gastos de Años Anteriores No Admitidos default_chart_a_account_585 other default_chart_a_type_9 false
64 default_chart_a_account_591 61166 Otros Gastos No Deducible ISR default_chart_a_account_585 other default_chart_a_type_9 false
65 default_chart_a_account_592 61167 Otros Gastos Generales y Administrativos default_chart_a_account_585 other default_chart_a_type_9 false
66 default_chart_a_account_594 61171 Cargos Bancarios default_chart_a_account_593 other default_chart_a_type_9 false
67 default_chart_a_account_595 61172 Cargos Carnet default_chart_a_account_593 other default_chart_a_type_9 false
68 default_chart_a_account_596 61173 Pérdida en Ajuste por Tipo de Cambio default_chart_a_account_593 other default_chart_a_type_9 false
69 default_chart_a_account_597 61174 Intereses sobre Prestamos Bancarios default_chart_a_account_593 other default_chart_a_type_9 false
70 default_chart_a_account_598 61175 Intereses sobre Prestamos Particulares default_chart_a_account_593 other default_chart_a_type_9 false
71 default_chart_a_account_600 61181 Impuestos sobre la Renta Corrientes default_chart_a_account_599 other default_chart_a_type_9 false
72 default_chart_a_account_601 61182 Impuestos sobre Activos Corrientes default_chart_a_account_599 other default_chart_a_type_9 false
73 default_chart_a_account_602 61183 Impuestos Sobre la Renta Diferidos default_chart_a_account_599 other default_chart_a_type_9 false
74 default_chart_a_account_603 61184 Crédito Fiscal por Retención de Dividendos default_chart_a_account_599 other default_chart_a_type_9 false
75 default_chart_a_account_604 61185 Impuestos de años anteriores default_chart_a_account_599 other default_chart_a_type_9 false
76 default_chart_a_account_605 61186 Impuestos sobre Activos de años anteriores default_chart_a_account_599 other default_chart_a_type_9 false
77 default_chart_a_account_5 111010 Caja Chica default_chart_a_account_4 view default_chart_a_type_12 false
78 default_chart_a_account_170 111030 Caja default_chart_a_account_4 view default_chart_a_type_12 true
79 default_chart_a_account_146 112001 Efectivo default_chart_a_account_7 liquidity default_chart_a_type_5 false
80 default_chart_a_account_147 112002 Banco default_chart_a_account_7 liquidity default_chart_a_type_4 false
81 default_chart_a_account_9 112020 Banco Popular default_chart_a_account_7 liquidity default_chart_a_type_4 true
82 default_chart_a_account_180 112021 Chequera Banco Popular default_chart_a_account_7 liquidity default_chart_a_type_4 true
83 default_chart_a_account_181 112022 Operaciones en transito Banco Popular default_chart_a_account_7 liquidity default_chart_a_type_4 true
84 default_chart_a_account_177 112030 Cardnet default_chart_a_account_7 view default_chart_a_type_12 true
85 default_chart_a_account_152 112050 Efectivo en transito default_chart_a_account_7 liquidity default_chart_a_type_5 false
86 default_chart_a_account_153 112051 Sobrante en caja default_chart_a_account_7 liquidity default_chart_a_type_5 false
87 default_chart_a_account_154 112052 Faltante en caja default_chart_a_account_7 liquidity default_chart_a_type_5 false
88 default_chart_a_account_13 113010 Cuentas por Cobrar Clientes default_chart_a_account_12 receivable default_chart_a_type_2 true
89 default_chart_a_account_14 113020 Cuentas por Cobrar Funcionarios y Empleados default_chart_a_account_12 receivable default_chart_a_type_2 true
90 default_chart_a_account_15 113030 Otras Cuentas por Cobrar default_chart_a_account_12 receivable default_chart_a_type_2 true
91 default_chart_a_account_707 113040 Pendientes de conciliar default_chart_a_account_12 other default_chart_a_type_6 true
92 default_chart_a_account_709 113050 Operaciones bancarias en transito default_chart_a_account_12 other default_chart_a_type_6 true
93 default_chart_a_account_716 113060 Gastos Pagados Por Adelantado default_chart_a_account_12 other default_chart_a_type_6 false
94 default_chart_a_account_17 114010 Mercancias default_chart_a_account_16 other default_chart_a_type_6 false
95 default_chart_a_account_18 114020 Materia Prima default_chart_a_account_16 other default_chart_a_type_6 false
96 default_chart_a_account_19 114030 Productos en procesos default_chart_a_account_16 other default_chart_a_type_6 false
97 default_chart_a_account_20 114040 Productos terminados default_chart_a_account_16 other default_chart_a_type_6 false
98 default_chart_a_account_22 115010 Seguros default_chart_a_account_21 other default_chart_a_type_6 false
99 default_chart_a_account_23 115020 Placas y Patentes default_chart_a_account_21 other default_chart_a_type_6 false
100 default_chart_a_account_24 115030 I.S.R. default_chart_a_account_21 other default_chart_a_type_6 false
101 default_chart_a_account_25 115040 Intereses cobrados por adelantados default_chart_a_account_21 other default_chart_a_type_6 false
102 default_chart_a_account_26 115050 Otros default_chart_a_account_21 other default_chart_a_type_6 false
103 default_chart_a_account_28 121000 Terrenos (Activos no despreciable) default_chart_a_account_27 view default_chart_a_type_12 false
104 default_chart_a_account_29 122000 Edificio (Categoría 1) default_chart_a_account_27 view default_chart_a_type_12 false
105 default_chart_a_account_30 123000 Mobiliario y Equipos de Oficina (Categoria 2) default_chart_a_account_27 view default_chart_a_type_12 false
106 default_chart_a_account_182 123100 Mobiliario y Equipos de Oficina default_chart_a_account_30 other default_chart_a_type_6 false
107 default_chart_a_account_183 123200 Deprec. Acumulada Mobiliario y Equipos de Oficina default_chart_a_account_30 other default_chart_a_type_6 false
108 default_chart_a_account_186 124000 Equipos de Cómputos y Telecomunicaciones (Categoría 2) default_chart_a_account_27 view default_chart_a_type_12 false
109 default_chart_a_account_184 124100 Equipos de Cómputos y Telecomunicaciones default_chart_a_account_186 other default_chart_a_type_6 false
110 default_chart_a_account_185 124200 Deprec. Acumulada Equipos de Cómputos y Telecomunicaciones default_chart_a_account_186 other default_chart_a_type_6 false
111 default_chart_a_account_189 125000 Equipos de Transporte (Categoría 2) default_chart_a_account_27 view default_chart_a_type_12 false
112 default_chart_a_account_187 125100 Equipos de Transporte Livianos default_chart_a_account_189 other default_chart_a_type_6 false
113 default_chart_a_account_188 125200 Deprec. Acumulada Equipos de Transporte Livianos default_chart_a_account_189 other default_chart_a_type_6 false
114 default_chart_a_account_190 125300 Equipos de Transporte Pesados default_chart_a_account_189 other default_chart_a_type_6 false
115 default_chart_a_account_191 125400 Deprec. Acumulada Equipos de Transporte Pesados default_chart_a_account_189 other default_chart_a_type_6 false
116 default_chart_a_account_192 126000 Maquinarias y Equipos default_chart_a_account_27 view default_chart_a_type_12 false
117 default_chart_a_account_193 127000 Otros Activos Despreciables (Categoría 3) default_chart_a_account_27 view default_chart_a_type_12 false
118 default_chart_a_account_194 127100 Otros Activos Depreciables default_chart_a_account_193 other default_chart_a_type_6 false
119 default_chart_a_account_195 127200 Deprec. Acumulada Otros Activos Depreciables default_chart_a_account_193 other default_chart_a_type_6 false
120 default_chart_a_account_199 128000 Mejoras en Propiedad Arrendada (Categoría 3) default_chart_a_account_27 view default_chart_a_type_12 false
121 default_chart_a_account_197 128100 Mejoras en Propiedad Arrendada default_chart_a_account_199 other default_chart_a_type_6 false
122 default_chart_a_account_198 128200 Amortización Mejoras en Propiedad Arrendada default_chart_a_account_199 other default_chart_a_type_6 false
123 default_chart_a_account_202 129000 Activos Fijos en Proceso (Categoría 3) default_chart_a_account_27 view default_chart_a_type_12 false
124 default_chart_a_account_200 129100 Terreno en Proceso de Capitalización default_chart_a_account_202 other default_chart_a_type_6 false
125 default_chart_a_account_201 129200 Edificio en Proceso de Capitalización default_chart_a_account_202 other default_chart_a_type_6 false
126 default_chart_a_account_203 129400 Equipos de Cómputos y Telecom. en Proceso de Instalación default_chart_a_account_202 other default_chart_a_type_6 false
127 default_chart_a_account_204 129500 Equipos de Transporte en Proceso de Liquidación default_chart_a_account_202 other default_chart_a_type_6 false
128 default_chart_a_account_205 129700 Otros Activos Depreciables en Proceso de Instalación default_chart_a_account_202 other default_chart_a_type_6 false
129 default_chart_a_account_38 131000 Mejoras Propiedad Arrendadas default_chart_a_account_37 other default_chart_a_type_6 false
130 default_chart_a_account_39 132000 Gastos de Organizacion default_chart_a_account_37 other default_chart_a_type_6 false
131 default_chart_a_account_40 133000 Gastos Legales default_chart_a_account_37 other default_chart_a_type_6 false
132 default_chart_a_account_42 141000 Acciones default_chart_a_account_41 other default_chart_a_type_6 false
133 default_chart_a_account_43 142000 bonos default_chart_a_account_41 other default_chart_a_type_6 false
134 default_chart_a_account_44 143000 Bienes Muebles e Inmuebles default_chart_a_account_41 other default_chart_a_type_6 false
135 default_chart_a_account_46 151000 Fianzas default_chart_a_account_45 other default_chart_a_type_6 false
136 default_chart_a_account_47 152000 Depositos default_chart_a_account_45 other default_chart_a_type_6 false
137 default_chart_a_account_48 153000 Codetel default_chart_a_account_45 other default_chart_a_type_6 false
138 default_chart_a_account_49 154000 CDEEE default_chart_a_account_45 other default_chart_a_type_6 false
139 default_chart_a_account_50 155000 CAASD default_chart_a_account_45 other default_chart_a_type_6 false
140 default_chart_a_account_51 156000 Telecable Nacional default_chart_a_account_45 other default_chart_a_type_6 false
141 default_chart_a_account_719 157000 Obras de Arte default_chart_a_account_45 other default_chart_a_type_6 false
142 default_chart_a_account_53 161000 ITBIS Pagado en compras default_chart_a_account_52 other default_chart_a_type_6 false
143 default_chart_a_account_54 162000 Anticipos ISR default_chart_a_account_52 other default_chart_a_type_6 false
144 default_chart_a_account_55 163000 ITBIS retenido cobros con tarjetas default_chart_a_account_52 other default_chart_a_type_6 false
145 default_chart_a_account_56 164000 ITBIS Pagado en importaciones default_chart_a_account_52 other default_chart_a_type_6 false
146 default_chart_a_account_57 165000 ITBIS por servicios deducibles default_chart_a_account_52 other default_chart_a_type_6 false
147 default_chart_a_account_70 201050 Retencion Empleados SFS default_chart_a_account_65 payable default_chart_a_type_3 true
148 default_chart_a_account_61 211010 Suplidores default_chart_a_account_60 payable default_chart_a_type_3 true
149 default_chart_a_account_62 211020 Proveedores default_chart_a_account_60 payable default_chart_a_type_3 true
150 default_chart_a_account_63 211030 Instituciones Estatales default_chart_a_account_60 payable default_chart_a_type_3 true
151 default_chart_a_account_64 211040 Prestamos por Pagar default_chart_a_account_60 other default_chart_a_type_3 true
152 default_chart_a_account_713 211050 Cheques popular en transito default_chart_a_account_60 other default_chart_a_type_3 false
153 default_chart_a_account_714 211060 Caja Chica por pagar default_chart_a_account_60 payable default_chart_a_type_3 true
154 default_chart_a_account_715 211070 Sueldo y Salarios por Pagar default_chart_a_account_60 other default_chart_a_type_3 true
155 default_chart_a_account_717 211080 Otras Cuentas Por Pagar default_chart_a_account_60 other default_chart_a_type_3 true
156 default_chart_a_account_718 211090 Cobros anticipados default_chart_a_account_60 other default_chart_a_type_3 true
157 default_chart_a_account_66 212010 Retención Empleados SVDS default_chart_a_account_65 payable default_chart_a_type_3 true
158 default_chart_a_account_67 212020 I.S.R. default_chart_a_account_65 payable default_chart_a_type_3 true
159 default_chart_a_account_723 212021 I.S.R. RETENCIONES DE ASALARIADOS default_chart_a_account_65 payable default_chart_a_type_3 true
160 default_chart_a_account_68 212030 Infotep default_chart_a_account_65 payable default_chart_a_type_3 true
161 default_chart_a_account_69 212040 TSS default_chart_a_account_65 payable default_chart_a_type_3 true
162 default_chart_a_account_71 212060 ITBIS default_chart_a_account_65 other default_chart_a_type_3 false
163 default_chart_a_account_163 212061 ITBIS 18% retenido a personas fisicas default_chart_a_account_65 other default_chart_a_type_3 false
164 default_chart_a_account_712 212062 ISR 10% retenido a personas fisicas default_chart_a_account_65 other default_chart_a_type_3 false
165 default_chart_a_account_72 212070 Otras Retenciones default_chart_a_account_65 payable default_chart_a_type_3 true
166 default_chart_a_account_720 212080 Otros Impuestos Por Pagar default_chart_a_account_65 other default_chart_a_type_3 true
167 default_chart_a_account_75 311000 Capital Autorizado default_chart_a_account_74 other default_chart_a_type_15 false
168 default_chart_a_account_76 312000 Acciones no emitidas default_chart_a_account_74 other default_chart_a_type_15 false
169 default_chart_a_account_77 313000 Capital Social default_chart_a_account_74 other default_chart_a_type_15 false
170 default_chart_a_account_79 321000 Reserva Legal default_chart_a_account_78 other default_chart_a_type_15 false
171 default_chart_a_account_80 322000 Reservas para Contingencias default_chart_a_account_78 other default_chart_a_type_15 false
172 default_chart_a_account_82 331000 Ganancias retenidas años anteriores default_chart_a_account_81 other default_chart_a_type_15 false
173 default_chart_a_account_83 332000 Ajustes años anteriores default_chart_a_account_81 other default_chart_a_type_15 false
174 default_chart_a_account_84 333000 Ganancia del periodo default_chart_a_account_81 other default_chart_a_type_15 false
175 default_chart_a_account_87 411000 Ventas default_chart_a_account_86 other default_chart_a_type_8 false
176 default_chart_a_account_89 421000 Ingresos por Servicios default_chart_a_account_88 other default_chart_a_type_8 false
177 default_chart_a_account_90 422000 Intereses Cobrados default_chart_a_account_88 other default_chart_a_type_8 false
178 default_chart_a_account_91 423000 Donaciones default_chart_a_account_88 other default_chart_a_type_8 false
179 default_chart_a_account_92 424000 Ingresos en Ventas de Activos Fijos default_chart_a_account_88 other default_chart_a_type_8 false
180 default_chart_a_account_93 430000 Devoluciones en Ventas default_chart_a_account_88 other default_chart_a_type_8 false
181 default_chart_a_account_94 440000 Descuentos en Ventas default_chart_a_account_88 other default_chart_a_type_8 false
182 default_chart_a_account_148 450000 Ingresos por diferencia de cambio default_chart_a_account_88 other default_chart_a_type_8 false
183 default_chart_a_account_724 460000 Otros Ingresos default_chart_a_account_88 other default_chart_a_type_8 false
184 default_chart_a_account_97 511000 Materiales Directos default_chart_a_account_96 other default_chart_a_type_9 false
185 default_chart_a_account_98 512000 Mano de Obra Directa default_chart_a_account_96 other default_chart_a_type_9 false
186 default_chart_a_account_99 513000 Costos Indirectos de Fabricacion default_chart_a_account_96 other default_chart_a_type_9 false
187 default_chart_a_account_101 521000 Compras de mercancias default_chart_a_account_100 other default_chart_a_type_9 false
188 default_chart_a_account_162 522000 Compras de mercancías en US default_chart_a_account_100 other default_chart_a_type_9 true
189 default_chart_a_account_102 523000 Devoluciones en compras default_chart_a_account_100 other default_chart_a_type_9 false
190 default_chart_a_account_103 524000 Descuentos en Compras default_chart_a_account_100 other default_chart_a_type_9 false
191 default_chart_a_account_104 525000 Transporte en Compras default_chart_a_account_100 other default_chart_a_type_9 false
192 default_chart_a_account_150 526000 Costo en ventas default_chart_a_account_100 other default_chart_a_type_9 false
193 default_chart_a_account_507 611110 Salarios default_chart_a_account_506 other default_chart_a_type_9 false
194 default_chart_a_account_516 611111 Infotep default_chart_a_account_506 other default_chart_a_type_9 false
195 default_chart_a_account_517 611112 Aporte Plan Básico de Salud (SFS) default_chart_a_account_506 other default_chart_a_type_9 false
196 default_chart_a_account_518 611113 Aporte Plan de Pensiones (AFP) default_chart_a_account_506 other default_chart_a_type_9 false
197 default_chart_a_account_519 611114 Aporte Riesgos Laborales (ARL) default_chart_a_account_506 other default_chart_a_type_9 false
198 default_chart_a_account_520 611115 Seguro Medico y de Vida Privado default_chart_a_account_506 other default_chart_a_type_9 false
199 default_chart_a_account_521 611116 Uniforme default_chart_a_account_506 other default_chart_a_type_9 false
200 default_chart_a_account_522 611117 Dietas y Viáticos a Empleados default_chart_a_account_506 other default_chart_a_type_9 false
201 default_chart_a_account_523 611118 Actividades Sociales Empleados default_chart_a_account_506 other default_chart_a_type_9 false
202 default_chart_a_account_525 611120 Impuesto de Retribuciones Complementarias default_chart_a_account_506 other default_chart_a_type_9 false
203 default_chart_a_account_508 611121 Comisiones Funcionarios y Empleados default_chart_a_account_506 other default_chart_a_type_9 false
204 default_chart_a_account_526 611122 Otros Beneficios Empleados default_chart_a_account_506 other default_chart_a_type_9 false
205 default_chart_a_account_509 611123 Incentivos y Horas Extras default_chart_a_account_506 other default_chart_a_type_9 false
206 default_chart_a_account_510 611124 Bonificación default_chart_a_account_506 other default_chart_a_type_9 false
207 default_chart_a_account_511 611125 Salario de Navidad default_chart_a_account_506 other default_chart_a_type_9 false
208 default_chart_a_account_512 611126 Vacaciones default_chart_a_account_506 other default_chart_a_type_9 false
209 default_chart_a_account_513 611127 Preaviso y Cesantía default_chart_a_account_506 other default_chart_a_type_9 false
210 default_chart_a_account_514 611128 Compensación uso de vehículos default_chart_a_account_506 other default_chart_a_type_9 false
211 default_chart_a_account_515 611129 Entrenamiento y Capacitación default_chart_a_account_506 other default_chart_a_type_9 false
212 default_chart_a_account_524 611130 Gasto de Retribuciones Complementarias default_chart_a_account_506 other default_chart_a_type_9 false
213 default_chart_a_account_547 611501 Honorarios por Servicios Profesionales Sociedades default_chart_a_account_546 other default_chart_a_type_9 false
214 default_chart_a_account_548 611502 Honorarios por Servicios Profesionales Personas Físicas default_chart_a_account_546 other default_chart_a_type_9 false
215 default_chart_a_account_549 611503 Comisiones por Venta a Terceros Personas Físicas default_chart_a_account_546 other default_chart_a_type_9 false
216 default_chart_a_account_550 611504 Transporte y Acarreo default_chart_a_account_546 other default_chart_a_type_9 false
217 default_chart_a_account_551 611505 Combustible y Lubricantes Vehículos default_chart_a_account_546 other default_chart_a_type_9 false
218 default_chart_a_account_552 611506 Combustible Planta Eléctrica default_chart_a_account_546 other default_chart_a_type_9 false
219 default_chart_a_account_553 611507 Estadía Hoteles default_chart_a_account_546 other default_chart_a_type_9 false
220 default_chart_a_account_554 611508 Gastos por Cuentas Malas default_chart_a_account_546 other default_chart_a_type_9 false
221 default_chart_a_account_555 611509 Reparaciones de Edificio default_chart_a_account_546 other default_chart_a_type_9 false
222 default_chart_a_account_556 611510 Reparaciones de Activos Fijos Categoría 2 y 3 default_chart_a_account_546 other default_chart_a_type_9 false
223 default_chart_a_account_557 611511 Mantenimiento de Activos Fijos default_chart_a_account_546 other default_chart_a_type_9 false
224 default_chart_a_account_558 611512 Promociones default_chart_a_account_546 other default_chart_a_type_9 false
225 default_chart_a_account_559 611513 Publicidad default_chart_a_account_546 other default_chart_a_type_9 false
226 default_chart_a_account_560 611514 Viáticos y Representación default_chart_a_account_546 other default_chart_a_type_9 false
227 default_chart_a_account_561 611515 Patrocinio y aportes default_chart_a_account_546 other default_chart_a_type_9 false
228 default_chart_a_account_562 611516 Participación en concursos default_chart_a_account_546 other default_chart_a_type_9 false
229 default_chart_a_account_563 611517 Material Gastable y Papelería default_chart_a_account_546 other default_chart_a_type_9 false
230 default_chart_a_account_564 611518 Material de Limpieza default_chart_a_account_546 other default_chart_a_type_9 false
231 default_chart_a_account_565 611519 Atenciones a Clientes default_chart_a_account_546 other default_chart_a_type_9 false
232 default_chart_a_account_566 611520 Gastos de Correo y Envíos default_chart_a_account_546 other default_chart_a_type_9 false
233 default_chart_a_account_567 611521 Gastos Legales default_chart_a_account_546 other default_chart_a_type_9 false
234 default_chart_a_account_568 611522 Seguridad Electrónica default_chart_a_account_546 other default_chart_a_type_9 false
235 default_chart_a_account_569 611523 Guardianes y Vigilancia default_chart_a_account_546 other default_chart_a_type_9 false
236 default_chart_a_account_570 611524 Fumigación y Control de Plagas default_chart_a_account_546 other default_chart_a_type_9 false
237 default_chart_a_account_571 611525 Suscripciones y Membresías default_chart_a_account_546 other default_chart_a_type_9 false
238 default_chart_a_account_572 611526 Donaciones default_chart_a_account_546 other default_chart_a_type_9 false
239 default_chart_a_account_573 611527 Gastos de Representación default_chart_a_account_546 other default_chart_a_type_9 false
240 default_chart_a_account_574 611528 Pérdida por Obsolescencia de Inventarios default_chart_a_account_546 other default_chart_a_type_9 false
241 default_chart_a_account_575 611529 Pérdida en Venta de Inversiones default_chart_a_account_546 other default_chart_a_type_9 false
242 default_chart_a_account_576 611530 Pérdida en Venta de Activos Fijos default_chart_a_account_546 other default_chart_a_type_9 false
243 default_chart_a_account_577 611531 Pérdida en Venta de Terreno default_chart_a_account_546 other default_chart_a_type_9 false
244 default_chart_a_account_578 611532 Pérdida en Venta de Edificio default_chart_a_account_546 other default_chart_a_type_9 false
245 default_chart_a_account_579 611533 Pérdida en Venta de Mobiliario y Equipos de Oficina default_chart_a_account_546 other default_chart_a_type_9 false
246 default_chart_a_account_580 611534 Pérdida en Venta de Maquinarias y Equipos default_chart_a_account_546 other default_chart_a_type_9 false
247 default_chart_a_account_581 611535 Pérdida en Venta de Otros Activos Fijos default_chart_a_account_546 other default_chart_a_type_9 false
248 default_chart_a_account_582 611536 Pérdida en Participación Patrimonial en Subsidiarias default_chart_a_account_546 other default_chart_a_type_9 false
249 default_chart_a_account_583 611537 Pérdida en Indemnización de Seguros default_chart_a_account_546 other default_chart_a_type_9 false
250 default_chart_a_account_584 611538 Consulta de Datos e Formación Crediticia default_chart_a_account_546 other default_chart_a_type_9 false
251 default_chart_a_account_143 711000 Beneficio en retiro de Propiedad, Planta y Equipos default_chart_a_account_142 liquidity default_chart_a_type_5 true
252 default_chart_a_account_144 712000 Perdida en retiro de Propiedad, Planta y Equipos default_chart_a_account_142 liquidity default_chart_a_type_5 true
253 default_chart_a_account_145 720000 Resumen de Ganancias y Perdidas default_chart_a_account_141 liquidity default_chart_a_type_5 true
254 default_chart_a_account_165 11101002 Caja Chica default_chart_a_account_4 liquidity default_chart_a_type_5 false
255 default_chart_a_account_172 11103001 Efectivo default_chart_a_account_4 liquidity default_chart_a_type_5 true
256 default_chart_a_account_173 11103002 Cheques en caja default_chart_a_account_170 liquidity default_chart_a_type_5 true
257 default_chart_a_account_174 11103003 Diferencia en caja default_chart_a_account_170 liquidity default_chart_a_type_5 false
258 default_chart_a_account_175 11103004 Sobrante en caja default_chart_a_account_170 liquidity default_chart_a_type_5 false
259 default_chart_a_account_176 11103005 Caja en transito default_chart_a_account_170 liquidity default_chart_a_type_5 false
260 default_chart_a_account_179 11203002 Cardnet default_chart_a_account_177 liquidity default_chart_a_type_4 true
261 default_chart_a_account_710 11203003 Cardnet Cargos default_chart_a_account_177 other default_chart_a_type_6 true

View File

@ -0,0 +1,17 @@
id,code,name,close_method,report_type
default_chart_a_type_1,view,Root/View,none,none
default_chart_a_type_2,receivable,Receivable,unreconciled,asset
default_chart_a_type_3,payable,Payable,unreconciled,liability
default_chart_a_type_4,bank,Bank,balance,asset
default_chart_a_type_5,cash,Cash,balance,asset
default_chart_a_type_6,asset,Asset,balance,asset
default_chart_a_type_7,liability,Liability,balance,liability
default_chart_a_type_8,income,Income,none,income
default_chart_a_type_9,expense,Expense,none,expense
default_chart_a_type_10,view,Income View,none,income
default_chart_a_type_11,expense,Expense View,none,expense
default_chart_a_type_12,asset,Asset View,none,asset
default_chart_a_type_13,liability,Liability View,none,liability
default_chart_a_type_14,tax,Tax,unreconciled,expense
default_chart_a_type_15,equity,Equity,balance,liability
default_chart_a_type_16,check,Check,balance,asset
1 id code name close_method report_type
2 default_chart_a_type_1 view Root/View none none
3 default_chart_a_type_2 receivable Receivable unreconciled asset
4 default_chart_a_type_3 payable Payable unreconciled liability
5 default_chart_a_type_4 bank Bank balance asset
6 default_chart_a_type_5 cash Cash balance asset
7 default_chart_a_type_6 asset Asset balance asset
8 default_chart_a_type_7 liability Liability balance liability
9 default_chart_a_type_8 income Income none income
10 default_chart_a_type_9 expense Expense none expense
11 default_chart_a_type_10 view Income View none income
12 default_chart_a_type_11 expense Expense View none expense
13 default_chart_a_type_12 asset Asset View none asset
14 default_chart_a_type_13 liability Liability View none liability
15 default_chart_a_type_14 tax Tax unreconciled expense
16 default_chart_a_type_15 equity Equity balance liability
17 default_chart_a_type_16 check Check balance asset

View File

@ -0,0 +1,4 @@
id,position_id:id,tax_src_id:id,tax_dest_id:id
default_chart_a_position_tax_1,default_chart_a_position_4,default_chart_a_tax_14,default_chart_a_tax_7
default_chart_a_position_tax_2,default_chart_a_position_17,default_chart_a_tax_8,default_chart_a_tax_15
default_chart_a_position_tax_3,default_chart_a_position_13,default_chart_a_tax_15,
1 id position_id:id tax_src_id:id tax_dest_id:id
2 default_chart_a_position_tax_1 default_chart_a_position_4 default_chart_a_tax_14 default_chart_a_tax_7
3 default_chart_a_position_tax_2 default_chart_a_position_17 default_chart_a_tax_8 default_chart_a_tax_15
4 default_chart_a_position_tax_3 default_chart_a_position_13 default_chart_a_tax_15

View File

@ -0,0 +1,18 @@
id,name,chart_template_id:id
default_chart_a_position_1,"Para Crédito Fiscal",default_chart_a,
default_chart_a_position_2,"Cosumidor Final",default_chart_a,
default_chart_a_position_3,Gubernamental,default_chart_a,
default_chart_a_position_4,"Regímenes Especiales",default_chart_a,
default_chart_a_position_5,"Gastos de personal",default_chart_a,
default_chart_a_position_6,"Gastos por trabajo, suministros y servicios",default_chart_a,
default_chart_a_position_7,Arrendamientos,default_chart_a,
default_chart_a_position_8,"Gastos de Activos Fijos",default_chart_a,
default_chart_a_position_9,"Gastos de Representación",default_chart_a,
default_chart_a_position_10,"Otras Deducciones Admitidas",default_chart_a,
default_chart_a_position_11,"Gastos Financieros",default_chart_a,
default_chart_a_position_12,"Gastos Extraordinarios",default_chart_a,
default_chart_a_position_13,"Proveedores de mercancía impuesto no incluido",default_chart_a,
default_chart_a_position_14,"Adquisiciones de Activos",default_chart_a,
default_chart_a_position_15,"Gastos Menores",default_chart_a,
default_chart_a_position_16,"Gastos de Seguro",default_chart_a,
default_chart_a_position_17,"Proveedores de mercancía impuesto incluido",default_chart_a,
Can't render this file because it has a wrong number of fields in line 2.

View File

@ -0,0 +1,27 @@
id,parent_id:id,code,sign,name,info
default_chart_a_tax_code_21,,I,1,IT-1,,
default_chart_a_tax_code_22,default_chart_a_tax_code_21,II-1,1,Total de Operaciones,,
default_chart_a_tax_code_23,default_chart_a_tax_code_22,II.A,1,INGRESOS POR EXPORTACIONES DE BIENES O SERVICIOS EXENTOS,,
default_chart_a_tax_code_24,default_chart_a_tax_code_23,II.A.2,1,INGRESOS POR EXPORTACIONES DE BIENES O SERVICIOS EXENTOS,,
default_chart_a_tax_code_25,default_chart_a_tax_code_23,II.A.3,1,INGRESOS POR VENTAS LOCALES DE BIENES O SERVICIOS EXENTOS,,
default_chart_a_tax_code_26,default_chart_a_tax_code_22,II.B,1,GRAVADAS,,
default_chart_a_tax_code_27,default_chart_a_tax_code_26,II.B.6,1,OPERACIONES GRAVADAS AL 18%,,
default_chart_a_tax_code_28,default_chart_a_tax_code_26,II.B.7,1,OPERACIONES GRAVADAS AL 11%,,
default_chart_a_tax_code_29,default_chart_a_tax_code_21,III,1,LIQUIDACION,,
default_chart_a_tax_code_30,default_chart_a_tax_code_29,III.10,1,TOTAL ITBIS COBRADO (Sumar casillas 8+9),,
default_chart_a_tax_code_31,default_chart_a_tax_code_30,III.8,1,ITBIS COBRADO (18% de la casilla 6),,
default_chart_a_tax_code_32,default_chart_a_tax_code_30,III.9,1,TBIS COBRADO (11% de la casilla 7),,
default_chart_a_tax_code_33,default_chart_a_tax_code_29,III.14,-1,TOTAL ITBIS PAGADO (Sumar casillas 11+12+13),,
default_chart_a_tax_code_34,default_chart_a_tax_code_33,III.11,-1,ITBIS PAGADO EN COMPRAS LOCALES,,
default_chart_a_tax_code_35,default_chart_a_tax_code_33,III.12,-1,ITBIS PAGADO POR SERVICIOS DEDUCIBLES,,
default_chart_a_tax_code_36,default_chart_a_tax_code_33,III.13,-1,ITBIS PAGADO EN IMPORTACIONES,,
default_chart_a_tax_code_37,default_chart_a_tax_code_21,A,1,ITBIS RETENIDO,,
default_chart_a_tax_code_38,default_chart_a_tax_code_37,A.25,1,Servicios Sujetos a Retención Personas = Físicas y Entidad,,
default_chart_a_tax_code_39,default_chart_a_tax_code_37,A.30,1,Itbis Por Servicios Sujetos A Retencion Personas Físicas,,
default_chart_a_tax_code_40,,IR-17 2014,1,IR-17 RETENCIONES Y RETRIBUCIONES COMPLEMENTARIAS 2014,,
default_chart_a_tax_code_41,default_chart_a_tax_code_40,II,1,Retenciones,,
default_chart_a_tax_code_42,default_chart_a_tax_code_41,II.1,1,ALQUILERES,,
default_chart_a_tax_code_43,default_chart_a_tax_code_41,II.2,1,HONORARIOS POR SERVICIOS INDEPENDIENTES 10%,,
default_chart_a_tax_code_44,default_chart_a_tax_code_41,II.3,1,PREMIOS (LEY 253-12) 25%,,
default_chart_a_tax_code_45,default_chart_a_tax_code_41,II.4,1,TRANSFERENCIAS DE TITULOS Y PROPIEDADES 2%,,
default_chart_a_tax_code_46,default_chart_a_tax_code_41,II.5,1,DIVIDENDOS (LEY 253-12) 10%,,
1 id,parent_id:id,code,sign,name,info
2 default_chart_a_tax_code_21,,I,1,IT-1,,
3 default_chart_a_tax_code_22,default_chart_a_tax_code_21,II-1,1,Total de Operaciones,,
4 default_chart_a_tax_code_23,default_chart_a_tax_code_22,II.A,1,INGRESOS POR EXPORTACIONES DE BIENES O SERVICIOS EXENTOS,,
5 default_chart_a_tax_code_24,default_chart_a_tax_code_23,II.A.2,1,INGRESOS POR EXPORTACIONES DE BIENES O SERVICIOS EXENTOS,,
6 default_chart_a_tax_code_25,default_chart_a_tax_code_23,II.A.3,1,INGRESOS POR VENTAS LOCALES DE BIENES O SERVICIOS EXENTOS,,
7 default_chart_a_tax_code_26,default_chart_a_tax_code_22,II.B,1,GRAVADAS,,
8 default_chart_a_tax_code_27,default_chart_a_tax_code_26,II.B.6,1,OPERACIONES GRAVADAS AL 18%,,
9 default_chart_a_tax_code_28,default_chart_a_tax_code_26,II.B.7,1,OPERACIONES GRAVADAS AL 11%,,
10 default_chart_a_tax_code_29,default_chart_a_tax_code_21,III,1,LIQUIDACION,,
11 default_chart_a_tax_code_30,default_chart_a_tax_code_29,III.10,1,TOTAL ITBIS COBRADO (Sumar casillas 8+9),,
12 default_chart_a_tax_code_31,default_chart_a_tax_code_30,III.8,1,ITBIS COBRADO (18% de la casilla 6),,
13 default_chart_a_tax_code_32,default_chart_a_tax_code_30,III.9,1,TBIS COBRADO (11% de la casilla 7),,
14 default_chart_a_tax_code_33,default_chart_a_tax_code_29,III.14,-1,TOTAL ITBIS PAGADO (Sumar casillas 11+12+13),,
15 default_chart_a_tax_code_34,default_chart_a_tax_code_33,III.11,-1,ITBIS PAGADO EN COMPRAS LOCALES,,
16 default_chart_a_tax_code_35,default_chart_a_tax_code_33,III.12,-1,ITBIS PAGADO POR SERVICIOS DEDUCIBLES,,
17 default_chart_a_tax_code_36,default_chart_a_tax_code_33,III.13,-1,ITBIS PAGADO EN IMPORTACIONES,,
18 default_chart_a_tax_code_37,default_chart_a_tax_code_21,A,1,ITBIS RETENIDO,,
19 default_chart_a_tax_code_38,default_chart_a_tax_code_37,A.25,1,Servicios Sujetos a Retención Personas = Físicas y Entidad,,
20 default_chart_a_tax_code_39,default_chart_a_tax_code_37,A.30,1,Itbis Por Servicios Sujetos A Retencion Personas Físicas,,
21 default_chart_a_tax_code_40,,IR-17 2014,1,IR-17 RETENCIONES Y RETRIBUCIONES COMPLEMENTARIAS 2014,,
22 default_chart_a_tax_code_41,default_chart_a_tax_code_40,II,1,Retenciones,,
23 default_chart_a_tax_code_42,default_chart_a_tax_code_41,II.1,1,ALQUILERES,,
24 default_chart_a_tax_code_43,default_chart_a_tax_code_41,II.2,1,HONORARIOS POR SERVICIOS INDEPENDIENTES 10%,,
25 default_chart_a_tax_code_44,default_chart_a_tax_code_41,II.3,1,PREMIOS (LEY 253-12) 25%,,
26 default_chart_a_tax_code_45,default_chart_a_tax_code_41,II.4,1,TRANSFERENCIAS DE TITULOS Y PROPIEDADES 2%,,
27 default_chart_a_tax_code_46,default_chart_a_tax_code_41,II.5,1,DIVIDENDOS (LEY 253-12) 10%,,

View File

@ -0,0 +1,19 @@
id,name,description,type_tax_use,type,amount,child_depend,sequence,parent_id:id,account_collected_id:id,account_paid_id:id,base_sign,tax_sign,base_code_id:id,tax_code_id:id,ref_base_sign,ref_tax_sign,ref_base_code_id:id,ref_tax_code_id:id,chart_template_id:id
default_chart_a_tax_1,10% Honorarios por Servicios Independientes,R-ISR 10%,purchase,percent,-0.1,false,1,,default_chart_a_account_712,default_chart_a_account_712,1,-1,default_chart_a_tax_code_43,,-1,-1,default_chart_a_tax_code_43,,default_chart_a
default_chart_a_tax_2,"ITBIS Exento en compras",C-EXENTA,purchase,percent,0,false,1,,,,1,1,,,1,1,,,default_chart_a
default_chart_a_tax_3,"ITBIS 8% Ventas","V-ITBIS 8%",sale,percent,0.11,false,1,,,,1,1,,,1,1,,,default_chart_a
default_chart_a_tax_4,"ITBIS 8% Compras","C-ITBIS 8%",purchase,percent,0.11,false,1,,,,1,1,,,1,1,,,default_chart_a
default_chart_a_tax_5,ITBIS 11% Ventas,V-ITBIS 11%,sale,percent,0.11,false,1,,,,1,1,,,1,1,,,default_chart_a
default_chart_a_tax_6,ITBIS 11% Compras,C-ITBIS 11%,purchase,percent,0.11,false,1,,,,1,1,,,1,1,,,default_chart_a
default_chart_a_tax_7,"ITBIS Exento en ventas",V-EXENTA,sale,percent,0.18,false,1,,,,1,1,default_chart_a_tax_code_25,,-1,1,default_chart_a_tax_code_25,,default_chart_a
default_chart_a_tax_8,ITBIS 18% Compras,C-ITBIS 18%,purchase,percent,0.18,false,1,,default_chart_a_account_53,default_chart_a_account_53,1,-1,,default_chart_a_tax_code_34,1,1,,default_chart_a_tax_code_34,default_chart_a
default_chart_a_tax_9,"ITBIS 18% Compras Servicios","CS-ITBIS 18%",purchase,percent,0.18,false,1,,default_chart_a_account_57,default_chart_a_account_57,1,-1,,default_chart_a_tax_code_35,1,1,,default_chart_a_tax_code_35,default_chart_a
default_chart_a_tax_10,"ITBIS 18% Compras Importaciones","IMP-ITBIS 18%",purchase,percent,0.18,false,1,,default_chart_a_account_56,default_chart_a_account_56,-1,-1,,default_chart_a_tax_code_36,1,1,,default_chart_a_tax_code_36,default_chart_a
default_chart_a_tax_12,2% Otras Retenciones (Norma 07-2007),R-ISR 2%,purchase,percent,-0.02,false,1,,,,1,1,,,1,1,,,default_chart_a
default_chart_a_tax_13,18% ITBIS Retenido,R-ITBIS 18%,purchase,percent,-0.18,false,1,,default_chart_a_account_163,default_chart_a_account_163,1,-1,default_chart_a_tax_code_38,default_chart_a_tax_code_39,-1,-1,,default_chart_a_tax_code_39,default_chart_a
default_chart_a_tax_14,ITBIS 18% Ventas,V-ITBIS 18%,sale,percent,0.18,false,10,,default_chart_a_account_71,default_chart_a_account_71,1,1,default_chart_a_tax_code_27,default_chart_a_tax_code_31,-1,-1,default_chart_a_tax_code_27,default_chart_a_tax_code_31,default_chart_a
default_chart_a_tax_15,"ITBIS 18% Compras Includo","C-ITBIS 18% Incluido",purchase,percent,0.18,false,1,,default_chart_a_account_53,default_chart_a_account_53,1,-1,,default_chart_a_tax_code_34,1,1,,default_chart_a_tax_code_34,default_chart_a
default_chart_a_tax_16,"ITBIS 18% Compras Servicios Incluido","CS-ITBIS 18% Incluido",purchase,percent,0.18,false,1,,default_chart_a_account_57,,1,-1,,default_chart_a_tax_code_35,1,1,,default_chart_a_tax_code_35,default_chart_a
default_chart_a_tax_19,ISC Telecomunicacones,TELE-ISC,purchase,percent,0.1,false,1,,default_chart_a_account_529,,1,1,,,1,1,,,default_chart_a
default_chart_a_tax_20,"CDT Telecomunicacones",TELE-CDT,purchase,percent,0.02,false,1,,default_chart_a_account_529,,1,1,,,1,1,,,default_chart_a
default_chart_a_tax_23,"10% Retencion por alquileres","R-Alquileres 10%",purchase,percent,-0.1,false,1,,default_chart_a_account_712,default_chart_a_account_712,1,1,default_chart_a_tax_code_42,,-1,-1,default_chart_a_tax_code_42,,default_chart_a
1 id name description type_tax_use type amount child_depend sequence parent_id:id account_collected_id:id account_paid_id:id base_sign tax_sign base_code_id:id tax_code_id:id ref_base_sign ref_tax_sign ref_base_code_id:id ref_tax_code_id:id chart_template_id:id
2 default_chart_a_tax_1 10% Honorarios por Servicios Independientes R-ISR 10% purchase percent -0.1 false 1 default_chart_a_account_712 default_chart_a_account_712 1 -1 default_chart_a_tax_code_43 -1 -1 default_chart_a_tax_code_43 default_chart_a
3 default_chart_a_tax_2 ITBIS Exento en compras C-EXENTA purchase percent 0 false 1 1 1 1 1 default_chart_a
4 default_chart_a_tax_3 ITBIS 8% Ventas V-ITBIS 8% sale percent 0.11 false 1 1 1 1 1 default_chart_a
5 default_chart_a_tax_4 ITBIS 8% Compras C-ITBIS 8% purchase percent 0.11 false 1 1 1 1 1 default_chart_a
6 default_chart_a_tax_5 ITBIS 11% Ventas V-ITBIS 11% sale percent 0.11 false 1 1 1 1 1 default_chart_a
7 default_chart_a_tax_6 ITBIS 11% Compras C-ITBIS 11% purchase percent 0.11 false 1 1 1 1 1 default_chart_a
8 default_chart_a_tax_7 ITBIS Exento en ventas V-EXENTA sale percent 0.18 false 1 1 1 default_chart_a_tax_code_25 -1 1 default_chart_a_tax_code_25 default_chart_a
9 default_chart_a_tax_8 ITBIS 18% Compras C-ITBIS 18% purchase percent 0.18 false 1 default_chart_a_account_53 default_chart_a_account_53 1 -1 default_chart_a_tax_code_34 1 1 default_chart_a_tax_code_34 default_chart_a
10 default_chart_a_tax_9 ITBIS 18% Compras Servicios CS-ITBIS 18% purchase percent 0.18 false 1 default_chart_a_account_57 default_chart_a_account_57 1 -1 default_chart_a_tax_code_35 1 1 default_chart_a_tax_code_35 default_chart_a
11 default_chart_a_tax_10 ITBIS 18% Compras Importaciones IMP-ITBIS 18% purchase percent 0.18 false 1 default_chart_a_account_56 default_chart_a_account_56 -1 -1 default_chart_a_tax_code_36 1 1 default_chart_a_tax_code_36 default_chart_a
12 default_chart_a_tax_12 2% Otras Retenciones (Norma 07-2007) R-ISR 2% purchase percent -0.02 false 1 1 1 1 1 default_chart_a
13 default_chart_a_tax_13 18% ITBIS Retenido R-ITBIS 18% purchase percent -0.18 false 1 default_chart_a_account_163 default_chart_a_account_163 1 -1 default_chart_a_tax_code_38 default_chart_a_tax_code_39 -1 -1 default_chart_a_tax_code_39 default_chart_a
14 default_chart_a_tax_14 ITBIS 18% Ventas V-ITBIS 18% sale percent 0.18 false 10 default_chart_a_account_71 default_chart_a_account_71 1 1 default_chart_a_tax_code_27 default_chart_a_tax_code_31 -1 -1 default_chart_a_tax_code_27 default_chart_a_tax_code_31 default_chart_a
15 default_chart_a_tax_15 ITBIS 18% Compras Includo C-ITBIS 18% Incluido purchase percent 0.18 false 1 default_chart_a_account_53 default_chart_a_account_53 1 -1 default_chart_a_tax_code_34 1 1 default_chart_a_tax_code_34 default_chart_a
16 default_chart_a_tax_16 ITBIS 18% Compras Servicios Incluido CS-ITBIS 18% Incluido purchase percent 0.18 false 1 default_chart_a_account_57 1 -1 default_chart_a_tax_code_35 1 1 default_chart_a_tax_code_35 default_chart_a
17 default_chart_a_tax_19 ISC Telecomunicacones TELE-ISC purchase percent 0.1 false 1 default_chart_a_account_529 1 1 1 1 default_chart_a
18 default_chart_a_tax_20 CDT Telecomunicacones TELE-CDT purchase percent 0.02 false 1 default_chart_a_account_529 1 1 1 1 default_chart_a
19 default_chart_a_tax_23 10% Retencion por alquileres R-Alquileres 10% purchase percent -0.1 false 1 default_chart_a_account_712 default_chart_a_account_712 1 1 default_chart_a_tax_code_42 -1 -1 default_chart_a_tax_code_42 default_chart_a

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="default_chart_a" model="account.chart.template">
<field name="name">Catálogo de Cuentas Empresas Privadas</field>
<field name="account_root_id" ref="default_chart_a_account_1"/>
<field name="bank_account_view_id" ref="default_chart_a_account_9"/>
<field name="tax_code_root_id" ref="default_chart_a_tax_code_21"/>
<field name="property_account_receivable" ref="default_chart_a_account_13"/>
<field name="property_account_payable" ref="default_chart_a_account_61"/>
<field name="property_account_expense_categ" ref="default_chart_a_account_101"/>
<field name="property_account_income_categ" ref="default_chart_a_account_87"/>
<field name="property_account_income_opening" ref="default_chart_a_account_87"/>
<field name="property_account_expense_opening" ref="default_chart_a_account_101"/>
<field name="currency_id" ref="base.DOP"/>
</record>
</data>
</openerp>

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<!--
Resource: account.journal
Add NCF Journal
-->
<record id="account_journal_cf_credito_fiscal" model="account.journal">
<field name="name">Factura que Genera Crédito Fiscal y/o Sustenta Costos y Gastos</field>
<field name="code">FCRF</field>
<field name="type">sale</field>
<field name="analytic_journal_id" ref="account.analytic_journal_sale"/>
<field name="sequence_id" ref="ir_sequence_cf_credito_fiscal"/>
</record>
<record id="account_journal_cf_consumidor_final" model="account.journal">
<field name="name">Factura a Consumidor Final (Sin valor de Crédito Fiscal)</field>
<field name="code">FCOF</field>
<field name="type">sale</field>
<field name="analytic_journal_id" ref="account.analytic_journal_sale"/>
<field name="sequence_id" ref="ir_sequence_cf_consumidor_final"/>
</record>
<record id="account_journal_cf_nota_debito" model="account.journal">
<field name="name">Nota de Débito Cliente</field>
<field name="code">ND-C</field>
<field name="type">sale</field>
<field name="analytic_journal_id" ref="account.analytic_journal_sale"/>
<field name="sequence_id" ref="ir_sequence_cf_nota_debito"/>
</record>
<record id="account_journal_cf_nota_credito" model="account.journal">
<field name="name">Nota de Crédito Cliente</field>
<field name="code">NC-C</field>
<field name="type">sale_refund</field>
<field name="sequence_id" ref="ir_sequence_cf_nota_credito"/>
</record>
<record id="account_journal_cf_proveedores_informales" model="account.journal">
<field name="name">Registro de Proveedores Informales</field>
<field name="code">RPI</field>
<field name="analytic_journal_id" ref="account.exp"/>
<field name="type">purchase</field>
<field name="sequence_id" ref="ir_sequence_cf_proveedores_informales"/>
</record>
<record id="account_journal_cf_ingreso_unico" model="account.journal">
<field name="name">Registro Único de Ingresos</field>
<field name="code">RUI</field>
<field name="type">sale</field>
<field name="analytic_journal_id" ref="account.analytic_journal_sale"/>
<field name="sequence_id" ref="ir_sequence_cf_ingreso_unico"/>
</record>
<record id="account_journal_cf_gastos_menores" model="account.journal">
<field name="name">Registro de Gastos Menores</field>
<field name="code">RGM</field>
<field name="type">purchase</field>
<field name="analytic_journal_id" ref="account.exp"/>
<field name="sequence_id" ref="ir_sequence_cf_gastos_menores"/>
</record>
<record id="account_journal_cf_regimenes_especiales" model="account.journal">
<field name="name">Registro Regimenes Especiales de Tributación</field>
<field name="code">RET</field>
<field name="type">sale</field>
<field name="analytic_journal_id" ref="account.analytic_journal_sale"/>
<field name="sequence_id" ref="ir_sequence_cf_regimenes_especiales"/>
</record>
<record id="account_journal_cf_regimenes_gubernamental" model="account.journal">
<field name="name">Gubernamental</field>
<field name="code">GOV</field>
<field name="type">sale</field>
<field name="analytic_journal_id" ref="account.analytic_journal_sale"/>
<field name="sequence_id" ref="ir_sequence_cf_gubernamentales"/>
</record>
</data>
</openerp>

View File

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<!--
Resource: ir.sequence
Add NCF sequence
-->
<record id="ir_sequence_cf_credito_fiscal" model="ir.sequence">
<field name="name">Facturas que Genera Crédito Fiscal y/o Sustenta Costos y Gastos</field>
<field name="code">cf.credito.fiscal</field>
<field name="prefix">A0100100101</field>
<field name="padding">8</field>
</record>
<record id="ir_sequence_cf_consumidor_final" model="ir.sequence">
<field name="name">Factura a Consumidor Final (Sin Valor de Crédito Fiscal)</field>
<field name="code">cf.consumidor.final</field>
<field name="prefix">A0100100102</field>
<field name="padding">8</field>
</record>
<record id="ir_sequence_cf_nota_debito" model="ir.sequence">
<field name="name">Nota de Débito</field>
<field name="active" eval="True"/>
<field name="prefix">A0100100103</field>
<field name="suffix"/>
<field name="padding">8</field>
<field name="number_increment">1</field>
<field name="number_next">1</field>
</record>
<record id="ir_sequence_cf_nota_credito" model="ir.sequence">
<field name="name">Nota de Crédito</field>
<field name="active" eval="True"/>
<field name="prefix">A0100100104</field>
<field name="suffix"/>
<field name="padding">8</field>
<field name="number_increment">1</field>
<field name="number_next">1</field>
</record>
<record id="ir_sequence_cf_proveedores_informales" model="ir.sequence">
<field name="name">Registro de Proveedores Informales</field>
<field name="active" eval="True"/>
<field name="prefix">A0100100111</field>
<field name="suffix"/>
<field name="padding">8</field>
<field name="number_increment">1</field>
<field name="number_next">1</field>
</record>
<record id="ir_sequence_cf_ingreso_unico" model="ir.sequence">
<field name="name">Registro único de ingresos</field>
<field name="active" eval="True"/>
<field name="prefix">A0100100112</field>
<field name="suffix"/>
<field name="padding">8</field>
<field name="number_increment">1</field>
<field name="number_next">1</field>
</record>
<record id="ir_sequence_cf_gastos_menores" model="ir.sequence">
<field name="name">Registro de Gastos Menores</field>
<field name="active" eval="True"/>
<field name="prefix">A0100100113</field>
<field name="suffix"/>
<field name="padding">8</field>
<field name="number_increment">1</field>
<field name="number_next">1</field>
</record>
<record id="ir_sequence_cf_regimenes_especiales" model="ir.sequence">
<field name="name">Registro regimenes especiales de tributación</field>
<field name="code">cf.regimenes.especiales</field>
<field name="prefix">A0100100114</field>
<field name="padding">8</field>
</record>
<record id="ir_sequence_cf_gubernamentales" model="ir.sequence">
<field name="name">Gubernamentales</field>
<field name="code">cf.regimenes.gubernamentales</field>
<field name="prefix">A0100100115</field>
<field name="padding">8</field>
</record>
</data>
</openerp>

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!--
Resource: ir.sequence.type
Add NCF sequence code
-->
<record id="ir_sequence_type_cf_credito_fiscal" model="ir.sequence.type">
<field name="name">Facturas que Genera Crédito Fiscal y/o Sustenta Costos y Gastos</field>
<field name="code">cf.credito.fiscal</field>
</record>
<record id="ir_sequence_type_cf_consumidor_final" model="ir.sequence.type">
<field name="name">Factura a Consumidor Final (Sin valor de Credito Fiscal)</field>
<field name="code">cf.consumidor.final</field>
</record>
<record id="ir_sequence_type_cf_nota_debito" model="ir.sequence.type">
<field name="name">Nota de Débito</field>
<field name="code">cf.nota.debito</field>
</record>
<record id="ir_sequence_type_cf_nota_credito" model="ir.sequence.type">
<field name="name">Nota de Crédito</field>
<field name="code">cf.nota.credito</field>
</record>
<record id="ir_sequence_type_cf_proveedores_informales" model="ir.sequence.type">
<field name="name">Registro proveedores informales</field>
<field name="code">cf.proveedores.informales</field>
</record>
<record id="ir_sequence_type_cf_ingreso_unico" model="ir.sequence.type">
<field name="name">Registro único de ingresos</field>
<field name="code">cf.ingreso.unico</field>
</record>
<record id="ir_sequence_type_cf_gastos_menores" model="ir.sequence.type">
<field name="name">Registro de gastos menores</field>
<field name="code">cf.gastos.menores</field>
</record>
<record id="ir_sequence_type_cf_regimenes_especiales" model="ir.sequence.type">
<field name="name">Registro regimenes especiales de tributación</field>
<field name="code">cf.regimenes.especiales</field>
</record>
<record id="ir_sequence_type_cf_gubernamentales" model="ir.sequence.type">
<field name="name">Gubernamentales</field>
<field name="code">cf.regimenes.gubernamentales</field>
</record>
</data>
</openerp>

View File

@ -0,0 +1,210 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!--
Resource: res.country.state
Update states using ISO 3166-2:DO codes
-->
<record id="state_DO_01" model="res.country.state">
<field name="code">01</field>
<field name="name">Distrito Nacional</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_02" model="res.country.state">
<field name="code">02</field>
<field name="name">Azua</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_03" model="res.country.state">
<field name="code">03</field>
<field name="name">Bahoruco</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_4" model="res.country.state">
<field name="code">04</field>
<field name="name">Barahona</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_05" model="res.country.state">
<field name="code">05</field>
<field name="name">Dajabon</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_06" model="res.country.state">
<field name="code">06</field>
<field name="name">Duarte</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_07" model="res.country.state">
<field name="code">07</field>
<field name="name">Elias Piña</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_08" model="res.country.state">
<field name="code">08</field>
<field name="name">El Seybo</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_09" model="res.country.state">
<field name="code">09</field>
<field name="name">Espaillat</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_10" model="res.country.state">
<field name="code">10</field>
<field name="name">Independencia</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_11" model="res.country.state">
<field name="code">11</field>
<field name="name">La Altagracia</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_12" model="res.country.state">
<field name="code">12</field>
<field name="name">La Romana</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_13" model="res.country.state">
<field name="code">13</field>
<field name="name">La Vega</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_14" model="res.country.state">
<field name="code">14</field>
<field name="name">Maria Trinidad Sanchez</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_15" model="res.country.state">
<field name="code">15</field>
<field name="name">Monte Cristi</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_16" model="res.country.state">
<field name="code">16</field>
<field name="name">Pedernales</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_17" model="res.country.state">
<field name="code">17</field>
<field name="name">Peravia</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_18" model="res.country.state">
<field name="code">18</field>
<field name="name">Puerto Plata</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_19" model="res.country.state">
<field name="code">19</field>
<field name="name">Hermanas Mirabal</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_20" model="res.country.state">
<field name="code">20</field>
<field name="name">Samana</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_21" model="res.country.state">
<field name="code">21</field>
<field name="name">San Cristobal</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_22" model="res.country.state">
<field name="code">22</field>
<field name="name">San Juan de la Maguana</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_23" model="res.country.state">
<field name="code">23</field>
<field name="name">San Pedro de Macoris</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_24" model="res.country.state">
<field name="code">24</field>
<field name="name">Sanchez Ramirez</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_25" model="res.country.state">
<field name="code">25</field>
<field name="name">Santiago</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_26" model="res.country.state">
<field name="code">26</field>
<field name="name">Santiago Rodriguez</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_27" model="res.country.state">
<field name="code">27</field>
<field name="name">Valverde</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_28" model="res.country.state">
<field name="code">28</field>
<field name="name">Monseñor Nouel</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_29" model="res.country.state">
<field name="code">28</field>
<field name="name">Monte Plata</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_30" model="res.country.state">
<field name="code">30</field>
<field name="name">Hato Mayor</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_31" model="res.country.state">
<field name="code">31</field>
<field name="name">San Jose de Ocoa</field>
<field name="country_id" ref="base.do"/>
</record>
<record id="state_DO_32" model="res.country.state">
<field name="code">32</field>
<field name="name">Santo Domingo</field>
<field name="country_id" ref="base.do"/>
</record>
<!--
Resource: res.partner.title
Update partner titles
-->
<record id="res_partner_title_dr" model="res.partner.title">
<field name="name">Doctor</field>
<field name="shortcut">Dr.</field>
<field name="domain">contact</field>
</record>
<record id="res_partner_title_dra" model="res.partner.title">
<field name="name">Doctora</field>
<field name="shortcut">Dra.</field>
<field name="domain">contact</field>
</record>
<record id="res_partner_title_msc" model="res.partner.title">
<field name="name">Msc.</field>
<field name="shortcut">Msc.</field>
<field name="domain">contact</field>
</record>
<record id="res_partner_title_mba" model="res.partner.title">
<field name="name">MBA</field>
<field name="shortcut">MBA</field>
<field name="domain">contact</field>
</record>
<record id="res_partner_title_lic" model="res.partner.title">
<field name="name">Licenciado</field>
<field name="shortcut">Lic.</field>
<field name="domain">contact</field>
</record>
<record id="res_partner_title_licda" model="res.partner.title">
<field name="name">Licenciada</field>
<field name="shortcut">Licda.</field>
<field name="domain">contact</field>
</record>
<record id="res_partner_title_ing" model="res.partner.title">
<field name="name">Ingeniero/a</field>
<field name="shortcut">Ing.</field>
<field name="domain">contact</field>
</record>
</data>
</openerp>

View File

@ -0,0 +1,7 @@
<openerp>
<data noupdate="1">
<record id="account.action_wizard_multi_chart_todo" model="ir.actions.todo">
<field name="state">open</field>
</record>
</data>
</openerp>

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB