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:
|
class DocType:
|
||||||
def __init__(self, d, dl):
|
def __init__(self, d, dl):
|
||||||
self.doc, self.doclist = d, dl
|
self.doc, self.doclist = d, dl
|
||||||
self.no_root_type = False
|
self.no_report_type = False
|
||||||
|
|
||||||
def create_accounts(self, company):
|
def create_accounts(self, company):
|
||||||
chart = {}
|
chart = {}
|
||||||
@ -18,6 +18,9 @@ class DocType:
|
|||||||
self.doc.source_file), "r") as f:
|
self.doc.source_file), "r") as f:
|
||||||
chart = json.loads(f.read())
|
chart = json.loads(f.read())
|
||||||
|
|
||||||
|
from erpnext.accounts.doctype.chart_of_accounts.charts.account_properties \
|
||||||
|
import account_properties
|
||||||
|
|
||||||
if chart:
|
if chart:
|
||||||
accounts = []
|
accounts = []
|
||||||
def _import_accounts(children, parent):
|
def _import_accounts(children, parent):
|
||||||
@ -28,36 +31,35 @@ class DocType:
|
|||||||
if account_name_in_db in accounts:
|
if account_name_in_db in accounts:
|
||||||
count = accounts.count(account_name_in_db)
|
count = accounts.count(account_name_in_db)
|
||||||
account_name = account_name + " " + cstr(count)
|
account_name = account_name + " " + cstr(count)
|
||||||
|
|
||||||
|
child.update(account_properties.get(chart.get("name"), {}).get(account_name))
|
||||||
|
|
||||||
account = frappe.bean({
|
account = frappe.bean({
|
||||||
"doctype": "Account",
|
"doctype": "Account",
|
||||||
"account_name": account_name,
|
"account_name": account_name,
|
||||||
"company": company,
|
"company": company,
|
||||||
"parent_account": parent,
|
"parent_account": parent,
|
||||||
"group_or_ledger": "Group" if child.get("children") else "Ledger",
|
"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")
|
"account_type": child.get("account_type")
|
||||||
}).insert()
|
}).insert()
|
||||||
|
|
||||||
accounts.append(account_name_in_db)
|
accounts.append(account_name_in_db)
|
||||||
|
|
||||||
# set root_type for all parents where blank
|
# set report_type for all parents where blank
|
||||||
if not account.doc.root_type or account.doc.root_type == 'None':
|
if not account.doc.report_type or account.doc.report_type == 'None':
|
||||||
self.no_root_type = True
|
self.no_report_type = True
|
||||||
elif self.no_root_type:
|
elif self.no_report_type:
|
||||||
frappe.db.sql("""update tabAccount set root_type=%s
|
frappe.db.sql("""update tabAccount set report_type=%s
|
||||||
where lft<=%s and rgt>=%s and ifnull(root_type, '')=''""",
|
where lft<=%s and rgt>=%s and ifnull(report_type, '')=''""",
|
||||||
(account.doc.root_type, account.doc.lft, account.doc.rgt))
|
(account.doc.report_type, account.doc.lft, account.doc.rgt))
|
||||||
|
|
||||||
if child.get("children"):
|
if child.get("children"):
|
||||||
_import_accounts(child.get("children"), account.doc.name)
|
_import_accounts(child.get("children"), account.doc.name)
|
||||||
|
|
||||||
_import_accounts(chart.get("root").get("children"), None)
|
_import_accounts(chart.get("root").get("children"), None)
|
||||||
|
|
||||||
# set root_type for root accounts
|
@frappe.whitelist()
|
||||||
for acc in frappe.db.sql("""select name, lft, rgt from `tabAccount`
|
def get_charts_for_country(country):
|
||||||
where ifnull(parent_account, '')=''""", as_dict=1):
|
return frappe.db.sql_list("select chart_name from `tabChart of Accounts` where country=%s",
|
||||||
root_types = frappe.db.sql_list("""select distinct root_type from tabAccount
|
country)
|
||||||
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)
|
|
@ -49,23 +49,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Recupero de Rezagos",
|
"name": "Recupero de Rezagos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta de Bienes de Uso",
|
"name": "Ganancia Venta de Bienes de Uso",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Recupero de Deudores Incobrables",
|
"name": "Recupero de Deudores Incobrables",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta Inversiones Permanentes",
|
"name": "Ganancia Venta Inversiones Permanentes",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donaciones obtenidas, ganandas, percibidas",
|
"name": "Donaciones obtenidas, ganandas, percibidas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Positivos Extraordinarios"
|
"name": "Resultados Positivos Extraordinarios"
|
||||||
@ -74,40 +74,40 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Comisiones gananados, obtenidos, percibidos",
|
"name": "Comisiones gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Descuentos gananados, obtenidos, percibidos",
|
"name": "Descuentos gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Renta de T\u00edtulos P\u00fablicos",
|
"name": "Renta de T\u00edtulos P\u00fablicos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Honorarios gananados, obtenidos, percibidos",
|
"name": "Honorarios gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ventas - Categoria de productos 01",
|
"name": "Ventas - Categoria de productos 01",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Positivos Ordinarios"
|
"name": "Resultados Positivos Ordinarios"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses gananados, obtenidos, percibidos",
|
"name": "Intereses gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alquileres gananados, obtenidos, percibidos",
|
"name": "Alquileres gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta de Acciones",
|
"name": "Ganancia Venta de Acciones",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Positivos Ordinarios"
|
"name": "Resultados Positivos Ordinarios"
|
||||||
@ -121,7 +121,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Publicidad y Propaganda",
|
"name": "Gastos de Publicidad y Propaganda",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Servicios P\u00fablicos"
|
"name": "Gastos en Servicios P\u00fablicos"
|
||||||
@ -130,22 +130,22 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01",
|
"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": "Costo de Mercader\u00edas Vendidas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Amortizaci\u00f3n",
|
"name": "Gastos en Amortizaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Cargas Sociales",
|
"name": "Gastos en Cargas Sociales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Sueldos y Jormales",
|
"name": "Gastos en Sueldos y Jormales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos Bancarios"
|
"name": "Gastos Bancarios"
|
||||||
@ -155,7 +155,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Depreciaci\u00f3n de Bienes de Uso",
|
"name": "Gastos en Depreciaci\u00f3n de Bienes de Uso",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Negativos Ordinarios"
|
"name": "Resultados Negativos Ordinarios"
|
||||||
@ -164,15 +164,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos en Siniestros",
|
"name": "Gastos en Siniestros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donaciones Cedidas, Otorgadas",
|
"name": "Donaciones Cedidas, Otorgadas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "P\u00e9rdida Venta Bienes de Uso",
|
"name": "P\u00e9rdida Venta Bienes de Uso",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Negativos Extraordinarios"
|
"name": "Resultados Negativos Extraordinarios"
|
||||||
@ -191,7 +191,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Bienes de Uso",
|
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Bienes de Uso",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ajustes al Patrimonio"
|
"name": "Ajustes al Patrimonio"
|
||||||
@ -200,11 +200,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Aportes No Capitalizados / Aportes Irrevocables Futura Suscripci\u00f3n de Acciones",
|
"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",
|
"name": "Aportes No Capitalizados / Primas de Emsi\u00f3n",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Aportes No Capitalizados"
|
"name": "Aportes No Capitalizados"
|
||||||
@ -213,19 +213,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Capital social / Dividendos a Distribuir en Acciones",
|
"name": "Capital social / Dividendos a Distribuir en Acciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital social / Acciones en Circulaci\u00f3n",
|
"name": "Capital social / Acciones en Circulaci\u00f3n",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital social / Capital Suscripto",
|
"name": "Capital social / Capital Suscripto",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital social / (-) Descuento de Emisi\u00f3n de Acciones",
|
"name": "Capital social / (-) Descuento de Emisi\u00f3n de Acciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Capital Social"
|
"name": "Capital Social"
|
||||||
@ -234,19 +234,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Resultados Acumulados",
|
"name": "Resultados Acumulados",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Resultado del Ejercicio",
|
"name": "Resultado del Ejercicio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancias y P\u00e9rdidas del Ejercicio",
|
"name": "Ganancias y P\u00e9rdidas del Ejercicio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Resultados Acumulados del Ejercicio Anterior",
|
"name": "Resultados Acumulados del Ejercicio Anterior",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados No Asignados"
|
"name": "Resultados No Asignados"
|
||||||
@ -255,19 +255,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Reserva para Renovaci\u00f3n de Bienes de Uso",
|
"name": "Reserva para Renovaci\u00f3n de Bienes de Uso",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Estatutaria",
|
"name": "Reserva Estatutaria",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Facultativa",
|
"name": "Reserva Facultativa",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Legal",
|
"name": "Reserva Legal",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ganancias Reservadas"
|
"name": "Ganancias Reservadas"
|
||||||
@ -281,19 +281,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Sociales / Retenciones a Depositar",
|
"name": "Deudas Sociales / Retenciones a Depositar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Sociales / Sueldos a Pagar",
|
"name": "Deudas Sociales / Sueldos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Sociales / Provisi\u00f3n para Sueldo Anual Complementario",
|
"name": "Deudas Sociales / Provisi\u00f3n para Sueldo Anual Complementario",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Sociales / Cargas Sociales a Pagar",
|
"name": "Deudas Sociales / Cargas Sociales a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Deudas Sociales"
|
"name": "Deudas Sociales"
|
||||||
@ -302,19 +302,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otras Deudas / Acreedores Varios",
|
"name": "Otras Deudas / Acreedores Varios",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Deudas / Honorarios Directores y S\u00edndicos a Pagar",
|
"name": "Otras Deudas / Honorarios Directores y S\u00edndicos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Deudas / Dividendos a Pagar",
|
"name": "Otras Deudas / Dividendos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Deudas / Cobros por Adelantado",
|
"name": "Otras Deudas / Cobros por Adelantado",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otras Deudas"
|
"name": "Otras Deudas"
|
||||||
@ -323,15 +323,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Previsiones / Previsi\u00f3n para Garant\u00edas por Service",
|
"name": "Previsiones / Previsi\u00f3n para Garant\u00edas por Service",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Previsiones / Previsi\u00f3n para juicios Pendientes",
|
"name": "Previsiones / Previsi\u00f3n para juicios Pendientes",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Previsiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
"name": "Previsiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Previsiones"
|
"name": "Previsiones"
|
||||||
@ -340,15 +340,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Comerciales / Anticipos de Clientes",
|
"name": "Deudas Comerciales / Anticipos de Clientes",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Comerciales / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
"name": "Deudas Comerciales / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Comerciales / Proveedores",
|
"name": "Deudas Comerciales / Proveedores",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Deudas Comerciales"
|
"name": "Deudas Comerciales"
|
||||||
@ -357,23 +357,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Debentures Emitidos",
|
"name": "Deudas Bancarias y Financieras / Debentures Emitidos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Intereses a Pagar",
|
"name": "Deudas Bancarias y Financieras / Intereses a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Obligaciones a Pagar",
|
"name": "Deudas Bancarias y Financieras / Obligaciones a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Prestamos",
|
"name": "Deudas Bancarias y Financieras / Prestamos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Adelantos en Cuenta Corriente",
|
"name": "Deudas Bancarias y Financieras / Adelantos en Cuenta Corriente",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Deudas Bancarias y Financieras"
|
"name": "Deudas Bancarias y Financieras"
|
||||||
@ -382,27 +382,27 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Fiscales / Impuesto sobre los Bienes Personales a Pagar",
|
"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",
|
"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",
|
"name": "Deudas Fiscales / Monotributo a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Fiscales / IVA a Pagar",
|
"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",
|
"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",
|
"name": "Deudas Fiscales / Impuesto a las Ganancias a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Deudas Fiscales"
|
"name": "Deudas Fiscales"
|
||||||
@ -414,39 +414,39 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Anticipo de Impuestos",
|
"name": "Otros Cr\u00e9ditos / Anticipo de Impuestos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Anticipos a Proveedores",
|
"name": "Otros Cr\u00e9ditos / Anticipos a Proveedores",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Pr\u00e9stamos otorgados",
|
"name": "Otros Cr\u00e9ditos / Pr\u00e9stamos otorgados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Accionistas",
|
"name": "Otros Cr\u00e9ditos / Accionistas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Intereses Pagados por Adelantado",
|
"name": "Otros Cr\u00e9ditos / Intereses Pagados por Adelantado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Alquileres Pagados por Adelantado",
|
"name": "Otros Cr\u00e9ditos / Alquileres Pagados por Adelantado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Anticipo al Personal",
|
"name": "Otros Cr\u00e9ditos / Anticipo al Personal",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / (-) Intereses (+) a Devengar",
|
"name": "Otros Cr\u00e9ditos / (-) Intereses (+) a Devengar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / (-) Previsi\u00f3n para Descuentos",
|
"name": "Otros Cr\u00e9ditos / (-) Previsi\u00f3n para Descuentos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Cr\u00e9ditos"
|
"name": "Otros Cr\u00e9ditos"
|
||||||
@ -455,23 +455,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos por Ventas / Deudores por Ventas",
|
"name": "Cr\u00e9ditos por Ventas / Deudores por Ventas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos por Ventas / Deudores Morosos",
|
"name": "Cr\u00e9ditos por Ventas / Deudores Morosos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos por Ventas / Deudores en Gesti\u00f3n Judicial",
|
"name": "Cr\u00e9ditos por Ventas / Deudores en Gesti\u00f3n Judicial",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos por Ventas / Deudores Varios",
|
"name": "Cr\u00e9ditos por Ventas / Deudores Varios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos por Ventas / (-) Previsi\u00f3n para Ds. Incobrables",
|
"name": "Cr\u00e9ditos por Ventas / (-) Previsi\u00f3n para Ds. Incobrables",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cr\u00e9ditos por Ventas"
|
"name": "Cr\u00e9ditos por Ventas"
|
||||||
@ -482,26 +482,26 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y bancos - Valores a Depositar ",
|
"name": "Caja y bancos - Valores a Depositar ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y Bancos.../ BCO. CTA CTE ARS",
|
"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 - Cuentas Corrientes"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Caja y bancos - Recaudaciones a Depositar ",
|
"name": "Caja y bancos - Recaudaciones a Depositar ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y bancos - Caja / efectivo ARS",
|
"name": "Caja y bancos - Caja / efectivo ARS",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Caja"
|
"name": "Caja y Bancos - Caja"
|
||||||
@ -510,7 +510,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y ...- Fondos fijos / caja chica 01 ARS",
|
"name": "Caja y ...- Fondos fijos / caja chica 01 ARS",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Fondos fijos"
|
"name": "Caja y Bancos - Fondos fijos"
|
||||||
@ -519,7 +519,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y bancos - Caja / efectivo USD",
|
"name": "Caja y bancos - Caja / efectivo USD",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Moneda Extranjera"
|
"name": "Caja y Bancos - Moneda Extranjera"
|
||||||
@ -533,34 +533,34 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Bienes de Cambio - Mercader\u00edas / Categoria de productos 01",
|
"name": "Bienes de Cambio - Mercader\u00edas / Categoria de productos 01",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Bienes de Cambio - Mercader\u00edas"
|
"name": "Bienes de Cambio - Mercader\u00edas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materias primas",
|
"name": "Materias primas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Cambio - Mercader\u00edas en Tr\u00e1nsito",
|
"name": "Bienes de Cambio - Mercader\u00edas en Tr\u00e1nsito",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos Elaborados",
|
"name": "Productos Elaborados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos en Curso de Elaboraci\u00f3n",
|
"name": "Productos en Curso de Elaboraci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Bienes de Cambio",
|
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Bienes de Cambio",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materiales Varios ",
|
"name": "Materiales Varios ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Bienes de Cambio"
|
"name": "Bienes de Cambio"
|
||||||
@ -569,19 +569,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / Acciones Permanentes",
|
"name": "Inversiones / Acciones Permanentes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / Acciones Transitorias",
|
"name": "Inversiones / Acciones Transitorias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Inversiones"
|
"name": "Inversiones"
|
||||||
@ -590,19 +590,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Bienes Inmateriales / (-) Amortizaci\u00f3n Acumulada",
|
"name": "Bienes Inmateriales / (-) Amortizaci\u00f3n Acumulada",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes Inmateriales / Patentes de Invenci\u00f3n",
|
"name": "Bienes Inmateriales / Patentes de Invenci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes Inmateriales / Concesiones y Franquicias",
|
"name": "Bienes Inmateriales / Concesiones y Franquicias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes Inmateriales / Marcas de F\u00e1brica",
|
"name": "Bienes Inmateriales / Marcas de F\u00e1brica",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Bienes Inmateriales"
|
"name": "Bienes Inmateriales"
|
||||||
@ -611,23 +611,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / Inmuebles",
|
"name": "Bienes de Uso / Inmuebles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / Maquinaria",
|
"name": "Bienes de Uso / Maquinaria",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / Rodados",
|
"name": "Bienes de Uso / Rodados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / (-) Depreciaci\u00f3n Acumulada",
|
"name": "Bienes de Uso / (-) Depreciaci\u00f3n Acumulada",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / Equipos",
|
"name": "Bienes de Uso / Equipos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Bienes de Uso"
|
"name": "Bienes de Uso"
|
||||||
@ -650,15 +650,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Costos de Producci\u00f3n",
|
"name": "Costos de Producci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de Administraci\u00f3n",
|
"name": "Gastos de Administraci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de Comercializaci\u00f3n",
|
"name": "Gastos de Comercializaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas de Movimiento"
|
"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": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Recupero de Rezagos",
|
"name": "Recupero de Rezagos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta de Bienes de Uso",
|
"name": "Ganancia Venta de Bienes de Uso",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Recupero de Deudores Incobrables",
|
"name": "Recupero de Deudores Incobrables",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta Inversiones Permanentes",
|
"name": "Ganancia Venta Inversiones Permanentes",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donaciones obtenidas, ganandas, percibidas",
|
"name": "Donaciones obtenidas, ganandas, percibidas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Positivos Extraordinarios"
|
"name": "Resultados Positivos Extraordinarios"
|
||||||
@ -74,40 +74,40 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Comisiones gananados, obtenidos, percibidos",
|
"name": "Comisiones gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Descuentos gananados, obtenidos, percibidos",
|
"name": "Descuentos gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Renta de T\u00edtulos P\u00fablicos",
|
"name": "Renta de T\u00edtulos P\u00fablicos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Honorarios gananados, obtenidos, percibidos",
|
"name": "Honorarios gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ventas - Categoria de productos 01",
|
"name": "Ventas - Categoria de productos 01",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ventas"
|
"name": "Ventas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses gananados, obtenidos, percibidos",
|
"name": "Intereses gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alquileres gananados, obtenidos, percibidos",
|
"name": "Alquileres gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta de Acciones",
|
"name": "Ganancia Venta de Acciones",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Positivos Ordinarios"
|
"name": "Resultados Positivos Ordinarios"
|
||||||
@ -121,7 +121,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Publicidad y Propaganda",
|
"name": "Gastos de Publicidad y Propaganda",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Servicios P\u00fablicos"
|
"name": "Gastos en Servicios P\u00fablicos"
|
||||||
@ -130,22 +130,22 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01",
|
"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": "Costo de Mercader\u00edas Vendidas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Amortizaci\u00f3n",
|
"name": "Gastos en Amortizaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Cargas Sociales",
|
"name": "Gastos en Cargas Sociales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Sueldos y Jormales",
|
"name": "Gastos en Sueldos y Jormales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos Bancarios"
|
"name": "Gastos Bancarios"
|
||||||
@ -155,7 +155,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Depreciaci\u00f3n de Bienes de Uso",
|
"name": "Gastos en Depreciaci\u00f3n de Bienes de Uso",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Negativos Ordinarios"
|
"name": "Resultados Negativos Ordinarios"
|
||||||
@ -164,15 +164,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos en Siniestros",
|
"name": "Gastos en Siniestros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donaciones Cedidas, Otorgadas",
|
"name": "Donaciones Cedidas, Otorgadas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "P\u00e9rdida Venta Bienes de Uso",
|
"name": "P\u00e9rdida Venta Bienes de Uso",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados Negativos Extraordinarios"
|
"name": "Resultados Negativos Extraordinarios"
|
||||||
@ -191,7 +191,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Bienes de Uso",
|
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Bienes de Uso",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ajustes al Patrimonio"
|
"name": "Ajustes al Patrimonio"
|
||||||
@ -200,11 +200,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Aportes No Capitalizados / Aportes Irrevocables Futura Suscripci\u00f3n de Acciones",
|
"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",
|
"name": "Aportes No Capitalizados / Primas de Emsi\u00f3n",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Aportes No Capitalizados"
|
"name": "Aportes No Capitalizados"
|
||||||
@ -213,19 +213,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Capital social / Dividendos a Distribuir en Acciones",
|
"name": "Capital social / Dividendos a Distribuir en Acciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital social / Acciones en Circulaci\u00f3n",
|
"name": "Capital social / Acciones en Circulaci\u00f3n",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital social / Capital Suscripto",
|
"name": "Capital social / Capital Suscripto",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital social / (-) Descuento de Emisi\u00f3n de Acciones",
|
"name": "Capital social / (-) Descuento de Emisi\u00f3n de Acciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Capital Social"
|
"name": "Capital Social"
|
||||||
@ -234,19 +234,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Resultados Acumulados",
|
"name": "Resultados Acumulados",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Resultado del Ejercicio",
|
"name": "Resultado del Ejercicio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancias y P\u00e9rdidas del Ejercicio",
|
"name": "Ganancias y P\u00e9rdidas del Ejercicio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Resultados Acumulados del Ejercicio Anterior",
|
"name": "Resultados Acumulados del Ejercicio Anterior",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados No Asignados"
|
"name": "Resultados No Asignados"
|
||||||
@ -255,19 +255,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Reserva para Renovaci\u00f3n de Bienes de Uso",
|
"name": "Reserva para Renovaci\u00f3n de Bienes de Uso",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Estatutaria",
|
"name": "Reserva Estatutaria",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Facultativa",
|
"name": "Reserva Facultativa",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Legal",
|
"name": "Reserva Legal",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ganancias Reservadas"
|
"name": "Ganancias Reservadas"
|
||||||
@ -281,19 +281,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Sociales / Retenciones a Depositar",
|
"name": "Deudas Sociales / Retenciones a Depositar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Sociales / Sueldos a Pagar",
|
"name": "Deudas Sociales / Sueldos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Sociales / Provisi\u00f3n para Sueldo Anual Complementario",
|
"name": "Deudas Sociales / Provisi\u00f3n para Sueldo Anual Complementario",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Sociales / Cargas Sociales a Pagar",
|
"name": "Deudas Sociales / Cargas Sociales a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Deudas Sociales"
|
"name": "Deudas Sociales"
|
||||||
@ -302,19 +302,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otras Deudas / Acreedores Varios",
|
"name": "Otras Deudas / Acreedores Varios",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Deudas / Honorarios Directores y S\u00edndicos a Pagar",
|
"name": "Otras Deudas / Honorarios Directores y S\u00edndicos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Deudas / Dividendos a Pagar",
|
"name": "Otras Deudas / Dividendos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Deudas / Cobros por Adelantado",
|
"name": "Otras Deudas / Cobros por Adelantado",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otras Deudas"
|
"name": "Otras Deudas"
|
||||||
@ -323,15 +323,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Previsiones / Previsi\u00f3n para Garant\u00edas por Service",
|
"name": "Previsiones / Previsi\u00f3n para Garant\u00edas por Service",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Previsiones / Previsi\u00f3n para juicios Pendientes",
|
"name": "Previsiones / Previsi\u00f3n para juicios Pendientes",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Previsiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
"name": "Previsiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Previsiones"
|
"name": "Previsiones"
|
||||||
@ -340,15 +340,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Comerciales / Anticipos de Clientes",
|
"name": "Deudas Comerciales / Anticipos de Clientes",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Comerciales / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
"name": "Deudas Comerciales / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Comerciales / Proveedores",
|
"name": "Deudas Comerciales / Proveedores",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Deudas Comerciales"
|
"name": "Deudas Comerciales"
|
||||||
@ -357,23 +357,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Letras de Cambio Emitidos",
|
"name": "Deudas Bancarias y Financieras / Letras de Cambio Emitidos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Intereses a Pagar",
|
"name": "Deudas Bancarias y Financieras / Intereses a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Obligaciones a Pagar",
|
"name": "Deudas Bancarias y Financieras / Obligaciones a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Prestamos",
|
"name": "Deudas Bancarias y Financieras / Prestamos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Bancarias y Financieras / Adelantos en Cuenta Corriente",
|
"name": "Deudas Bancarias y Financieras / Adelantos en Cuenta Corriente",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Deudas Bancarias y Financieras"
|
"name": "Deudas Bancarias y Financieras"
|
||||||
@ -382,15 +382,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Fiscales / IVA a Pagar",
|
"name": "Deudas Fiscales / IVA a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudas Fiscales / Impuesto a las Transacciones IT a Pagar",
|
"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",
|
"name": "Deudas Fiscales / Impuesto a las Utilidades de Empresas IUE a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Deudas Fiscales"
|
"name": "Deudas Fiscales"
|
||||||
@ -404,26 +404,26 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y bancos - Valores a Depositar ",
|
"name": "Caja y bancos - Valores a Depositar ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y Bancos.../ BCO. CTA CTE BOB",
|
"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 - Cuentas Corrientes"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Caja y bancos - Recaudaciones a Depositar ",
|
"name": "Caja y bancos - Recaudaciones a Depositar ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y bancos - Caja / efectivo en BOB",
|
"name": "Caja y bancos - Caja / efectivo en BOB",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Caja"
|
"name": "Caja y Bancos - Caja"
|
||||||
@ -432,7 +432,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y ...- Fondos fijos / caja chica 01 BOB",
|
"name": "Caja y ...- Fondos fijos / caja chica 01 BOB",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Fondos fijos"
|
"name": "Caja y Bancos - Fondos fijos"
|
||||||
@ -441,7 +441,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja y bancos - Caja / efectivo USD",
|
"name": "Caja y bancos - Caja / efectivo USD",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Moneda Extranjera"
|
"name": "Caja y Bancos - Moneda Extranjera"
|
||||||
@ -453,39 +453,39 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Anticipo de Impuestos",
|
"name": "Otros Cr\u00e9ditos / Anticipo de Impuestos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Anticipos a Proveedores",
|
"name": "Otros Cr\u00e9ditos / Anticipos a Proveedores",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Pr\u00e9stamos otorgados",
|
"name": "Otros Cr\u00e9ditos / Pr\u00e9stamos otorgados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Accionistas",
|
"name": "Otros Cr\u00e9ditos / Accionistas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Intereses Pagados por Adelantado",
|
"name": "Otros Cr\u00e9ditos / Intereses Pagados por Adelantado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Alquileres Pagados por Adelantado",
|
"name": "Otros Cr\u00e9ditos / Alquileres Pagados por Adelantado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / Anticipo al Personal",
|
"name": "Otros Cr\u00e9ditos / Anticipo al Personal",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / (-) Intereses (+) a Devengar",
|
"name": "Otros Cr\u00e9ditos / (-) Intereses (+) a Devengar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Cr\u00e9ditos / (-) Previsi\u00f3n para Descuentos",
|
"name": "Otros Cr\u00e9ditos / (-) Previsi\u00f3n para Descuentos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Cr\u00e9ditos"
|
"name": "Otros Cr\u00e9ditos"
|
||||||
@ -494,23 +494,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos fiscal IVA / Deudores por Ventas",
|
"name": "Cr\u00e9ditos fiscal IVA / Deudores por Ventas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos fiscal IVA / Deudores Morosos",
|
"name": "Cr\u00e9ditos fiscal IVA / Deudores Morosos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos fiscal IVA / Deudores en Gesti\u00f3n Judicial",
|
"name": "Cr\u00e9ditos fiscal IVA / Deudores en Gesti\u00f3n Judicial",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos fiscal IVA / Deudores Varios",
|
"name": "Cr\u00e9ditos fiscal IVA / Deudores Varios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos fiscal IVA / (-) Previsi\u00f3n para Ds. Incobrables",
|
"name": "Cr\u00e9ditos fiscal IVA / (-) Previsi\u00f3n para Ds. Incobrables",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cr\u00e9ditos fiscal IVA"
|
"name": "Cr\u00e9ditos fiscal IVA"
|
||||||
@ -521,34 +521,34 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Bienes de Cambio - Existencia de Mercader\u00edas / Categoria de productos 01",
|
"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": "Bienes de Cambio - Mercader\u00edas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materias primas",
|
"name": "Materias primas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Cambio - Mercader\u00edas en Tr\u00e1nsito",
|
"name": "Bienes de Cambio - Mercader\u00edas en Tr\u00e1nsito",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos Elaborados",
|
"name": "Productos Elaborados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos en Curso de Elaboraci\u00f3n",
|
"name": "Productos en Curso de Elaboraci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Desvalorizaci\u00f3n de Existencias",
|
"name": "(-) Desvalorizaci\u00f3n de Existencias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materiales Varios ",
|
"name": "Materiales Varios ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Bienes de Cambio o Realizables"
|
"name": "Bienes de Cambio o Realizables"
|
||||||
@ -557,19 +557,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / Acciones Permanentes",
|
"name": "Inversiones / Acciones Permanentes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / Acciones Transitorias",
|
"name": "Inversiones / Acciones Transitorias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Inversiones"
|
"name": "Inversiones"
|
||||||
@ -578,19 +578,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Bienes Intangibles / (-) Amortizaci\u00f3n Acumulada",
|
"name": "Bienes Intangibles / (-) Amortizaci\u00f3n Acumulada",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes Intangibles / Patentes de Invenci\u00f3n",
|
"name": "Bienes Intangibles / Patentes de Invenci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes Intangibles / Concesiones y Franquicias",
|
"name": "Bienes Intangibles / Concesiones y Franquicias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes Intangibles / Marcas de F\u00e1brica",
|
"name": "Bienes Intangibles / Marcas de F\u00e1brica",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Bienes Intangibles"
|
"name": "Bienes Intangibles"
|
||||||
@ -599,23 +599,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / Inmuebles",
|
"name": "Bienes de Uso / Inmuebles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / Maquinaria",
|
"name": "Bienes de Uso / Maquinaria",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / Veh\u00edculos",
|
"name": "Bienes de Uso / Veh\u00edculos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / (-) Depreciaci\u00f3n Acumulada Bienes de Uso",
|
"name": "Bienes de Uso / (-) Depreciaci\u00f3n Acumulada Bienes de Uso",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bienes de Uso / Equipos",
|
"name": "Bienes de Uso / Equipos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Bienes de Uso"
|
"name": "Bienes de Uso"
|
||||||
@ -638,15 +638,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Costos de Producci\u00f3n",
|
"name": "Costos de Producci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de Administraci\u00f3n",
|
"name": "Gastos de Administraci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de Comercializaci\u00f3n",
|
"name": "Gastos de Comercializaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas de Movimiento"
|
"name": "Cuentas de Movimiento"
|
||||||
|
@ -10,315 +10,315 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Manuten\u00e7\u00e3o e Reparo de Bens Aplicados na Produ\u00e7\u00e3o",
|
"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",
|
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 EXTERIOR",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos Sociais \u2013 Previd\u00eancia Social",
|
"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",
|
"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",
|
"name": "Servi\u00e7os Prestados por Cooperativa de Trabalho",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Consumo de Insumos",
|
"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",
|
"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",
|
"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",
|
"name": "Alimenta\u00e7\u00e3o do Trabalhador",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 PA\u00cdS",
|
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 PA\u00cdS",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Arrendamento Mercantil",
|
"name": "Arrendamento Mercantil",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos Sociais \u2013 FGTS",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"name": "Encargos Sociais \u2013 Outros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Constitui\u00e7\u00e3o de Provis\u00f5es",
|
"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",
|
"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",
|
"name": "Custo do Pessoal Aplicado na Produ\u00e7\u00e3o",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outros Custos",
|
"name": "Outros Custos",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Loca\u00e7\u00e3o de M\u00e3o-de-obra",
|
"name": "Loca\u00e7\u00e3o de M\u00e3o-de-obra",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Servi\u00e7os Prestados Pessoa Jur\u00eddica",
|
"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",
|
"name": "CUSTO DOS PRODUTOS DE FABRICA\u00c7\u00c3O PR\u00d3PRIA PRODUZIDOS DA ATIVIDADE RURAL",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Outros Custos",
|
"name": "Outros Custos",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Fundo de Aposentadoria Programada Individual de Empregados Ligados \u00e0 Produ\u00e7\u00e3o",
|
"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",
|
"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",
|
"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",
|
"name": "Loca\u00e7\u00e3o de M\u00e3o-de-obra",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Constitui\u00e7\u00e3o de Provis\u00f5es",
|
"name": "Constitui\u00e7\u00e3o de Provis\u00f5es",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 EXTERIOR",
|
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 EXTERIOR",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos Sociais \u2013 Previd\u00eancia Social",
|
"name": "Encargos Sociais \u2013 Previd\u00eancia Social",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Consumo de Insumos",
|
"name": "Consumo de Insumos",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Servi\u00e7os Prestados por Cooperativa de Trabalho",
|
"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",
|
"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",
|
"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",
|
"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",
|
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 PA\u00cdS",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos Sociais \u2013 FGTS",
|
"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",
|
"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",
|
"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",
|
"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",
|
"name": "Custo do Pessoal Aplicado na Produ\u00e7\u00e3o",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Arrendamento Mercantil",
|
"name": "Arrendamento Mercantil",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos de Deprecia\u00e7\u00e3o, Amortiza\u00e7\u00e3o e Exaust\u00e3o",
|
"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",
|
"name": "Servi\u00e7os Prestados Pessoa Jur\u00eddica",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alimenta\u00e7\u00e3o do Trabalhador",
|
"name": "Alimenta\u00e7\u00e3o do Trabalhador",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos Sociais \u2013 Outros",
|
"name": "Encargos Sociais \u2013 Outros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CUSTO DOS PRODUTOS DE FABRICA\u00c7\u00c3O PR\u00d3PRIA PRODUZIDOS",
|
"name": "CUSTO DOS PRODUTOS DE FABRICA\u00c7\u00c3O PR\u00d3PRIA PRODUZIDOS",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Encargos de Deprecia\u00e7\u00e3o, Amortiza\u00e7\u00e3o e Exaust\u00e3o",
|
"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",
|
"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",
|
"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",
|
"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",
|
"name": "Constitui\u00e7\u00e3o de Provis\u00f5es",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos Sociais \u2013 Outros",
|
"name": "Encargos Sociais \u2013 Outros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alimenta\u00e7\u00e3o do Trabalhador",
|
"name": "Alimenta\u00e7\u00e3o do Trabalhador",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outros Custos",
|
"name": "Outros Custos",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Servi\u00e7os Prestados Pessoa Jur\u00eddica",
|
"name": "Servi\u00e7os Prestados Pessoa Jur\u00eddica",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Loca\u00e7\u00e3o de M\u00e3o-de-obra",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"name": "Servi\u00e7os Prestados por Cooperativa de Trabalho",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos Sociais \u2013 Previd\u00eancia Social",
|
"name": "Encargos Sociais \u2013 Previd\u00eancia Social",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Arrendamento Mercantil",
|
"name": "Arrendamento Mercantil",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Servi\u00e7os Prestados por Pessoa F\u00edsica sem V\u00ednculo Empregat\u00edcio",
|
"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",
|
"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",
|
"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",
|
"name": "Royalties e Assist\u00eancia T\u00e9cnica \u2013 EXTERIOR",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Encargos Sociais \u2013 FGTS",
|
"name": "Encargos Sociais \u2013 FGTS",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CUSTO DOS SERVI\u00c7OS PRODUZIDOS",
|
"name": "CUSTO DOS SERVI\u00c7OS PRODUZIDOS",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CUSTO DOS BENS E SERVI\u00c7OS PRODUZIDOS",
|
"name": "CUSTO DOS BENS E SERVI\u00c7OS PRODUZIDOS",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CUSTOS DE PRODU\u00c7\u00c3O",
|
"name": "CUSTOS DE PRODU\u00c7\u00c3O",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -842,214 +842,214 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Contas Banc\u00e1rias \u2013 Subven\u00e7\u00f5es",
|
"name": "Contas Banc\u00e1rias \u2013 Subven\u00e7\u00f5es",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Valores Mobili\u00e1rios - Mercado de Capitais Interno",
|
"name": "Valores Mobili\u00e1rios - Mercado de Capitais Interno",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Recursos no Exterior Decorrentes de Exporta\u00e7\u00e3o",
|
"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",
|
"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",
|
"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",
|
"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",
|
"name": "Bancos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Bank",
|
||||||
"name": "Caixa",
|
"name": "Caixa",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outras",
|
"name": "Outras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Contas Banc\u00e1rias \u2013 Outros Recursos Sujeitos a Restri\u00e7\u00f5es",
|
"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",
|
"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",
|
"name": "Valores Mobili\u00e1rios \u2013 Aplica\u00e7\u00f5es de Doa\u00e7\u00f5es",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DISPONIBILIDADES",
|
"name": "DISPONIBILIDADES",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Im\u00f3veis Destinados \u00e0 Venda",
|
"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",
|
"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",
|
"name": "Produtos Agropecu\u00e1rios em Forma\u00e7\u00e3o",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Insumos Agropecu\u00e1rios",
|
"name": "Insumos Agropecu\u00e1rios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Servi\u00e7os em andamento",
|
"name": "Servi\u00e7os em andamento",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Produtos Acabados",
|
"name": "Produtos Acabados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Produtos em Elabora\u00e7\u00e3o",
|
"name": "Produtos em Elabora\u00e7\u00e3o",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Insumos (materiais diretos)",
|
"name": "Insumos (materiais diretos)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mercadorias para Revenda",
|
"name": "Mercadorias para Revenda",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Produtos Agropecu\u00e1rios Acabados",
|
"name": "Produtos Agropecu\u00e1rios Acabados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Estoques Destinados \u00e0 Doa\u00e7\u00e3o",
|
"name": "Estoques Destinados \u00e0 Doa\u00e7\u00e3o",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outras",
|
"name": "Outras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "ESTOQUES",
|
"name": "ESTOQUES",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Clientes",
|
"name": "Clientes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Adiantamentos a Fornecedores",
|
"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",
|
"name": "Cr\u00e9ditos Fiscais IRPJ \u2013 Diferen\u00e7as Tempor\u00e1rias e Preju\u00edzos Fiscais",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outras",
|
"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",
|
"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",
|
"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",
|
"name": "ICMS e Contribui\u00e7\u00f5es a Recuperar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "CSLL a Recuperar",
|
"name": "CSLL a Recuperar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Tributos Municipais a Recuperar",
|
"name": "Tributos Municipais a Recuperar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Imposto de Renda a Recuperar",
|
"name": "Imposto de Renda a Recuperar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "PIS e COFINS a Recuperar",
|
"name": "PIS e COFINS a Recuperar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "IPI a Recuperar",
|
"name": "IPI a Recuperar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outros Impostos e Contribui\u00e7\u00f5es a Recuperar",
|
"name": "Outros Impostos e Contribui\u00e7\u00f5es a Recuperar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CR\u00c9DITOS",
|
"name": "CR\u00c9DITOS",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Outras Contas",
|
"name": "Outras Contas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Despesas do Exerc\u00edcio Seguinte",
|
"name": "Despesas do Exerc\u00edcio Seguinte",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DESPESAS DO EXERC\u00cdCIO SEGUINTE",
|
"name": "DESPESAS DO EXERC\u00cdCIO SEGUINTE",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "(-) Outras Contas Retificadoras",
|
"name": "(-) Outras Contas Retificadoras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Provis\u00e3o para Ajuste do Estoque ao Valor de Mercado",
|
"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",
|
"name": "(-) Provis\u00f5es para Ajuste ao Valor Prov\u00e1vel de Realiza\u00e7\u00e3o",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Duplicatas Descontadas",
|
"name": "(-) Duplicatas Descontadas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Provis\u00f5es para Cr\u00e9ditos de Liquida\u00e7\u00e3o Duvidosa",
|
"name": "(-) Provis\u00f5es para Cr\u00e9ditos de Liquida\u00e7\u00e3o Duvidosa",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CONTAS RETIFICADORAS",
|
"name": "CONTAS RETIFICADORAS",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CIRCULANTE",
|
"name": "CIRCULANTE",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -1057,252 +1057,252 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Despesas Pr\u00e9-Operacionais ou Pr\u00e9-Industriais",
|
"name": "Despesas Pr\u00e9-Operacionais ou Pr\u00e9-Industriais",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Amortiza\u00e7\u00e3o do Diferido",
|
"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)",
|
"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)",
|
"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",
|
"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",
|
"name": "Despesas com Pesquisas Cient\u00edficas ou Tecnol\u00f3gicas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DIFERIDO",
|
"name": "DIFERIDO",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Florestamento e Reflorestamento",
|
"name": "Florestamento e Reflorestamento",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Corre\u00e7\u00e3o Monet\u00e1ria Especial (Lei no 8.200/1991)",
|
"name": "Corre\u00e7\u00e3o Monet\u00e1ria Especial (Lei no 8.200/1991)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Terrenos",
|
"name": "Terrenos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Aeronaves",
|
"name": "Aeronaves",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Embarca\u00e7\u00f5es",
|
"name": "Embarca\u00e7\u00f5es",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ve\u00edculos",
|
"name": "Ve\u00edculos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Constru\u00e7\u00f5es em Andamento",
|
"name": "Constru\u00e7\u00f5es em Andamento",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Edif\u00edcios e Constru\u00e7\u00f5es",
|
"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)",
|
"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",
|
"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",
|
"name": "M\u00f3veis, Utens\u00edlios e Instala\u00e7\u00f5es Comerciais",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Recursos Minerais",
|
"name": "Recursos Minerais",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Outras Contas Redutoras do Imobilizado",
|
"name": "(-) Outras Contas Redutoras do Imobilizado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Equipamentos, M\u00e1quinas e Instala\u00e7\u00f5es Industriais",
|
"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",
|
"name": "(-) Deprecia\u00e7\u00f5es, Amortiza\u00e7\u00f5es e Quotas de Exaust\u00e3o",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outras Imobiliza\u00e7\u00f5es",
|
"name": "Outras Imobiliza\u00e7\u00f5es",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "IMOBILIZADO",
|
"name": "IMOBILIZADO",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "\u00c1gios em Investimentos",
|
"name": "\u00c1gios em Investimentos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Des\u00e1gios e Provis\u00e3o para Perdas Prov\u00e1veis em Investimentos",
|
"name": "(-) Des\u00e1gios e Provis\u00e3o para Perdas Prov\u00e1veis em Investimentos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Outras Contas Retificadoras",
|
"name": "(-) Outras Contas Retificadoras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outros Investimentos",
|
"name": "Outros Investimentos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Corre\u00e7\u00e3o Monet\u00e1ria Especial (Lei no 8.200/1991)",
|
"name": "Corre\u00e7\u00e3o Monet\u00e1ria Especial (Lei no 8.200/1991)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outras Contas",
|
"name": "Outras Contas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Investimentos Decorrentes de Incentivos Fiscais",
|
"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)",
|
"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",
|
"name": "Participa\u00e7\u00f5es Permanentes em Coligadas ou Controladas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "INVESTIMENTOS",
|
"name": "INVESTIMENTOS",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Fundo de Com\u00e9rcio",
|
"name": "Fundo de Com\u00e9rcio",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Desenvolvimento de Produtos",
|
"name": "Desenvolvimento de Produtos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Concess\u00f5es",
|
"name": "Concess\u00f5es",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Franquias",
|
"name": "Franquias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Direitos Autorais",
|
"name": "Direitos Autorais",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Marcas e Patentes",
|
"name": "Marcas e Patentes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Amortiza\u00e7\u00e3o do Intang\u00edvel",
|
"name": "(-) Amortiza\u00e7\u00e3o do Intang\u00edvel",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Outras Contas Redutoras do Intang\u00edvel",
|
"name": "(-) Outras Contas Redutoras do Intang\u00edvel",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Outras",
|
"name": "Outras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Software ou Programas de Computador",
|
"name": "Software ou Programas de Computador",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "INTANG\u00cdVEL",
|
"name": "INTANG\u00cdVEL",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Outras Contas",
|
"name": "Outras Contas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Provis\u00f5es para Cr\u00e9ditos de Liquida\u00e7\u00e3o Duvidosa",
|
"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)",
|
"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",
|
"name": "Cr\u00e9ditos por Contribui\u00e7\u00f5es e Doa\u00e7\u00f5es",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Valores Mobili\u00e1rios",
|
"name": "Valores Mobili\u00e1rios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Outras Contas Retificadoras",
|
"name": "(-) Outras Contas Retificadoras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Dep\u00f3sitos Judiciais",
|
"name": "Dep\u00f3sitos Judiciais",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Provis\u00f5es para Ajuste ao Valor Prov\u00e1vel de Realiza\u00e7\u00e3o",
|
"name": "(-) Provis\u00f5es para Ajuste ao Valor Prov\u00e1vel de Realiza\u00e7\u00e3o",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Duplicatas Descontadas",
|
"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",
|
"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",
|
"name": "Cr\u00e9ditos Fiscais IRPJ \u2013 Diferen\u00e7as Tempor\u00e1rias e Preju\u00edzos Fiscais",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Clientes",
|
"name": "Clientes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "REALIZ\u00c1VEL A LONGO PRAZO",
|
"name": "REALIZ\u00c1VEL A LONGO PRAZO",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "N\u00c3O CIRCULANTE",
|
"name": "N\u00c3O CIRCULANTE",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "ATIVO",
|
"name": "ATIVO",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -2173,7 +2173,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Fornecedores",
|
"name": "Fornecedores",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Adiantamentos de Clientes"
|
"name": "Adiantamentos de Clientes"
|
||||||
@ -2233,7 +2233,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Fornecedores",
|
"name": "Fornecedores",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Doa\u00e7\u00f5es e Subven\u00e7\u00f5es para Investimentos"
|
"name": "Doa\u00e7\u00f5es e Subven\u00e7\u00f5es para Investimentos"
|
||||||
|
@ -8,22 +8,22 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "International Sales",
|
"name": "International Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inside Sales",
|
"name": "Inside Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Non-Harmonized Provinces Sales",
|
"name": "Non-Harmonized Provinces Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "OTHER OPERATING INCOMES"
|
"name": "OTHER OPERATING INCOMES"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Harmonized Provinces Sales",
|
"name": "Harmonized Provinces Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "OPERATING INCOMES"
|
"name": "OPERATING INCOMES"
|
||||||
@ -56,17 +56,17 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "HST receivable - 13%",
|
"name": "HST receivable - 13%",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "HST receivable - 15%",
|
"name": "HST receivable - 15%",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "HST receivable - 14%",
|
"name": "HST receivable - 14%",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "HST receivable"
|
"name": "HST receivable"
|
||||||
@ -74,12 +74,12 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "PST/QST receivable",
|
"name": "PST/QST receivable",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "GST receivable",
|
"name": "GST receivable",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "TAXES RECEIVABLES"
|
"name": "TAXES RECEIVABLES"
|
||||||
@ -94,11 +94,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Stock In Hand",
|
"name": "Stock In Hand",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Stock Delivered But Not Billed",
|
"name": "Stock Delivered But Not Billed",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "STOCKS"
|
"name": "STOCKS"
|
||||||
@ -114,7 +114,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Customers Account",
|
"name": "Customers Account",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ALLOWANCE FOR DOUBTFUL ACCOUNTS"
|
"name": "ALLOWANCE FOR DOUBTFUL ACCOUNTS"
|
||||||
@ -166,19 +166,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "International Purchases",
|
"name": "International Purchases",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Purchases in non-harmonized provinces",
|
"name": "Purchases in non-harmonized provinces",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Purchases in harmonized provinces",
|
"name": "Purchases in harmonized provinces",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inside Purchases",
|
"name": "Inside Purchases",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "COST OF GOODS SOLD"
|
"name": "COST OF GOODS SOLD"
|
||||||
@ -193,43 +193,43 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Parental Insurance",
|
"name": "Parental Insurance",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Holidays",
|
"name": "Holidays",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Labour Health and Safety",
|
"name": "Labour Health and Safety",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Employment Insurance",
|
"name": "Employment Insurance",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Federal Income Tax",
|
"name": "Federal Income Tax",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Salaries, wages and commissions",
|
"name": "Salaries, wages and commissions",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Annuities",
|
"name": "Annuities",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Provincial Income Tax",
|
"name": "Provincial Income Tax",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Labour Standards",
|
"name": "Labour Standards",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Health Services Fund",
|
"name": "Health Services Fund",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "LABOUR EXPENSES"
|
"name": "LABOUR EXPENSES"
|
||||||
@ -263,40 +263,40 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Annuities - Employees Contribution",
|
"name": "Annuities - Employees Contribution",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Annuities - Employer Contribution",
|
"name": "Annuities - Employer Contribution",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "ANNUITIES TO PAY"
|
"name": "ANNUITIES TO PAY"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Health Services Fund to pay",
|
"name": "Health Services Fund to pay",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Labour Health and Safety to pay",
|
"name": "Labour Health and Safety to pay",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Provincial Income Tax",
|
"name": "Provincial Income Tax",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Labour Standards to pay",
|
"name": "Labour Standards to pay",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "PAP - Employer Contribution",
|
"name": "PAP - Employer Contribution",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "PAP - Employee Contribution",
|
"name": "PAP - Employee Contribution",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "PARENTAL INSURANCE PLAN TO PAY"
|
"name": "PARENTAL INSURANCE PLAN TO PAY"
|
||||||
@ -310,18 +310,18 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "EI - Employees Contribution",
|
"name": "EI - Employees Contribution",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "EI - Employer Contribution",
|
"name": "EI - Employer Contribution",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "EMPLOYMENT INSURANCE TO PAY"
|
"name": "EMPLOYMENT INSURANCE TO PAY"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Federal Income Tax",
|
"name": "Federal Income Tax",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CANADIAN REVENU AGENCY"
|
"name": "CANADIAN REVENU AGENCY"
|
||||||
@ -340,7 +340,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Suppliers Account",
|
"name": "Suppliers Account",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "ACCOUNTS PAYABLES"
|
"name": "ACCOUNTS PAYABLES"
|
||||||
@ -350,24 +350,24 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "GST to pay",
|
"name": "GST to pay",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "HST to pay - 14%",
|
"name": "HST to pay - 14%",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "HST to pay - 13%",
|
"name": "HST to pay - 13%",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "HST to pay - 15%",
|
"name": "HST to pay - 15%",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "HST to pay"
|
"name": "HST to pay"
|
||||||
@ -375,7 +375,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "PST/QST to pay",
|
"name": "PST/QST to pay",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "TAXES PAYABLES"
|
"name": "TAXES PAYABLES"
|
||||||
@ -387,7 +387,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Stock Received But Not Billed",
|
"name": "Stock Received But Not Billed",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "LIABILITIES ASSETS HELD FOR TRANSFER"
|
"name": "LIABILITIES ASSETS HELD FOR TRANSFER"
|
||||||
@ -439,7 +439,6 @@
|
|||||||
"name": "EQUITY"
|
"name": "EQUITY"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Account Chart CA EN",
|
"name": "Account Chart CA EN"
|
||||||
"parent_id": 0
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -19,22 +19,22 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ventes avec des provinces harmonis\u00e9es",
|
"name": "Ventes avec des provinces harmonis\u00e9es",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ventes avec des provinces non-harmonis\u00e9es",
|
"name": "Ventes avec des provinces non-harmonis\u00e9es",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "AUTRES PRODUITS D'EXPLOITATION"
|
"name": "AUTRES PRODUITS D'EXPLOITATION"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ventes",
|
"name": "Ventes",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ventes \u00e0 l'\u00e9tranger",
|
"name": "Ventes \u00e0 l'\u00e9tranger",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "PRODUITS D'EXPLOITATION"
|
"name": "PRODUITS D'EXPLOITATION"
|
||||||
@ -97,7 +97,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Comptes fournisseurs",
|
"name": "Comptes fournisseurs",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "FOURNISSEURS ET COMPTES RATTACH\u00c9S"
|
"name": "FOURNISSEURS ET COMPTES RATTACH\u00c9S"
|
||||||
@ -108,26 +108,26 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "TVH \u00e0 payer - 14%",
|
"name": "TVH \u00e0 payer - 14%",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TVH \u00e0 payer - 15%",
|
"name": "TVH \u00e0 payer - 15%",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TVH \u00e0 payer - 13%",
|
"name": "TVH \u00e0 payer - 13%",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "TVH \u00e0 payer"
|
"name": "TVH \u00e0 payer"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TVP/TVQ \u00e0 payer",
|
"name": "TVP/TVQ \u00e0 payer",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TPS \u00e0 payer",
|
"name": "TPS \u00e0 payer",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "IMP\u00d4TS \u00c0 PAYER"
|
"name": "IMP\u00d4TS \u00c0 PAYER"
|
||||||
@ -141,45 +141,45 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Fond des Services de Sant\u00e9 \u00e0 payer",
|
"name": "Fond des Services de Sant\u00e9 \u00e0 payer",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "AP - Contribution de l'employeur",
|
"name": "AP - Contribution de l'employeur",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "AP - Contribution des employ\u00e9s",
|
"name": "AP - Contribution des employ\u00e9s",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "ASSURANCE PARENTALE \u00c0 PAYER"
|
"name": "ASSURANCE PARENTALE \u00c0 PAYER"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Imp\u00f4t provincial sur les revenus",
|
"name": "Imp\u00f4t provincial sur les revenus",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Rentes - Contribution des employ\u00e9s",
|
"name": "Rentes - Contribution des employ\u00e9s",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Rentes - Contribution de l'employeur",
|
"name": "Rentes - Contribution de l'employeur",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "RENTES \u00c0 PAYER"
|
"name": "RENTES \u00c0 PAYER"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sant\u00e9 et S\u00e9curit\u00e9 au Travail \u00e0 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",
|
"name": "Normes du Travail \u00e0 payer",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "AGENCE DU REVENU PROVINCIAL"
|
"name": "AGENCE DU REVENU PROVINCIAL"
|
||||||
@ -190,18 +190,18 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "AE - Contribution des employ\u00e9s",
|
"name": "AE - Contribution des employ\u00e9s",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "AE - Contribution de l'employeur",
|
"name": "AE - Contribution de l'employeur",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "ASSURANCE EMPLOI \u00c0 PAYER"
|
"name": "ASSURANCE EMPLOI \u00c0 PAYER"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Imp\u00f4t f\u00e9d\u00e9ral sur les revenus",
|
"name": "Imp\u00f4t f\u00e9d\u00e9ral sur les revenus",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "AGENCE DU REVENU DU CANADA"
|
"name": "AGENCE DU REVENU DU CANADA"
|
||||||
@ -213,7 +213,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Stock re\u00e7u non factur\u00e9",
|
"name": "Stock re\u00e7u non factur\u00e9",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "PASSIFS DE STOCK"
|
"name": "PASSIFS DE STOCK"
|
||||||
@ -238,43 +238,43 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Imp\u00f4t f\u00e9d\u00e9ral",
|
"name": "Imp\u00f4t f\u00e9d\u00e9ral",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Assurance parentale",
|
"name": "Assurance parentale",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Imp\u00f4t provincial",
|
"name": "Imp\u00f4t provincial",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Rentes",
|
"name": "Rentes",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sant\u00e9 et s\u00e9curit\u00e9 au travail",
|
"name": "Sant\u00e9 et s\u00e9curit\u00e9 au travail",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Fonds des services de sant\u00e9",
|
"name": "Fonds des services de sant\u00e9",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Normes du travail",
|
"name": "Normes du travail",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Assurance Emploi",
|
"name": "Assurance Emploi",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Salaires",
|
"name": "Salaires",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Vacances",
|
"name": "Vacances",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "SALAIRES ET CHARGES SOCIALES"
|
"name": "SALAIRES ET CHARGES SOCIALES"
|
||||||
@ -292,19 +292,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Achats",
|
"name": "Achats",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Achats dans des provinces harmonis\u00e9es",
|
"name": "Achats dans des provinces harmonis\u00e9es",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Achats dans des provinces non-harmonis\u00e9es",
|
"name": "Achats dans des provinces non-harmonis\u00e9es",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Achats \u00e0 l'\u00e9tranger",
|
"name": "Achats \u00e0 l'\u00e9tranger",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CO\u00dbT DES PRODUITS VENDUS"
|
"name": "CO\u00dbT DES PRODUITS VENDUS"
|
||||||
@ -361,28 +361,28 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "TPS \u00e0 recevoir",
|
"name": "TPS \u00e0 recevoir",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "TVH \u00e0 recevoir - 13%",
|
"name": "TVH \u00e0 recevoir - 13%",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TVH \u00e0 recevoir - 14%",
|
"name": "TVH \u00e0 recevoir - 14%",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TVH \u00e0 recevoir - 15%",
|
"name": "TVH \u00e0 recevoir - 15%",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "TVH \u00e0 recevoir"
|
"name": "TVH \u00e0 recevoir"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "TVP/TVQ \u00e0 recevoir",
|
"name": "TVP/TVQ \u00e0 recevoir",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "IMP\u00d4TS \u00c0 RECEVOIR"
|
"name": "IMP\u00d4TS \u00c0 RECEVOIR"
|
||||||
@ -395,7 +395,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Comptes clients",
|
"name": "Comptes clients",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "COMPTES CLIENTS"
|
"name": "COMPTES CLIENTS"
|
||||||
@ -404,11 +404,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Stock exp\u00e9di\u00e9 non-factur\u00e9",
|
"name": "Stock exp\u00e9di\u00e9 non-factur\u00e9",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Stock",
|
"name": "Stock",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "STOCKS"
|
"name": "STOCKS"
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -49,23 +49,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Recupero de Rezagos",
|
"name": "Recupero de Rezagos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta de Activo Fijo",
|
"name": "Ganancia Venta de Activo Fijo",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Recupero de Deudores Incobrables",
|
"name": "Recupero de Deudores Incobrables",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta Inversiones Permanentes",
|
"name": "Ganancia Venta Inversiones Permanentes",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donaciones obtenidas, ganandas, percibidas",
|
"name": "Donaciones obtenidas, ganandas, percibidas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ingresos Fuera de Explotaci\u00f3n"
|
"name": "Ingresos Fuera de Explotaci\u00f3n"
|
||||||
@ -74,40 +74,40 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Comisiones gananados, obtenidos, percibidos",
|
"name": "Comisiones gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Descuentos gananados, obtenidos, percibidos",
|
"name": "Descuentos gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Interese sobre Inversiones",
|
"name": "Interese sobre Inversiones",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Honorarios gananados, obtenidos, percibidos",
|
"name": "Honorarios gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ventas - Categoria de productos 01",
|
"name": "Ventas - Categoria de productos 01",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ventas"
|
"name": "Ventas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses gananados, obtenidos, percibidos",
|
"name": "Intereses gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alquileres gananados, obtenidos, percibidos",
|
"name": "Alquileres gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta de Acciones",
|
"name": "Ganancia Venta de Acciones",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ingresos de Explotaci\u00f3n"
|
"name": "Ingresos de Explotaci\u00f3n"
|
||||||
@ -121,7 +121,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Publicidad y Propaganda",
|
"name": "Gastos de Publicidad y Propaganda",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Servicios P\u00fablicos"
|
"name": "Gastos en Servicios P\u00fablicos"
|
||||||
@ -130,22 +130,22 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Costo de Mercader\u00edas Vendidas - Categoria de productos 01",
|
"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": "Costo de Mercader\u00edas Vendidas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Amortizaci\u00f3n",
|
"name": "Gastos en Amortizaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Cargas Sociales",
|
"name": "Gastos en Cargas Sociales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Sueldos y Jornales",
|
"name": "Gastos en Sueldos y Jornales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos Bancarios"
|
"name": "Gastos Bancarios"
|
||||||
@ -155,7 +155,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Depreciaci\u00f3n de Activo Fijo",
|
"name": "Gastos en Depreciaci\u00f3n de Activo Fijo",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Egresos de Explotaci\u00f3n"
|
"name": "Egresos de Explotaci\u00f3n"
|
||||||
@ -164,15 +164,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos en Siniestros",
|
"name": "Gastos en Siniestros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donaciones Cedidas, Otorgadas",
|
"name": "Donaciones Cedidas, Otorgadas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "P\u00e9rdida Venta Activo Fijo",
|
"name": "P\u00e9rdida Venta Activo Fijo",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Egresos Fuera de Explotaci\u00f3n"
|
"name": "Egresos Fuera de Explotaci\u00f3n"
|
||||||
@ -191,7 +191,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Activo Fijo",
|
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Activo Fijo",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ajustes al Patrimonio"
|
"name": "Ajustes al Patrimonio"
|
||||||
@ -200,11 +200,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Aportes No Capitalizados / Aportes Irrevocables Futura Suscripci\u00f3n de Acciones",
|
"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",
|
"name": "Aportes No Capitalizados / Primas de Emsi\u00f3n",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Aportes No Capitalizados"
|
"name": "Aportes No Capitalizados"
|
||||||
@ -213,19 +213,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Capital / Dividendos a Distribuir en Acciones",
|
"name": "Capital / Dividendos a Distribuir en Acciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital / Acciones en Circulaci\u00f3n",
|
"name": "Capital / Acciones en Circulaci\u00f3n",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital / Capital Propio",
|
"name": "Capital / Capital Propio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones",
|
"name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Capital"
|
"name": "Capital"
|
||||||
@ -234,19 +234,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Resultados Acumulados",
|
"name": "Resultados Acumulados",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Resultado del Ejercicio",
|
"name": "Resultado del Ejercicio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Utilidades y P\u00e9rdidas del Ejercicio",
|
"name": "Utilidades y P\u00e9rdidas del Ejercicio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Resultados Acumulados del Ejercicio Anterior",
|
"name": "Resultados Acumulados del Ejercicio Anterior",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados No Asignados"
|
"name": "Resultados No Asignados"
|
||||||
@ -255,19 +255,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Reserva para Renovaci\u00f3n de Activo Fijo",
|
"name": "Reserva para Renovaci\u00f3n de Activo Fijo",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Estatutaria",
|
"name": "Reserva Estatutaria",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Facultativa",
|
"name": "Reserva Facultativa",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Legal",
|
"name": "Reserva Legal",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Futuras Eventualidades"
|
"name": "Futuras Eventualidades"
|
||||||
@ -281,19 +281,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Remuneraciones por Pagar / Retenciones a Depositar",
|
"name": "Remuneraciones por Pagar / Retenciones a Depositar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Remuneraciones por Pagar / Sueldos a Pagar",
|
"name": "Remuneraciones por Pagar / Sueldos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Remuneraciones por Pagar / Provisi\u00f3n para Sueldo Anual Complementario",
|
"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",
|
"name": "Remuneraciones por Pagar / Cargas Sociales a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Remuneraciones por Pagar"
|
"name": "Remuneraciones por Pagar"
|
||||||
@ -302,19 +302,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Pagar / Acreedores Varios",
|
"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",
|
"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",
|
"name": "Otras Cuentas por Pagar / Dividendos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Pagar / Cobros por Adelantado",
|
"name": "Otras Cuentas por Pagar / Cobros por Adelantado",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otras Cuentas por Pagar"
|
"name": "Otras Cuentas por Pagar"
|
||||||
@ -323,15 +323,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service",
|
"name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Provisiones / Previsi\u00f3n para juicios Pendientes",
|
"name": "Provisiones / Previsi\u00f3n para juicios Pendientes",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
"name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Provisiones"
|
"name": "Provisiones"
|
||||||
@ -340,15 +340,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Pagar / Anticipos de Clientes",
|
"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",
|
"name": "Cuentas por Pagar / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Pagar / Proveedores",
|
"name": "Cuentas por Pagar / Proveedores",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas por Pagar"
|
"name": "Cuentas por Pagar"
|
||||||
@ -357,23 +357,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Debentures Emitidos",
|
"name": "Pasivo Circulante / Debentures Emitidos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Intereses a Pagar",
|
"name": "Pasivo Circulante / Intereses a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Obligaciones a Pagar",
|
"name": "Pasivo Circulante / Obligaciones a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Prestamos",
|
"name": "Pasivo Circulante / Prestamos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Adelantos en Cuenta Corriente",
|
"name": "Pasivo Circulante / Adelantos en Cuenta Corriente",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Pasivo Circulante"
|
"name": "Pasivo Circulante"
|
||||||
@ -382,11 +382,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Impuestos por Pagar / IVA a Pagar",
|
"name": "Impuestos por Pagar / IVA a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Impuestos por Pagar / Impuesto a la Renta a Pagar",
|
"name": "Impuestos por Pagar / Impuesto a la Renta a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Impuestos por Pagar"
|
"name": "Impuestos por Pagar"
|
||||||
@ -398,39 +398,39 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / Anticipo de Impuestos",
|
"name": "Cuentas por Cobrar / Anticipo de Impuestos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / Anticipos a Proveedores",
|
"name": "Cuentas por Cobrar / Anticipos a Proveedores",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / Pr\u00e9stamos otorgados",
|
"name": "Cuentas por Cobrar / Pr\u00e9stamos otorgados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / Accionistas",
|
"name": "Cuentas por Cobrar / Accionistas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / Intereses Pagados por Adelantado",
|
"name": "Cuentas por Cobrar / Intereses Pagados por Adelantado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / Alquileres Pagados por Adelantado",
|
"name": "Cuentas por Cobrar / Alquileres Pagados por Adelantado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / Anticipo al Personal",
|
"name": "Cuentas por Cobrar / Anticipo al Personal",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / (-) Intereses (+) a Devengar",
|
"name": "Cuentas por Cobrar / (-) Intereses (+) a Devengar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos",
|
"name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas por Cobrar"
|
"name": "Cuentas por Cobrar"
|
||||||
@ -439,23 +439,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Documentos por Cobrar / Deudores por Ventas",
|
"name": "Documentos por Cobrar / Deudores por Ventas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos por Cobrar / Deudores Morosos",
|
"name": "Documentos por Cobrar / Deudores Morosos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos por Cobrar / Deudores en Gesti\u00f3n Judicial",
|
"name": "Documentos por Cobrar / Deudores en Gesti\u00f3n Judicial",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos por Cobrar / Deudores Varios",
|
"name": "Documentos por Cobrar / Deudores Varios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos por Cobrar / (-) Previsi\u00f3n para Incobrables",
|
"name": "Documentos por Cobrar / (-) Previsi\u00f3n para Incobrables",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Documentos por Cobrar"
|
"name": "Documentos por Cobrar"
|
||||||
@ -466,26 +466,26 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Circulante - Valores a Depositar ",
|
"name": "Activo Circulante - Valores a Depositar ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Circulante.../ BCO. CTA CTE CLP",
|
"name": "Activo Circulante.../ BCO. CTA CTE CLP",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Activo Circulante - Bancos"
|
"name": "Activo Circulante - Bancos"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Circulante - Recaudaciones a Depositar ",
|
"name": "Activo Circulante - Recaudaciones a Depositar ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Circulante - Caja / efectivo CLP",
|
"name": "Activo Circulante - Caja / efectivo CLP",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Activo Circulante - Caja"
|
"name": "Activo Circulante - Caja"
|
||||||
@ -494,7 +494,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Circulante - Fondos fijos / caja chica 01 CLP",
|
"name": "Activo Circulante - Fondos fijos / caja chica 01 CLP",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Activo Circulante - Fondos fijos"
|
"name": "Activo Circulante - Fondos fijos"
|
||||||
@ -503,7 +503,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Circulante - Caja / efectivo USD",
|
"name": "Activo Circulante - Caja / efectivo USD",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Activo Circulante - Moneda Extranjera"
|
"name": "Activo Circulante - Moneda Extranjera"
|
||||||
@ -517,34 +517,34 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Existencias - Mercader\u00edas / Categoria de productos 01",
|
"name": "Existencias - Mercader\u00edas / Categoria de productos 01",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Existencias - Mercader\u00edas"
|
"name": "Existencias - Mercader\u00edas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materias primas",
|
"name": "Materias primas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Existencias - Mercader\u00edas en Tr\u00e1nsito",
|
"name": "Existencias - Mercader\u00edas en Tr\u00e1nsito",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos Elaborados",
|
"name": "Productos Elaborados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos en Curso de Elaboraci\u00f3n",
|
"name": "Productos en Curso de Elaboraci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Existencias",
|
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Existencias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materiales Varios ",
|
"name": "Materiales Varios ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Existencias"
|
"name": "Existencias"
|
||||||
@ -553,19 +553,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / Acciones Permanentes",
|
"name": "Inversiones / Acciones Permanentes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / Acciones Transitorias",
|
"name": "Inversiones / Acciones Transitorias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Inversiones Financieras"
|
"name": "Inversiones Financieras"
|
||||||
@ -574,19 +574,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada",
|
"name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Intangible / Marcas y Patentes de Invenci\u00f3n",
|
"name": "Activo Intangible / Marcas y Patentes de Invenci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Intangible / Concesiones y Franquicias",
|
"name": "Activo Intangible / Concesiones y Franquicias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Intangible / Derecho de Llaves",
|
"name": "Activo Intangible / Derecho de Llaves",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Activo Intangible"
|
"name": "Activo Intangible"
|
||||||
@ -595,23 +595,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / Inmuebles",
|
"name": "Activo Fijo / Inmuebles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / Maquinaria",
|
"name": "Activo Fijo / Maquinaria",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / Material Rodante Motorizado",
|
"name": "Activo Fijo / Material Rodante Motorizado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / (-) Depreciaci\u00f3n Acumulada",
|
"name": "Activo Fijo / (-) Depreciaci\u00f3n Acumulada",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / Equipos",
|
"name": "Activo Fijo / Equipos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Activo Fijo"
|
"name": "Activo Fijo"
|
||||||
@ -634,15 +634,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Costos de Producci\u00f3n",
|
"name": "Costos de Producci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de Administraci\u00f3n",
|
"name": "Gastos de Administraci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de Comercializaci\u00f3n",
|
"name": "Gastos de Comercializaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas de Movimiento"
|
"name": "Cuentas de Movimiento"
|
||||||
|
@ -4,451 +4,451 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "\u4ee5\u524d\u5e74\u5ea6\u635f\u76ca\u8c03\u6574",
|
"name": "\u4ee5\u524d\u5e74\u5ea6\u635f\u76ca\u8c03\u6574",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5236\u9020\u8d39\u7528",
|
"name": "\u5236\u9020\u8d39\u7528",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9884\u63d0\u8d39\u7528",
|
"name": "\u9884\u63d0\u8d39\u7528",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5728\u5efa\u5de5\u7a0b",
|
"name": "\u5728\u5efa\u5de5\u7a0b",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5de5\u7a0b\u7269\u8d44",
|
"name": "\u5de5\u7a0b\u7269\u8d44",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u56fa\u5b9a\u8d44\u4ea7\u6e05\u7406",
|
"name": "\u56fa\u5b9a\u8d44\u4ea7\u6e05\u7406",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u56fa\u5b9a\u8d44\u4ea7",
|
"name": "\u56fa\u5b9a\u8d44\u4ea7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u7d2f\u8ba1\u6298\u65e7",
|
"name": "\u7d2f\u8ba1\u6298\u65e7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u4ee3\u7406\u4e1a\u52a1\u8d1f\u503a",
|
"name": "\u4ee3\u7406\u4e1a\u52a1\u8d1f\u503a",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u65e0\u5f62\u8d44\u4ea7",
|
"name": "\u65e0\u5f62\u8d44\u4ea7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u65e0\u5f62\u8d44\u4ea7\u51cf\u503c\u51c6\u5907",
|
"name": "\u65e0\u5f62\u8d44\u4ea7\u51cf\u503c\u51c6\u5907",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u7d2f\u8ba1\u644a\u9500",
|
"name": "\u7d2f\u8ba1\u644a\u9500",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8425\u4e1a\u7a0e\u91d1\u53ca\u9644\u52a0",
|
"name": "\u8425\u4e1a\u7a0e\u91d1\u53ca\u9644\u52a0",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5176\u4ed6\u4e1a\u52a1\u652f\u51fa",
|
"name": "\u5176\u4ed6\u4e1a\u52a1\u652f\u51fa",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u4e3b\u8425\u4e1a\u52a1\u6210\u672c",
|
"name": "\u4e3b\u8425\u4e1a\u52a1\u6210\u672c",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u7814\u53d1\u652f\u51fa",
|
"name": "\u7814\u53d1\u652f\u51fa",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9884\u8ba1\u8d1f\u503a",
|
"name": "\u9884\u8ba1\u8d1f\u503a",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9884\u6536\u8d26\u6b3e",
|
"name": "\u9884\u6536\u8d26\u6b3e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ed8\u7968\u636e",
|
"name": "\u5e94\u4ed8\u7968\u636e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5546\u8a89",
|
"name": "\u5546\u8a89",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u6240\u5f97\u7a0e",
|
"name": "\u6240\u5f97\u7a0e",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5176\u4ed6\u8d27\u5e01\u8d44\u91d1",
|
"name": "\u5176\u4ed6\u8d27\u5e01\u8d44\u91d1",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u672a\u5b9e\u73b0\u878d\u8d44\u6536\u76ca",
|
"name": "\u672a\u5b9e\u73b0\u878d\u8d44\u6536\u76ca",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5b58\u8d27\u8dcc\u4ef7\u51c6\u5907",
|
"name": "\u5b58\u8d27\u8dcc\u4ef7\u51c6\u5907",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8425\u4e1a\u5916\u652f\u51fa",
|
"name": "\u8425\u4e1a\u5916\u652f\u51fa",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u53ef\u4f9b\u51fa\u552e\u91d1\u878d\u8d44\u4ea7",
|
"name": "\u53ef\u4f9b\u51fa\u552e\u91d1\u878d\u8d44\u4ea7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8425\u4e1a\u5916\u6536\u5165",
|
"name": "\u8425\u4e1a\u5916\u6536\u5165",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u957f\u671f\u501f\u6b3e",
|
"name": "\u957f\u671f\u501f\u6b3e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u957f\u671f\u503a\u5238",
|
"name": "\u957f\u671f\u503a\u5238",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ed8\u804c\u5de5\u85aa\u916c",
|
"name": "\u5e94\u4ed8\u804c\u5de5\u85aa\u916c",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u94f6\u884c\u5b58\u6b3e",
|
"name": "\u94f6\u884c\u5b58\u6b3e",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u73b0\u91d1",
|
"name": "\u73b0\u91d1",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u884d\u751f\u5de5\u5177",
|
"name": "\u884d\u751f\u5de5\u5177",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u6301\u6709\u81f3\u5230\u671f\u6295\u8d44\u51cf\u503c\u51c6\u5907",
|
"name": "\u6301\u6709\u81f3\u5230\u671f\u6295\u8d44\u51cf\u503c\u51c6\u5907",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5957\u671f\u5de5\u5177",
|
"name": "\u5957\u671f\u5de5\u5177",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u751f\u4ea7\u6210\u672c",
|
"name": "\u751f\u4ea7\u6210\u672c",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5b9e\u6536\u8d44\u672c",
|
"name": "\u5b9e\u6536\u8d44\u672c",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u59d4\u6258\u52a0\u5de5\u7269\u8d44",
|
"name": "\u59d4\u6258\u52a0\u5de5\u7269\u8d44",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5546\u54c1\u8fdb\u9500\u5dee\u4ef7",
|
"name": "\u5546\u54c1\u8fdb\u9500\u5dee\u4ef7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5305\u88c5\u7269\u53ca\u4f4e\u503c\u6613\u8017\u54c1",
|
"name": "\u5305\u88c5\u7269\u53ca\u4f4e\u503c\u6613\u8017\u54c1",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5229\u6da6\u5206\u914d",
|
"name": "\u5229\u6da6\u5206\u914d",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u76c8\u4f59\u516c\u79ef",
|
"name": "\u76c8\u4f59\u516c\u79ef",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u672c\u5e74\u5229\u6da6",
|
"name": "\u672c\u5e74\u5229\u6da6",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8d44\u672c\u516c\u79ef",
|
"name": "\u8d44\u672c\u516c\u79ef",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u4ee3\u7406\u4e1a\u52a1\u8d44\u4ea7",
|
"name": "\u4ee3\u7406\u4e1a\u52a1\u8d44\u4ea7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9012\u5ef6\u6536\u76ca",
|
"name": "\u9012\u5ef6\u6536\u76ca",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9012\u5ef6\u6240\u5f97\u7a0e\u8d44\u4ea7",
|
"name": "\u9012\u5ef6\u6240\u5f97\u7a0e\u8d44\u4ea7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u52b3\u52a1\u6210\u672c",
|
"name": "\u52b3\u52a1\u6210\u672c",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u6301\u6709\u81f3\u5230\u671f\u6295\u8d44",
|
"name": "\u6301\u6709\u81f3\u5230\u671f\u6295\u8d44",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e93\u5b58\u5546\u54c1",
|
"name": "\u5e93\u5b58\u5546\u54c1",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u53d1\u51fa\u5546\u54c1",
|
"name": "\u53d1\u51fa\u5546\u54c1",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u6750\u6599\u6210\u672c\u5dee\u5f02",
|
"name": "\u6750\u6599\u6210\u672c\u5dee\u5f02",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ed8\u8d26\u6b3e",
|
"name": "\u5e94\u4ed8\u8d26\u6b3e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5728\u9014\u7269\u8d44",
|
"name": "\u5728\u9014\u7269\u8d44",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u539f\u6750\u6599",
|
"name": "\u539f\u6750\u6599",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u6750\u6599\u91c7\u8d2d",
|
"name": "\u6750\u6599\u91c7\u8d2d",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u957f\u671f\u80a1\u6743\u6295\u8d44",
|
"name": "\u957f\u671f\u80a1\u6743\u6295\u8d44",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u6295\u8d44\u6027\u623f\u5730\u4ea7",
|
"name": "\u6295\u8d44\u6027\u623f\u5730\u4ea7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u957f\u671f\u6295\u8d44\u51cf\u503c\u51c6\u5907",
|
"name": "\u957f\u671f\u6295\u8d44\u51cf\u503c\u51c6\u5907",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5176\u4ed6\u5e94\u6536\u6b3e",
|
"name": "\u5176\u4ed6\u5e94\u6536\u6b3e",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u957f\u671f\u5f85\u644a\u8d39\u7528",
|
"name": "\u957f\u671f\u5f85\u644a\u8d39\u7528",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9012\u5ef6\u6240\u5f97\u7a0e\u8d1f\u503a",
|
"name": "\u9012\u5ef6\u6240\u5f97\u7a0e\u8d1f\u503a",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u88ab\u5957\u671f\u9879\u76ee",
|
"name": "\u88ab\u5957\u671f\u9879\u76ee",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u4ea4\u6613\u6027\u91d1\u878d\u8d1f\u503a",
|
"name": "\u4ea4\u6613\u6027\u91d1\u878d\u8d1f\u503a",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9500\u552e\u8d39\u7528",
|
"name": "\u9500\u552e\u8d39\u7528",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u574f\u8d26\u51c6\u5907",
|
"name": "\u574f\u8d26\u51c6\u5907",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8d22\u52a1\u8d39\u7528",
|
"name": "\u8d22\u52a1\u8d39\u7528",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u7ba1\u7406\u8d39\u7528",
|
"name": "\u7ba1\u7406\u8d39\u7528",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u4e2a\u4eba\u6240\u5f97\u7a0e",
|
"name": "\u5e94\u4ea4\u4e2a\u4eba\u6240\u5f97\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u8f66\u8239\u4f7f\u7528\u7a0e",
|
"name": "\u5e94\u4ea4\u8f66\u8239\u4f7f\u7528\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "\u8fdb\u9879\u7a0e\u989d\u8f6c\u51fa",
|
"name": "\u8fdb\u9879\u7a0e\u989d\u8f6c\u51fa",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u51fa\u53e3\u9000\u7a0e",
|
"name": "\u51fa\u53e3\u9000\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9500\u9879\u7a0e\u989d",
|
"name": "\u9500\u9879\u7a0e\u989d",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u51cf\u514d\u7a0e\u6b3e",
|
"name": "\u51cf\u514d\u7a0e\u6b3e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8f6c\u51fa\u672a\u4ea4\u589e\u503c\u7a0e",
|
"name": "\u8f6c\u51fa\u672a\u4ea4\u589e\u503c\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8fdb\u9879\u7a0e\u989d",
|
"name": "\u8fdb\u9879\u7a0e\u989d",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8f6c\u51fa\u591a\u4ea4\u589e\u503c\u7a0e",
|
"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",
|
"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",
|
"name": "\u5df2\u4ea4\u7a0e\u91d1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u672a\u4ea4\u589e\u503c\u7a0e",
|
"name": "\u672a\u4ea4\u589e\u503c\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "\u5e94\u4ea4\u589e\u503c\u7a0e",
|
"name": "\u5e94\u4ea4\u589e\u503c\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u8425\u4e1a\u7a0e",
|
"name": "\u5e94\u4ea4\u8425\u4e1a\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u6d88\u8d39\u7a0e",
|
"name": "\u5e94\u4ea4\u6d88\u8d39\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u8d44\u6e90\u7a0e",
|
"name": "\u5e94\u4ea4\u8d44\u6e90\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u6240\u5f97\u7a0e",
|
"name": "\u5e94\u4ea4\u6240\u5f97\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u571f\u5730\u589e\u503c\u7a0e",
|
"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",
|
"name": "\u5e94\u4ea4\u57ce\u5e02\u7ef4\u62a4\u5efa\u8bbe\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u623f\u4ea7\u7a0e",
|
"name": "\u5e94\u4ea4\u623f\u4ea7\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ea4\u571f\u5730\u4f7f\u7528\u7a0e",
|
"name": "\u5e94\u4ea4\u571f\u5730\u4f7f\u7528\u7a0e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "\u5e94\u4ea4\u7a0e\u8d39",
|
"name": "\u5e94\u4ea4\u7a0e\u8d39",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u56fa\u5b9a\u8d44\u4ea7\u51cf\u503c\u51c6\u5907",
|
"name": "\u56fa\u5b9a\u8d44\u4ea7\u51cf\u503c\u51c6\u5907",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u6536\u7968\u636e",
|
"name": "\u5e94\u6536\u7968\u636e",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u9884\u4ed8\u8d26\u6b3e",
|
"name": "\u9884\u4ed8\u8d26\u6b3e",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u6536\u8d26\u6b3e",
|
"name": "\u5e94\u6536\u8d26\u6b3e",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u8d44\u4ea7\u51cf\u503c\u635f\u5931",
|
"name": "\u8d44\u4ea7\u51cf\u503c\u635f\u5931",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u957f\u671f\u5e94\u6536\u6b3e",
|
"name": "\u957f\u671f\u5e94\u6536\u6b3e",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5f85\u644a\u8d39\u7528",
|
"name": "\u5f85\u644a\u8d39\u7528",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u6295\u8d44\u6536\u76ca",
|
"name": "\u6295\u8d44\u6536\u76ca",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u6536\u5229\u606f",
|
"name": "\u5e94\u6536\u5229\u606f",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ed8\u80a1\u5229",
|
"name": "\u5e94\u4ed8\u80a1\u5229",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u4ed8\u5229\u606f",
|
"name": "\u5e94\u4ed8\u5229\u606f",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e94\u6536\u80a1\u5229",
|
"name": "\u5e94\u6536\u80a1\u5229",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u4e3b\u8425\u4e1a\u52a1\u6536\u5165",
|
"name": "\u4e3b\u8425\u4e1a\u52a1\u6536\u5165",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5e93\u5b58\u80a1",
|
"name": "\u5e93\u5b58\u80a1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5f85\u5904\u7406\u8d22\u4ea7\u635f\u6ea2",
|
"name": "\u5f85\u5904\u7406\u8d22\u4ea7\u635f\u6ea2",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u672a\u786e\u8ba4\u878d\u8d44\u8d39\u7528",
|
"name": "\u672a\u786e\u8ba4\u878d\u8d44\u8d39\u7528",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u957f\u671f\u5e94\u4ed8\u6b3e",
|
"name": "\u957f\u671f\u5e94\u4ed8\u6b3e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u5176\u4ed6\u4e1a\u52a1\u6536\u5165",
|
"name": "\u5176\u4ed6\u4e1a\u52a1\u6536\u5165",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u4ea4\u6613\u6027\u91d1\u878d\u8d44\u4ea7",
|
"name": "\u4ea4\u6613\u6027\u91d1\u878d\u8d44\u4ea7",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u77ed\u671f\u501f\u6b3e",
|
"name": "\u77ed\u671f\u501f\u6b3e",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u516c\u5141\u4ef7\u503c\u53d8\u52a8\u635f\u76ca",
|
"name": "\u516c\u5141\u4ef7\u503c\u53d8\u52a8\u635f\u76ca",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "\u4f1a\u8ba1\u79d1\u76ee"
|
"name": "\u4f1a\u8ba1\u79d1\u76ee"
|
||||||
|
@ -11,24 +11,19 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Veh\u00edculos",
|
"name": "0-Veh\u00edculos"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Equipo de c\u00f3mputo",
|
"name": "0-Equipo de c\u00f3mputo"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Moibliario y equipo de oficina",
|
"name": "0-Moibliario y equipo de oficina"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Herramientas mayores",
|
"name": "0-Herramientas mayores"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Maquinaria y equipo de edificios",
|
"name": "0-Maquinaria y equipo de edificios"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Activos depreciables m\u00f3viles"
|
"name": "0-Activos depreciables m\u00f3viles"
|
||||||
@ -38,8 +33,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Edificio 1",
|
"name": "0-Edificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Edificios \u2013 Revaluaciones"
|
"name": "0-Edificios \u2013 Revaluaciones"
|
||||||
@ -47,8 +41,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Edificio 1",
|
"name": "0-Edificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Edificios \u2013 Valores originales"
|
"name": "0-Edificios \u2013 Valores originales"
|
||||||
@ -61,8 +54,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Edificio 1",
|
"name": "0-Edificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Mejoras a edificios \u2013 Revaluaciones"
|
"name": "0-Mejoras a edificios \u2013 Revaluaciones"
|
||||||
@ -70,8 +62,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Edificio 1",
|
"name": "0-Edificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Mejoras a edificios \u2013 Valores originales"
|
"name": "0-Mejoras a edificios \u2013 Valores originales"
|
||||||
@ -89,8 +80,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Terreno 1",
|
"name": "0-Terreno 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Valores originales"
|
"name": "0-Valores originales"
|
||||||
@ -98,8 +88,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Terreno 1",
|
"name": "0-Terreno 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Revaluaciones"
|
"name": "0-Revaluaciones"
|
||||||
@ -128,16 +117,13 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Fondos en tr\u00e1nsito en bancos",
|
"name": "0-Fondos en tr\u00e1nsito en bancos"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Fondos en tr\u00e1nsito de PayPal a Bancos",
|
"name": "0-Fondos en tr\u00e1nsito de PayPal a Bancos"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Fondos en tr\u00e1nsito en tesorer\u00eda",
|
"name": "0-Fondos en tr\u00e1nsito en tesorer\u00eda"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Fondos en tr\u00e1nsito"
|
"name": "0-Fondos en tr\u00e1nsito"
|
||||||
@ -166,8 +152,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Inversi\u00f3n 1",
|
"name": "0-Inversi\u00f3n 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Inversiones a la vista"
|
"name": "0-Inversiones a la vista"
|
||||||
@ -201,12 +186,10 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Inventario de producto para la venta",
|
"name": "0-Inventario de producto para la venta"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Inventario de consumibles",
|
"name": "0-Inventario de consumibles"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Inventarios"
|
"name": "0-Inventarios"
|
||||||
@ -269,24 +252,19 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Dep. ac. de herramientas mayores",
|
"name": "0-Dep. ac. de herramientas mayores"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Dep. ac. de mobiliario y equipo de oficina",
|
"name": "0-Dep. ac. de mobiliario y equipo de oficina"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Dep. ac. de maquinaria y equipo de edificios",
|
"name": "0-Dep. ac. de maquinaria y equipo de edificios"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Dep. ac. de equipo de c\u00f3mputo",
|
"name": "0-Dep. ac. de equipo de c\u00f3mputo"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Dep. ac. de veh\u00edculos",
|
"name": "0-Dep. ac. de veh\u00edculos"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Dep. ac. de activos depreciables m\u00f3viles"
|
"name": "0-Dep. ac. de activos depreciables m\u00f3viles"
|
||||||
@ -296,8 +274,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Edificio 1",
|
"name": "0-Edificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Dep. ac. de edificios \u2013 Valores originales"
|
"name": "0-Dep. ac. de edificios \u2013 Valores originales"
|
||||||
@ -305,8 +282,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Edificio 1",
|
"name": "0-Edificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Dep. ac. de edificios \u2013 Revaluaciones"
|
"name": "0-Dep. ac. de edificios \u2013 Revaluaciones"
|
||||||
@ -319,8 +295,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Edificio 1",
|
"name": "0-Edificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Dep. ac. de mejoras a edificios \u2013 Revaluaciones"
|
"name": "0-Dep. ac. de mejoras a edificios \u2013 Revaluaciones"
|
||||||
@ -328,8 +303,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Edificio 1",
|
"name": "0-Edificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Dep. ac. de mejoras a edificios \u2013 Valores originales"
|
"name": "0-Dep. ac. de mejoras a edificios \u2013 Valores originales"
|
||||||
@ -348,24 +322,19 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Gastos Financieros",
|
"name": "0-Gastos Financieros"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Depreciaci\u00f3n de activo fijo",
|
"name": "0-Depreciaci\u00f3n de activo fijo"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Ajustes",
|
"name": "0-Ajustes"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Perdida por robo",
|
"name": "0-Perdida por robo"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Donaciones deducibles",
|
"name": "0-Donaciones deducibles"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Otros gastos"
|
"name": "0-Otros gastos"
|
||||||
@ -373,20 +342,16 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Donaciones no deducibles",
|
"name": "0-Donaciones no deducibles"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Multas",
|
"name": "0-Multas"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Gastos de presidencia",
|
"name": "0-Gastos de presidencia"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Diferencial cambiario",
|
"name": "0-Diferencial cambiario"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Gastos no deducibles"
|
"name": "0-Gastos no deducibles"
|
||||||
@ -400,36 +365,28 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Cesant\u00eda",
|
"name": "0-Cesant\u00eda"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Comisiones",
|
"name": "0-Comisiones"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Cargas patronales",
|
"name": "0-Cargas patronales"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Aguinaldo",
|
"name": "0-Aguinaldo"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Preaviso",
|
"name": "0-Preaviso"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Salarios",
|
"name": "0-Salarios"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Extras",
|
"name": "0-Extras"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Bonificaciones",
|
"name": "0-Bonificaciones"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Salarios y deducciones"
|
"name": "0-Salarios y deducciones"
|
||||||
@ -437,16 +394,13 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Transporte",
|
"name": "0-Transporte"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Hospedaje",
|
"name": "0-Hospedaje"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Alimentaci\u00f3n",
|
"name": "0-Alimentaci\u00f3n"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Vi\u00e1ticos"
|
"name": "0-Vi\u00e1ticos"
|
||||||
@ -457,8 +411,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Categor\u00eda 1",
|
"name": "0-Categor\u00eda 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Servicios profesionales"
|
"name": "0-Servicios profesionales"
|
||||||
@ -466,12 +419,10 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Campa\u00f1as publicitarias",
|
"name": "0-Campa\u00f1as publicitarias"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Dise\u00f1o de imagen",
|
"name": "0-Dise\u00f1o de imagen"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Gastos de mercadeo"
|
"name": "0-Gastos de mercadeo"
|
||||||
@ -479,24 +430,19 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Costo de producto",
|
"name": "0-Costo de producto"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Costo de producci\u00f3n",
|
"name": "0-Costo de producci\u00f3n"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Costo de materia prima",
|
"name": "0-Costo de materia prima"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Costo de distribuci\u00f3n",
|
"name": "0-Costo de distribuci\u00f3n"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Costo de almacenamiento",
|
"name": "0-Costo de almacenamiento"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Costo de venta de producto"
|
"name": "0-Costo de venta de producto"
|
||||||
@ -509,8 +455,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Departamento 1",
|
"name": "0-Departamento 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Equipo de c\u00f3mputo y comunicaci\u00f3n"
|
"name": "0-Equipo de c\u00f3mputo y comunicaci\u00f3n"
|
||||||
@ -518,8 +463,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Departamento 1",
|
"name": "0-Departamento 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Suministros de oficina"
|
"name": "0-Suministros de oficina"
|
||||||
@ -529,8 +473,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Medidor 1",
|
"name": "0-Medidor 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Luz"
|
"name": "0-Luz"
|
||||||
@ -538,8 +481,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Medidor 1",
|
"name": "0-Medidor 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Agua"
|
"name": "0-Agua"
|
||||||
@ -547,8 +489,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Contrato 1",
|
"name": "0-Contrato 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Internet"
|
"name": "0-Internet"
|
||||||
@ -556,8 +497,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Tel\u00e9fono 1",
|
"name": "0-Tel\u00e9fono 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Tel\u00e9fono"
|
"name": "0-Tel\u00e9fono"
|
||||||
@ -568,8 +508,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Compa\u00f1\u00eda administradora 1",
|
"name": "0-Compa\u00f1\u00eda administradora 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Cuota por administraci\u00f3n"
|
"name": "0-Cuota por administraci\u00f3n"
|
||||||
@ -577,8 +516,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Oficina 1",
|
"name": "0-Oficina 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Alquiler"
|
"name": "0-Alquiler"
|
||||||
@ -598,7 +536,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Socio 1",
|
"name": "0-Socio 1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Aportes de capital"
|
"name": "0-Aportes de capital"
|
||||||
@ -607,7 +545,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Socio 1",
|
"name": "0-Socio 1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Capital social"
|
"name": "0-Capital social"
|
||||||
@ -616,7 +554,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Balance inicial",
|
"name": "0-Balance inicial",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Balance inicial"
|
"name": "0-Balance inicial"
|
||||||
@ -625,15 +563,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Superavit ganado",
|
"name": "0-Superavit ganado",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Superavit por revaluaci\u00f3n de activos",
|
"name": "0-Superavit por revaluaci\u00f3n de activos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Super\u00e1vit de capital",
|
"name": "0-Super\u00e1vit de capital",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Cuentas de super\u00e1vit"
|
"name": "0-Cuentas de super\u00e1vit"
|
||||||
@ -642,11 +580,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Reserva para mejoras",
|
"name": "0-Reserva para mejoras",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Reserva para proyectos",
|
"name": "0-Reserva para proyectos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Otras reservas"
|
"name": "0-Otras reservas"
|
||||||
@ -655,7 +593,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Reserva legal",
|
"name": "0-Reserva legal",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Reserva legal"
|
"name": "0-Reserva legal"
|
||||||
@ -664,7 +602,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Periodo 1",
|
"name": "0-Periodo 1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Utilidad o p\u00e9rdida acumulada de periodos anteriores"
|
"name": "0-Utilidad o p\u00e9rdida acumulada de periodos anteriores"
|
||||||
@ -673,7 +611,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Utilidad o p\u00e9rdida del per\u00edodo actual",
|
"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"
|
"name": "0-Utilidad o p\u00e9rdida del per\u00edodo actual"
|
||||||
@ -686,12 +624,10 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Donaciones",
|
"name": "0-Donaciones"
|
||||||
"root_type": "Income"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "0-Ajustes",
|
"name": "0-Ajustes"
|
||||||
"root_type": "Income"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Otros ingresos"
|
"name": "0-Otros ingresos"
|
||||||
@ -699,8 +635,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Intereses ganados sobre cuentas corrientes",
|
"name": "0-Intereses ganados sobre cuentas corrientes"
|
||||||
"root_type": "Income"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Ingresos financieros"
|
"name": "0-Ingresos financieros"
|
||||||
@ -708,8 +643,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Diferencial cambiario",
|
"name": "0-Diferencial cambiario"
|
||||||
"root_type": "Income"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Ingresos no gravables"
|
"name": "0-Ingresos no gravables"
|
||||||
@ -720,8 +654,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "0-Cuota por administraci\u00f3n",
|
"name": "0-Cuota por administraci\u00f3n"
|
||||||
"root_type": "Income"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "0-Ingresos por administraci\u00f3n"
|
"name": "0-Ingresos por administraci\u00f3n"
|
||||||
|
@ -65,11 +65,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xReserva para mejoras",
|
"name": "xReserva para mejoras",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xReserva para proyectos",
|
"name": "xReserva para proyectos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xOtras reservas"
|
"name": "xOtras reservas"
|
||||||
@ -78,7 +78,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xSocio 1",
|
"name": "xSocio 1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xAportes de capital"
|
"name": "xAportes de capital"
|
||||||
@ -87,7 +87,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xUtilidad o p\u00e9rdida del per\u00edodo actual",
|
"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"
|
"name": "xUtilidad o p\u00e9rdida del per\u00edodo actual"
|
||||||
@ -96,7 +96,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xBalance inicial",
|
"name": "xBalance inicial",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xBalance inicial"
|
"name": "xBalance inicial"
|
||||||
@ -105,7 +105,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xReserva legal",
|
"name": "xReserva legal",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xReserva legal"
|
"name": "xReserva legal"
|
||||||
@ -114,15 +114,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xSuperavit ganado",
|
"name": "xSuperavit ganado",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xSuperavit por revaluaci\u00f3n de activos",
|
"name": "xSuperavit por revaluaci\u00f3n de activos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xSuper\u00e1vit de capital",
|
"name": "xSuper\u00e1vit de capital",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xCuentas de super\u00e1vit"
|
"name": "xCuentas de super\u00e1vit"
|
||||||
@ -131,7 +131,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xSocio 1",
|
"name": "xSocio 1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xCapital social"
|
"name": "xCapital social"
|
||||||
@ -140,7 +140,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xPeriodo 1",
|
"name": "xPeriodo 1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xUtilidad o p\u00e9rdida acumulada de periodos anteriores"
|
"name": "xUtilidad o p\u00e9rdida acumulada de periodos anteriores"
|
||||||
@ -153,20 +153,16 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xDiferencial cambiario",
|
"name": "xDiferencial cambiario"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xMultas",
|
"name": "xMultas"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xGastos de presidencia",
|
"name": "xGastos de presidencia"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xDonaciones no deducibles",
|
"name": "xDonaciones no deducibles"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xGastos no deducibles"
|
"name": "xGastos no deducibles"
|
||||||
@ -180,16 +176,13 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xTransporte",
|
"name": "xTransporte"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xHospedaje",
|
"name": "xHospedaje"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xAlimentaci\u00f3n",
|
"name": "xAlimentaci\u00f3n"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xVi\u00e1ticos"
|
"name": "xVi\u00e1ticos"
|
||||||
@ -197,36 +190,28 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xCesant\u00eda",
|
"name": "xCesant\u00eda"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xComisiones",
|
"name": "xComisiones"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xCargas patronales",
|
"name": "xCargas patronales"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xAguinaldo",
|
"name": "xAguinaldo"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xPreaviso",
|
"name": "xPreaviso"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xSalarios",
|
"name": "xSalarios"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xExtras",
|
"name": "xExtras"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xBonificaciones",
|
"name": "xBonificaciones"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xSalarios y deducciones"
|
"name": "xSalarios y deducciones"
|
||||||
@ -237,12 +222,10 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xCampa\u00f1as publicitarias",
|
"name": "xCampa\u00f1as publicitarias"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xDise\u00f1o de imagen",
|
"name": "xDise\u00f1o de imagen"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xGastos de mercadeo"
|
"name": "xGastos de mercadeo"
|
||||||
@ -250,24 +233,19 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xCosto de distribuci\u00f3n",
|
"name": "xCosto de distribuci\u00f3n"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xCosto de almacenamiento",
|
"name": "xCosto de almacenamiento"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xCosto de producto",
|
"name": "xCosto de producto"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xCosto de producci\u00f3n",
|
"name": "xCosto de producci\u00f3n"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xCosto de materia prima",
|
"name": "xCosto de materia prima"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xCosto de venta de producto"
|
"name": "xCosto de venta de producto"
|
||||||
@ -275,8 +253,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xCategor\u00eda 1",
|
"name": "xCategor\u00eda 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xServicios profesionales"
|
"name": "xServicios profesionales"
|
||||||
@ -289,8 +266,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xDepartamento 1",
|
"name": "xDepartamento 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xSuministros de oficina"
|
"name": "xSuministros de oficina"
|
||||||
@ -298,8 +274,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xCompa\u00f1\u00eda administradora 1",
|
"name": "xCompa\u00f1\u00eda administradora 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xCuota por administraci\u00f3n"
|
"name": "xCuota por administraci\u00f3n"
|
||||||
@ -307,8 +282,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xOficina 1",
|
"name": "xOficina 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xAlquiler"
|
"name": "xAlquiler"
|
||||||
@ -318,8 +292,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xMedidor 1",
|
"name": "xMedidor 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xAgua"
|
"name": "xAgua"
|
||||||
@ -327,8 +300,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xMedidor 1",
|
"name": "xMedidor 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xLuz"
|
"name": "xLuz"
|
||||||
@ -336,8 +308,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xTel\u00e9fono 1",
|
"name": "xTel\u00e9fono 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xTel\u00e9fono"
|
"name": "xTel\u00e9fono"
|
||||||
@ -345,8 +316,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xContrato 1",
|
"name": "xContrato 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xInternet"
|
"name": "xInternet"
|
||||||
@ -357,8 +327,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xDepartamento 1",
|
"name": "xDepartamento 1"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xEquipo de c\u00f3mputo y comunicaci\u00f3n"
|
"name": "xEquipo de c\u00f3mputo y comunicaci\u00f3n"
|
||||||
@ -372,24 +341,19 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xGastos Financieros",
|
"name": "xGastos Financieros"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xDepreciaci\u00f3n de activo fijo",
|
"name": "xDepreciaci\u00f3n de activo fijo"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xAjustes",
|
"name": "xAjustes"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xPerdida por robo",
|
"name": "xPerdida por robo"
|
||||||
"root_type": "Expense"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xDonaciones deducibles",
|
"name": "xDonaciones deducibles"
|
||||||
"root_type": "Expense"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xOtros gastos"
|
"name": "xOtros gastos"
|
||||||
@ -430,16 +394,13 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xFondos en tr\u00e1nsito en bancos",
|
"name": "xFondos en tr\u00e1nsito en bancos"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xFondos en tr\u00e1nsito de PayPal a Bancos",
|
"name": "xFondos en tr\u00e1nsito de PayPal a Bancos"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xFondos en tr\u00e1nsito en tesorer\u00eda",
|
"name": "xFondos en tr\u00e1nsito en tesorer\u00eda"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xFondos en tr\u00e1nsito"
|
"name": "xFondos en tr\u00e1nsito"
|
||||||
@ -447,8 +408,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xInversi\u00f3n 1",
|
"name": "xInversi\u00f3n 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xInversiones a la vista"
|
"name": "xInversiones a la vista"
|
||||||
@ -469,12 +429,10 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xInventario de producto para la venta",
|
"name": "xInventario de producto para la venta"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xInventario de consumibles",
|
"name": "xInventario de consumibles"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xInventarios"
|
"name": "xInventarios"
|
||||||
@ -514,8 +472,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xTerreno 1",
|
"name": "xTerreno 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xValores originales"
|
"name": "xValores originales"
|
||||||
@ -523,8 +480,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xTerreno 1",
|
"name": "xTerreno 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xRevaluaciones"
|
"name": "xRevaluaciones"
|
||||||
@ -542,8 +498,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xEdificio 1",
|
"name": "xEdificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xEdificios \u2013 Revaluaciones"
|
"name": "xEdificios \u2013 Revaluaciones"
|
||||||
@ -551,8 +506,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xEdificio 1",
|
"name": "xEdificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xEdificios \u2013 Valores originales"
|
"name": "xEdificios \u2013 Valores originales"
|
||||||
@ -563,24 +517,19 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xMoibliario y equipo de oficina",
|
"name": "xMoibliario y equipo de oficina"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xHerramientas mayores",
|
"name": "xHerramientas mayores"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xMaquinaria y equipo de edificios",
|
"name": "xMaquinaria y equipo de edificios"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xVeh\u00edculos",
|
"name": "xVeh\u00edculos"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xEquipo de c\u00f3mputo",
|
"name": "xEquipo de c\u00f3mputo"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xActivos depreciables m\u00f3viles"
|
"name": "xActivos depreciables m\u00f3viles"
|
||||||
@ -590,8 +539,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xEdificio 1",
|
"name": "xEdificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xMejoras a edificios \u2013 Valores originales"
|
"name": "xMejoras a edificios \u2013 Valores originales"
|
||||||
@ -599,8 +547,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xEdificio 1",
|
"name": "xEdificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xMejoras a edificios \u2013 Revaluaciones"
|
"name": "xMejoras a edificios \u2013 Revaluaciones"
|
||||||
@ -621,8 +568,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xEdificio 1",
|
"name": "xEdificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xDep. ac. de edificios \u2013 Revaluaciones"
|
"name": "xDep. ac. de edificios \u2013 Revaluaciones"
|
||||||
@ -630,8 +576,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xEdificio 1",
|
"name": "xEdificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xDep. ac. de edificios \u2013 Valores originales"
|
"name": "xDep. ac. de edificios \u2013 Valores originales"
|
||||||
@ -642,24 +587,19 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xDep. ac. de herramientas mayores",
|
"name": "xDep. ac. de herramientas mayores"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xDep. ac. de mobiliario y equipo de oficina",
|
"name": "xDep. ac. de mobiliario y equipo de oficina"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xDep. ac. de maquinaria y equipo de edificios",
|
"name": "xDep. ac. de maquinaria y equipo de edificios"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xDep. ac. de equipo de c\u00f3mputo",
|
"name": "xDep. ac. de equipo de c\u00f3mputo"
|
||||||
"root_type": "Asset"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xDep. ac. de veh\u00edculos",
|
"name": "xDep. ac. de veh\u00edculos"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xDep. ac. de activos depreciables m\u00f3viles"
|
"name": "xDep. ac. de activos depreciables m\u00f3viles"
|
||||||
@ -669,8 +609,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xEdificio 1",
|
"name": "xEdificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xDep. ac. de mejoras a edificios \u2013 Valores originales"
|
"name": "xDep. ac. de mejoras a edificios \u2013 Valores originales"
|
||||||
@ -678,8 +617,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xEdificio 1",
|
"name": "xEdificio 1"
|
||||||
"root_type": "Asset"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xDep. ac. de mejoras a edificios \u2013 Revaluaciones"
|
"name": "xDep. ac. de mejoras a edificios \u2013 Revaluaciones"
|
||||||
@ -725,12 +663,10 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xDonaciones",
|
"name": "xDonaciones"
|
||||||
"root_type": "Income"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "xAjustes",
|
"name": "xAjustes"
|
||||||
"root_type": "Income"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xOtros ingresos"
|
"name": "xOtros ingresos"
|
||||||
@ -738,8 +674,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xIntereses ganados sobre cuentas corrientes",
|
"name": "xIntereses ganados sobre cuentas corrientes"
|
||||||
"root_type": "Income"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xIngresos financieros"
|
"name": "xIngresos financieros"
|
||||||
@ -750,8 +685,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xCuota por administraci\u00f3n",
|
"name": "xCuota por administraci\u00f3n"
|
||||||
"root_type": "Income"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xIngresos por administraci\u00f3n"
|
"name": "xIngresos por administraci\u00f3n"
|
||||||
@ -759,8 +693,7 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "xDiferencial cambiario",
|
"name": "xDiferencial cambiario"
|
||||||
"root_type": "Income"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "xIngresos no gravables"
|
"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": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Impuestos",
|
"name": "Impuestos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Impuestos"
|
"name": "Impuestos"
|
||||||
@ -21,7 +21,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "IVA por Pagar",
|
"name": "IVA por Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "IVA por Pagar"
|
"name": "IVA por Pagar"
|
||||||
@ -30,7 +30,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cuentas y Documentos por Pagar",
|
"name": "Cuentas y Documentos por Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas y Documentos por Pagar"
|
"name": "Cuentas y Documentos por Pagar"
|
||||||
@ -44,7 +44,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Anticipos",
|
"name": "Anticipos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cr\u00e9ditos Diferidos"
|
"name": "Cr\u00e9ditos Diferidos"
|
||||||
@ -58,7 +58,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Provisi\u00f3n para Indemnizaciones",
|
"name": "Provisi\u00f3n para Indemnizaciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Provisi\u00f3n para Indemnizaciones"
|
"name": "Provisi\u00f3n para Indemnizaciones"
|
||||||
@ -77,15 +77,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Capital Autorizado, Suscr\u00edto y Pagado",
|
"name": "Capital Autorizado, Suscr\u00edto y Pagado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Perdidas y Ganancias",
|
"name": "Perdidas y Ganancias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reservas",
|
"name": "Reservas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Patrimonio de los Accionistas"
|
"name": "Patrimonio de los Accionistas"
|
||||||
@ -107,11 +107,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Retenciones de IVA recibidas",
|
"name": "Retenciones de IVA recibidas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "IVA por Cobrar",
|
"name": "IVA por Cobrar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "IVA por Cobrar"
|
"name": "IVA por Cobrar"
|
||||||
@ -120,19 +120,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Prestamos al Personal",
|
"name": "Prestamos al Personal",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar Empresas Afilidas",
|
"name": "Cuentas por Cobrar Empresas Afilidas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar Generales",
|
"name": "Cuentas por Cobrar Generales",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar",
|
"name": "Otras Cuentas por Cobrar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas y Documentos por Cobrar"
|
"name": "Cuentas y Documentos por Cobrar"
|
||||||
@ -141,7 +141,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja Chica",
|
"name": "Caja Chica",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos"
|
"name": "Caja y Bancos"
|
||||||
@ -155,7 +155,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Propiedad, Planta y Equipo",
|
"name": "Propiedad, Planta y Equipo",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Propiedad, Planta y Equipo"
|
"name": "Propiedad, Planta y Equipo"
|
||||||
@ -164,7 +164,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Depreciaciones Acumuladas",
|
"name": "Depreciaciones Acumuladas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Depreciaciones Acumuladas"
|
"name": "Depreciaciones Acumuladas"
|
||||||
@ -178,7 +178,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Organizaci\u00f3n",
|
"name": "Gastos de Organizaci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos de Organizaci\u00f3n"
|
"name": "Gastos de Organizaci\u00f3n"
|
||||||
@ -187,7 +187,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos por Amortizar",
|
"name": "Gastos por Amortizar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos por Amortizar"
|
"name": "Gastos por Amortizar"
|
||||||
@ -196,7 +196,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos Anticipados",
|
"name": "Gastos Anticipados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos Anticipados"
|
"name": "Gastos Anticipados"
|
||||||
@ -205,7 +205,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otros Activos",
|
"name": "Otros Activos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Activos"
|
"name": "Otros Activos"
|
||||||
@ -229,7 +229,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos no Deducibles",
|
"name": "Gastos no Deducibles",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos no Deducibles"
|
"name": "Gastos no Deducibles"
|
||||||
@ -243,7 +243,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otros Gastos de Operaci\u00f3n",
|
"name": "Otros Gastos de Operaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Gastos de Operaci\u00f3n"
|
"name": "Otros Gastos de Operaci\u00f3n"
|
||||||
@ -252,7 +252,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Administraci\u00f3n",
|
"name": "Gastos de Administraci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos de Administraci\u00f3n"
|
"name": "Gastos de Administraci\u00f3n"
|
||||||
@ -266,7 +266,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Ventas",
|
"name": "Gastos de Ventas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos de Ventas"
|
"name": "Gastos de Ventas"
|
||||||
@ -285,7 +285,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otros Ingresos",
|
"name": "Otros Ingresos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Ingresos"
|
"name": "Otros Ingresos"
|
||||||
@ -299,11 +299,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Descuentos Sobre Ventas",
|
"name": "Descuentos Sobre Ventas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ventas",
|
"name": "Ventas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ventas Netas"
|
"name": "Ventas Netas"
|
||||||
@ -322,11 +322,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Intereses",
|
"name": "Intereses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Gastos Financieros",
|
"name": "Otros Gastos Financieros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Gastos y Productos Financieros"
|
"name": "Otros Gastos y Productos Financieros"
|
||||||
@ -345,7 +345,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Costos de Ventas",
|
"name": "Costos de Ventas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Costos de Ventas"
|
"name": "Costos de Ventas"
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Impuestos",
|
"name": "Impuestos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Impuestos"
|
"name": "Impuestos"
|
||||||
@ -21,7 +21,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "ISV por Pagar",
|
"name": "ISV por Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "ISV por Pagar"
|
"name": "ISV por Pagar"
|
||||||
@ -30,7 +30,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cuentas y Documentos por Pagar",
|
"name": "Cuentas y Documentos por Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas y Documentos por Pagar"
|
"name": "Cuentas y Documentos por Pagar"
|
||||||
@ -44,7 +44,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Anticipos",
|
"name": "Anticipos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cr\u00e9ditos Diferidos"
|
"name": "Cr\u00e9ditos Diferidos"
|
||||||
@ -58,7 +58,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Provisi\u00f3n para Indemnizaciones",
|
"name": "Provisi\u00f3n para Indemnizaciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Provisi\u00f3n para Indemnizaciones"
|
"name": "Provisi\u00f3n para Indemnizaciones"
|
||||||
@ -77,15 +77,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Capital Autorizado, Suscr\u00edto y Pagado",
|
"name": "Capital Autorizado, Suscr\u00edto y Pagado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Perdidas y Ganancias",
|
"name": "Perdidas y Ganancias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reservas",
|
"name": "Reservas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Patrimonio de los Accionistas"
|
"name": "Patrimonio de los Accionistas"
|
||||||
@ -107,11 +107,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Retenciones de ISV recibidas",
|
"name": "Retenciones de ISV recibidas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "ISV por Cobrar",
|
"name": "ISV por Cobrar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "ISV por Cobrar"
|
"name": "ISV por Cobrar"
|
||||||
@ -120,19 +120,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Prestamos al Personal",
|
"name": "Prestamos al Personal",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar Empresas Afilidas",
|
"name": "Cuentas por Cobrar Empresas Afilidas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cuentas por Cobrar Generales",
|
"name": "Cuentas por Cobrar Generales",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar",
|
"name": "Otras Cuentas por Cobrar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas y Documentos por Cobrar"
|
"name": "Cuentas y Documentos por Cobrar"
|
||||||
@ -141,7 +141,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Caja Chica",
|
"name": "Caja Chica",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos"
|
"name": "Caja y Bancos"
|
||||||
@ -155,7 +155,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Propiedad, Planta y Equipo",
|
"name": "Propiedad, Planta y Equipo",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Propiedad, Planta y Equipo"
|
"name": "Propiedad, Planta y Equipo"
|
||||||
@ -164,7 +164,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Depreciaciones Acumuladas",
|
"name": "Depreciaciones Acumuladas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Depreciaciones Acumuladas"
|
"name": "Depreciaciones Acumuladas"
|
||||||
@ -178,7 +178,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Organizaci\u00f3n",
|
"name": "Gastos de Organizaci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos de Organizaci\u00f3n"
|
"name": "Gastos de Organizaci\u00f3n"
|
||||||
@ -187,7 +187,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos por Amortizar",
|
"name": "Gastos por Amortizar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos por Amortizar"
|
"name": "Gastos por Amortizar"
|
||||||
@ -196,7 +196,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos Anticipados",
|
"name": "Gastos Anticipados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos Anticipados"
|
"name": "Gastos Anticipados"
|
||||||
@ -205,7 +205,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otros Activos",
|
"name": "Otros Activos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Activos"
|
"name": "Otros Activos"
|
||||||
@ -229,7 +229,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos no Deducibles",
|
"name": "Gastos no Deducibles",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos no Deducibles"
|
"name": "Gastos no Deducibles"
|
||||||
@ -243,7 +243,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otros Gastos de Operaci\u00f3n",
|
"name": "Otros Gastos de Operaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Gastos de Operaci\u00f3n"
|
"name": "Otros Gastos de Operaci\u00f3n"
|
||||||
@ -252,7 +252,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Administraci\u00f3n",
|
"name": "Gastos de Administraci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos de Administraci\u00f3n"
|
"name": "Gastos de Administraci\u00f3n"
|
||||||
@ -266,7 +266,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Ventas",
|
"name": "Gastos de Ventas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos de Ventas"
|
"name": "Gastos de Ventas"
|
||||||
@ -285,7 +285,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otros Ingresos",
|
"name": "Otros Ingresos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Ingresos"
|
"name": "Otros Ingresos"
|
||||||
@ -299,11 +299,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Descuentos Sobre Ventas",
|
"name": "Descuentos Sobre Ventas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ventas",
|
"name": "Ventas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ventas Netas"
|
"name": "Ventas Netas"
|
||||||
@ -322,11 +322,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Intereses",
|
"name": "Intereses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros Gastos Financieros",
|
"name": "Otros Gastos Financieros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otros Gastos y Productos Financieros"
|
"name": "Otros Gastos y Productos Financieros"
|
||||||
@ -345,7 +345,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Costos de Ventas",
|
"name": "Costos de Ventas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Costos de Ventas"
|
"name": "Costos de Ventas"
|
||||||
|
@ -58,35 +58,6 @@ def get_default_account_types():
|
|||||||
default_types_root.append(ET.parse(os.path.join(path, "account", "data",
|
default_types_root.append(ET.parse(os.path.join(path, "account", "data",
|
||||||
"data_account_type.xml")).getroot())
|
"data_account_type.xml")).getroot())
|
||||||
return get_account_types(default_types_root, None, prefix="account")
|
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):
|
def get_xml_roots(files_path):
|
||||||
xml_roots = frappe._dict()
|
xml_roots = frappe._dict()
|
||||||
@ -120,10 +91,10 @@ def get_csv_contents(files_path):
|
|||||||
def get_account_types(root_list, csv_content, prefix=None):
|
def get_account_types(root_list, csv_content, prefix=None):
|
||||||
types = {}
|
types = {}
|
||||||
account_type_map = {
|
account_type_map = {
|
||||||
'cash': 'Bank or Cash',
|
'cash': 'Cash',
|
||||||
'bank': 'Bank or Cash',
|
'bank': 'Bank',
|
||||||
'tr_cash': 'Bank or Cash',
|
'tr_cash': 'Cash',
|
||||||
'tr_bank': 'Bank or Cash',
|
'tr_bank': 'Bank',
|
||||||
'receivable': 'Receivable',
|
'receivable': 'Receivable',
|
||||||
'tr_receivable': 'Receivable',
|
'tr_receivable': 'Receivable',
|
||||||
'account rec': 'Receivable',
|
'account rec': 'Receivable',
|
||||||
@ -147,7 +118,7 @@ def get_account_types(root_list, csv_content, prefix=None):
|
|||||||
data = {}
|
data = {}
|
||||||
for field in node.findall("field"):
|
for field in node.findall("field"):
|
||||||
if field.get("name")=="report_type" and field.text.lower() != "none":
|
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" \
|
if field.get("name")=="code" and field.text.lower() != "none" \
|
||||||
and account_type_map.get(field.text):
|
and account_type_map.get(field.text):
|
||||||
data["account_type"] = account_type_map[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))
|
row_dict = dict(zip(csv_content[0], row))
|
||||||
data = {}
|
data = {}
|
||||||
if row_dict.get("report_type"):
|
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"]):
|
if row_dict.get("code") and account_type_map.get(row_dict["code"]):
|
||||||
data["account_type"] = account_type_map[row_dict["code"]]
|
data["account_type"] = account_type_map[row_dict["code"]]
|
||||||
if data and data.get("id"):
|
if data and data.get("id"):
|
||||||
@ -168,6 +139,19 @@ def get_account_types(root_list, csv_content, prefix=None):
|
|||||||
types[node_id] = data
|
types[node_id] = data
|
||||||
return types
|
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):
|
def make_maps_for_xml(xml_roots, account_types, country_dir):
|
||||||
"""make maps for `charts` and `accounts`"""
|
"""make maps for `charts` and `accounts`"""
|
||||||
for model, root_list in xml_roots.iteritems():
|
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":
|
if field.get("name")=="user_type":
|
||||||
value = field.get("ref")
|
value = field.get("ref")
|
||||||
if account_types.get(value, {}).get("root_type"):
|
if account_types.get(value, {}).get("report_type"):
|
||||||
data["root_type"] = account_types[value]["root_type"]
|
data["report_type"] = account_types[value]["report_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("account_type"):
|
if account_types.get(value, {}).get("account_type"):
|
||||||
data["account_type"] = account_types[value]["account_type"]
|
data["account_type"] = account_types[value]["account_type"]
|
||||||
@ -218,10 +196,7 @@ def make_account_trees():
|
|||||||
if account.get("parent_id"):
|
if account.get("parent_id"):
|
||||||
if accounts.get(account["parent_id"]):
|
if accounts.get(account["parent_id"]):
|
||||||
accounts[account["parent_id"]]["children"].append(account)
|
accounts[account["parent_id"]]["children"].append(account)
|
||||||
del account["parent_id"]
|
del account["parent_id"]
|
||||||
else:
|
|
||||||
print account.get("name") + " deleted, parent node not found"
|
|
||||||
del accounts[id]
|
|
||||||
|
|
||||||
# remove empty children
|
# remove empty children
|
||||||
for id in accounts.keys():
|
for id in accounts.keys():
|
||||||
@ -238,8 +213,8 @@ def make_maps_for_csv(csv_content, account_types, country_dir):
|
|||||||
"children": []
|
"children": []
|
||||||
}
|
}
|
||||||
user_type = data.get("user_type/id") or data.get("user_type:id")
|
user_type = data.get("user_type/id") or data.get("user_type:id")
|
||||||
if account_types.get(user_type, {}).get("root_type"):
|
if account_types.get(user_type, {}).get("report_type"):
|
||||||
account["root_type"] = account_types[user_type]["root_type"]
|
account["report_type"] = account_types[user_type]["report_type"]
|
||||||
|
|
||||||
if account_types.get(user_type, {}).get("account_type"):
|
if account_types.get(user_type, {}).get("account_type"):
|
||||||
account["account_type"] = account_types[user_type]["account_type"]
|
account["account_type"] = account_types[user_type]["account_type"]
|
||||||
|
@ -8,114 +8,114 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Mortgage Loan Payable",
|
"name": "Mortgage Loan Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Interest Payable",
|
"name": "Interest Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Wages Payable",
|
"name": "Wages Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Owner's Equity Accounts",
|
"name": "Owner's Equity Accounts",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Notes Payable",
|
"name": "Notes Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Exice Duty Payable",
|
"name": "Exice Duty Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales Tax Payable",
|
"name": "Sales Tax Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Service Tax Payable",
|
"name": "Service Tax Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "VAT Payable",
|
"name": "VAT Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Tax payable",
|
"name": "Tax payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Accounts Payable",
|
"name": "Accounts Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Unearned Revenues",
|
"name": "Unearned Revenues",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserve and Surplus Account",
|
"name": "Reserve and Surplus Account",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Liabilities",
|
"name": "Liabilities",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Buildings",
|
"name": "Buildings",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Supplies",
|
"name": "Supplies",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Land",
|
"name": "Land",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Accounts Receivable",
|
"name": "Accounts Receivable",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Accumulated Depreciation - Equipment",
|
"name": "Accumulated Depreciation - Equipment",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Tax Receivable",
|
"name": "Tax Receivable",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Equipment",
|
"name": "Equipment",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Cash",
|
"name": "Cash",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Prepaid Insurance",
|
"name": "Prepaid Insurance",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Accumulated Depreciation - Buildings",
|
"name": "Accumulated Depreciation - Buildings",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Merchandise Inventory",
|
"name": "Merchandise Inventory",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Assets",
|
"name": "Assets",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Balance Sheet"
|
"name": "Balance Sheet"
|
||||||
@ -128,43 +128,43 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Salaries Expense",
|
"name": "Salaries Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Wages Expense",
|
"name": "Wages Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Supplies Expense",
|
"name": "Supplies Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Rent Expense",
|
"name": "Rent Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Utilities Expense",
|
"name": "Utilities Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Telephone Expense",
|
"name": "Telephone Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Advertising Expense",
|
"name": "Advertising Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Depreciation Expense",
|
"name": "Depreciation Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Operating Expense Accounts",
|
"name": "Operating Expense Accounts",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Expense",
|
"name": "Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -172,43 +172,43 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Interest Revenues",
|
"name": "Interest Revenues",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gain on Sale of Assets",
|
"name": "Gain on Sale of Assets",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Non-Operating Revenue and Gains",
|
"name": "Non-Operating Revenue and Gains",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Product Sales",
|
"name": "Product Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Service Revenues",
|
"name": "Service Revenues",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Operating Revenue Accounts",
|
"name": "Operating Revenue Accounts",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Income",
|
"name": "Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Loss on Sale of Assets",
|
"name": "Loss on Sale of Assets",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Non-Operating Expenses and Losses",
|
"name": "Non-Operating Expenses and Losses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Profit And Loss"
|
"name": "Profit And Loss"
|
||||||
|
@ -10,37 +10,37 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Sales - Division #1, Product Line 010",
|
"name": "Sales - Division #1, Product Line 010",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales - Division #3, Product Line 110",
|
"name": "Sales - Division #3, Product Line 110",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales - Division #1, Product Line 022",
|
"name": "Sales - Division #1, Product Line 022",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales - Division #2, Product Line 015",
|
"name": "Sales - Division #2, Product Line 015",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Operating Revenues",
|
"name": "Operating Revenues",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gain on Sale of Assets",
|
"name": "Gain on Sale of Assets",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Non-Operating Revenue and Gains",
|
"name": "Non-Operating Revenue and Gains",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Income",
|
"name": "Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -48,81 +48,81 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Payroll Dept. Payroll Taxes",
|
"name": "Payroll Dept. Payroll Taxes",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Payroll Dept. Supplies",
|
"name": "Payroll Dept. Supplies",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Payroll Dept. Telephone",
|
"name": "Payroll Dept. Telephone",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Payroll Dept. Salaries",
|
"name": "Payroll Dept. Salaries",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Payroll Dept. Expenses",
|
"name": "Payroll Dept. Expenses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Marketing Dept. Supplies",
|
"name": "Marketing Dept. Supplies",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Marketing Dept. Telephone",
|
"name": "Marketing Dept. Telephone",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Marketing Dept. Payroll Taxes",
|
"name": "Marketing Dept. Payroll Taxes",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Marketing Dept. Salaries",
|
"name": "Marketing Dept. Salaries",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Marketing Expenses",
|
"name": "Marketing Expenses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "COGS - Division #1, Product Line 022",
|
"name": "COGS - Division #1, Product Line 022",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "COGS - Division #2, Product Line 015",
|
"name": "COGS - Division #2, Product Line 015",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "COGS - Division #3, Product Line 110",
|
"name": "COGS - Division #3, Product Line 110",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "COGS - Division #1, Product Line 010",
|
"name": "COGS - Division #1, Product Line 010",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cost of Goods Sold",
|
"name": "Cost of Goods Sold",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Loss on Sale of Assets",
|
"name": "Loss on Sale of Assets",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Non-Operating Expenses and Losses",
|
"name": "Non-Operating Expenses and Losses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Expense",
|
"name": "Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Profit And Loss"
|
"name": "Profit And Loss"
|
||||||
@ -134,86 +134,86 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Cash - Payroll Checking",
|
"name": "Cash - Payroll Checking",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Petty Cash Fund",
|
"name": "Petty Cash Fund",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Accounts Receivable",
|
"name": "Accounts Receivable",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inventory",
|
"name": "Inventory",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Tax Receivable",
|
"name": "Tax Receivable",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Supplies",
|
"name": "Supplies",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Cash - Regular Checking",
|
"name": "Cash - Regular Checking",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Prepaid Insurance",
|
"name": "Prepaid Insurance",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Allowance for Doubtful Accounts",
|
"name": "Allowance for Doubtful Accounts",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Current Assets",
|
"name": "Current Assets",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Accumulated Depreciation - Vehicles",
|
"name": "Accumulated Depreciation - Vehicles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Vehicles",
|
"name": "Vehicles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Accumulated Depreciation - Buildings",
|
"name": "Accumulated Depreciation - Buildings",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Equipment",
|
"name": "Equipment",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Land",
|
"name": "Land",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Buildings",
|
"name": "Buildings",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Accumulated Depreciation - Equipment",
|
"name": "Accumulated Depreciation - Equipment",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Property, Plant, and Equipment",
|
"name": "Property, Plant, and Equipment",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Assets",
|
"name": "Assets",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -223,96 +223,96 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Service Tax Payable",
|
"name": "Service Tax Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Exice Duty Payable",
|
"name": "Exice Duty Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "VAT Payable",
|
"name": "VAT Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales Tax Payable",
|
"name": "Sales Tax Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Tax payable",
|
"name": "Tax payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Interest Payable",
|
"name": "Interest Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Wages Payable",
|
"name": "Wages Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserve and Surplus Account",
|
"name": "Reserve and Surplus Account",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Notes Payable - Credit Line #2",
|
"name": "Notes Payable - Credit Line #2",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Unearned Revenues",
|
"name": "Unearned Revenues",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Accounts Payable",
|
"name": "Accounts Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Notes Payable - Credit Line #1",
|
"name": "Notes Payable - Credit Line #1",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Current Liabilities",
|
"name": "Current Liabilities",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Mortgage Loan Payable",
|
"name": "Mortgage Loan Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bonds Payable",
|
"name": "Bonds Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Discount on Bonds Payable",
|
"name": "Discount on Bonds Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Long-term Liabilities",
|
"name": "Long-term Liabilities",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Treasury Stock",
|
"name": "Treasury Stock",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Retained Earnings",
|
"name": "Retained Earnings",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Common Stock, No Par",
|
"name": "Common Stock, No Par",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Stockholders' Equity",
|
"name": "Stockholders' Equity",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Liabilities",
|
"name": "Liabilities",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "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": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "INTERESES DE BANCOS NACIONALES",
|
"name": "INTERESES DE BANCOS NACIONALES"
|
||||||
"root_type": "Income"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "OTROS INGRESOS FINANCIEROS"
|
"name": "OTROS INGRESOS FINANCIEROS"
|
||||||
@ -29,8 +28,7 @@
|
|||||||
"name": "INTERESES VARIOS"
|
"name": "INTERESES VARIOS"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "GANANCIAS EN DIFERENCIAL CAMBIARIO",
|
"name": "GANANCIAS EN DIFERENCIAL CAMBIARIO"
|
||||||
"root_type": "Income"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "GANANCIAS EN VENTAS DE ACTIVOS FIJOS"
|
"name": "GANANCIAS EN VENTAS DE ACTIVOS FIJOS"
|
||||||
@ -485,8 +483,7 @@
|
|||||||
"name": "VENTAS NACIONALES AL DETAL"
|
"name": "VENTAS NACIONALES AL DETAL"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "VENTAS EXPORTACION",
|
"name": "VENTAS EXPORTACION"
|
||||||
"root_type": "Income"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "VENTAS NACIONALES"
|
"name": "VENTAS NACIONALES"
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -49,23 +49,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Recupero de Rezagos",
|
"name": "Recupero de Rezagos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta de Activo Fijo",
|
"name": "Ganancia Venta de Activo Fijo",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Recupero de Deudores Incobrables",
|
"name": "Recupero de Deudores Incobrables",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta Inversiones Permanentes",
|
"name": "Ganancia Venta Inversiones Permanentes",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donaciones obtenidas, ganandas, percibidas",
|
"name": "Donaciones obtenidas, ganandas, percibidas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ingresos No Operativos"
|
"name": "Ingresos No Operativos"
|
||||||
@ -74,40 +74,40 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Comisiones gananados, obtenidos, percibidos",
|
"name": "Comisiones gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Descuentos gananados, obtenidos, percibidos",
|
"name": "Descuentos gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Interese sobre Inversiones",
|
"name": "Interese sobre Inversiones",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Honorarios gananados, obtenidos, percibidos",
|
"name": "Honorarios gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ventas - Categoria de productos 01",
|
"name": "Ventas - Categoria de productos 01",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ventas"
|
"name": "Ventas"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses gananados, obtenidos, percibidos",
|
"name": "Intereses gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alquileres gananados, obtenidos, percibidos",
|
"name": "Alquileres gananados, obtenidos, percibidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ganancia Venta de Acciones",
|
"name": "Ganancia Venta de Acciones",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ingresos Operativos"
|
"name": "Ingresos Operativos"
|
||||||
@ -121,7 +121,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Costo de Venta - Categoria de productos 01",
|
"name": "Costo de Venta - Categoria de productos 01",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Costo de Venta"
|
"name": "Costo de Venta"
|
||||||
@ -136,15 +136,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Costos de Producci\u00f3n",
|
"name": "Costos de Producci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de Administraci\u00f3n",
|
"name": "Gastos de Administraci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de Comercializaci\u00f3n",
|
"name": "Gastos de Comercializaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "COSTOS"
|
"name": "COSTOS"
|
||||||
@ -155,22 +155,22 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos de Publicidad y Propaganda",
|
"name": "Gastos de Publicidad y Propaganda",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Servicios P\u00fablicos"
|
"name": "Gastos en Servicios P\u00fablicos"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Amortizaci\u00f3n",
|
"name": "Gastos en Amortizaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Cargas Sociales",
|
"name": "Gastos en Cargas Sociales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Salarios",
|
"name": "Gastos en Salarios",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos Bancarios"
|
"name": "Gastos Bancarios"
|
||||||
@ -180,7 +180,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos en Depreciaci\u00f3n de Activo Fijo",
|
"name": "Gastos en Depreciaci\u00f3n de Activo Fijo",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos Operativos"
|
"name": "Gastos Operativos"
|
||||||
@ -189,15 +189,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gastos en Siniestros",
|
"name": "Gastos en Siniestros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donaciones Cedidas, Otorgadas",
|
"name": "Donaciones Cedidas, Otorgadas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "P\u00e9rdida Venta Activo Fijo",
|
"name": "P\u00e9rdida Venta Activo Fijo",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gastos No Operativos"
|
"name": "Gastos No Operativos"
|
||||||
@ -216,7 +216,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Activo Fijo",
|
"name": "Ajustes al Patrimonio / Revaluo T\u00e9cnico de Activo Fijo",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ajustes al Patrimonio"
|
"name": "Ajustes al Patrimonio"
|
||||||
@ -225,11 +225,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Aportes No Capitalizados / Aportes Irrevocables Futura Suscripci\u00f3n de Acciones",
|
"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",
|
"name": "Aportes No Capitalizados / Primas de Emsi\u00f3n",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Aportes No Capitalizados"
|
"name": "Aportes No Capitalizados"
|
||||||
@ -238,19 +238,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Capital / Dividendos a Distribuir en Acciones",
|
"name": "Capital / Dividendos a Distribuir en Acciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital / Acciones en Circulaci\u00f3n",
|
"name": "Capital / Acciones en Circulaci\u00f3n",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital / Capital Propio",
|
"name": "Capital / Capital Propio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones",
|
"name": "Capital / (-) Descuento de Emisi\u00f3n de Acciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Capital"
|
"name": "Capital"
|
||||||
@ -259,19 +259,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Resultados Acumulados",
|
"name": "Resultados Acumulados",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Resultado del Ejercicio",
|
"name": "Resultado del Ejercicio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Utilidades y P\u00e9rdidas del Ejercicio",
|
"name": "Utilidades y P\u00e9rdidas del Ejercicio",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Resultados Acumulados del Ejercicio Anterior",
|
"name": "Resultados Acumulados del Ejercicio Anterior",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Resultados No Asignados"
|
"name": "Resultados No Asignados"
|
||||||
@ -280,19 +280,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Reserva para Renovaci\u00f3n de Activo Fijo",
|
"name": "Reserva para Renovaci\u00f3n de Activo Fijo",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Estatutaria",
|
"name": "Reserva Estatutaria",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Facultativa",
|
"name": "Reserva Facultativa",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reserva Legal",
|
"name": "Reserva Legal",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Futuras Eventualidades"
|
"name": "Futuras Eventualidades"
|
||||||
@ -306,19 +306,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Salarios por Pagar / Retenciones a Depositar",
|
"name": "Salarios por Pagar / Retenciones a Depositar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Salarios por Pagar / Sueldos a Pagar",
|
"name": "Salarios por Pagar / Sueldos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Salarios por Pagar / Provisi\u00f3n para Sueldo Anual Complementario",
|
"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",
|
"name": "Salarios por Pagar / Cargas Sociales a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Salarios por Pagar"
|
"name": "Salarios por Pagar"
|
||||||
@ -327,19 +327,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Pagar / Acreedores Varios",
|
"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",
|
"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",
|
"name": "Otras Cuentas por Pagar / Dividendos a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Pagar / Cobros por Adelantado",
|
"name": "Otras Cuentas por Pagar / Cobros por Adelantado",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otras Cuentas por Pagar"
|
"name": "Otras Cuentas por Pagar"
|
||||||
@ -348,15 +348,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service",
|
"name": "Provisiones / Previsi\u00f3n para Garant\u00edas por Service",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Provisiones / Previsi\u00f3n para juicios Pendientes",
|
"name": "Provisiones / Previsi\u00f3n para juicios Pendientes",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
"name": "Provisiones / Previsi\u00f3n Indemnizaci\u00f3n por Despidos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Provisiones"
|
"name": "Provisiones"
|
||||||
@ -366,17 +366,17 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Cuentas por Pagar / Anticipos de Clientes",
|
"name": "Cuentas por Pagar / Anticipos de Clientes",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Cuentas por Pagar / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
"name": "Cuentas por Pagar / (-) Intereses a Devengar por Compras al Cr\u00e9dito",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Cuentas por Pagar / Proveedores",
|
"name": "Cuentas por Pagar / Proveedores",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas por Pagar"
|
"name": "Cuentas por Pagar"
|
||||||
@ -385,23 +385,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Debentures Emitidos",
|
"name": "Pasivo Circulante / Debentures Emitidos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Intereses a Pagar",
|
"name": "Pasivo Circulante / Intereses a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Obligaciones a Pagar",
|
"name": "Pasivo Circulante / Obligaciones a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Prestamos",
|
"name": "Pasivo Circulante / Prestamos",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pasivo Circulante / Adelantos en Cuenta Corriente",
|
"name": "Pasivo Circulante / Adelantos en Cuenta Corriente",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Pasivo Circulante"
|
"name": "Pasivo Circulante"
|
||||||
@ -410,11 +410,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Impuestos por Pagar / ITBMS a Pagar",
|
"name": "Impuestos por Pagar / ITBMS a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Impuestos por Pagar / Impuesto sobre la Renta a Pagar",
|
"name": "Impuestos por Pagar / Impuesto sobre la Renta a Pagar",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Impuestos por Pagar"
|
"name": "Impuestos por Pagar"
|
||||||
@ -427,31 +427,31 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Bank",
|
||||||
"name": "Caja y Bancos - Valores a Depositar ",
|
"name": "Caja y Bancos - Valores a Depositar ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Bank",
|
||||||
"name": "Caja y Bancos.../ BCO. CTA CTE PAB",
|
"name": "Caja y Bancos.../ BCO. CTA CTE PAB",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Bancos"
|
"name": "Caja y Bancos - Bancos"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Bank",
|
||||||
"name": "Caja y Bancos - Recaudaciones a Depositar ",
|
"name": "Caja y Bancos - Recaudaciones a Depositar ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Caja y Bancos - Caja / efectivo PAB",
|
"name": "Caja y Bancos - Caja / efectivo PAB",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Caja"
|
"name": "Caja y Bancos - Caja"
|
||||||
@ -459,9 +459,9 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Caja y Bancos - Fondos fijos / caja menuda 01 PAB",
|
"name": "Caja y Bancos - Fondos fijos / caja menuda 01 PAB",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Fondos fijos"
|
"name": "Caja y Bancos - Fondos fijos"
|
||||||
@ -469,9 +469,9 @@
|
|||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Caja y Bancos - Caja / efectivo USD",
|
"name": "Caja y Bancos - Caja / efectivo USD",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Caja y Bancos - Moneda Extranjera"
|
"name": "Caja y Bancos - Moneda Extranjera"
|
||||||
@ -483,39 +483,39 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar / Anticipo de Impuestos",
|
"name": "Otras Cuentas por Cobrar / Anticipo de Impuestos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar / Anticipos a Proveedores",
|
"name": "Otras Cuentas por Cobrar / Anticipos a Proveedores",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar / Pr\u00e9stamos otorgados",
|
"name": "Otras Cuentas por Cobrar / Pr\u00e9stamos otorgados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar / Accionistas",
|
"name": "Otras Cuentas por Cobrar / Accionistas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar / Intereses Pagados por Adelantado",
|
"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",
|
"name": "Otras Cuentas por Cobrar / Alquileres Pagados por Adelantado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar / Anticipo al Personal",
|
"name": "Otras Cuentas por Cobrar / Anticipo al Personal",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar / (-) Intereses (+) a Devengar",
|
"name": "Otras Cuentas por Cobrar / (-) Intereses (+) a Devengar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos",
|
"name": "Otras Cuentas por Cobrar / (-) Previsi\u00f3n para Descuentos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Otras Cuentas por Cobrar"
|
"name": "Otras Cuentas por Cobrar"
|
||||||
@ -525,27 +525,27 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Cuentas por Cobrar / Deudores por Ventas",
|
"name": "Cuentas por Cobrar / Deudores por Ventas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Cuentas por Cobrar / Deudores Morosos",
|
"name": "Cuentas por Cobrar / Deudores Morosos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Cuentas por Cobrar / Deudores en Gesti\u00f3n Judicial",
|
"name": "Cuentas por Cobrar / Deudores en Gesti\u00f3n Judicial",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Cuentas por Cobrar / Deudores Varios",
|
"name": "Cuentas por Cobrar / Deudores Varios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Incobrables",
|
"name": "Cuentas por Cobrar / (-) Previsi\u00f3n para Incobrables",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cuentas por Cobrar"
|
"name": "Cuentas por Cobrar"
|
||||||
@ -556,34 +556,34 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Inventarios - Mercancias / Categoria de productos 01",
|
"name": "Inventarios - Mercancias / Categoria de productos 01",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Inventarios - Mercancias"
|
"name": "Inventarios - Mercancias"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materias primas",
|
"name": "Materias primas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inventarios - Mercancias en Tr\u00e1nsito",
|
"name": "Inventarios - Mercancias en Tr\u00e1nsito",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos Elaborados",
|
"name": "Productos Elaborados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos en Curso de Elaboraci\u00f3n",
|
"name": "Productos en Curso de Elaboraci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Inventarios",
|
"name": "(-) Previsi\u00f3n para Desvalorizaci\u00f3n de Inventarios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materiales Varios ",
|
"name": "Materiales Varios ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Inventarios"
|
"name": "Inventarios"
|
||||||
@ -592,19 +592,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
"name": "Inversiones / (-) Previsi\u00f3n para Devalorizaci\u00f3n de Acciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / Acciones Permanentes",
|
"name": "Inversiones / Acciones Permanentes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
"name": "Inversiones / T\u00edtulos P\u00fablicos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inversiones / Acciones Transitorias",
|
"name": "Inversiones / Acciones Transitorias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Inversiones Financieras"
|
"name": "Inversiones Financieras"
|
||||||
@ -613,19 +613,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada",
|
"name": "Activo Intangible / (-) Amortizaci\u00f3n Acumulada",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Intangible / Marcas y Patentes de Invenci\u00f3n",
|
"name": "Activo Intangible / Marcas y Patentes de Invenci\u00f3n",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Intangible / Concesiones y Franquicias",
|
"name": "Activo Intangible / Concesiones y Franquicias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Intangible / Derecho de Llaves",
|
"name": "Activo Intangible / Derecho de Llaves",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Activo Intangible"
|
"name": "Activo Intangible"
|
||||||
@ -634,23 +634,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / Inmuebles",
|
"name": "Activo Fijo / Inmuebles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / Maquinaria",
|
"name": "Activo Fijo / Maquinaria",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / Material Rodante Motorizado",
|
"name": "Activo Fijo / Material Rodante Motorizado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / (-) Depreciaci\u00f3n Acumulada",
|
"name": "Activo Fijo / (-) Depreciaci\u00f3n Acumulada",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Activo Fijo / Equipos",
|
"name": "Activo Fijo / Equipos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Activo Fijo"
|
"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": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri financiare din ajustari pentru pierderea de valoare a imobilizarilor financiare",
|
"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",
|
"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"
|
"name": "Venituri financiare din ajustari pentru pierdere de valoare"
|
||||||
@ -185,19 +185,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri din ajustari pentru deprecierea imobilizarilor",
|
"name": "Venituri din ajustari pentru deprecierea imobilizarilor",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din provizioane",
|
"name": "Venituri din provizioane",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din fondul comercial negativ",
|
"name": "Venituri din fondul comercial negativ",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din ajustari pentru deprecierea activelor circulante ",
|
"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"
|
"name": "Venituri din provizioane si ajustari pentru depreciere privind activitatea de exploatare"
|
||||||
@ -209,53 +209,53 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Alte venituri financiare",
|
"name": "Alte venituri financiare",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din creante imobilizate",
|
"name": "Venituri din creante imobilizate",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din diferente de curs valutar",
|
"name": "Venituri din diferente de curs valutar",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Castiguri din investitii pe termen scurt cedate",
|
"name": "Castiguri din investitii pe termen scurt cedate",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din imobilizari financiare cedate",
|
"name": "Venituri din imobilizari financiare cedate",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Venituri din investitii financiare cedate"
|
"name": "Venituri din investitii financiare cedate"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din sconturi obtinute",
|
"name": "Venituri din sconturi obtinute",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din dobanzi",
|
"name": "Venituri din dobanzi",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri din actiuni detinute la entitatile afiliate",
|
"name": "Venituri din actiuni detinute la entitatile afiliate",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din interese de participare",
|
"name": "Venituri din interese de participare",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Venituri din imobilizari financiare"
|
"name": "Venituri din imobilizari financiare"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din investitii financiare pe termen scurt",
|
"name": "Venituri din investitii financiare pe termen scurt",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "VENITURI FINANCIARE"
|
"name": "VENITURI FINANCIARE"
|
||||||
@ -264,7 +264,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri din subventii pentru evenimente extraordinare si altele similare",
|
"name": "Venituri din subventii pentru evenimente extraordinare si altele similare",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "VENITURI EXTRAORDINARE"
|
"name": "VENITURI EXTRAORDINARE"
|
||||||
@ -275,35 +275,35 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri din subventii de exploatare pentru dobanda datorata",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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 ",
|
"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",
|
"name": "Venituri din subventii de exploatare aferente cifrei de afaceri",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Venituri din subventii de exploatare"
|
"name": "Venituri din subventii de exploatare"
|
||||||
@ -315,29 +315,29 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri din creante reactivate si debitori diversi",
|
"name": "Venituri din creante reactivate si debitori diversi",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri din despagubiri, amenzi si penalitati",
|
"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",
|
"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",
|
"name": "Venituri din donatii si subventii primite",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alte venituri din exploatare",
|
"name": "Alte venituri din exploatare",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din subventii pentru investitii",
|
"name": "Venituri din subventii pentru investitii",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Alte venituri din exploatare"
|
"name": "Alte venituri din exploatare"
|
||||||
@ -349,11 +349,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri din productia de imobilizari corporale",
|
"name": "Venituri din productia de imobilizari corporale",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din productia de imobilizari necorporale",
|
"name": "Venituri din productia de imobilizari necorporale",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Venituri din productia de imobilizari"
|
"name": "Venituri din productia de imobilizari"
|
||||||
@ -362,39 +362,39 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri din vanzarea marfurilor",
|
"name": "Venituri din vanzarea marfurilor",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reduceri comerciale acordate",
|
"name": "Reduceri comerciale acordate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din activitati diverse",
|
"name": "Venituri din activitati diverse",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din redevente, locatii de gestiune si chirii",
|
"name": "Venituri din redevente, locatii de gestiune si chirii",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din studii si cercetari",
|
"name": "Venituri din studii si cercetari",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din lucrari executate si servicii prestate",
|
"name": "Venituri din lucrari executate si servicii prestate",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din vanzarea produselor reziduale",
|
"name": "Venituri din vanzarea produselor reziduale",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din vanzarea semifabricatelor",
|
"name": "Venituri din vanzarea semifabricatelor",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri din vanzarea produselor finite",
|
"name": "Venituri din vanzarea produselor finite",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CIFRA DE AFACERI NETA"
|
"name": "CIFRA DE AFACERI NETA"
|
||||||
@ -403,11 +403,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Venituri aferente costurilor stocurilor de produse",
|
"name": "Venituri aferente costurilor stocurilor de produse",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Venituri aferente costurilor serviciilor in curs de executie",
|
"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"
|
"name": "Venituri aferente costului productiei in curs de executie"
|
||||||
@ -421,53 +421,53 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu tichetele de masa acordate salariatilor",
|
"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",
|
"name": "Cheltuieli cu primele reprezentand participarea personalului la profit",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu salariile personalului",
|
"name": "Cheltuieli cu salariile personalului",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu renumerarea in instrumente de capitaluri proprii",
|
"name": "Cheltuieli cu renumerarea in instrumente de capitaluri proprii",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Contributia unitatii la schemele de pensii facultative",
|
"name": "Contributia unitatii la schemele de pensii facultative",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Contributia unitatii la asigurarile sociale",
|
"name": "Contributia unitatii la asigurarile sociale",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Contributia unitatii la fondul de garantare",
|
"name": "Contributia unitatii la fondul de garantare",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Contributia unitatii la fondul de concedii medicale",
|
"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",
|
"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",
|
"name": "Contributia unitatii pentru ajutorul de somaj",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Contributia angajatorului pentru asigurarile sociale de sanatate",
|
"name": "Contributia angajatorului pentru asigurarile sociale de sanatate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alte cheltuieli privind asigurarile si protectia sociala",
|
"name": "Alte cheltuieli privind asigurarile si protectia sociala",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cheltuieli privind asigurarile si protectia sociala"
|
"name": "Cheltuieli privind asigurarile si protectia sociala"
|
||||||
@ -479,11 +479,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Impozitul pe profit",
|
"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",
|
"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"
|
"name": "CHELTUIELI CU IMPOZITUL PE PROFIT SI ALTE IMPOZITE"
|
||||||
@ -494,15 +494,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli financiare privind ajustarile pentru pierderea de valoare a activelor circulante",
|
"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",
|
"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",
|
"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"
|
"name": "Cheltuieli financiare privind amortizarile si ajustarile pentru pierdere de valoare"
|
||||||
@ -511,19 +511,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli de exploatare privind provizioanele",
|
"name": "Cheltuieli de exploatare privind provizioanele",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli de exploatare privind amortizarea imobilizarilor",
|
"name": "Cheltuieli de exploatare privind amortizarea imobilizarilor",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli de exploatare privind ajustarile pentru deprecierea imobilizarilor",
|
"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",
|
"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"
|
"name": "Cheltuieli de exploatare privind amortizarile, provizioanele si ajustarile pentru depreciere"
|
||||||
@ -537,30 +537,30 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Alte cheltuieli de exploatare",
|
"name": "Alte cheltuieli de exploatare",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Donatii si subventii acordate",
|
"name": "Donatii si subventii acordate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind activele cedate si alte operatii de capital",
|
"name": "Cheltuieli privind activele cedate si alte operatii de capital",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Despagubiri, amenzi si penalitati",
|
"name": "Despagubiri, amenzi si penalitati",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Alte cheltuieli de exploatare"
|
"name": "Alte cheltuieli de exploatare"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pierderi din creante si debitori diversi",
|
"name": "Pierderi din creante si debitori diversi",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu protectia mediului inconjurator",
|
"name": "Cheltuieli cu protectia mediului inconjurator",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Alte cheltuieli de exploatare"
|
"name": "Alte cheltuieli de exploatare"
|
||||||
@ -569,7 +569,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind calamitatile si alte evenimente extraordinare",
|
"name": "Cheltuieli privind calamitatile si alte evenimente extraordinare",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CHELTUIELI EXTRAORDINARE"
|
"name": "CHELTUIELI EXTRAORDINARE"
|
||||||
@ -578,36 +578,36 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Alte cheltuieli financiare",
|
"name": "Alte cheltuieli financiare",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pierderi din creante legate de participatii",
|
"name": "Pierderi din creante legate de participatii",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind imobilizarile financiare cedate",
|
"name": "Cheltuieli privind imobilizarile financiare cedate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pierderi din investitiile pe termen scurt cedate",
|
"name": "Pierderi din investitiile pe termen scurt cedate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cheltuieli privind investitiile financiare cedate"
|
"name": "Cheltuieli privind investitiile financiare cedate"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli din diferente de curs valutar",
|
"name": "Cheltuieli din diferente de curs valutar",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind dobanzile",
|
"name": "Cheltuieli privind dobanzile",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind sconturile acordate",
|
"name": "Cheltuieli privind sconturile acordate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CHELTUIELI FINANCIARE"
|
"name": "CHELTUIELI FINANCIARE"
|
||||||
@ -616,19 +616,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu intretinerile si reparatiile",
|
"name": "Cheltuieli cu intretinerile si reparatiile",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu redeventele, locatiile de gestiune si chiriile",
|
"name": "Cheltuieli cu redeventele, locatiile de gestiune si chiriile",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu studiile si cercetarile",
|
"name": "Cheltuieli cu studiile si cercetarile",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu primele de asigurare",
|
"name": "Cheltuieli cu primele de asigurare",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CHELTUIELI CU LUCRARIRE SI SERVICIILE EXECUTATE DE TERTI"
|
"name": "CHELTUIELI CU LUCRARIRE SI SERVICIILE EXECUTATE DE TERTI"
|
||||||
@ -637,68 +637,68 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Reduceri comerciale primite",
|
"name": "Reduceri comerciale primite",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind marfurile",
|
"name": "Cheltuieli privind marfurile",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind animalele si pasarile",
|
"name": "Cheltuieli privind animalele si pasarile",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind materialele nestocate",
|
"name": "Cheltuieli privind materialele nestocate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind energia si apa",
|
"name": "Cheltuieli privind energia si apa",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind materialele pentru ambalat",
|
"name": "Cheltuieli privind materialele pentru ambalat",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind combustibilul",
|
"name": "Cheltuieli privind combustibilul",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind semintele si materialele de plantat",
|
"name": "Cheltuieli privind semintele si materialele de plantat",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind piesele de schimb",
|
"name": "Cheltuieli privind piesele de schimb",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind furajele",
|
"name": "Cheltuieli privind furajele",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu materiale auxiliare",
|
"name": "Cheltuieli cu materiale auxiliare",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind alte materiale consumabile",
|
"name": "Cheltuieli privind alte materiale consumabile",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cheltuieli cu materialele consumabile"
|
"name": "Cheltuieli cu materialele consumabile"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind materialele de natura obiectelor de inventar",
|
"name": "Cheltuieli privind materialele de natura obiectelor de inventar",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu materiile prime",
|
"name": "Cheltuieli cu materiile prime",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind ambalajele",
|
"name": "Cheltuieli privind ambalajele",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CHELTUIELI PRIVIND STOCURILE"
|
"name": "CHELTUIELI PRIVIND STOCURILE"
|
||||||
@ -707,7 +707,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu alte impozite, taxe si varsaminte asimilate",
|
"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"
|
"name": "Cheltuieli cu alte impozite, taxe si varsaminte asimilate"
|
||||||
@ -716,35 +716,35 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu transportul de bunuri si personal",
|
"name": "Cheltuieli cu transportul de bunuri si personal",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu deplasari, detasari si transferari",
|
"name": "Cheltuieli cu deplasari, detasari si transferari",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli postale si taxe de telecomunicatii",
|
"name": "Cheltuieli postale si taxe de telecomunicatii",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu serviciile bancare si asimilate",
|
"name": "Cheltuieli cu serviciile bancare si asimilate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli cu colaboratorii",
|
"name": "Cheltuieli cu colaboratorii",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli privind comisioanele si onorariile",
|
"name": "Cheltuieli privind comisioanele si onorariile",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheltuieli de protocol, reclama si publicitate",
|
"name": "Cheltuieli de protocol, reclama si publicitate",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alte cheltuieli cu serviciile executate de terti",
|
"name": "Alte cheltuieli cu serviciile executate de terti",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CHELTUIELI CU ALTE SERVICII EXECUTATE DE TERTI"
|
"name": "CHELTUIELI CU ALTE SERVICII EXECUTATE DE TERTI"
|
||||||
@ -975,7 +975,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Cheltuieli integistrate in avans",
|
"name": "Cheltuieli integistrate in avans",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Decontari din operatiuni in curs de clarificare"
|
"name": "Decontari din operatiuni in curs de clarificare"
|
||||||
@ -994,7 +994,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Debitori diversi",
|
"name": "Debitori diversi",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DEBITORI SI CREDITORI DIVERSI"
|
"name": "DEBITORI SI CREDITORI DIVERSI"
|
||||||
@ -1009,12 +1009,12 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Decontari din operatii in participare - activ",
|
"name": "Decontari din operatii in participare - activ",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Decontari din operatii in participare - pasiv",
|
"name": "Decontari din operatii in participare - pasiv",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Decontari din operatii in participare"
|
"name": "Decontari din operatii in participare"
|
||||||
@ -1047,12 +1047,12 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Actionari/asociati dobanzi la conturi curente",
|
"name": "Actionari/asociati dobanzi la conturi curente",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Actionari/asociati - conturi curente",
|
"name": "Actionari/asociati - conturi curente",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Sume datorate actionarilor/asociatilor"
|
"name": "Sume datorate actionarilor/asociatilor"
|
||||||
@ -1107,7 +1107,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Alte creante sociale",
|
"name": "Alte creante sociale",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Alte datorii si creante sociale"
|
"name": "Alte datorii si creante sociale"
|
||||||
@ -1122,7 +1122,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Alte creante in legatura cu personalul",
|
"name": "Alte creante in legatura cu personalul",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alte datorii in legatura cu personalul"
|
"name": "Alte datorii in legatura cu personalul"
|
||||||
@ -1142,7 +1142,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Avansuri acordate personalului",
|
"name": "Avansuri acordate personalului",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Personal - ajutoare materiale datorate"
|
"name": "Personal - ajutoare materiale datorate"
|
||||||
@ -1158,19 +1158,19 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Efecte de primit de la clienti",
|
"name": "Efecte de primit de la clienti",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Clienti incerti sau in litigiu",
|
"name": "Clienti incerti sau in litigiu",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Clienti",
|
"name": "Clienti",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Clienti"
|
"name": "Clienti"
|
||||||
@ -1181,7 +1181,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Clienti - facturi de intocmit",
|
"name": "Clienti - facturi de intocmit",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CLIENTI SI CONTURI ASIMILATE"
|
"name": "CLIENTI SI CONTURI ASIMILATE"
|
||||||
@ -1191,22 +1191,22 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Furnizori de imobilizari",
|
"name": "Furnizori de imobilizari",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Efecte de platit pentru imobilizari",
|
"name": "Efecte de platit pentru imobilizari",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Efecte de platit",
|
"name": "Efecte de platit",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Furnizori - facturi nesosite",
|
"name": "Furnizori - facturi nesosite",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -1222,7 +1222,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
"name": "Furnizori",
|
"name": "Furnizori",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "FURNIZORI SI CONTURI ASIMILATE"
|
"name": "FURNIZORI SI CONTURI ASIMILATE"
|
||||||
@ -1232,7 +1232,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Ajustari pentru deprecierea creantelor - debitori diversi",
|
"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"
|
"name": "Ajustari pentru deprecierea creantelor - decontari in cadrul grupului si cu actionarii/asociatii"
|
||||||
@ -1306,17 +1306,17 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Imprumuturi nerambursabile cu caracter de subventii",
|
"name": "Imprumuturi nerambursabile cu caracter de subventii",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Subventii guvernamentale",
|
"name": "Subventii guvernamentale",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Alte sume primite cu caracter de subventii",
|
"name": "Alte sume primite cu caracter de subventii",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Subventii"
|
"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": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Verilen Sipari\u015f Avanslar\u0131",
|
"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(-)",
|
"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",
|
"name": "Yar\u0131 Mamuller",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u0130lk Madde Malzeme",
|
"name": "\u0130lk Madde Malzeme",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ticari Mallar",
|
"name": "Ticari Mallar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mamuller",
|
"name": "Mamuller",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Stoklar",
|
"name": "Stoklar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat Ve Onar\u0131m Maliyetleri",
|
"name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat Ve Onar\u0131m Maliyetleri",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ta\u015feronlara Verilen Avanslar",
|
"name": "Ta\u015feronlara Verilen Avanslar",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat ve Onar\u0131m Maliyetleri",
|
"name": "Y\u0131llara Yayg\u0131n \u0130n\u015faat ve Onar\u0131m Maliyetleri",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "\u00d6zel Kesim Tahvil Senet Ve Bonolar\u0131",
|
"name": "\u00d6zel Kesim Tahvil Senet Ve Bonolar\u0131",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Hisse Senetleri",
|
"name": "Hisse Senetleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Kamu Kesimi Tahvil, Senet ve Bonolar\u0131",
|
"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(-)",
|
"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",
|
"name": "Di\u011fer Menkul K\u0131ymetler",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Menkul K\u0131ymetler",
|
"name": "Menkul K\u0131ymetler",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Bank",
|
||||||
"name": "Bankalar"
|
"name": "Bankalar"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Verilen \u00c7ekler ve \u00d6deme Emirleri(-)",
|
"name": "Verilen \u00c7ekler ve \u00d6deme Emirleri(-)",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Kasa"
|
"name": "Kasa"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Al\u0131nan \u00c7ekler",
|
"name": "Al\u0131nan \u00c7ekler",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Di\u011fer Haz\u0131r De\u011ferler",
|
"name": "Di\u011fer Haz\u0131r De\u011ferler",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Haz\u0131r De\u011ferler",
|
"name": "Haz\u0131r De\u011ferler",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -265,11 +265,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "\u015e\u00fcpheli Ticari Alacaklar",
|
"name": "\u015e\u00fcpheli Ticari Alacaklar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u015e\u00fcpheli Ticari Alacaklar Kar\u015f\u0131l\u0131\u011f\u0131",
|
"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(-)"
|
"name": "Kazan\u0131lmam\u0131\u015f Finansal Kiralama Faiz Gelirleri(-)"
|
||||||
@ -282,7 +282,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Al\u0131c\u0131lar",
|
"name": "Al\u0131c\u0131lar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alacak Senetleri"
|
"name": "Alacak Senetleri"
|
||||||
@ -292,7 +292,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ticari Alacaklar",
|
"name": "Ticari Alacaklar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -330,18 +330,18 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gelecek Aylara Ait Giderler",
|
"name": "Gelecek Aylara Ait Giderler",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gelir Tahakkuklar\u0131"
|
"name": "Gelir Tahakkuklar\u0131"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gelecek Aylara Ait Giderler ve Gelir Tahakkuklar\u0131",
|
"name": "Gelecek Aylara Ait Giderler ve Gelir Tahakkuklar\u0131",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "D\u00f6nen Varl\u0131klar",
|
"name": "D\u00f6nen Varl\u0131klar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -354,12 +354,12 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Tax",
|
"account_type": "Tax",
|
||||||
"name": "Di\u011fer KDV",
|
"name": "Di\u011fer KDV",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Tax",
|
"account_type": "Tax",
|
||||||
"name": "Hesaplanan KDV",
|
"name": "Hesaplanan KDV",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Say\u0131m Ve Tesell\u00fcm Fazlalar\u0131"
|
"name": "Say\u0131m Ve Tesell\u00fcm Fazlalar\u0131"
|
||||||
@ -374,14 +374,14 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gelecek Aylara Ait Gelirler",
|
"name": "Gelecek Aylara Ait Gelirler",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gider Tahakkuklar\u0131"
|
"name": "Gider Tahakkuklar\u0131"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gelecek Aylara Ait Gelirler Ve Gider Tahakkuklar\u0131",
|
"name": "Gelecek Aylara Ait Gelirler Ve Gider Tahakkuklar\u0131",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
@ -389,20 +389,20 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Tax",
|
"account_type": "Tax",
|
||||||
"name": "D\u00f6nem K\u00e2r\u0131n\u0131n Pe\u015fin \u00d6denen Vergi Ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler(-)",
|
"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",
|
"account_type": "Tax",
|
||||||
"name": "D\u00f6nem K\u00e2r\u0131 Vergi Ve Di\u011fer Yasal Y\u00fck\u00fcml\u00fcl\u00fck Kar\u015f\u0131l\u0131klar\u0131",
|
"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",
|
"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",
|
"name": "K\u0131dem Tazminat\u0131 Kar\u015f\u0131l\u0131\u011f\u0131",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
@ -417,26 +417,26 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Tax",
|
"account_type": "Tax",
|
||||||
"name": "Vadesi Ge\u00e7mi\u015f, Ertelenmi\u015f Veya Taksitlendirilmi\u015f Vergi Ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler",
|
"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",
|
"account_type": "Tax",
|
||||||
"name": "\u00d6denecek Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler",
|
"name": "\u00d6denecek Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Tax",
|
"account_type": "Tax",
|
||||||
"name": "\u00d6denecek Vergi Ve Fonlar",
|
"name": "\u00d6denecek Vergi Ve Fonlar",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Tax",
|
"account_type": "Tax",
|
||||||
"name": "\u00d6denecek Sosyal G\u00fcvenl\u00fck Kesintileri",
|
"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",
|
"name": "\u00d6denecek Vergi ve Di\u011fer Y\u00fck\u00fcml\u00fcl\u00fckler",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
@ -569,15 +569,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Gelir Tahakkuklar\u0131",
|
"name": "Gelir Tahakkuklar\u0131",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gelecek Y\u0131llara Ait Giderler",
|
"name": "Gelecek Y\u0131llara Ait Giderler",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Gelecek Y\u0131llara Ait Giderler ve Gelir Tahakkuklar\u0131",
|
"name": "Gelecek Y\u0131llara Ait Giderler ve Gelir Tahakkuklar\u0131",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -618,42 +618,42 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Binalar",
|
"name": "Binalar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Tesis, Makine Ve Cihazlar",
|
"name": "Tesis, Makine Ve Cihazlar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Arazi Ve Arsalar"
|
"name": "Arazi Ve Arsalar"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Yer Alt\u0131 Ve Yer \u00dcst\u00fc D\u00fczenleri",
|
"name": "Yer Alt\u0131 Ve Yer \u00dcst\u00fc D\u00fczenleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Di\u011fer Maddi Duran Varl\u0131klar",
|
"name": "Di\u011fer Maddi Duran Varl\u0131klar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Birikmi\u015f Amortismanlar(-)",
|
"name": "Birikmi\u015f Amortismanlar(-)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ta\u015f\u0131tlar",
|
"name": "Ta\u015f\u0131tlar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Demirba\u015flar",
|
"name": "Demirba\u015flar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Yap\u0131lmakta Olan Yat\u0131r\u0131mlar",
|
"name": "Yap\u0131lmakta Olan Yat\u0131r\u0131mlar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Verilen Avanslar",
|
"name": "Verilen Avanslar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Maddi Duran Varl\u0131klar"
|
"name": "Maddi Duran Varl\u0131klar"
|
||||||
@ -662,65 +662,65 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Birikmi\u015f Amortismanlar(-)",
|
"name": "Birikmi\u015f Amortismanlar(-)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u015eerefiye",
|
"name": "\u015eerefiye",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Verilen Avanslar",
|
"name": "Verilen Avanslar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Di\u011fer Maddi Olmayan Duran Varl\u0131klar",
|
"name": "Di\u011fer Maddi Olmayan Duran Varl\u0131klar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\u00d6zel Maliyetler",
|
"name": "\u00d6zel Maliyetler",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ara\u015ft\u0131rma Ve Geli\u015ftirme Giderleri",
|
"name": "Ara\u015ft\u0131rma Ve Geli\u015ftirme Giderleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Kurulu\u015f Ve \u00d6rg\u00fctlenme Giderleri",
|
"name": "Kurulu\u015f Ve \u00d6rg\u00fctlenme Giderleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Haklar",
|
"name": "Haklar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Maddi Olmayan Duran Varl\u0131klar",
|
"name": "Maddi Olmayan Duran Varl\u0131klar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Birikmi\u015f T\u00fckenme Paylar\u0131(-)",
|
"name": "Birikmi\u015f T\u00fckenme Paylar\u0131(-)",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Verilen Avanslar",
|
"name": "Verilen Avanslar",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Arama Giderleri",
|
"name": "Arama Giderleri",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Haz\u0131rl\u0131k Ve Geli\u015ftirme Giderleri",
|
"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",
|
"name": "Di\u011fer \u00d6zel T\u00fckenmeye Tabi Varl\u0131klar",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "\u00d6zel T\u00fckenmeye Tabi Varl\u0131klar",
|
"name": "\u00d6zel T\u00fckenmeye Tabi Varl\u0131klar",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -775,39 +775,39 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Di\u011fer \u00c7e\u015fitli Duran Varl\u0131klar",
|
"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",
|
"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",
|
"name": "Pe\u015fin \u00d6denen Vergi Ve Fonlar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Di\u011fer KDV",
|
"name": "Di\u011fer KDV",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gelecek Y\u0131llar \u0130htiyac\u0131 Stoklar",
|
"name": "Gelecek Y\u0131llar \u0130htiyac\u0131 Stoklar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gelecek Y\u0131llarda \u0130ndirilecek KDV",
|
"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(-)",
|
"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(-)",
|
"name": "Birikmi\u015f Amortismanlar(-)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Di\u011fer Duran Varl\u0131klar",
|
"name": "Di\u011fer Duran Varl\u0131klar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Duran Varl\u0131klar"
|
"name": "Duran Varl\u0131klar"
|
||||||
@ -818,31 +818,31 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "D\u00f6nem Net K\u00e2r\u0131",
|
"name": "D\u00f6nem Net K\u00e2r\u0131",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "D\u00f6nem Net Zarar\u0131(-)",
|
"name": "D\u00f6nem Net Zarar\u0131(-)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "D\u00f6nem Net K\u00e2r\u0131 (Zarar\u0131)",
|
"name": "D\u00f6nem Net K\u00e2r\u0131 (Zarar\u0131)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ge\u00e7mi\u015f Y\u0131llar Zararlar\u0131(-)",
|
"name": "Ge\u00e7mi\u015f Y\u0131llar Zararlar\u0131(-)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Ge\u00e7mi\u015f Y\u0131llar Zararlar\u0131(-)",
|
"name": "Ge\u00e7mi\u015f Y\u0131llar Zararlar\u0131(-)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Sermaye",
|
"name": "Sermaye",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
@ -850,77 +850,77 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "\u00d6denmi\u015f Sermaye",
|
"name": "\u00d6denmi\u015f Sermaye",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Di\u011fer Sermaye Yedekleri",
|
"name": "Di\u011fer Sermaye Yedekleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Maliyet Art\u0131\u015flar\u0131 Fonu",
|
"name": "Maliyet Art\u0131\u015flar\u0131 Fonu",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Hisse Senetleri \u0130hra\u00e7 Primleri",
|
"name": "Hisse Senetleri \u0130hra\u00e7 Primleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Hisse Senedi \u0130ptal K\u00e2rlar\u0131",
|
"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",
|
"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",
|
"name": "\u0130\u015ftirakler Yeniden De\u011ferleme Art\u0131\u015flar\u0131",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Sermaye Yedekleri",
|
"name": "Sermaye Yedekleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "\u00d6zel Fonlar",
|
"name": "\u00d6zel Fonlar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Stat\u00fc Yedekleri",
|
"name": "Stat\u00fc Yedekleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ola\u011fan\u00fcst\u00fc Yedekler",
|
"name": "Ola\u011fan\u00fcst\u00fc Yedekler",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Yasal Yedekler",
|
"name": "Yasal Yedekler",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Di\u011fer K\u00e2r Yedekleri",
|
"name": "Di\u011fer K\u00e2r Yedekleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "K\u00e2r Yedekleri",
|
"name": "K\u00e2r Yedekleri",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ge\u00e7mi\u015f Y\u0131llar K\u00e2rlar\u0131",
|
"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",
|
"name": "Ge\u00e7mi\u015f Y\u0131llar K\u00e2rlar\u0131",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "\u00d6z Kaynaklar",
|
"name": "\u00d6z Kaynaklar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -958,7 +958,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "K\u0131dem Tazminat\u0131 Kar\u015f\u0131l\u0131\u011f\u0131",
|
"name": "K\u0131dem Tazminat\u0131 Kar\u015f\u0131l\u0131\u011f\u0131",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Payable",
|
"account_type": "Payable",
|
||||||
|
@ -6,189 +6,189 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Automobile Expense",
|
"name": "Automobile Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Payroll Expenses",
|
"name": "Payroll Expenses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Interest Expense",
|
"name": "Interest Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Continuing Education",
|
"name": "Continuing Education",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Meals and Entertainment",
|
"name": "Meals and Entertainment",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Custom Hire and Contract Labor",
|
"name": "Custom Hire and Contract Labor",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Repairs and Maintenance",
|
"name": "Repairs and Maintenance",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Postage and Delivery",
|
"name": "Postage and Delivery",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Small Tools and Equipment",
|
"name": "Small Tools and Equipment",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Chemicals Purchased",
|
"name": "Chemicals Purchased",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gasoline, Fuel and Oil",
|
"name": "Gasoline, Fuel and Oil",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Equipment Rental",
|
"name": "Equipment Rental",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Taxes - Property",
|
"name": "Taxes - Property",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Miscellaneous Expense",
|
"name": "Miscellaneous Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Uniforms",
|
"name": "Uniforms",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Veterinary, Breeding, Medicine",
|
"name": "Veterinary, Breeding, Medicine",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Professional Fees",
|
"name": "Professional Fees",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Janitorial Expense",
|
"name": "Janitorial Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "General Liability Insurance",
|
"name": "General Liability Insurance",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Life and Disability Insurance",
|
"name": "Life and Disability Insurance",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Health Insurance",
|
"name": "Health Insurance",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Professional Liability",
|
"name": "Professional Liability",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Worker's Compensation",
|
"name": "Worker's Compensation",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Insurance Expense",
|
"name": "Insurance Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Travel Expense",
|
"name": "Travel Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Advertising and Promotion",
|
"name": "Advertising and Promotion",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Office Supplies",
|
"name": "Office Supplies",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Dues and Subscriptions",
|
"name": "Dues and Subscriptions",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Feed Purchased",
|
"name": "Feed Purchased",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Bank Service Charges",
|
"name": "Bank Service Charges",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Marketing Expense",
|
"name": "Marketing Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Storage and Warehousing",
|
"name": "Storage and Warehousing",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Computer and Internet Expenses",
|
"name": "Computer and Internet Expenses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Fertilizers and Lime",
|
"name": "Fertilizers and Lime",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Seeds and Plants Purchased",
|
"name": "Seeds and Plants Purchased",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Conservation Expenses",
|
"name": "Conservation Expenses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Freight and Trucking",
|
"name": "Freight and Trucking",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Depreciation Expense",
|
"name": "Depreciation Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Printing and Reproduction",
|
"name": "Printing and Reproduction",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Car and Truck Expenses",
|
"name": "Car and Truck Expenses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Charitable Contributions",
|
"name": "Charitable Contributions",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Rent Expense",
|
"name": "Rent Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Utilities",
|
"name": "Utilities",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Telephone Expense",
|
"name": "Telephone Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Business Licenses and Permits",
|
"name": "Business Licenses and Permits",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Expenses",
|
"name": "Expenses",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -196,59 +196,59 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Client Trust Account",
|
"name": "Client Trust Account",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"account_type": "Receivable",
|
"account_type": "Receivable",
|
||||||
"name": "Account Receivable",
|
"name": "Account Receivable",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Receivable",
|
"name": "Receivable",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Bank or Cash",
|
"account_type": "Cash",
|
||||||
"name": "Cash or Cash Equivalents",
|
"name": "Cash or Cash Equivalents",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Current Assets",
|
"name": "Current Assets",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Security Deposits Asset",
|
"name": "Security Deposits Asset",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Other Assets",
|
"name": "Other Assets",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Court Costs",
|
"name": "Court Costs",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Advanced Client Costs",
|
"name": "Advanced Client Costs",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Filing Fees",
|
"name": "Filing Fees",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Expert Witness Fees",
|
"name": "Expert Witness Fees",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Other Current Assets",
|
"name": "Other Current Assets",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Fixed Asset",
|
"account_type": "Fixed Asset",
|
||||||
@ -256,19 +256,19 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Fixed Asset",
|
"account_type": "Fixed Asset",
|
||||||
"name": "Furniture and Equipment",
|
"name": "Furniture and Equipment",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Accumulated Depreciation",
|
"name": "Accumulated Depreciation",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Fixed Assets",
|
"name": "Fixed Assets",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Assets",
|
"name": "Assets",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -278,26 +278,26 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Capital Stock",
|
"name": "Capital Stock",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Retained Earnings",
|
"name": "Retained Earnings",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Dividends Paid",
|
"name": "Dividends Paid",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Opening Balance Equity",
|
"name": "Opening Balance Equity",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Equity",
|
"name": "Equity",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -307,157 +307,157 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Account Payable",
|
"name": "Account Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Payable",
|
"name": "Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Current Liabilities",
|
"name": "Current Liabilities",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Sales Tax Payable",
|
"name": "Sales Tax Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Customer Deposits Received",
|
"name": "Customer Deposits Received",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Payroll Liabilities",
|
"name": "Payroll Liabilities",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Use Tax Payable",
|
"name": "Use Tax Payable",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Other Current Liabilities",
|
"name": "Other Current Liabilities",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Liabilities",
|
"name": "Liabilities",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Liabilities and Equity",
|
"name": "Liabilities and Equity",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Settlement Income",
|
"name": "Settlement Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Commodity Credit Loans",
|
"name": "Commodity Credit Loans",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Administrative Fees",
|
"name": "Administrative Fees",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Shipping and Delivery Income",
|
"name": "Shipping and Delivery Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales",
|
"name": "Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Commission income",
|
"name": "Commission income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Fuel Tax Credits and Other Inc.",
|
"name": "Fuel Tax Credits and Other Inc.",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Livestock Sales",
|
"name": "Livestock Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Custom Hire Income",
|
"name": "Custom Hire Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Crop Insurance Proceeds",
|
"name": "Crop Insurance Proceeds",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Legal Fee Income",
|
"name": "Legal Fee Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cooperative Distributions",
|
"name": "Cooperative Distributions",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Job Income",
|
"name": "Job Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Crop Sales",
|
"name": "Crop Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales Discounts",
|
"name": "Sales Discounts",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Rental Income",
|
"name": "Rental Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Farmers Market Sales",
|
"name": "Farmers Market Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales",
|
"name": "Sales",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sales Discounts",
|
"name": "Sales Discounts",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Service Income",
|
"name": "Service Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Agricultural Program Payments",
|
"name": "Agricultural Program Payments",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Income",
|
"name": "Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Proceeds from Sale of Assets",
|
"name": "Proceeds from Sale of Assets",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Finance Charge Income",
|
"name": "Finance Charge Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Interest Income",
|
"name": "Interest Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Insurance Proceeds Received",
|
"name": "Insurance Proceeds Received",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Other Income",
|
"name": "Other Income",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
@ -465,76 +465,76 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Other Job Related Costs",
|
"name": "Other Job Related Costs",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Commissions Paid",
|
"name": "Commissions Paid",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Tools and Small Equipment",
|
"name": "Tools and Small Equipment",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Merchant Account Fees",
|
"name": "Merchant Account Fees",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Job Materials Purchased",
|
"name": "Job Materials Purchased",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Subcontracted Services",
|
"name": "Subcontracted Services",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Equipment Rental for Jobs",
|
"name": "Equipment Rental for Jobs",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Purchases - Resale Items",
|
"name": "Purchases - Resale Items",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Commissions Paid",
|
"name": "Commissions Paid",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Freight and Shipping Costs",
|
"name": "Freight and Shipping Costs",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Merchant Account Fees",
|
"name": "Merchant Account Fees",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Media Purchased for Clients",
|
"name": "Media Purchased for Clients",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Purchase Discounts",
|
"name": "Purchase Discounts",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Cost of Goods Sold",
|
"account_type": "Cost of Goods Sold",
|
||||||
"name": "Subcontractors Expense",
|
"name": "Subcontractors Expense",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Cost of Goods Sold",
|
"name": "Cost of Goods Sold",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "Basic",
|
"name": "Basic",
|
||||||
|
@ -10,27 +10,27 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deuds. Contratos de Cambio Import.",
|
"name": "Deuds. Contratos de Cambio Import.",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Proveedores de Plaza",
|
"name": "Proveedores de Plaza",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Acreedores Varios (def)",
|
"name": "Acreedores Varios (def)",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Proveedores por Importaciones",
|
"name": "Proveedores por Importaciones",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos a Pagar ds/Comerciales",
|
"name": "Documentos a Pagar ds/Comerciales",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses a vencer ds/Comerciales",
|
"name": "Intereses a vencer ds/Comerciales",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DEUDAS COMERCIALES"
|
"name": "DEUDAS COMERCIALES"
|
||||||
@ -39,7 +39,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Responsabilidad frente a terceros",
|
"name": "Responsabilidad frente a terceros",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "PREVISIONES"
|
"name": "PREVISIONES"
|
||||||
@ -48,23 +48,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Controladas/Vinculadas",
|
"name": "Controladas/Vinculadas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sueldos y Jornales a pagar",
|
"name": "Sueldos y Jornales a pagar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Acreedores fiscales",
|
"name": "Acreedores fiscales",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otras deudas",
|
"name": "Otras deudas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Saldos Acreedores Cuentas Directores",
|
"name": "Saldos Acreedores Cuentas Directores",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -85,19 +85,19 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cobros Anticipados",
|
"name": "Cobros Anticipados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Dividendos a Pagar",
|
"name": "Dividendos a Pagar",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Casa Matriz, Empresas Controlantes,",
|
"name": "Casa Matriz, Empresas Controlantes,",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Acreedores por Cargas Sociales",
|
"name": "Acreedores por Cargas Sociales",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -169,23 +169,23 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ints. a vencer ds/Financieras",
|
"name": "Ints. a vencer ds/Financieras",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Prestamos Bancarios",
|
"name": "Prestamos Bancarios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos a pagar MN a pagar ds/Financieras",
|
"name": "Documentos a pagar MN a pagar ds/Financieras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Obligaciones",
|
"name": "Obligaciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos a pagar ME a pagar ds/Financieras",
|
"name": "Documentos a pagar ME a pagar ds/Financieras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DEUDAS FINANCIERAS"
|
"name": "DEUDAS FINANCIERAS"
|
||||||
@ -199,7 +199,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Comerciales",
|
"name": "Deudas Comerciales",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DEUDAS COMERCIALES"
|
"name": "DEUDAS COMERCIALES"
|
||||||
@ -208,7 +208,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Financieras",
|
"name": "Deudas Financieras",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DEUDAS FINANCIERAS"
|
"name": "DEUDAS FINANCIERAS"
|
||||||
@ -217,7 +217,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Previsiones No Corrientes",
|
"name": "Previsiones No Corrientes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "PREVISIONES NO CORRIENTES"
|
"name": "PREVISIONES NO CORRIENTES"
|
||||||
@ -226,7 +226,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Deudas Diversas",
|
"name": "Deudas Diversas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "DEUDAS DIVERSAS"
|
"name": "DEUDAS DIVERSAS"
|
||||||
@ -246,12 +246,12 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Revaluaciones fiscales",
|
"name": "Revaluaciones fiscales",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Revaluaciones voluntarias",
|
"name": "Revaluaciones voluntarias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "AJUSTES PATRIMONIO (H)"
|
"name": "AJUSTES PATRIMONIO (H)"
|
||||||
@ -269,7 +269,7 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Capital Integrado",
|
"name": "Capital Integrado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CAPITAL"
|
"name": "CAPITAL"
|
||||||
@ -284,12 +284,12 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Resultados del ejercicio",
|
"name": "Resultados del ejercicio",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Dividendos provisorios",
|
"name": "Dividendos provisorios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "RESULTADOS ACUMULADOS"
|
"name": "RESULTADOS ACUMULADOS"
|
||||||
@ -299,17 +299,17 @@
|
|||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Reservas Legales",
|
"name": "Reservas Legales",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "Reservas Voluntarias",
|
"name": "Reservas Voluntarias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Equity",
|
"account_type": "Equity",
|
||||||
"name": "P\u00e9rdidas y Ganancias",
|
"name": "P\u00e9rdidas y Ganancias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "RESERVAS"
|
"name": "RESERVAS"
|
||||||
@ -328,31 +328,31 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Importaciones en tramite",
|
"name": "Importaciones en tramite",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materiales y Suministros",
|
"name": "Materiales y Suministros",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Materias Primas",
|
"name": "Materias Primas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos en Proceso",
|
"name": "Productos en Proceso",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Productos Terminados",
|
"name": "Productos Terminados",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mercaderia de Reventa",
|
"name": "Mercaderia de Reventa",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Prevision p/desvalorizaciones",
|
"name": "Prevision p/desvalorizaciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "BIENES DE CAMBIO"
|
"name": "BIENES DE CAMBIO"
|
||||||
@ -364,14 +364,14 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Pagos adelantados",
|
"name": "Pagos adelantados",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Saldos Deudor de ctas de Directores"
|
"name": "Saldos Deudor de ctas de Directores"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Anticipos a Proveedores",
|
"name": "Anticipos a Proveedores",
|
||||||
"root_type": "Liability"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Casa Matriz, Empresas Controlantes"
|
"name": "Casa Matriz, Empresas Controlantes"
|
||||||
@ -432,7 +432,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ingresos diferidos",
|
"name": "Ingresos diferidos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Prevision para Deudores Incobrables"
|
"name": "Prevision para Deudores Incobrables"
|
||||||
@ -442,35 +442,35 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses percibidos por adelantado",
|
"name": "Intereses percibidos por adelantado",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos a Cobrar MN",
|
"name": "Documentos a Cobrar MN",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudores por Exportaciones",
|
"name": "Deudores por Exportaciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudores Simples Plaza",
|
"name": "Deudores Simples Plaza",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Deudores Varios (def)",
|
"name": "Deudores Varios (def)",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheques en Cartera ME",
|
"name": "Cheques en Cartera ME",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cheques en Cartera MN",
|
"name": "Cheques en Cartera MN",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Documentos a Cobrar ME",
|
"name": "Documentos a Cobrar ME",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CREDITOS POR VENTAS"
|
"name": "CREDITOS POR VENTAS"
|
||||||
@ -511,15 +511,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ingresos diferidos",
|
"name": "Ingresos diferidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ingresos percibidos por adelantado",
|
"name": "Ingresos percibidos por adelantado",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Prevision para Deudores Incobrables",
|
"name": "Prevision para Deudores Incobrables",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"account_type": "Tax",
|
"account_type": "Tax",
|
||||||
@ -537,15 +537,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Amortizaciones Acumuladas",
|
"name": "Amortizaciones Acumuladas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Patentes, marcas y licencias",
|
"name": "Patentes, marcas y licencias",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos de investigacion",
|
"name": "Gastos de investigacion",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "INTANGIBLES"
|
"name": "INTANGIBLES"
|
||||||
@ -554,35 +554,35 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Veh\u00edculos",
|
"name": "Veh\u00edculos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Muebles y \u00datiles",
|
"name": "Muebles y \u00datiles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Maquinas y Herramientas",
|
"name": "Maquinas y Herramientas",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inmuebles",
|
"name": "Inmuebles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Amort.Ac.Vehiculos",
|
"name": "Amort.Ac.Vehiculos",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Amort.Ac.Maq.y Herram.",
|
"name": "Amort.Ac.Maq.y Herram.",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Amort.Ac.Inmuebles",
|
"name": "Amort.Ac.Inmuebles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Amort.Ac.Mueb.y Utiles",
|
"name": "Amort.Ac.Mueb.y Utiles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "BIENES DE USO"
|
"name": "BIENES DE USO"
|
||||||
@ -591,31 +591,31 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Prevision para Desvalorizaciones",
|
"name": "Prevision para Desvalorizaciones",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses percibidos por adelantado",
|
"name": "Intereses percibidos por adelantado",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Inmuebles",
|
"name": "Inmuebles",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Valores orig. y revaluados s/anexo",
|
"name": "Valores orig. y revaluados s/anexo",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Menos: Amort. Acum.",
|
"name": "Menos: Amort. Acum.",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Titulos y Acciones",
|
"name": "Titulos y Acciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Depositos Bancarios",
|
"name": "Depositos Bancarios",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "INVERSIONES A LARGO PLAZO"
|
"name": "INVERSIONES A LARGO PLAZO"
|
||||||
@ -624,7 +624,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Bienes de cambio no corrientes",
|
"name": "Bienes de cambio no corrientes",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "BIENES DE CAMBIO NO CORRIENTES"
|
"name": "BIENES DE CAMBIO NO CORRIENTES"
|
||||||
@ -633,7 +633,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Cr\u00e9ditos a Largo Plazo",
|
"name": "Cr\u00e9ditos a Largo Plazo",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "CREDITOS A LARGO PLAZO"
|
"name": "CREDITOS A LARGO PLAZO"
|
||||||
@ -670,13 +670,13 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ingresos Operativos (def)",
|
"name": "Ingresos Operativos (def)",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ventas extraordinarias",
|
"name": "Ventas extraordinarias",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "VENTAS EXTRAORDINARIAS"
|
"name": "VENTAS EXTRAORDINARIAS"
|
||||||
@ -685,15 +685,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Diferencias de Cambio ganadas",
|
"name": "Diferencias de Cambio ganadas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Descuentos Obtenidos",
|
"name": "Descuentos Obtenidos",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses ganados",
|
"name": "Intereses ganados",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "INGRESOS FINANCIEROS"
|
"name": "INGRESOS FINANCIEROS"
|
||||||
@ -702,19 +702,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Ventas Exentas",
|
"name": "Ventas Exentas",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ventas Tasa B\u00e1sica",
|
"name": "Ventas Tasa B\u00e1sica",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ventas Tasa M\u00ednima",
|
"name": "Ventas Tasa M\u00ednima",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Ventas por Exportaciones",
|
"name": "Ventas por Exportaciones",
|
||||||
"root_type": "Income"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "VENTAS ORDINARIAS"
|
"name": "VENTAS ORDINARIAS"
|
||||||
@ -728,7 +728,7 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Amortizaciones",
|
"name": "Amortizaciones",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "AMORTIZACIONES"
|
"name": "AMORTIZACIONES"
|
||||||
@ -737,63 +737,63 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Representaci\u00f3n",
|
"name": "Representaci\u00f3n",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Energ\u00eda El\u00e9ctrica y Aguas Corrientes",
|
"name": "Energ\u00eda El\u00e9ctrica y Aguas Corrientes",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Servicios Contratados",
|
"name": "Servicios Contratados",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Honorarios Profesionales",
|
"name": "Honorarios Profesionales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mantenimiento Veh\u00edculos",
|
"name": "Mantenimiento Veh\u00edculos",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Combustible",
|
"name": "Combustible",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Papeler\u00eda",
|
"name": "Papeler\u00eda",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Cargas Sociales",
|
"name": "Cargas Sociales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Fletes",
|
"name": "Fletes",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Comunicaciones y Servicios Telef\u00f3nicos",
|
"name": "Comunicaciones y Servicios Telef\u00f3nicos",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Seguros",
|
"name": "Seguros",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Sueldos y Jornales",
|
"name": "Sueldos y Jornales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Gastos Varios (def)",
|
"name": "Gastos Varios (def)",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Publicidad",
|
"name": "Publicidad",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Alquileres",
|
"name": "Alquileres",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "GASTOS DE ADMINISTRACION Y VENTAS"
|
"name": "GASTOS DE ADMINISTRACION Y VENTAS"
|
||||||
@ -802,11 +802,11 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Retenciones",
|
"name": "Retenciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Otros",
|
"name": "Otros",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"children": [
|
"children": [
|
||||||
@ -823,7 +823,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Contribuciones",
|
"name": "Contribuciones",
|
||||||
"root_type": "Asset"
|
"report_type": "Balance Sheet"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "OBLIGACIONES TRIBUTARIAS"
|
"name": "OBLIGACIONES TRIBUTARIAS"
|
||||||
@ -832,19 +832,19 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Multas y Recargos Fiscales",
|
"name": "Multas y Recargos Fiscales",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Descuentos Concedidos",
|
"name": "Descuentos Concedidos",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Diferencias de Cambio perdidas",
|
"name": "Diferencias de Cambio perdidas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Intereses y Gastos Bancarios",
|
"name": "Intereses y Gastos Bancarios",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "GASTOS FINANCIEROS"
|
"name": "GASTOS FINANCIEROS"
|
||||||
@ -853,15 +853,15 @@
|
|||||||
"children": [
|
"children": [
|
||||||
{
|
{
|
||||||
"name": "Costos de lo vendido",
|
"name": "Costos de lo vendido",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Costo de Mercader\u00edas",
|
"name": "Costo de Mercader\u00edas",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Costo de Venta de Bienes de Uso",
|
"name": "Costo de Venta de Bienes de Uso",
|
||||||
"root_type": "Expense"
|
"report_type": "Profit and Loss"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "COSTO DE LO VENDIDO"
|
"name": "COSTO DE LO VENDIDO"
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user