Imported charts with proper report types
This commit is contained in:
parent
e0f98d7202
commit
e67202484d
@ -10,7 +10,7 @@ from unidecode import unidecode
|
||||
class DocType:
|
||||
def __init__(self, d, dl):
|
||||
self.doc, self.doclist = d, dl
|
||||
self.no_root_type = False
|
||||
self.no_report_type = False
|
||||
|
||||
def create_accounts(self, company):
|
||||
chart = {}
|
||||
@ -18,6 +18,9 @@ class DocType:
|
||||
self.doc.source_file), "r") as f:
|
||||
chart = json.loads(f.read())
|
||||
|
||||
from erpnext.accounts.doctype.chart_of_accounts.charts.account_properties \
|
||||
import account_properties
|
||||
|
||||
if chart:
|
||||
accounts = []
|
||||
def _import_accounts(children, parent):
|
||||
@ -29,35 +32,34 @@ class DocType:
|
||||
count = accounts.count(account_name_in_db)
|
||||
account_name = account_name + " " + cstr(count)
|
||||
|
||||
child.update(account_properties.get(chart.get("name"), {}).get(account_name))
|
||||
|
||||
account = frappe.bean({
|
||||
"doctype": "Account",
|
||||
"account_name": account_name,
|
||||
"company": company,
|
||||
"parent_account": parent,
|
||||
"group_or_ledger": "Group" if child.get("children") else "Ledger",
|
||||
"root_type": child.get("root_type"),
|
||||
"report_type": child.get("report_type"),
|
||||
"account_type": child.get("account_type")
|
||||
}).insert()
|
||||
|
||||
accounts.append(account_name_in_db)
|
||||
|
||||
# set root_type for all parents where blank
|
||||
if not account.doc.root_type or account.doc.root_type == 'None':
|
||||
self.no_root_type = True
|
||||
elif self.no_root_type:
|
||||
frappe.db.sql("""update tabAccount set root_type=%s
|
||||
where lft<=%s and rgt>=%s and ifnull(root_type, '')=''""",
|
||||
(account.doc.root_type, account.doc.lft, account.doc.rgt))
|
||||
# set report_type for all parents where blank
|
||||
if not account.doc.report_type or account.doc.report_type == 'None':
|
||||
self.no_report_type = True
|
||||
elif self.no_report_type:
|
||||
frappe.db.sql("""update tabAccount set report_type=%s
|
||||
where lft<=%s and rgt>=%s and ifnull(report_type, '')=''""",
|
||||
(account.doc.report_type, account.doc.lft, account.doc.rgt))
|
||||
|
||||
if child.get("children"):
|
||||
_import_accounts(child.get("children"), account.doc.name)
|
||||
|
||||
_import_accounts(chart.get("root").get("children"), None)
|
||||
|
||||
# set root_type for root accounts
|
||||
for acc in frappe.db.sql("""select name, lft, rgt from `tabAccount`
|
||||
where ifnull(parent_account, '')=''""", as_dict=1):
|
||||
root_types = frappe.db.sql_list("""select distinct root_type from tabAccount
|
||||
where lft>%s and rgt<%s""", (acc.lft, acc.rgt))
|
||||
if len(root_types) > 1:
|
||||
frappe.db.set_value("Account", acc.name, "root_type", None)
|
||||
@frappe.whitelist()
|
||||
def get_charts_for_country(country):
|
||||
return frappe.db.sql_list("select chart_name from `tabChart of Accounts` where country=%s",
|
||||
country)
|
@ -49,23 +49,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Recupero de Rezagos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta de Bienes de Uso",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Recupero de Deudores Incobrables",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta Inversiones Permanentes",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donaciones obtenidas, ganandas, percibidas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Positivos Extraordinarios"
|
||||
@ -74,40 +74,40 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Comisiones gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Descuentos gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Renta de T\u00edtulos P\u00fablicos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Honorarios gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Ventas - Categoria de productos 01",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Positivos Ordinarios"
|
||||
},
|
||||
{
|
||||
"name": "Intereses gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alquileres gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta de Acciones",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Positivos Ordinarios"
|
||||
@ -121,7 +121,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Publicidad y Propaganda",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Servicios P\u00fablicos"
|
||||
@ -130,22 +130,22 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Costo de Mercader\u00edas Vendidas"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Amortizaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Cargas Sociales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Sueldos y Jormales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos Bancarios"
|
||||
@ -155,7 +155,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Depreciaci\u00f3n de Bienes de Uso",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Negativos Ordinarios"
|
||||
@ -164,15 +164,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos en Siniestros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donaciones Cedidas, Otorgadas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "P\u00e9rdida Venta Bienes de Uso",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Negativos Extraordinarios"
|
||||
@ -191,7 +191,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Bienes de Uso",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Ajustes al Patrimonio"
|
||||
@ -200,11 +200,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Aportes No Capitalizados / Aportes Irrevocables Futura Suscripci\u00f3n de Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Aportes No Capitalizados / Primas de Emsi\u00f3n",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Aportes No Capitalizados"
|
||||
@ -213,19 +213,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Capital social / Dividendos a Distribuir en Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital social / Acciones en Circulaci\u00f3n",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital social / Capital Suscripto",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital social / (-) Descuento de Emisi\u00f3n de Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Capital Social"
|
||||
@ -234,19 +234,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Resultados Acumulados",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Resultado del Ejercicio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Ganancias y P\u00e9rdidas del Ejercicio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Resultados Acumulados del Ejercicio Anterior",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Resultados No Asignados"
|
||||
@ -255,19 +255,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Reserva para Renovaci\u00f3n de Bienes de Uso",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Estatutaria",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Facultativa",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Legal",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Ganancias Reservadas"
|
||||
@ -281,19 +281,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Sociales / Retenciones a Depositar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Sociales / Sueldos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Sociales / Provisi\u00f3n para Sueldo Anual Complementario",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Sociales / Cargas Sociales a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Deudas Sociales"
|
||||
@ -302,19 +302,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otras Deudas / Acreedores Varios",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Deudas / Honorarios Directores y S\u00edndicos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Deudas / Dividendos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Deudas / Cobros por Adelantado",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otras Deudas"
|
||||
@ -323,15 +323,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Previsiones / Previsi\u00f3n para Garant\u00edas por Service",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Previsiones / Previsi\u00f3n para juicios Pendientes",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Previsiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Previsiones"
|
||||
@ -340,15 +340,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Comerciales / Anticipos de Clientes",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Comerciales / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Comerciales / Proveedores",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Deudas Comerciales"
|
||||
@ -357,23 +357,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Debentures Emitidos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Intereses a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Obligaciones a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Prestamos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Adelantos en Cuenta Corriente",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Deudas Bancarias y Financieras"
|
||||
@ -382,27 +382,27 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Fiscales / Impuesto sobre los Bienes Personales a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Fiscales / Impuesto a la Ganancia M\u00ednima Presunta a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Fiscales / Monotributo a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Fiscales / IVA a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Fiscales / Impuesto a los D\u00e9bitos y Cr\u00e9ditos Bancarios a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Fiscales / Impuesto a las Ganancias a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Deudas Fiscales"
|
||||
@ -414,39 +414,39 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Anticipo de Impuestos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Anticipos a Proveedores",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Pr\u00e9stamos otorgados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Accionistas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Intereses Pagados por Adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Alquileres Pagados por Adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Anticipo al Personal",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / (-) Intereses (+) a Devengar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / (-) Previsi\u00f3n para Descuentos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otros Cr\u00e9ditos"
|
||||
@ -455,23 +455,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cr\u00e9ditos por Ventas / Deudores por Ventas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos por Ventas / Deudores Morosos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos por Ventas / Deudores en Gesti\u00f3n Judicial",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos por Ventas / Deudores Varios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos por Ventas / (-) Previsi\u00f3n para Ds. Incobrables",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cr\u00e9ditos por Ventas"
|
||||
@ -482,26 +482,26 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y bancos - Valores a Depositar ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y Bancos.../ BCO. CTA CTE ARS",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Cuentas Corrientes"
|
||||
},
|
||||
{
|
||||
"name": "Caja y bancos - Recaudaciones a Depositar ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y bancos - Caja / efectivo ARS",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Caja"
|
||||
@ -510,7 +510,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y ...- Fondos fijos / caja chica 01 ARS",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Fondos fijos"
|
||||
@ -519,7 +519,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y bancos - Caja / efectivo USD",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Moneda Extranjera"
|
||||
@ -533,34 +533,34 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Bienes de Cambio - Mercader\u00edas / Categoria de productos 01",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Bienes de Cambio - Mercader\u00edas"
|
||||
},
|
||||
{
|
||||
"name": "Materias primas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Cambio - Mercader\u00edas en Tr\u00e1nsito",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos Elaborados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos en Curso de Elaboraci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Bienes de Cambio",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Materiales Varios ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Bienes de Cambio"
|
||||
@ -569,19 +569,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / Acciones Permanentes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / Acciones Transitorias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Inversiones"
|
||||
@ -590,19 +590,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Bienes Inmateriales / (-) Amortizaci\u00f3n Acumulada",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes Inmateriales / Patentes de Invenci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes Inmateriales / Concesiones y Franquicias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes Inmateriales / Marcas de F\u00e1brica",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Bienes Inmateriales"
|
||||
@ -611,23 +611,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Bienes de Uso / Inmuebles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Uso / Maquinaria",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Uso / Rodados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Uso / (-) Depreciaci\u00f3n Acumulada",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Uso / Equipos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Bienes de Uso"
|
||||
@ -650,15 +650,15 @@
|
||||
},
|
||||
{
|
||||
"name": "Costos de Producci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de Administraci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de Comercializaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas de Movimiento"
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -49,23 +49,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Recupero de Rezagos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta de Bienes de Uso",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Recupero de Deudores Incobrables",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta Inversiones Permanentes",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donaciones obtenidas, ganandas, percibidas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Positivos Extraordinarios"
|
||||
@ -74,40 +74,40 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Comisiones gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Descuentos gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Renta de T\u00edtulos P\u00fablicos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Honorarios gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Ventas - Categoria de productos 01",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ventas"
|
||||
},
|
||||
{
|
||||
"name": "Intereses gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alquileres gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta de Acciones",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Positivos Ordinarios"
|
||||
@ -121,7 +121,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Publicidad y Propaganda",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Servicios P\u00fablicos"
|
||||
@ -130,22 +130,22 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Costo de Mercader\u00edas Vendidas"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Amortizaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Cargas Sociales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Sueldos y Jormales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos Bancarios"
|
||||
@ -155,7 +155,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Depreciaci\u00f3n de Bienes de Uso",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Negativos Ordinarios"
|
||||
@ -164,15 +164,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos en Siniestros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donaciones Cedidas, Otorgadas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "P\u00e9rdida Venta Bienes de Uso",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Resultados Negativos Extraordinarios"
|
||||
@ -191,7 +191,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Bienes de Uso",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Ajustes al Patrimonio"
|
||||
@ -200,11 +200,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Aportes No Capitalizados / Aportes Irrevocables Futura Suscripci\u00f3n de Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Aportes No Capitalizados / Primas de Emsi\u00f3n",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Aportes No Capitalizados"
|
||||
@ -213,19 +213,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Capital social / Dividendos a Distribuir en Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital social / Acciones en Circulaci\u00f3n",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital social / Capital Suscripto",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital social / (-) Descuento de Emisi\u00f3n de Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Capital Social"
|
||||
@ -234,19 +234,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Resultados Acumulados",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Resultado del Ejercicio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Ganancias y P\u00e9rdidas del Ejercicio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Resultados Acumulados del Ejercicio Anterior",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Resultados No Asignados"
|
||||
@ -255,19 +255,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Reserva para Renovaci\u00f3n de Bienes de Uso",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Estatutaria",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Facultativa",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Legal",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Ganancias Reservadas"
|
||||
@ -281,19 +281,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Sociales / Retenciones a Depositar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Sociales / Sueldos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Sociales / Provisi\u00f3n para Sueldo Anual Complementario",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Sociales / Cargas Sociales a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Deudas Sociales"
|
||||
@ -302,19 +302,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otras Deudas / Acreedores Varios",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Deudas / Honorarios Directores y S\u00edndicos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Deudas / Dividendos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Deudas / Cobros por Adelantado",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otras Deudas"
|
||||
@ -323,15 +323,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Previsiones / Previsi\u00f3n para Garant\u00edas por Service",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Previsiones / Previsi\u00f3n para juicios Pendientes",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Previsiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Previsiones"
|
||||
@ -340,15 +340,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Comerciales / Anticipos de Clientes",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Comerciales / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Comerciales / Proveedores",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Deudas Comerciales"
|
||||
@ -357,23 +357,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Letras de Cambio Emitidos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Intereses a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Obligaciones a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Prestamos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Bancarias y Financieras / Adelantos en Cuenta Corriente",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Deudas Bancarias y Financieras"
|
||||
@ -382,15 +382,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Fiscales / IVA a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Fiscales / Impuesto a las Transacciones IT a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudas Fiscales / Impuesto a las Utilidades de Empresas IUE a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Deudas Fiscales"
|
||||
@ -404,26 +404,26 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y bancos - Valores a Depositar ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y Bancos.../ BCO. CTA CTE BOB",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Cuentas Corrientes"
|
||||
},
|
||||
{
|
||||
"name": "Caja y bancos - Recaudaciones a Depositar ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y bancos - Caja / efectivo en BOB",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Caja"
|
||||
@ -432,7 +432,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y ...- Fondos fijos / caja chica 01 BOB",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Fondos fijos"
|
||||
@ -441,7 +441,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja y bancos - Caja / efectivo USD",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Moneda Extranjera"
|
||||
@ -453,39 +453,39 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Anticipo de Impuestos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Anticipos a Proveedores",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Pr\u00e9stamos otorgados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Accionistas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Intereses Pagados por Adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Alquileres Pagados por Adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / Anticipo al Personal",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / (-) Intereses (+) a Devengar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros Cr\u00e9ditos / (-) Previsi\u00f3n para Descuentos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otros Cr\u00e9ditos"
|
||||
@ -494,23 +494,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cr\u00e9ditos fiscal IVA / Deudores por Ventas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos fiscal IVA / Deudores Morosos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos fiscal IVA / Deudores en Gesti\u00f3n Judicial",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos fiscal IVA / Deudores Varios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos fiscal IVA / (-) Previsi\u00f3n para Ds. Incobrables",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cr\u00e9ditos fiscal IVA"
|
||||
@ -521,34 +521,34 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Bienes de Cambio - Existencia de Mercader\u00edas / Categoria de productos 01",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Bienes de Cambio - Mercader\u00edas"
|
||||
},
|
||||
{
|
||||
"name": "Materias primas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Cambio - Mercader\u00edas en Tr\u00e1nsito",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos Elaborados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos en Curso de Elaboraci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Desvalorizaci\u00f3n de Existencias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Materiales Varios ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Bienes de Cambio o Realizables"
|
||||
@ -557,19 +557,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / Acciones Permanentes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / Acciones Transitorias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Inversiones"
|
||||
@ -578,19 +578,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Bienes Intangibles / (-) Amortizaci\u00f3n Acumulada",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes Intangibles / Patentes de Invenci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes Intangibles / Concesiones y Franquicias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes Intangibles / Marcas de F\u00e1brica",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Bienes Intangibles"
|
||||
@ -599,23 +599,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Bienes de Uso / Inmuebles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Uso / Maquinaria",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Uso / Veh\u00edculos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Uso / (-) Depreciaci\u00f3n Acumulada Bienes de Uso",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bienes de Uso / Equipos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Bienes de Uso"
|
||||
@ -638,15 +638,15 @@
|
||||
},
|
||||
{
|
||||
"name": "Costos de Producci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de Administraci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de Comercializaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas de Movimiento"
|
||||
|
@ -10,315 +10,315 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Manuten\u00e7\u00e3o e Reparo de Bens Aplicados na Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 EXTERIOR",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 Previd\u00eancia Social",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Remunera\u00e7\u00e3o a Dirigentes de Ligados \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados por Cooperativa de Trabalho",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Consumo de Insumos",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Planos de Poupan\u00e7a e Investimentos de Empregados Ligados \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Plano de Previd\u00eancia Privada de Empregados Ligados \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alimenta\u00e7\u00e3o do Trabalhador",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 PA\u00cdS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Arrendamento Mercantil",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 FGTS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Fundo de Aposentadoria Programada Individual de Empregados Ligados \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Outros Gastos com Pessoal Ligado \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados por Pessoa F\u00edsica sem V\u00ednculo Empregat\u00edcio",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Presta\u00e7\u00e3o de Servi\u00e7os por Pessoa F\u00edsica sem V\u00ednculo Empregat\u00edcio",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos de Deprecia\u00e7\u00e3o, Amortiza\u00e7\u00e3o e Exaust\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 Outros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Constitui\u00e7\u00e3o de Provis\u00f5es",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Presta\u00e7\u00e3o de Servi\u00e7o Pessoa Jur\u00eddica",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Custo do Pessoal Aplicado na Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Outros Custos",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Loca\u00e7\u00e3o de M\u00e3o-de-obra",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados Pessoa Jur\u00eddica",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CUSTO DOS PRODUTOS DE FABRICA\u00c7\u00c3O PR\u00d3PRIA PRODUZIDOS DA ATIVIDADE RURAL",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Outros Custos",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Fundo de Aposentadoria Programada Individual de Empregados Ligados \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Planos de Poupan\u00e7a e Investimentos de Empregados Ligados \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Outros Gastos com Pessoal Ligado \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Loca\u00e7\u00e3o de M\u00e3o-de-obra",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Constitui\u00e7\u00e3o de Provis\u00f5es",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 EXTERIOR",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 Previd\u00eancia Social",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Consumo de Insumos",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados por Cooperativa de Trabalho",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Manuten\u00e7\u00e3o e Reparo de Bens Aplicados na Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Presta\u00e7\u00e3o de Servi\u00e7os por Pessoa F\u00edsica sem V\u00ednculo Empregat\u00edcio",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Remunera\u00e7\u00e3o a Dirigentes de Ligados \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 PA\u00cdS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 FGTS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados por Pessoa F\u00edsica sem V\u00ednculo Empregat\u00edcio",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Presta\u00e7\u00e3o de Servi\u00e7o Pessoa Jur\u00eddica",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Plano de Previd\u00eancia Privada de Empregados Ligados \u00e0 Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Custo do Pessoal Aplicado na Produ\u00e7\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Arrendamento Mercantil",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos de Deprecia\u00e7\u00e3o, Amortiza\u00e7\u00e3o e Exaust\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados Pessoa Jur\u00eddica",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alimenta\u00e7\u00e3o do Trabalhador",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 Outros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CUSTO DOS PRODUTOS DE FABRICA\u00c7\u00c3O PR\u00d3PRIA PRODUZIDOS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Encargos de Deprecia\u00e7\u00e3o, Amortiza\u00e7\u00e3o e Exaust\u00e3o",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Presta\u00e7\u00e3o de Servi\u00e7os por Pessoa F\u00edsica sem V\u00ednculo Empregat\u00edcio",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 PA\u00cdS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Manuten\u00e7\u00e3o e Reparo de Bens Aplicados na Produ\u00e7\u00e3o de Servi\u00e7os",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Constitui\u00e7\u00e3o de Provis\u00f5es",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 Outros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alimenta\u00e7\u00e3o do Trabalhador",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Outros Custos",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados Pessoa Jur\u00eddica",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Loca\u00e7\u00e3o de M\u00e3o-de-obra",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Material Aplicado na Produ\u00e7\u00e3o de Servi\u00e7os",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Plano de Previd\u00eancia Privada de Empregados Ligados \u00e0 Produ\u00e7\u00e3o de Servi\u00e7os",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Fundo de Aposentadoria Programada Individual de Empregados Ligados \u00e0 Produ\u00e7\u00e3o de Servi\u00e7os",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Planos de Poupan\u00e7a e Investimentos de Empregados Ligados \u00e0 Produ\u00e7\u00e3o de Servi\u00e7os",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Custo do Pessoal Aplicado na Produ\u00e7\u00e3o de Servi\u00e7os",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Outros Gastos com Pessoal Ligado \u00e0 Produ\u00e7\u00e3o de Servi\u00e7os",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados por Cooperativa de Trabalho",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 Previd\u00eancia Social",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Arrendamento Mercantil",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os Prestados por Pessoa F\u00edsica sem V\u00ednculo Empregat\u00edcio",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Presta\u00e7\u00e3o de Servi\u00e7o Pessoa Jur\u00eddica",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Remunera\u00e7\u00e3o a Dirigentes ligados \u00e0 Produ\u00e7\u00e3o de Servi\u00e7os",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 EXTERIOR",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Encargos Sociais \u2013 FGTS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CUSTO DOS SERVI\u00c7OS PRODUZIDOS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CUSTO DOS BENS E SERVI\u00c7OS PRODUZIDOS",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CUSTOS DE PRODU\u00c7\u00c3O",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -842,214 +842,214 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Contas Banc\u00e1rias \u2013 Subven\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Valores Mobili\u00e1rios - Mercado de Capitais Interno",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Recursos no Exterior Decorrentes de Exporta\u00e7\u00e3o",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Valores Mobili\u00e1rios \u2013 Aplica\u00e7\u00f5es de Subven\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Valores Mobili\u00e1rios - Mercado de Capitais Externo",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Valores Mobili\u00e1rios \u2013 Aplica\u00e7\u00f5es de Outros Recursos Sujeitos a Restri\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Bancos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Bank",
|
||||
"name": "Caixa",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Outras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Contas Banc\u00e1rias \u2013 Outros Recursos Sujeitos a Restri\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Contas Banc\u00e1rias \u2013 Doa\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Valores Mobili\u00e1rios \u2013 Aplica\u00e7\u00f5es de Doa\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DISPONIBILIDADES",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Im\u00f3veis Destinados \u00e0 Venda",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Constru\u00e7\u00f5es em Andamento de Im\u00f3veis Destinados \u00e0 Venda",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Produtos Agropecu\u00e1rios em Forma\u00e7\u00e3o",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Insumos Agropecu\u00e1rios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Servi\u00e7os em andamento",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Produtos Acabados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Produtos em Elabora\u00e7\u00e3o",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Insumos (materiais diretos)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Mercadorias para Revenda",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Produtos Agropecu\u00e1rios Acabados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Estoques Destinados \u00e0 Doa\u00e7\u00e3o",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Outras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "ESTOQUES",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Clientes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Adiantamentos a Fornecedores",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos Fiscais IRPJ \u2013 Diferen\u00e7as Tempor\u00e1rias e Preju\u00edzos Fiscais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Outras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos Fiscais CSLL \u2013 Diferen\u00e7as Tempor\u00e1rias e Base de C\u00e1lculo Negativa",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos por Contribui\u00e7\u00f5es e Doa\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "ICMS e Contribui\u00e7\u00f5es a Recuperar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "CSLL a Recuperar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Tributos Municipais a Recuperar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Imposto de Renda a Recuperar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "PIS e COFINS a Recuperar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "IPI a Recuperar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Outros Impostos e Contribui\u00e7\u00f5es a Recuperar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "CR\u00c9DITOS",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Outras Contas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Despesas do Exerc\u00edcio Seguinte",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DESPESAS DO EXERC\u00cdCIO SEGUINTE",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "(-) Outras Contas Retificadoras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Provis\u00e3o para Ajuste do Estoque ao Valor de Mercado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Provis\u00f5es para Ajuste ao Valor Prov\u00e1vel de Realiza\u00e7\u00e3o",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Duplicatas Descontadas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Provis\u00f5es para Cr\u00e9ditos de Liquida\u00e7\u00e3o Duvidosa",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "CONTAS RETIFICADORAS",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "CIRCULANTE",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -1057,252 +1057,252 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Despesas Pr\u00e9-Operacionais ou Pr\u00e9-Industriais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Amortiza\u00e7\u00e3o do Diferido",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Corre\u00e7\u00e3o Monet\u00e1ria Especial (Lei no 8.200/1991)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Corre\u00e7\u00e3o Monet\u00e1ria - Diferen\u00e7a IPC/BTNF (Lei no 8.200/1991)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Demais Aplica\u00e7\u00f5es em Despesas Amortiz\u00e1veis",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Despesas com Pesquisas Cient\u00edficas ou Tecnol\u00f3gicas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DIFERIDO",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Florestamento e Reflorestamento",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Corre\u00e7\u00e3o Monet\u00e1ria Especial (Lei no 8.200/1991)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Terrenos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Aeronaves",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Embarca\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Ve\u00edculos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Constru\u00e7\u00f5es em Andamento",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Edif\u00edcios e Constru\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Corre\u00e7\u00e3o Monet\u00e1ria - Diferen\u00e7a IPC/BTNF (Lei no 8.200/1991)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Direitos Contratuais de Explora\u00e7\u00e3o de Florestas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "M\u00f3veis, Utens\u00edlios e Instala\u00e7\u00f5es Comerciais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Recursos Minerais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Outras Contas Redutoras do Imobilizado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Equipamentos, M\u00e1quinas e Instala\u00e7\u00f5es Industriais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Deprecia\u00e7\u00f5es, Amortiza\u00e7\u00f5es e Quotas de Exaust\u00e3o",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Outras Imobiliza\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "IMOBILIZADO",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "\u00c1gios em Investimentos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Des\u00e1gios e Provis\u00e3o para Perdas Prov\u00e1veis em Investimentos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Outras Contas Retificadoras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Outros Investimentos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Corre\u00e7\u00e3o Monet\u00e1ria Especial (Lei no 8.200/1991)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Outras Contas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Investimentos Decorrentes de Incentivos Fiscais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Corre\u00e7\u00e3o Monet\u00e1ria - Diferen\u00e7a IPC/BTNF (Lei no 8.200/1991)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Participa\u00e7\u00f5es Permanentes em Coligadas ou Controladas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "INVESTIMENTOS",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Fundo de Com\u00e9rcio",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Desenvolvimento de Produtos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Concess\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Franquias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Direitos Autorais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Marcas e Patentes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Amortiza\u00e7\u00e3o do Intang\u00edvel",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Outras Contas Redutoras do Intang\u00edvel",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Outras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Software ou Programas de Computador",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "INTANG\u00cdVEL",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Outras Contas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Provis\u00f5es para Cr\u00e9ditos de Liquida\u00e7\u00e3o Duvidosa",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos com Pessoas Ligadas (F\u00edsicas/Jur\u00eddicas)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos por Contribui\u00e7\u00f5es e Doa\u00e7\u00f5es",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Valores Mobili\u00e1rios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Outras Contas Retificadoras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Dep\u00f3sitos Judiciais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Provis\u00f5es para Ajuste ao Valor Prov\u00e1vel de Realiza\u00e7\u00e3o",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Duplicatas Descontadas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos Fiscais CSLL \u2013 Diferen\u00e7as Tempor\u00e1rias e Base de C\u00e1lculo Negativa",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cr\u00e9ditos Fiscais IRPJ \u2013 Diferen\u00e7as Tempor\u00e1rias e Preju\u00edzos Fiscais",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Clientes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "REALIZ\u00c1VEL A LONGO PRAZO",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "N\u00c3O CIRCULANTE",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "ATIVO",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -2173,7 +2173,7 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Fornecedores",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Adiantamentos de Clientes"
|
||||
@ -2233,7 +2233,7 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Fornecedores",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Doa\u00e7\u00f5es e Subven\u00e7\u00f5es para Investimentos"
|
||||
|
@ -8,22 +8,22 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "International Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Inside Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Non-Harmonized Provinces Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "OTHER OPERATING INCOMES"
|
||||
},
|
||||
{
|
||||
"name": "Harmonized Provinces Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "OPERATING INCOMES"
|
||||
@ -56,17 +56,17 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "HST receivable - 13%",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "HST receivable - 15%",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "HST receivable - 14%",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "HST receivable"
|
||||
@ -74,12 +74,12 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "PST/QST receivable",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "GST receivable",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "TAXES RECEIVABLES"
|
||||
@ -94,11 +94,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Stock In Hand",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Stock Delivered But Not Billed",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "STOCKS"
|
||||
@ -114,7 +114,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Customers Account",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "ALLOWANCE FOR DOUBTFUL ACCOUNTS"
|
||||
@ -166,19 +166,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "International Purchases",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Purchases in non-harmonized provinces",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Purchases in harmonized provinces",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Inside Purchases",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "COST OF GOODS SOLD"
|
||||
@ -193,43 +193,43 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Parental Insurance",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Holidays",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Labour Health and Safety",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Employment Insurance",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Federal Income Tax",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Salaries, wages and commissions",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Annuities",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Provincial Income Tax",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Labour Standards",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Health Services Fund",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "LABOUR EXPENSES"
|
||||
@ -263,40 +263,40 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Annuities - Employees Contribution",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Annuities - Employer Contribution",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "ANNUITIES TO PAY"
|
||||
},
|
||||
{
|
||||
"name": "Health Services Fund to pay",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Labour Health and Safety to pay",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Provincial Income Tax",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Labour Standards to pay",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "PAP - Employer Contribution",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "PAP - Employee Contribution",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "PARENTAL INSURANCE PLAN TO PAY"
|
||||
@ -310,18 +310,18 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "EI - Employees Contribution",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "EI - Employer Contribution",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "EMPLOYMENT INSURANCE TO PAY"
|
||||
},
|
||||
{
|
||||
"name": "Federal Income Tax",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "CANADIAN REVENU AGENCY"
|
||||
@ -340,7 +340,7 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Suppliers Account",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "ACCOUNTS PAYABLES"
|
||||
@ -350,24 +350,24 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "GST to pay",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "HST to pay - 14%",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "HST to pay - 13%",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "HST to pay - 15%",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "HST to pay"
|
||||
@ -375,7 +375,7 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "PST/QST to pay",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "TAXES PAYABLES"
|
||||
@ -387,7 +387,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Stock Received But Not Billed",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "LIABILITIES ASSETS HELD FOR TRANSFER"
|
||||
@ -439,7 +439,6 @@
|
||||
"name": "EQUITY"
|
||||
}
|
||||
],
|
||||
"name": "Account Chart CA EN",
|
||||
"parent_id": 0
|
||||
"name": "Account Chart CA EN"
|
||||
}
|
||||
}
|
@ -19,22 +19,22 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ventes avec des provinces harmonis\u00e9es",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ventes avec des provinces non-harmonis\u00e9es",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "AUTRES PRODUITS D'EXPLOITATION"
|
||||
},
|
||||
{
|
||||
"name": "Ventes",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ventes \u00e0 l'\u00e9tranger",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "PRODUITS D'EXPLOITATION"
|
||||
@ -97,7 +97,7 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Comptes fournisseurs",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "FOURNISSEURS ET COMPTES RATTACH\u00c9S"
|
||||
@ -108,26 +108,26 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "TVH \u00e0 payer - 14%",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "TVH \u00e0 payer - 15%",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "TVH \u00e0 payer - 13%",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "TVH \u00e0 payer"
|
||||
},
|
||||
{
|
||||
"name": "TVP/TVQ \u00e0 payer",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "TPS \u00e0 payer",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "IMP\u00d4TS \u00c0 PAYER"
|
||||
@ -141,45 +141,45 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Fond des Services de Sant\u00e9 \u00e0 payer",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "AP - Contribution de l'employeur",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "AP - Contribution des employ\u00e9s",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "ASSURANCE PARENTALE \u00c0 PAYER"
|
||||
},
|
||||
{
|
||||
"name": "Imp\u00f4t provincial sur les revenus",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Rentes - Contribution des employ\u00e9s",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Rentes - Contribution de l'employeur",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "RENTES \u00c0 PAYER"
|
||||
},
|
||||
{
|
||||
"name": "Sant\u00e9 et S\u00e9curit\u00e9 au Travail \u00e0 payer",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Normes du Travail \u00e0 payer",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "AGENCE DU REVENU PROVINCIAL"
|
||||
@ -190,18 +190,18 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "AE - Contribution des employ\u00e9s",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "AE - Contribution de l'employeur",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "ASSURANCE EMPLOI \u00c0 PAYER"
|
||||
},
|
||||
{
|
||||
"name": "Imp\u00f4t f\u00e9d\u00e9ral sur les revenus",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "AGENCE DU REVENU DU CANADA"
|
||||
@ -213,7 +213,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Stock re\u00e7u non factur\u00e9",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "PASSIFS DE STOCK"
|
||||
@ -238,43 +238,43 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Imp\u00f4t f\u00e9d\u00e9ral",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Assurance parentale",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Imp\u00f4t provincial",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Rentes",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sant\u00e9 et s\u00e9curit\u00e9 au travail",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Fonds des services de sant\u00e9",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Normes du travail",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Assurance Emploi",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Salaires",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Vacances",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "SALAIRES ET CHARGES SOCIALES"
|
||||
@ -292,19 +292,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Achats",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Achats dans des provinces harmonis\u00e9es",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Achats dans des provinces non-harmonis\u00e9es",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Achats \u00e0 l'\u00e9tranger",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CO\u00dbT DES PRODUITS VENDUS"
|
||||
@ -361,28 +361,28 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "TPS \u00e0 recevoir",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "TVH \u00e0 recevoir - 13%",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "TVH \u00e0 recevoir - 14%",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "TVH \u00e0 recevoir - 15%",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "TVH \u00e0 recevoir"
|
||||
},
|
||||
{
|
||||
"name": "TVP/TVQ \u00e0 recevoir",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "IMP\u00d4TS \u00c0 RECEVOIR"
|
||||
@ -395,7 +395,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Comptes clients",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "COMPTES CLIENTS"
|
||||
@ -404,11 +404,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Stock exp\u00e9di\u00e9 non-factur\u00e9",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Stock",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "STOCKS"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -49,23 +49,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Recupero de Rezagos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta de Activo Fijo",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Recupero de Deudores Incobrables",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta Inversiones Permanentes",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donaciones obtenidas, ganandas, percibidas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ingresos Fuera de Explotaci\u00f3n"
|
||||
@ -74,40 +74,40 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Comisiones gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Descuentos gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Interese sobre Inversiones",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Honorarios gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Ventas - Categoria de productos 01",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ventas"
|
||||
},
|
||||
{
|
||||
"name": "Intereses gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alquileres gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta de Acciones",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ingresos de Explotaci\u00f3n"
|
||||
@ -121,7 +121,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Publicidad y Propaganda",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Servicios P\u00fablicos"
|
||||
@ -130,22 +130,22 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Costo de Mercader\u00edas Vendidas"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Amortizaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Cargas Sociales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Sueldos y Jornales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos Bancarios"
|
||||
@ -155,7 +155,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Depreciaci\u00f3n de Activo Fijo",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Egresos de Explotaci\u00f3n"
|
||||
@ -164,15 +164,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos en Siniestros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donaciones Cedidas, Otorgadas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "P\u00e9rdida Venta Activo Fijo",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Egresos Fuera de Explotaci\u00f3n"
|
||||
@ -191,7 +191,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Activo Fijo",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Ajustes al Patrimonio"
|
||||
@ -200,11 +200,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Aportes No Capitalizados / Aportes Irrevocables Futura Suscripci\u00f3n de Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Aportes No Capitalizados / Primas de Emsi\u00f3n",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Aportes No Capitalizados"
|
||||
@ -213,19 +213,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Capital / Dividendos a Distribuir en Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital / Acciones en Circulaci\u00f3n",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital / Capital Propio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Capital"
|
||||
@ -234,19 +234,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Resultados Acumulados",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Resultado del Ejercicio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Utilidades y P\u00e9rdidas del Ejercicio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Resultados Acumulados del Ejercicio Anterior",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Resultados No Asignados"
|
||||
@ -255,19 +255,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Reserva para Renovaci\u00f3n de Activo Fijo",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Estatutaria",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Facultativa",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Legal",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Futuras Eventualidades"
|
||||
@ -281,19 +281,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Remuneraciones por Pagar / Retenciones a Depositar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Remuneraciones por Pagar / Sueldos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Remuneraciones por Pagar / Provisi\u00f3n para Sueldo Anual Complementario",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Remuneraciones por Pagar / Cargas Sociales a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Remuneraciones por Pagar"
|
||||
@ -302,19 +302,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otras Cuentas por Pagar / Acreedores Varios",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Pagar / Honorarios Directores y S\u00edndicos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Pagar / Dividendos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Pagar / Cobros por Adelantado",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otras Cuentas por Pagar"
|
||||
@ -323,15 +323,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Provisiones / Previsi\u00f3n para juicios Pendientes",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Provisiones"
|
||||
@ -340,15 +340,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cuentas por Pagar / Anticipos de Clientes",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Pagar / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Pagar / Proveedores",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas por Pagar"
|
||||
@ -357,23 +357,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Pasivo Circulante / Debentures Emitidos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pasivo Circulante / Intereses a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pasivo Circulante / Obligaciones a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pasivo Circulante / Prestamos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pasivo Circulante / Adelantos en Cuenta Corriente",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Pasivo Circulante"
|
||||
@ -382,11 +382,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Impuestos por Pagar / IVA a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Impuestos por Pagar / Impuesto a la Renta a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Impuestos por Pagar"
|
||||
@ -398,39 +398,39 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cuentas por Cobrar / Anticipo de Impuestos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar / Anticipos a Proveedores",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar / Pr\u00e9stamos otorgados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar / Accionistas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar / Intereses Pagados por Adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar / Alquileres Pagados por Adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar / Anticipo al Personal",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar / (-) Intereses (+) a Devengar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas por Cobrar"
|
||||
@ -439,23 +439,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Documentos por Cobrar / Deudores por Ventas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos por Cobrar / Deudores Morosos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos por Cobrar / Deudores en Gesti\u00f3n Judicial",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos por Cobrar / Deudores Varios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos por Cobrar / (-) Previsi\u00f3n para Incobrables",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Documentos por Cobrar"
|
||||
@ -466,26 +466,26 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Circulante - Valores a Depositar ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Circulante.../ BCO. CTA CTE CLP",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Activo Circulante - Bancos"
|
||||
},
|
||||
{
|
||||
"name": "Activo Circulante - Recaudaciones a Depositar ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Circulante - Caja / efectivo CLP",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Activo Circulante - Caja"
|
||||
@ -494,7 +494,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Circulante - Fondos fijos / caja chica 01 CLP",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Activo Circulante - Fondos fijos"
|
||||
@ -503,7 +503,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Circulante - Caja / efectivo USD",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Activo Circulante - Moneda Extranjera"
|
||||
@ -517,34 +517,34 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Existencias - Mercader\u00edas / Categoria de productos 01",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Existencias - Mercader\u00edas"
|
||||
},
|
||||
{
|
||||
"name": "Materias primas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Existencias - Mercader\u00edas en Tr\u00e1nsito",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos Elaborados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos en Curso de Elaboraci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Existencias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Materiales Varios ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Existencias"
|
||||
@ -553,19 +553,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / Acciones Permanentes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / Acciones Transitorias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Inversiones Financieras"
|
||||
@ -574,19 +574,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Intangible / Marcas y Patentes de Invenci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Intangible / Concesiones y Franquicias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Intangible / Derecho de Llaves",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Activo Intangible"
|
||||
@ -595,23 +595,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Fijo / Inmuebles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Fijo / Maquinaria",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Fijo / Material Rodante Motorizado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Fijo / (-) Depreciaci\u00f3n Acumulada",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Fijo / Equipos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Activo Fijo"
|
||||
@ -634,15 +634,15 @@
|
||||
},
|
||||
{
|
||||
"name": "Costos de Producci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de Administraci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de Comercializaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas de Movimiento"
|
||||
|
@ -4,451 +4,451 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "\u4ee5\u524d\u5e74\u5ea6\u635f\u76ca\u8c03\u6574",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u5236\u9020\u8d39\u7528",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u9884\u63d0\u8d39\u7528",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5728\u5efa\u5de5\u7a0b",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5de5\u7a0b\u7269\u8d44",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u56fa\u5b9a\u8d44\u4ea7\u6e05\u7406",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u56fa\u5b9a\u8d44\u4ea7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u7d2f\u8ba1\u6298\u65e7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u4ee3\u7406\u4e1a\u52a1\u8d1f\u503a",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u65e0\u5f62\u8d44\u4ea7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u65e0\u5f62\u8d44\u4ea7\u51cf\u503c\u51c6\u5907",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u7d2f\u8ba1\u644a\u9500",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8425\u4e1a\u7a0e\u91d1\u53ca\u9644\u52a0",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u5176\u4ed6\u4e1a\u52a1\u652f\u51fa",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u4e3b\u8425\u4e1a\u52a1\u6210\u672c",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u7814\u53d1\u652f\u51fa",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u9884\u8ba1\u8d1f\u503a",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u9884\u6536\u8d26\u6b3e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ed8\u7968\u636e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5546\u8a89",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u6240\u5f97\u7a0e",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u5176\u4ed6\u8d27\u5e01\u8d44\u91d1",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u672a\u5b9e\u73b0\u878d\u8d44\u6536\u76ca",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5b58\u8d27\u8dcc\u4ef7\u51c6\u5907",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8425\u4e1a\u5916\u652f\u51fa",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u53ef\u4f9b\u51fa\u552e\u91d1\u878d\u8d44\u4ea7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8425\u4e1a\u5916\u6536\u5165",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u957f\u671f\u501f\u6b3e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u957f\u671f\u503a\u5238",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ed8\u804c\u5de5\u85aa\u916c",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u94f6\u884c\u5b58\u6b3e",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u73b0\u91d1",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u884d\u751f\u5de5\u5177",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u6301\u6709\u81f3\u5230\u671f\u6295\u8d44\u51cf\u503c\u51c6\u5907",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5957\u671f\u5de5\u5177",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u751f\u4ea7\u6210\u672c",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u5b9e\u6536\u8d44\u672c",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u59d4\u6258\u52a0\u5de5\u7269\u8d44",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5546\u54c1\u8fdb\u9500\u5dee\u4ef7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5305\u88c5\u7269\u53ca\u4f4e\u503c\u6613\u8017\u54c1",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5229\u6da6\u5206\u914d",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u76c8\u4f59\u516c\u79ef",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u672c\u5e74\u5229\u6da6",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8d44\u672c\u516c\u79ef",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u4ee3\u7406\u4e1a\u52a1\u8d44\u4ea7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u9012\u5ef6\u6536\u76ca",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u9012\u5ef6\u6240\u5f97\u7a0e\u8d44\u4ea7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u52b3\u52a1\u6210\u672c",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u6301\u6709\u81f3\u5230\u671f\u6295\u8d44",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e93\u5b58\u5546\u54c1",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u53d1\u51fa\u5546\u54c1",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u6750\u6599\u6210\u672c\u5dee\u5f02",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ed8\u8d26\u6b3e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5728\u9014\u7269\u8d44",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u539f\u6750\u6599",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u6750\u6599\u91c7\u8d2d",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u957f\u671f\u80a1\u6743\u6295\u8d44",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u6295\u8d44\u6027\u623f\u5730\u4ea7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u957f\u671f\u6295\u8d44\u51cf\u503c\u51c6\u5907",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5176\u4ed6\u5e94\u6536\u6b3e",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u957f\u671f\u5f85\u644a\u8d39\u7528",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u9012\u5ef6\u6240\u5f97\u7a0e\u8d1f\u503a",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u88ab\u5957\u671f\u9879\u76ee",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u4ea4\u6613\u6027\u91d1\u878d\u8d1f\u503a",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u9500\u552e\u8d39\u7528",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u574f\u8d26\u51c6\u5907",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8d22\u52a1\u8d39\u7528",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u7ba1\u7406\u8d39\u7528",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u4e2a\u4eba\u6240\u5f97\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u8f66\u8239\u4f7f\u7528\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "\u8fdb\u9879\u7a0e\u989d\u8f6c\u51fa",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u51fa\u53e3\u9000\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u9500\u9879\u7a0e\u989d",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u51cf\u514d\u7a0e\u6b3e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8f6c\u51fa\u672a\u4ea4\u589e\u503c\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8fdb\u9879\u7a0e\u989d",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8f6c\u51fa\u591a\u4ea4\u589e\u503c\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u51fa\u53e3\u62b5\u51cf\u5185\u9500\u4ea7\u54c1\u5e94\u7eb3\u7a0e\u989d",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5df2\u4ea4\u7a0e\u91d1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u672a\u4ea4\u589e\u503c\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "\u5e94\u4ea4\u589e\u503c\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u8425\u4e1a\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u6d88\u8d39\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u8d44\u6e90\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u6240\u5f97\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u571f\u5730\u589e\u503c\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u57ce\u5e02\u7ef4\u62a4\u5efa\u8bbe\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u623f\u4ea7\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ea4\u571f\u5730\u4f7f\u7528\u7a0e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "\u5e94\u4ea4\u7a0e\u8d39",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u56fa\u5b9a\u8d44\u4ea7\u51cf\u503c\u51c6\u5907",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u6536\u7968\u636e",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u9884\u4ed8\u8d26\u6b3e",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u6536\u8d26\u6b3e",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u8d44\u4ea7\u51cf\u503c\u635f\u5931",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u957f\u671f\u5e94\u6536\u6b3e",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5f85\u644a\u8d39\u7528",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u6295\u8d44\u6536\u76ca",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u6536\u5229\u606f",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ed8\u80a1\u5229",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u4ed8\u5229\u606f",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5e94\u6536\u80a1\u5229",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u4e3b\u8425\u4e1a\u52a1\u6536\u5165",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u5e93\u5b58\u80a1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5f85\u5904\u7406\u8d22\u4ea7\u635f\u6ea2",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u672a\u786e\u8ba4\u878d\u8d44\u8d39\u7528",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u957f\u671f\u5e94\u4ed8\u6b3e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u5176\u4ed6\u4e1a\u52a1\u6536\u5165",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "\u4ea4\u6613\u6027\u91d1\u878d\u8d44\u4ea7",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u77ed\u671f\u501f\u6b3e",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u516c\u5141\u4ef7\u503c\u53d8\u52a8\u635f\u76ca",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "\u4f1a\u8ba1\u79d1\u76ee"
|
||||
|
@ -11,24 +11,19 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Veh\u00edculos",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Veh\u00edculos"
|
||||
},
|
||||
{
|
||||
"name": "0-Equipo de c\u00f3mputo",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Equipo de c\u00f3mputo"
|
||||
},
|
||||
{
|
||||
"name": "0-Moibliario y equipo de oficina",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Moibliario y equipo de oficina"
|
||||
},
|
||||
{
|
||||
"name": "0-Herramientas mayores",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Herramientas mayores"
|
||||
},
|
||||
{
|
||||
"name": "0-Maquinaria y equipo de edificios",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Maquinaria y equipo de edificios"
|
||||
}
|
||||
],
|
||||
"name": "0-Activos depreciables m\u00f3viles"
|
||||
@ -38,8 +33,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Edificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Edificio 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Edificios \u2013 Revaluaciones"
|
||||
@ -47,8 +41,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Edificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Edificio 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Edificios \u2013 Valores originales"
|
||||
@ -61,8 +54,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Edificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Edificio 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Mejoras a edificios \u2013 Revaluaciones"
|
||||
@ -70,8 +62,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Edificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Edificio 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Mejoras a edificios \u2013 Valores originales"
|
||||
@ -89,8 +80,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Terreno 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Terreno 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Valores originales"
|
||||
@ -98,8 +88,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Terreno 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Terreno 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Revaluaciones"
|
||||
@ -128,16 +117,13 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Fondos en tr\u00e1nsito en bancos",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Fondos en tr\u00e1nsito en bancos"
|
||||
},
|
||||
{
|
||||
"name": "0-Fondos en tr\u00e1nsito de PayPal a Bancos",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Fondos en tr\u00e1nsito de PayPal a Bancos"
|
||||
},
|
||||
{
|
||||
"name": "0-Fondos en tr\u00e1nsito en tesorer\u00eda",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Fondos en tr\u00e1nsito en tesorer\u00eda"
|
||||
}
|
||||
],
|
||||
"name": "0-Fondos en tr\u00e1nsito"
|
||||
@ -166,8 +152,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Inversi\u00f3n 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Inversi\u00f3n 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Inversiones a la vista"
|
||||
@ -201,12 +186,10 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Inventario de producto para la venta",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Inventario de producto para la venta"
|
||||
},
|
||||
{
|
||||
"name": "0-Inventario de consumibles",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Inventario de consumibles"
|
||||
}
|
||||
],
|
||||
"name": "0-Inventarios"
|
||||
@ -269,24 +252,19 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Dep. ac. de herramientas mayores",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Dep. ac. de herramientas mayores"
|
||||
},
|
||||
{
|
||||
"name": "0-Dep. ac. de mobiliario y equipo de oficina",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Dep. ac. de mobiliario y equipo de oficina"
|
||||
},
|
||||
{
|
||||
"name": "0-Dep. ac. de maquinaria y equipo de edificios",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Dep. ac. de maquinaria y equipo de edificios"
|
||||
},
|
||||
{
|
||||
"name": "0-Dep. ac. de equipo de c\u00f3mputo",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Dep. ac. de equipo de c\u00f3mputo"
|
||||
},
|
||||
{
|
||||
"name": "0-Dep. ac. de veh\u00edculos",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Dep. ac. de veh\u00edculos"
|
||||
}
|
||||
],
|
||||
"name": "0-Dep. ac. de activos depreciables m\u00f3viles"
|
||||
@ -296,8 +274,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Edificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Edificio 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Dep. ac. de edificios \u2013 Valores originales"
|
||||
@ -305,8 +282,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Edificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Edificio 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Dep. ac. de edificios \u2013 Revaluaciones"
|
||||
@ -319,8 +295,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Edificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Edificio 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Dep. ac. de mejoras a edificios \u2013 Revaluaciones"
|
||||
@ -328,8 +303,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Edificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "0-Edificio 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Dep. ac. de mejoras a edificios \u2013 Valores originales"
|
||||
@ -348,24 +322,19 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Gastos Financieros",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Gastos Financieros"
|
||||
},
|
||||
{
|
||||
"name": "0-Depreciaci\u00f3n de activo fijo",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Depreciaci\u00f3n de activo fijo"
|
||||
},
|
||||
{
|
||||
"name": "0-Ajustes",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Ajustes"
|
||||
},
|
||||
{
|
||||
"name": "0-Perdida por robo",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Perdida por robo"
|
||||
},
|
||||
{
|
||||
"name": "0-Donaciones deducibles",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Donaciones deducibles"
|
||||
}
|
||||
],
|
||||
"name": "0-Otros gastos"
|
||||
@ -373,20 +342,16 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Donaciones no deducibles",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Donaciones no deducibles"
|
||||
},
|
||||
{
|
||||
"name": "0-Multas",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Multas"
|
||||
},
|
||||
{
|
||||
"name": "0-Gastos de presidencia",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Gastos de presidencia"
|
||||
},
|
||||
{
|
||||
"name": "0-Diferencial cambiario",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Diferencial cambiario"
|
||||
}
|
||||
],
|
||||
"name": "0-Gastos no deducibles"
|
||||
@ -400,36 +365,28 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Cesant\u00eda",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Cesant\u00eda"
|
||||
},
|
||||
{
|
||||
"name": "0-Comisiones",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Comisiones"
|
||||
},
|
||||
{
|
||||
"name": "0-Cargas patronales",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Cargas patronales"
|
||||
},
|
||||
{
|
||||
"name": "0-Aguinaldo",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Aguinaldo"
|
||||
},
|
||||
{
|
||||
"name": "0-Preaviso",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Preaviso"
|
||||
},
|
||||
{
|
||||
"name": "0-Salarios",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Salarios"
|
||||
},
|
||||
{
|
||||
"name": "0-Extras",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Extras"
|
||||
},
|
||||
{
|
||||
"name": "0-Bonificaciones",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Bonificaciones"
|
||||
}
|
||||
],
|
||||
"name": "0-Salarios y deducciones"
|
||||
@ -437,16 +394,13 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Transporte",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Transporte"
|
||||
},
|
||||
{
|
||||
"name": "0-Hospedaje",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Hospedaje"
|
||||
},
|
||||
{
|
||||
"name": "0-Alimentaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Alimentaci\u00f3n"
|
||||
}
|
||||
],
|
||||
"name": "0-Vi\u00e1ticos"
|
||||
@ -457,8 +411,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Categor\u00eda 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Categor\u00eda 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Servicios profesionales"
|
||||
@ -466,12 +419,10 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Campa\u00f1as publicitarias",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Campa\u00f1as publicitarias"
|
||||
},
|
||||
{
|
||||
"name": "0-Dise\u00f1o de imagen",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Dise\u00f1o de imagen"
|
||||
}
|
||||
],
|
||||
"name": "0-Gastos de mercadeo"
|
||||
@ -479,24 +430,19 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Costo de producto",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Costo de producto"
|
||||
},
|
||||
{
|
||||
"name": "0-Costo de producci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Costo de producci\u00f3n"
|
||||
},
|
||||
{
|
||||
"name": "0-Costo de materia prima",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Costo de materia prima"
|
||||
},
|
||||
{
|
||||
"name": "0-Costo de distribuci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Costo de distribuci\u00f3n"
|
||||
},
|
||||
{
|
||||
"name": "0-Costo de almacenamiento",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Costo de almacenamiento"
|
||||
}
|
||||
],
|
||||
"name": "0-Costo de venta de producto"
|
||||
@ -509,8 +455,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Departamento 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Departamento 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Equipo de c\u00f3mputo y comunicaci\u00f3n"
|
||||
@ -518,8 +463,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Departamento 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Departamento 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Suministros de oficina"
|
||||
@ -529,8 +473,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Medidor 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Medidor 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Luz"
|
||||
@ -538,8 +481,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Medidor 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Medidor 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Agua"
|
||||
@ -547,8 +489,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Contrato 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Contrato 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Internet"
|
||||
@ -556,8 +497,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Tel\u00e9fono 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Tel\u00e9fono 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Tel\u00e9fono"
|
||||
@ -568,8 +508,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Compa\u00f1\u00eda administradora 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Compa\u00f1\u00eda administradora 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Cuota por administraci\u00f3n"
|
||||
@ -577,8 +516,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Oficina 1",
|
||||
"root_type": "Expense"
|
||||
"name": "0-Oficina 1"
|
||||
}
|
||||
],
|
||||
"name": "0-Alquiler"
|
||||
@ -598,7 +536,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Socio 1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "0-Aportes de capital"
|
||||
@ -607,7 +545,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Socio 1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "0-Capital social"
|
||||
@ -616,7 +554,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Balance inicial",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "0-Balance inicial"
|
||||
@ -625,15 +563,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Superavit ganado",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "0-Superavit por revaluaci\u00f3n de activos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "0-Super\u00e1vit de capital",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "0-Cuentas de super\u00e1vit"
|
||||
@ -642,11 +580,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Reserva para mejoras",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "0-Reserva para proyectos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "0-Otras reservas"
|
||||
@ -655,7 +593,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Reserva legal",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "0-Reserva legal"
|
||||
@ -664,7 +602,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Periodo 1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "0-Utilidad o p\u00e9rdida acumulada de periodos anteriores"
|
||||
@ -673,7 +611,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Utilidad o p\u00e9rdida del per\u00edodo actual",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "0-Utilidad o p\u00e9rdida del per\u00edodo actual"
|
||||
@ -686,12 +624,10 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Donaciones",
|
||||
"root_type": "Income"
|
||||
"name": "0-Donaciones"
|
||||
},
|
||||
{
|
||||
"name": "0-Ajustes",
|
||||
"root_type": "Income"
|
||||
"name": "0-Ajustes"
|
||||
}
|
||||
],
|
||||
"name": "0-Otros ingresos"
|
||||
@ -699,8 +635,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Intereses ganados sobre cuentas corrientes",
|
||||
"root_type": "Income"
|
||||
"name": "0-Intereses ganados sobre cuentas corrientes"
|
||||
}
|
||||
],
|
||||
"name": "0-Ingresos financieros"
|
||||
@ -708,8 +643,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Diferencial cambiario",
|
||||
"root_type": "Income"
|
||||
"name": "0-Diferencial cambiario"
|
||||
}
|
||||
],
|
||||
"name": "0-Ingresos no gravables"
|
||||
@ -720,8 +654,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "0-Cuota por administraci\u00f3n",
|
||||
"root_type": "Income"
|
||||
"name": "0-Cuota por administraci\u00f3n"
|
||||
}
|
||||
],
|
||||
"name": "0-Ingresos por administraci\u00f3n"
|
||||
|
@ -65,11 +65,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "xReserva para mejoras",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "xReserva para proyectos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "xOtras reservas"
|
||||
@ -78,7 +78,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "xSocio 1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "xAportes de capital"
|
||||
@ -87,7 +87,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "xUtilidad o p\u00e9rdida del per\u00edodo actual",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "xUtilidad o p\u00e9rdida del per\u00edodo actual"
|
||||
@ -96,7 +96,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "xBalance inicial",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "xBalance inicial"
|
||||
@ -105,7 +105,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "xReserva legal",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "xReserva legal"
|
||||
@ -114,15 +114,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "xSuperavit ganado",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "xSuperavit por revaluaci\u00f3n de activos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "xSuper\u00e1vit de capital",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "xCuentas de super\u00e1vit"
|
||||
@ -131,7 +131,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "xSocio 1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "xCapital social"
|
||||
@ -140,7 +140,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "xPeriodo 1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "xUtilidad o p\u00e9rdida acumulada de periodos anteriores"
|
||||
@ -153,20 +153,16 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xDiferencial cambiario",
|
||||
"root_type": "Expense"
|
||||
"name": "xDiferencial cambiario"
|
||||
},
|
||||
{
|
||||
"name": "xMultas",
|
||||
"root_type": "Expense"
|
||||
"name": "xMultas"
|
||||
},
|
||||
{
|
||||
"name": "xGastos de presidencia",
|
||||
"root_type": "Expense"
|
||||
"name": "xGastos de presidencia"
|
||||
},
|
||||
{
|
||||
"name": "xDonaciones no deducibles",
|
||||
"root_type": "Expense"
|
||||
"name": "xDonaciones no deducibles"
|
||||
}
|
||||
],
|
||||
"name": "xGastos no deducibles"
|
||||
@ -180,16 +176,13 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xTransporte",
|
||||
"root_type": "Expense"
|
||||
"name": "xTransporte"
|
||||
},
|
||||
{
|
||||
"name": "xHospedaje",
|
||||
"root_type": "Expense"
|
||||
"name": "xHospedaje"
|
||||
},
|
||||
{
|
||||
"name": "xAlimentaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"name": "xAlimentaci\u00f3n"
|
||||
}
|
||||
],
|
||||
"name": "xVi\u00e1ticos"
|
||||
@ -197,36 +190,28 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xCesant\u00eda",
|
||||
"root_type": "Expense"
|
||||
"name": "xCesant\u00eda"
|
||||
},
|
||||
{
|
||||
"name": "xComisiones",
|
||||
"root_type": "Expense"
|
||||
"name": "xComisiones"
|
||||
},
|
||||
{
|
||||
"name": "xCargas patronales",
|
||||
"root_type": "Expense"
|
||||
"name": "xCargas patronales"
|
||||
},
|
||||
{
|
||||
"name": "xAguinaldo",
|
||||
"root_type": "Expense"
|
||||
"name": "xAguinaldo"
|
||||
},
|
||||
{
|
||||
"name": "xPreaviso",
|
||||
"root_type": "Expense"
|
||||
"name": "xPreaviso"
|
||||
},
|
||||
{
|
||||
"name": "xSalarios",
|
||||
"root_type": "Expense"
|
||||
"name": "xSalarios"
|
||||
},
|
||||
{
|
||||
"name": "xExtras",
|
||||
"root_type": "Expense"
|
||||
"name": "xExtras"
|
||||
},
|
||||
{
|
||||
"name": "xBonificaciones",
|
||||
"root_type": "Expense"
|
||||
"name": "xBonificaciones"
|
||||
}
|
||||
],
|
||||
"name": "xSalarios y deducciones"
|
||||
@ -237,12 +222,10 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xCampa\u00f1as publicitarias",
|
||||
"root_type": "Expense"
|
||||
"name": "xCampa\u00f1as publicitarias"
|
||||
},
|
||||
{
|
||||
"name": "xDise\u00f1o de imagen",
|
||||
"root_type": "Expense"
|
||||
"name": "xDise\u00f1o de imagen"
|
||||
}
|
||||
],
|
||||
"name": "xGastos de mercadeo"
|
||||
@ -250,24 +233,19 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xCosto de distribuci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"name": "xCosto de distribuci\u00f3n"
|
||||
},
|
||||
{
|
||||
"name": "xCosto de almacenamiento",
|
||||
"root_type": "Expense"
|
||||
"name": "xCosto de almacenamiento"
|
||||
},
|
||||
{
|
||||
"name": "xCosto de producto",
|
||||
"root_type": "Expense"
|
||||
"name": "xCosto de producto"
|
||||
},
|
||||
{
|
||||
"name": "xCosto de producci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"name": "xCosto de producci\u00f3n"
|
||||
},
|
||||
{
|
||||
"name": "xCosto de materia prima",
|
||||
"root_type": "Expense"
|
||||
"name": "xCosto de materia prima"
|
||||
}
|
||||
],
|
||||
"name": "xCosto de venta de producto"
|
||||
@ -275,8 +253,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xCategor\u00eda 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xCategor\u00eda 1"
|
||||
}
|
||||
],
|
||||
"name": "xServicios profesionales"
|
||||
@ -289,8 +266,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xDepartamento 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xDepartamento 1"
|
||||
}
|
||||
],
|
||||
"name": "xSuministros de oficina"
|
||||
@ -298,8 +274,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xCompa\u00f1\u00eda administradora 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xCompa\u00f1\u00eda administradora 1"
|
||||
}
|
||||
],
|
||||
"name": "xCuota por administraci\u00f3n"
|
||||
@ -307,8 +282,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xOficina 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xOficina 1"
|
||||
}
|
||||
],
|
||||
"name": "xAlquiler"
|
||||
@ -318,8 +292,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xMedidor 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xMedidor 1"
|
||||
}
|
||||
],
|
||||
"name": "xAgua"
|
||||
@ -327,8 +300,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xMedidor 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xMedidor 1"
|
||||
}
|
||||
],
|
||||
"name": "xLuz"
|
||||
@ -336,8 +308,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xTel\u00e9fono 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xTel\u00e9fono 1"
|
||||
}
|
||||
],
|
||||
"name": "xTel\u00e9fono"
|
||||
@ -345,8 +316,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xContrato 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xContrato 1"
|
||||
}
|
||||
],
|
||||
"name": "xInternet"
|
||||
@ -357,8 +327,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xDepartamento 1",
|
||||
"root_type": "Expense"
|
||||
"name": "xDepartamento 1"
|
||||
}
|
||||
],
|
||||
"name": "xEquipo de c\u00f3mputo y comunicaci\u00f3n"
|
||||
@ -372,24 +341,19 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xGastos Financieros",
|
||||
"root_type": "Expense"
|
||||
"name": "xGastos Financieros"
|
||||
},
|
||||
{
|
||||
"name": "xDepreciaci\u00f3n de activo fijo",
|
||||
"root_type": "Expense"
|
||||
"name": "xDepreciaci\u00f3n de activo fijo"
|
||||
},
|
||||
{
|
||||
"name": "xAjustes",
|
||||
"root_type": "Expense"
|
||||
"name": "xAjustes"
|
||||
},
|
||||
{
|
||||
"name": "xPerdida por robo",
|
||||
"root_type": "Expense"
|
||||
"name": "xPerdida por robo"
|
||||
},
|
||||
{
|
||||
"name": "xDonaciones deducibles",
|
||||
"root_type": "Expense"
|
||||
"name": "xDonaciones deducibles"
|
||||
}
|
||||
],
|
||||
"name": "xOtros gastos"
|
||||
@ -430,16 +394,13 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xFondos en tr\u00e1nsito en bancos",
|
||||
"root_type": "Asset"
|
||||
"name": "xFondos en tr\u00e1nsito en bancos"
|
||||
},
|
||||
{
|
||||
"name": "xFondos en tr\u00e1nsito de PayPal a Bancos",
|
||||
"root_type": "Asset"
|
||||
"name": "xFondos en tr\u00e1nsito de PayPal a Bancos"
|
||||
},
|
||||
{
|
||||
"name": "xFondos en tr\u00e1nsito en tesorer\u00eda",
|
||||
"root_type": "Asset"
|
||||
"name": "xFondos en tr\u00e1nsito en tesorer\u00eda"
|
||||
}
|
||||
],
|
||||
"name": "xFondos en tr\u00e1nsito"
|
||||
@ -447,8 +408,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xInversi\u00f3n 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xInversi\u00f3n 1"
|
||||
}
|
||||
],
|
||||
"name": "xInversiones a la vista"
|
||||
@ -469,12 +429,10 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xInventario de producto para la venta",
|
||||
"root_type": "Asset"
|
||||
"name": "xInventario de producto para la venta"
|
||||
},
|
||||
{
|
||||
"name": "xInventario de consumibles",
|
||||
"root_type": "Asset"
|
||||
"name": "xInventario de consumibles"
|
||||
}
|
||||
],
|
||||
"name": "xInventarios"
|
||||
@ -514,8 +472,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xTerreno 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xTerreno 1"
|
||||
}
|
||||
],
|
||||
"name": "xValores originales"
|
||||
@ -523,8 +480,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xTerreno 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xTerreno 1"
|
||||
}
|
||||
],
|
||||
"name": "xRevaluaciones"
|
||||
@ -542,8 +498,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xEdificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xEdificio 1"
|
||||
}
|
||||
],
|
||||
"name": "xEdificios \u2013 Revaluaciones"
|
||||
@ -551,8 +506,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xEdificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xEdificio 1"
|
||||
}
|
||||
],
|
||||
"name": "xEdificios \u2013 Valores originales"
|
||||
@ -563,24 +517,19 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xMoibliario y equipo de oficina",
|
||||
"root_type": "Asset"
|
||||
"name": "xMoibliario y equipo de oficina"
|
||||
},
|
||||
{
|
||||
"name": "xHerramientas mayores",
|
||||
"root_type": "Asset"
|
||||
"name": "xHerramientas mayores"
|
||||
},
|
||||
{
|
||||
"name": "xMaquinaria y equipo de edificios",
|
||||
"root_type": "Asset"
|
||||
"name": "xMaquinaria y equipo de edificios"
|
||||
},
|
||||
{
|
||||
"name": "xVeh\u00edculos",
|
||||
"root_type": "Asset"
|
||||
"name": "xVeh\u00edculos"
|
||||
},
|
||||
{
|
||||
"name": "xEquipo de c\u00f3mputo",
|
||||
"root_type": "Asset"
|
||||
"name": "xEquipo de c\u00f3mputo"
|
||||
}
|
||||
],
|
||||
"name": "xActivos depreciables m\u00f3viles"
|
||||
@ -590,8 +539,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xEdificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xEdificio 1"
|
||||
}
|
||||
],
|
||||
"name": "xMejoras a edificios \u2013 Valores originales"
|
||||
@ -599,8 +547,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xEdificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xEdificio 1"
|
||||
}
|
||||
],
|
||||
"name": "xMejoras a edificios \u2013 Revaluaciones"
|
||||
@ -621,8 +568,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xEdificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xEdificio 1"
|
||||
}
|
||||
],
|
||||
"name": "xDep. ac. de edificios \u2013 Revaluaciones"
|
||||
@ -630,8 +576,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xEdificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xEdificio 1"
|
||||
}
|
||||
],
|
||||
"name": "xDep. ac. de edificios \u2013 Valores originales"
|
||||
@ -642,24 +587,19 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xDep. ac. de herramientas mayores",
|
||||
"root_type": "Asset"
|
||||
"name": "xDep. ac. de herramientas mayores"
|
||||
},
|
||||
{
|
||||
"name": "xDep. ac. de mobiliario y equipo de oficina",
|
||||
"root_type": "Asset"
|
||||
"name": "xDep. ac. de mobiliario y equipo de oficina"
|
||||
},
|
||||
{
|
||||
"name": "xDep. ac. de maquinaria y equipo de edificios",
|
||||
"root_type": "Asset"
|
||||
"name": "xDep. ac. de maquinaria y equipo de edificios"
|
||||
},
|
||||
{
|
||||
"name": "xDep. ac. de equipo de c\u00f3mputo",
|
||||
"root_type": "Asset"
|
||||
"name": "xDep. ac. de equipo de c\u00f3mputo"
|
||||
},
|
||||
{
|
||||
"name": "xDep. ac. de veh\u00edculos",
|
||||
"root_type": "Asset"
|
||||
"name": "xDep. ac. de veh\u00edculos"
|
||||
}
|
||||
],
|
||||
"name": "xDep. ac. de activos depreciables m\u00f3viles"
|
||||
@ -669,8 +609,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xEdificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xEdificio 1"
|
||||
}
|
||||
],
|
||||
"name": "xDep. ac. de mejoras a edificios \u2013 Valores originales"
|
||||
@ -678,8 +617,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xEdificio 1",
|
||||
"root_type": "Asset"
|
||||
"name": "xEdificio 1"
|
||||
}
|
||||
],
|
||||
"name": "xDep. ac. de mejoras a edificios \u2013 Revaluaciones"
|
||||
@ -725,12 +663,10 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xDonaciones",
|
||||
"root_type": "Income"
|
||||
"name": "xDonaciones"
|
||||
},
|
||||
{
|
||||
"name": "xAjustes",
|
||||
"root_type": "Income"
|
||||
"name": "xAjustes"
|
||||
}
|
||||
],
|
||||
"name": "xOtros ingresos"
|
||||
@ -738,8 +674,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xIntereses ganados sobre cuentas corrientes",
|
||||
"root_type": "Income"
|
||||
"name": "xIntereses ganados sobre cuentas corrientes"
|
||||
}
|
||||
],
|
||||
"name": "xIngresos financieros"
|
||||
@ -750,8 +685,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xCuota por administraci\u00f3n",
|
||||
"root_type": "Income"
|
||||
"name": "xCuota por administraci\u00f3n"
|
||||
}
|
||||
],
|
||||
"name": "xIngresos por administraci\u00f3n"
|
||||
@ -759,8 +693,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "xDiferencial cambiario",
|
||||
"root_type": "Income"
|
||||
"name": "xDiferencial cambiario"
|
||||
}
|
||||
],
|
||||
"name": "xIngresos no gravables"
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -12,7 +12,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Impuestos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Impuestos"
|
||||
@ -21,7 +21,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "IVA por Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "IVA por Pagar"
|
||||
@ -30,7 +30,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cuentas y Documentos por Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas y Documentos por Pagar"
|
||||
@ -44,7 +44,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Anticipos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cr\u00e9ditos Diferidos"
|
||||
@ -58,7 +58,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Provisi\u00f3n para Indemnizaciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Provisi\u00f3n para Indemnizaciones"
|
||||
@ -77,15 +77,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Capital Autorizado, Suscr\u00edto y Pagado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Perdidas y Ganancias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reservas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Patrimonio de los Accionistas"
|
||||
@ -107,11 +107,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Retenciones de IVA recibidas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "IVA por Cobrar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "IVA por Cobrar"
|
||||
@ -120,19 +120,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Prestamos al Personal",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar Empresas Afilidas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar Generales",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas y Documentos por Cobrar"
|
||||
@ -141,7 +141,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja Chica",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos"
|
||||
@ -155,7 +155,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Propiedad, Planta y Equipo",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Propiedad, Planta y Equipo"
|
||||
@ -164,7 +164,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Depreciaciones Acumuladas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Depreciaciones Acumuladas"
|
||||
@ -178,7 +178,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Organizaci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Gastos de Organizaci\u00f3n"
|
||||
@ -187,7 +187,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos por Amortizar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Gastos por Amortizar"
|
||||
@ -196,7 +196,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos Anticipados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Gastos Anticipados"
|
||||
@ -205,7 +205,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otros Activos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otros Activos"
|
||||
@ -229,7 +229,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos no Deducibles",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gastos no Deducibles"
|
||||
@ -243,7 +243,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otros Gastos de Operaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Otros Gastos de Operaci\u00f3n"
|
||||
@ -252,7 +252,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Administraci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gastos de Administraci\u00f3n"
|
||||
@ -266,7 +266,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Ventas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gastos de Ventas"
|
||||
@ -285,7 +285,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otros Ingresos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Otros Ingresos"
|
||||
@ -299,11 +299,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Descuentos Sobre Ventas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ventas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ventas Netas"
|
||||
@ -322,11 +322,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Intereses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Otros Gastos Financieros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Otros Gastos y Productos Financieros"
|
||||
@ -345,7 +345,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Costos de Ventas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Costos de Ventas"
|
||||
|
@ -12,7 +12,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Impuestos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Impuestos"
|
||||
@ -21,7 +21,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "ISV por Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "ISV por Pagar"
|
||||
@ -30,7 +30,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cuentas y Documentos por Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas y Documentos por Pagar"
|
||||
@ -44,7 +44,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Anticipos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cr\u00e9ditos Diferidos"
|
||||
@ -58,7 +58,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Provisi\u00f3n para Indemnizaciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Provisi\u00f3n para Indemnizaciones"
|
||||
@ -77,15 +77,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Capital Autorizado, Suscr\u00edto y Pagado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Perdidas y Ganancias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reservas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Patrimonio de los Accionistas"
|
||||
@ -107,11 +107,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Retenciones de ISV recibidas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "ISV por Cobrar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "ISV por Cobrar"
|
||||
@ -120,19 +120,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Prestamos al Personal",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar Empresas Afilidas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cuentas por Cobrar Generales",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas y Documentos por Cobrar"
|
||||
@ -141,7 +141,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Caja Chica",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos"
|
||||
@ -155,7 +155,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Propiedad, Planta y Equipo",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Propiedad, Planta y Equipo"
|
||||
@ -164,7 +164,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Depreciaciones Acumuladas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Depreciaciones Acumuladas"
|
||||
@ -178,7 +178,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Organizaci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Gastos de Organizaci\u00f3n"
|
||||
@ -187,7 +187,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos por Amortizar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Gastos por Amortizar"
|
||||
@ -196,7 +196,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos Anticipados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Gastos Anticipados"
|
||||
@ -205,7 +205,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otros Activos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otros Activos"
|
||||
@ -229,7 +229,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos no Deducibles",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gastos no Deducibles"
|
||||
@ -243,7 +243,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otros Gastos de Operaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Otros Gastos de Operaci\u00f3n"
|
||||
@ -252,7 +252,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Administraci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gastos de Administraci\u00f3n"
|
||||
@ -266,7 +266,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Ventas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gastos de Ventas"
|
||||
@ -285,7 +285,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otros Ingresos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Otros Ingresos"
|
||||
@ -299,11 +299,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Descuentos Sobre Ventas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ventas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ventas Netas"
|
||||
@ -322,11 +322,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Intereses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Otros Gastos Financieros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Otros Gastos y Productos Financieros"
|
||||
@ -345,7 +345,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Costos de Ventas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Costos de Ventas"
|
||||
|
@ -59,35 +59,6 @@ def get_default_account_types():
|
||||
"data_account_type.xml")).getroot())
|
||||
return get_account_types(default_types_root, None, prefix="account")
|
||||
|
||||
# def go_test():
|
||||
# global accounts, charts
|
||||
# # get default account types
|
||||
# default_types_root = ET.parse(os.path.join(path, "account", "data",
|
||||
# "data_account_type.xml")).getroot()
|
||||
# default_account_types = get_account_types([default_types_root], None, prefix="account")
|
||||
#
|
||||
# for basepath, folders, files in os.walk(path):
|
||||
# basename = os.path.basename(basepath)
|
||||
# if basename.startswith("l10n_it"):
|
||||
# print basepath, folders, files
|
||||
# accounts, charts = {}, {}
|
||||
# xml_roots = get_xml_roots(basepath, files)
|
||||
# csv_content = get_csv_contents(basepath, files)
|
||||
#
|
||||
# prefix = basename if csv_content else None
|
||||
# account_types = get_account_types(xml_roots.get("account.account.type", []),
|
||||
# csv_content.get("account.account.type", []), prefix)
|
||||
# account_types.update(default_account_types)
|
||||
#
|
||||
# if xml_roots:
|
||||
# make_maps_for_xml(xml_roots, account_types, basename)
|
||||
#
|
||||
# if csv_content:
|
||||
# make_maps_for_csv(csv_content, account_types)
|
||||
#
|
||||
# make_account_trees()
|
||||
# make_charts()
|
||||
|
||||
def get_xml_roots(files_path):
|
||||
xml_roots = frappe._dict()
|
||||
for filepath in files_path:
|
||||
@ -120,10 +91,10 @@ def get_csv_contents(files_path):
|
||||
def get_account_types(root_list, csv_content, prefix=None):
|
||||
types = {}
|
||||
account_type_map = {
|
||||
'cash': 'Bank or Cash',
|
||||
'bank': 'Bank or Cash',
|
||||
'tr_cash': 'Bank or Cash',
|
||||
'tr_bank': 'Bank or Cash',
|
||||
'cash': 'Cash',
|
||||
'bank': 'Bank',
|
||||
'tr_cash': 'Cash',
|
||||
'tr_bank': 'Bank',
|
||||
'receivable': 'Receivable',
|
||||
'tr_receivable': 'Receivable',
|
||||
'account rec': 'Receivable',
|
||||
@ -147,7 +118,7 @@ def get_account_types(root_list, csv_content, prefix=None):
|
||||
data = {}
|
||||
for field in node.findall("field"):
|
||||
if field.get("name")=="report_type" and field.text.lower() != "none":
|
||||
data["root_type"] = field.text.title()
|
||||
data["report_type"] = get_report_type(field.text.title())
|
||||
if field.get("name")=="code" and field.text.lower() != "none" \
|
||||
and account_type_map.get(field.text):
|
||||
data["account_type"] = account_type_map[field.text]
|
||||
@ -160,7 +131,7 @@ def get_account_types(root_list, csv_content, prefix=None):
|
||||
row_dict = dict(zip(csv_content[0], row))
|
||||
data = {}
|
||||
if row_dict.get("report_type"):
|
||||
data["root_type"] = row_dict.get("report_type")
|
||||
data["report_type"] = get_report_type(row_dict.get("report_type"))
|
||||
if row_dict.get("code") and account_type_map.get(row_dict["code"]):
|
||||
data["account_type"] = account_type_map[row_dict["code"]]
|
||||
if data and data.get("id"):
|
||||
@ -168,6 +139,19 @@ def get_account_types(root_list, csv_content, prefix=None):
|
||||
types[node_id] = data
|
||||
return types
|
||||
|
||||
def get_report_type(report_type):
|
||||
report_type_map = {
|
||||
"asset": "Balance Sheet",
|
||||
"liability": "Balance Sheet",
|
||||
"equity": "Balance Sheet",
|
||||
"expense": "Profit and Loss",
|
||||
"income": "Profit and Loss"
|
||||
}
|
||||
|
||||
for d in report_type_map:
|
||||
if d in report_type.lower():
|
||||
return report_type_map[d]
|
||||
|
||||
def make_maps_for_xml(xml_roots, account_types, country_dir):
|
||||
"""make maps for `charts` and `accounts`"""
|
||||
for model, root_list in xml_roots.iteritems():
|
||||
@ -184,14 +168,8 @@ def make_maps_for_xml(xml_roots, account_types, country_dir):
|
||||
|
||||
if field.get("name")=="user_type":
|
||||
value = field.get("ref")
|
||||
if account_types.get(value, {}).get("root_type"):
|
||||
data["root_type"] = account_types[value]["root_type"]
|
||||
else:
|
||||
if "asset" in value: data["root_type"] = "Asset"
|
||||
elif ("liability" in value or "equity" in value):
|
||||
data["root_type"] = "Liability"
|
||||
elif "income" in value: data["root_type"] = "Income"
|
||||
elif "expense" in value: data["root_type"] = "Expense"
|
||||
if account_types.get(value, {}).get("report_type"):
|
||||
data["report_type"] = account_types[value]["report_type"]
|
||||
|
||||
if account_types.get(value, {}).get("account_type"):
|
||||
data["account_type"] = account_types[value]["account_type"]
|
||||
@ -218,10 +196,7 @@ def make_account_trees():
|
||||
if account.get("parent_id"):
|
||||
if accounts.get(account["parent_id"]):
|
||||
accounts[account["parent_id"]]["children"].append(account)
|
||||
del account["parent_id"]
|
||||
else:
|
||||
print account.get("name") + " deleted, parent node not found"
|
||||
del accounts[id]
|
||||
del account["parent_id"]
|
||||
|
||||
# remove empty children
|
||||
for id in accounts.keys():
|
||||
@ -238,8 +213,8 @@ def make_maps_for_csv(csv_content, account_types, country_dir):
|
||||
"children": []
|
||||
}
|
||||
user_type = data.get("user_type/id") or data.get("user_type:id")
|
||||
if account_types.get(user_type, {}).get("root_type"):
|
||||
account["root_type"] = account_types[user_type]["root_type"]
|
||||
if account_types.get(user_type, {}).get("report_type"):
|
||||
account["report_type"] = account_types[user_type]["report_type"]
|
||||
|
||||
if account_types.get(user_type, {}).get("account_type"):
|
||||
account["account_type"] = account_types[user_type]["account_type"]
|
||||
|
@ -8,114 +8,114 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Mortgage Loan Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Interest Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Wages Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Owner's Equity Accounts",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Notes Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Exice Duty Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Sales Tax Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Service Tax Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "VAT Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Tax payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Accounts Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Unearned Revenues",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserve and Surplus Account",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Liabilities",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Buildings",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Supplies",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Land",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Accounts Receivable",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Accumulated Depreciation - Equipment",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Tax Receivable",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Equipment",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Cash",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Prepaid Insurance",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Accumulated Depreciation - Buildings",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Merchandise Inventory",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Assets",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Balance Sheet"
|
||||
@ -128,43 +128,43 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Salaries Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Wages Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Supplies Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Rent Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Utilities Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Telephone Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Advertising Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Depreciation Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Operating Expense Accounts",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -172,43 +172,43 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Interest Revenues",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gain on Sale of Assets",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Non-Operating Revenue and Gains",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Product Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Service Revenues",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Operating Revenue Accounts",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Loss on Sale of Assets",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Non-Operating Expenses and Losses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Profit And Loss"
|
||||
|
@ -10,37 +10,37 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Sales - Division #1, Product Line 010",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sales - Division #3, Product Line 110",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sales - Division #1, Product Line 022",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sales - Division #2, Product Line 015",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Operating Revenues",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Gain on Sale of Assets",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Non-Operating Revenue and Gains",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -48,81 +48,81 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Payroll Dept. Payroll Taxes",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Payroll Dept. Supplies",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Payroll Dept. Telephone",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Payroll Dept. Salaries",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Payroll Dept. Expenses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Marketing Dept. Supplies",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Marketing Dept. Telephone",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Marketing Dept. Payroll Taxes",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Marketing Dept. Salaries",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Marketing Expenses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "COGS - Division #1, Product Line 022",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "COGS - Division #2, Product Line 015",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "COGS - Division #3, Product Line 110",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "COGS - Division #1, Product Line 010",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cost of Goods Sold",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Loss on Sale of Assets",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Non-Operating Expenses and Losses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Profit And Loss"
|
||||
@ -134,86 +134,86 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Cash - Payroll Checking",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Petty Cash Fund",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Accounts Receivable",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inventory",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Tax Receivable",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Supplies",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Cash - Regular Checking",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Prepaid Insurance",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Allowance for Doubtful Accounts",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Current Assets",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Accumulated Depreciation - Vehicles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Vehicles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Accumulated Depreciation - Buildings",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Equipment",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Land",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Buildings",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Accumulated Depreciation - Equipment",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Property, Plant, and Equipment",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Assets",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -223,96 +223,96 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Service Tax Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Exice Duty Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "VAT Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Sales Tax Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Tax payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Interest Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Wages Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserve and Surplus Account",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Notes Payable - Credit Line #2",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Unearned Revenues",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Accounts Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Notes Payable - Credit Line #1",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Current Liabilities",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Mortgage Loan Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Bonds Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Discount on Bonds Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Long-term Liabilities",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Treasury Stock",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Retained Earnings",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Common Stock, No Par",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Stockholders' Equity",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Liabilities",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Balance Sheet"
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -11,8 +11,7 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "INTERESES DE BANCOS NACIONALES",
|
||||
"root_type": "Income"
|
||||
"name": "INTERESES DE BANCOS NACIONALES"
|
||||
},
|
||||
{
|
||||
"name": "OTROS INGRESOS FINANCIEROS"
|
||||
@ -29,8 +28,7 @@
|
||||
"name": "INTERESES VARIOS"
|
||||
},
|
||||
{
|
||||
"name": "GANANCIAS EN DIFERENCIAL CAMBIARIO",
|
||||
"root_type": "Income"
|
||||
"name": "GANANCIAS EN DIFERENCIAL CAMBIARIO"
|
||||
},
|
||||
{
|
||||
"name": "GANANCIAS EN VENTAS DE ACTIVOS FIJOS"
|
||||
@ -485,8 +483,7 @@
|
||||
"name": "VENTAS NACIONALES AL DETAL"
|
||||
},
|
||||
{
|
||||
"name": "VENTAS EXPORTACION",
|
||||
"root_type": "Income"
|
||||
"name": "VENTAS EXPORTACION"
|
||||
},
|
||||
{
|
||||
"name": "VENTAS NACIONALES"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -49,23 +49,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Recupero de Rezagos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta de Activo Fijo",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Recupero de Deudores Incobrables",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta Inversiones Permanentes",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donaciones obtenidas, ganandas, percibidas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ingresos No Operativos"
|
||||
@ -74,40 +74,40 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Comisiones gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Descuentos gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Interese sobre Inversiones",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Honorarios gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Ventas - Categoria de productos 01",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ventas"
|
||||
},
|
||||
{
|
||||
"name": "Intereses gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alquileres gananados, obtenidos, percibidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ganancia Venta de Acciones",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Ingresos Operativos"
|
||||
@ -121,7 +121,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Costo de Venta - Categoria de productos 01",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Costo de Venta"
|
||||
@ -136,15 +136,15 @@
|
||||
},
|
||||
{
|
||||
"name": "Costos de Producci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de Administraci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de Comercializaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "COSTOS"
|
||||
@ -155,22 +155,22 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos de Publicidad y Propaganda",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Servicios P\u00fablicos"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Amortizaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Cargas Sociales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Salarios",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos Bancarios"
|
||||
@ -180,7 +180,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Gastos en Depreciaci\u00f3n de Activo Fijo",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gastos Operativos"
|
||||
@ -189,15 +189,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gastos en Siniestros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donaciones Cedidas, Otorgadas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "P\u00e9rdida Venta Activo Fijo",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gastos No Operativos"
|
||||
@ -216,7 +216,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Activo Fijo",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Ajustes al Patrimonio"
|
||||
@ -225,11 +225,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Aportes No Capitalizados / Aportes Irrevocables Futura Suscripci\u00f3n de Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Aportes No Capitalizados / Primas de Emsi\u00f3n",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Aportes No Capitalizados"
|
||||
@ -238,19 +238,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Capital / Dividendos a Distribuir en Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital / Acciones en Circulaci\u00f3n",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital / Capital Propio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Capital"
|
||||
@ -259,19 +259,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Resultados Acumulados",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Resultado del Ejercicio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Utilidades y P\u00e9rdidas del Ejercicio",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Resultados Acumulados del Ejercicio Anterior",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Resultados No Asignados"
|
||||
@ -280,19 +280,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Reserva para Renovaci\u00f3n de Activo Fijo",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Estatutaria",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Facultativa",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Reserva Legal",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Futuras Eventualidades"
|
||||
@ -306,19 +306,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Salarios por Pagar / Retenciones a Depositar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Salarios por Pagar / Sueldos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Salarios por Pagar / Provisi\u00f3n para Sueldo Anual Complementario",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Salarios por Pagar / Cargas Sociales a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Salarios por Pagar"
|
||||
@ -327,19 +327,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otras Cuentas por Pagar / Acreedores Varios",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Pagar / Honorarios Directores y S\u00edndicos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Pagar / Dividendos a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Pagar / Cobros por Adelantado",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otras Cuentas por Pagar"
|
||||
@ -348,15 +348,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Provisiones / Previsi\u00f3n para juicios Pendientes",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Provisiones"
|
||||
@ -366,17 +366,17 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Cuentas por Pagar / Anticipos de Clientes",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Cuentas por Pagar / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Cuentas por Pagar / Proveedores",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas por Pagar"
|
||||
@ -385,23 +385,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Pasivo Circulante / Debentures Emitidos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pasivo Circulante / Intereses a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pasivo Circulante / Obligaciones a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pasivo Circulante / Prestamos",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pasivo Circulante / Adelantos en Cuenta Corriente",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Pasivo Circulante"
|
||||
@ -410,11 +410,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Impuestos por Pagar / ITBMS a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Impuestos por Pagar / Impuesto sobre la Renta a Pagar",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Impuestos por Pagar"
|
||||
@ -427,31 +427,31 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Bank",
|
||||
"name": "Caja y Bancos - Valores a Depositar ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Bank",
|
||||
"name": "Caja y Bancos.../ BCO. CTA CTE PAB",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Bancos"
|
||||
},
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Bank",
|
||||
"name": "Caja y Bancos - Recaudaciones a Depositar ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Caja y Bancos - Caja / efectivo PAB",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Caja"
|
||||
@ -459,9 +459,9 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Caja y Bancos - Fondos fijos / caja menuda 01 PAB",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Fondos fijos"
|
||||
@ -469,9 +469,9 @@
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Caja y Bancos - Caja / efectivo USD",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Caja y Bancos - Moneda Extranjera"
|
||||
@ -483,39 +483,39 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / Anticipo de Impuestos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / Anticipos a Proveedores",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / Pr\u00e9stamos otorgados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / Accionistas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / Intereses Pagados por Adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / Alquileres Pagados por Adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / Anticipo al Personal",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / (-) Intereses (+) a Devengar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Otras Cuentas por Cobrar"
|
||||
@ -525,27 +525,27 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Cuentas por Cobrar / Deudores por Ventas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Cuentas por Cobrar / Deudores Morosos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Cuentas por Cobrar / Deudores en Gesti\u00f3n Judicial",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Cuentas por Cobrar / Deudores Varios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Incobrables",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Cuentas por Cobrar"
|
||||
@ -556,34 +556,34 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Inventarios - Mercancias / Categoria de productos 01",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Inventarios - Mercancias"
|
||||
},
|
||||
{
|
||||
"name": "Materias primas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inventarios - Mercancias en Tr\u00e1nsito",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos Elaborados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos en Curso de Elaboraci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Inventarios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Materiales Varios ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Inventarios"
|
||||
@ -592,19 +592,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / Acciones Permanentes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inversiones / Acciones Transitorias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Inversiones Financieras"
|
||||
@ -613,19 +613,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Intangible / Marcas y Patentes de Invenci\u00f3n",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Intangible / Concesiones y Franquicias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Intangible / Derecho de Llaves",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Activo Intangible"
|
||||
@ -634,23 +634,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Activo Fijo / Inmuebles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Fijo / Maquinaria",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Fijo / Material Rodante Motorizado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Fijo / (-) Depreciaci\u00f3n Acumulada",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Activo Fijo / Equipos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Activo Fijo"
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -172,11 +172,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri financiare din ajustari pentru pierderea de valoare a imobilizarilor financiare",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri financiare din ajustari pentru pierderea de valoare a activelor circulante",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Venituri financiare din ajustari pentru pierdere de valoare"
|
||||
@ -185,19 +185,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri din ajustari pentru deprecierea imobilizarilor",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din provizioane",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din fondul comercial negativ",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din ajustari pentru deprecierea activelor circulante ",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Venituri din provizioane si ajustari pentru depreciere privind activitatea de exploatare"
|
||||
@ -209,53 +209,53 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Alte venituri financiare",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din creante imobilizate",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din diferente de curs valutar",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Castiguri din investitii pe termen scurt cedate",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din imobilizari financiare cedate",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Venituri din investitii financiare cedate"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din sconturi obtinute",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din dobanzi",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri din actiuni detinute la entitatile afiliate",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din interese de participare",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Venituri din imobilizari financiare"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din investitii financiare pe termen scurt",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "VENITURI FINANCIARE"
|
||||
@ -264,7 +264,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri din subventii pentru evenimente extraordinare si altele similare",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "VENITURI EXTRAORDINARE"
|
||||
@ -275,35 +275,35 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri din subventii de exploatare pentru dobanda datorata",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din subventii de exploatare aferente altor venituri",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din subventii de exploatare pentru alte cheltuieli de exploatare",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din subventii de exploatare pentru asigurari si protectie sociala",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din subventii de exploatare pentru plata personalului",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din subventii de exploatare pentru alte cheltuieli externe",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din subventii de exploatare pentru materii prime si materiale consumabile ",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din subventii de exploatare aferente cifrei de afaceri",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Venituri din subventii de exploatare"
|
||||
@ -315,29 +315,29 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri din creante reactivate si debitori diversi",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri din despagubiri, amenzi si penalitati",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din vanzarea activelor si alte operatii de capital",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din donatii si subventii primite",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alte venituri din exploatare",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din subventii pentru investitii",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Alte venituri din exploatare"
|
||||
@ -349,11 +349,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri din productia de imobilizari corporale",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din productia de imobilizari necorporale",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Venituri din productia de imobilizari"
|
||||
@ -362,39 +362,39 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri din vanzarea marfurilor",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Reduceri comerciale acordate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din activitati diverse",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din redevente, locatii de gestiune si chirii",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din studii si cercetari",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din lucrari executate si servicii prestate",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din vanzarea produselor reziduale",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din vanzarea semifabricatelor",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri din vanzarea produselor finite",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CIFRA DE AFACERI NETA"
|
||||
@ -403,11 +403,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Venituri aferente costurilor stocurilor de produse",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Venituri aferente costurilor serviciilor in curs de executie",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Venituri aferente costului productiei in curs de executie"
|
||||
@ -421,53 +421,53 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli cu tichetele de masa acordate salariatilor",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu primele reprezentand participarea personalului la profit",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu salariile personalului",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu renumerarea in instrumente de capitaluri proprii",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Contributia unitatii la schemele de pensii facultative",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Contributia unitatii la asigurarile sociale",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Contributia unitatii la fondul de garantare",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Contributia unitatii la fondul de concedii medicale",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Contributia unitatii la primele de asigurare voluntara de sanatate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Contributia unitatii pentru ajutorul de somaj",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Contributia angajatorului pentru asigurarile sociale de sanatate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alte cheltuieli privind asigurarile si protectia sociala",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cheltuieli privind asigurarile si protectia sociala"
|
||||
@ -479,11 +479,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Impozitul pe profit",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu impozitul pe venit si cu alte impozite care nu apar in elementele de mai sus",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CHELTUIELI CU IMPOZITUL PE PROFIT SI ALTE IMPOZITE"
|
||||
@ -494,15 +494,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a activelor circulante",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a imobilizarilor financiare",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli financiare privind amortizarea primelor de rambursare a obligatiunilor",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cheltuieli financiare privind amortizarile si ajustarile pentru pierdere de valoare"
|
||||
@ -511,19 +511,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli de exploatare privind provizioanele",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli de exploatare privind amortizarea imobilizarilor",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli de exploatare privind ajustarile pentru deprecierea imobilizarilor",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli de exploatare privind ajustarile pentru deprecierea activelor circulante",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cheltuieli de exploatare privind amortizarile, provizioanele si ajustarile pentru depreciere"
|
||||
@ -537,30 +537,30 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Alte cheltuieli de exploatare",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Donatii si subventii acordate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind activele cedate si alte operatii de capital",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Despagubiri, amenzi si penalitati",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Alte cheltuieli de exploatare"
|
||||
},
|
||||
{
|
||||
"name": "Pierderi din creante si debitori diversi",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu protectia mediului inconjurator",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Alte cheltuieli de exploatare"
|
||||
@ -569,7 +569,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli privind calamitatile si alte evenimente extraordinare",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CHELTUIELI EXTRAORDINARE"
|
||||
@ -578,36 +578,36 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Alte cheltuieli financiare",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Pierderi din creante legate de participatii",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli privind imobilizarile financiare cedate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Pierderi din investitiile pe termen scurt cedate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cheltuieli privind investitiile financiare cedate"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli din diferente de curs valutar",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind dobanzile",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind sconturile acordate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CHELTUIELI FINANCIARE"
|
||||
@ -616,19 +616,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli cu intretinerile si reparatiile",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu redeventele, locatiile de gestiune si chiriile",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu studiile si cercetarile",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu primele de asigurare",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CHELTUIELI CU LUCRARIRE SI SERVICIILE EXECUTATE DE TERTI"
|
||||
@ -637,68 +637,68 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Reduceri comerciale primite",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind marfurile",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind animalele si pasarile",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind materialele nestocate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind energia si apa",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli privind materialele pentru ambalat",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind combustibilul",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind semintele si materialele de plantat",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind piesele de schimb",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind furajele",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu materiale auxiliare",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind alte materiale consumabile",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cheltuieli cu materialele consumabile"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind materialele de natura obiectelor de inventar",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu materiile prime",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind ambalajele",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CHELTUIELI PRIVIND STOCURILE"
|
||||
@ -707,7 +707,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli cu alte impozite, taxe si varsaminte asimilate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cheltuieli cu alte impozite, taxe si varsaminte asimilate"
|
||||
@ -716,35 +716,35 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cheltuieli cu transportul de bunuri si personal",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu deplasari, detasari si transferari",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli postale si taxe de telecomunicatii",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu serviciile bancare si asimilate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli cu colaboratorii",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli privind comisioanele si onorariile",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cheltuieli de protocol, reclama si publicitate",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alte cheltuieli cu serviciile executate de terti",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "CHELTUIELI CU ALTE SERVICII EXECUTATE DE TERTI"
|
||||
@ -975,7 +975,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Cheltuieli integistrate in avans",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Decontari din operatiuni in curs de clarificare"
|
||||
@ -994,7 +994,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Debitori diversi",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DEBITORI SI CREDITORI DIVERSI"
|
||||
@ -1009,12 +1009,12 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Decontari din operatii in participare - activ",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Decontari din operatii in participare - pasiv",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Decontari din operatii in participare"
|
||||
@ -1047,12 +1047,12 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Actionari/asociati dobanzi la conturi curente",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Actionari/asociati - conturi curente",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Sume datorate actionarilor/asociatilor"
|
||||
@ -1107,7 +1107,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Alte creante sociale",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Alte datorii si creante sociale"
|
||||
@ -1122,7 +1122,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Alte creante in legatura cu personalul",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Alte datorii in legatura cu personalul"
|
||||
@ -1142,7 +1142,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Avansuri acordate personalului",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Personal - ajutoare materiale datorate"
|
||||
@ -1158,19 +1158,19 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Efecte de primit de la clienti",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Clienti incerti sau in litigiu",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Clienti",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Clienti"
|
||||
@ -1181,7 +1181,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Clienti - facturi de intocmit",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "CLIENTI SI CONTURI ASIMILATE"
|
||||
@ -1191,22 +1191,22 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Furnizori de imobilizari",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Efecte de platit pentru imobilizari",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Efecte de platit",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Furnizori - facturi nesosite",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -1222,7 +1222,7 @@
|
||||
{
|
||||
"account_type": "Payable",
|
||||
"name": "Furnizori",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "FURNIZORI SI CONTURI ASIMILATE"
|
||||
@ -1232,7 +1232,7 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Ajustari pentru deprecierea creantelor - debitori diversi",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Ajustari pentru deprecierea creantelor - decontari in cadrul grupului si cu actionarii/asociatii"
|
||||
@ -1306,17 +1306,17 @@
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Imprumuturi nerambursabile cu caracter de subventii",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Subventii guvernamentale",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Alte sume primite cu caracter de subventii",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Subventii"
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -140,97 +140,97 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Verilen Sipari\u015f Avanslar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Stok De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Yar\u0131 Mamuller",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u0130lk Madde Malzeme",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Ticari Mallar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Mamuller",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Stoklar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat Ve Onar\u0131m Maliyetleri",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ta\u015feronlara Verilen Avanslar",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat ve Onar\u0131m Maliyetleri",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "\u00d6zel Kesim Tahvil Senet Ve Bonolar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Hisse Senetleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Kamu Kesimi Tahvil, Senet ve Bonolar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Menkul K\u0131ymetler De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Di\u011fer Menkul K\u0131ymetler",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Menkul K\u0131ymetler",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Bank",
|
||||
"name": "Bankalar"
|
||||
},
|
||||
{
|
||||
"name": "Verilen \u00c7ekler ve \u00d6deme Emirleri(-)",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Kasa"
|
||||
},
|
||||
{
|
||||
"name": "Al\u0131nan \u00c7ekler",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Di\u011fer Haz\u0131r De\u011ferler",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Haz\u0131r De\u011ferler",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -265,11 +265,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "\u015e\u00fcpheli Ticari Alacaklar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u015e\u00fcpheli Ticari Alacaklar Kar\u015f\u0131l\u0131\u011f\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Kazan\u0131lmam\u0131\u015f Finansal Kiralama Faiz Gelirleri(-)"
|
||||
@ -282,7 +282,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Al\u0131c\u0131lar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Alacak Senetleri"
|
||||
@ -292,7 +292,7 @@
|
||||
}
|
||||
],
|
||||
"name": "Ticari Alacaklar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -330,18 +330,18 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gelecek Aylara Ait Giderler",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gelir Tahakkuklar\u0131"
|
||||
}
|
||||
],
|
||||
"name": "Gelecek Aylara Ait Giderler ve Gelir Tahakkuklar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "D\u00f6nen Varl\u0131klar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -354,12 +354,12 @@
|
||||
{
|
||||
"account_type": "Tax",
|
||||
"name": "Di\u011fer KDV",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Tax",
|
||||
"name": "Hesaplanan KDV",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Say\u0131m Ve Tesell\u00fcm Fazlalar\u0131"
|
||||
@ -374,14 +374,14 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gelecek Aylara Ait Gelirler",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gider Tahakkuklar\u0131"
|
||||
}
|
||||
],
|
||||
"name": "Gelecek Aylara Ait Gelirler Ve Gider Tahakkuklar\u0131",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
@ -389,20 +389,20 @@
|
||||
{
|
||||
"account_type": "Tax",
|
||||
"name": "D\u00f6nem K\u00e2r\u0131n\u0131n Pe\u015fin \u00d6denen Vergi Ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler(-)",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Tax",
|
||||
"name": "D\u00f6nem K\u00e2r\u0131 Vergi Ve Di\u011fer Yasal Y\u00fck\u00fcml\u00fcl\u00fck Kar\u015f\u0131l\u0131klar\u0131",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Maliyet Giderleri Kar\u015f\u0131l\u0131\u011f\u0131",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "K\u0131dem Tazminat\u0131 Kar\u015f\u0131l\u0131\u011f\u0131",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
@ -417,26 +417,26 @@
|
||||
{
|
||||
"account_type": "Tax",
|
||||
"name": "Vadesi Ge\u00e7mi\u015f, Ertelenmi\u015f Veya Taksitlendirilmi\u015f Vergi Ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Tax",
|
||||
"name": "\u00d6denecek Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Tax",
|
||||
"name": "\u00d6denecek Vergi Ve Fonlar",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Tax",
|
||||
"name": "\u00d6denecek Sosyal G\u00fcvenl\u00fck Kesintileri",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "\u00d6denecek Vergi ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
@ -569,15 +569,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Gelir Tahakkuklar\u0131",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gelecek Y\u0131llara Ait Giderler",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Gelecek Y\u0131llara Ait Giderler ve Gelir Tahakkuklar\u0131",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -618,42 +618,42 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Binalar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Tesis, Makine Ve Cihazlar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Arazi Ve Arsalar"
|
||||
},
|
||||
{
|
||||
"name": "Yer Alt\u0131 Ve Yer \u00dcst\u00fc D\u00fczenleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Di\u011fer Maddi Duran Varl\u0131klar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Birikmi\u015f Amortismanlar(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Ta\u015f\u0131tlar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Demirba\u015flar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Yap\u0131lmakta Olan Yat\u0131r\u0131mlar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Verilen Avanslar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Maddi Duran Varl\u0131klar"
|
||||
@ -662,65 +662,65 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Birikmi\u015f Amortismanlar(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u015eerefiye",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Verilen Avanslar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Di\u011fer Maddi Olmayan Duran Varl\u0131klar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u00d6zel Maliyetler",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Ara\u015ft\u0131rma Ve Geli\u015ftirme Giderleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Kurulu\u015f Ve \u00d6rg\u00fctlenme Giderleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Haklar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Maddi Olmayan Duran Varl\u0131klar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Birikmi\u015f T\u00fckenme Paylar\u0131(-)",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Verilen Avanslar",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Arama Giderleri",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Haz\u0131rl\u0131k Ve Geli\u015ftirme Giderleri",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Di\u011fer \u00d6zel T\u00fckenmeye Tabi Varl\u0131klar",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "\u00d6zel T\u00fckenmeye Tabi Varl\u0131klar",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -775,39 +775,39 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Di\u011fer \u00c7e\u015fitli Duran Varl\u0131klar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Elden \u00c7\u0131kar\u0131lacak Stoklar Ve Maddi Duran Varl\u0131klar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Pe\u015fin \u00d6denen Vergi Ve Fonlar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Di\u011fer KDV",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Gelecek Y\u0131llar \u0130htiyac\u0131 Stoklar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Gelecek Y\u0131llarda \u0130ndirilecek KDV",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Stok De\u011fer D\u00fc\u015f\u00fckl\u00fc\u011f\u00fc Kar\u015f\u0131l\u0131\u011f\u0131(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Birikmi\u015f Amortismanlar(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Di\u011fer Duran Varl\u0131klar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Duran Varl\u0131klar"
|
||||
@ -818,31 +818,31 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "D\u00f6nem Net K\u00e2r\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "D\u00f6nem Net Zarar\u0131(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "D\u00f6nem Net K\u00e2r\u0131 (Zarar\u0131)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Ge\u00e7mi\u015f Y\u0131llar Zararlar\u0131(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Ge\u00e7mi\u015f Y\u0131llar Zararlar\u0131(-)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Sermaye",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
@ -850,77 +850,77 @@
|
||||
}
|
||||
],
|
||||
"name": "\u00d6denmi\u015f Sermaye",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Di\u011fer Sermaye Yedekleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Maliyet Art\u0131\u015flar\u0131 Fonu",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Hisse Senetleri \u0130hra\u00e7 Primleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Hisse Senedi \u0130ptal K\u00e2rlar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Maddi Duran Varl\u0131k Yeniden De\u011ferlenme Art\u0131\u015flar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "\u0130\u015ftirakler Yeniden De\u011ferleme Art\u0131\u015flar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Sermaye Yedekleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "\u00d6zel Fonlar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Stat\u00fc Yedekleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Ola\u011fan\u00fcst\u00fc Yedekler",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Yasal Yedekler",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Di\u011fer K\u00e2r Yedekleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "K\u00e2r Yedekleri",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Ge\u00e7mi\u015f Y\u0131llar K\u00e2rlar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Ge\u00e7mi\u015f Y\u0131llar K\u00e2rlar\u0131",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "\u00d6z Kaynaklar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -958,7 +958,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "K\u0131dem Tazminat\u0131 Kar\u015f\u0131l\u0131\u011f\u0131",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Payable",
|
||||
|
@ -6,189 +6,189 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Automobile Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Payroll Expenses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Interest Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Continuing Education",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Meals and Entertainment",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Custom Hire and Contract Labor",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Repairs and Maintenance",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Postage and Delivery",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Small Tools and Equipment",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Chemicals Purchased",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gasoline, Fuel and Oil",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Equipment Rental",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Taxes - Property",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Miscellaneous Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Uniforms",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Veterinary, Breeding, Medicine",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Professional Fees",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Janitorial Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "General Liability Insurance",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Life and Disability Insurance",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Health Insurance",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Professional Liability",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Worker's Compensation",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Insurance Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Travel Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Advertising and Promotion",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Office Supplies",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Dues and Subscriptions",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Feed Purchased",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Bank Service Charges",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Marketing Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Storage and Warehousing",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Computer and Internet Expenses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Fertilizers and Lime",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Seeds and Plants Purchased",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Conservation Expenses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Freight and Trucking",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Depreciation Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Printing and Reproduction",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Car and Truck Expenses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Charitable Contributions",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Rent Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Utilities",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Telephone Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Business Licenses and Permits",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Expenses",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -196,59 +196,59 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Client Trust Account",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"account_type": "Receivable",
|
||||
"name": "Account Receivable",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Receivable",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Bank or Cash",
|
||||
"account_type": "Cash",
|
||||
"name": "Cash or Cash Equivalents",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Current Assets",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Security Deposits Asset",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Other Assets",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Court Costs",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Advanced Client Costs",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Filing Fees",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Expert Witness Fees",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Other Current Assets",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Fixed Asset",
|
||||
@ -256,19 +256,19 @@
|
||||
{
|
||||
"account_type": "Fixed Asset",
|
||||
"name": "Furniture and Equipment",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Accumulated Depreciation",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Fixed Assets",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Assets",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -278,26 +278,26 @@
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Capital Stock",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Retained Earnings",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Dividends Paid",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Opening Balance Equity",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Equity",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -307,157 +307,157 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Account Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Current Liabilities",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Sales Tax Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Customer Deposits Received",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Payroll Liabilities",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Use Tax Payable",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Other Current Liabilities",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Liabilities",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "Liabilities and Equity",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Settlement Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Commodity Credit Loans",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Administrative Fees",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Shipping and Delivery Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Commission income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Fuel Tax Credits and Other Inc.",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Livestock Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Custom Hire Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Crop Insurance Proceeds",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Legal Fee Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cooperative Distributions",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Job Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Crop Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sales Discounts",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Rental Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Farmers Market Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sales",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sales Discounts",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Service Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Agricultural Program Payments",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Proceeds from Sale of Assets",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Finance Charge Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Interest Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Insurance Proceeds Received",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Other Income",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
@ -465,76 +465,76 @@
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Other Job Related Costs",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Commissions Paid",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Tools and Small Equipment",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Merchant Account Fees",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Job Materials Purchased",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Subcontracted Services",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Equipment Rental for Jobs",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Purchases - Resale Items",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Commissions Paid",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Freight and Shipping Costs",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Merchant Account Fees",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Media Purchased for Clients",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Purchase Discounts",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Cost of Goods Sold",
|
||||
"name": "Subcontractors Expense",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Cost of Goods Sold",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "Basic",
|
||||
|
@ -10,27 +10,27 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deuds. Contratos de Cambio Import.",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Proveedores de Plaza",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Acreedores Varios (def)",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Proveedores por Importaciones",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos a Pagar ds/Comerciales",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Intereses a vencer ds/Comerciales",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DEUDAS COMERCIALES"
|
||||
@ -39,7 +39,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Responsabilidad frente a terceros",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "PREVISIONES"
|
||||
@ -48,23 +48,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Controladas/Vinculadas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Sueldos y Jornales a pagar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Acreedores fiscales",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otras deudas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Saldos Acreedores Cuentas Directores",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -85,19 +85,19 @@
|
||||
},
|
||||
{
|
||||
"name": "Cobros Anticipados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Dividendos a Pagar",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Casa Matriz, Empresas Controlantes,",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Acreedores por Cargas Sociales",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -169,23 +169,23 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ints. a vencer ds/Financieras",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Prestamos Bancarios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos a pagar MN a pagar ds/Financieras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Obligaciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos a pagar ME a pagar ds/Financieras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DEUDAS FINANCIERAS"
|
||||
@ -199,7 +199,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Comerciales",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DEUDAS COMERCIALES"
|
||||
@ -208,7 +208,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Financieras",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DEUDAS FINANCIERAS"
|
||||
@ -217,7 +217,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Previsiones No Corrientes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "PREVISIONES NO CORRIENTES"
|
||||
@ -226,7 +226,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Deudas Diversas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "DEUDAS DIVERSAS"
|
||||
@ -246,12 +246,12 @@
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Revaluaciones fiscales",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Revaluaciones voluntarias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "AJUSTES PATRIMONIO (H)"
|
||||
@ -269,7 +269,7 @@
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Capital Integrado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "CAPITAL"
|
||||
@ -284,12 +284,12 @@
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Resultados del ejercicio",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Dividendos provisorios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "RESULTADOS ACUMULADOS"
|
||||
@ -299,17 +299,17 @@
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Reservas Legales",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "Reservas Voluntarias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"account_type": "Equity",
|
||||
"name": "P\u00e9rdidas y Ganancias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "RESERVAS"
|
||||
@ -328,31 +328,31 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Importaciones en tramite",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Materiales y Suministros",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Materias Primas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos en Proceso",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Productos Terminados",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Mercaderia de Reventa",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Prevision p/desvalorizaciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "BIENES DE CAMBIO"
|
||||
@ -364,14 +364,14 @@
|
||||
},
|
||||
{
|
||||
"name": "Pagos adelantados",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Saldos Deudor de ctas de Directores"
|
||||
},
|
||||
{
|
||||
"name": "Anticipos a Proveedores",
|
||||
"root_type": "Liability"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Casa Matriz, Empresas Controlantes"
|
||||
@ -432,7 +432,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ingresos diferidos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Prevision para Deudores Incobrables"
|
||||
@ -442,35 +442,35 @@
|
||||
},
|
||||
{
|
||||
"name": "Intereses percibidos por adelantado",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos a Cobrar MN",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudores por Exportaciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudores Simples Plaza",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Deudores Varios (def)",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cheques en Cartera ME",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Cheques en Cartera MN",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Documentos a Cobrar ME",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "CREDITOS POR VENTAS"
|
||||
@ -511,15 +511,15 @@
|
||||
},
|
||||
{
|
||||
"name": "Ingresos diferidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ingresos percibidos por adelantado",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Prevision para Deudores Incobrables",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"account_type": "Tax",
|
||||
@ -537,15 +537,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Amortizaciones Acumuladas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Patentes, marcas y licencias",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Gastos de investigacion",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "INTANGIBLES"
|
||||
@ -554,35 +554,35 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Veh\u00edculos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Muebles y \u00datiles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Maquinas y Herramientas",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Inmuebles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Amort.Ac.Vehiculos",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Amort.Ac.Maq.y Herram.",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Amort.Ac.Inmuebles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Amort.Ac.Mueb.y Utiles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "BIENES DE USO"
|
||||
@ -591,31 +591,31 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Prevision para Desvalorizaciones",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Intereses percibidos por adelantado",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Inmuebles",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Valores orig. y revaluados s/anexo",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Menos: Amort. Acum.",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Titulos y Acciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Depositos Bancarios",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "INVERSIONES A LARGO PLAZO"
|
||||
@ -624,7 +624,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Bienes de cambio no corrientes",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "BIENES DE CAMBIO NO CORRIENTES"
|
||||
@ -633,7 +633,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Cr\u00e9ditos a Largo Plazo",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "CREDITOS A LARGO PLAZO"
|
||||
@ -670,13 +670,13 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ingresos Operativos (def)",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
{
|
||||
"name": "Ventas extraordinarias",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "VENTAS EXTRAORDINARIAS"
|
||||
@ -685,15 +685,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Diferencias de Cambio ganadas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Descuentos Obtenidos",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Intereses ganados",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "INGRESOS FINANCIEROS"
|
||||
@ -702,19 +702,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Ventas Exentas",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ventas Tasa B\u00e1sica",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ventas Tasa M\u00ednima",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Ventas por Exportaciones",
|
||||
"root_type": "Income"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "VENTAS ORDINARIAS"
|
||||
@ -728,7 +728,7 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Amortizaciones",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "AMORTIZACIONES"
|
||||
@ -737,63 +737,63 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Representaci\u00f3n",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Energ\u00eda El\u00e9ctrica y Aguas Corrientes",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Servicios Contratados",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Honorarios Profesionales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Mantenimiento Veh\u00edculos",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Combustible",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Papeler\u00eda",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Cargas Sociales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Fletes",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Comunicaciones y Servicios Telef\u00f3nicos",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Seguros",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Sueldos y Jornales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Gastos Varios (def)",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Publicidad",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Alquileres",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "GASTOS DE ADMINISTRACION Y VENTAS"
|
||||
@ -802,11 +802,11 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Retenciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"name": "Otros",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
},
|
||||
{
|
||||
"children": [
|
||||
@ -823,7 +823,7 @@
|
||||
},
|
||||
{
|
||||
"name": "Contribuciones",
|
||||
"root_type": "Asset"
|
||||
"report_type": "Balance Sheet"
|
||||
}
|
||||
],
|
||||
"name": "OBLIGACIONES TRIBUTARIAS"
|
||||
@ -832,19 +832,19 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Multas y Recargos Fiscales",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Descuentos Concedidos",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Diferencias de Cambio perdidas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Intereses y Gastos Bancarios",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "GASTOS FINANCIEROS"
|
||||
@ -853,15 +853,15 @@
|
||||
"children": [
|
||||
{
|
||||
"name": "Costos de lo vendido",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Costo de Mercader\u00edas",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
},
|
||||
{
|
||||
"name": "Costo de Venta de Bienes de Uso",
|
||||
"root_type": "Expense"
|
||||
"report_type": "Profit and Loss"
|
||||
}
|
||||
],
|
||||
"name": "COSTO DE LO VENDIDO"
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user