From 2c1ab569a784d482779f29dc2f7085d78e2a5403 Mon Sep 17 00:00:00 2001 From: s-aga-r Date: Wed, 14 Jun 2023 15:29:35 +0530 Subject: [PATCH 01/18] fix: add validation for QI in PR --- .../purchase_receipt/purchase_receipt.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py index 1ac2f35019..387f031380 100644 --- a/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py +++ b/erpnext/stock/doctype/purchase_receipt/purchase_receipt.py @@ -122,6 +122,7 @@ class PurchaseReceipt(BuyingController): self.set_status() self.po_required() + self.validate_items_quality_inspection() self.validate_with_previous_doc() self.validate_uom_is_integer("uom", ["qty", "received_qty"]) self.validate_uom_is_integer("stock_uom", "stock_qty") @@ -195,6 +196,26 @@ class PurchaseReceipt(BuyingController): if not d.purchase_order: frappe.throw(_("Purchase Order number required for Item {0}").format(d.item_code)) + def validate_items_quality_inspection(self): + for item in self.get("items"): + if item.quality_inspection: + qi = frappe.db.get_value( + "Quality Inspection", + item.quality_inspection, + ["reference_type", "reference_name", "item_code"], + as_dict=True, + ) + + if qi.reference_type != self.doctype or qi.reference_name != self.name: + msg = f"""Row #{item.idx}: Please select a valid Quality Inspection with Reference Type + {frappe.bold(self.doctype)} and Reference Name {frappe.bold(self.name)}.""" + frappe.throw(_(msg)) + + if qi.item_code != item.item_code: + msg = f"""Row #{item.idx}: Please select a valid Quality Inspection with Item Code + {frappe.bold(item.item_code)}.""" + frappe.throw(_(msg)) + def get_already_received_qty(self, po, po_detail): qty = frappe.db.sql( """select sum(qty) from `tabPurchase Receipt Item` From 50f83859db037412c07e499fb842eaa71465fd55 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 15 Jun 2023 20:18:17 +0530 Subject: [PATCH 02/18] fix: consider field precision while setting sle actual_qty (backport #35717) (#35720) * fix: consider field precision while setting sle actual_qty (#35717) (cherry picked from commit 3f62e854e58346b86bf510a60712ae1a364a3e9c) # Conflicts: # erpnext/controllers/buying_controller.py * chore: `conflicts` --------- Co-authored-by: Sagar Sharma --- erpnext/controllers/buying_controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/controllers/buying_controller.py b/erpnext/controllers/buying_controller.py index a3a1461c9a..fec494a84c 100644 --- a/erpnext/controllers/buying_controller.py +++ b/erpnext/controllers/buying_controller.py @@ -498,7 +498,7 @@ class BuyingController(SubcontractingController): continue if d.warehouse: - pr_qty = flt(d.qty) * flt(d.conversion_factor) + pr_qty = flt(flt(d.qty) * flt(d.conversion_factor), d.precision("stock_qty")) if pr_qty: @@ -574,7 +574,7 @@ class BuyingController(SubcontractingController): d, { "warehouse": d.rejected_warehouse, - "actual_qty": flt(d.rejected_qty) * flt(d.conversion_factor), + "actual_qty": flt(flt(d.rejected_qty) * flt(d.conversion_factor), d.precision("stock_qty")), "incoming_rate": 0.0, "serial_and_batch_bundle": d.rejected_serial_and_batch_bundle, }, From 07d748c290453696590c723c58ba90736fe4423d Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 16 Jun 2023 14:06:24 +0530 Subject: [PATCH 03/18] perf: Index sales_order_item in Pick list item (#35735) - `get_picked_items_qty` does full table scan - because it also locks, it does full table lock. --- erpnext/stock/doctype/pick_list_item/pick_list_item.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/erpnext/stock/doctype/pick_list_item/pick_list_item.json b/erpnext/stock/doctype/pick_list_item/pick_list_item.json index e6653a804a..2b519f5878 100644 --- a/erpnext/stock/doctype/pick_list_item/pick_list_item.json +++ b/erpnext/stock/doctype/pick_list_item/pick_list_item.json @@ -153,7 +153,8 @@ "fieldtype": "Data", "hidden": 1, "label": "Sales Order Item", - "read_only": 1 + "read_only": 1, + "search_index": 1 }, { "fieldname": "serial_no_and_batch_section", @@ -208,7 +209,7 @@ ], "istable": 1, "links": [], - "modified": "2023-03-12 13:50:22.258100", + "modified": "2023-06-16 14:05:51.719959", "modified_by": "Administrator", "module": "Stock", "name": "Pick List Item", From 4b5454c752dc88576b584429f1c33ba0d279bc59 Mon Sep 17 00:00:00 2001 From: s-aga-r Date: Fri, 16 Jun 2023 15:04:37 +0530 Subject: [PATCH 04/18] fix(ux): set route options for new `SBB` --- .../asset_capitalization/asset_capitalization.js | 11 +++++++++++ erpnext/assets/doctype/asset_repair/asset_repair.js | 10 ++++++++++ erpnext/manufacturing/doctype/job_card/job_card.js | 11 +++++++++++ erpnext/public/js/controllers/transaction.js | 9 +++++++++ .../doctype/installation_note/installation_note.js | 10 ++++++++++ erpnext/selling/doctype/quotation/quotation.js | 11 +++++++++++ erpnext/stock/doctype/pick_list/pick_list.js | 11 +++++++++++ erpnext/stock/doctype/stock_entry/stock_entry.js | 9 +++++++++ .../stock_reconciliation/stock_reconciliation.js | 11 +++++++++++ .../subcontracting_receipt/subcontracting_receipt.js | 10 ++++++++++ 10 files changed, 103 insertions(+) diff --git a/erpnext/assets/doctype/asset_capitalization/asset_capitalization.js b/erpnext/assets/doctype/asset_capitalization/asset_capitalization.js index 96f4438ef7..01fcb11d81 100644 --- a/erpnext/assets/doctype/asset_capitalization/asset_capitalization.js +++ b/erpnext/assets/doctype/asset_capitalization/asset_capitalization.js @@ -112,6 +112,17 @@ erpnext.assets.AssetCapitalization = class AssetCapitalization extends erpnext.s } }; }); + + let sbb_field = me.frm.get_docfield('stock_items', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.item_code, + 'warehouse': row.doc.warehouse, + 'voucher_type': me.frm.doc.doctype, + } + }; + } } target_item_code() { diff --git a/erpnext/assets/doctype/asset_repair/asset_repair.js b/erpnext/assets/doctype/asset_repair/asset_repair.js index b2ab82cbfb..dae993a283 100644 --- a/erpnext/assets/doctype/asset_repair/asset_repair.js +++ b/erpnext/assets/doctype/asset_repair/asset_repair.js @@ -40,6 +40,16 @@ frappe.ui.form.on('Asset Repair', { } } }); + + let sbb_field = frm.get_docfield('stock_items', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.item_code, + 'voucher_type': frm.doc.doctype, + } + }; + } }, refresh: function(frm) { diff --git a/erpnext/manufacturing/doctype/job_card/job_card.js b/erpnext/manufacturing/doctype/job_card/job_card.js index 7d08aca24b..8e9f542362 100644 --- a/erpnext/manufacturing/doctype/job_card/job_card.js +++ b/erpnext/manufacturing/doctype/job_card/job_card.js @@ -23,6 +23,17 @@ frappe.ui.form.on('Job Card', { } }); + let sbb_field = frm.get_docfield('serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = () => { + return { + 'item_code': frm.doc.production_item, + 'warehouse': frm.doc.wip_warehouse, + 'voucher_type': frm.doc.doctype, + } + }; + } + frm.set_indicator_formatter('sub_operation', function(doc) { if (doc.status == "Pending") { diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index 933556774b..0d92683f21 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -134,6 +134,15 @@ erpnext.TransactionController = class TransactionController extends erpnext.taxe } } }); + + let sbb_field = this.frm.get_docfield('items', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.item_code, + } + }; + } } if( diff --git a/erpnext/selling/doctype/installation_note/installation_note.js b/erpnext/selling/doctype/installation_note/installation_note.js index d63060e6e4..dd6f8a8104 100644 --- a/erpnext/selling/doctype/installation_note/installation_note.js +++ b/erpnext/selling/doctype/installation_note/installation_note.js @@ -18,6 +18,16 @@ frappe.ui.form.on('Installation Note', { } } }); + + let sbb_field = frm.get_docfield('items', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.item_code, + 'voucher_type': frm.doc.doctype, + } + }; + } }, onload: function(frm) { if(!frm.doc.status) { diff --git a/erpnext/selling/doctype/quotation/quotation.js b/erpnext/selling/doctype/quotation/quotation.js index 280485a833..67c392cc3f 100644 --- a/erpnext/selling/doctype/quotation/quotation.js +++ b/erpnext/selling/doctype/quotation/quotation.js @@ -46,6 +46,17 @@ frappe.ui.form.on('Quotation', { } } }); + + let sbb_field = frm.get_docfield('packed_items', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.item_code, + 'warehouse': row.doc.warehouse, + 'voucher_type': frm.doc.doctype, + } + }; + } }, refresh: function(frm) { diff --git a/erpnext/stock/doctype/pick_list/pick_list.js b/erpnext/stock/doctype/pick_list/pick_list.js index acbb62d0a0..35c35a6f07 100644 --- a/erpnext/stock/doctype/pick_list/pick_list.js +++ b/erpnext/stock/doctype/pick_list/pick_list.js @@ -65,6 +65,17 @@ frappe.ui.form.on('Pick List', { } } }); + + let sbb_field = frm.get_docfield('locations', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.item_code, + 'warehouse': row.doc.warehouse, + 'voucher_type': frm.doc.doctype, + } + }; + } }, set_item_locations:(frm, save) => { if (!(frm.doc.locations && frm.doc.locations.length)) { diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.js b/erpnext/stock/doctype/stock_entry/stock_entry.js index 3d497ac2eb..403e04ae60 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.js +++ b/erpnext/stock/doctype/stock_entry/stock_entry.js @@ -115,6 +115,15 @@ frappe.ui.form.on('Stock Entry', { } }); + let sbb_field = frm.get_docfield('items', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.item_code, + 'voucher_type': frm.doc.doctype, + } + }; + } frm.add_fetch("bom_no", "inspection_required", "inspection_required"); erpnext.accounts.dimensions.setup_dimension_filters(frm, frm.doctype); diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js index 6afbf01e1e..0664c2929c 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js @@ -42,6 +42,17 @@ frappe.ui.form.on("Stock Reconciliation", { } }); + let sbb_field = frm.get_docfield('items', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.item_code, + 'warehouse': row.doc.warehouse, + 'voucher_type': frm.doc.doctype, + } + }; + } + if (frm.doc.company) { erpnext.queries.setup_queries(frm, "Warehouse", function() { return erpnext.queries.warehouse(frm.doc); diff --git a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js index bd1512b1e3..5ee1f7b716 100644 --- a/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js +++ b/erpnext/subcontracting/doctype/subcontracting_receipt/subcontracting_receipt.js @@ -89,6 +89,16 @@ frappe.ui.form.on('Subcontracting Receipt', { } }); + let sbb_field = frm.get_docfield('supplied_items', 'serial_and_batch_bundle'); + if (sbb_field) { + sbb_field.get_route_options_for_new_doc = (row) => { + return { + 'item_code': row.doc.rm_item_code, + 'voucher_type': frm.doc.doctype, + } + }; + } + let batch_no_field = frm.get_docfield('items', 'batch_no'); if (batch_no_field) { batch_no_field.get_route_options_for_new_doc = function(row) { From 81f916b7d38ea9d78a398ccd2e70a0651973d594 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 16 Jun 2023 15:26:01 +0530 Subject: [PATCH 05/18] perf: Ignore cancelled pick lists while fetching picked items (#35737) --- erpnext/stock/doctype/pick_list/pick_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/stock/doctype/pick_list/pick_list.py b/erpnext/stock/doctype/pick_list/pick_list.py index 4970bf7292..2ed9209fdd 100644 --- a/erpnext/stock/doctype/pick_list/pick_list.py +++ b/erpnext/stock/doctype/pick_list/pick_list.py @@ -384,6 +384,7 @@ class PickList(Document): (pi_item.item_code.isin([x.item_code for x in items])) & ((pi_item.picked_qty > 0) | (pi_item.stock_qty > 0)) & (pi.status != "Completed") + & (pi.status != "Cancelled") & (pi_item.docstatus != 2) ) .groupby( From 433489a9e6822b127b2a62ea2bca0da872c1ab1b Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 16 Jun 2023 15:26:40 +0530 Subject: [PATCH 06/18] perf: Index pick list field in stock entry and DN (#35738) We check if pick list is created against them but there's no index so we end up reading entire table. ``` +------+-------------+------------------+-------+---------------+----------+---------+------+--------+-----------+----------+------------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra | +------+-------------+------------------+-------+---------------+----------+---------+------+--------+-----------+----------+------------+-------------+ | 1 | SIMPLE | tabDelivery Note | index | NULL | modified | 9 | NULL | 207015 | 348940.00 | 100.00 | 0.00 | Using where | +------+-------------+------------------+-------+---------------+----------+---------+------+--------+-----------+----------+------------+-------------+ ``` After ``` +------+-------------+------------------+------+-----------------+-----------------+---------+-------+------+--------+----------+------------+-------------------------------> | id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra > +------+-------------+------------------+------+-----------------+-----------------+---------+-------+------+--------+----------+------------+-------------------------------> | 1 | SIMPLE | tabDelivery Note | ref | pick_list_index | pick_list_index | 563 | const | 1 | 0.00 | 100.00 | 100.00 | Using index condition; Using w> +------+-------------+------------------+------+-----------------+-----------------+---------+-------+------+--------+----------+------------+-------------------------------> ``` --- erpnext/stock/doctype/delivery_note/delivery_note.json | 7 ++++--- erpnext/stock/doctype/stock_entry/stock_entry.json | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/erpnext/stock/doctype/delivery_note/delivery_note.json b/erpnext/stock/doctype/delivery_note/delivery_note.json index 6ee8f205e0..6a9e241444 100644 --- a/erpnext/stock/doctype/delivery_note/delivery_note.json +++ b/erpnext/stock/doctype/delivery_note/delivery_note.json @@ -1223,7 +1223,8 @@ "hidden": 1, "label": "Pick List", "options": "Pick List", - "read_only": 1 + "read_only": 1, + "search_index": 1 }, { "default": "0", @@ -1399,7 +1400,7 @@ "idx": 146, "is_submittable": 1, "links": [], - "modified": "2023-06-03 16:13:25.011487", + "modified": "2023-06-16 14:58:55.066602", "modified_by": "Administrator", "module": "Stock", "name": "Delivery Note", @@ -1469,4 +1470,4 @@ "title_field": "title", "track_changes": 1, "track_seen": 1 -} +} \ No newline at end of file diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.json b/erpnext/stock/doctype/stock_entry/stock_entry.json index 9bf679b895..fe42b1f135 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.json +++ b/erpnext/stock/doctype/stock_entry/stock_entry.json @@ -577,7 +577,8 @@ "fieldtype": "Link", "label": "Pick List", "options": "Pick List", - "read_only": 1 + "read_only": 1, + "search_index": 1 }, { "fieldname": "print_settings_col_break", @@ -677,7 +678,7 @@ "index_web_pages_for_search": 1, "is_submittable": 1, "links": [], - "modified": "2023-06-09 15:46:28.418339", + "modified": "2023-06-16 14:59:10.917235", "modified_by": "Administrator", "module": "Stock", "name": "Stock Entry", @@ -738,7 +739,6 @@ "read": 1, "report": 1, "role": "Stock Manager", - "set_user_permissions": 1, "share": 1, "submit": 1, "write": 1 From 29da1db516b3e07c236b47a60b11de00c8ed9349 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 16 Jun 2023 16:38:30 +0530 Subject: [PATCH 07/18] perf: Duplicate queries for UOM (#35744) This query repeats for every item, UOMs rarely if ever change --- erpnext/stock/doctype/pick_list/pick_list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/stock/doctype/pick_list/pick_list.py b/erpnext/stock/doctype/pick_list/pick_list.py index 2ed9209fdd..922f76cff2 100644 --- a/erpnext/stock/doctype/pick_list/pick_list.py +++ b/erpnext/stock/doctype/pick_list/pick_list.py @@ -40,7 +40,7 @@ class PickList(Document): for location in self.get("locations"): if ( location.sales_order - and frappe.db.get_value("Sales Order", location.sales_order, "per_picked") == 100 + and frappe.db.get_value("Sales Order", location.sales_order, "per_picked", cache=True) == 100 ): frappe.throw( _("Row #{}: item {} has been picked already.").format(location.idx, location.item_code) @@ -498,7 +498,7 @@ def get_items_with_location_and_quantity(item_doc, item_location_map, docstatus) ) qty = stock_qty / (item_doc.conversion_factor or 1) - uom_must_be_whole_number = frappe.db.get_value("UOM", item_doc.uom, "must_be_whole_number") + uom_must_be_whole_number = frappe.get_cached_value("UOM", item_doc.uom, "must_be_whole_number") if uom_must_be_whole_number: qty = floor(qty) stock_qty = qty * item_doc.conversion_factor From 28dd758aa3e7f2cd68f4658d1c4ca6f591c6df07 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Fri, 16 Jun 2023 16:44:56 +0530 Subject: [PATCH 08/18] fix: incorrect stock value for purchase returned with rejected qty --- .../controllers/sales_and_purchase_return.py | 3 ++ .../purchase_receipt/test_purchase_receipt.py | 46 +++++++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/erpnext/controllers/sales_and_purchase_return.py b/erpnext/controllers/sales_and_purchase_return.py index 11cee28a57..818c7894b7 100644 --- a/erpnext/controllers/sales_and_purchase_return.py +++ b/erpnext/controllers/sales_and_purchase_return.py @@ -660,6 +660,9 @@ def get_filters( if reference_voucher_detail_no: filters["voucher_detail_no"] = reference_voucher_detail_no + if item_row and item_row.get("warehouse"): + filters["warehouse"] = item_row.get("warehouse") + return filters diff --git a/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py b/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py index 92235b0845..ddc055656f 100644 --- a/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py +++ b/erpnext/stock/doctype/purchase_receipt/test_purchase_receipt.py @@ -1781,6 +1781,52 @@ class TestPurchaseReceipt(FrappeTestCase): pr.items[0].delivery_note_item = delivery_note_item pr.save() + def test_purchase_return_valuation_with_rejected_qty(self): + item_code = "_Test Item Return Valuation" + create_item(item_code) + + warehouse = create_warehouse("_Test Warehouse Return Valuation") + rejected_warehouse = create_warehouse("_Test Rejected Warehouse Return Valuation") + + # Step 1: Create Purchase Receipt with valuation rate 100 + make_purchase_receipt( + item_code=item_code, + warehouse=warehouse, + qty=10, + rate=100, + rejected_qty=2, + rejected_warehouse=rejected_warehouse, + ) + + # Step 2: Create One more Purchase Receipt with valuation rate 200 + pr = make_purchase_receipt( + item_code=item_code, + warehouse=warehouse, + qty=10, + rate=200, + rejected_qty=2, + rejected_warehouse=rejected_warehouse, + ) + + # Step 3: Create Purchase Return for 2 qty + from erpnext.stock.doctype.purchase_receipt.purchase_receipt import make_purchase_return + + pr_return = make_purchase_return(pr.name) + pr_return.items[0].qty = 2 * -1 + pr_return.items[0].received_qty = 2 * -1 + pr_return.items[0].rejected_qty = 0 + pr_return.items[0].rejected_warehouse = "" + pr_return.save() + pr_return.submit() + + data = frappe.get_all( + "Stock Ledger Entry", + filters={"voucher_no": pr_return.name, "docstatus": 1}, + fields=["SUM(stock_value_difference) as stock_value_difference"], + )[0] + + self.assertEqual(abs(data["stock_value_difference"]), 400.00) + def prepare_data_for_internal_transfer(): from erpnext.accounts.doctype.sales_invoice.test_sales_invoice import create_internal_supplier From 6086d1a99d2ff266eeb75aa0288a568abd00ec81 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Fri, 16 Jun 2023 18:25:58 +0530 Subject: [PATCH 09/18] perf: duplicate queries while checking prevdoc (#35746) These values can't change durning DB transaction AFAIK --- .../accounts/doctype/sales_invoice/sales_invoice.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py index 2075d57a35..7ab1c89397 100644 --- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py @@ -1001,10 +1001,16 @@ class SalesInvoice(SellingController): def check_prev_docstatus(self): for d in self.get("items"): - if d.sales_order and frappe.db.get_value("Sales Order", d.sales_order, "docstatus") != 1: + if ( + d.sales_order + and frappe.db.get_value("Sales Order", d.sales_order, "docstatus", cache=True) != 1 + ): frappe.throw(_("Sales Order {0} is not submitted").format(d.sales_order)) - if d.delivery_note and frappe.db.get_value("Delivery Note", d.delivery_note, "docstatus") != 1: + if ( + d.delivery_note + and frappe.db.get_value("Delivery Note", d.delivery_note, "docstatus", cache=True) != 1 + ): throw(_("Delivery Note {0} is not submitted").format(d.delivery_note)) def make_gl_entries(self, gl_entries=None, from_repost=False): From e3afcc694599ee0624da42c4271f21f611b2f570 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Sat, 17 Jun 2023 12:15:47 +0530 Subject: [PATCH 10/18] fix: cannot start / stop Job Card (backport #35753) (#35755) fix: cannot start / stop jobs (cherry picked from commit 53ec2a9268ca41fd44f58859df02c1f0876ed757) Co-authored-by: Anoop Kurungadam --- erpnext/manufacturing/doctype/job_card/job_card.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/manufacturing/doctype/job_card/job_card.py b/erpnext/manufacturing/doctype/job_card/job_card.py index 496cbfd0a6..2c17568d1b 100644 --- a/erpnext/manufacturing/doctype/job_card/job_card.py +++ b/erpnext/manufacturing/doctype/job_card/job_card.py @@ -161,7 +161,7 @@ class JobCard(Document): self.total_completed_qty = flt(self.total_completed_qty, self.precision("total_completed_qty")) for row in self.sub_operations: - self.c += row.completed_qty + self.total_completed_qty += row.completed_qty def get_overlap_for(self, args, check_next_available_slot=False): production_capacity = 1 From df8c3f0888e06c28da0937190e97c3589d67c44d Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Sat, 17 Jun 2023 12:14:32 +0530 Subject: [PATCH 11/18] fix: validation of job card in stock entry --- erpnext/stock/doctype/stock_entry/stock_entry.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/stock/doctype/stock_entry/stock_entry.py b/erpnext/stock/doctype/stock_entry/stock_entry.py index 517fea5bd1..d9b5503b50 100644 --- a/erpnext/stock/doctype/stock_entry/stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/stock_entry.py @@ -266,10 +266,10 @@ class StockEntry(StockController): return for row in self.items: - if row.job_card_item: + if row.job_card_item or not row.s_warehouse: continue - msg = f"""Row #{0}: The job card item reference + msg = f"""Row #{row.idx}: The job card item reference is missing. Kindly create the stock entry from the job card. If you have added the row manually then you won't be able to add job card item reference.""" From 0444b9880213c5f67ba79df95a48e46b44a4bc5a Mon Sep 17 00:00:00 2001 From: David Arnold Date: Sun, 18 Jun 2023 11:47:31 -0500 Subject: [PATCH 12/18] feat: add verified chart of accounts for colombia in two variants (#34508) This information is scraped from the in Colombia widely trusted site dedicated to the plan unico de cuentas (PUC): puc.com.co feat(accounts): add account_type overlay to colombian CoA Add account_type overlay with a most significant number matching strategy and a hand-crafted dictionary based on the erpnext documentation and the corresponding account description from puc.com.co Script used for scraping: https://gist.github.com/blaggacao/d45a454d27556f41fef88833937088f1 --- .../co_vauxoo_mx_chart_template.json | 3008 ------ .../verified/co_plan_unico_de_cuentas.json | 9400 +++++++++++++++++ .../co_plan_unico_de_cuentas_simple.json | 1746 +++ 3 files changed, 11146 insertions(+), 3008 deletions(-) delete mode 100644 erpnext/accounts/doctype/account/chart_of_accounts/unverified/co_vauxoo_mx_chart_template.json create mode 100644 erpnext/accounts/doctype/account/chart_of_accounts/verified/co_plan_unico_de_cuentas.json create mode 100644 erpnext/accounts/doctype/account/chart_of_accounts/verified/co_plan_unico_de_cuentas_simple.json diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/unverified/co_vauxoo_mx_chart_template.json b/erpnext/accounts/doctype/account/chart_of_accounts/unverified/co_vauxoo_mx_chart_template.json deleted file mode 100644 index aa7d5519fd..0000000000 --- a/erpnext/accounts/doctype/account/chart_of_accounts/unverified/co_vauxoo_mx_chart_template.json +++ /dev/null @@ -1,3008 +0,0 @@ -{ - "country_code": "co", - "name": "Colombia - Unique Account Chart - PUC", - "tree": { - "ACTIVO": { - "DEUDORES": { - "ANTICIPO DE IMPUESTOS Y CONTRIBUCIONES O SALDOS A FAVOR": { - "ANTICIPO DE IMPUESTOS DE INDUSTRIA Y COMERCIO": {}, - "ANTICIPO DE IMPUESTOS DE RENTA Y COMPLEMENTARIOS": {}, - "CONTRIBUCIONES": {}, - "IMPUESTO A LAS VENTAS RETENIDO": { - " IMPUESTO A LAS VENTAS RETENIDO": {} - }, - "IMPUESTO DE INDUSTRIA Y COMERCIO RETENIDO": {}, - "IMPUESTOS DESCONTABLES": {}, - "OTROS": {}, - "RETENCION EN LA FUENTE": {}, - "SOBRANTES EN LIQUIDACION PRIVADA DE IMPUESTOS": {} - }, - "ANTICIPOS Y AVANCES": { - "A AGENTES": { - "A AGENTES": {} - }, - "A CONCESIONARIOS": {}, - "A CONTRATISTAS": {}, - "A PROVEEDORES": {}, - "A TRABAJADORES": {}, - "AJUSTES POR INFLACION": {}, - "DE ADJUDICACIONES": {}, - "OTROS": {} - }, - "APORTES POR COBRAR": {}, - "CLIENTES": { - "DEL EXTERIOR": {}, - "DEUDORES DEL SISTEMA": {}, - "NACIONALES": { - "DEUDORES CLIENTES NACIONALES": {} - } - }, - "CUENTAS CORRIENTES COMERCIALES": { - "ACCIONISTAS O SOCIOS": {}, - "CASA MATRIZ": {}, - "COMPANIAS VINCULADAS": {}, - "OTRAS": {}, - "PARTICULARES": {} - }, - "CUENTAS DE OPERACION CONJUNTA": {}, - "CUENTAS POR COBRAR A CASA MATRIZ": { - "PAGOS A NOMBRE DE CASA MATRIZ": {}, - "PRESTAMOS": {}, - "VALORES RECIBIDOS POR CASA MATRIZ": {}, - "VENTAS": {} - }, - "CUENTAS POR COBRAR A DIRECTORES": {}, - "CUENTAS POR COBRAR A SOCIOS Y ACCIONISTAS": { - "A ACCIONISTAS": { - "ALFONSO SOTO": {}, - "DOUGLAS CANELON": {}, - "LIGIA MARINA CANELON CASTELLANOS": {} - }, - "A SOCIOS": { - "A SOCIOS": {} - } - }, - "CUENTAS POR COBRAR A TRABAJADORES": { - "CALAMIDAD DOMESTICA": {}, - "EDUCACION": {}, - "MEDICOS, ODONTOLOGICOS Y SIMILARES": {}, - "OTROS": {}, - "RESPONSABILIDADES": {}, - "VEHICULOS": {}, - "VIVIENDA": {} - }, - "CUENTAS POR COBRAR A VINCULADOS ECONOMICOS": { - "FILIALES": {}, - "SUBSIDIARIAS": {}, - "SUCURSALES": {} - }, - "DEPOSITOS": { - "EN GARANTIA": {}, - "OTROS": {}, - "PARA ADQUISICION DE ACCIONES, CUOTAS O DERECHOS SOCIALES": {}, - "PARA CONTRATOS": {}, - "PARA IMPORTACIONES": {}, - "PARA JUICIOS EJECUTIVOS": {}, - "PARA RESPONSABILIDADES": {}, - "PARA SERVICIOS": {} - }, - "DERECHOS DE RECOMPRA DE CARTERA NEGOCIADA": {}, - "DEUDAS DE DIFICIL COBRO": {}, - "DEUDORES VARIOS": { - "COMISIONISTAS DE BOLSAS": {}, - "CUENTAS POR COBRAR DE TERCEROS": {}, - "DEPOSITARIOS": {}, - "FONDO DE INVERSION": {}, - "FONDOS DE INVERSION SOCIAL": {}, - "OTROS": {}, - "PAGOS POR CUENTA DE TERCEROS": {} - }, - "INGRESOS POR COBRAR": { - "ARRENDAMIENTOS": {}, - "CERT POR COBRAR": {}, - "COMISIONES": {}, - "DIVIDENDOS Y/O PARTICIPACIONES": {}, - "HONORARIOS": {}, - "INTERESES": {}, - "OTROS": { - "Generica a Cobrar": {} - }, - "SERVICIOS": {} - }, - "PRESTAMOS A PARTICULARES": { - "CON GARANTIA PERSONAL": {}, - "CON GARANTIA REAL": {} - }, - "PROMESAS DE COMPRA VENTA": { - "DE BIENES RAICES": {}, - "DE FLOTA Y EQUIPO AEREO": {}, - "DE FLOTA Y EQUIPO DE TRANSPORTE": {}, - "DE FLOTA Y EQUIPO FERREO": {}, - "DE FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "DE MAQUINARIA Y EQUIPO": {}, - "DE OTROS BIENES": {}, - "DE SEMOVIENTES": {} - }, - "PROVISIONES": { - "ANTICIPOS Y AVANCES": {}, - "CLIENTES": {}, - "CUENTAS CORRIENTES COMERCIALES": {}, - "CUENTAS DE OPERACION CONJUNTA": {}, - "CUENTAS POR COBRAR A CASA MATRIZ": {}, - "CUENTAS POR COBRAR A SOCIOS Y ACCIONISTAS": {}, - "CUENTAS POR COBRAR A TRABAJADORES": {}, - "CUENTAS POR COBRAR A VINCULADOS ECONOMICOS": {}, - "DEPOSITOS": {}, - "DERECHOS DE RECOMPRA DE CARTERA NEGOCIADA": {}, - "DEUDORES VARIOS": {}, - "INGRESOS POR COBRAR": {}, - "PRESTAMOS A PARTICULARES": {}, - "PROMESAS DE COMPRAVENTA": {}, - "RECLAMACIONES": {}, - "RETENCION SOBRE CONTRATOS": {} - }, - "RECLAMACIONES": { - "A COMPANIAS ASEGURADORAS": {}, - "A TRANSPORTADORES": {}, - "OTRAS": {}, - "POR TIQUETES AEREOS": {} - }, - "RETENCION SOBRE CONTRATOS": { - "DE CONSTRUCCION": {}, - "DE PRESTACION DE SERVICIOS": {}, - "IMPUESTO A LAS VENTAS RETENIDO": { - "IMPUESTO A LAS VENTAS RETENIDO": {} - }, - "IMPUESTO DE INDUSTRIA Y COMERCIO RETENIDO": { - "IMPUESTO DE INDUSTRIA Y COMERCIO RETENIDO": {} - }, - "OTROS": { - "OTROS": {} - }, - "RETEFTE SOBRE COMPRA DE LUBRICANTES": { - "RETEFTE SOBRE COMPRA DE LUBRICANTES": {} - } - } - }, - "DIFERIDOS": { - "AMORTIZACION ACUMULADA": { - "AJUSTES POR INFLACION": {}, - "COSTOS DE EXPLORACION POR AMORTIZAR": {}, - "COSTOS DE EXPLOTACION Y DESARROLLO": {} - }, - "CARGOS DIFERIDOS": { - "AJUSTES POR INFLACION": {}, - "CONCURSOS Y LICITACIONES": {}, - "CONTRIBUCIONES Y AFILIACIONES": {}, - "CUBIERTERIA": {}, - "DOTACION Y SUMINISTRO A TRABAJADORES": {}, - "ELEMENTOS DE ASEO Y CAFETERIA": {}, - "ELEMENTOS DE ROPERIA Y LENCERIA": {}, - "ENTRENAMIENTO DE PERSONAL": {}, - "ESTUDIOS, INVESTIGACIONES Y PROYECTOS": {}, - "FERIAS Y EXPOSICIONES": {}, - "IMPUESTO DE RENTA DIFERIDO ?DEBITOS? POR DIFERENCIAS TEMPORALES": {}, - "INSTRUMENTAL QUIRURGICO": {}, - "LICENCIAS": { - "LICENCIAS": {} - }, - "LOZA Y CRISTALERIA": {}, - "MEJORAS A PROPIEDADES AJENAS": {}, - "MOLDES Y TROQUELES": {}, - "ORGANIZACION Y PREOPERATIVOS": {}, - "OTROS": {}, - "PLATERIA": {}, - "PROGRAMAS PARA COMPUTADOR (SOFTWARE)": {}, - "PUBLICIDAD, PROPAGANDA Y PROMOCION": {}, - "REMODELACIONES": {}, - "UTILES Y PAPELERIA": { - "UTILES Y PAPELERIA": {} - } - }, - "CARGOS POR CORRECCION MONETARIA DIFERIDA": {}, - "COSTOS DE EXPLORACION POR AMORTIZAR": { - "AJUSTES POR INFLACION": {}, - "OTROS COSTOS DE EXPLORACION": {}, - "POZOS NO COMERCIALES": {}, - "POZOS SECOS": {} - }, - "COSTOS DE EXPLOTACION Y DESARROLLO": { - "AJUSTES POR INFLACION": {}, - "FACILIDADES DE PRODUCCION": {}, - "PERFORACION Y EXPLOTACION": {}, - "PERFORACIONES CAMPOS EN DESARROLLO": {}, - "SERVICIO A POZOS": {} - }, - "GASTOS PAGADOS POR ANTICIPADO": { - "ARRENDAMIENTOS": {}, - "BODEGAJES": {}, - "COMISIONES": {}, - "HONORARIOS": {}, - "INTERESES": {}, - "MANTENIMIENTO EQUIPOS": {}, - "OTROS": {}, - "SEGUROS Y FIANZAS": {}, - "SERVICIOS": {}, - "SUSCRIPCIONES": {} - } - }, - "DISPONIBLE": { - "BANCOS": { - "MONEDA EXTRANJERA": {}, - "MONEDA NACIONAL": {} - }, - "CAJA": { - "CAJA GENERAL": { - "CAJA GENERAL": {} - }, - "CAJAS MENORES": { - "CAJAS MENORES": {} - }, - "MONEDA EXTRANJERA": {} - }, - "CUENTAS DE AHORRO": { - "BANCOS": {}, - "CORPORACIONES DE AHORRO Y VIVIENDA": {}, - "ORGANISMOS COOPERATIVOS FINANCIEROS": {} - }, - "FONDOS": { - "DE AMORTIZACION MONEDA EXTRANJERA": {}, - "DE AMORTIZACION MONEDA NACIONAL": {}, - "ESPECIALES MONEDA EXTRANJERA": {}, - "ESPECIALES MONEDA NACIONAL": {}, - "ROTATORIOS MONEDA EXTRANJERA": {}, - "ROTATORIOS MONEDA NACIONAL": {} - }, - "REMESAS EN TRANSITO": { - "MONEDA EXTRANJERA": {}, - "MONEDA NACIONAL": {} - } - }, - "INTANGIBLES": { - "CONCESIONES Y FRANQUICIAS": { - "AJUSTES POR INFLACION": {}, - "CONCESIONES": {}, - "FRANQUICIAS": {} - }, - "CREDITO MERCANTIL": { - "ADQUIRIDO O COMPRADO": {}, - "AJUSTES POR INFLACION": {}, - "FORMADO O ESTIMADO": {} - }, - "DEPRECIACION Y/O AMORTIZACION ACUMULADA": { - "AJUSTES POR INFLACION": {}, - "CONCESIONES Y FRANQUICIAS": {}, - "CREDITO MERCANTIL": {}, - "DERECHOS": {}, - "KNOW HOW": {}, - "LICENCIAS": {}, - "MARCAS": {}, - "PATENTES": {} - }, - "DERECHOS": { - "AJUSTES POR INFLACION": {}, - "DE EXHIBICION - PELICULAS": {}, - "DERECHOS DE AUTOR": {}, - "EN BIENES RECIBIDOS EN ARRENDAMIENTO FINANCIERO (LEASING)": {}, - "EN FIDEICOMISOS DE ADMINISTRACION": {}, - "EN FIDEICOMISOS DE GARANTIA": {}, - "EN FIDEICOMISOS INMOBILIARIOS": {}, - "OTROS": {}, - "PUESTO DE BOLSA": {} - }, - "KNOW HOW": { - "AJUSTES POR INFLACION": {} - }, - "LICENCIAS": { - "AJUSTES POR INFLACION": {} - }, - "MARCAS": { - "ADQUIRIDAS": {}, - "AJUSTES POR INFLACION": {}, - "FORMADAS": {} - }, - "PATENTES": { - "ADQUIRIDAS": {}, - "AJUSTES POR INFLACION": {}, - "FORMADAS": {} - }, - "PROVISIONES": {} - }, - "INVENTARIOS": { - "BIENES RAICES PARA LA VENTA": { - "AJUSTES POR INFLACION": {} - }, - "CONTRATOS EN EJECUCION": { - "AJUSTES POR INFLACION": {} - }, - "CULTIVOS EN DESARROLLO": { - "AJUSTES POR INFLACION": {} - }, - "ENVASES Y EMPAQUES": { - "AJUSTES POR INFLACION": {} - }, - "INVENTARIOS EN TRANSITO": { - "AJUSTES POR INFLACION": {} - }, - "MATERIALES, REPUESTOS Y ACCESORIOS": { - "AJUSTES POR INFLACION": {} - }, - "MATERIAS PRIMAS": { - "AJUSTES POR INFLACION": {} - }, - "MERCANCIAS NO FABRICADAS POR LA EMPRESA": { - "AJUSTES POR INFLACION": {} - }, - "OBRAS DE CONSTRUCCION EN CURSO": { - "AJUSTES POR INFLACION": {} - }, - "OBRAS DE URBANISMO": { - "AJUSTES POR INFLACION": {} - }, - "PLANTACIONES AGRICOLAS": { - "AJUSTES POR INFLACION": {} - }, - "PRODUCTOS EN PROCESO": { - "AJUSTES POR INFLACION": {} - }, - "PRODUCTOS TERMINADOS": { - "AJUSTES POR INFLACION": {}, - "PRODUCTOS AGRICOLAS Y FORESTALES": {}, - "PRODUCTOS DE PESCA": {}, - "PRODUCTOS EXTRAIDOS Y/O PROCESADOS": {}, - "PRODUCTOS MANUFACTURADOS": {}, - "SUBPRODUCTOS": {} - }, - "PROVISIONES": { - "LIFO": {}, - "PARA DIFERENCIA DE INVENTARIO FISICO": {}, - "PARA OBSOLESCENCIA": {}, - "PARA PERDIDAS DE INVENTARIOS": {} - }, - "SEMOVIENTES": { - "AJUSTES POR INFLACION": {} - }, - "TERRENOS": { - "AJUSTES POR INFLACION": {}, - "POR URBANIZAR": {}, - "URBANIZADOS POR CONSTRUIR": {} - } - }, - "INVERSIONES": { - "ACCIONES": { - "ACTIVIDAD FINANCIERA": {}, - "ACTIVIDADES INMOBILIARIAS, EMPRESARIALES Y DE ALQUILER": {}, - "AGRICULTURA, GANADERIA, CAZA Y SILVICULTURA": {}, - "AJUSTES POR INFLACION": {}, - "COMERCIO AL POR MAYOR Y AL POR MENOR": {}, - "CONSTRUCCION": {}, - "ENSENANZA": {}, - "EXPLOTACION DE MINAS Y CANTERAS": {}, - "HOTELES Y RESTAURANTES": {}, - "INDUSTRIA MANUFACTURERA": {}, - "OTRAS ACTIVIDADES DE SERVICIOS COMUNITARIOS, SOCIALES Y PERSONALES": {}, - "PESCA": {}, - "SERVICIOS SOCIALES Y DE SALUD": {}, - "SUMINISTRO DE ELECTRICIDAD, GAS Y AGUA": {}, - "TRANSPORTE, ALMACENAMIENTO Y COMUNICACIONES": {} - }, - "ACEPTACIONES BANCARIAS O FINANCIERAS": { - "BANCOS COMERCIALES": {}, - "COMPANIAS DE FINANCIAMIENTO COMERCIAL": {}, - "CORPORACIONES FINANCIERAS": {}, - "OTRAS": {} - }, - "BONOS": { - "BONOS CONVERTIBLES EN ACCIONES": {}, - "BONOS ORDINARIOS": {}, - "BONOS PUBLICOS MONEDA EXTRANJERA": {}, - "BONOS PUBLICOS MONEDA NACIONAL": {}, - "OTROS": {} - }, - "CEDULAS": { - "CEDULAS DE CAPITALIZACION": {}, - "CEDULAS DE INVERSION": {}, - "CEDULAS HIPOTECARIAS": {}, - "OTRAS": {} - }, - "CERTIFICADOS": { - "CERTIFICADOS CAFETEROS VALORIZABLES": {}, - "CERTIFICADOS DE AHORRO DE VALOR CONSTANTE (CAVC)": {}, - "CERTIFICADOS DE CAMBIO": {}, - "CERTIFICADOS DE DEPOSITO A TERMINO (CDT)": {}, - "CERTIFICADOS DE DEPOSITO DE AHORRO": {}, - "CERTIFICADOS DE DESARROLLO TURISTICO": {}, - "CERTIFICADOS DE INVERSION FORESTAL (CIF)": {}, - "CERTIFICADOS DE REEMBOLSO TRIBUTARIO (CERT)": {}, - "CERTIFICADOS ELECTRICOS VALORIZABLES (CEV)": {}, - "OTROS": {} - }, - "CUENTAS EN PARTICIPACION": { - "AJUSTES POR INFLACION": {} - }, - "CUOTAS O PARTES DE INTERES SOCIAL": { - "ACTIVIDAD FINANCIERA": {}, - "ACTIVIDADES INMOBILIARIAS, EMPRESARIALES Y DE ALQUILER": {}, - "AGRICULTURA, GANADERIA, CAZA Y SILVICULTURA": {}, - "AJUSTES POR INFLACION": {}, - "COMERCIO AL POR MAYOR Y AL POR MENOR": {}, - "CONSTRUCCION": {}, - "ENSENANZA": {}, - "EXPLOTACION DE MINAS Y CANTERAS": {}, - "HOTELES Y RESTAURANTES": {}, - "INDUSTRIA MANUFACTURERA": {}, - "OTRAS ACTIVIDADES DE SERVICIOS COMUNITARIOS, SOCIALES Y PERSONALES": {}, - "PESCA": {}, - "SERVICIOS SOCIALES Y DE SALUD": {}, - "SUMINISTRO DE ELECTRICIDAD, GAS Y AGUA": {}, - "TRANSPORTE, ALMACENAMIENTO Y COMUNICACIONES": {} - }, - "DERECHOS DE RECOMPRA DE INVERSIONES NEGOCIADAS (REPOS)": { - "ACCIONES": {}, - "ACEPTACIONES BANCARIAS O FINANCIERAS": {}, - "AJUSTES POR INFLACION": {}, - "BONOS": {}, - "CEDULAS": {}, - "CERTIFICADOS": {}, - "CUOTAS O PARTES DE INTERES SOCIAL": {}, - "OTROS": {}, - "PAPELES COMERCIALES": {}, - "TITULOS": {} - }, - "DERECHOS FIDUCIARIOS": { - "FIDEICOMISOS DE INVERSION MONEDA EXTRANJERA": {}, - "FIDEICOMISOS DE INVERSION MONEDA NACIONAL": {} - }, - "OBLIGATORIAS": { - "BONOS DE FINANCIAMIENTO ESPECIAL": {}, - "BONOS DE FINANCIAMIENTO PRESUPUESTAL": {}, - "BONOS PARA DESARROLLO SOCIAL Y SEGURIDAD INTERNA (BDSI)": {}, - "OTRAS": {} - }, - "OTRAS INVERSIONES": { - "ACCIONES O DERECHOS EN CLUBES DEPORTIVOS": {}, - "AJUSTES POR INFLACION": {}, - "APORTES EN COOPERATIVAS": {}, - "BONOS EN COLEGIOS": {}, - "DERECHOS EN CLUBES SOCIALES": {}, - "DIVERSAS": {} - }, - "PAPELES COMERCIALES": { - "EMPRESAS COMERCIALES": {}, - "EMPRESAS DE SERVICIOS": {}, - "EMPRESAS INDUSTRIALES": {} - }, - "PROVISIONES": { - "ACCIONES": {}, - "ACEPTACIONES BANCARIAS O FINANCIERAS": {}, - "BONOS": {}, - "CEDULAS": {}, - "CERTIFICADOS": {}, - "CUENTAS EN PARTICIPACION": {}, - "CUOTAS O PARTES DE INTERES SOCIAL": {}, - "DERECHOS DE RECOMPRA DE INVERSIONES NEGOCIADAS": {}, - "DERECHOS FIDUCIARIOS": {}, - "OBLIGATORIAS": {}, - "OTRAS INVERSIONES": {}, - "PAPELES COMERCIALES": {}, - "TITULOS": {} - }, - "TITULOS": { - "OTROS": {}, - "TESOROS": {}, - "TITULOS CANJEABLES POR CERTIFICADOS DE CAMBIO": {}, - "TITULOS DE AHORRO CAFETERO (TAC)": {}, - "TITULOS DE AHORRO EDUCATIVO (TAE)": {}, - "TITULOS DE AHORRO NACIONAL (TAN)": {}, - "TITULOS DE CREDITO DE FOMENTO": {}, - "TITULOS DE DESARROLLO AGROPECUARIO": {}, - "TITULOS DE DEVOLUCION DE IMPUESTOS NACIONALES (TIDIS)": {}, - "TITULOS DE PARTICIPACION": {}, - "TITULOS DE TESORERIA (TES)": {}, - "TITULOS ENERGETICOS DE RENTABILIDAD CRECIENTE (TER)": {}, - "TITULOS FINANCIEROS AGROINDUSTRIALES (TFA)": {}, - "TITULOS FINANCIEROS INDUSTRIALES Y COMERCIALES": {}, - "TITULOS INMOBILIARIOS": {} - } - }, - "OTROS ACTIVOS": { - "BIENES DE ARTE Y CULTURA": { - "AJUSTES POR INFLACION": {}, - "BIBLIOTECAS": {}, - "OBRAS DE ARTE": {}, - "OTROS": {} - }, - "DIVERSOS": { - "AJUSTES POR INFLACION": {}, - "AMORTIZACION ACUMULADA DE BIENES ENTREGADOS EN COMODATO (CR)": {}, - "BIENES ENTREGADOS EN COMODATO": {}, - "BIENES RECIBIDOS EN PAGO": {}, - "DERECHOS SUCESORALES": {}, - "ESTAMPILLAS": {}, - "MAQUINAS PORTEADORAS": {}, - "OTROS": { - "OTROS": {} - } - }, - "PROVISIONES": { - "BIENES DE ARTE Y CULTURA": {}, - "DIVERSOS": {} - } - }, - "PROPIEDADES, PLANTA Y EQUIPO": { - "ACUEDUCTOS, PLANTAS Y REDES": { - "ACUEDUCTO, ACEQUIAS Y CANALIZACIONES": {}, - "AJUSTES POR INFLACION": {}, - "GASODUCTOS": {}, - "INSTALACIONES PARA AGUA Y ENERGIA": {}, - "INSTALACIONES Y EQUIPO DE BOMBEO": {}, - "OLEODUCTOS": {}, - "OTROS": {}, - "PLANTAS DE DISTRIBUCION": {}, - "PLANTAS DE GENERACION A GAS": {}, - "PLANTAS DE GENERACION DIESEL, GASOLINA Y PETROLEO": {}, - "PLANTAS DE GENERACION HIDRAULICA": {}, - "PLANTAS DE GENERACION TERMICA": {}, - "PLANTAS DE TRANSMISION Y SUBESTACIONES": {}, - "PLANTAS DE TRATAMIENTO": {}, - "PLANTAS DESHIDRATADORAS": {}, - "POLIDUCTOS": {}, - "REDES ALIMENTACION DE GAS": {}, - "REDES DE AIRE": {}, - "REDES DE DISTRIBUCION": {}, - "REDES DE DISTRIBUCION DE VAPOR": {}, - "REDES DE RECOLECCION DE AGUAS NEGRAS": {}, - "REDES EXTERNAS DE TELEFONIA": {} - }, - "AGOTAMIENTO ACUMULADO": { - "AJUSTES POR INFLACION": {}, - "MINAS Y CANTERAS": {}, - "POZOS ARTESIANOS": {}, - "YACIMIENTOS": {} - }, - "AMORTIZACION ACUMULADA": { - "AJUSTES POR INFLACION": {}, - "PLANTACIONES AGRICOLAS Y FORESTALES": {}, - "SEMOVIENTES": {}, - "VIAS DE COMUNICACION": {} - }, - "ARMAMENTO DE VIGILANCIA": { - "AJUSTES POR INFLACION": {} - }, - "CONSTRUCCIONES EN CURSO": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AJUSTES POR INFLACION": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "POZOS ARTESIANOS": {}, - "PROYECTOS DE DESARROLLO": {}, - "PROYECTOS DE EXPLORACION": {}, - "VIAS DE COMUNICACION": {} - }, - "CONSTRUCCIONES Y EDIFICACIONES": { - "AJUSTES POR INFLACION": {}, - "ALMACENES": {}, - "BODEGAS": {}, - "CAFETERIA Y CASINOS": {}, - "CASETAS Y CAMPAMENTOS": {}, - "EDIFICIOS": {}, - "FABRICAS Y PLANTAS INDUSTRIALES": {}, - "HANGARES": {}, - "INSTALACIONES AGROPECUARIAS": {}, - "INVERNADEROS": {}, - "OFICINAS": {}, - "OTROS": {}, - "PARQUEADEROS, GARAJES Y DEPOSITOS": {}, - "SALAS DE EXHIBICION Y VENTAS": {}, - "SILOS": {}, - "TERMINAL DE BUSES Y TAXIS": {}, - "TERMINAL FERREO": {}, - "TERMINAL MARITIMO": {}, - "VIVIENDAS PARA EMPLEADOS Y OBREROS": {} - }, - "DEPRECIACION ACUMULADA": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AJUSTES POR INFLACION": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {} - }, - "DEPRECIACION DIFERIDA": { - "AJUSTES POR INFLACION": {}, - "DEFECTO FISCAL SOBRE LA CONTABLE (CR)": {}, - "EXCESO FISCAL SOBRE LA CONTABLE": {} - }, - "ENVASES Y EMPAQUES": { - "AJUSTES POR INFLACION": {} - }, - "EQUIPO DE COMPUTACION Y COMUNICACION": { - "AJUSTES POR INFLACION": {}, - "EQUIPOS DE PROCESAMIENTO DE DATOS": { - "EQUIPOS DE PROCESAMIENTO DE DATOS": {} - }, - "EQUIPOS DE RADIO": {}, - "EQUIPOS DE TELECOMUNICACIONES": { - "EQUIPOS DE TELECOMUNICACIONES": {} - }, - "LINEAS TELEFONICAS": {}, - "OTROS": {}, - "SATELITES Y ANTENAS": {} - }, - "EQUIPO DE HOTELES Y RESTAURANTES": { - "AJUSTES POR INFLACION": {}, - "DE COMESTIBLES Y BEBIDAS": {}, - "DE HABITACIONES": {}, - "OTROS": {} - }, - "EQUIPO DE OFICINA": { - "AJUSTES POR INFLACION": {}, - "EQUIPOS": { - "EQUIPOS": {} - }, - "MUEBLES Y ENSERES": { - "MUEBLES Y ENSERES": {} - }, - "OTROS": {} - }, - "EQUIPO MEDICO-CIENTIFICO": { - "AJUSTES POR INFLACION": {}, - "INSTRUMENTAL": {}, - "LABORATORIO": {}, - "MEDICO": {}, - "ODONTOLOGICO": {}, - "OTROS": {} - }, - "FLOTA Y EQUIPO AEREO": { - "AJUSTES POR INFLACION": {}, - "AVIONES": {}, - "AVIONETAS": {}, - "EQUIPOS DE VUELO": {}, - "HELICOPTEROS": {}, - "MANUALES DE ENTRENAMIENTO PERSONAL TECNICO": {}, - "OTROS": {}, - "TURBINAS Y MOTORES": {} - }, - "FLOTA Y EQUIPO DE TRANSPORTE": { - "AJUSTES POR INFLACION": {}, - "AUTOS, CAMIONETAS Y CAMPEROS": {}, - "BANDAS TRANSPORTADORAS": {}, - "BICICLETAS": {}, - "BUSES Y BUSETAS": {}, - "CAMIONES, VOLQUETAS Y FURGONES": {}, - "ESTIBAS Y CARRETAS": {}, - "MONTACARGAS": {}, - "MOTOCICLETAS": {}, - "OTROS": {}, - "PALAS Y GRUAS": {}, - "RECOLECTORES Y CONTENEDORES": {}, - "TRACTOMULAS Y REMOLQUES": {} - }, - "FLOTA Y EQUIPO FERREO": { - "AJUSTES POR INFLACION": {}, - "LOCOMOTORAS": {}, - "OTROS": {}, - "REDES FERREAS": {}, - "VAGONES": {} - }, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": { - "AJUSTES POR INFLACION": {}, - "AMARRES": {}, - "BOTES": {}, - "BOYAS": {}, - "BUQUES": {}, - "CONTENEDORES Y CHASISES": {}, - "GABARRAS": {}, - "LANCHAS": {}, - "OTROS": {}, - "REMOLCADORAS": {} - }, - "MAQUINARIA Y EQUIPO": { - "AJUSTES POR INFLACION": {} - }, - "MAQUINARIA Y EQUIPOS EN MONTAJE": { - "AJUSTES POR INFLACION": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "PLANTAS Y REDES": {} - }, - "MATERIALES PROYECTOS PETROLEROS": { - "AJUSTES POR INFLACION": {}, - "COSTOS DE IMPORTACION MATERIALES": {}, - "PROYECTOS DE CONSTRUCCION": {}, - "TUBERIAS Y EQUIPO": {} - }, - "MINAS Y CANTERAS": { - "AJUSTES POR INFLACION": {}, - "CANTERAS": {}, - "MINAS": {} - }, - "PLANTACIONES AGRICOLAS Y FORESTALES": { - "AJUSTES POR INFLACION": {}, - "CULTIVOS AMORTIZABLES": {}, - "CULTIVOS EN DESARROLLO": {} - }, - "POZOS ARTESIANOS": { - "AJUSTES POR INFLACION": {} - }, - "PROPIEDADES, PLANTA Y EQUIPO EN TRANSITO": { - "AJUSTES POR INFLACION": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "PLANTAS Y REDES": {}, - "SEMOVIENTES": {} - }, - "PROVISIONES": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES EN CURSO": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA EN MONTAJE": {}, - "MAQUINARIA Y EQUIPO": {}, - "MATERIALES PROYECTOS PETROLEROS": {}, - "MINAS Y CANTERAS": {}, - "PLANTACIONES AGRICOLAS Y FORESTALES": {}, - "POZOS ARTESIANOS": {}, - "PROPIEDADES, PLANTA Y EQUIPO EN TRANSITO": {}, - "SEMOVIENTES": {}, - "TERRENOS": {}, - "VIAS DE COMUNICACION": {}, - "YACIMIENTOS": {} - }, - "SEMOVIENTES": { - "AJUSTES POR INFLACION": {} - }, - "TERRENOS": { - "AJUSTES POR INFLACION": {}, - "RURALES": {}, - "URBANOS": {} - }, - "VIAS DE COMUNICACION": { - "AERODROMOS": {}, - "AJUSTES POR INFLACION": {}, - "CALLES": {}, - "OTROS": {}, - "PAVIMENTACION Y PATIOS": {}, - "PUENTES": {}, - "VIAS": {} - }, - "YACIMIENTOS": { - "AJUSTES POR INFLACION": {} - } - }, - "VALORIZACIONES": { - "DE INVERSIONES": { - "ACCIONES": {}, - "CUOTAS O PARTES DE INTERES SOCIAL": {}, - "DERECHOS FIDUCIARIOS": {} - }, - "DE OTROS ACTIVOS": { - "BIENES DE ARTE Y CULTURA": {}, - "BIENES ENTREGADOS EN COMODATO": {}, - "BIENES RECIBIDOS EN PAGO": {}, - "INVENTARIO DE SEMOVIENTES": {} - }, - "DE PROPIEDADES, PLANTA Y EQUIPO": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "MATERIALES PROYECTOS PETROLEROS": {}, - "MINAS Y CANTERAS": {}, - "PLANTACIONES AGRICOLAS Y FORESTALES": {}, - "POZOS ARTESIANOS": {}, - "SEMOVIENTES": {}, - "TERRENOS": {}, - "VIAS DE COMUNICACION": {}, - "YACIMIENTOS": {} - } - }, - "root_type": "Asset" - }, - "COSTOS DE PRODUCCION O DE OPERACION": { - "CONTRATOS DE SERVICIOS": {}, - "COSTOS INDIRECTOS": {}, - "MANO DE OBRA DIRECTA": {}, - "MATERIA PRIMA": {}, - "root_type": "Expense" - }, - "COSTOS DE VENTAS": { - "COMPRAS": { - "COMPRA DE ENERGIA": { - "AJUSTES POR INFLACION": {} - }, - "DE MATERIALES INDIRECTOS": { - "AJUSTES POR INFLACION": {} - }, - "DE MATERIAS PRIMAS": { - "AJUSTES POR INFLACION": {} - }, - "DE MERCANCIAS": { - "AJUSTES POR INFLACION": {} - }, - "DEVOLUCIONES EN COMPRAS (CR)": { - "AJUSTES POR INFLACION": {} - } - }, - "COSTO DE VENTAS Y DE PRESTACION DE SERVICIOS": { - "ACTIVIDAD FINANCIERA": { - "AJUSTES POR INFLACION": {}, - "DE INVERSIONES": {}, - "DE SERVICIO DE BOLSA": {} - }, - "ACTIVIDADES INMOBILIARIAS, EMPRESARIALES Y DE ALQUILER": { - "ACTIVIDADES CONEXAS": {}, - "ACTIVIDADES EMPRESARIALES DE CONSULTORIA": {}, - "AJUSTES POR INFLACION": {}, - "ALQUILER DE EFECTOS PERSONALES Y ENSERES DOMESTICOS": {}, - "ALQUILER EQUIPO DE TRANSPORTE": {}, - "ALQUILER MAQUINARIA Y EQUIPO": {}, - "ARRENDAMIENTOS DE BIENES INMUEBLES": {}, - "CONSULTORIA EN EQUIPO Y PROGRAMAS DE INFORMATICA": {}, - "DOTACION DE PERSONAL": {}, - "ENVASE Y EMPAQUE": {}, - "FOTOCOPIADO": {}, - "FOTOGRAFIA": {}, - "INMOBILIARIAS POR RETRIBUCION O CONTRATA": {}, - "INVESTIGACION Y SEGURIDAD": {}, - "INVESTIGACIONES CIENTIFICAS Y DE DESARROLLO": {}, - "LIMPIEZA DE INMUEBLES": {}, - "MANTENIMIENTO Y REPARACION DE MAQUINARIA DE OFICINA": {}, - "MANTENIMIENTO Y REPARACION DE MAQUINARIA Y EQUIPO": {}, - "PROCESAMIENTO DE DATOS": {}, - "PUBLICIDAD": {} - }, - "AGRICULTURA, GANADERIA, CAZA Y SILVICULTURA": { - "ACTIVIDAD DE CAZA": {}, - "ACTIVIDAD DE SILVICULTURA": {}, - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "CRIA DE GANADO CABALLAR Y VACUNO": {}, - "CRIA DE OTROS ANIMALES": {}, - "CRIA DE OVEJAS, CABRAS, ASNOS, MULAS Y BURDEGANOS": {}, - "CULTIVO DE ALGODON Y PLANTAS PARA MATERIAL TEXTIL": {}, - "CULTIVO DE BANANO": {}, - "CULTIVO DE CAFE": {}, - "CULTIVO DE CANA DE AZUCAR": {}, - "CULTIVO DE CEREALES": {}, - "CULTIVO DE FLORES": {}, - "CULTIVOS DE FRUTAS, NUECES Y PLANTAS AROMATICAS": {}, - "CULTIVOS DE HORTALIZAS, LEGUMBRES Y PLANTAS ORNAMENTALES": {}, - "OTROS CULTIVOS AGRICOLAS": {}, - "PRODUCCION AVICOLA": {}, - "SERVICIOS AGRICOLAS Y GANADEROS": {} - }, - "COMERCIO AL POR MAYOR Y AL POR MENOR": { - "AJUSTES POR INFLACION": {}, - "MANTENIMIENTO, REPARACION Y LAVADO DE VEHICULOS AUTOMOTORES": {}, - "REPARACION DE EFECTOS PERSONALES Y ELECTRODOMESTICOS": {}, - "VENTA A CAMBIO DE RETRIBUCION O POR CONTRATA": {}, - "VENTA DE ANIMALES VIVOS Y CUEROS": {}, - "VENTA DE ARTICULOS EN CACHARRERIAS Y MISCELANEAS": {}, - "VENTA DE ARTICULOS EN CASAS DE EMPENO Y PRENDERIAS": {}, - "VENTA DE ARTICULOS EN RELOJERIAS Y JOYERIAS": {}, - "VENTA DE COMBUSTIBLES SOLIDOS, LIQUIDOS, GASEOSOS": {}, - "VENTA DE CUBIERTOS, VAJILLAS, CRISTALERIA, PORCELANAS, CERAMICAS Y OTROS ARTICULOS DE USO DOMESTICO": {}, - "VENTA DE ELECTRODOMESTICOS Y MUEBLES": {}, - "VENTA DE EMPAQUES": {}, - "VENTA DE EQUIPO FOTOGRAFICO": {}, - "VENTA DE EQUIPO OPTICO Y DE PRECISION": {}, - "VENTA DE EQUIPO PROFESIONAL Y CIENTIFICO": {}, - "VENTA DE HERRAMIENTAS Y ARTICULOS DE FERRETERIA": {}, - "VENTA DE INSTRUMENTOS MUSICALES": {}, - "VENTA DE INSTRUMENTOS QUIRURGICOS Y ORTOPEDICOS": {}, - "VENTA DE INSUMOS, MATERIAS PRIMAS AGROPECUARIAS Y FLORES": {}, - "VENTA DE JUEGOS, JUGUETES Y ARTICULOS DEPORTIVOS": {}, - "VENTA DE LIBROS, REVISTAS, ELEMENTOS DE PAPELERIA, UTILES Y TEXTOS ESCOLARES": {}, - "VENTA DE LOTERIAS, RIFAS, CHANCE, APUESTAS Y SIMILARES": {}, - "VENTA DE LUBRICANTES, ADITIVOS, LLANTAS Y LUJOS PARA AUTOMOTORES": {}, - "VENTA DE MAQUINARIA, EQUIPO DE OFICINA Y PROGRAMAS DE COMPUTADOR": {}, - "VENTA DE MATERIALES DE CONSTRUCCION, FONTANERIA Y CALEFACCION": {}, - "VENTA DE OTROS INSUMOS Y MATERIAS PRIMAS NO AGROPECUARIAS": {}, - "VENTA DE OTROS PRODUCTOS": {}, - "VENTA DE PAPEL Y CARTON": {}, - "VENTA DE PARTES, PIEZAS Y ACCESORIOS DE VEHICULOS AUTOMOTORES": {}, - "VENTA DE PINTURAS Y LACAS": {}, - "VENTA DE PRODUCTOS AGROPECUARIOS": {}, - "VENTA DE PRODUCTOS DE ASEO, FARMACEUTICOS, MEDICINALES Y ARTICULOS DE TOCADOR": {}, - "VENTA DE PRODUCTOS DE VIDRIOS Y MARQUETERIA": {}, - "VENTA DE PRODUCTOS EN ALMACENES NO ESPECIALIZADOS": {}, - "VENTA DE PRODUCTOS INTERMEDIOS, DESPERDICIOS Y DESECHOS": {}, - "VENTA DE PRODUCTOS TEXTILES, DE VESTIR, DE CUERO Y CALZADO": {}, - "VENTA DE QUIMICOS": {}, - "VENTA DE VEHICULOS AUTOMOTORES": {} - }, - "CONSTRUCCION": { - "ACONDICIONAMIENTO DE EDIFICIOS": {}, - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "ALQUILER DE EQUIPO CON OPERARIO": {}, - "CONSTRUCCION DE EDIFICIOS Y OBRAS DE INGENIERIA CIVIL": {}, - "PREPARACION DE TERRENOS": {}, - "TERMINACION DE EDIFICACIONES": {} - }, - "ENSENANZA": { - "ACTIVIDADES CONEXAS": {}, - "ACTIVIDADES RELACIONADAS CON LA EDUCACION": {}, - "AJUSTES POR INFLACION": {} - }, - "EXPLOTACION DE MINAS Y CANTERAS": { - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "CARBON": {}, - "GAS NATURAL": {}, - "MINERALES DE HIERRO": {}, - "MINERALES METALIFEROS NO FERROSOS": {}, - "ORO": {}, - "OTRAS MINAS Y CANTERAS": {}, - "PETROLEO CRUDO": {}, - "PIEDRA, ARENA Y ARCILLA": {}, - "PIEDRAS PRECIOSAS": {}, - "PRESTACION DE SERVICIOS SECTOR MINERO": {}, - "SERVICIOS RELACIONADOS CON EXTRACCION DE PETROLEO Y GAS": {} - }, - "HOTELES Y RESTAURANTES": { - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "BARES Y CANTINAS": {}, - "CAMPAMENTO Y OTROS TIPOS DE HOSPEDAJE": {}, - "HOTELERIA": {}, - "RESTAURANTES": {} - }, - "INDUSTRIAS MANUFACTURERAS": { - "ACABADO DE PRODUCTOS TEXTILES": {}, - "AJUSTES POR INFLACION": {}, - "CORTE, TALLADO Y ACABADO DE LA PIEDRA": {}, - "CURTIDO, ADOBO O PREPARACION DE CUERO": {}, - "EDICIONES Y PUBLICACIONES": {}, - "ELABORACION DE ABONOS Y COMPUESTOS DE NITROGENO": {}, - "ELABORACION DE ACEITES Y GRASAS": {}, - "ELABORACION DE ALIMENTOS PARA ANIMALES": {}, - "ELABORACION DE ALMIDONES Y DERIVADOS": {}, - "ELABORACION DE APARATOS DE USO DOMESTICO": {}, - "ELABORACION DE ARTICULOS DE HORMIGON, CEMENTO Y YESO": {}, - "ELABORACION DE ARTICULOS DE MATERIALES TEXTILES": {}, - "ELABORACION DE AZUCAR Y MELAZAS": {}, - "ELABORACION DE BEBIDAS ALCOHOLICAS Y ALCOHOL ETILICO": {}, - "ELABORACION DE BEBIDAS MALTEADAS Y DE MALTA": {}, - "ELABORACION DE BEBIDAS NO ALCOHOLICAS": {}, - "ELABORACION DE CACAO, CHOCOLATE Y CONFITERIA": {}, - "ELABORACION DE CALZADO": {}, - "ELABORACION DE CEMENTO, CAL Y YESO": {}, - "ELABORACION DE CUERDAS, CORDELES, BRAMANTES Y REDES": {}, - "ELABORACION DE EQUIPO DE ILUMINACION": {}, - "ELABORACION DE EQUIPO DE OFICINA": {}, - "ELABORACION DE FIBRAS": {}, - "ELABORACION DE JABONES, DETERGENTES Y PREPARADOS DE TOCADOR": {}, - "ELABORACION DE MALETAS, BOLSOS Y SIMILARES": {}, - "ELABORACION DE OTROS PRODUCTOS ALIMENTICIOS": {}, - "ELABORACION DE OTROS PRODUCTOS DE CAUCHO": {}, - "ELABORACION DE OTROS PRODUCTOS DE METAL": {}, - "ELABORACION DE OTROS PRODUCTOS MINERALES NO METALICOS": {}, - "ELABORACION DE OTROS PRODUCTOS QUIMICOS": {}, - "ELABORACION DE OTROS PRODUCTOS TEXTILES": {}, - "ELABORACION DE OTROS TIPOS DE EQUIPO ELECTRICO": {}, - "ELABORACION DE PASTA Y PRODUCTOS DE MADERA, PAPEL Y CARTON": {}, - "ELABORACION DE PASTAS Y PRODUCTOS FARINACEOS": {}, - "ELABORACION DE PILAS Y BATERIAS PRIMARIAS": {}, - "ELABORACION DE PINTURAS, TINTAS Y MASILLAS": {}, - "ELABORACION DE PLASTICO Y CAUCHO SINTETICO": {}, - "ELABORACION DE PRENDAS DE VESTIR": {}, - "ELABORACION DE PRODUCTOS DE CAFE": {}, - "ELABORACION DE PRODUCTOS DE CERAMICA, LOZA, PIEDRA, ARCILLA Y PORCELANA": {}, - "ELABORACION DE PRODUCTOS DE HORNO DE COQUE": {}, - "ELABORACION DE PRODUCTOS DE LA REFINACION DE PETROLEO": {}, - "ELABORACION DE PRODUCTOS DE MOLINERIA": {}, - "ELABORACION DE PRODUCTOS DE PLASTICO": {}, - "ELABORACION DE PRODUCTOS DE TABACO": {}, - "ELABORACION DE PRODUCTOS FARMACEUTICOS Y BOTANICOS": {}, - "ELABORACION DE PRODUCTOS LACTEOS": {}, - "ELABORACION DE PRODUCTOS PARA PANADERIA": {}, - "ELABORACION DE PRODUCTOS QUIMICOS DE USO AGROPECUARIO": {}, - "ELABORACION DE SUSTANCIAS QUIMICAS BASICAS": {}, - "ELABORACION DE TAPICES Y ALFOMBRAS": {}, - "ELABORACION DE TEJIDOS": {}, - "ELABORACION DE VIDRIO Y PRODUCTOS DE VIDRIO": {}, - "ELABORACION DE VINOS": {}, - "FABRICACION DE AERONAVES": {}, - "FABRICACION DE APARATOS E INSTRUMENTOS MEDICOS": {}, - "FABRICACION DE ARTICULOS DE FERRETERIA": {}, - "FABRICACION DE ARTICULOS Y EQUIPO PARA DEPORTE": {}, - "FABRICACION DE BICICLETAS Y SILLAS DE RUEDAS": {}, - "FABRICACION DE CARROCERIAS PARA AUTOMOTORES": {}, - "FABRICACION DE EQUIPOS DE ELEVACION Y MANIPULACION": {}, - "FABRICACION DE EQUIPOS DE RADIO, TELEVISION Y COMUNICACIONES": {}, - "FABRICACION DE INSTRUMENTOS DE MEDICION Y CONTROL": {}, - "FABRICACION DE INSTRUMENTOS DE MUSICA": {}, - "FABRICACION DE INSTRUMENTOS DE OPTICA Y EQUIPO FOTOGRAFICO": {}, - "FABRICACION DE JOYAS Y ARTICULOS CONEXOS": {}, - "FABRICACION DE JUEGOS Y JUGUETES": {}, - "FABRICACION DE LOCOMOTORAS Y MATERIAL RODANTE PARA FERROCARRILES": {}, - "FABRICACION DE MAQUINARIA Y EQUIPO": {}, - "FABRICACION DE MOTOCICLETAS": {}, - "FABRICACION DE MUEBLES": {}, - "FABRICACION DE OTROS TIPOS DE TRANSPORTE": {}, - "FABRICACION DE PARTES, PIEZAS Y ACCESORIOS PARA AUTOMOTORES": {}, - "FABRICACION DE PRODUCTOS METALICOS PARA USO ESTRUCTURAL": {}, - "FABRICACION DE RELOJES": {}, - "FABRICACION DE VEHICULOS AUTOMOTORES": {}, - "FABRICACION Y REPARACION DE BUQUES Y OTRAS EMBARCACIONES": {}, - "FORJA, PRENSADO, ESTAMPADO, LAMINADO DE METAL Y PULVIMETALURGIA": {}, - "FUNDICION DE METALES NO FERROSOS": {}, - "IMPRESION": {}, - "INDUSTRIAS BASICAS Y FUNDICION DE HIERRO Y ACERO": {}, - "PREPARACION E HILATURA DE FIBRAS TEXTILES Y TEJEDURIA": {}, - "PREPARACION, ADOBO Y TENIDO DE PIELES": {}, - "PRODUCCION DE MADERA, ARTICULOS DE MADERA Y CORCHO": {}, - "PRODUCCION Y PROCESAMIENTO DE CARNES Y PRODUCTOS CARNICOS": {}, - "PRODUCTOS DE FRUTAS, LEGUMBRES Y HORTALIZAS": {}, - "PRODUCTOS DE OTRAS INDUSTRIAS MANUFACTURERAS": {}, - "PRODUCTOS DE PESCADO": {}, - "PRODUCTOS PRIMARIOS DE METALES PRECIOSOS Y DE METALES NO FERROSOS": {}, - "RECICLAMIENTO DE DESPERDICIOS": {}, - "REPRODUCCION DE GRABACIONES": {}, - "REVESTIMIENTO DE METALES Y OBRAS DE INGENIERIA MECANICA": {}, - "SERVICIOS RELACIONADOS CON LA EDICION Y LA IMPRESION": {} - }, - "OTRAS ACTIVIDADES DE SERVICIOS COMUNITARIOS, SOCIALES Y PERSONALES": { - "ACTIVIDAD DE RADIO Y TELEVISION": {}, - "ACTIVIDAD TEATRAL, MUSICAL Y ARTISTICA": {}, - "ACTIVIDADES CONEXAS": {}, - "ACTIVIDADES DE ASOCIACION": {}, - "AGENCIAS DE NOTICIAS": {}, - "AJUSTES POR INFLACION": {}, - "ELIMINACION DE DESPERDICIOS Y AGUAS RESIDUALES": {}, - "ENTRETENIMIENTO Y ESPARCIMIENTO": {}, - "EXHIBICION DE FILMES Y VIDEOCINTAS": {}, - "GRABACION Y PRODUCCION DE DISCOS": {}, - "LAVANDERIAS Y SIMILARES": {}, - "PELUQUERIAS Y SIMILARES": {}, - "PRODUCCION Y DISTRIBUCION DE FILMES Y VIDEOCINTAS": {}, - "SERVICIOS FUNERARIOS": {}, - "ZONAS FRANCAS": {} - }, - "PESCA": { - "ACTIVIDAD DE PESCA": {}, - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "EXPLOTACION DE CRIADEROS DE PECES": {} - }, - "SERVICIOS SOCIALES Y DE SALUD": { - "ACTIVIDADES CONEXAS": {}, - "ACTIVIDADES DE SERVICIOS SOCIALES": {}, - "ACTIVIDADES VETERINARIAS": {}, - "AJUSTES POR INFLACION": {}, - "SERVICIO DE LABORATORIO": {}, - "SERVICIO HOSPITALARIO": {}, - "SERVICIO MEDICO": {}, - "SERVICIO ODONTOLOGICO": {} - }, - "SUMINISTRO DE ELECTRICIDAD, GAS Y AGUA": { - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "CAPTACION, DEPURACION Y DISTRIBUCION DE AGUA": {}, - "FABRICACION DE GAS Y DISTRIBUCION DE COMBUSTIBLES GASEOSOS": {}, - "GENERACION, CAPTACION Y DISTRIBUCION DE ENERGIA ELECTRICA": {} - }, - "TRANSPORTE, ALMACENAMIENTO Y COMUNICACIONES": { - "ACTIVIDADES CONEXAS": {}, - "AGENCIAS DE VIAJE": {}, - "AJUSTES POR INFLACION": {}, - "ALMACENAMIENTO Y DEPOSITO": {}, - "MANIPULACION DE CARGA": {}, - "OTRAS AGENCIAS DE TRANSPORTE": {}, - "SERVICIO DE RADIO Y TELEVISION POR CABLE": {}, - "SERVICIO DE TELEGRAFO": {}, - "SERVICIO DE TRANSMISION DE DATOS": {}, - "SERVICIO DE TRANSPORTE POR CARRETERA": {}, - "SERVICIO DE TRANSPORTE POR TUBERIAS": {}, - "SERVICIO DE TRANSPORTE POR VIA ACUATICA": { - "SERVICIO DE TRANSPORTE POR VIA ACUATICA": {} - }, - "SERVICIO DE TRANSPORTE POR VIA AEREA": {}, - "SERVICIO DE TRANSPORTE POR VIA FERREA": {}, - "SERVICIO POSTAL Y DE CORREO": {}, - "SERVICIO TELEFONICO": {}, - "SERVICIOS COMPLEMENTARIOS PARA EL TRANSPORTE": {}, - "TRANSMISION DE SONIDO E IMAGENES POR CONTRATO": {} - } - }, - "root_type": "Expense" - }, - "CUENTAS DE ORDEN ACREEDORAS": { - "ACREEDORAS DE CONTROL": { - "AJUSTES POR INFLACION PATRIMONIO": { - "CAPITAL SOCIAL": {}, - "DIVIDENDOS O PARTICIPACIONES DECRETADAS EN ACCIONES, CUOTAS O PARTES DE INTERES SOCIAL": {}, - "RESERVAS": {}, - "RESULTADOS DE EJERCICIOS ANTERIORES": {}, - "SUPERAVIT DE CAPITAL": {} - }, - "CONTRATOS DE ARRENDAMIENTO FINANCIERO": { - "BIENES INMUEBLES": {}, - "BIENES MUEBLES": {} - }, - "OTRAS CUENTAS DE ORDEN ACREEDORAS DE CONTROL": { - "ADJUDICACIONES PENDIENTES DE LEGALIZAR": {}, - "AJUSTES POR INFLACION": {}, - "CONTRATOS DE CONSTRUCCIONES E INSTALACIONES POR EJECUTAR": {}, - "CONVENIOS DE PAGO": {}, - "DIVERSAS": {}, - "DOCUMENTOS POR COBRAR DESCONTADOS": {}, - "RESERVA ARTICULO 3\u00ba LEY 4\u00aa DE 1980": {}, - "RESERVA COSTO REPOSICION SEMOVIENTES": {} - } - }, - "ACREEDORAS DE CONTROL POR CONTRA (DB)": {}, - "ACREEDORAS FISCALES": {}, - "ACREEDORAS FISCALES POR CONTRA (DB)": {}, - "RESPONSABILIDADES CONTINGENTES": { - "BIENES Y VALORES RECIBIDOS DE TERCEROS": { - "AJUSTES POR INFLACION": {}, - "EN ARRENDAMIENTO": {}, - "EN COMODATO": {}, - "EN CONSIGNACION": {}, - "EN DEPOSITO": {}, - "EN PRESTAMO": {} - }, - "BIENES Y VALORES RECIBIDOS EN CUSTODIA": { - "AJUSTES POR INFLACION": {}, - "BIENES MUEBLES": {}, - "VALORES MOBILIARIOS": {} - }, - "BIENES Y VALORES RECIBIDOS EN GARANTIA": { - "AJUSTES POR INFLACION": {}, - "BIENES INMUEBLES": {}, - "BIENES MUEBLES": {}, - "CONTRATOS DE GANADO EN PARTICIPACION": {}, - "VALORES MOBILIARIOS": {} - }, - "CONTRATOS DE ADMINISTRACION DELEGADA": {}, - "CUENTAS EN PARTICIPACION": {}, - "LITIGIOS Y/O DEMANDAS": { - "ADMINISTRATIVOS O ARBITRALES": {}, - "CIVILES": {}, - "LABORALES": {}, - "TRIBUTARIOS": {} - }, - "OTRAS RESPONSABILIDADES CONTINGENTES": {}, - "PROMESAS DE COMPRAVENTA": {} - }, - "RESPONSABILIDADES CONTINGENTES POR CONTRA (DB)": {}, - "root_type": "Liability" - }, - "CUENTAS DE ORDEN DEUDORAS": { - "DERECHOS CONTINGENTES": { - "BIENES Y VALORES EN PODER DE TERCEROS": { - "AJUSTES POR INFLACION": {}, - "EN ARRENDAMIENTO": {}, - "EN CONSIGNACION": {}, - "EN DEPOSITO": {}, - "EN PRESTAMO": {} - }, - "BIENES Y VALORES ENTREGADOS EN CUSTODIA": { - "AJUSTES POR INFLACION": {}, - "BIENES MUEBLES": {}, - "VALORES MOBILIARIOS": {} - }, - "BIENES Y VALORES ENTREGADOS EN GARANTIA": { - "AJUSTES POR INFLACION": {}, - "BIENES INMUEBLES": {}, - "BIENES MUEBLES": {}, - "CONTRATOS DE GANADO EN PARTICIPACION": {}, - "VALORES MOBILIARIOS": {} - }, - "DIVERSAS": { - "AJUSTES POR INFLACION": {}, - "OTRAS": {}, - "VALORES ADQUIRIDOS POR RECIBIR": {} - }, - "LITIGIOS Y/O DEMANDAS": { - "EJECUTIVOS": {}, - "INCUMPLIMIENTO DE CONTRATOS": {} - }, - "PROMESAS DE COMPRAVENTA": {} - }, - "DERECHOS CONTINGENTES POR CONTRA (CR)": {}, - "DEUDORAS DE CONTROL": { - "ACTIVOS CASTIGADOS": { - "DEUDORES": {}, - "INVERSIONES": {}, - "OTROS ACTIVOS": {} - }, - "AJUSTES POR INFLACION ACTIVOS": { - "CARGOS DIFERIDOS": {}, - "INTANGIBLES": {}, - "INVENTARIOS": {}, - "INVERSIONES": {}, - "OTROS ACTIVOS": {}, - "PROPIEDADES, PLANTA Y EQUIPO": {} - }, - "BIENES RECIBIDOS EN ARRENDAMIENTO FINANCIERO": { - "AJUSTES POR INFLACION": {}, - "BIENES INMUEBLES": {}, - "BIENES MUEBLES": {} - }, - "CAPITALIZACION POR REVALORIZACION DE PATRIMONIO": {}, - "CREDITOS A FAVOR NO UTILIZADOS": { - "EXTERIOR": {}, - "PAIS": {} - }, - "OTRAS CUENTAS DEUDORAS DE CONTROL": { - "AJUSTES POR INFLACION": {}, - "BIENES Y VALORES EN FIDEICOMISO": {}, - "CERTIFICADOS DE DEPOSITO A TERMINO": {}, - "CHEQUES DEVUELTOS": {}, - "CHEQUES POSFECHADOS": {}, - "DIVERSAS": {}, - "INTERESES SOBRE DEUDAS VENCIDAS": {} - }, - "PROPIEDADES, PLANTA Y EQUIPO TOTALMENTE DEPRECIADOS, AGOTADOS Y/O AMORTIZADOS": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AJUSTES POR INFLACION": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "MATERIALES PROYECTOS PETROLEROS": {}, - "MINAS Y CANTERAS": {}, - "PLANTACIONES AGRICOLAS Y FORESTALES": {}, - "POZOS ARTESIANOS": {}, - "SEMOVIENTES": {}, - "VIAS DE COMUNICACION": {}, - "YACIMIENTOS": {} - }, - "TITULOS DE INVERSION AMORTIZADOS": { - "BONOS": {}, - "OTROS": {} - }, - "TITULOS DE INVERSION NO COLOCADOS": { - "ACCIONES": {}, - "BONOS": {}, - "OTROS": {} - } - }, - "DEUDORAS DE CONTROL POR CONTRA (CR)": {}, - "DEUDORAS FISCALES": {}, - "DEUDORAS FISCALES POR CONTRA (CR)": {}, - "root_type": "Asset" - }, - "GASTOS": { - "GANANCIAS Y PERDIDAS": { - "GANANCIAS Y PERDIDAS": { - "GANANCIAS Y PERDIDAS": {} - } - }, - "IMPUESTO DE RENTA Y COMPLEMENTARIOS": { - "IMPUESTO DE RENTA Y COMPLEMENTARIOS": { - "IMPUESTO DE RENTA Y COMPLEMENTARIOS": {} - } - }, - "NO OPERACIONALES": { - "FINANCIEROS": { - "AJUSTES POR INFLACION": {}, - "COMISIONES": {}, - "DESCUENTOS COMERCIALES CONDICIONADOS": {}, - "DIFERENCIA EN CAMBIO": {}, - "GASTOS BANCARIOS": {}, - "GASTOS EN NEGOCIACION CERTIFICADOS DE CAMBIO": {}, - "GASTOS MANEJO Y EMISION DE BONOS": {}, - "INTERESES": {}, - "OTROS": {}, - "PRIMA AMORTIZADA": {}, - "REAJUSTE MONETARIO-UPAC (HOY UVR)": {} - }, - "GASTOS DIVERSOS": { - "AJUSTES POR INFLACION": {}, - "AMORTIZACION DE BIENES ENTREGADOS EN COMODATO": {}, - "CONSTITUCION DE GARANTIAS": {}, - "DEMANDAS LABORALES": {}, - "DEMANDAS POR INCUMPLIMIENTO DE CONTRATOS": {}, - "DONACIONES": {}, - "INDEMNIZACIONES": {}, - "MULTAS, SANCIONES Y LITIGIOS": {}, - "OTROS": { - "OTROS": {} - } - }, - "GASTOS EXTRAORDINARIOS": { - "ACTIVIDADES CULTURALES Y CIVICAS": {}, - "AJUSTES POR INFLACION": {}, - "COSTAS Y PROCESOS JUDICIALES": {}, - "COSTOS Y GASTOS DE EJERCICIOS ANTERIORES": {}, - "IMPUESTOS ASUMIDOS": {}, - "OTROS": {} - }, - "PERDIDA EN VENTA Y RETIRO DE BIENES": { - "AJUSTES POR INFLACION": {}, - "OTROS": {}, - "PERDIDAS POR SINIESTROS": {}, - "RETIRO DE OTROS ACTIVOS": {}, - "RETIRO DE PROPIEDADES, PLANTA Y EQUIPO": {}, - "VENTA DE CARTERA": {}, - "VENTA DE INTANGIBLES": {}, - "VENTA DE INVERSIONES": {}, - "VENTA DE OTROS ACTIVOS": {}, - "VENTA DE PROPIEDADES, PLANTA Y EQUIPO": {} - }, - "PERDIDAS METODO DE PARTICIPACION": { - "DE SOCIEDADES ANONIMAS Y/O ASIMILADAS": {}, - "DE SOCIEDADES LIMITADAS Y/O ASIMILADAS": {} - } - }, - "OPERACIONALES DE ADMINISTRACION": { - "ADECUACION E INSTALACION": { - "AJUSTES POR INFLACION": {}, - "ARREGLOS ORNAMENTALES": {}, - "INSTALACIONES ELECTRICAS": {}, - "OTROS": { - "OTROS": {} - }, - "REPARACIONES LOCATIVAS": { - "REPARACIONES LOCATIVAS": {} - } - }, - "AMORTIZACIONES": { - "AJUSTES POR INFLACION": {}, - "CARGOS DIFERIDOS": {}, - "INTANGIBLES": {}, - "OTRAS": {}, - "VIAS DE COMUNICACION": {} - }, - "ARRENDAMIENTOS": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AERODROMOS": {}, - "AJUSTES POR INFLACION": {}, - "CONSTRUCCIONES Y EDIFICACIONES": { - "CONSTRUCCIONES Y EDIFICACIONES": {} - }, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "OTROS": {}, - "SEMOVIENTES": {}, - "TERRENOS": {} - }, - "CONTRIBUCIONES Y AFILIACIONES": { - "AFILIACIONES Y SOSTENIMIENTO": {}, - "AJUSTES POR INFLACION": {}, - "CONTRIBUCIONES": {} - }, - "DEPRECIACIONES": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AJUSTES POR INFLACION": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {} - }, - "DIVERSOS": { - "AJUSTES POR INFLACION": {}, - "CASINO Y RESTAURANTE": {}, - "COMBUSTIBLES Y LUBRICANTES": {}, - "COMISIONES": { - "COMISIONES": {} - }, - "ELEMENTOS DE ASEO Y CAFETERIA": { - "ELEMENTOS DE ASEO Y CAFETERIA": {} - }, - "ENVASES Y EMPAQUES": {}, - "ESTAMPILLAS": {}, - "GASTOS DE REPRESENTACION Y RELACIONES PUBLICAS": {}, - "INDEMNIZACION POR DANOS A TERCEROS": {}, - "LIBROS, SUSCRIPCIONES, PERIODICOS Y REVISTAS": { - "LIBROS, SUSCRIPCIONES, PERIODICOS Y REVISTAS": {} - }, - "MICROFILMACION": {}, - "MUSICA AMBIENTAL": {}, - "OTROS": { - "OTROS": {} - }, - "PARQUEADEROS": {}, - "POLVORA Y SIMILARES": {}, - "TAXIS Y BUSES": {}, - "UTILES, PAPELERIA Y FOTOCOPIAS": { - "UTILES, PAPELERIA Y FOTOCOPIAS": {} - } - }, - "GASTOS DE PERSONAL": { - "AJUSTES POR INFLACION": {}, - "AMORTIZACION BONOS PENSIONALES": {}, - "AMORTIZACION CALCULO ACTUARIAL PENSIONES DE JUBILACION": {}, - "AMORTIZACION TITULOS PENSIONALES": {}, - "APORTES A ADMINISTRADORAS DE RIESGOS PROFESIONALES, ARP": {}, - "APORTES A ENTIDADES PROMOTORAS DE SALUD, EPS": {}, - "APORTES A FONDOS DE PENSIONES Y/O CESANTIAS": {}, - "APORTES CAJAS DE COMPENSACION FAMILIAR": {}, - "APORTES ICBF": {}, - "APORTES SINDICALES": {}, - "AUXILIO DE TRANSPORTE": { - "EMPLEADOS": {} - }, - "AUXILIOS": {}, - "BONIFICACIONES": {}, - "CAPACITACION AL PERSONAL": {}, - "CESANTIAS": { - "EMPLEADOS": {} - }, - "COMISIONES": {}, - "CUOTAS PARTES PENSIONES DE JUBILACION": {}, - "DOTACION Y SUMINISTRO A TRABAJADORES": {}, - "GASTOS DEPORTIVOS Y DE RECREACION": {}, - "GASTOS MEDICOS Y DROGAS": {}, - "HORAS EXTRAS Y RECARGOS": {}, - "INCAPACIDADES": {}, - "INDEMNIZACIONES LABORALES": {}, - "INTERESES SOBRE CESANTIAS": { - "EMPLEADOS": {} - }, - "JORNALES": {}, - "OTROS": {}, - "PENSIONES DE JUBILACION": {}, - "PRIMA DE SERVICIOS": { - "EMPLEADOS": {} - }, - "PRIMAS EXTRALEGALES": {}, - "SALARIO INTEGRAL": {}, - "SEGUROS": {}, - "SENA": {}, - "SUELDOS": { - "EMPLEADOS": {} - }, - "VACACIONES": { - "EMPLEADOS": {} - }, - "VIATICOS": {} - }, - "GASTOS DE VIAJE": { - "AJUSTES POR INFLACION": {}, - "ALOJAMIENTO Y MANUTENCION": {}, - "OTROS": {}, - "PASAJES AEREOS": {}, - "PASAJES FERREOS": {}, - "PASAJES FLUVIALES Y/O MARITIMOS": {}, - "PASAJES TERRESTRES": {} - }, - "GASTOS LEGALES": { - "ADUANEROS": {}, - "AJUSTES POR INFLACION": {}, - "CONSULARES": {}, - "NOTARIALES": { - "NOTARIALES": {} - }, - "OTROS": {}, - "REGISTRO MERCANTIL": { - "REGISTRO MERCANTIL": {} - }, - "TRAMITES Y LICENCIAS": {} - }, - "HONORARIOS": { - "AJUSTES POR INFLACION": {}, - "ASESORIA FINANCIERA": {}, - "ASESORIA JURIDICA": { - "ASESORIA JURIDICA": {} - }, - "ASESORIA TECNICA": {}, - "AUDITORIA EXTERNA": {}, - "AVALUOS": {}, - "JUNTA DIRECTIVA": {}, - "OTROS": {}, - "REVISORIA FISCAL": {} - }, - "IMPUESTOS": { - "A LA PROPIEDAD RAIZ": {}, - "AJUSTES POR INFLACION": {}, - "CUOTAS DE FOMENTO": { - "GRAVAMEN MOVIMIENTOS FINANCIEROS": {} - }, - "DE ESPECTACULOS PUBLICOS": {}, - "DE TIMBRES": {}, - "DE TURISMO": {}, - "DE VALORIZACION": {}, - "DE VEHICULOS": {}, - "DERECHOS SOBRE INSTRUMENTOS PUBLICOS": {}, - "INDUSTRIA Y COMERCIO": {}, - "IVA DESCONTABLE": {}, - "OTROS": {}, - "TASA POR UTILIZACION DE PUERTOS": {} - }, - "MANTENIMIENTO Y REPARACIONES": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AJUSTES POR INFLACION": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": { - "CONSTRUCCIONES Y EDIFICACIONES": {} - }, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "TERRENOS": {}, - "VIAS DE COMUNICACION": {} - }, - "PROVISIONES": { - "AJUSTES POR INFLACION": {}, - "DEUDORES": {}, - "INVERSIONES": {}, - "OTROS ACTIVOS": {}, - "PROPIEDADES, PLANTA Y EQUIPO": {} - }, - "SEGUROS": { - "AJUSTES POR INFLACION": {}, - "CORRIENTE DEBIL": {}, - "CUMPLIMIENTO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "INCENDIO": {}, - "LUCRO CESANTE": {}, - "MANEJO": {}, - "OBLIGATORIO ACCIDENTE DE TRANSITO": {}, - "OTROS": {}, - "RESPONSABILIDAD CIVIL Y EXTRACONTRACTUAL": {}, - "ROTURA DE MAQUINARIA": {}, - "SUSTRACCION Y HURTO": {}, - "TERREMOTO": {}, - "TRANSPORTE DE MERCANCIA": {}, - "VIDA COLECTIVA": {}, - "VUELO": {} - }, - "SERVICIOS": { - "ACUEDUCTO Y ALCANTARILLADO": { - "ACUEDUCTO Y ALCANTARILLADO": {} - }, - "AJUSTES POR INFLACION": {}, - "ASEO Y VIGILANCIA": { - "ASEO Y VIGILANCIA": {} - }, - "ASISTENCIA TECNICA": {}, - "CORREO, PORTES Y TELEGRAMAS": {}, - "ENERGIA ELECTRICA": {}, - "FAX Y TELEX": {}, - "GAS": {}, - "OTROS": { - "OTROS": {} - }, - "PROCESAMIENTO ELECTRONICO DE DATOS": { - "PROCESAMIENTO ELECTRONICO DE DATOS": {} - }, - "TELEFONO": { - "TELEFONO": {} - }, - "TEMPORALES": { - "TEMPORALES": {} - }, - "TRANSPORTE, FLETES Y ACARREOS": {} - } - }, - "OPERACIONALES DE VENTAS": { - "ADECUACION E INSTALACION": { - "AJUSTES POR INFLACION": {}, - "ARREGLOS ORNAMENTALES": {}, - "INSTALACIONES ELECTRICAS": {}, - "OTROS": {}, - "REPARACIONES LOCATIVAS": {} - }, - "AMORTIZACIONES": { - "AJUSTES POR INFLACION": {}, - "CARGOS DIFERIDOS": {}, - "INTANGIBLES": {}, - "OTRAS": {}, - "VIAS DE COMUNICACION": {} - }, - "ARRENDAMIENTOS": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AERODROMOS": {}, - "AJUSTES POR INFLACION": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "OTROS": {}, - "SEMOVIENTES": {}, - "TERRENOS": {} - }, - "CONTRIBUCIONES Y AFILIACIONES": { - "AFILIACIONES Y SOSTENIMIENTO": {}, - "AJUSTES POR INFLACION": {}, - "CONTRIBUCIONES": {} - }, - "DEPRECIACIONES": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AJUSTES POR INFLACION": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {} - }, - "DIVERSOS": { - "AJUSTES POR INFLACION": {}, - "CASINO Y RESTAURANTE": {}, - "COMBUSTIBLES Y LUBRICANTES": {}, - "COMISIONES": {}, - "ELEMENTOS DE ASEO Y CAFETERIA": {}, - "ENVASES Y EMPAQUES": {}, - "ESTAMPILLAS": {}, - "GASTOS DE REPRESENTACION Y RELACIONES PUBLICAS": {}, - "INDEMNIZACION POR DANOS A TERCEROS": {}, - "LIBROS, SUSCRIPCIONES, PERIODICOS Y REVISTAS": {}, - "MICROFILMACION": {}, - "MUSICA AMBIENTAL": {}, - "OTROS": { - "Otros Gastos": {} - }, - "PARQUEADEROS": {}, - "POLVORA Y SIMILARES": {}, - "TAXIS Y BUSES": {}, - "UTILES, PAPELERIA Y FOTOCOPIAS": {} - }, - "FINANCIEROS-REAJUSTE DEL SISTEMA": { - "AJUSTES POR INFLACION": {} - }, - "GASTOS DE PERSONAL": { - "AJUSTES POR INFLACION": {}, - "AMORTIZACION BONOS PENSIONALES": {}, - "AMORTIZACION CALCULO ACTUARIAL PENSIONES DE JUBILACION": {}, - "AMORTIZACION TITULOS PENSIONALES": {}, - "APORTES A ADMINISTRADORAS DE RIESGOS PROFESIONALES, ARP": {}, - "APORTES A ENTIDADES PROMOTORAS DE SALUD, EPS": {}, - "APORTES A FONDOS DE PENSIONES Y/O CESANTIAS": {}, - "APORTES CAJAS DE COMPENSACION FAMILIAR": {}, - "APORTES ICBF": {}, - "APORTES SINDICALES": {}, - "AUXILIO DE TRANSPORTE": {}, - "AUXILIOS": {}, - "BONIFICACIONES": {}, - "CAPACITACION AL PERSONAL": {}, - "CESANTIAS": {}, - "COMISIONES": {}, - "CUOTAS PARTES PENSIONES DE JUBILACION": {}, - "DOTACION Y SUMINISTRO A TRABAJADORES": {}, - "GASTOS DEPORTIVOS Y DE RECREACION": {}, - "GASTOS MEDICOS Y DROGAS": {}, - "HORAS EXTRAS Y RECARGOS": {}, - "INCAPACIDADES": {}, - "INDEMNIZACIONES LABORALES": {}, - "INTERESES SOBRE CESANTIAS": {}, - "JORNALES": {}, - "OTROS": {}, - "PENSIONES DE JUBILACION": {}, - "PRIMA DE SERVICIOS": {}, - "PRIMAS EXTRALEGALES": {}, - "SALARIO INTEGRAL": {}, - "SEGUROS": {}, - "SENA": {}, - "SUELDOS": {}, - "VACACIONES": {}, - "VIATICOS": {} - }, - "GASTOS DE VIAJE": { - "AJUSTES POR INFLACION": {}, - "ALOJAMIENTO Y MANUTENCION": {}, - "OTROS": {}, - "PASAJES AEREOS": {}, - "PASAJES FERREOS": {}, - "PASAJES FLUVIALES Y/O MARITIMOS": {}, - "PASAJES TERRESTRES": {} - }, - "GASTOS LEGALES": { - "ADUANEROS": {}, - "AJUSTES POR INFLACION": {}, - "CONSULARES": {}, - "NOTARIALES": {}, - "OTROS": {}, - "REGISTRO MERCANTIL": {}, - "TRAMITES Y LICENCIAS": {} - }, - "HONORARIOS": { - "AJUSTES POR INFLACION": {}, - "ASESORIA FINANCIERA": {}, - "ASESORIA JURIDICA": {}, - "ASESORIA TECNICA": {}, - "AUDITORIA EXTERNA": {}, - "AVALUOS": {}, - "JUNTA DIRECTIVA": {}, - "OTROS": {}, - "REVISORIA FISCAL": {} - }, - "IMPUESTOS": { - "A LA PROPIEDAD RAIZ": {}, - "AJUSTES POR INFLACION": {}, - "CERVEZAS": {}, - "CIGARRILLOS": {}, - "CUOTAS DE FOMENTO": {}, - "DE ESPECTACULOS PUBLICOS": {}, - "DE TIMBRES": {}, - "DE TURISMO": {}, - "DE VALORIZACION": {}, - "DE VEHICULOS": {}, - "DERECHOS SOBRE INSTRUMENTOS PUBLICOS": {}, - "INDUSTRIA Y COMERCIO": {}, - "IVA DESCONTABLE": {}, - "LICORES": {}, - "OTROS": {}, - "TASA POR UTILIZACION DE PUERTOS": {} - }, - "MANTENIMIENTO Y REPARACIONES": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AJUSTES POR INFLACION": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "TERRENOS": {}, - "VIAS DE COMUNICACION": {} - }, - "PERDIDAS METODO DE PARTICIPACION": { - "DE SOCIEDADES ANONIMAS Y/O ASIMILADAS": {}, - "DE SOCIEDADES LIMITADAS Y/O ASIMILADAS": {} - }, - "PROVISIONES": { - "AJUSTES POR INFLACION": {}, - "DEUDORES": {}, - "INVENTARIOS": {}, - "INVERSIONES": {}, - "OTROS ACTIVOS": {}, - "PROPIEDADES, PLANTA Y EQUIPO": {} - }, - "SEGUROS": { - "AJUSTES POR INFLACION": {}, - "CORRIENTE DEBIL": {}, - "CUMPLIMIENTO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "INCENDIO": {}, - "LUCRO CESANTE": {}, - "MANEJO": {}, - "OBLIGATORIO ACCIDENTE DE TRANSITO": {}, - "OTROS": {}, - "RESPONSABILIDAD CIVIL Y EXTRACONTRACTUAL": {}, - "ROTURA DE MAQUINARIA": {}, - "SUSTRACCION Y HURTO": {}, - "TERREMOTO": {}, - "VIDA COLECTIVA": {}, - "VUELO": {} - }, - "SERVICIOS": { - "ACUEDUCTO Y ALCANTARILLADO": {}, - "AJUSTES POR INFLACION": {}, - "ASEO Y VIGILANCIA": {}, - "ASISTENCIA TECNICA": {}, - "CORREO, PORTES Y TELEGRAMAS": {}, - "ENERGIA ELECTRICA": {}, - "FAX Y TELEX": {}, - "GAS": {}, - "OTROS": {}, - "PROCESAMIENTO ELECTRONICO DE DATOS": {}, - "PUBLICIDAD, PROPAGANDA Y PROMOCION": {}, - "TELEFONO": {}, - "TEMPORALES": {}, - "TRANSPORTE, FLETES Y ACARREOS": {} - } - }, - "root_type": "Expense" - }, - "INGRESOS": { - "AJUSTES POR INFLACION": { - "CORRECCION MONETARIA": { - "ACTIVOS DIFERIDOS": {}, - "AGOTAMIENTO ACUMULADO (DB)": {}, - "AMORTIZACION ACUMULADA (DB)": {}, - "COMPRAS (CR)": {}, - "COSTO DE VENTAS (CR)": {}, - "COSTOS DE PRODUCCION O DE OPERACION (CR)": {}, - "DEPRECIACION ACUMULADA (DB)": {}, - "DEPRECIACION DIFERIDA (CR)": {}, - "DEVOLUCIONES EN COMPRAS (DB)": {}, - "DEVOLUCIONES EN VENTAS (CR)": {}, - "GASTOS NO OPERACIONALES (CR)": {}, - "GASTOS OPERACIONALES DE ADMINISTRACION (CR)": {}, - "GASTOS OPERACIONALES DE VENTAS (CR)": {}, - "INGRESOS NO OPERACIONALES (DB)": {}, - "INGRESOS OPERACIONALES (DB)": {}, - "INTANGIBLES (CR)": {}, - "INVENTARIOS (CR)": {}, - "INVERSIONES (CR)": {}, - "OTROS ACTIVOS (CR)": {}, - "PASIVOS SUJETOS DE AJUSTE": {}, - "PATRIMONIO": {}, - "PROPIEDADES, PLANTA Y EQUIPO (CR)": {} - } - }, - "NO OPERACIONALES": { - "ARRENDAMIENTOS": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AERODROMOS": {}, - "AJUSTES POR INFLACION": {}, - "CONSTRUCCIONES Y EDIFICIOS": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "PLANTACIONES AGRICOLAS Y FORESTALES": {}, - "SEMOVIENTES": {}, - "TERRENOS": {} - }, - "COMISIONES": { - "AJUSTES POR INFLACION": {}, - "DE ACTIVIDADES FINANCIERAS": {}, - "DE CONCESIONARIOS": {}, - "DERECHOS DE AUTOR": {}, - "DERECHOS DE PROGRAMACION": {}, - "POR DISTRIBUCION DE PELICULAS": {}, - "POR INGRESOS PARA TERCEROS": {}, - "POR VENTA DE SEGUROS": {}, - "POR VENTA DE SERVICIOS DE TALLER": {}, - "SOBRE INVERSIONES": {} - }, - "DEVOLUCIONES EN OTRAS VENTAS (DB)": { - "AJUSTES POR INFLACION": {} - }, - "DIVERSOS": { - "AJUSTE AL PESO": {}, - "AJUSTES POR INFLACION": {}, - "APROVECHAMIENTOS": { - "APROVECHAMIENTOS": {} - }, - "AUXILIOS": {}, - "BONIFICACIONES": {}, - "CAPACITACION DISTRIBUIDORES": {}, - "CERT": {}, - "DE ESCRITURACION": {}, - "DE LA ACTIVIDAD GANADERA": {}, - "DECORACIONES": {}, - "DERECHOS Y LICITACIONES": {}, - "DERIVADOS DE LAS EXPORTACIONES": {}, - "EXCEDENTES": {}, - "HISTORIA CLINICA": {}, - "INGRESOS POR ELEMENTOS PERDIDOS": {}, - "INGRESOS POR INVESTIGACION Y DESARROLLO": {}, - "LLAMADAS TELEFONICAS": {}, - "MANEJO DE CARGA": {}, - "MULTAS Y RECARGOS": {}, - "OTROS": {}, - "OTROS INGRESOS DE EXPLOTACION": {}, - "POR TRABAJOS EJECUTADOS": {}, - "PREAVISOS DESCONTADOS": {}, - "PREMIOS": {}, - "PRODUCTOS DESCONTADOS": {}, - "RECLAMOS": {}, - "RECOBRO DE DANOS": {}, - "RECONOCIMIENTOS ISS": {}, - "REGALIAS": {}, - "REGISTRO PROMESAS DE VENTA": {}, - "RESULTADOS, MATRICULAS Y TRASPASOS": {}, - "SOBRANTES DE CAJA": {}, - "SOBRANTES EN LIQUIDACION FLETES": {}, - "SUBSIDIOS ESTATALES": {}, - "SUBVENCIONES": {}, - "UTILES, PAPELERIA Y FOTOCOPIAS": { - "UTILES, PAPELERIA Y FOTOCOPIAS": {} - } - }, - "DIVIDENDOS Y PARTICIPACIONES": { - "AJUSTES POR INFLACION": {}, - "DE SOCIEDADES ANONIMAS Y/O ASIMILADAS": {}, - "DE SOCIEDADES LIMITADAS Y/O ASIMILADAS": {} - }, - "FINANCIEROS": { - "ACEPTACIONES BANCARIAS": {}, - "AJUSTES POR INFLACION": {}, - "COMISIONES CHEQUES DE OTRAS PLAZAS": {}, - "DESCUENTOS AMORTIZADOS": {}, - "DESCUENTOS BANCARIOS": {}, - "DESCUENTOS COMERCIALES CONDICIONADOS": {}, - "DIFERENCIA EN CAMBIO": {}, - "FINANCIACION SISTEMAS DE VIAJES": {}, - "FINANCIACION VEHICULOS": {}, - "INTERESES": {}, - "MULTAS Y RECARGOS": {}, - "OTROS": {}, - "REAJUSTE MONETARIO-UPAC (HOY UVR)": {}, - "SANCIONES CHEQUES DEVUELTOS": {} - }, - "HONORARIOS": { - "ADMINISTRACION DE VINCULADAS": {}, - "AJUSTES POR INFLACION": {}, - "ASESORIAS": {}, - "ASISTENCIA TECNICA": {} - }, - "INDEMNIZACIONES": { - "AJUSTES POR INFLACION": {}, - "DANO EMERGENTE COMPANIAS DE SEGUROS": {}, - "DE TERCEROS": {}, - "LUCRO CESANTE COMPANIAS DE SEGUROS": {}, - "OTRAS": {}, - "POR INCAPACIDADES ISS": {}, - "POR INCUMPLIMIENTO DE CONTRATOS": {}, - "POR PERDIDA DE MERCANCIA": {}, - "POR SINIESTRO": {}, - "POR SUMINISTROS": {} - }, - "INGRESOS DE EJERCICIOS ANTERIORES": { - "AJUSTES POR INFLACION": {} - }, - "INGRESOS METODO DE PARTICIPACION": { - "DE SOCIEDADES ANONIMAS Y/O ASIMILADAS": {}, - "DE SOCIEDADES LIMITADAS Y/O ASIMILADAS": {} - }, - "OTRAS VENTAS": { - "AJUSTES POR INFLACION": {}, - "COMBUSTIBLES Y LUBRICANTES": {}, - "DE PROPAGANDA": {}, - "ENVASES Y EMPAQUES": {}, - "EXCEDENTES DE EXPORTACION": {}, - "MATERIA PRIMA": {}, - "MATERIAL DE DESECHO": {}, - "MATERIALES VARIOS": {}, - "PRODUCTOS AGRICOLAS": {}, - "PRODUCTOS DE DIVERSIFICACION": {}, - "PRODUCTOS EN REMATE": {} - }, - "PARTICIPACIONES EN CONCESIONES": { - "AJUSTES POR INFLACION": {} - }, - "RECUPERACIONES": { - "AJUSTES POR INFLACION": {}, - "DE DEPRECIACION": {}, - "DE PROVISIONES": {}, - "DESCUENTOS CONCEDIDOS": {}, - "DEUDAS MALAS": {}, - "GASTOS BANCARIOS": {}, - "RECLAMOS": {}, - "REINTEGRO DE OTROS COSTOS Y GASTOS": {}, - "REINTEGRO GARANTIAS": {}, - "REINTEGRO POR PERSONAL EN COMISION": {}, - "SEGUROS": {} - }, - "SERVICIOS": { - "ADMINISTRATIVOS": {}, - "AJUSTES POR INFLACION": {}, - "AL PERSONAL": {}, - "DE BASCULA": {}, - "DE CASINO": {}, - "DE COMPUTACION": {}, - "DE MANTENIMIENTO": {}, - "DE PRENSA": {}, - "DE RECEPCION DE AERONAVES": {}, - "DE TELEFAX": {}, - "DE TRANSPORTE": {}, - "DE TRANSPORTE PROGRAMA GAS NATURAL": {}, - "DE TRILLA": {}, - "ENTRE COMPANIAS": {}, - "FLETES": {}, - "OTROS": {}, - "POR CONTRATOS": {}, - "TALLER DE VEHICULOS": {}, - "TECNICOS": {} - }, - "UTILIDAD EN VENTA DE INVERSIONES": { - "ACCIONES": {}, - "AJUSTES POR INFLACION": {}, - "BONOS": {}, - "CEDULAS": {}, - "CERTIFICADOS": {}, - "CUOTAS O PARTES DE INTERES SOCIAL": {}, - "DERECHOS FIDUCIARIOS": {}, - "OBLIGATORIAS": {}, - "OTRAS": {}, - "PAPELES COMERCIALES": {}, - "TITULOS": {} - }, - "UTILIDAD EN VENTA DE OTROS BIENES": { - "AJUSTES POR INFLACION": {}, - "INTANGIBLES": {}, - "OTROS ACTIVOS": {} - }, - "UTILIDAD EN VENTA DE PROPIEDADES, PLANTA Y EQUIPO": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "AJUSTES POR INFLACION": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES EN CURSO": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA EN MONTAJE": {}, - "MAQUINARIA Y EQUIPO": {}, - "MATERIALES INDUSTRIA PETROLERA": {}, - "MINAS Y CANTERAS": {}, - "PLANTACIONES AGRICOLAS Y FORESTALES": {}, - "POZOS ARTESIANOS": {}, - "SEMOVIENTES": {}, - "TERRENOS": {}, - "VIAS DE COMUNICACION": {}, - "YACIMIENTOS": {} - } - }, - "OPERACIONALES": { - "ACTIVIDAD FINANCIERA": { - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "COMISIONES": {}, - "CUOTAS DE ADMINISTRACION-CONSORCIOS": {}, - "CUOTAS DE INGRESO O RETIRO-SOCIEDAD ADMINISTRADORA": {}, - "CUOTAS DE INSCRIPCION-CONSORCIOS": {}, - "DIVIDENDOS DE SOCIEDADES ANONIMAS Y/O ASIMILADAS": {}, - "ELIMINACION DE SUSCRIPTORES-CONSORCIOS": {}, - "INGRESOS METODO DE PARTICIPACION": {}, - "INSCRIPCIONES Y CUOTAS": {}, - "INTERESES": {}, - "OPERACIONES DE DESCUENTO": {}, - "PARTICIPACIONES DE SOCIEDADES LIMITADAS Y/O ASIMILADAS": {}, - "REAJUSTE DEL SISTEMA-CONSORCIOS": {}, - "REAJUSTE MONETARIO-UPAC (HOY UVR)": {}, - "RECUPERACION DE GARANTIAS": {}, - "SERVICIOS A COMISIONISTAS": {}, - "VENTA DE INVERSIONES": {} - }, - "ACTIVIDADES INMOBILIARIAS, EMPRESARIALES Y DE ALQUILER": { - "ACTIVIDADES CONEXAS": {}, - "ACTIVIDADES EMPRESARIALES DE CONSULTORIA": {}, - "AJUSTES POR INFLACION": {}, - "ALQUILER DE EFECTOS PERSONALES Y ENSERES DOMESTICOS": {}, - "ALQUILER EQUIPO DE TRANSPORTE": {}, - "ALQUILER MAQUINARIA Y EQUIPO": {}, - "ARRENDAMIENTOS DE BIENES INMUEBLES": {}, - "CONSULTORIA EN EQUIPO Y PROGRAMAS DE INFORMATICA": {}, - "DOTACION DE PERSONAL": {}, - "ENVASE Y EMPAQUE": {}, - "FOTOCOPIADO": {}, - "FOTOGRAFIA": {}, - "INMOBILIARIAS POR RETRIBUCION O CONTRATA": {}, - "INVESTIGACION Y SEGURIDAD": {}, - "INVESTIGACIONES CIENTIFICAS Y DE DESARROLLO": {}, - "LIMPIEZA DE INMUEBLES": {}, - "MANTENIMIENTO Y REPARACION DE MAQUINARIA DE OFICINA": {}, - "MANTENIMIENTO Y REPARACION DE MAQUINARIA Y EQUIPO": {}, - "PROCESAMIENTO DE DATOS": {}, - "PUBLICIDAD": {} - }, - "AGRICULTURA, GANADERIA, CAZA Y SILVICULTURA": { - "ACTIVIDAD DE CAZA": {}, - "ACTIVIDAD DE SILVICULTURA": {}, - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "CRIA DE GANADO CABALLAR Y VACUNO": {}, - "CRIA DE OTROS ANIMALES": {}, - "CRIA DE OVEJAS, CABRAS, ASNOS, MULAS Y BURDEGANOS": {}, - "CULTIVO DE ALGODON Y PLANTAS PARA MATERIAL TEXTIL": {}, - "CULTIVO DE BANANO": {}, - "CULTIVO DE CAFE": {}, - "CULTIVO DE CANA DE AZUCAR": {}, - "CULTIVO DE CEREALES": {}, - "CULTIVO DE FLORES": {}, - "CULTIVOS DE FRUTAS, NUECES Y PLANTAS AROMATICAS": {}, - "CULTIVOS DE HORTALIZAS, LEGUMBRES Y PLANTAS ORNAMENTALES": {}, - "OTROS CULTIVOS AGRICOLAS": {}, - "PRODUCCION AVICOLA": {}, - "SERVICIOS AGRICOLAS Y GANADEROS": {} - }, - "COMERCIO AL POR MAYOR Y AL POR MENOR": { - "AJUSTES POR INFLACION": {}, - "MANTENIMIENTO, REPARACION Y LAVADO DE VEHICULOS AUTOMOTORES": {}, - "REPARACION DE EFECTOS PERSONALES Y ELECTRODOMESTICOS": {}, - "VENTA A CAMBIO DE RETRIBUCION O POR CONTRATA": {}, - "VENTA DE ANIMALES VIVOS Y CUEROS": {}, - "VENTA DE ARTICULOS EN CACHARRERIAS Y MISCELANEAS": {}, - "VENTA DE ARTICULOS EN CASAS DE EMPENO Y PRENDERIAS": {}, - "VENTA DE ARTICULOS EN RELOJERIAS Y JOYERIAS": {}, - "VENTA DE COMBUSTIBLES SOLIDOS, LIQUIDOS, GASEOSOS": {}, - "VENTA DE CUBIERTOS, VAJILLAS, CRISTALERIA, PORCELANAS, CERAMICAS Y OTROS ARTICULOS DE USO DOMESTICO": {}, - "VENTA DE ELECTRODOMESTICOS Y MUEBLES": {}, - "VENTA DE EMPAQUES": {}, - "VENTA DE EQUIPO FOTOGRAFICO": {}, - "VENTA DE EQUIPO OPTICO Y DE PRECISION": {}, - "VENTA DE EQUIPO PROFESIONAL Y CIENTIFICO": {}, - "VENTA DE HERRAMIENTAS Y ARTICULOS DE FERRETERIA": {}, - "VENTA DE INSTRUMENTOS MUSICALES": {}, - "VENTA DE INSTRUMENTOS QUIRURGICOS Y ORTOPEDICOS": {}, - "VENTA DE INSUMOS, MATERIAS PRIMAS AGROPECUARIAS Y FLORES": {}, - "VENTA DE JUEGOS, JUGUETES Y ARTICULOS DEPORTIVOS": {}, - "VENTA DE LIBROS, REVISTAS, ELEMENTOS DE PAPELERIA, UTILES Y TEXTOS ESCOLARES": {}, - "VENTA DE LOTERIAS, RIFAS, CHANCE, APUESTAS Y SIMILARES": {}, - "VENTA DE LUBRICANTES, ADITIVOS, LLANTAS Y LUJOS PARA AUTOMOTORES": {}, - "VENTA DE MAQUINARIA, EQUIPO DE OFICINA Y PROGRAMAS DE COMPUTADOR": {}, - "VENTA DE MATERIALES DE CONSTRUCCION, FONTANERIA Y CALEFACCION": {}, - "VENTA DE OTROS INSUMOS Y MATERIAS PRIMAS NO AGROPECUARIAS": {}, - "VENTA DE OTROS PRODUCTOS": { - "Ingresos Generales": {} - }, - "VENTA DE PAPEL Y CARTON": {}, - "VENTA DE PARTES, PIEZAS Y ACCESORIOS DE VEHICULOS AUTOMOTORES": {}, - "VENTA DE PINTURAS Y LACAS": {}, - "VENTA DE PRODUCTOS AGROPECUARIOS": {}, - "VENTA DE PRODUCTOS DE ASEO, FARMACEUTICOS, MEDICINALES, Y ARTICULOS DE TOCADOR": {}, - "VENTA DE PRODUCTOS DE VIDRIOS Y MARQUETERIA": {}, - "VENTA DE PRODUCTOS EN ALMACENES NO ESPECIALIZADOS": {}, - "VENTA DE PRODUCTOS INTERMEDIOS, DESPERDICIOS Y DESECHOS": {}, - "VENTA DE PRODUCTOS TEXTILES, DE VESTIR, DE CUERO Y CALZADO": {}, - "VENTA DE QUIMICOS": {}, - "VENTA DE VEHICULOS AUTOMOTORES": {} - }, - "CONSTRUCCION": { - "ACONDICIONAMIENTO DE EDIFICIOS": {}, - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "ALQUILER DE EQUIPO CON OPERARIOS": {}, - "CONSTRUCCION DE EDIFICIOS Y OBRAS DE INGENIERIA CIVIL": {}, - "PREPARACION DE TERRENOS": {}, - "TERMINACION DE EDIFICACIONES": {} - }, - "DEVOLUCIONES EN VENTAS (DB)": { - "AJUSTES POR INFLACION": {} - }, - "ENSENANZA": { - "ACTIVIDADES CONEXAS": {}, - "ACTIVIDADES RELACIONADAS CON LA EDUCACION": {}, - "AJUSTES POR INFLACION": {} - }, - "EXPLOTACION DE MINAS Y CANTERAS": { - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "CARBON": {}, - "GAS NATURAL": {}, - "MINERALES DE HIERRO": {}, - "MINERALES METALIFEROS NO FERROSOS": {}, - "ORO": {}, - "OTRAS MINAS Y CANTERAS": {}, - "PETROLEO CRUDO": {}, - "PIEDRA, ARENA Y ARCILLA": {}, - "PIEDRAS PRECIOSAS": {}, - "PRESTACION DE SERVICIOS SECTOR MINERO": {}, - "SERVICIOS RELACIONADOS CON EXTRACCION DE PETROLEO Y GAS": {} - }, - "HOTELES Y RESTAURANTES": { - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "BARES Y CANTINAS": {}, - "CAMPAMENTO Y OTROS TIPOS DE HOSPEDAJE": {}, - "HOTELERIA": {}, - "RESTAURANTES": {} - }, - "INDUSTRIAS MANUFACTURERAS": { - "ACABADO DE PRODUCTOS TEXTILES": {}, - "AJUSTES POR INFLACION": {}, - "CORTE, TALLADO Y ACABADO DE LA PIEDRA": {}, - "CURTIDO, ADOBO O PREPARACION DE CUERO": {}, - "EDICIONES Y PUBLICACIONES": {}, - "ELABORACION DE ABONOS Y COMPUESTOS DE NITROGENO": {}, - "ELABORACION DE ACEITES Y GRASAS": {}, - "ELABORACION DE ALIMENTOS PARA ANIMALES": {}, - "ELABORACION DE ALMIDONES Y DERIVADOS": {}, - "ELABORACION DE APARATOS DE USO DOMESTICO": {}, - "ELABORACION DE ARTICULOS DE HORMIGON, CEMENTO Y YESO": {}, - "ELABORACION DE ARTICULOS DE MATERIALES TEXTILES": {}, - "ELABORACION DE AZUCAR Y MELAZAS": {}, - "ELABORACION DE BEBIDAS ALCOHOLICAS Y ALCOHOL ETILICO": {}, - "ELABORACION DE BEBIDAS MALTEADAS Y DE MALTA": {}, - "ELABORACION DE BEBIDAS NO ALCOHOLICAS": {}, - "ELABORACION DE CACAO, CHOCOLATE Y CONFITERIA": {}, - "ELABORACION DE CALZADO": {}, - "ELABORACION DE CEMENTO, CAL Y YESO": {}, - "ELABORACION DE CUERDAS, CORDELES, BRAMANTES Y REDES": {}, - "ELABORACION DE EQUIPO DE ILUMINACION": {}, - "ELABORACION DE EQUIPO DE OFICINA": {}, - "ELABORACION DE FIBRAS": {}, - "ELABORACION DE JABONES, DETERGENTES Y PREPARADOS DE TOCADOR": {}, - "ELABORACION DE MALETAS, BOLSOS Y SIMILARES": {}, - "ELABORACION DE OTROS PRODUCTOS ALIMENTICIOS": {}, - "ELABORACION DE OTROS PRODUCTOS DE CAUCHO": {}, - "ELABORACION DE OTROS PRODUCTOS DE METAL": {}, - "ELABORACION DE OTROS PRODUCTOS MINERALES NO METALICOS": {}, - "ELABORACION DE OTROS PRODUCTOS QUIMICOS": {}, - "ELABORACION DE OTROS PRODUCTOS TEXTILES": {}, - "ELABORACION DE OTROS TIPOS DE EQUIPO ELECTRICO": {}, - "ELABORACION DE PASTA Y PRODUCTOS DE MADERA, PAPEL Y CARTON": {}, - "ELABORACION DE PASTAS Y PRODUCTOS FARINACEOS": {}, - "ELABORACION DE PILAS Y BATERIAS PRIMARIAS": {}, - "ELABORACION DE PINTURAS, TINTAS Y MASILLAS": {}, - "ELABORACION DE PLASTICO Y CAUCHO SINTETICO": {}, - "ELABORACION DE PRENDAS DE VESTIR": {}, - "ELABORACION DE PRODUCTOS DE CAFE": {}, - "ELABORACION DE PRODUCTOS DE CERAMICA, LOZA, PIEDRA, ARCILLA Y PORCELANA": {}, - "ELABORACION DE PRODUCTOS DE HORNO DE COQUE": {}, - "ELABORACION DE PRODUCTOS DE LA REFINACION DE PETROLEO": {}, - "ELABORACION DE PRODUCTOS DE MOLINERIA": {}, - "ELABORACION DE PRODUCTOS DE PLASTICO": {}, - "ELABORACION DE PRODUCTOS DE TABACO": {}, - "ELABORACION DE PRODUCTOS FARMACEUTICOS Y BOTANICOS": {}, - "ELABORACION DE PRODUCTOS LACTEOS": {}, - "ELABORACION DE PRODUCTOS PARA PANADERIA": {}, - "ELABORACION DE PRODUCTOS QUIMICOS DE USO AGROPECUARIO": {}, - "ELABORACION DE SUSTANCIAS QUIMICAS BASICAS": {}, - "ELABORACION DE TAPICES Y ALFOMBRAS": {}, - "ELABORACION DE TEJIDOS": {}, - "ELABORACION DE VIDRIO Y PRODUCTOS DE VIDRIO": {}, - "ELABORACION DE VINOS": {}, - "FABRICACION DE AERONAVES": {}, - "FABRICACION DE APARATOS E INSTRUMENTOS MEDICOS": {}, - "FABRICACION DE ARTICULOS DE FERRETERIA": {}, - "FABRICACION DE ARTICULOS Y EQUIPO PARA DEPORTE": {}, - "FABRICACION DE BICICLETAS Y SILLAS DE RUEDAS": {}, - "FABRICACION DE CARROCERIAS PARA AUTOMOTORES": {}, - "FABRICACION DE EQUIPOS DE ELEVACION Y MANIPULACION": {}, - "FABRICACION DE EQUIPOS DE RADIO, TELEVISION Y COMUNICACIONES": {}, - "FABRICACION DE INSTRUMENTOS DE MEDICION Y CONTROL": {}, - "FABRICACION DE INSTRUMENTOS DE MUSICA": {}, - "FABRICACION DE INSTRUMENTOS DE OPTICA Y EQUIPO FOTOGRAFICO": {}, - "FABRICACION DE JOYAS Y ARTICULOS CONEXOS": {}, - "FABRICACION DE JUEGOS Y JUGUETES": {}, - "FABRICACION DE LOCOMOTORAS Y MATERIAL RODANTE PARA FERROCARRILES": {}, - "FABRICACION DE MAQUINARIA Y EQUIPO": {}, - "FABRICACION DE MOTOCICLETAS": {}, - "FABRICACION DE MUEBLES": {}, - "FABRICACION DE OTROS TIPOS DE TRANSPORTE": {}, - "FABRICACION DE PARTES PIEZAS Y ACCESORIOS PARA AUTOMOTORES": {}, - "FABRICACION DE PRODUCTOS METALICOS PARA USO ESTRUCTURAL": {}, - "FABRICACION DE RELOJES": {}, - "FABRICACION DE VEHICULOS AUTOMOTORES": {}, - "FABRICACION Y REPARACION DE BUQUES Y OTRAS EMBARCACIONES": {}, - "FORJA, PRENSADO, ESTAMPADO, LAMINADO DE METAL Y PULVIMETALURGIA": {}, - "FUNDICION DE METALES NO FERROSOS": {}, - "IMPRESION": {}, - "INDUSTRIAS BASICAS Y FUNDICION DE HIERRO Y ACERO": {}, - "PREPARACION E HILATURA DE FIBRAS TEXTILES Y TEJEDURIA": {}, - "PREPARACION, ADOBO Y TENIDO DE PIELES": {}, - "PRODUCCION DE MADERA, ARTICULOS DE MADERA Y CORCHO": {}, - "PRODUCCION Y PROCESAMIENTO DE CARNES Y PRODUCTOS CARNICOS": {}, - "PRODUCTOS DE FRUTAS, LEGUMBRES Y HORTALIZAS": {}, - "PRODUCTOS DE OTRAS INDUSTRIAS MANUFACTURERAS": {}, - "PRODUCTOS DE PESCADO": {}, - "PRODUCTOS PRIMARIOS DE METALES PRECIOSOS Y DE METALES NO FERROSOS": {}, - "RECICLAMIENTO DE DESPERDICIOS": {}, - "REPRODUCCION DE GRABACIONES": {}, - "REVESTIMIENTO DE METALES Y OBRAS DE INGENIERIA MECANICA": {}, - "SERVICIOS RELACIONADOS CON LA EDICION Y LA IMPRESION": {} - }, - "OTRAS ACTIVIDADES DE SERVICIOS COMUNITARIOS, SOCIALES Y PERSONALES": { - "ACTIVIDAD DE RADIO Y TELEVISION": {}, - "ACTIVIDAD TEATRAL, MUSICAL Y ARTISTICA": {}, - "ACTIVIDADES CONEXAS": {}, - "ACTIVIDADES DE ASOCIACION": {}, - "AGENCIAS DE NOTICIAS": {}, - "AJUSTES POR INFLACION": {}, - "ELIMINACION DE DESPERDICIOS Y AGUAS RESIDUALES": {}, - "ENTRETENIMIENTO Y ESPARCIMIENTO": {}, - "EXHIBICION DE FILMES Y VIDEOCINTAS": {}, - "GRABACION Y PRODUCCION DE DISCOS": {}, - "LAVANDERIAS Y SIMILARES": {}, - "PELUQUERIAS Y SIMILARES": {}, - "PRODUCCION Y DISTRIBUCION DE FILMES Y VIDEOCINTAS": {}, - "SERVICIOS FUNERARIOS": {}, - "ZONAS FRANCAS": {} - }, - "PESCA": { - "ACTIVIDAD DE PESCA": {}, - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "EXPLOTACION DE CRIADEROS DE PECES": {} - }, - "SERVICIOS SOCIALES Y DE SALUD": { - "ACTIVIDADES CONEXAS": {}, - "ACTIVIDADES DE SERVICIOS SOCIALES": {}, - "ACTIVIDADES VETERINARIAS": {}, - "AJUSTES POR INFLACION": {}, - "SERVICIO DE LABORATORIO": {}, - "SERVICIO HOSPITALARIO": {}, - "SERVICIO MEDICO": {}, - "SERVICIO ODONTOLOGICO": {} - }, - "SUMINISTRO DE ELECTRICIDAD, GAS Y AGUA": { - "ACTIVIDADES CONEXAS": {}, - "AJUSTES POR INFLACION": {}, - "CAPTACION, DEPURACION Y DISTRIBUCION DE AGUA": {}, - "FABRICACION DE GAS Y DISTRIBUCION DE COMBUSTIBLES GASEOSOS": {}, - "GENERACION, CAPTACION Y DISTRIBUCION DE ENERGIA ELECTRICA": {} - }, - "TRANSPORTE, ALMACENAMIENTO Y COMUNICACIONES": { - "ACTIVIDADES CONEXAS": {}, - "AGENCIAS DE VIAJE": {}, - "AJUSTES POR INFLACION": {}, - "ALMACENAMIENTO Y DEPOSITO": {}, - "MANIPULACION DE CARGA": {}, - "OTRAS AGENCIAS DE TRANSPORTE": {}, - "SERVICIO DE RADIO Y TELEVISION POR CABLE": {}, - "SERVICIO DE TELEGRAFO": {}, - "SERVICIO DE TRANSMISION DE DATOS": {}, - "SERVICIO DE TRANSPORTE POR CARRETERA": {}, - "SERVICIO DE TRANSPORTE POR TUBERIAS": {}, - "SERVICIO DE TRANSPORTE POR VIA ACUATICA": {}, - "SERVICIO DE TRANSPORTE POR VIA AEREA": {}, - "SERVICIO DE TRANSPORTE POR VIA FERREA": {}, - "SERVICIO POSTAL Y DE CORREO": {}, - "SERVICIO TELEFONICO": {}, - "SERVICIOS COMPLEMENTARIOS PARA EL TRANSPORTE": {}, - "TRANSMISION DE SONIDO E IMAGENES POR CONTRATO": {} - } - }, - "root_type": "Income" - }, - "PASIVO": { - "BONOS Y PAPELES COMERCIALES": { - "BONOS EN CIRCULACION": {}, - "BONOS OBLIGATORIAMENTE CONVERTIBLES EN ACCIONES": {}, - "BONOS PENSIONALES": { - "BONOS PENSIONALES POR AMORTIZAR (DB)": {}, - "INTERESES CAUSADOS SOBRE BONOS PENSIONALES": {}, - "VALOR BONOS PENSIONALES": {} - }, - "PAPELES COMERCIALES": {}, - "TITULOS PENSIONALES": { - "INTERESES CAUSADOS SOBRE TITULOS PENSIONALES": {}, - "TITULOS PENSIONALES POR AMORTIZAR (DB)": {}, - "VALOR TITULOS PENSIONALES": {} - } - }, - "CUENTAS POR PAGAR": { - "A CASA MATRIZ": {}, - "A COMPANIAS VINCULADAS": {}, - "A CONTRATISTAS": {}, - "ACREEDORES OFICIALES": {}, - "ACREEDORES VARIOS": { - "COMISIONISTAS DE BOLSAS": {}, - "DEPOSITARIOS": {}, - "DONACIONES ASIGNADAS POR PAGAR": {}, - "FONDO DE PERSEVERANCIA": {}, - "FONDOS DE CESANTIAS Y/O PENSIONES": {}, - "OTROS": { - "Generica a Pagarr": {} - }, - "REINTEGROS POR PAGAR": {}, - "SOCIEDAD ADMINISTRADORA-FONDOS DE INVERSION": {} - }, - "COSTOS Y GASTOS POR PAGAR": { - "ARRENDAMIENTOS": {}, - "COMISIONES": {}, - "GASTOS DE REPRESENTACION Y RELACIONES PUBLICAS": {}, - "GASTOS DE VIAJE": {}, - "GASTOS FINANCIEROS": {}, - "GASTOS LEGALES": {}, - "HONORARIOS": {}, - "LIBROS, SUSCRIPCIONES, PERIODICOS Y REVISTAS": {}, - "OTROS": {}, - "SEGUROS": {}, - "SERVICIOS ADUANEROS": {}, - "SERVICIOS DE MANTENIMIENTO": {}, - "SERVICIOS PUBLICOS": {}, - "SERVICIOS TECNICOS": {}, - "TRANSPORTES, FLETES Y ACARREOS": {} - }, - "CUENTAS CORRIENTES COMERCIALES": {}, - "CUOTAS POR DEVOLVER": {}, - "DEUDAS CON ACCIONISTAS O SOCIOS": { - "ACCIONISTAS": {}, - "SOCIOS": {} - }, - "DEUDAS CON DIRECTORES": {}, - "DIVIDENDOS O PARTICIPACIONES POR PAGAR": { - "DIVIDENDOS": { - "LIGINA MARINA CANELON CASTELLANOS": {} - }, - "PARTICIPACIONES": {} - }, - "IMPUESTO A LAS VENTAS RETENIDO": { - "IMPUESTO A LAS VENTAS RETENIDO": { - "IMPUESTO A LAS VENTAS RETENIDO": {} - } - }, - "IMPUESTO DE INDUSTRIA Y COMERCIO RETENIDO": { - "IMPUESTO DE INDUSTRIA Y COMERCIO RETENIDO": { - "IMPUESTO DE INDUSTRIA Y COMERCIO RETENIDO": {} - } - }, - "INSTALAMENTOS POR PAGAR": {}, - "ORDENES DE COMPRA POR UTILIZAR": {}, - "REGALIAS POR PAGAR": {}, - "RETENCION EN LA FUENTE": { - "ARRENDAMIENTOS": { - "ARRENDAMIENTOS BIENES INMUEBLES": {} - }, - "AUTORRETENCIONES": {}, - "COMISIONES": { - "COMISIONES": {} - }, - "COMPRAS": { - "COMPRAS GRAL": {} - }, - "DIVIDENDOS Y/O PARTICIPACIONES": {}, - "ENAJENACION PROPIEDADES PLANTA Y EQUIPO, PERSONAS NATURALES": {}, - "HONORARIOS": { - "RETEFTE HONORARIOS 10%": {}, - "RETEFTE HONORARIOS 11%": {} - }, - "LOTERIAS, RIFAS, APUESTAS Y SIMILARES": {}, - "OTRAS RETENCIONES Y PATRIMONIO": { - "OTRAS RETENCIONES Y PATRIMONIO": {} - }, - "PAGO DIAN RETENCIONES": { - "PAGO DIAN RETENCIONES": {} - }, - "POR IMPUESTO DE TIMBRE": {}, - "POR INGRESOS OBTENIDOS EN EL EXTERIOR": {}, - "POR PAGOS AL EXTERIOR": {}, - "RENDIMIENTOS FINANCIEROS": {}, - "SALARIOS Y PAGOS LABORALES": { - "SALARIOS Y PAGOS LABORALES": {} - }, - "SERVICIOS": { - "ASEO Y/O VIGILANCIA": {}, - "DE HOTEL, RESTAURANTE Y HOSPEDAJE": {}, - "SERVICIOS GRAL DECLARANTES": {}, - "SERVICIOS GRAL NO DECLARANTES": {}, - "SERVICIOS TEMPORALES": {}, - "TRANSPORTE DE CARGA": {}, - "TRANSPORTE DE PASAJEROS TERRESTRE": {} - } - }, - "RETENCIONES Y APORTES DE NOMINA": { - "APORTES A ADMINISTRADORAS DE RIESGOS PROFESIONALES, ARP": {}, - "APORTES A ENTIDADES PROMOTORAS DE SALUD, EPS": {}, - "APORTES AL FIC": {}, - "APORTES AL ICBF, SENA Y CAJAS DE COMPENSACION": {}, - "COOPERATIVAS": {}, - "EMBARGOS JUDICIALES": {}, - "FONDOS": {}, - "LIBRANZAS": {}, - "OTROS": {}, - "SINDICATOS": {} - } - }, - "DIFERIDOS": { - "ABONOS DIFERIDOS": { - "REAJUSTE DEL SISTEMA": {} - }, - "CREDITO POR CORRECCION MONETARIA DIFERIDA": {}, - "IMPUESTOS DIFERIDOS": { - "AJUSTES POR INFLACION": {}, - "DIVERSOS": {}, - "POR DEPRECIACION FLEXIBLE": {} - }, - "INGRESOS RECIBIDOS POR ANTICIPADO": { - "ARRENDAMIENTOS": {}, - "COMISIONES": {}, - "CUOTAS DE ADMINISTRACION": {}, - "DE SUSCRIPTORES": {}, - "HONORARIOS": {}, - "INTERESES": {}, - "MATRICULAS Y PENSIONES": {}, - "MERCANCIA EN TRANSITO YA VENDIDA": {}, - "OTROS": {}, - "SERVICIOS TECNICOS": {}, - "TRANSPORTES, FLETES Y ACARREOS": {} - }, - "UTILIDAD DIFERIDA EN VENTAS A PLAZOS": {} - }, - "IMPUESTOS, GRAVAMENES Y TASAS": { - "A LA PROPIEDAD RAIZ": {}, - "A LAS EXPORTACIONES CAFETERAS": {}, - "A LAS IMPORTACIONES": {}, - "AL AZAR Y JUEGOS": {}, - "AL SACRIFICIO DE GANADO": {}, - "CUOTAS DE FOMENTO": {}, - "DE ESPECTACULOS PUBLICOS": {}, - "DE HIDROCARBUROS Y MINAS": { - "DE HIDROCARBUROS": {}, - "DE MINAS": {} - }, - "DE INDUSTRIA Y COMERCIO": { - "VIGENCIA FISCAL CORRIENTE": { - "IMPUESTO GENERADO": {}, - "IMPUESTOS DESCOTABLES": {}, - "IMPUESTOS RETENIDOS": {}, - "PAGOS SECRETARIA DE HACIENDA DISTRITAL": {} - }, - "VIGENCIAS FISCALES ANTERIORES": {} - }, - "DE LICORES, CERVEZAS Y CIGARRILLOS": { - "DE CERVEZAS": {}, - "DE CIGARRILLOS": {}, - "DE LICORES": {} - }, - "DE RENTA Y COMPLEMENTARIOS": { - "VIGENCIA FISCAL CORRIENTE": {}, - "VIGENCIAS FISCALES ANTERIORES": {} - }, - "DE TURISMO": {}, - "DE VALORIZACION": { - "VIGENCIA FISCAL CORRIENTE": {}, - "VIGENCIAS FISCALES ANTERIORES": {} - }, - "DE VEHICULOS": { - "VIGENCIA FISCAL CORRIENTE": {}, - "VIGENCIAS FISCALES ANTERIORES": {} - }, - "DERECHOS SOBRE INSTRUMENTOS PUBLICOS": {}, - "GRAVAMENES Y REGALIAS POR UTILIZACION DEL SUELO": {}, - "IMPUESTO SOBRE LAS VENTAS POR PAGAR": { - "IVA DESCONTABLE": { - "IVA DESCONTABLE": {} - }, - "IVA GENERADO": { - "IVA GENERADO": {} - }, - "IVA RETENIDO": { - "IVA RETENIDO": {} - }, - "PAGOS DIAN": { - "PAGOS DIAN": {} - } - }, - "OTROS": {}, - "REGALIAS E IMPUESTOS A LA PEQUENA Y MEDIANA MINERIA": {}, - "TASA POR UTILIZACION DE PUERTOS": {} - }, - "OBLIGACIONES FINANCIERAS": { - "BANCOS DEL EXTERIOR": { - "ACEPTACIONES BANCARIAS": {}, - "CARTAS DE CREDITO": {}, - "PAGARES": {}, - "SOBREGIROS": {} - }, - "BANCOS NACIONALES": { - "ACEPTACIONES BANCARIAS": {}, - "CARTAS DE CREDITO": {}, - "PAGARES": { - "BANCOLOMBIA MORATO": {} - }, - "SOBREGIROS": {} - }, - "COMPANIAS DE FINANCIAMIENTO COMERCIAL": { - "ACEPTACIONES FINANCIERAS": {}, - "CONTRATOS DE ARRENDAMIENTO FINANCIERO (LEASING)": {}, - "PAGARES": {} - }, - "COMPROMISOS DE RECOMPRA DE CARTERA NEGOCIADA": {}, - "COMPROMISOS DE RECOMPRA DE INVERSIONES NEGOCIADAS": { - "ACCIONES": {}, - "ACEPTACIONES BANCARIAS O FINANCIERAS": {}, - "BONOS": {}, - "CEDULAS": {}, - "CERTIFICADOS": {}, - "CUOTAS O PARTES DE INTERES SOCIAL": {}, - "OTROS": {}, - "PAPELES COMERCIALES": {}, - "TITULOS": {} - }, - "CORPORACIONES DE AHORRO Y VIVIENDA": { - "HIPOTECARIAS": {}, - "PAGARES": {}, - "SOBREGIROS": {} - }, - "CORPORACIONES FINANCIERAS": { - "ACEPTACIONES FINANCIERAS": {}, - "CARTAS DE CREDITO": {}, - "CONTRATOS DE ARRENDAMIENTO FINANCIERO (LEASING)": {}, - "PAGARES": {} - }, - "ENTIDADES FINANCIERAS DEL EXTERIOR": {}, - "OBLIGACIONES GUBERNAMENTALES": { - "ENTIDADES OFICIALES": {}, - "GOBIERNO NACIONAL": {} - }, - "OTRAS OBLIGACIONES": { - "CASA MATRIZ": {}, - "COMPANIAS VINCULADAS": {}, - "DIRECTORES": {}, - "FONDOS Y COOPERATIVAS": {}, - "OTRAS": {}, - "PARTICULARES": { - "PARTICULARES": {} - }, - "SOCIOS O ACCIONISTAS": {} - } - }, - "OBLIGACIONES LABORALES": { - "CESANTIAS CONSOLIDADAS": { - "LEY 50 DE 1990 Y NORMAS POSTERIORES": {}, - "LEY LABORAL ANTERIOR": {} - }, - "CUOTAS PARTES PENSIONES DE JUBILACION": {}, - "INDEMNIZACIONES LABORALES": {}, - "INTERESES SOBRE CESANTIAS": {}, - "PENSIONES POR PAGAR": {}, - "PRESTACIONES EXTRALEGALES": { - "AUXILIOS": {}, - "BONIFICACIONES": {}, - "DOTACION Y SUMINISTRO A TRABAJADORES": {}, - "OTRAS": {}, - "PRIMAS": {}, - "SEGUROS": {} - }, - "PRIMA DE SERVICIOS": {}, - "SALARIOS POR PAGAR": {}, - "VACACIONES CONSOLIDADAS": {} - }, - "OTROS PASIVOS": { - "ACREEDORES DEL SISTEMA": { - "CUOTAS NETAS": {}, - "GRUPOS EN FORMACION": {} - }, - "ANTICIPOS Y AVANCES RECIBIDOS": { - "DE CLIENTES": {}, - "OTROS": {}, - "PARA OBRAS EN PROCESO": {}, - "SOBRE CONTRATOS": {} - }, - "CUENTAS DE OPERACION CONJUNTA": {}, - "CUENTAS EN PARTICIPACION": {}, - "DEPOSITOS RECIBIDOS": { - "DE LICITACIONES": {}, - "DE MANEJO DE BIENES": {}, - "FONDO DE RESERVA": {}, - "OTROS": {}, - "PARA FUTURA SUSCRIPCION DE ACCIONES": {}, - "PARA FUTURO PAGO DE CUOTAS O DERECHOS SOCIALES": {}, - "PARA GARANTIA DE CONTRATOS": {}, - "PARA GARANTIA EN LA PRESTACION DE SERVICIOS": {} - }, - "DIVERSOS": { - "PRESTAMOS DE PRODUCTOS": {}, - "PROGRAMA DE EXTENSION AGROPECUARIA": {}, - "REEMBOLSO DE COSTOS EXPLORATORIOS": {} - }, - "EMBARGOS JUDICIALES": { - "DEPOSITOS JUDICIALES": {}, - "INDEMNIZACIONES": {} - }, - "INGRESOS RECIBIDOS PARA TERCEROS": { - "VALORES RECIBIDOS PARA TERCEROS": {}, - "VENTA POR CUENTA DE TERCEROS": {} - }, - "RETENCIONES A TERCEROS SOBRE CONTRATOS": { - "CUMPLIMIENTO OBLIGACIONES LABORALES": {}, - "GARANTIA CUMPLIMIENTO DE CONTRATOS": {}, - "PARA ESTABILIDAD DE OBRA": {} - } - }, - "PASIVOS ESTIMADOS Y PROVISIONES": { - "PARA CONTINGENCIAS": { - "ADMINISTRATIVOS": {}, - "CIVILES": {}, - "COMERCIALES": {}, - "INTERESES POR MULTAS Y SANCIONES": {}, - "LABORALES": {}, - "MULTAS Y SANCIONES AUTORIDADES ADMINISTRATIVAS": {}, - "OTRAS": {}, - "PENALES": {}, - "RECLAMOS": {} - }, - "PARA COSTOS Y GASTOS": { - "COMISIONES": {}, - "GARANTIAS": {}, - "GASTOS DE VIAJE": {}, - "HONORARIOS": {}, - "INTERESES": {}, - "MATERIALES Y REPUESTOS": {}, - "OTROS": {}, - "REGALIAS": {}, - "SERVICIOS PUBLICOS": {}, - "SERVICIOS TECNICOS": {}, - "TRANSPORTES, FLETES Y ACARREOS": {} - }, - "PARA MANTENIMIENTO Y REPARACIONES": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "OTROS": {}, - "PLANTACIONES AGRICOLAS Y FORESTALES": {}, - "POZOS ARTESIANOS": {}, - "TERRENOS": {}, - "VIAS DE COMUNICACION": {} - }, - "PARA OBLIGACIONES DE GARANTIAS": {}, - "PARA OBLIGACIONES FISCALES": { - "DE HIDROCARBUROS Y MINAS": {}, - "DE INDUSTRIA Y COMERCIO": {}, - "DE RENTA Y COMPLEMENTARIOS": {}, - "DE VEHICULOS": {}, - "OTROS": {}, - "TASA POR UTILIZACION DE PUERTOS": {} - }, - "PARA OBLIGACIONES LABORALES": { - "CESANTIAS": {}, - "INTERESES SOBRE CESANTIAS": {}, - "OTRAS": {}, - "PRESTACIONES EXTRALEGALES": {}, - "PRIMA DE SERVICIOS": {}, - "VACACIONES": {}, - "VIATICOS": {} - }, - "PARA OBRAS DE URBANISMO": { - "ACUEDUCTO Y ALCANTARILLADO": {}, - "ENERGIA ELECTRICA": {}, - "OTROS": {}, - "TELEFONOS": {} - }, - "PENSIONES DE JUBILACION": { - "CALCULO ACTUARIAL PENSIONES DE JUBILACION": {}, - "PENSIONES DE JUBILACION POR AMORTIZAR (DB)": {} - }, - "PROVISIONES DIVERSAS": { - "AUTOSEGURO": {}, - "OTRAS": {}, - "PARA AJUSTES EN REDENCION DE UNIDADES": {}, - "PARA BENEFICENCIA": {}, - "PARA COMUNICACIONES": {}, - "PARA OPERACION": {}, - "PARA PERDIDA EN TRANSPORTE": {}, - "PARA PROTECCION DE BIENES AGOTABLES": {}, - "PLANES Y PROGRAMAS DE REFORESTACION Y ELECTRIFICACION": {} - } - }, - "PROVEEDORES": { - "CASA MATRIZ": {}, - "COMPANIAS VINCULADAS": {}, - "CUENTAS CORRIENTES COMERCIALES": {}, - "DEL EXTERIOR": { - "PROVEEDORES EXTRANJEROS CXP": { - "PROVEEDORES EXTRANJEROS CXP": {} - } - }, - "NACIONALES": { - "PROVEEDORES NACIONALES CXP": { - "PROVEEDORES NACIONALES CXP": {} - } - } - }, - "root_type": "Liability" - }, - "PATRIMONIO": { - "CAPITAL SOCIAL": { - "APORTES DEL ESTADO": {}, - "APORTES SOCIALES": { - "APORTES DE SOCIOS-FONDO MUTUO DE INVERSION": {}, - "CONTRIBUCION DE LA EMPRESA-FONDO MUTUO DE INVERSION": {}, - "CUOTAS O PARTES DE INTERES SOCIAL": {}, - "SUSCRIPCIONES DEL PUBLICO": {} - }, - "CAPITAL ASIGNADO": {}, - "CAPITAL DE PERSONAS NATURALES": {}, - "CAPITAL SUSCRITO Y PAGADO": { - "CAPITAL AUTORIZADO": {}, - "CAPITAL POR SUSCRIBIR (DB)": {}, - "CAPITAL SUSCRITO POR COBRAR (DB)": {}, - "CAPITAL SUSCRITO Y PAGADO": { - "CAPITAL SUSCRITO Y PAGADO": {} - } - }, - "FONDO SOCIAL": {}, - "INVERSION SUPLEMENTARIA AL CAPITAL ASIGNADO": {} - }, - "DIVIDENDOS O PARTICIPACIONES DECRETADOS EN ACCIONES, CUOTAS O PARTES DE INTERES SOCIAL": { - "DIVIDENDOS DECRETADOS EN ACCIONES": {}, - "PARTICIPACIONES DECRETADAS EN CUOTAS O PARTES DE INTERES SOCIAL": {} - }, - "RESERVAS": { - "RESERVAS ESTATUTARIAS": { - "OTRAS": {}, - "PARA FUTURAS CAPITALIZACIONES": {}, - "PARA FUTUROS ENSANCHES": {}, - "PARA REPOSICION DE ACTIVOS": {} - }, - "RESERVAS OBLIGATORIAS": { - "ACCIONES PROPIAS READQUIRIDAS (DB)": {}, - "CUOTAS O PARTES DE INTERES SOCIAL PROPIAS READQUIRIDAS (DB)": {}, - "OTRAS": {}, - "RESERVA LEGAL": {}, - "RESERVA LEY 4\u00aa DE 1980": {}, - "RESERVA LEY 7\u00aa DE 1990": {}, - "RESERVA PARA EXTENSION AGROPECUARIA": {}, - "RESERVA PARA READQUISICION DE ACCIONES": {}, - "RESERVA PARA READQUISICION DE CUOTAS O PARTES DE INTERES SOCIAL": {}, - "RESERVA PARA REPOSICION DE SEMOVIENTES": {}, - "RESERVAS POR DISPOSICIONES FISCALES": {} - }, - "RESERVAS OCASIONALES": { - "A DISPOSICION DEL MAXIMO ORGANO SOCIAL": {}, - "OTRAS": {}, - "PARA ADQUISICION O REPOSICION DE PROPIEDADES, PLANTA Y EQUIPO": {}, - "PARA BENEFICENCIA Y CIVISMO": {}, - "PARA CAPITAL DE TRABAJO": {}, - "PARA ESTABILIZACION DE RENDIMIENTOS": {}, - "PARA FOMENTO ECONOMICO": {}, - "PARA FUTURAS CAPITALIZACIONES": {}, - "PARA FUTUROS ENSANCHES": {}, - "PARA INVESTIGACIONES Y DESARROLLO": {} - } - }, - "RESULTADOS DE EJERCICIOS ANTERIORES": { - "PERDIDAS ACUMULADAS": {}, - "UTILIDADES ACUMULADAS": {} - }, - "RESULTADOS DEL EJERCICIO": { - "PERDIDA DEL EJERCICIO": {}, - "UTILIDAD DEL EJERCICIO": { - "UTILIDAD DEL EJERCICIO": { - "UTILIDAD DEL EJERCICIO": {} - } - } - }, - "REVALORIZACION DEL PATRIMONIO": { - "AJUSTES POR INFLACION": { - "DE ACTIVOS EN PERIODO IMPRODUCTIVO": {}, - "DE AJUSTES DECRETO 3019 DE 1989": {}, - "DE CAPITAL SOCIAL": {}, - "DE DIVIDENDOS Y PARTICIPACIONES DECRETADAS EN ACCIONES, CUOTAS O PARTES DE INTERES SOCIAL": {}, - "DE RESERVAS": {}, - "DE RESULTADOS DE EJERCICIOS ANTERIORES": {}, - "DE SANEAMIENTO FISCAL": {}, - "DE SUPERAVIT DE CAPITAL": {}, - "SUPERAVIT METODO DE PARTICIPACION": {} - }, - "AJUSTES POR INFLACION DECRETO 3019 DE 1989": {}, - "SANEAMIENTO FISCAL": {} - }, - "SUPERAVIT DE CAPITAL": { - "CREDITO MERCANTIL": {}, - "DONACIONES": { - "EN BIENES INMUEBLES": {}, - "EN BIENES MUEBLES": {}, - "EN DINERO": {}, - "EN INTANGIBLES": {}, - "EN VALORES MOBILIARIOS": {} - }, - "KNOW HOW": {}, - "PRIMA EN COLOCACION DE ACCIONES, CUOTAS O PARTES DE INTERES SOCIAL": { - "PRIMA EN COLOCACION DE ACCIONES": {}, - "PRIMA EN COLOCACION DE ACCIONES POR COBRAR (DB)": {}, - "PRIMA EN COLOCACION DE CUOTAS O PARTES DE INTERES SOCIAL": {} - }, - "SUPERAVIT METODO DE PARTICIPACION": { - "DE ACCIONES": {}, - "DE CUOTAS O PARTES DE INTERES SOCIAL": {} - } - }, - "SUPERAVIT POR VALORIZACIONES": { - "DE INVERSIONES": { - "ACCIONES": {}, - "CUOTAS O PARTES DE INTERES SOCIAL": {}, - "DERECHOS FIDUCIARIOS": {} - }, - "DE OTROS ACTIVOS": { - "BIENES DE ARTE Y CULTURA": {}, - "BIENES ENTREGADOS EN COMODATO": {}, - "BIENES RECIBIDOS EN PAGO": {}, - "INVENTARIO DE SEMOVIENTES": {} - }, - "DE PROPIEDADES, PLANTA Y EQUIPO": { - "ACUEDUCTOS, PLANTAS Y REDES": {}, - "ARMAMENTO DE VIGILANCIA": {}, - "CONSTRUCCIONES Y EDIFICACIONES": {}, - "ENVASES Y EMPAQUES": {}, - "EQUIPO DE COMPUTACION Y COMUNICACION": {}, - "EQUIPO DE HOTELES Y RESTAURANTES": {}, - "EQUIPO DE OFICINA": {}, - "EQUIPO MEDICO-CIENTIFICO": {}, - "FLOTA Y EQUIPO AEREO": {}, - "FLOTA Y EQUIPO DE TRANSPORTE": {}, - "FLOTA Y EQUIPO FERREO": {}, - "FLOTA Y EQUIPO FLUVIAL Y/O MARITIMO": {}, - "MAQUINARIA Y EQUIPO": {}, - "MATERIALES PROYECTOS PETROLEROS": {}, - "MINAS Y CANTERAS": {}, - "PLANTACIONES AGRICOLAS Y FORESTALES": {}, - "POZOS ARTESIANOS": {}, - "SEMOVIENTES": {}, - "TERRENOS": {}, - "VIAS DE COMUNICACION": {}, - "YACIMIENTOS": {} - } - }, - "root_type": "Asset" - } - } -} diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/co_plan_unico_de_cuentas.json b/erpnext/accounts/doctype/account/chart_of_accounts/verified/co_plan_unico_de_cuentas.json new file mode 100644 index 0000000000..622f4b661b --- /dev/null +++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/co_plan_unico_de_cuentas.json @@ -0,0 +1,9400 @@ +{ + "country_code": "co", + "name": "Colombia PUC", + "tree": { + "Activo": { + "account_number": "1", + "root_type": "Asset", + "Disponible": { + "account_number": "11", + "Caja": { + "account_number": "1105", + "account_type": "Cash", + "Caja general": { + "account_number": "110505", + "account_type": "Cash" + }, + "Cajas menores": { + "account_number": "110510", + "account_type": "Cash" + }, + "Moneda extranjera": { + "account_number": "110515", + "account_type": "Cash" + } + }, + "Bancos": { + "account_number": "1110", + "account_type": "Bank", + "Moneda nacional": { + "account_number": "111005", + "account_type": "Bank" + }, + "Moneda extranjera": { + "account_number": "111010", + "account_type": "Bank" + } + }, + "Remesas en tr\u00e1nsito": { + "account_number": "1115", + "Moneda nacional": { + "account_number": "111505" + }, + "Moneda extranjera": { + "account_number": "111510" + } + }, + "Cuentas de ahorro": { + "account_number": "1120", + "Bancos": { + "account_number": "112005" + }, + "Corporaciones de ahorro y vivienda": { + "account_number": "112010" + }, + "Organismos cooperativos financieros": { + "account_number": "112015" + } + }, + "Fondos": { + "account_number": "1125", + "Rotatorios moneda nacional": { + "account_number": "112505" + }, + "Rotatorios moneda extranjera": { + "account_number": "112510" + }, + "Especiales moneda nacional": { + "account_number": "112515" + }, + "Especiales moneda extranjera": { + "account_number": "112520" + }, + "De amortizaci\u00f3n moneda nacional": { + "account_number": "112525" + }, + "De amortizaci\u00f3n moneda extranjera": { + "account_number": "112530" + } + } + }, + "Inversiones": { + "account_number": "12", + "Acciones": { + "account_number": "1205", + "Agricultura, ganader\u00eda, caza y silvicultura": { + "account_number": "120505" + }, + "Pesca": { + "account_number": "120510" + }, + "Explotaci\u00f3n de minas y canteras": { + "account_number": "120515" + }, + "Industria manufacturera": { + "account_number": "120520" + }, + "Suministro de electricidad, gas y agua": { + "account_number": "120525" + }, + "Construcci\u00f3n": { + "account_number": "120530" + }, + "Comercio al por mayor y al por menor": { + "account_number": "120535" + }, + "Hoteles y restaurantes": { + "account_number": "120540" + }, + "Transporte, almacenamiento y comunicaciones": { + "account_number": "120545" + }, + "Actividad financiera": { + "account_number": "120550" + }, + "Actividades inmobiliarias, empresariales y de alquiler": { + "account_number": "120555" + }, + "Ense\u00f1anza": { + "account_number": "120560" + }, + "Servicios sociales y de salud": { + "account_number": "120565" + }, + "Otras actividades de servicios comunitarios, sociales y personales": { + "account_number": "120570" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "120599" + } + }, + "Cuotas o partes de inter\u00e9s social": { + "account_number": "1210", + "Agricultura, ganader\u00eda, caza y silvicultura": { + "account_number": "121005" + }, + "Pesca": { + "account_number": "121010" + }, + "Explotaci\u00f3n de minas y canteras": { + "account_number": "121015" + }, + "Industria manufacturera": { + "account_number": "121020" + }, + "Suministro de electricidad, gas y agua": { + "account_number": "121025" + }, + "Construcci\u00f3n": { + "account_number": "121030" + }, + "Comercio al por mayor y al por menor": { + "account_number": "121035" + }, + "Hoteles y restaurantes": { + "account_number": "121040" + }, + "Transporte, almacenamiento y comunicaciones": { + "account_number": "121045" + }, + "Actividad financiera": { + "account_number": "121050" + }, + "Actividades inmobiliarias, empresariales y de alquiler": { + "account_number": "121055" + }, + "Ense\u00f1anza": { + "account_number": "121060" + }, + "Servicios sociales y de salud": { + "account_number": "121065" + }, + "Otras actividades de servicios comunitarios, sociales y personales": { + "account_number": "121070" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "121099" + } + }, + "Bonos": { + "account_number": "1215", + "Bonos p\u00fablicos moneda nacional": { + "account_number": "121505" + }, + "Bonos p\u00fablicos moneda extranjera": { + "account_number": "121510" + }, + "Bonos ordinarios": { + "account_number": "121515" + }, + "Bonos convertibles en acciones": { + "account_number": "121520" + }, + "Otros": { + "account_number": "121595" + } + }, + "C\u00e9dulas": { + "account_number": "1220", + "C\u00e9dulas de capitalizaci\u00f3n": { + "account_number": "122005" + }, + "C\u00e9dulas hipotecarias": { + "account_number": "122010" + }, + "C\u00e9dulas de inversi\u00f3n": { + "account_number": "122015" + }, + "Otras": { + "account_number": "122095" + } + }, + "Certificados": { + "account_number": "1225", + "Certificados de dep\u00f3sito a t\u00e9rmino (CDT)": { + "account_number": "122505" + }, + "Certificados de dep\u00f3sito de ahorro": { + "account_number": "122510" + }, + "Certificados de ahorro de valor constante (CAVC)": { + "account_number": "122515" + }, + "Certificados de cambio": { + "account_number": "122520" + }, + "Certificados cafeteros valorizables": { + "account_number": "122525" + }, + "Certificados el\u00e9ctricos valorizables (CEV)": { + "account_number": "122530" + }, + "Certificados de reembolso tributario (CERT)": { + "account_number": "122535" + }, + "Certificados de desarrollo tur\u00edstico": { + "account_number": "122540" + }, + "Certificados de inversi\u00f3n forestal (CIF)": { + "account_number": "122545" + }, + "Otros": { + "account_number": "122595" + } + }, + "Papeles comerciales": { + "account_number": "1230", + "Empresas comerciales": { + "account_number": "123005" + }, + "Empresas industriales": { + "account_number": "123010" + }, + "Empresas de servicios": { + "account_number": "123015" + } + }, + "T\u00edtulos": { + "account_number": "1235", + "T\u00edtulos de desarrollo agropecuario": { + "account_number": "123505" + }, + "T\u00edtulos canjeables por certificados de cambio": { + "account_number": "123510" + }, + "T\u00edtulos de tesorer\u00eda (TES)": { + "account_number": "123515" + }, + "T\u00edtulos de participaci\u00f3n": { + "account_number": "123520" + }, + "T\u00edtulos de cr\u00e9dito de fomento": { + "account_number": "123525" + }, + "T\u00edtulos financieros agroindustriales (TFA)": { + "account_number": "123530" + }, + "T\u00edtulos de ahorro cafetero (TAC)": { + "account_number": "123535" + }, + "T\u00edtulos de ahorro nacional (TAN)": { + "account_number": "123540" + }, + "T\u00edtulos energ\u00e9ticos de rentabilidad creciente (TER)": { + "account_number": "123545" + }, + "T\u00edtulos de ahorro educativo (TAE)": { + "account_number": "123550" + }, + "T\u00edtulos financieros industriales y comerciales": { + "account_number": "123555" + }, + "Tesoros": { + "account_number": "123560" + }, + "T\u00edtulos de devoluci\u00f3n de impuestos nacionales (TIDIS)": { + "account_number": "123565" + }, + "T\u00edtulos inmobiliarios": { + "account_number": "123570" + }, + "Otros": { + "account_number": "123595" + } + }, + "Aceptaciones bancarias o financieras": { + "account_number": "1240", + "Bancos comerciales": { + "account_number": "124005" + }, + "Compa\u00f1\u00edas de financiamiento comercial": { + "account_number": "124010" + }, + "Corporaciones financieras": { + "account_number": "124015" + }, + "Otras": { + "account_number": "124095" + } + }, + "Derechos fiduciarios": { + "account_number": "1245", + "Fideicomisos de inversi\u00f3n moneda nacional": { + "account_number": "124505" + }, + "Fideicomisos de inversi\u00f3n moneda extranjera": { + "account_number": "124510" + } + }, + "Derechos de recompra de inversiones negociadas (repos)": { + "account_number": "1250", + "Acciones": { + "account_number": "125005" + }, + "Cuotas o partes de inter\u00e9s social": { + "account_number": "125010" + }, + "Bonos": { + "account_number": "125015" + }, + "C\u00e9dulas": { + "account_number": "125020" + }, + "Certificados": { + "account_number": "125025" + }, + "Papeles comerciales": { + "account_number": "125030" + }, + "T\u00edtulos": { + "account_number": "125035" + }, + "Aceptaciones bancarias o financieras": { + "account_number": "125040" + }, + "Otros": { + "account_number": "125095" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "125099" + } + }, + "Obligatorias": { + "account_number": "1255", + "Bonos de financiamiento especial": { + "account_number": "125505" + }, + "Bonos de financiamiento presupuestal": { + "account_number": "125510" + }, + "Bonos para desarrollo social y seguridad interna (BDSI)": { + "account_number": "125515" + }, + "Otras": { + "account_number": "125595" + } + }, + "Cuentas en participaci\u00f3n": { + "account_number": "1260", + "Ajustes por inflaci\u00f3n": { + "account_number": "126099" + } + }, + "Otras inversiones": { + "account_number": "1295", + "Aportes en cooperativas": { + "account_number": "129505" + }, + "Derechos en clubes sociales": { + "account_number": "129510" + }, + "Acciones o derechos en clubes deportivos": { + "account_number": "129515" + }, + "Bonos en colegios": { + "account_number": "129520" + }, + "Diversas": { + "account_number": "129595" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "129599" + } + }, + "Provisiones": { + "account_number": "1299", + "Acciones": { + "account_number": "129905" + }, + "Cuotas o partes de inter\u00e9s social": { + "account_number": "129910" + }, + "Bonos": { + "account_number": "129915" + }, + "C\u00e9dulas": { + "account_number": "129920" + }, + "Certificados": { + "account_number": "129925" + }, + "Papeles comerciales": { + "account_number": "129930" + }, + "T\u00edtulos": { + "account_number": "129935" + }, + "Aceptaciones bancarias o financieras": { + "account_number": "129940" + }, + "Derechos fiduciarios": { + "account_number": "129945" + }, + "Derechos de recompra de inversiones negociadas": { + "account_number": "129950" + }, + "Obligatorias": { + "account_number": "129955" + }, + "Cuentas en participaci\u00f3n": { + "account_number": "129960" + }, + "Otras inversiones": { + "account_number": "129995" + } + } + }, + "Deudores": { + "account_number": "13", + "account_type": "Receivable", + "Clientes": { + "account_number": "1305", + "account_type": "Receivable", + "Nacionales": { + "account_number": "130505", + "account_type": "Receivable" + }, + "Del exterior": { + "account_number": "130510", + "account_type": "Receivable" + }, + "Deudores del sistema": { + "account_number": "130515", + "account_type": "Receivable" + } + }, + "Cuentas corrientes comerciales": { + "account_number": "1310", + "account_type": "Receivable", + "Casa matriz": { + "account_number": "131005", + "account_type": "Receivable" + }, + "Compa\u00f1\u00edas vinculadas": { + "account_number": "131010", + "account_type": "Receivable" + }, + "Accionistas o socios": { + "account_number": "131015", + "account_type": "Receivable" + }, + "Particulares": { + "account_number": "131020", + "account_type": "Receivable" + }, + "Otras": { + "account_number": "131095", + "account_type": "Receivable" + } + }, + "Cuentas por cobrar a casa matriz": { + "account_number": "1315", + "account_type": "Receivable", + "Ventas": { + "account_number": "131505", + "account_type": "Receivable" + }, + "Pagos a nombre de casa matriz": { + "account_number": "131510", + "account_type": "Receivable" + }, + "Valores recibidos por casa matriz": { + "account_number": "131515", + "account_type": "Receivable" + }, + "Pr\u00e9stamos": { + "account_number": "131520", + "account_type": "Receivable" + } + }, + "Cuentas por cobrar a vinculados econ\u00f3micos": { + "account_number": "1320", + "account_type": "Receivable", + "Filiales": { + "account_number": "132005", + "account_type": "Receivable" + }, + "Subsidiarias": { + "account_number": "132010", + "account_type": "Receivable" + }, + "Sucursales": { + "account_number": "132015", + "account_type": "Receivable" + } + }, + "Cuentas por cobrar a directores": { + "account_number": "1323", + "account_type": "Receivable" + }, + "Cuentas por cobrar a socios y accionistas": { + "account_number": "1325", + "account_type": "Receivable", + "A socios": { + "account_number": "132505", + "account_type": "Receivable" + }, + "A accionistas": { + "account_number": "132510", + "account_type": "Receivable" + } + }, + "Aportes por cobrar": { + "account_number": "1328", + "account_type": "Receivable" + }, + "Anticipos y avances": { + "account_number": "1330", + "account_type": "Receivable", + "A proveedores": { + "account_number": "133005", + "account_type": "Receivable" + }, + "A contratistas": { + "account_number": "133010", + "account_type": "Receivable" + }, + "A trabajadores": { + "account_number": "133015", + "account_type": "Receivable" + }, + "A agentes": { + "account_number": "133020", + "account_type": "Receivable" + }, + "A concesionarios": { + "account_number": "133025", + "account_type": "Receivable" + }, + "De adjudicaciones": { + "account_number": "133030", + "account_type": "Receivable" + }, + "Otros": { + "account_number": "133095", + "account_type": "Receivable" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "133099", + "account_type": "Receivable" + } + }, + "Cuentas de operaci\u00f3n conjunta": { + "account_number": "1332", + "account_type": "Receivable" + }, + "Dep\u00f3sitos": { + "account_number": "1335", + "account_type": "Receivable", + "Para importaciones": { + "account_number": "133505", + "account_type": "Receivable" + }, + "Para servicios": { + "account_number": "133510", + "account_type": "Receivable" + }, + "Para contratos": { + "account_number": "133515", + "account_type": "Receivable" + }, + "Para responsabilidades": { + "account_number": "133520", + "account_type": "Receivable" + }, + "Para juicios ejecutivos": { + "account_number": "133525", + "account_type": "Receivable" + }, + "Para adquisici\u00f3n de acciones, cuotas o derechos sociales": { + "account_number": "133530", + "account_type": "Receivable" + }, + "En garant\u00eda": { + "account_number": "133535", + "account_type": "Receivable" + }, + "Otros": { + "account_number": "133595", + "account_type": "Receivable" + } + }, + "Promesas de compra venta": { + "account_number": "1340", + "account_type": "Receivable", + "De bienes ra\u00edces": { + "account_number": "134005", + "account_type": "Receivable" + }, + "De maquinaria y equipo": { + "account_number": "134010", + "account_type": "Receivable" + }, + "De flota y equipo de transporte": { + "account_number": "134015", + "account_type": "Receivable" + }, + "De flota y equipo a\u00e9reo": { + "account_number": "134020", + "account_type": "Receivable" + }, + "De flota y equipo f\u00e9rreo": { + "account_number": "134025", + "account_type": "Receivable" + }, + "De flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "134030", + "account_type": "Receivable" + }, + "De semovientes": { + "account_number": "134035", + "account_type": "Receivable" + }, + "De otros bienes": { + "account_number": "134095", + "account_type": "Receivable" + } + }, + "Ingresos por cobrar": { + "account_number": "1345", + "account_type": "Receivable", + "Dividendos y/o participaciones": { + "account_number": "134505", + "account_type": "Receivable" + }, + "Intereses": { + "account_number": "134510", + "account_type": "Receivable" + }, + "Comisiones": { + "account_number": "134515", + "account_type": "Receivable" + }, + "Honorarios": { + "account_number": "134520", + "account_type": "Receivable" + }, + "Servicios": { + "account_number": "134525", + "account_type": "Receivable" + }, + "Arrendamientos": { + "account_number": "134530", + "account_type": "Receivable" + }, + "CERT por cobrar": { + "account_number": "134535", + "account_type": "Receivable" + }, + "Otros": { + "account_number": "134595", + "account_type": "Receivable" + } + }, + "Retenci\u00f3n sobre contratos": { + "account_number": "1350", + "account_type": "Receivable", + "De construcci\u00f3n": { + "account_number": "135005", + "account_type": "Receivable" + }, + "De prestaci\u00f3n de servicios": { + "account_number": "135010", + "account_type": "Receivable" + }, + "Otros": { + "account_number": "135095", + "account_type": "Receivable" + } + }, + "Anticipo de impuestos y contribuciones o saldos a favor": { + "account_number": "1355", + "account_type": "Receivable", + "Anticipo de impuestos de renta y complementarios": { + "account_number": "135505", + "account_type": "Receivable" + }, + "Anticipo de impuestos de industria y comercio": { + "account_number": "135510", + "account_type": "Receivable" + }, + "Retenci\u00f3n en la fuente": { + "account_number": "135515", + "account_type": "Receivable" + }, + "Impuesto a las ventas retenido": { + "account_number": "135517", + "account_type": "Receivable" + }, + "Impuesto de industria y comercio retenido": { + "account_number": "135518", + "account_type": "Receivable" + }, + "Sobrantes en liquidaci\u00f3n privada de impuestos": { + "account_number": "135520", + "account_type": "Receivable" + }, + "Contribuciones": { + "account_number": "135525", + "account_type": "Receivable" + }, + "Impuestos descontables": { + "account_number": "135530", + "account_type": "Receivable" + }, + "Otros": { + "account_number": "135595", + "account_type": "Receivable" + } + }, + "Reclamaciones": { + "account_number": "1360", + "account_type": "Receivable", + "A compa\u00f1\u00edas aseguradoras": { + "account_number": "136005", + "account_type": "Receivable" + }, + "A transportadores": { + "account_number": "136010", + "account_type": "Receivable" + }, + "Por tiquetes a\u00e9reos": { + "account_number": "136015", + "account_type": "Receivable" + }, + "Otras": { + "account_number": "136095", + "account_type": "Receivable" + } + }, + "Cuentas por cobrar a trabajadores": { + "account_number": "1365", + "account_type": "Receivable", + "Vivienda": { + "account_number": "136505", + "account_type": "Receivable" + }, + "Veh\u00edculos": { + "account_number": "136510", + "account_type": "Receivable" + }, + "Educaci\u00f3n": { + "account_number": "136515", + "account_type": "Receivable" + }, + "M\u00e9dicos, odontol\u00f3gicos y similares": { + "account_number": "136520", + "account_type": "Receivable" + }, + "Calamidad dom\u00e9stica": { + "account_number": "136525", + "account_type": "Receivable" + }, + "Responsabilidades": { + "account_number": "136530", + "account_type": "Receivable" + }, + "Otros": { + "account_number": "136595", + "account_type": "Receivable" + } + }, + "Pr\u00e9stamos a particulares": { + "account_number": "1370", + "account_type": "Receivable", + "Con garant\u00eda real": { + "account_number": "137005", + "account_type": "Receivable" + }, + "Con garant\u00eda personal": { + "account_number": "137010", + "account_type": "Receivable" + } + }, + "Deudores varios": { + "account_number": "1380", + "account_type": "Receivable", + "Depositarios": { + "account_number": "138005", + "account_type": "Receivable" + }, + "Comisionistas de bolsas": { + "account_number": "138010", + "account_type": "Receivable" + }, + "Fondo de inversi\u00f3n": { + "account_number": "138015", + "account_type": "Receivable" + }, + "Cuentas por cobrar de terceros": { + "account_number": "138020", + "account_type": "Receivable" + }, + "Pagos por cuenta de terceros": { + "account_number": "138025", + "account_type": "Receivable" + }, + "Fondos de inversi\u00f3n social": { + "account_number": "138030", + "account_type": "Receivable" + }, + "Otros": { + "account_number": "138095", + "account_type": "Receivable" + } + }, + "Derechos de recompra de cartera negociada": { + "account_number": "1385", + "account_type": "Receivable" + }, + "Deudas de dif\u00edcil cobro": { + "account_number": "1390", + "account_type": "Receivable" + }, + "Provisiones": { + "account_number": "1399", + "account_type": "Receivable", + "Clientes": { + "account_number": "139905", + "account_type": "Receivable" + }, + "Cuentas corrientes comerciales": { + "account_number": "139910", + "account_type": "Receivable" + }, + "Cuentas por cobrar a casa matriz": { + "account_number": "139915", + "account_type": "Receivable" + }, + "Cuentas por cobrar a vinculados econ\u00f3micos": { + "account_number": "139920", + "account_type": "Receivable" + }, + "Cuentas por cobrar a socios y accionistas": { + "account_number": "139925", + "account_type": "Receivable" + }, + "Anticipos y avances": { + "account_number": "139930", + "account_type": "Receivable" + }, + "Cuentas de operaci\u00f3n conjunta": { + "account_number": "139932", + "account_type": "Receivable" + }, + "Dep\u00f3sitos": { + "account_number": "139935", + "account_type": "Receivable" + }, + "Promesas de compraventa": { + "account_number": "139940", + "account_type": "Receivable" + }, + "Ingresos por cobrar": { + "account_number": "139945", + "account_type": "Receivable" + }, + "Retenci\u00f3n sobre contratos": { + "account_number": "139950", + "account_type": "Receivable" + }, + "Reclamaciones": { + "account_number": "139955", + "account_type": "Receivable" + }, + "Cuentas por cobrar a trabajadores": { + "account_number": "139960", + "account_type": "Receivable" + }, + "Pr\u00e9stamos a particulares": { + "account_number": "139965", + "account_type": "Receivable" + }, + "Deudores varios": { + "account_number": "139975", + "account_type": "Receivable" + }, + "Derechos de recompra de cartera negociada": { + "account_number": "139980", + "account_type": "Receivable" + } + } + }, + "Inventarios": { + "account_number": "14", + "account_type": "Stock", + "Materias primas": { + "account_number": "1405", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "140599", + "account_type": "Stock" + } + }, + "Productos en proceso": { + "account_number": "1410", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "141099", + "account_type": "Stock" + } + }, + "Obras de construcci\u00f3n en curso": { + "account_number": "1415", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "141599", + "account_type": "Stock" + } + }, + "Obras de urbanismo": { + "account_number": "1417", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "141799", + "account_type": "Stock" + } + }, + "Contratos en ejecuci\u00f3n": { + "account_number": "1420", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "142099", + "account_type": "Stock" + } + }, + "Cultivos en desarrollo": { + "account_number": "1425", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "142599", + "account_type": "Stock" + } + }, + "Plantaciones agr\u00edcolas": { + "account_number": "1428", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "142899", + "account_type": "Stock" + } + }, + "Productos terminados": { + "account_number": "1430", + "account_type": "Stock", + "Productos manufacturados": { + "account_number": "143005", + "account_type": "Stock" + }, + "Productos extra\u00eddos y/o procesados": { + "account_number": "143010", + "account_type": "Stock" + }, + "Productos agr\u00edcolas y forestales": { + "account_number": "143015", + "account_type": "Stock" + }, + "Subproductos": { + "account_number": "143020", + "account_type": "Stock" + }, + "Productos de pesca": { + "account_number": "143025", + "account_type": "Stock" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "143099", + "account_type": "Stock" + } + }, + "Mercanc\u00edas no fabricadas por la empresa": { + "account_number": "1435", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "143599", + "account_type": "Stock" + } + }, + "Bienes ra\u00edces para la venta": { + "account_number": "1440", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "144099", + "account_type": "Stock" + } + }, + "Semovientes": { + "account_number": "1445", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "144599", + "account_type": "Stock" + } + }, + "Terrenos": { + "account_number": "1450", + "account_type": "Stock", + "Por urbanizar": { + "account_number": "145005", + "account_type": "Stock" + }, + "Urbanizados por construir": { + "account_number": "145010", + "account_type": "Stock" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "145099", + "account_type": "Stock" + } + }, + "Materiales, repuestos y accesorios": { + "account_number": "1455", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "145599", + "account_type": "Stock" + } + }, + "Envases y empaques": { + "account_number": "1460", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "146099", + "account_type": "Stock" + } + }, + "Inventarios en tr\u00e1nsito": { + "account_number": "1465", + "account_type": "Stock", + "Ajustes por inflaci\u00f3n": { + "account_number": "146599", + "account_type": "Stock" + } + }, + "Provisiones": { + "account_number": "1499", + "account_type": "Stock", + "Para obsolescencia": { + "account_number": "149905", + "account_type": "Stock" + }, + "Para diferencia de inventario f\u00edsico": { + "account_number": "149910", + "account_type": "Stock" + }, + "Para p\u00e9rdidas de inventarios": { + "account_number": "149915", + "account_type": "Stock" + }, + "Lifo": { + "account_number": "149920", + "account_type": "Stock" + } + } + }, + "Propiedades, planta y equipo": { + "account_number": "15", + "account_type": "Fixed Asset", + "Terrenos": { + "account_number": "1504", + "account_type": "Fixed Asset", + "Urbanos": { + "account_number": "150405", + "account_type": "Fixed Asset" + }, + "Rurales": { + "account_number": "150410", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "150499", + "account_type": "Fixed Asset" + } + }, + "Materiales proyectos petroleros": { + "account_number": "1506", + "account_type": "Fixed Asset", + "Tuber\u00edas y equipo": { + "account_number": "150605", + "account_type": "Fixed Asset" + }, + "Costos de importaci\u00f3n materiales": { + "account_number": "150610", + "account_type": "Fixed Asset" + }, + "Proyectos de construcci\u00f3n": { + "account_number": "150615", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "150699", + "account_type": "Fixed Asset" + } + }, + "Construcciones en curso": { + "account_number": "1508", + "account_type": "Fixed Asset", + "Construcciones y edificaciones": { + "account_number": "150805", + "account_type": "Fixed Asset" + }, + "Acueductos, plantas y redes": { + "account_number": "150810", + "account_type": "Fixed Asset" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "150815", + "account_type": "Fixed Asset" + }, + "Pozos artesianos": { + "account_number": "150820", + "account_type": "Fixed Asset" + }, + "Proyectos de exploraci\u00f3n": { + "account_number": "150825", + "account_type": "Fixed Asset" + }, + "Proyectos de desarrollo": { + "account_number": "150830", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "150899", + "account_type": "Fixed Asset" + } + }, + "Maquinaria y equipos en montaje": { + "account_number": "1512", + "account_type": "Fixed Asset", + "Maquinaria y equipo": { + "account_number": "151205", + "account_type": "Fixed Asset" + }, + "Equipo de oficina": { + "account_number": "151210", + "account_type": "Fixed Asset" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "151215", + "account_type": "Fixed Asset" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "151220", + "account_type": "Fixed Asset" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "151225", + "account_type": "Fixed Asset" + }, + "Flota y equipo de transporte": { + "account_number": "151230", + "account_type": "Fixed Asset" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "151235", + "account_type": "Fixed Asset" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "151240", + "account_type": "Fixed Asset" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "151245", + "account_type": "Fixed Asset" + }, + "Plantas y redes": { + "account_number": "151250", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "151299", + "account_type": "Fixed Asset" + } + }, + "Construcciones y edificaciones": { + "account_number": "1516", + "account_type": "Fixed Asset", + "Edificios": { + "account_number": "151605", + "account_type": "Fixed Asset" + }, + "Oficinas": { + "account_number": "151610", + "account_type": "Fixed Asset" + }, + "Almacenes": { + "account_number": "151615", + "account_type": "Fixed Asset" + }, + "F\u00e1bricas y plantas industriales": { + "account_number": "151620", + "account_type": "Fixed Asset" + }, + "Salas de exhibici\u00f3n y ventas": { + "account_number": "151625", + "account_type": "Fixed Asset" + }, + "Cafeter\u00eda y casinos": { + "account_number": "151630", + "account_type": "Fixed Asset" + }, + "Silos": { + "account_number": "151635", + "account_type": "Fixed Asset" + }, + "Invernaderos": { + "account_number": "151640", + "account_type": "Fixed Asset" + }, + "Casetas y campamentos": { + "account_number": "151645", + "account_type": "Fixed Asset" + }, + "Instalaciones agropecuarias": { + "account_number": "151650", + "account_type": "Fixed Asset" + }, + "Viviendas para empleados y obreros": { + "account_number": "151655", + "account_type": "Fixed Asset" + }, + "Terminal de buses y taxis": { + "account_number": "151660", + "account_type": "Fixed Asset" + }, + "Terminal mar\u00edtimo": { + "account_number": "151663", + "account_type": "Fixed Asset" + }, + "Terminal f\u00e9rreo": { + "account_number": "151665", + "account_type": "Fixed Asset" + }, + "Parqueaderos, garajes y dep\u00f3sitos": { + "account_number": "151670", + "account_type": "Fixed Asset" + }, + "Hangares": { + "account_number": "151675", + "account_type": "Fixed Asset" + }, + "Bodegas": { + "account_number": "151680", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "151695", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "151699", + "account_type": "Fixed Asset" + } + }, + "Maquinaria y equipo": { + "account_number": "1520", + "account_type": "Fixed Asset", + "Ajustes por inflaci\u00f3n": { + "account_number": "152099", + "account_type": "Fixed Asset" + } + }, + "Equipo de oficina": { + "account_number": "1524", + "account_type": "Fixed Asset", + "Muebles y enseres": { + "account_number": "152405", + "account_type": "Fixed Asset" + }, + "Equipos": { + "account_number": "152410", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "152495", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "152499", + "account_type": "Fixed Asset" + } + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "1528", + "account_type": "Fixed Asset", + "Equipos de procesamiento de datos": { + "account_number": "152805", + "account_type": "Fixed Asset" + }, + "Equipos de telecomunicaciones": { + "account_number": "152810", + "account_type": "Fixed Asset" + }, + "Equipos de radio": { + "account_number": "152815", + "account_type": "Fixed Asset" + }, + "Sat\u00e9lites y antenas": { + "account_number": "152820", + "account_type": "Fixed Asset" + }, + "L\u00edneas telef\u00f3nicas": { + "account_number": "152825", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "152895", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "152899", + "account_type": "Fixed Asset" + } + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "1532", + "account_type": "Fixed Asset", + "M\u00e9dico": { + "account_number": "153205", + "account_type": "Fixed Asset" + }, + "Odontol\u00f3gico": { + "account_number": "153210", + "account_type": "Fixed Asset" + }, + "Laboratorio": { + "account_number": "153215", + "account_type": "Fixed Asset" + }, + "Instrumental": { + "account_number": "153220", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "153295", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "153299", + "account_type": "Fixed Asset" + } + }, + "Equipo de hoteles y restaurantes": { + "account_number": "1536", + "account_type": "Fixed Asset", + "De habitaciones": { + "account_number": "153605", + "account_type": "Fixed Asset" + }, + "De comestibles y bebidas": { + "account_number": "153610", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "153695", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "153699", + "account_type": "Fixed Asset" + } + }, + "Flota y equipo de transporte": { + "account_number": "1540", + "account_type": "Fixed Asset", + "Autos, camionetas y camperos": { + "account_number": "154005", + "account_type": "Fixed Asset" + }, + "Camiones, volquetas y furgones": { + "account_number": "154008", + "account_type": "Fixed Asset" + }, + "Tractomulas y remolques": { + "account_number": "154010", + "account_type": "Fixed Asset" + }, + "Buses y busetas": { + "account_number": "154015", + "account_type": "Fixed Asset" + }, + "Recolectores y contenedores": { + "account_number": "154017", + "account_type": "Fixed Asset" + }, + "Montacargas": { + "account_number": "154020", + "account_type": "Fixed Asset" + }, + "Palas y gr\u00faas": { + "account_number": "154025", + "account_type": "Fixed Asset" + }, + "Motocicletas": { + "account_number": "154030", + "account_type": "Fixed Asset" + }, + "Bicicletas": { + "account_number": "154035", + "account_type": "Fixed Asset" + }, + "Estibas y carretas": { + "account_number": "154040", + "account_type": "Fixed Asset" + }, + "Bandas transportadoras": { + "account_number": "154045", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "154095", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "154099", + "account_type": "Fixed Asset" + } + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "1544", + "account_type": "Fixed Asset", + "Buques": { + "account_number": "154405", + "account_type": "Fixed Asset" + }, + "Lanchas": { + "account_number": "154410", + "account_type": "Fixed Asset" + }, + "Remolcadoras": { + "account_number": "154415", + "account_type": "Fixed Asset" + }, + "Botes": { + "account_number": "154420", + "account_type": "Fixed Asset" + }, + "Boyas": { + "account_number": "154425", + "account_type": "Fixed Asset" + }, + "Amarres": { + "account_number": "154430", + "account_type": "Fixed Asset" + }, + "Contenedores y chasises": { + "account_number": "154435", + "account_type": "Fixed Asset" + }, + "Gabarras": { + "account_number": "154440", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "154495", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "154499", + "account_type": "Fixed Asset" + } + }, + "Flota y equipo a\u00e9reo": { + "account_number": "1548", + "account_type": "Fixed Asset", + "Aviones": { + "account_number": "154805", + "account_type": "Fixed Asset" + }, + "Avionetas": { + "account_number": "154810", + "account_type": "Fixed Asset" + }, + "Helic\u00f3pteros": { + "account_number": "154815", + "account_type": "Fixed Asset" + }, + "Turbinas y motores": { + "account_number": "154820", + "account_type": "Fixed Asset" + }, + "Manuales de entrenamiento personal t\u00e9cnico": { + "account_number": "154825", + "account_type": "Fixed Asset" + }, + "Equipos de vuelo": { + "account_number": "154830", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "154895", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "154899", + "account_type": "Fixed Asset" + } + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "1552", + "account_type": "Fixed Asset", + "Locomotoras": { + "account_number": "155205", + "account_type": "Fixed Asset" + }, + "Vagones": { + "account_number": "155210", + "account_type": "Fixed Asset" + }, + "Redes f\u00e9rreas": { + "account_number": "155215", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "155295", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "155299", + "account_type": "Fixed Asset" + } + }, + "Acueductos, plantas y redes": { + "account_number": "1556", + "account_type": "Fixed Asset", + "Instalaciones para agua y energ\u00eda": { + "account_number": "155605", + "account_type": "Fixed Asset" + }, + "Acueducto, acequias y canalizaciones": { + "account_number": "155610", + "account_type": "Fixed Asset" + }, + "Plantas de generaci\u00f3n hidr\u00e1ulica": { + "account_number": "155615", + "account_type": "Fixed Asset" + }, + "Plantas de generaci\u00f3n t\u00e9rmica": { + "account_number": "155620", + "account_type": "Fixed Asset" + }, + "Plantas de generaci\u00f3n a gas": { + "account_number": "155625", + "account_type": "Fixed Asset" + }, + "Plantas de generaci\u00f3n diesel, gasolina y petr\u00f3leo": { + "account_number": "155628", + "account_type": "Fixed Asset" + }, + "Plantas de distribuci\u00f3n": { + "account_number": "155630", + "account_type": "Fixed Asset" + }, + "Plantas de transmisi\u00f3n y subestaciones": { + "account_number": "155635", + "account_type": "Fixed Asset" + }, + "Oleoductos": { + "account_number": "155640", + "account_type": "Fixed Asset" + }, + "Gasoductos": { + "account_number": "155645", + "account_type": "Fixed Asset" + }, + "Poliductos": { + "account_number": "155647", + "account_type": "Fixed Asset" + }, + "Redes de distribuci\u00f3n": { + "account_number": "155650", + "account_type": "Fixed Asset" + }, + "Plantas de tratamiento": { + "account_number": "155655", + "account_type": "Fixed Asset" + }, + "Redes de recolecci\u00f3n de aguas negras": { + "account_number": "155660", + "account_type": "Fixed Asset" + }, + "Instalaciones y equipo de bombeo": { + "account_number": "155665", + "account_type": "Fixed Asset" + }, + "Redes de distribuci\u00f3n de vapor": { + "account_number": "155670", + "account_type": "Fixed Asset" + }, + "Redes de aire": { + "account_number": "155675", + "account_type": "Fixed Asset" + }, + "Redes alimentaci\u00f3n de gas": { + "account_number": "155680", + "account_type": "Fixed Asset" + }, + "Redes externas de telefon\u00eda": { + "account_number": "155682", + "account_type": "Fixed Asset" + }, + "Plantas deshidratadoras": { + "account_number": "155685", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "155695", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "155699", + "account_type": "Fixed Asset" + } + }, + "Armamento de vigilancia": { + "account_number": "1560", + "account_type": "Fixed Asset", + "Ajustes por inflaci\u00f3n": { + "account_number": "156099", + "account_type": "Fixed Asset" + } + }, + "Envases y empaques": { + "account_number": "1562", + "account_type": "Fixed Asset", + "Ajustes por inflaci\u00f3n": { + "account_number": "156299", + "account_type": "Fixed Asset" + } + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "1564", + "account_type": "Fixed Asset", + "Cultivos en desarrollo": { + "account_number": "156405", + "account_type": "Fixed Asset" + }, + "Cultivos amortizables": { + "account_number": "156410", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "156499", + "account_type": "Fixed Asset" + } + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "1568", + "account_type": "Fixed Asset", + "Pavimentaci\u00f3n y patios": { + "account_number": "156805", + "account_type": "Fixed Asset" + }, + "V\u00edas": { + "account_number": "156810", + "account_type": "Fixed Asset" + }, + "Puentes": { + "account_number": "156815", + "account_type": "Fixed Asset" + }, + "Calles": { + "account_number": "156820", + "account_type": "Fixed Asset" + }, + "Aer\u00f3dromos": { + "account_number": "156825", + "account_type": "Fixed Asset" + }, + "Otros": { + "account_number": "156895", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "156899", + "account_type": "Fixed Asset" + } + }, + "Minas y canteras": { + "account_number": "1572", + "account_type": "Fixed Asset", + "Minas": { + "account_number": "157205", + "account_type": "Fixed Asset" + }, + "Canteras": { + "account_number": "157210", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "157299", + "account_type": "Fixed Asset" + } + }, + "Pozos artesianos": { + "account_number": "1576", + "account_type": "Fixed Asset", + "Ajustes por inflaci\u00f3n": { + "account_number": "157699", + "account_type": "Fixed Asset" + } + }, + "Yacimientos": { + "account_number": "1580", + "account_type": "Fixed Asset", + "Ajustes por inflaci\u00f3n": { + "account_number": "158099", + "account_type": "Fixed Asset" + } + }, + "Semovientes": { + "account_number": "1584", + "account_type": "Fixed Asset", + "Ajustes por inflaci\u00f3n": { + "account_number": "158499", + "account_type": "Fixed Asset" + } + }, + "Propiedades, planta y equipo en tr\u00e1nsito": { + "account_number": "1588", + "account_type": "Fixed Asset", + "Maquinaria y equipo": { + "account_number": "158805", + "account_type": "Fixed Asset" + }, + "Equipo de oficina": { + "account_number": "158810", + "account_type": "Fixed Asset" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "158815", + "account_type": "Fixed Asset" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "158820", + "account_type": "Fixed Asset" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "158825", + "account_type": "Fixed Asset" + }, + "Flota y equipo de transporte": { + "account_number": "158830", + "account_type": "Fixed Asset" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "158835", + "account_type": "Fixed Asset" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "158840", + "account_type": "Fixed Asset" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "158845", + "account_type": "Fixed Asset" + }, + "Plantas y redes": { + "account_number": "158850", + "account_type": "Fixed Asset" + }, + "Armamento de vigilancia": { + "account_number": "158855", + "account_type": "Fixed Asset" + }, + "Semovientes": { + "account_number": "158860", + "account_type": "Fixed Asset" + }, + "Envases y empaques": { + "account_number": "158865", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "158899", + "account_type": "Fixed Asset" + } + }, + "Depreciaci\u00f3n acumulada": { + "account_number": "1592", + "account_type": "Fixed Asset", + "Construcciones y edificaciones": { + "account_number": "159205", + "account_type": "Fixed Asset" + }, + "Maquinaria y equipo": { + "account_number": "159210", + "account_type": "Fixed Asset" + }, + "Equipo de oficina": { + "account_number": "159215", + "account_type": "Fixed Asset" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "159220", + "account_type": "Fixed Asset" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "159225", + "account_type": "Fixed Asset" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "159230", + "account_type": "Fixed Asset" + }, + "Flota y equipo de transporte": { + "account_number": "159235", + "account_type": "Fixed Asset" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "159240", + "account_type": "Fixed Asset" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "159245", + "account_type": "Fixed Asset" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "159250", + "account_type": "Fixed Asset" + }, + "Acueductos, plantas y redes": { + "account_number": "159255", + "account_type": "Fixed Asset" + }, + "Armamento de vigilancia": { + "account_number": "159260", + "account_type": "Fixed Asset" + }, + "Envases y empaques": { + "account_number": "159265", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "159299", + "account_type": "Fixed Asset" + } + }, + "Depreciaci\u00f3n diferida": { + "account_number": "1596", + "account_type": "Fixed Asset", + "Exceso fiscal sobre la contable": { + "account_number": "159605", + "account_type": "Fixed Asset" + }, + "Defecto fiscal sobre la contable (CR)": { + "account_number": "159610", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "159699", + "account_type": "Fixed Asset" + } + }, + "Amortizaci\u00f3n acumulada": { + "account_number": "1597", + "account_type": "Fixed Asset", + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "159705", + "account_type": "Fixed Asset" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "159710", + "account_type": "Fixed Asset" + }, + "Semovientes": { + "account_number": "159715", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "159799", + "account_type": "Fixed Asset" + } + }, + "Agotamiento acumulado": { + "account_number": "1598", + "account_type": "Fixed Asset", + "Minas y canteras": { + "account_number": "159805", + "account_type": "Fixed Asset" + }, + "Pozos artesianos": { + "account_number": "159815", + "account_type": "Fixed Asset" + }, + "Yacimientos": { + "account_number": "159820", + "account_type": "Fixed Asset" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "159899", + "account_type": "Fixed Asset" + } + }, + "Provisiones": { + "account_number": "1599", + "account_type": "Fixed Asset", + "Terrenos": { + "account_number": "159904", + "account_type": "Fixed Asset" + }, + "Materiales proyectos petroleros": { + "account_number": "159906", + "account_type": "Fixed Asset" + }, + "Construcciones en curso": { + "account_number": "159908", + "account_type": "Fixed Asset" + }, + "Maquinaria en montaje": { + "account_number": "159912", + "account_type": "Fixed Asset" + }, + "Construcciones y edificaciones": { + "account_number": "159916", + "account_type": "Fixed Asset" + }, + "Maquinaria y equipo": { + "account_number": "159920", + "account_type": "Fixed Asset" + }, + "Equipo de oficina": { + "account_number": "159924", + "account_type": "Fixed Asset" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "159928", + "account_type": "Fixed Asset" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "159932", + "account_type": "Fixed Asset" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "159936", + "account_type": "Fixed Asset" + }, + "Flota y equipo de transporte": { + "account_number": "159940", + "account_type": "Fixed Asset" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "159944", + "account_type": "Fixed Asset" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "159948", + "account_type": "Fixed Asset" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "159952", + "account_type": "Fixed Asset" + }, + "Acueductos, plantas y redes": { + "account_number": "159956", + "account_type": "Fixed Asset" + }, + "Armamento de vigilancia": { + "account_number": "159960", + "account_type": "Fixed Asset" + }, + "Envases y empaques": { + "account_number": "159962", + "account_type": "Fixed Asset" + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "159964", + "account_type": "Fixed Asset" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "159968", + "account_type": "Fixed Asset" + }, + "Minas y canteras": { + "account_number": "159972", + "account_type": "Fixed Asset" + }, + "Pozos artesianos": { + "account_number": "159980", + "account_type": "Fixed Asset" + }, + "Yacimientos": { + "account_number": "159984", + "account_type": "Fixed Asset" + }, + "Semovientes": { + "account_number": "159988", + "account_type": "Fixed Asset" + }, + "Propiedades, planta y equipo en tr\u00e1nsito": { + "account_number": "159992", + "account_type": "Fixed Asset" + } + } + }, + "Intangibles": { + "account_number": "16", + "Cr\u00e9dito mercantil": { + "account_number": "1605", + "Formado o estimado": { + "account_number": "160505" + }, + "Adquirido o comprado": { + "account_number": "160510" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "160599" + } + }, + "Marcas": { + "account_number": "1610", + "Adquiridas": { + "account_number": "161005" + }, + "Formadas": { + "account_number": "161010" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "161099" + } + }, + "Patentes": { + "account_number": "1615", + "Adquiridas": { + "account_number": "161505" + }, + "Formadas": { + "account_number": "161510" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "161599" + } + }, + "Concesiones y franquicias": { + "account_number": "1620", + "Concesiones": { + "account_number": "162005" + }, + "Franquicias": { + "account_number": "162010" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "162099" + } + }, + "Derechos": { + "account_number": "1625", + "Derechos de autor": { + "account_number": "162505" + }, + "Puesto de bolsa": { + "account_number": "162510" + }, + "En fideicomisos inmobiliarios": { + "account_number": "162515" + }, + "En fideicomisos de garant\u00eda": { + "account_number": "162520" + }, + "En fideicomisos de administraci\u00f3n": { + "account_number": "162525" + }, + "De exhibici\u00f3n - pel\u00edculas": { + "account_number": "162530" + }, + "En bienes recibidos en arrendamiento financiero (leasing)": { + "account_number": "162535" + }, + "Otros": { + "account_number": "162595" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "162599" + } + }, + "Know how": { + "account_number": "1630", + "Ajustes por inflaci\u00f3n": { + "account_number": "163099" + } + }, + "Licencias": { + "account_number": "1635", + "Ajustes por inflaci\u00f3n": { + "account_number": "163599" + } + }, + "Depreciaci\u00f3n y/o amortizaci\u00f3n acumulada": { + "account_number": "1698", + "Cr\u00e9dito mercantil": { + "account_number": "169805" + }, + "Marcas": { + "account_number": "169810" + }, + "Patentes": { + "account_number": "169815" + }, + "Concesiones y franquicias": { + "account_number": "169820" + }, + "Derechos": { + "account_number": "169830" + }, + "Know how": { + "account_number": "169835" + }, + "Licencias": { + "account_number": "169840" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "169899" + } + }, + "Provisiones": { + "account_number": "1699", + "account_type": "Accumulated Depreciation" + } + }, + "Diferidos": { + "account_number": "17", + "Gastos pagados por anticipado": { + "account_number": "1705", + "Intereses": { + "account_number": "170505" + }, + "Honorarios": { + "account_number": "170510" + }, + "Comisiones": { + "account_number": "170515" + }, + "Seguros y fianzas": { + "account_number": "170520" + }, + "Arrendamientos": { + "account_number": "170525" + }, + "Bodegajes": { + "account_number": "170530" + }, + "Mantenimiento equipos": { + "account_number": "170535" + }, + "Servicios": { + "account_number": "170540" + }, + "Suscripciones": { + "account_number": "170545" + }, + "Otros": { + "account_number": "170595" + } + }, + "Cargos diferidos": { + "account_number": "1710", + "Organizaci\u00f3n y preoperativos": { + "account_number": "171004" + }, + "Remodelaciones": { + "account_number": "171008" + }, + "Estudios, investigaciones y proyectos": { + "account_number": "171012" + }, + "Programas para computador (software)": { + "account_number": "171016" + }, + "\u00datiles y papeler\u00eda": { + "account_number": "171020" + }, + "Mejoras a propiedades ajenas": { + "account_number": "171024" + }, + "Contribuciones y afiliaciones": { + "account_number": "171028" + }, + "Entrenamiento de personal": { + "account_number": "171032" + }, + "Ferias y exposiciones": { + "account_number": "171036" + }, + "Licencias": { + "account_number": "171040" + }, + "Publicidad, propaganda y promoci\u00f3n": { + "account_number": "171044" + }, + "Elementos de aseo y cafeter\u00eda": { + "account_number": "171048" + }, + "Moldes y troqueles": { + "account_number": "171052" + }, + "Instrumental quir\u00fargico": { + "account_number": "171056" + }, + "Dotaci\u00f3n y suministro a trabajadores": { + "account_number": "171060" + }, + "Elementos de roper\u00eda y lencer\u00eda": { + "account_number": "171064" + }, + "Loza y cristaler\u00eda": { + "account_number": "171068" + }, + "Plater\u00eda": { + "account_number": "171069" + }, + "Cubierter\u00eda": { + "account_number": "171070" + }, + "Impuesto de renta diferido ?d\u00e9bitos? por diferencias temporales": { + "account_number": "171076" + }, + "Concursos y licitaciones": { + "account_number": "171080" + }, + "Otros": { + "account_number": "171095" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "171099" + } + }, + "Costos de exploraci\u00f3n por amortizar": { + "account_number": "1715", + "Pozos secos": { + "account_number": "171505" + }, + "Pozos no comerciales": { + "account_number": "171510" + }, + "Otros costos de exploraci\u00f3n": { + "account_number": "171515" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "171599" + } + }, + "Costos de explotaci\u00f3n y desarrollo": { + "account_number": "1720", + "Perforaci\u00f3n y explotaci\u00f3n": { + "account_number": "172005" + }, + "Perforaciones campos en desarrollo": { + "account_number": "172010" + }, + "Facilidades de producci\u00f3n": { + "account_number": "172015" + }, + "Servicio a pozos": { + "account_number": "172020" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "172099" + } + }, + "Cargos por correcci\u00f3n monetaria diferida": { + "account_number": "1730" + }, + "Amortizaci\u00f3n acumulada": { + "account_number": "1798", + "account_type": "Accumulated Depreciation", + "Costos de exploraci\u00f3n por amortizar": { + "account_number": "179805", + "account_type": "Accumulated Depreciation" + }, + "Costos de explotaci\u00f3n y desarrollo": { + "account_number": "179810", + "account_type": "Accumulated Depreciation" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "179899", + "account_type": "Accumulated Depreciation" + } + } + }, + "Otros activos": { + "account_number": "18", + "Bienes de arte y cultura": { + "account_number": "1805", + "Obras de arte": { + "account_number": "180505" + }, + "Bibliotecas": { + "account_number": "180510" + }, + "Otros": { + "account_number": "180595" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "180599" + } + }, + "Diversos": { + "account_number": "1895", + "M\u00e1quinas porteadoras": { + "account_number": "189505" + }, + "Bienes entregados en comodato": { + "account_number": "189510" + }, + "Amortizaci\u00f3n acumulada de bienes entregados en comodato (CR)": { + "account_number": "189515" + }, + "Bienes recibidos en pago": { + "account_number": "189520" + }, + "Derechos sucesorales": { + "account_number": "189525" + }, + "Estampillas": { + "account_number": "189530" + }, + "Otros": { + "account_number": "189595" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "189599" + } + }, + "Provisiones": { + "account_number": "1899", + "Bienes de arte y cultura": { + "account_number": "189905" + }, + "Diversos": { + "account_number": "189995" + } + } + }, + "Valorizaciones": { + "account_number": "19", + "De inversiones": { + "account_number": "1905", + "Acciones": { + "account_number": "190505" + }, + "Cuotas o partes de inter\u00e9s social": { + "account_number": "190510" + }, + "Derechos fiduciarios": { + "account_number": "190515" + } + }, + "De propiedades, planta y equipo": { + "account_number": "1910", + "Terrenos": { + "account_number": "191004" + }, + "Materiales proyectos petroleros": { + "account_number": "191006" + }, + "Construcciones y edificaciones": { + "account_number": "191008" + }, + "Maquinaria y equipo": { + "account_number": "191012" + }, + "Equipo de oficina": { + "account_number": "191016" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "191020" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "191024" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "191028" + }, + "Flota y equipo de transporte": { + "account_number": "191032" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "191036" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "191040" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "191044" + }, + "Acueductos, plantas y redes": { + "account_number": "191048" + }, + "Armamento de vigilancia": { + "account_number": "191052" + }, + "Envases y empaques": { + "account_number": "191056" + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "191060" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "191064" + }, + "Minas y canteras": { + "account_number": "191068" + }, + "Pozos artesianos": { + "account_number": "191072" + }, + "Yacimientos": { + "account_number": "191076" + }, + "Semovientes": { + "account_number": "191080" + } + }, + "De otros activos": { + "account_number": "1995", + "Bienes de arte y cultura": { + "account_number": "199505" + }, + "Bienes entregados en comodato": { + "account_number": "199510" + }, + "Bienes recibidos en pago": { + "account_number": "199515" + }, + "Inventario de semovientes": { + "account_number": "199520" + } + } + } + }, + "Pasivo": { + "account_number": "2", + "root_type": "Liability", + "Obligaciones financieras": { + "account_number": "21", + "Bancos nacionales": { + "account_number": "2105", + "Sobregiros": { + "account_number": "210505" + }, + "Pagar\u00e9s": { + "account_number": "210510" + }, + "Cartas de cr\u00e9dito": { + "account_number": "210515" + }, + "Aceptaciones bancarias": { + "account_number": "210520" + } + }, + "Bancos del exterior": { + "account_number": "2110", + "Sobregiros": { + "account_number": "211005" + }, + "Pagar\u00e9s": { + "account_number": "211010" + }, + "Cartas de cr\u00e9dito": { + "account_number": "211015" + }, + "Aceptaciones bancarias": { + "account_number": "211020" + } + }, + "Corporaciones financieras": { + "account_number": "2115", + "Pagar\u00e9s": { + "account_number": "211505" + }, + "Aceptaciones financieras": { + "account_number": "211510" + }, + "Cartas de cr\u00e9dito": { + "account_number": "211515" + }, + "Contratos de arrendamiento financiero (leasing)": { + "account_number": "211520" + } + }, + "Compa\u00f1\u00edas de financiamiento comercial": { + "account_number": "2120", + "Pagar\u00e9s": { + "account_number": "212005" + }, + "Aceptaciones financieras": { + "account_number": "212010" + }, + "Contratos de arrendamiento financiero (leasing)": { + "account_number": "212020" + } + }, + "Corporaciones de ahorro y vivienda": { + "account_number": "2125", + "Sobregiros": { + "account_number": "212505" + }, + "Pagar\u00e9s": { + "account_number": "212510" + }, + "Hipotecarias": { + "account_number": "212515" + } + }, + "Entidades financieras del exterior": { + "account_number": "2130" + }, + "Compromisos de recompra de inversiones negociadas": { + "account_number": "2135", + "Acciones": { + "account_number": "213505" + }, + "Cuotas o partes de inter\u00e9s social": { + "account_number": "213510" + }, + "Bonos": { + "account_number": "213515" + }, + "C\u00e9dulas": { + "account_number": "213520" + }, + "Certificados": { + "account_number": "213525" + }, + "Papeles comerciales": { + "account_number": "213530" + }, + "T\u00edtulos": { + "account_number": "213535" + }, + "Aceptaciones bancarias o financieras": { + "account_number": "213540" + }, + "Otros": { + "account_number": "213595" + } + }, + "Compromisos de recompra de cartera negociada": { + "account_number": "2140" + }, + "Obligaciones gubernamentales": { + "account_number": "2145", + "Gobierno Nacional": { + "account_number": "214505" + }, + "Entidades oficiales": { + "account_number": "214510" + } + }, + "Otras obligaciones": { + "account_number": "2195", + "Particulares": { + "account_number": "219505" + }, + "Compa\u00f1\u00edas vinculadas": { + "account_number": "219510" + }, + "Casa matriz": { + "account_number": "219515" + }, + "Socios o accionistas": { + "account_number": "219520" + }, + "Fondos y cooperativas": { + "account_number": "219525" + }, + "Directores": { + "account_number": "219530" + }, + "Otras": { + "account_number": "219595" + } + } + }, + "Proveedores": { + "account_number": "22", + "account_type": "Payable", + "Nacionales": { + "account_number": "2205", + "account_type": "Payable" + }, + "Del exterior": { + "account_number": "2210", + "account_type": "Payable" + }, + "Cuentas corrientes comerciales": { + "account_number": "2215", + "account_type": "Payable" + }, + "Casa matriz": { + "account_number": "2220", + "account_type": "Payable" + }, + "Compa\u00f1\u00edas vinculadas": { + "account_number": "2225", + "account_type": "Payable" + } + }, + "Cuentas por pagar": { + "account_number": "23", + "account_type": "Payable", + "Cuentas corrientes comerciales": { + "account_number": "2305", + "account_type": "Payable" + }, + "A casa matriz": { + "account_number": "2310", + "account_type": "Payable" + }, + "A compa\u00f1\u00edas vinculadas": { + "account_number": "2315", + "account_type": "Payable" + }, + "A contratistas": { + "account_number": "2320", + "account_type": "Payable" + }, + "\u00d3rdenes de compra por utilizar": { + "account_number": "2330", + "account_type": "Payable" + }, + "Costos y gastos por pagar": { + "account_number": "2335", + "account_type": "Payable", + "Gastos financieros": { + "account_number": "233505", + "account_type": "Payable" + }, + "Gastos legales": { + "account_number": "233510", + "account_type": "Payable" + }, + "Libros, suscripciones, peri\u00f3dicos y revistas": { + "account_number": "233515", + "account_type": "Payable" + }, + "Comisiones": { + "account_number": "233520", + "account_type": "Payable" + }, + "Honorarios": { + "account_number": "233525", + "account_type": "Payable" + }, + "Servicios t\u00e9cnicos": { + "account_number": "233530", + "account_type": "Payable" + }, + "Servicios de mantenimiento": { + "account_number": "233535", + "account_type": "Payable" + }, + "Arrendamientos": { + "account_number": "233540", + "account_type": "Payable" + }, + "Transportes, fletes y acarreos": { + "account_number": "233545", + "account_type": "Payable" + }, + "Servicios p\u00fablicos": { + "account_number": "233550", + "account_type": "Payable" + }, + "Seguros": { + "account_number": "233555", + "account_type": "Payable" + }, + "Gastos de viaje": { + "account_number": "233560", + "account_type": "Payable" + }, + "Gastos de representaci\u00f3n y relaciones p\u00fablicas": { + "account_number": "233565", + "account_type": "Payable" + }, + "Servicios aduaneros": { + "account_number": "233570", + "account_type": "Payable" + }, + "Otros": { + "account_number": "233595", + "account_type": "Payable" + } + }, + "Instalamentos por pagar": { + "account_number": "2340", + "account_type": "Payable" + }, + "Acreedores oficiales": { + "account_number": "2345", + "account_type": "Payable" + }, + "Regal\u00edas por pagar": { + "account_number": "2350", + "account_type": "Payable" + }, + "Deudas con accionistas o socios": { + "account_number": "2355", + "account_type": "Payable", + "Accionistas": { + "account_number": "235505", + "account_type": "Payable" + }, + "Socios": { + "account_number": "235510", + "account_type": "Payable" + } + }, + "Deudas con directores": { + "account_number": "2357", + "account_type": "Payable" + }, + "Dividendos o participaciones por pagar": { + "account_number": "2360", + "account_type": "Payable", + "Dividendos": { + "account_number": "236005", + "account_type": "Payable" + }, + "Participaciones": { + "account_number": "236010", + "account_type": "Payable" + } + }, + "Retenci\u00f3n en la fuente": { + "account_number": "2365", + "account_type": "Payable", + "Salarios y pagos laborales": { + "account_number": "236505", + "account_type": "Payable" + }, + "Dividendos y/o participaciones": { + "account_number": "236510", + "account_type": "Payable" + }, + "Honorarios": { + "account_number": "236515", + "account_type": "Payable" + }, + "Comisiones": { + "account_number": "236520", + "account_type": "Payable" + }, + "Servicios": { + "account_number": "236525", + "account_type": "Payable" + }, + "Arrendamientos": { + "account_number": "236530", + "account_type": "Payable" + }, + "Rendimientos financieros": { + "account_number": "236535", + "account_type": "Payable" + }, + "Compras": { + "account_number": "236540", + "account_type": "Payable" + }, + "Loter\u00edas, rifas, apuestas y similares": { + "account_number": "236545", + "account_type": "Payable" + }, + "Por pagos al exterior": { + "account_number": "236550", + "account_type": "Payable" + }, + "Por ingresos obtenidos en el exterior": { + "account_number": "236555", + "account_type": "Payable" + }, + "Enajenaci\u00f3n propiedades planta y equipo, personas naturales": { + "account_number": "236560", + "account_type": "Payable" + }, + "Por impuesto de timbre": { + "account_number": "236565", + "account_type": "Payable" + }, + "Otras retenciones y patrimonio": { + "account_number": "236570", + "account_type": "Payable" + }, + "Autorretenciones": { + "account_number": "236575", + "account_type": "Payable" + } + }, + "Impuesto a las ventas retenido": { + "account_number": "2367", + "account_type": "Payable" + }, + "Impuesto de industria y comercio retenido": { + "account_number": "2368", + "account_type": "Payable" + }, + "Retenciones y aportes de n\u00f3mina": { + "account_number": "2370", + "account_type": "Payable", + "Aportes a entidades promotoras de salud, EPS": { + "account_number": "237005", + "account_type": "Payable" + }, + "Aportes a administradoras de riesgos profesionales, ARP": { + "account_number": "237006", + "account_type": "Payable" + }, + "Aportes al ICBF, SENA y cajas de compensaci\u00f3n": { + "account_number": "237010", + "account_type": "Payable" + }, + "Aportes al FIC": { + "account_number": "237015", + "account_type": "Payable" + }, + "Embargos judiciales": { + "account_number": "237025", + "account_type": "Payable" + }, + "Libranzas": { + "account_number": "237030", + "account_type": "Payable" + }, + "Sindicatos": { + "account_number": "237035", + "account_type": "Payable" + }, + "Cooperativas": { + "account_number": "237040", + "account_type": "Payable" + }, + "Fondos": { + "account_number": "237045", + "account_type": "Payable" + }, + "Otros": { + "account_number": "237095", + "account_type": "Payable" + } + }, + "Cuotas por devolver": { + "account_number": "2375", + "account_type": "Payable" + }, + "Acreedores varios": { + "account_number": "2380", + "account_type": "Payable", + "Depositarios": { + "account_number": "238005", + "account_type": "Payable" + }, + "Comisionistas de bolsas": { + "account_number": "238010", + "account_type": "Payable" + }, + "Sociedad administradora-Fondos de inversi\u00f3n": { + "account_number": "238015", + "account_type": "Payable" + }, + "Reintegros por pagar": { + "account_number": "238020", + "account_type": "Payable" + }, + "Fondo de perseverancia": { + "account_number": "238025", + "account_type": "Payable" + }, + "Fondos de cesant\u00edas y/o pensiones": { + "account_number": "238030", + "account_type": "Payable" + }, + "Donaciones asignadas por pagar": { + "account_number": "238035", + "account_type": "Payable" + }, + "Otros": { + "account_number": "238095", + "account_type": "Payable" + } + } + }, + "Impuestos, grav\u00e1menes y tasas": { + "account_number": "24", + "account_type": "Tax", + "De renta y complementarios": { + "account_number": "2404", + "account_type": "Tax", + "Vigencia fiscal corriente": { + "account_number": "240405", + "account_type": "Tax" + }, + "Vigencias fiscales anteriores": { + "account_number": "240410", + "account_type": "Tax" + } + }, + "Impuesto sobre las ventas por pagar": { + "account_number": "2408", + "account_type": "Tax" + }, + "De industria y comercio": { + "account_number": "2412", + "account_type": "Tax", + "Vigencia fiscal corriente": { + "account_number": "241205", + "account_type": "Tax" + }, + "Vigencias fiscales anteriores": { + "account_number": "241210", + "account_type": "Tax" + } + }, + "A la propiedad ra\u00edz": { + "account_number": "2416", + "account_type": "Tax" + }, + "Derechos sobre instrumentos p\u00fablicos": { + "account_number": "2420", + "account_type": "Tax" + }, + "De valorizaci\u00f3n": { + "account_number": "2424", + "account_type": "Tax", + "Vigencia fiscal corriente": { + "account_number": "242405", + "account_type": "Tax" + }, + "Vigencias fiscales anteriores": { + "account_number": "242410", + "account_type": "Tax" + } + }, + "De turismo": { + "account_number": "2428", + "account_type": "Tax" + }, + "Tasa por utilizaci\u00f3n de puertos": { + "account_number": "2432", + "account_type": "Tax" + }, + "De veh\u00edculos": { + "account_number": "2436", + "account_type": "Tax", + "Vigencia fiscal corriente": { + "account_number": "243605", + "account_type": "Tax" + }, + "Vigencias fiscales anteriores": { + "account_number": "243610", + "account_type": "Tax" + } + }, + "De espect\u00e1culos p\u00fablicos": { + "account_number": "2440", + "account_type": "Tax" + }, + "De hidrocarburos y minas": { + "account_number": "2444", + "account_type": "Tax", + "De hidrocarburos": { + "account_number": "244405", + "account_type": "Tax" + }, + "De minas": { + "account_number": "244410", + "account_type": "Tax" + } + }, + "Regal\u00edas e impuestos a la peque\u00f1a y mediana miner\u00eda": { + "account_number": "2448", + "account_type": "Tax" + }, + "A las exportaciones cafeteras": { + "account_number": "2452", + "account_type": "Tax" + }, + "A las importaciones": { + "account_number": "2456", + "account_type": "Tax" + }, + "Cuotas de fomento": { + "account_number": "2460", + "account_type": "Tax" + }, + "De licores, cervezas y cigarrillos": { + "account_number": "2464", + "account_type": "Tax", + "De licores": { + "account_number": "246405", + "account_type": "Tax" + }, + "De cervezas": { + "account_number": "246410", + "account_type": "Tax" + }, + "De cigarrillos": { + "account_number": "246415", + "account_type": "Tax" + } + }, + "Al sacrificio de ganado": { + "account_number": "2468", + "account_type": "Tax" + }, + "Al azar y juegos": { + "account_number": "2472", + "account_type": "Tax" + }, + "Grav\u00e1menes y regal\u00edas por utilizaci\u00f3n del suelo": { + "account_number": "2476", + "account_type": "Tax" + }, + "Otros": { + "account_number": "2495", + "account_type": "Tax" + } + }, + "Obligaciones laborales": { + "account_number": "25", + "Salarios por pagar": { + "account_number": "2505" + }, + "Cesant\u00edas consolidadas": { + "account_number": "2510", + "Ley laboral anterior": { + "account_number": "251005" + }, + "Ley 50 de 1990 y normas posteriores": { + "account_number": "251010" + } + }, + "Intereses sobre cesant\u00edas": { + "account_number": "2515" + }, + "Prima de servicios": { + "account_number": "2520" + }, + "Vacaciones consolidadas": { + "account_number": "2525" + }, + "Prestaciones extralegales": { + "account_number": "2530", + "Primas": { + "account_number": "253005" + }, + "Auxilios": { + "account_number": "253010" + }, + "Dotaci\u00f3n y suministro a trabajadores": { + "account_number": "253015" + }, + "Bonificaciones": { + "account_number": "253020" + }, + "Seguros": { + "account_number": "253025" + }, + "Otras": { + "account_number": "253095" + } + }, + "Pensiones por pagar": { + "account_number": "2532" + }, + "Cuotas partes pensiones de jubilaci\u00f3n": { + "account_number": "2535" + }, + "Indemnizaciones laborales": { + "account_number": "2540" + } + }, + "Pasivos estimados y provisiones": { + "account_number": "26", + "Para costos y gastos": { + "account_number": "2605", + "Intereses": { + "account_number": "260505" + }, + "Comisiones": { + "account_number": "260510" + }, + "Honorarios": { + "account_number": "260515" + }, + "Servicios t\u00e9cnicos": { + "account_number": "260520" + }, + "Transportes, fletes y acarreos": { + "account_number": "260525" + }, + "Gastos de viaje": { + "account_number": "260530" + }, + "Servicios p\u00fablicos": { + "account_number": "260535" + }, + "Regal\u00edas": { + "account_number": "260540" + }, + "Garant\u00edas": { + "account_number": "260545" + }, + "Materiales y repuestos": { + "account_number": "260550" + }, + "Otros": { + "account_number": "260595" + } + }, + "Para obligaciones laborales": { + "account_number": "2610", + "Cesant\u00edas": { + "account_number": "261005" + }, + "Intereses sobre cesant\u00edas": { + "account_number": "261010" + }, + "Vacaciones": { + "account_number": "261015" + }, + "Prima de servicios": { + "account_number": "261020" + }, + "Prestaciones extralegales": { + "account_number": "261025" + }, + "Vi\u00e1ticos": { + "account_number": "261030" + }, + "Otras": { + "account_number": "261095" + } + }, + "Para obligaciones fiscales": { + "account_number": "2615", + "De renta y complementarios": { + "account_number": "261505" + }, + "De industria y comercio": { + "account_number": "261510" + }, + "Tasa por utilizaci\u00f3n de puertos": { + "account_number": "261515" + }, + "De veh\u00edculos": { + "account_number": "261520" + }, + "De hidrocarburos y minas": { + "account_number": "261525" + }, + "Otros": { + "account_number": "261595" + } + }, + "Pensiones de jubilaci\u00f3n": { + "account_number": "2620", + "C\u00e1lculo actuarial pensiones de jubilaci\u00f3n": { + "account_number": "262005" + }, + "Pensiones de jubilaci\u00f3n por amortizar (DB)": { + "account_number": "262010" + } + }, + "Para obras de urbanismo": { + "account_number": "2625", + "Acueducto y alcantarillado": { + "account_number": "262505" + }, + "Energ\u00eda el\u00e9ctrica": { + "account_number": "262510" + }, + "Tel\u00e9fonos": { + "account_number": "262515" + }, + "Otros": { + "account_number": "262595" + } + }, + "Para mantenimiento y reparaciones": { + "account_number": "2630", + "Terrenos": { + "account_number": "263005" + }, + "Construcciones y edificaciones": { + "account_number": "263010" + }, + "Maquinaria y equipo": { + "account_number": "263015" + }, + "Equipo de oficina": { + "account_number": "263020" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "263025" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "263030" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "263035" + }, + "Flota y equipo de transporte": { + "account_number": "263040" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "263045" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "263050" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "263055" + }, + "Acueductos, plantas y redes": { + "account_number": "263060" + }, + "Armamento de vigilancia": { + "account_number": "263065" + }, + "Envases y empaques": { + "account_number": "263070" + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "263075" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "263080" + }, + "Pozos artesianos": { + "account_number": "263085" + }, + "Otros": { + "account_number": "263095" + } + }, + "Para contingencias": { + "account_number": "2635", + "Multas y sanciones autoridades administrativas": { + "account_number": "263505" + }, + "Intereses por multas y sanciones": { + "account_number": "263510" + }, + "Reclamos": { + "account_number": "263515" + }, + "Laborales": { + "account_number": "263520" + }, + "Civiles": { + "account_number": "263525" + }, + "Penales": { + "account_number": "263530" + }, + "Administrativos": { + "account_number": "263535" + }, + "Comerciales": { + "account_number": "263540" + }, + "Otras": { + "account_number": "263595" + } + }, + "Para obligaciones de garant\u00edas": { + "account_number": "2640" + }, + "Provisiones diversas": { + "account_number": "2695", + "Para beneficencia": { + "account_number": "269505" + }, + "Para comunicaciones": { + "account_number": "269510" + }, + "Para p\u00e9rdida en transporte": { + "account_number": "269515" + }, + "Para operaci\u00f3n": { + "account_number": "269520" + }, + "Para protecci\u00f3n de bienes agotables": { + "account_number": "269525" + }, + "Para ajustes en redenci\u00f3n de unidades": { + "account_number": "269530" + }, + "Autoseguro": { + "account_number": "269535" + }, + "Planes y programas de reforestaci\u00f3n y electrificaci\u00f3n": { + "account_number": "269540" + }, + "Otras": { + "account_number": "269595" + } + } + }, + "Diferidos": { + "account_number": "27", + "Ingresos recibidos por anticipado": { + "account_number": "2705", + "Intereses": { + "account_number": "270505" + }, + "Comisiones": { + "account_number": "270510" + }, + "Arrendamientos": { + "account_number": "270515" + }, + "Honorarios": { + "account_number": "270520" + }, + "Servicios t\u00e9cnicos": { + "account_number": "270525" + }, + "De suscriptores": { + "account_number": "270530" + }, + "Transportes, fletes y acarreos": { + "account_number": "270535" + }, + "Mercanc\u00eda en tr\u00e1nsito ya vendida": { + "account_number": "270540" + }, + "Matr\u00edculas y pensiones": { + "account_number": "270545" + }, + "Cuotas de administraci\u00f3n": { + "account_number": "270550" + }, + "Otros": { + "account_number": "270595" + } + }, + "Abonos diferidos": { + "account_number": "2710", + "Reajuste del sistema": { + "account_number": "271005" + } + }, + "Utilidad diferida en ventas a plazos": { + "account_number": "2715" + }, + "Cr\u00e9dito por correcci\u00f3n monetaria diferida": { + "account_number": "2720" + }, + "Impuestos diferidos": { + "account_number": "2725", + "Por depreciaci\u00f3n flexible": { + "account_number": "272505" + }, + "Diversos": { + "account_number": "272595" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "272599" + } + } + }, + "Otros pasivos": { + "account_number": "28", + "Anticipos y avances recibidos": { + "account_number": "2805", + "De clientes": { + "account_number": "280505" + }, + "Sobre contratos": { + "account_number": "280510" + }, + "Para obras en proceso": { + "account_number": "280515" + }, + "Otros": { + "account_number": "280595" + } + }, + "Dep\u00f3sitos recibidos": { + "account_number": "2810", + "Para futura suscripci\u00f3n de acciones": { + "account_number": "281005" + }, + "Para futuro pago de cuotas o derechos sociales": { + "account_number": "281010" + }, + "Para garant\u00eda en la prestaci\u00f3n de servicios": { + "account_number": "281015" + }, + "Para garant\u00eda de contratos": { + "account_number": "281020" + }, + "De licitaciones": { + "account_number": "281025" + }, + "De manejo de bienes": { + "account_number": "281030" + }, + "Fondo de reserva": { + "account_number": "281035" + }, + "Otros": { + "account_number": "281095" + } + }, + "Ingresos recibidos para terceros": { + "account_number": "2815", + "Valores recibidos para terceros": { + "account_number": "281505" + }, + "Venta por cuenta de terceros": { + "account_number": "281510" + } + }, + "Cuentas de operaci\u00f3n conjunta": { + "account_number": "2820" + }, + "Retenciones a terceros sobre contratos": { + "account_number": "2825", + "Cumplimiento obligaciones laborales": { + "account_number": "282505" + }, + "Para estabilidad de obra": { + "account_number": "282510" + }, + "Garant\u00eda cumplimiento de contratos": { + "account_number": "282515" + } + }, + "Embargos judiciales": { + "account_number": "2830", + "Indemnizaciones": { + "account_number": "283005" + }, + "Dep\u00f3sitos judiciales": { + "account_number": "283010" + } + }, + "Acreedores del sistema": { + "account_number": "2835", + "Cuotas netas": { + "account_number": "283505" + }, + "Grupos en formaci\u00f3n": { + "account_number": "283510" + } + }, + "Cuentas en participaci\u00f3n": { + "account_number": "2840" + }, + "Diversos": { + "account_number": "2895", + "Pr\u00e9stamos de productos": { + "account_number": "289505" + }, + "Reembolso de costos exploratorios": { + "account_number": "289510" + }, + "Programa de extensi\u00f3n agropecuaria": { + "account_number": "289515" + } + } + }, + "Bonos y papeles comerciales": { + "account_number": "29", + "Bonos en circulaci\u00f3n": { + "account_number": "2905" + }, + "Bonos obligatoriamente convertibles en acciones": { + "account_number": "2910" + }, + "Papeles comerciales": { + "account_number": "2915" + }, + "Bonos pensionales": { + "account_number": "2920", + "Valor bonos pensionales": { + "account_number": "292005" + }, + "Bonos pensionales por amortizar (DB)": { + "account_number": "292010" + }, + "Intereses causados sobre bonos pensionales": { + "account_number": "292015" + } + }, + "T\u00edtulos pensionales": { + "account_number": "2925", + "Valor t\u00edtulos pensionales": { + "account_number": "292505" + }, + "T\u00edtulos pensionales por amortizar (DB)": { + "account_number": "292510" + }, + "Intereses causados sobre t\u00edtulos pensionales": { + "account_number": "292515" + } + } + } + }, + "Patrimonio": { + "account_number": "3", + "account_type": "Equity", + "root_type": "Equity", + "Capital social": { + "account_number": "31", + "account_type": "Equity", + "Capital suscrito y pagado": { + "account_number": "3105", + "account_type": "Equity", + "Capital autorizado": { + "account_number": "310505", + "account_type": "Equity" + }, + "Capital por suscribir (DB)": { + "account_number": "310510", + "account_type": "Equity" + }, + "Capital suscrito por cobrar (DB)": { + "account_number": "310515", + "account_type": "Equity" + } + }, + "Aportes sociales": { + "account_number": "3115", + "account_type": "Equity", + "Cuotas o partes de inter\u00e9s social": { + "account_number": "311505", + "account_type": "Equity" + }, + "Aportes de socios-fondo mutuo de inversi\u00f3n": { + "account_number": "311510", + "account_type": "Equity" + }, + "Contribuci\u00f3n de la empresa-fondo mutuo de inversi\u00f3n": { + "account_number": "311515", + "account_type": "Equity" + }, + "Suscripciones del p\u00fablico": { + "account_number": "311520", + "account_type": "Equity" + } + }, + "Capital asignado": { + "account_number": "3120", + "account_type": "Equity" + }, + "Inversi\u00f3n suplementaria al capital asignado": { + "account_number": "3125", + "account_type": "Equity" + }, + "Capital de personas naturales": { + "account_number": "3130", + "account_type": "Equity" + }, + "Aportes del Estado": { + "account_number": "3135", + "account_type": "Equity" + }, + "Fondo social": { + "account_number": "3140", + "account_type": "Equity" + } + }, + "Super\u00e1vit de capital": { + "account_number": "32", + "account_type": "Equity", + "Prima en colocaci\u00f3n de acciones, cuotas o partes de inter\u00e9s social": { + "account_number": "3205", + "account_type": "Equity", + "Prima en colocaci\u00f3n de acciones": { + "account_number": "320505", + "account_type": "Equity" + }, + "Prima en colocaci\u00f3n de acciones por cobrar (DB)": { + "account_number": "320510", + "account_type": "Equity" + }, + "Prima en colocaci\u00f3n de cuotas o partes de inter\u00e9s social": { + "account_number": "320515", + "account_type": "Equity" + } + }, + "Donaciones": { + "account_number": "3210", + "account_type": "Equity", + "En dinero": { + "account_number": "321005", + "account_type": "Equity" + }, + "En valores mobiliarios": { + "account_number": "321010", + "account_type": "Equity" + }, + "En bienes muebles": { + "account_number": "321015", + "account_type": "Equity" + }, + "En bienes inmuebles": { + "account_number": "321020", + "account_type": "Equity" + }, + "En intangibles": { + "account_number": "321025", + "account_type": "Equity" + } + }, + "Cr\u00e9dito mercantil": { + "account_number": "3215", + "account_type": "Equity" + }, + "Know how": { + "account_number": "3220", + "account_type": "Equity" + }, + "Super\u00e1vit m\u00e9todo de participaci\u00f3n": { + "account_number": "3225", + "account_type": "Equity", + "De acciones": { + "account_number": "322505", + "account_type": "Equity" + }, + "De cuotas o partes de inter\u00e9s social": { + "account_number": "322510", + "account_type": "Equity" + } + } + }, + "Reservas": { + "account_number": "33", + "account_type": "Equity", + "Reservas obligatorias": { + "account_number": "3305", + "account_type": "Equity", + "Reserva legal": { + "account_number": "330505", + "account_type": "Equity" + }, + "Reservas por disposiciones fiscales": { + "account_number": "330510", + "account_type": "Equity" + }, + "Reserva para readquisici\u00f3n de acciones": { + "account_number": "330515", + "account_type": "Equity" + }, + "Acciones propias readquiridas (DB)": { + "account_number": "330516", + "account_type": "Equity" + }, + "Reserva para readquisici\u00f3n de cuotas o partes de inter\u00e9s social": { + "account_number": "330517", + "account_type": "Equity" + }, + "Cuotas o partes de inter\u00e9s social propias readquiridas (DB)": { + "account_number": "330518", + "account_type": "Equity" + }, + "Reserva para extensi\u00f3n agropecuaria": { + "account_number": "330520", + "account_type": "Equity" + }, + "Reserva Ley 7\u00aa de 1990": { + "account_number": "330525", + "account_type": "Equity" + }, + "Reserva para reposici\u00f3n de semovientes": { + "account_number": "330530", + "account_type": "Equity" + }, + "Reserva Ley 4\u00aa de 1980": { + "account_number": "330535", + "account_type": "Equity" + }, + "Otras": { + "account_number": "330595", + "account_type": "Equity" + } + }, + "Reservas estatutarias": { + "account_number": "3310", + "account_type": "Equity", + "Para futuras capitalizaciones": { + "account_number": "331005", + "account_type": "Equity" + }, + "Para reposici\u00f3n de activos": { + "account_number": "331010", + "account_type": "Equity" + }, + "Para futuros ensanches": { + "account_number": "331015", + "account_type": "Equity" + }, + "Otras": { + "account_number": "331095", + "account_type": "Equity" + } + }, + "Reservas ocasionales": { + "account_number": "3315", + "account_type": "Equity", + "Para beneficencia y civismo": { + "account_number": "331505", + "account_type": "Equity" + }, + "Para futuras capitalizaciones": { + "account_number": "331510", + "account_type": "Equity" + }, + "Para futuros ensanches": { + "account_number": "331515", + "account_type": "Equity" + }, + "Para adquisici\u00f3n o reposici\u00f3n de propiedades, planta y equipo": { + "account_number": "331520", + "account_type": "Equity" + }, + "Para investigaciones y desarrollo": { + "account_number": "331525", + "account_type": "Equity" + }, + "Para fomento econ\u00f3mico": { + "account_number": "331530", + "account_type": "Equity" + }, + "Para capital de trabajo": { + "account_number": "331535", + "account_type": "Equity" + }, + "Para estabilizaci\u00f3n de rendimientos": { + "account_number": "331540", + "account_type": "Equity" + }, + "A disposici\u00f3n del m\u00e1ximo \u00f3rgano social": { + "account_number": "331545", + "account_type": "Equity" + }, + "Otras": { + "account_number": "331595", + "account_type": "Equity" + } + } + }, + "Revalorizaci\u00f3n del patrimonio": { + "account_number": "34", + "account_type": "Equity", + "Ajustes por inflaci\u00f3n": { + "account_number": "3405", + "account_type": "Equity", + "De capital social": { + "account_number": "340505", + "account_type": "Equity" + }, + "De super\u00e1vit de capital": { + "account_number": "340510", + "account_type": "Equity" + }, + "De reservas": { + "account_number": "340515", + "account_type": "Equity" + }, + "De resultados de ejercicios anteriores": { + "account_number": "340520", + "account_type": "Equity" + }, + "De activos en per\u00edodo improductivo": { + "account_number": "340525", + "account_type": "Equity" + }, + "De saneamiento fiscal": { + "account_number": "340530", + "account_type": "Equity" + }, + "De ajustes Decreto 3019 de 1989": { + "account_number": "340535", + "account_type": "Equity" + }, + "De dividendos y participaciones decretadas en acciones, cuotas o partes de inter\u00e9s social": { + "account_number": "340540", + "account_type": "Equity" + }, + "Super\u00e1vit m\u00e9todo de participaci\u00f3n": { + "account_number": "340545", + "account_type": "Equity" + } + }, + "Saneamiento fiscal": { + "account_number": "3410", + "account_type": "Equity" + }, + "Ajustes por inflaci\u00f3n Decreto 3019 de 1989": { + "account_number": "3415", + "account_type": "Equity" + } + }, + "Dividendos o participaciones decretados en acciones, cuotas o partes de inter\u00e9s social": { + "account_number": "35", + "account_type": "Equity", + "Dividendos decretados en acciones": { + "account_number": "3505", + "account_type": "Equity" + }, + "Participaciones decretadas en cuotas o partes de inter\u00e9s social": { + "account_number": "3510", + "account_type": "Equity" + } + }, + "Resultados del ejercicio": { + "account_number": "36", + "account_type": "Equity", + "Utilidad del ejercicio": { + "account_number": "3605", + "account_type": "Equity" + }, + "P\u00e9rdida del ejercicio": { + "account_number": "3610", + "account_type": "Equity" + } + }, + "Resultados de ejercicios anteriores": { + "account_number": "37", + "account_type": "Equity", + "Utilidades acumuladas": { + "account_number": "3705", + "account_type": "Equity" + }, + "P\u00e9rdidas acumuladas": { + "account_number": "3710", + "account_type": "Equity" + } + }, + "Super\u00e1vit por valorizaciones": { + "account_number": "38", + "account_type": "Equity", + "De inversiones": { + "account_number": "3805", + "account_type": "Equity", + "Acciones": { + "account_number": "380505", + "account_type": "Equity" + }, + "Cuotas o partes de inter\u00e9s social": { + "account_number": "380510", + "account_type": "Equity" + }, + "Derechos fiduciarios": { + "account_number": "380515", + "account_type": "Equity" + } + }, + "De propiedades, planta y equipo": { + "account_number": "3810", + "account_type": "Equity", + "Terrenos": { + "account_number": "381004", + "account_type": "Equity" + }, + "Materiales proyectos petroleros": { + "account_number": "381006", + "account_type": "Equity" + }, + "Construcciones y edificaciones": { + "account_number": "381008", + "account_type": "Equity" + }, + "Maquinaria y equipo": { + "account_number": "381012", + "account_type": "Equity" + }, + "Equipo de oficina": { + "account_number": "381016", + "account_type": "Equity" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "381020", + "account_type": "Equity" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "381024", + "account_type": "Equity" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "381028", + "account_type": "Equity" + }, + "Flota y equipo de transporte": { + "account_number": "381032", + "account_type": "Equity" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "381036", + "account_type": "Equity" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "381040", + "account_type": "Equity" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "381044", + "account_type": "Equity" + }, + "Acueductos, plantas y redes": { + "account_number": "381048", + "account_type": "Equity" + }, + "Armamento de vigilancia": { + "account_number": "381052", + "account_type": "Equity" + }, + "Envases y empaques": { + "account_number": "381056", + "account_type": "Equity" + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "381060", + "account_type": "Equity" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "381064", + "account_type": "Equity" + }, + "Minas y canteras": { + "account_number": "381068", + "account_type": "Equity" + }, + "Pozos artesianos": { + "account_number": "381072", + "account_type": "Equity" + }, + "Yacimientos": { + "account_number": "381076", + "account_type": "Equity" + }, + "Semovientes": { + "account_number": "381080", + "account_type": "Equity" + } + }, + "De otros activos": { + "account_number": "3895", + "account_type": "Equity", + "Bienes de arte y cultura": { + "account_number": "389505", + "account_type": "Equity" + }, + "Bienes entregados en comodato": { + "account_number": "389510", + "account_type": "Equity" + }, + "Bienes recibidos en pago": { + "account_number": "389515", + "account_type": "Equity" + }, + "Inventario de semovientes": { + "account_number": "389520", + "account_type": "Equity" + } + } + } + }, + "Ingresos": { + "account_number": "4", + "account_type": "Income Account", + "root_type": "Income", + "Operacionales": { + "account_number": "41", + "account_type": "Income Account", + "Agricultura, ganader\u00eda, caza y silvicultura": { + "account_number": "4105", + "account_type": "Income Account", + "Cultivo de cereales": { + "account_number": "410505", + "account_type": "Income Account" + }, + "Cultivos de hortalizas, legumbres y plantas ornamentales": { + "account_number": "410510", + "account_type": "Income Account" + }, + "Cultivos de frutas, nueces y plantas arom\u00e1ticas": { + "account_number": "410515", + "account_type": "Income Account" + }, + "Cultivo de caf\u00e9": { + "account_number": "410520", + "account_type": "Income Account" + }, + "Cultivo de flores": { + "account_number": "410525", + "account_type": "Income Account" + }, + "Cultivo de ca\u00f1a de az\u00facar": { + "account_number": "410530", + "account_type": "Income Account" + }, + "Cultivo de algod\u00f3n y plantas para material textil": { + "account_number": "410535", + "account_type": "Income Account" + }, + "Cultivo de banano": { + "account_number": "410540", + "account_type": "Income Account" + }, + "Otros cultivos agr\u00edcolas": { + "account_number": "410545", + "account_type": "Income Account" + }, + "Cr\u00eda de ovejas, cabras, asnos, mulas y burd\u00e9ganos": { + "account_number": "410550", + "account_type": "Income Account" + }, + "Cr\u00eda de ganado caballar y vacuno": { + "account_number": "410555", + "account_type": "Income Account" + }, + "Producci\u00f3n av\u00edcola": { + "account_number": "410560", + "account_type": "Income Account" + }, + "Cr\u00eda de otros animales": { + "account_number": "410565", + "account_type": "Income Account" + }, + "Servicios agr\u00edcolas y ganaderos": { + "account_number": "410570", + "account_type": "Income Account" + }, + "Actividad de caza": { + "account_number": "410575", + "account_type": "Income Account" + }, + "Actividad de silvicultura": { + "account_number": "410580", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "410595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "410599", + "account_type": "Income Account" + } + }, + "Pesca": { + "account_number": "4110", + "account_type": "Income Account", + "Actividad de pesca": { + "account_number": "411005", + "account_type": "Income Account" + }, + "Explotaci\u00f3n de criaderos de peces": { + "account_number": "411010", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "411095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "411099", + "account_type": "Income Account" + } + }, + "Explotaci\u00f3n de minas y canteras": { + "account_number": "4115", + "account_type": "Income Account", + "Carb\u00f3n": { + "account_number": "411505", + "account_type": "Income Account" + }, + "Petr\u00f3leo crudo": { + "account_number": "411510", + "account_type": "Income Account" + }, + "Gas natural": { + "account_number": "411512", + "account_type": "Income Account" + }, + "Servicios relacionados con extracci\u00f3n de petr\u00f3leo y gas": { + "account_number": "411514", + "account_type": "Income Account" + }, + "Minerales de hierro": { + "account_number": "411515", + "account_type": "Income Account" + }, + "Minerales metal\u00edferos no ferrosos": { + "account_number": "411520", + "account_type": "Income Account" + }, + "Piedra, arena y arcilla": { + "account_number": "411525", + "account_type": "Income Account" + }, + "Piedras preciosas": { + "account_number": "411527", + "account_type": "Income Account" + }, + "Oro": { + "account_number": "411528", + "account_type": "Income Account" + }, + "Otras minas y canteras": { + "account_number": "411530", + "account_type": "Income Account" + }, + "Prestaci\u00f3n de servicios sector minero": { + "account_number": "411532", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "411595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "411599", + "account_type": "Income Account" + } + }, + "Industrias manufactureras": { + "account_number": "4120", + "account_type": "Income Account", + "Producci\u00f3n y procesamiento de carnes y productos c\u00e1rnicos": { + "account_number": "412001", + "account_type": "Income Account" + }, + "Productos de pescado": { + "account_number": "412002", + "account_type": "Income Account" + }, + "Productos de frutas, legumbres y hortalizas": { + "account_number": "412003", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de aceites y grasas": { + "account_number": "412004", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos l\u00e1cteos": { + "account_number": "412005", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos de moliner\u00eda": { + "account_number": "412006", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de almidones y derivados": { + "account_number": "412007", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de alimentos para animales": { + "account_number": "412008", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos para panader\u00eda": { + "account_number": "412009", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de az\u00facar y melazas": { + "account_number": "412010", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de cacao, chocolate y confiter\u00eda": { + "account_number": "412011", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de pastas y productos farin\u00e1ceos": { + "account_number": "412012", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos de caf\u00e9": { + "account_number": "412013", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de otros productos alimenticios": { + "account_number": "412014", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de bebidas alcoh\u00f3licas y alcohol et\u00edlico": { + "account_number": "412015", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de vinos": { + "account_number": "412016", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de bebidas malteadas y de malta": { + "account_number": "412017", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de bebidas no alcoh\u00f3licas": { + "account_number": "412018", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos de tabaco": { + "account_number": "412019", + "account_type": "Income Account" + }, + "Preparaci\u00f3n e hilatura de fibras textiles y tejedur\u00eda": { + "account_number": "412020", + "account_type": "Income Account" + }, + "Acabado de productos textiles": { + "account_number": "412021", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de art\u00edculos de materiales textiles": { + "account_number": "412022", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de tapices y alfombras": { + "account_number": "412023", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de cuerdas, cordeles, bramantes y redes": { + "account_number": "412024", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de otros productos textiles": { + "account_number": "412025", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de tejidos": { + "account_number": "412026", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de prendas de vestir": { + "account_number": "412027", + "account_type": "Income Account" + }, + "Preparaci\u00f3n, adobo y te\u00f1ido de pieles": { + "account_number": "412028", + "account_type": "Income Account" + }, + "Curtido, adobo o preparaci\u00f3n de cuero": { + "account_number": "412029", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de maletas, bolsos y similares": { + "account_number": "412030", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de calzado": { + "account_number": "412031", + "account_type": "Income Account" + }, + "Producci\u00f3n de madera, art\u00edculos de madera y corcho": { + "account_number": "412032", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de pasta y productos de madera, papel y cart\u00f3n": { + "account_number": "412033", + "account_type": "Income Account" + }, + "Ediciones y publicaciones": { + "account_number": "412034", + "account_type": "Income Account" + }, + "Impresi\u00f3n": { + "account_number": "412035", + "account_type": "Income Account" + }, + "Servicios relacionados con la edici\u00f3n y la impresi\u00f3n": { + "account_number": "412036", + "account_type": "Income Account" + }, + "Reproducci\u00f3n de grabaciones": { + "account_number": "412037", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos de horno de coque": { + "account_number": "412038", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos de la refinaci\u00f3n de petr\u00f3leo": { + "account_number": "412039", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de sustancias qu\u00edmicas b\u00e1sicas": { + "account_number": "412040", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de abonos y compuestos de nitr\u00f3geno": { + "account_number": "412041", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de pl\u00e1stico y caucho sint\u00e9tico": { + "account_number": "412042", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos qu\u00edmicos de uso agropecuario": { + "account_number": "412043", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de pinturas, tintas y masillas": { + "account_number": "412044", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos farmac\u00e9uticos y bot\u00e1nicos": { + "account_number": "412045", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de jabones, detergentes y preparados de tocador": { + "account_number": "412046", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de otros productos qu\u00edmicos": { + "account_number": "412047", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de fibras": { + "account_number": "412048", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de otros productos de caucho": { + "account_number": "412049", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos de pl\u00e1stico": { + "account_number": "412050", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de vidrio y productos de vidrio": { + "account_number": "412051", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de productos de cer\u00e1mica, loza, piedra, arcilla y porcelana": { + "account_number": "412052", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de cemento, cal y yeso": { + "account_number": "412053", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de art\u00edculos de hormig\u00f3n, cemento y yeso": { + "account_number": "412054", + "account_type": "Income Account" + }, + "Corte, tallado y acabado de la piedra": { + "account_number": "412055", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de otros productos minerales no met\u00e1licos": { + "account_number": "412056", + "account_type": "Income Account" + }, + "Industrias b\u00e1sicas y fundici\u00f3n de hierro y acero": { + "account_number": "412057", + "account_type": "Income Account" + }, + "Productos primarios de metales preciosos y de metales no ferrosos": { + "account_number": "412058", + "account_type": "Income Account" + }, + "Fundici\u00f3n de metales no ferrosos": { + "account_number": "412059", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de productos met\u00e1licos para uso estructural": { + "account_number": "412060", + "account_type": "Income Account" + }, + "Forja, prensado, estampado, laminado de metal y pulvimetalurgia": { + "account_number": "412061", + "account_type": "Income Account" + }, + "Revestimiento de metales y obras de ingenier\u00eda mec\u00e1nica": { + "account_number": "412062", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de art\u00edculos de ferreter\u00eda": { + "account_number": "412063", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de otros productos de metal": { + "account_number": "412064", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de maquinaria y equipo": { + "account_number": "412065", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de equipos de elevaci\u00f3n y manipulaci\u00f3n": { + "account_number": "412066", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de aparatos de uso dom\u00e9stico": { + "account_number": "412067", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de equipo de oficina": { + "account_number": "412068", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de pilas y bater\u00edas primarias": { + "account_number": "412069", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de equipo de iluminaci\u00f3n": { + "account_number": "412070", + "account_type": "Income Account" + }, + "Elaboraci\u00f3n de otros tipos de equipo el\u00e9ctrico": { + "account_number": "412071", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de equipos de radio, televisi\u00f3n y comunicaciones": { + "account_number": "412072", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de aparatos e instrumentos m\u00e9dicos": { + "account_number": "412073", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de instrumentos de medici\u00f3n y control": { + "account_number": "412074", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de instrumentos de \u00f3ptica y equipo fotogr\u00e1fico": { + "account_number": "412075", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de relojes": { + "account_number": "412076", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de veh\u00edculos automotores": { + "account_number": "412077", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de carrocer\u00edas para automotores": { + "account_number": "412078", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de partes piezas y accesorios para automotores": { + "account_number": "412079", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n y reparaci\u00f3n de buques y otras embarcaciones": { + "account_number": "412080", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de locomotoras y material rodante para ferrocarriles": { + "account_number": "412081", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de aeronaves": { + "account_number": "412082", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de motocicletas": { + "account_number": "412083", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de bicicletas y sillas de ruedas": { + "account_number": "412084", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de otros tipos de transporte": { + "account_number": "412085", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de muebles": { + "account_number": "412086", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de joyas y art\u00edculos conexos": { + "account_number": "412087", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de instrumentos de m\u00fasica": { + "account_number": "412088", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de art\u00edculos y equipo para deporte": { + "account_number": "412089", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de juegos y juguetes": { + "account_number": "412090", + "account_type": "Income Account" + }, + "Reciclamiento de desperdicios": { + "account_number": "412091", + "account_type": "Income Account" + }, + "Productos de otras industrias manufactureras": { + "account_number": "412095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "412099", + "account_type": "Income Account" + } + }, + "Suministro de electricidad, gas y agua": { + "account_number": "4125", + "account_type": "Income Account", + "Generaci\u00f3n, captaci\u00f3n y distribuci\u00f3n de energ\u00eda el\u00e9ctrica": { + "account_number": "412505", + "account_type": "Income Account" + }, + "Fabricaci\u00f3n de gas y distribuci\u00f3n de combustibles gaseosos": { + "account_number": "412510", + "account_type": "Income Account" + }, + "Captaci\u00f3n, depuraci\u00f3n y distribuci\u00f3n de agua": { + "account_number": "412515", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "412595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "412599", + "account_type": "Income Account" + } + }, + "Construcci\u00f3n": { + "account_number": "4130", + "account_type": "Income Account", + "Preparaci\u00f3n de terrenos": { + "account_number": "413005", + "account_type": "Income Account" + }, + "Construcci\u00f3n de edificios y obras de ingenier\u00eda civil": { + "account_number": "413010", + "account_type": "Income Account" + }, + "Acondicionamiento de edificios": { + "account_number": "413015", + "account_type": "Income Account" + }, + "Terminaci\u00f3n de edificaciones": { + "account_number": "413020", + "account_type": "Income Account" + }, + "Alquiler de equipo con operarios": { + "account_number": "413025", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "413095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "413099", + "account_type": "Income Account" + } + }, + "Comercio al por mayor y al por menor": { + "account_number": "4135", + "account_type": "Income Account", + "Venta de veh\u00edculos automotores": { + "account_number": "413502", + "account_type": "Income Account" + }, + "Mantenimiento, reparaci\u00f3n y lavado de veh\u00edculos automotores": { + "account_number": "413504", + "account_type": "Income Account" + }, + "Venta de partes, piezas y accesorios de veh\u00edculos automotores": { + "account_number": "413506", + "account_type": "Income Account" + }, + "Venta de combustibles s\u00f3lidos, l\u00edquidos, gaseosos": { + "account_number": "413508", + "account_type": "Income Account" + }, + "Venta de lubricantes, aditivos, llantas y lujos para automotores": { + "account_number": "413510", + "account_type": "Income Account" + }, + "Venta a cambio de retribuci\u00f3n o por contrata": { + "account_number": "413512", + "account_type": "Income Account" + }, + "Venta de insumos, materias primas agropecuarias y flores": { + "account_number": "413514", + "account_type": "Income Account" + }, + "Venta de otros insumos y materias primas no agropecuarias": { + "account_number": "413516", + "account_type": "Income Account" + }, + "Venta de animales vivos y cueros": { + "account_number": "413518", + "account_type": "Income Account" + }, + "Venta de productos en almacenes no especializados": { + "account_number": "413520", + "account_type": "Income Account" + }, + "Venta de productos agropecuarios": { + "account_number": "413522", + "account_type": "Income Account" + }, + "Venta de productos textiles, de vestir, de cuero y calzado": { + "account_number": "413524", + "account_type": "Income Account" + }, + "Venta de papel y cart\u00f3n": { + "account_number": "413526", + "account_type": "Income Account" + }, + "Venta de libros, revistas, elementos de papeler\u00eda, \u00fatiles y textos escolares": { + "account_number": "413528", + "account_type": "Income Account" + }, + "Venta de juegos, juguetes y art\u00edculos deportivos": { + "account_number": "413530", + "account_type": "Income Account" + }, + "Venta de instrumentos quir\u00fargicos y ortop\u00e9dicos": { + "account_number": "413532", + "account_type": "Income Account" + }, + "Venta de art\u00edculos en relojer\u00edas y joyer\u00edas": { + "account_number": "413534", + "account_type": "Income Account" + }, + "Venta de electrodom\u00e9sticos y muebles": { + "account_number": "413536", + "account_type": "Income Account" + }, + "Venta de productos de aseo, farmac\u00e9uticos, medicinales, y art\u00edculos de tocador": { + "account_number": "413538", + "account_type": "Income Account" + }, + "Venta de cubiertos, vajillas, cristaler\u00eda, porcelanas, cer\u00e1micas y otros art\u00edculos de uso dom\u00e9stico": { + "account_number": "413540", + "account_type": "Income Account" + }, + "Venta de materiales de construcci\u00f3n, fontaner\u00eda y calefacci\u00f3n": { + "account_number": "413542", + "account_type": "Income Account" + }, + "Venta de pinturas y lacas": { + "account_number": "413544", + "account_type": "Income Account" + }, + "Venta de productos de vidrios y marqueter\u00eda": { + "account_number": "413546", + "account_type": "Income Account" + }, + "Venta de herramientas y art\u00edculos de ferreter\u00eda": { + "account_number": "413548", + "account_type": "Income Account" + }, + "Venta de qu\u00edmicos": { + "account_number": "413550", + "account_type": "Income Account" + }, + "Venta de productos intermedios, desperdicios y desechos": { + "account_number": "413552", + "account_type": "Income Account" + }, + "Venta de maquinaria, equipo de oficina y programas de computador": { + "account_number": "413554", + "account_type": "Income Account" + }, + "Venta de art\u00edculos en cacharrer\u00edas y miscel\u00e1neas": { + "account_number": "413556", + "account_type": "Income Account" + }, + "Venta de instrumentos musicales": { + "account_number": "413558", + "account_type": "Income Account" + }, + "Venta de art\u00edculos en casas de empe\u00f1o y prender\u00edas": { + "account_number": "413560", + "account_type": "Income Account" + }, + "Venta de equipo fotogr\u00e1fico": { + "account_number": "413562", + "account_type": "Income Account" + }, + "Venta de equipo \u00f3ptico y de precisi\u00f3n": { + "account_number": "413564", + "account_type": "Income Account" + }, + "Venta de empaques": { + "account_number": "413566", + "account_type": "Income Account" + }, + "Venta de equipo profesional y cient\u00edfico": { + "account_number": "413568", + "account_type": "Income Account" + }, + "Venta de loter\u00edas, rifas, chance, apuestas y similares": { + "account_number": "413570", + "account_type": "Income Account" + }, + "Reparaci\u00f3n de efectos personales y electrodom\u00e9sticos": { + "account_number": "413572", + "account_type": "Income Account" + }, + "Venta de otros productos": { + "account_number": "413595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "413599", + "account_type": "Income Account" + } + }, + "Hoteles y restaurantes": { + "account_number": "4140", + "account_type": "Income Account", + "Hoteler\u00eda": { + "account_number": "414005", + "account_type": "Income Account" + }, + "Campamento y otros tipos de hospedaje": { + "account_number": "414010", + "account_type": "Income Account" + }, + "Restaurantes": { + "account_number": "414015", + "account_type": "Income Account" + }, + "Bares y cantinas": { + "account_number": "414020", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "414095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "414099", + "account_type": "Income Account" + } + }, + "Transporte, almacenamiento y comunicaciones": { + "account_number": "4145", + "account_type": "Income Account", + "Servicio de transporte por carretera": { + "account_number": "414505", + "account_type": "Income Account" + }, + "Servicio de transporte por v\u00eda f\u00e9rrea": { + "account_number": "414510", + "account_type": "Income Account" + }, + "Servicio de transporte por v\u00eda acu\u00e1tica": { + "account_number": "414515", + "account_type": "Income Account" + }, + "Servicio de transporte por v\u00eda a\u00e9rea": { + "account_number": "414520", + "account_type": "Income Account" + }, + "Servicio de transporte por tuber\u00edas": { + "account_number": "414525", + "account_type": "Income Account" + }, + "Manipulaci\u00f3n de carga": { + "account_number": "414530", + "account_type": "Income Account" + }, + "Almacenamiento y dep\u00f3sito": { + "account_number": "414535", + "account_type": "Income Account" + }, + "Servicios complementarios para el transporte": { + "account_number": "414540", + "account_type": "Income Account" + }, + "Agencias de viaje": { + "account_number": "414545", + "account_type": "Income Account" + }, + "Otras agencias de transporte": { + "account_number": "414550", + "account_type": "Income Account" + }, + "Servicio postal y de correo": { + "account_number": "414555", + "account_type": "Income Account" + }, + "Servicio telef\u00f3nico": { + "account_number": "414560", + "account_type": "Income Account" + }, + "Servicio de tel\u00e9grafo": { + "account_number": "414565", + "account_type": "Income Account" + }, + "Servicio de transmisi\u00f3n de datos": { + "account_number": "414570", + "account_type": "Income Account" + }, + "Servicio de radio y televisi\u00f3n por cable": { + "account_number": "414575", + "account_type": "Income Account" + }, + "Transmisi\u00f3n de sonido e im\u00e1genes por contrato": { + "account_number": "414580", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "414595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "414599", + "account_type": "Income Account" + } + }, + "Actividad financiera": { + "account_number": "4150", + "account_type": "Income Account", + "Venta de inversiones": { + "account_number": "415005", + "account_type": "Income Account" + }, + "Dividendos de sociedades an\u00f3nimas y/o asimiladas": { + "account_number": "415010", + "account_type": "Income Account" + }, + "Participaciones de sociedades limitadas y/o asimiladas": { + "account_number": "415015", + "account_type": "Income Account" + }, + "Intereses": { + "account_number": "415020", + "account_type": "Income Account" + }, + "Reajuste monetario-UPAC (hoy UVR)": { + "account_number": "415025", + "account_type": "Income Account" + }, + "Comisiones": { + "account_number": "415030", + "account_type": "Income Account" + }, + "Operaciones de descuento": { + "account_number": "415035", + "account_type": "Income Account" + }, + "Cuotas de inscripci\u00f3n-consorcios": { + "account_number": "415040", + "account_type": "Income Account" + }, + "Cuotas de administraci\u00f3n-consorcios": { + "account_number": "415045", + "account_type": "Income Account" + }, + "Reajuste del sistema-consorcios": { + "account_number": "415050", + "account_type": "Income Account" + }, + "Eliminaci\u00f3n de suscriptores-consorcios": { + "account_number": "415055", + "account_type": "Income Account" + }, + "Cuotas de ingreso o retiro-sociedad administradora": { + "account_number": "415060", + "account_type": "Income Account" + }, + "Servicios a comisionistas": { + "account_number": "415065", + "account_type": "Income Account" + }, + "Inscripciones y cuotas": { + "account_number": "415070", + "account_type": "Income Account" + }, + "Recuperaci\u00f3n de garant\u00edas": { + "account_number": "415075", + "account_type": "Income Account" + }, + "Ingresos m\u00e9todo de participaci\u00f3n": { + "account_number": "415080", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "415095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "415099", + "account_type": "Income Account" + } + }, + "Actividades inmobiliarias, empresariales y de alquiler": { + "account_number": "4155", + "account_type": "Income Account", + "Arrendamientos de bienes inmuebles": { + "account_number": "415505", + "account_type": "Income Account" + }, + "Inmobiliarias por retribuci\u00f3n o contrata": { + "account_number": "415510", + "account_type": "Income Account" + }, + "Alquiler equipo de transporte": { + "account_number": "415515", + "account_type": "Income Account" + }, + "Alquiler maquinaria y equipo": { + "account_number": "415520", + "account_type": "Income Account" + }, + "Alquiler de efectos personales y enseres dom\u00e9sticos": { + "account_number": "415525", + "account_type": "Income Account" + }, + "Consultor\u00eda en equipo y programas de inform\u00e1tica": { + "account_number": "415530", + "account_type": "Income Account" + }, + "Procesamiento de datos": { + "account_number": "415535", + "account_type": "Income Account" + }, + "Mantenimiento y reparaci\u00f3n de maquinaria de oficina": { + "account_number": "415540", + "account_type": "Income Account" + }, + "Investigaciones cient\u00edficas y de desarrollo": { + "account_number": "415545", + "account_type": "Income Account" + }, + "Actividades empresariales de consultor\u00eda": { + "account_number": "415550", + "account_type": "Income Account" + }, + "Publicidad": { + "account_number": "415555", + "account_type": "Income Account" + }, + "Dotaci\u00f3n de personal": { + "account_number": "415560", + "account_type": "Income Account" + }, + "Investigaci\u00f3n y seguridad": { + "account_number": "415565", + "account_type": "Income Account" + }, + "Limpieza de inmuebles": { + "account_number": "415570", + "account_type": "Income Account" + }, + "Fotograf\u00eda": { + "account_number": "415575", + "account_type": "Income Account" + }, + "Envase y empaque": { + "account_number": "415580", + "account_type": "Income Account" + }, + "Fotocopiado": { + "account_number": "415585", + "account_type": "Income Account" + }, + "Mantenimiento y reparaci\u00f3n de maquinaria y equipo": { + "account_number": "415590", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "415595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "415599", + "account_type": "Income Account" + } + }, + "Ense\u00f1anza": { + "account_number": "4160", + "account_type": "Income Account", + "Actividades relacionadas con la educaci\u00f3n": { + "account_number": "416005", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "416095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "416099", + "account_type": "Income Account" + } + }, + "Servicios sociales y de salud": { + "account_number": "4165", + "account_type": "Income Account", + "Servicio hospitalario": { + "account_number": "416505", + "account_type": "Income Account" + }, + "Servicio m\u00e9dico": { + "account_number": "416510", + "account_type": "Income Account" + }, + "Servicio odontol\u00f3gico": { + "account_number": "416515", + "account_type": "Income Account" + }, + "Servicio de laboratorio": { + "account_number": "416520", + "account_type": "Income Account" + }, + "Actividades veterinarias": { + "account_number": "416525", + "account_type": "Income Account" + }, + "Actividades de servicios sociales": { + "account_number": "416530", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "416595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "416599", + "account_type": "Income Account" + } + }, + "Otras actividades de servicios comunitarios, sociales y personales": { + "account_number": "4170", + "account_type": "Income Account", + "Eliminaci\u00f3n de desperdicios y aguas residuales": { + "account_number": "417005", + "account_type": "Income Account" + }, + "Actividades de asociaci\u00f3n": { + "account_number": "417010", + "account_type": "Income Account" + }, + "Producci\u00f3n y distribuci\u00f3n de filmes y videocintas": { + "account_number": "417015", + "account_type": "Income Account" + }, + "Exhibici\u00f3n de filmes y videocintas": { + "account_number": "417020", + "account_type": "Income Account" + }, + "Actividad de radio y televisi\u00f3n": { + "account_number": "417025", + "account_type": "Income Account" + }, + "Actividad teatral, musical y art\u00edstica": { + "account_number": "417030", + "account_type": "Income Account" + }, + "Grabaci\u00f3n y producci\u00f3n de discos": { + "account_number": "417035", + "account_type": "Income Account" + }, + "Entretenimiento y esparcimiento": { + "account_number": "417040", + "account_type": "Income Account" + }, + "Agencias de noticias": { + "account_number": "417045", + "account_type": "Income Account" + }, + "Lavander\u00edas y similares": { + "account_number": "417050", + "account_type": "Income Account" + }, + "Peluquer\u00edas y similares": { + "account_number": "417055", + "account_type": "Income Account" + }, + "Servicios funerarios": { + "account_number": "417060", + "account_type": "Income Account" + }, + "Zonas francas": { + "account_number": "417065", + "account_type": "Income Account" + }, + "Actividades conexas": { + "account_number": "417095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "417099", + "account_type": "Income Account" + } + }, + "Devoluciones en ventas (DB)": { + "account_number": "4175", + "account_type": "Income Account", + "Ajustes por inflaci\u00f3n": { + "account_number": "417599", + "account_type": "Income Account" + } + } + }, + "No operacionales": { + "account_number": "42", + "account_type": "Income Account", + "Otras ventas": { + "account_number": "4205", + "account_type": "Income Account", + "Materia prima": { + "account_number": "420505", + "account_type": "Income Account" + }, + "Material de desecho": { + "account_number": "420510", + "account_type": "Income Account" + }, + "Materiales varios": { + "account_number": "420515", + "account_type": "Income Account" + }, + "Productos de diversificaci\u00f3n": { + "account_number": "420520", + "account_type": "Income Account" + }, + "Excedentes de exportaci\u00f3n": { + "account_number": "420525", + "account_type": "Income Account" + }, + "Envases y empaques": { + "account_number": "420530", + "account_type": "Income Account" + }, + "Productos agr\u00edcolas": { + "account_number": "420535", + "account_type": "Income Account" + }, + "De propaganda": { + "account_number": "420540", + "account_type": "Income Account" + }, + "Productos en remate": { + "account_number": "420545", + "account_type": "Income Account" + }, + "Combustibles y lubricantes": { + "account_number": "420550", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "420599", + "account_type": "Income Account" + } + }, + "Financieros": { + "account_number": "4210", + "account_type": "Income Account", + "Intereses": { + "account_number": "421005", + "account_type": "Income Account" + }, + "Reajuste monetario-UPAC (hoy UVR)": { + "account_number": "421010", + "account_type": "Income Account" + }, + "Descuentos amortizados": { + "account_number": "421015", + "account_type": "Income Account" + }, + "Diferencia en cambio": { + "account_number": "421020", + "account_type": "Income Account" + }, + "Financiaci\u00f3n veh\u00edculos": { + "account_number": "421025", + "account_type": "Income Account" + }, + "Financiaci\u00f3n sistemas de viajes": { + "account_number": "421030", + "account_type": "Income Account" + }, + "Aceptaciones bancarias": { + "account_number": "421035", + "account_type": "Income Account" + }, + "Descuentos comerciales condicionados": { + "account_number": "421040", + "account_type": "Income Account" + }, + "Descuentos bancarios": { + "account_number": "421045", + "account_type": "Income Account" + }, + "Comisiones cheques de otras plazas": { + "account_number": "421050", + "account_type": "Income Account" + }, + "Multas y recargos": { + "account_number": "421055", + "account_type": "Income Account" + }, + "Sanciones cheques devueltos": { + "account_number": "421060", + "account_type": "Income Account" + }, + "Otros": { + "account_number": "421095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "421099", + "account_type": "Income Account" + } + }, + "Dividendos y participaciones": { + "account_number": "4215", + "account_type": "Income Account", + "De sociedades an\u00f3nimas y/o asimiladas": { + "account_number": "421505", + "account_type": "Income Account" + }, + "De sociedades limitadas y/o asimiladas": { + "account_number": "421510", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "421599", + "account_type": "Income Account" + } + }, + "Ingresos m\u00e9todo de participaci\u00f3n": { + "account_number": "4218", + "account_type": "Income Account", + "De sociedades an\u00f3nimas y/o asimiladas": { + "account_number": "421805", + "account_type": "Income Account" + }, + "De sociedades limitadas y/o asimiladas": { + "account_number": "421810", + "account_type": "Income Account" + } + }, + "Arrendamientos": { + "account_number": "4220", + "account_type": "Income Account", + "Terrenos": { + "account_number": "422005", + "account_type": "Income Account" + }, + "Construcciones y edificios": { + "account_number": "422010", + "account_type": "Income Account" + }, + "Maquinaria y equipo": { + "account_number": "422015", + "account_type": "Income Account" + }, + "Equipo de oficina": { + "account_number": "422020", + "account_type": "Income Account" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "422025", + "account_type": "Income Account" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "422030", + "account_type": "Income Account" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "422035", + "account_type": "Income Account" + }, + "Flota y equipo de transporte": { + "account_number": "422040", + "account_type": "Income Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "422045", + "account_type": "Income Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "422050", + "account_type": "Income Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "422055", + "account_type": "Income Account" + }, + "Acueductos, plantas y redes": { + "account_number": "422060", + "account_type": "Income Account" + }, + "Envases y empaques": { + "account_number": "422062", + "account_type": "Income Account" + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "422065", + "account_type": "Income Account" + }, + "Aer\u00f3dromos": { + "account_number": "422070", + "account_type": "Income Account" + }, + "Semovientes": { + "account_number": "422075", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "422099", + "account_type": "Income Account" + } + }, + "Comisiones": { + "account_number": "4225", + "account_type": "Income Account", + "Sobre inversiones": { + "account_number": "422505", + "account_type": "Income Account" + }, + "De concesionarios": { + "account_number": "422510", + "account_type": "Income Account" + }, + "De actividades financieras": { + "account_number": "422515", + "account_type": "Income Account" + }, + "Por venta de servicios de taller": { + "account_number": "422520", + "account_type": "Income Account" + }, + "Por venta de seguros": { + "account_number": "422525", + "account_type": "Income Account" + }, + "Por ingresos para terceros": { + "account_number": "422530", + "account_type": "Income Account" + }, + "Por distribuci\u00f3n de pel\u00edculas": { + "account_number": "422535", + "account_type": "Income Account" + }, + "Derechos de autor": { + "account_number": "422540", + "account_type": "Income Account" + }, + "Derechos de programaci\u00f3n": { + "account_number": "422545", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "422599", + "account_type": "Income Account" + } + }, + "Honorarios": { + "account_number": "4230", + "account_type": "Income Account", + "Asesor\u00edas": { + "account_number": "423005", + "account_type": "Income Account" + }, + "Asistencia t\u00e9cnica": { + "account_number": "423010", + "account_type": "Income Account" + }, + "Administraci\u00f3n de vinculadas": { + "account_number": "423015", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "423099", + "account_type": "Income Account" + } + }, + "Servicios": { + "account_number": "4235", + "account_type": "Income Account", + "De b\u00e1scula": { + "account_number": "423505", + "account_type": "Income Account" + }, + "De transporte": { + "account_number": "423510", + "account_type": "Income Account" + }, + "De prensa": { + "account_number": "423515", + "account_type": "Income Account" + }, + "Administrativos": { + "account_number": "423520", + "account_type": "Income Account" + }, + "T\u00e9cnicos": { + "account_number": "423525", + "account_type": "Income Account" + }, + "De computaci\u00f3n": { + "account_number": "423530", + "account_type": "Income Account" + }, + "De telefax": { + "account_number": "423535", + "account_type": "Income Account" + }, + "Taller de veh\u00edculos": { + "account_number": "423540", + "account_type": "Income Account" + }, + "De recepci\u00f3n de aeronaves": { + "account_number": "423545", + "account_type": "Income Account" + }, + "De transporte programa gas natural": { + "account_number": "423550", + "account_type": "Income Account" + }, + "Por contratos": { + "account_number": "423555", + "account_type": "Income Account" + }, + "De trilla": { + "account_number": "423560", + "account_type": "Income Account" + }, + "De mantenimiento": { + "account_number": "423565", + "account_type": "Income Account" + }, + "Al personal": { + "account_number": "423570", + "account_type": "Income Account" + }, + "De casino": { + "account_number": "423575", + "account_type": "Income Account" + }, + "Fletes": { + "account_number": "423580", + "account_type": "Income Account" + }, + "Entre compa\u00f1\u00edas": { + "account_number": "423585", + "account_type": "Income Account" + }, + "Otros": { + "account_number": "423595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "423599", + "account_type": "Income Account" + } + }, + "Utilidad en venta de inversiones": { + "account_number": "4240", + "account_type": "Income Account", + "Acciones": { + "account_number": "424005", + "account_type": "Income Account" + }, + "Cuotas o partes de inter\u00e9s social": { + "account_number": "424010", + "account_type": "Income Account" + }, + "Bonos": { + "account_number": "424015", + "account_type": "Income Account" + }, + "C\u00e9dulas": { + "account_number": "424020", + "account_type": "Income Account" + }, + "Certificados": { + "account_number": "424025", + "account_type": "Income Account" + }, + "Papeles comerciales": { + "account_number": "424030", + "account_type": "Income Account" + }, + "T\u00edtulos": { + "account_number": "424035", + "account_type": "Income Account" + }, + "Derechos fiduciarios": { + "account_number": "424045", + "account_type": "Income Account" + }, + "Obligatorias": { + "account_number": "424050", + "account_type": "Income Account" + }, + "Otras": { + "account_number": "424095", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "424099", + "account_type": "Income Account" + } + }, + "Utilidad en venta de propiedades, planta y equipo": { + "account_number": "4245", + "account_type": "Income Account", + "Terrenos": { + "account_number": "424504", + "account_type": "Income Account" + }, + "Materiales industria petrolera": { + "account_number": "424506", + "account_type": "Income Account" + }, + "Construcciones en curso": { + "account_number": "424508", + "account_type": "Income Account" + }, + "Maquinaria en montaje": { + "account_number": "424512", + "account_type": "Income Account" + }, + "Construcciones y edificaciones": { + "account_number": "424516", + "account_type": "Income Account" + }, + "Maquinaria y equipo": { + "account_number": "424520", + "account_type": "Income Account" + }, + "Equipo de oficina": { + "account_number": "424524", + "account_type": "Income Account" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "424528", + "account_type": "Income Account" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "424532", + "account_type": "Income Account" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "424536", + "account_type": "Income Account" + }, + "Flota y equipo de transporte": { + "account_number": "424540", + "account_type": "Income Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "424544", + "account_type": "Income Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "424548", + "account_type": "Income Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "424552", + "account_type": "Income Account" + }, + "Acueductos, plantas y redes": { + "account_number": "424556", + "account_type": "Income Account" + }, + "Armamento de vigilancia": { + "account_number": "424560", + "account_type": "Income Account" + }, + "Envases y empaques": { + "account_number": "424562", + "account_type": "Income Account" + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "424564", + "account_type": "Income Account" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "424568", + "account_type": "Income Account" + }, + "Minas y Canteras": { + "account_number": "424572", + "account_type": "Income Account" + }, + "Pozos artesianos": { + "account_number": "424580", + "account_type": "Income Account" + }, + "Yacimientos": { + "account_number": "424584", + "account_type": "Income Account" + }, + "Semovientes": { + "account_number": "424588", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "424599", + "account_type": "Income Account" + } + }, + "Utilidad en venta de otros bienes": { + "account_number": "4248", + "account_type": "Income Account", + "Intangibles": { + "account_number": "424805", + "account_type": "Income Account" + }, + "Otros activos": { + "account_number": "424810", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "424899", + "account_type": "Income Account" + } + }, + "Recuperaciones": { + "account_number": "4250", + "account_type": "Income Account", + "Deudas malas": { + "account_number": "425005", + "account_type": "Income Account" + }, + "Seguros": { + "account_number": "425010", + "account_type": "Income Account" + }, + "Reclamos": { + "account_number": "425015", + "account_type": "Income Account" + }, + "Reintegro por personal en comisi\u00f3n": { + "account_number": "425020", + "account_type": "Income Account" + }, + "Reintegro garant\u00edas": { + "account_number": "425025", + "account_type": "Income Account" + }, + "Descuentos concedidos": { + "account_number": "425030", + "account_type": "Income Account" + }, + "De provisiones": { + "account_number": "425035", + "account_type": "Income Account" + }, + "Gastos bancarios": { + "account_number": "425040", + "account_type": "Income Account" + }, + "De depreciaci\u00f3n": { + "account_number": "425045", + "account_type": "Income Account" + }, + "Reintegro de otros costos y gastos": { + "account_number": "425050", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "425099", + "account_type": "Income Account" + } + }, + "Indemnizaciones": { + "account_number": "4255", + "account_type": "Income Account", + "Por siniestro": { + "account_number": "425505", + "account_type": "Income Account" + }, + "Por suministros": { + "account_number": "425510", + "account_type": "Income Account" + }, + "Lucro cesante compa\u00f1\u00edas de seguros": { + "account_number": "425515", + "account_type": "Income Account" + }, + "Da\u00f1o emergente compa\u00f1\u00edas de seguros": { + "account_number": "425520", + "account_type": "Income Account" + }, + "Por p\u00e9rdida de mercanc\u00eda": { + "account_number": "425525", + "account_type": "Income Account" + }, + "Por incumplimiento de contratos": { + "account_number": "425530", + "account_type": "Income Account" + }, + "De terceros": { + "account_number": "425535", + "account_type": "Income Account" + }, + "Por incapacidades ISS": { + "account_number": "425540", + "account_type": "Income Account" + }, + "Otras": { + "account_number": "425595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "425599", + "account_type": "Income Account" + } + }, + "Participaciones en concesiones": { + "account_number": "4260", + "account_type": "Income Account", + "Ajustes por inflaci\u00f3n": { + "account_number": "426099", + "account_type": "Income Account" + } + }, + "Ingresos de ejercicios anteriores": { + "account_number": "4265", + "account_type": "Income Account", + "Ajustes por inflaci\u00f3n": { + "account_number": "426599", + "account_type": "Income Account" + } + }, + "Devoluciones en otras ventas (DB)": { + "account_number": "4275", + "account_type": "Income Account", + "Ajustes por inflaci\u00f3n": { + "account_number": "427599", + "account_type": "Income Account" + } + }, + "Diversos": { + "account_number": "4295", + "account_type": "Income Account", + "CERT": { + "account_number": "429503", + "account_type": "Income Account" + }, + "Aprovechamientos": { + "account_number": "429505", + "account_type": "Income Account" + }, + "Auxilios": { + "account_number": "429507", + "account_type": "Income Account" + }, + "Subvenciones": { + "account_number": "429509", + "account_type": "Income Account" + }, + "Ingresos por investigaci\u00f3n y desarrollo": { + "account_number": "429511", + "account_type": "Income Account" + }, + "Por trabajos ejecutados": { + "account_number": "429513", + "account_type": "Income Account" + }, + "Regal\u00edas": { + "account_number": "429515", + "account_type": "Income Account" + }, + "Derivados de las exportaciones": { + "account_number": "429517", + "account_type": "Income Account" + }, + "Otros ingresos de explotaci\u00f3n": { + "account_number": "429519", + "account_type": "Income Account" + }, + "De la actividad ganadera": { + "account_number": "429521", + "account_type": "Income Account" + }, + "Derechos y licitaciones": { + "account_number": "429525", + "account_type": "Income Account" + }, + "Ingresos por elementos perdidos": { + "account_number": "429530", + "account_type": "Income Account" + }, + "Multas y recargos": { + "account_number": "429533", + "account_type": "Income Account" + }, + "Preavisos descontados": { + "account_number": "429535", + "account_type": "Income Account" + }, + "Reclamos": { + "account_number": "429537", + "account_type": "Income Account" + }, + "Recobro de da\u00f1os": { + "account_number": "429540", + "account_type": "Income Account" + }, + "Premios": { + "account_number": "429543", + "account_type": "Income Account" + }, + "Bonificaciones": { + "account_number": "429545", + "account_type": "Income Account" + }, + "Productos descontados": { + "account_number": "429547", + "account_type": "Income Account" + }, + "Reconocimientos ISS": { + "account_number": "429549", + "account_type": "Income Account" + }, + "Excedentes": { + "account_number": "429551", + "account_type": "Income Account" + }, + "Sobrantes de caja": { + "account_number": "429553", + "account_type": "Income Account" + }, + "Sobrantes en liquidaci\u00f3n fletes": { + "account_number": "429555", + "account_type": "Income Account" + }, + "Subsidios estatales": { + "account_number": "429557", + "account_type": "Income Account" + }, + "Capacitaci\u00f3n distribuidores": { + "account_number": "429559", + "account_type": "Income Account" + }, + "De escrituraci\u00f3n": { + "account_number": "429561", + "account_type": "Income Account" + }, + "Registro promesas de venta": { + "account_number": "429563", + "account_type": "Income Account" + }, + "\u00datiles, papeler\u00eda y fotocopias": { + "account_number": "429567", + "account_type": "Income Account" + }, + "Resultados, matr\u00edculas y traspasos": { + "account_number": "429571", + "account_type": "Income Account" + }, + "Decoraciones": { + "account_number": "429573", + "account_type": "Income Account" + }, + "Manejo de carga": { + "account_number": "429575", + "account_type": "Income Account" + }, + "Historia cl\u00ednica": { + "account_number": "429579", + "account_type": "Income Account" + }, + "Ajuste al peso": { + "account_number": "429581", + "account_type": "Income Account" + }, + "Llamadas telef\u00f3nicas": { + "account_number": "429583", + "account_type": "Income Account" + }, + "Otros": { + "account_number": "429595", + "account_type": "Income Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "429599", + "account_type": "Income Account" + } + } + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "47", + "account_type": "Income Account", + "Correcci\u00f3n monetaria": { + "account_number": "4705", + "account_type": "Income Account", + "Inversiones (CR)": { + "account_number": "470505", + "account_type": "Income Account" + }, + "Inventarios (CR)": { + "account_number": "470510", + "account_type": "Income Account" + }, + "Propiedades, planta y equipo (CR)": { + "account_number": "470515", + "account_type": "Income Account" + }, + "Intangibles (CR)": { + "account_number": "470520", + "account_type": "Income Account" + }, + "Activos diferidos": { + "account_number": "470525", + "account_type": "Income Account" + }, + "Otros activos (CR)": { + "account_number": "470530", + "account_type": "Income Account" + }, + "Pasivos sujetos de ajuste": { + "account_number": "470535", + "account_type": "Income Account" + }, + "Patrimonio": { + "account_number": "470540", + "account_type": "Income Account" + }, + "Depreciaci\u00f3n acumulada (DB)": { + "account_number": "470545", + "account_type": "Income Account" + }, + "Depreciaci\u00f3n diferida (CR)": { + "account_number": "470550", + "account_type": "Income Account" + }, + "Agotamiento acumulado (DB)": { + "account_number": "470555", + "account_type": "Income Account" + }, + "Amortizaci\u00f3n acumulada (DB)": { + "account_number": "470560", + "account_type": "Income Account" + }, + "Ingresos operacionales (DB)": { + "account_number": "470565", + "account_type": "Income Account" + }, + "Devoluciones en ventas (CR)": { + "account_number": "470568", + "account_type": "Income Account" + }, + "Ingresos no operacionales (DB)": { + "account_number": "470570", + "account_type": "Income Account" + }, + "Gastos operacionales de administraci\u00f3n (CR)": { + "account_number": "470575", + "account_type": "Income Account" + }, + "Gastos operacionales de ventas (CR)": { + "account_number": "470580", + "account_type": "Income Account" + }, + "Gastos no operacionales (CR)": { + "account_number": "470585", + "account_type": "Income Account" + }, + "Compras (CR)": { + "account_number": "470590", + "account_type": "Income Account" + }, + "Devoluciones en compras (DB)": { + "account_number": "470591", + "account_type": "Income Account" + }, + "Costo de ventas (CR)": { + "account_number": "470592", + "account_type": "Income Account" + }, + "Costos de producci\u00f3n o de operaci\u00f3n (CR)": { + "account_number": "470594", + "account_type": "Income Account" + } + } + } + }, + "Gastos": { + "account_number": "5", + "account_type": "Expense Account", + "root_type": "Expense", + "Operacionales de administraci\u00f3n": { + "account_number": "51", + "account_type": "Expense Account", + "Gastos de personal": { + "account_number": "5105", + "account_type": "Expense Account", + "Salario integral": { + "account_number": "510503", + "account_type": "Expense Account" + }, + "Sueldos": { + "account_number": "510506", + "account_type": "Expense Account" + }, + "Jornales": { + "account_number": "510512", + "account_type": "Expense Account" + }, + "Horas extras y recargos": { + "account_number": "510515", + "account_type": "Expense Account" + }, + "Comisiones": { + "account_number": "510518", + "account_type": "Expense Account" + }, + "Vi\u00e1ticos": { + "account_number": "510521", + "account_type": "Expense Account" + }, + "Incapacidades": { + "account_number": "510524", + "account_type": "Expense Account" + }, + "Auxilio de transporte": { + "account_number": "510527", + "account_type": "Expense Account" + }, + "Cesant\u00edas": { + "account_number": "510530", + "account_type": "Expense Account" + }, + "Intereses sobre cesant\u00edas": { + "account_number": "510533", + "account_type": "Expense Account" + }, + "Prima de servicios": { + "account_number": "510536", + "account_type": "Expense Account" + }, + "Vacaciones": { + "account_number": "510539", + "account_type": "Expense Account" + }, + "Primas extralegales": { + "account_number": "510542", + "account_type": "Expense Account" + }, + "Auxilios": { + "account_number": "510545", + "account_type": "Expense Account" + }, + "Bonificaciones": { + "account_number": "510548", + "account_type": "Expense Account" + }, + "Dotaci\u00f3n y suministro a trabajadores": { + "account_number": "510551", + "account_type": "Expense Account" + }, + "Seguros": { + "account_number": "510554", + "account_type": "Expense Account" + }, + "Cuotas partes pensiones de jubilaci\u00f3n": { + "account_number": "510557", + "account_type": "Expense Account" + }, + "Amortizaci\u00f3n c\u00e1lculo actuarial pensiones de jubilaci\u00f3n": { + "account_number": "510558", + "account_type": "Expense Account" + }, + "Pensiones de jubilaci\u00f3n": { + "account_number": "510559", + "account_type": "Expense Account" + }, + "Indemnizaciones laborales": { + "account_number": "510560", + "account_type": "Expense Account" + }, + "Amortizaci\u00f3n bonos pensionales": { + "account_number": "510561", + "account_type": "Expense Account" + }, + "Amortizaci\u00f3n t\u00edtulos pensionales": { + "account_number": "510562", + "account_type": "Expense Account" + }, + "Capacitaci\u00f3n al personal": { + "account_number": "510563", + "account_type": "Expense Account" + }, + "Gastos deportivos y de recreaci\u00f3n": { + "account_number": "510566", + "account_type": "Expense Account" + }, + "Aportes a administradoras de riesgos profesionales, ARP": { + "account_number": "510568", + "account_type": "Expense Account" + }, + "Aportes a entidades promotoras de salud, EPS": { + "account_number": "510569", + "account_type": "Expense Account" + }, + "Aportes a fondos de pensiones y/o cesant\u00edas": { + "account_number": "510570", + "account_type": "Expense Account" + }, + "Aportes cajas de compensaci\u00f3n familiar": { + "account_number": "510572", + "account_type": "Expense Account" + }, + "Aportes ICBF": { + "account_number": "510575", + "account_type": "Expense Account" + }, + "SENA": { + "account_number": "510578", + "account_type": "Expense Account" + }, + "Aportes sindicales": { + "account_number": "510581", + "account_type": "Expense Account" + }, + "Gastos m\u00e9dicos y drogas": { + "account_number": "510584", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "510595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "510599", + "account_type": "Expense Account" + } + }, + "Honorarios": { + "account_number": "5110", + "account_type": "Expense Account", + "Junta directiva": { + "account_number": "511005", + "account_type": "Expense Account" + }, + "Revisor\u00eda fiscal": { + "account_number": "511010", + "account_type": "Expense Account" + }, + "Auditor\u00eda externa": { + "account_number": "511015", + "account_type": "Expense Account" + }, + "Aval\u00faos": { + "account_number": "511020", + "account_type": "Expense Account" + }, + "Asesor\u00eda jur\u00eddica": { + "account_number": "511025", + "account_type": "Expense Account" + }, + "Asesor\u00eda financiera": { + "account_number": "511030", + "account_type": "Expense Account" + }, + "Asesor\u00eda t\u00e9cnica": { + "account_number": "511035", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "511095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "511099", + "account_type": "Expense Account" + } + }, + "Impuestos": { + "account_number": "5115", + "account_type": "Expense Account", + "Industria y comercio": { + "account_number": "511505", + "account_type": "Expense Account" + }, + "De timbres": { + "account_number": "511510", + "account_type": "Expense Account" + }, + "A la propiedad ra\u00edz": { + "account_number": "511515", + "account_type": "Expense Account" + }, + "Derechos sobre instrumentos p\u00fablicos": { + "account_number": "511520", + "account_type": "Expense Account" + }, + "De valorizaci\u00f3n": { + "account_number": "511525", + "account_type": "Expense Account" + }, + "De turismo": { + "account_number": "511530", + "account_type": "Expense Account" + }, + "Tasa por utilizaci\u00f3n de puertos": { + "account_number": "511535", + "account_type": "Expense Account" + }, + "De veh\u00edculos": { + "account_number": "511540", + "account_type": "Expense Account" + }, + "De espect\u00e1culos p\u00fablicos": { + "account_number": "511545", + "account_type": "Expense Account" + }, + "Cuotas de fomento": { + "account_number": "511550", + "account_type": "Expense Account" + }, + "IVA descontable": { + "account_number": "511570", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "511595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "511599", + "account_type": "Expense Account" + } + }, + "Arrendamientos": { + "account_number": "5120", + "account_type": "Expense Account", + "Terrenos": { + "account_number": "512005", + "account_type": "Expense Account" + }, + "Construcciones y edificaciones": { + "account_number": "512010", + "account_type": "Expense Account" + }, + "Maquinaria y equipo": { + "account_number": "512015", + "account_type": "Expense Account" + }, + "Equipo de oficina": { + "account_number": "512020", + "account_type": "Expense Account" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "512025", + "account_type": "Expense Account" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "512030", + "account_type": "Expense Account" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "512035", + "account_type": "Expense Account" + }, + "Flota y equipo de transporte": { + "account_number": "512040", + "account_type": "Expense Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "512045", + "account_type": "Expense Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "512050", + "account_type": "Expense Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "512055", + "account_type": "Expense Account" + }, + "Acueductos, plantas y redes": { + "account_number": "512060", + "account_type": "Expense Account" + }, + "Aer\u00f3dromos": { + "account_number": "512065", + "account_type": "Expense Account" + }, + "Semovientes": { + "account_number": "512070", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "512095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "512099", + "account_type": "Expense Account" + } + }, + "Contribuciones y afiliaciones": { + "account_number": "5125", + "account_type": "Expense Account", + "Contribuciones": { + "account_number": "512505", + "account_type": "Expense Account" + }, + "Afiliaciones y sostenimiento": { + "account_number": "512510", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "512599", + "account_type": "Expense Account" + } + }, + "Seguros": { + "account_number": "5130", + "account_type": "Expense Account", + "Manejo": { + "account_number": "513005", + "account_type": "Expense Account" + }, + "Cumplimiento": { + "account_number": "513010", + "account_type": "Expense Account" + }, + "Corriente d\u00e9bil": { + "account_number": "513015", + "account_type": "Expense Account" + }, + "Vida colectiva": { + "account_number": "513020", + "account_type": "Expense Account" + }, + "Incendio": { + "account_number": "513025", + "account_type": "Expense Account" + }, + "Terremoto": { + "account_number": "513030", + "account_type": "Expense Account" + }, + "Sustracci\u00f3n y hurto": { + "account_number": "513035", + "account_type": "Expense Account" + }, + "Flota y equipo de transporte": { + "account_number": "513040", + "account_type": "Expense Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "513045", + "account_type": "Expense Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "513050", + "account_type": "Expense Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "513055", + "account_type": "Expense Account" + }, + "Responsabilidad civil y extracontractual": { + "account_number": "513060", + "account_type": "Expense Account" + }, + "Vuelo": { + "account_number": "513065", + "account_type": "Expense Account" + }, + "Rotura de maquinaria": { + "account_number": "513070", + "account_type": "Expense Account" + }, + "Obligatorio accidente de tr\u00e1nsito": { + "account_number": "513075", + "account_type": "Expense Account" + }, + "Lucro cesante": { + "account_number": "513080", + "account_type": "Expense Account" + }, + "Transporte de mercanc\u00eda": { + "account_number": "513085", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "513095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "513099", + "account_type": "Expense Account" + } + }, + "Servicios": { + "account_number": "5135", + "account_type": "Expense Account", + "Aseo y vigilancia": { + "account_number": "513505", + "account_type": "Expense Account" + }, + "Temporales": { + "account_number": "513510", + "account_type": "Expense Account" + }, + "Asistencia t\u00e9cnica": { + "account_number": "513515", + "account_type": "Expense Account" + }, + "Procesamiento electr\u00f3nico de datos": { + "account_number": "513520", + "account_type": "Expense Account" + }, + "Acueducto y alcantarillado": { + "account_number": "513525", + "account_type": "Expense Account" + }, + "Energ\u00eda el\u00e9ctrica": { + "account_number": "513530", + "account_type": "Expense Account" + }, + "Tel\u00e9fono": { + "account_number": "513535", + "account_type": "Expense Account" + }, + "Correo, portes y telegramas": { + "account_number": "513540", + "account_type": "Expense Account" + }, + "Fax y t\u00e9lex": { + "account_number": "513545", + "account_type": "Expense Account" + }, + "Transporte, fletes y acarreos": { + "account_number": "513550", + "account_type": "Expense Account" + }, + "Gas": { + "account_number": "513555", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "513595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "513599", + "account_type": "Expense Account" + } + }, + "Gastos legales": { + "account_number": "5140", + "account_type": "Expense Account", + "Notariales": { + "account_number": "514005", + "account_type": "Expense Account" + }, + "Registro mercantil": { + "account_number": "514010", + "account_type": "Expense Account" + }, + "Tr\u00e1mites y licencias": { + "account_number": "514015", + "account_type": "Expense Account" + }, + "Aduaneros": { + "account_number": "514020", + "account_type": "Expense Account" + }, + "Consulares": { + "account_number": "514025", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "514095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "514099", + "account_type": "Expense Account" + } + }, + "Mantenimiento y reparaciones": { + "account_number": "5145", + "account_type": "Expense Account", + "Terrenos": { + "account_number": "514505", + "account_type": "Expense Account" + }, + "Construcciones y edificaciones": { + "account_number": "514510", + "account_type": "Expense Account" + }, + "Maquinaria y equipo": { + "account_number": "514515", + "account_type": "Expense Account" + }, + "Equipo de oficina": { + "account_number": "514520", + "account_type": "Expense Account" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "514525", + "account_type": "Expense Account" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "514530", + "account_type": "Expense Account" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "514535", + "account_type": "Expense Account" + }, + "Flota y equipo de transporte": { + "account_number": "514540", + "account_type": "Expense Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "514545", + "account_type": "Expense Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "514550", + "account_type": "Expense Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "514555", + "account_type": "Expense Account" + }, + "Acueductos, plantas y redes": { + "account_number": "514560", + "account_type": "Expense Account" + }, + "Armamento de vigilancia": { + "account_number": "514565", + "account_type": "Expense Account" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "514570", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "514599", + "account_type": "Expense Account" + } + }, + "Adecuaci\u00f3n e instalaci\u00f3n": { + "account_number": "5150", + "account_type": "Expense Account", + "Instalaciones el\u00e9ctricas": { + "account_number": "515005", + "account_type": "Expense Account" + }, + "Arreglos ornamentales": { + "account_number": "515010", + "account_type": "Expense Account" + }, + "Reparaciones locativas": { + "account_number": "515015", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "515095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "515099", + "account_type": "Expense Account" + } + }, + "Gastos de viaje": { + "account_number": "5155", + "account_type": "Expense Account", + "Alojamiento y manutenci\u00f3n": { + "account_number": "515505", + "account_type": "Expense Account" + }, + "Pasajes fluviales y/o mar\u00edtimos": { + "account_number": "515510", + "account_type": "Expense Account" + }, + "Pasajes a\u00e9reos": { + "account_number": "515515", + "account_type": "Expense Account" + }, + "Pasajes terrestres": { + "account_number": "515520", + "account_type": "Expense Account" + }, + "Pasajes f\u00e9rreos": { + "account_number": "515525", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "515595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "515599", + "account_type": "Expense Account" + } + }, + "Depreciaciones": { + "account_number": "5160", + "account_type": "Expense Account", + "Construcciones y edificaciones": { + "account_number": "516005", + "account_type": "Expense Account" + }, + "Maquinaria y equipo": { + "account_number": "516010", + "account_type": "Expense Account" + }, + "Equipo de oficina": { + "account_number": "516015", + "account_type": "Expense Account" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "516020", + "account_type": "Expense Account" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "516025", + "account_type": "Expense Account" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "516030", + "account_type": "Expense Account" + }, + "Flota y equipo de transporte": { + "account_number": "516035", + "account_type": "Expense Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "516040", + "account_type": "Expense Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "516045", + "account_type": "Expense Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "516050", + "account_type": "Expense Account" + }, + "Acueductos, plantas y redes": { + "account_number": "516055", + "account_type": "Expense Account" + }, + "Armamento de vigilancia": { + "account_number": "516060", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "516099", + "account_type": "Expense Account" + } + }, + "Amortizaciones": { + "account_number": "5165", + "account_type": "Expense Account", + "V\u00edas de comunicaci\u00f3n": { + "account_number": "516505", + "account_type": "Expense Account" + }, + "Intangibles": { + "account_number": "516510", + "account_type": "Expense Account" + }, + "Cargos diferidos": { + "account_number": "516515", + "account_type": "Expense Account" + }, + "Otras": { + "account_number": "516595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "516599", + "account_type": "Expense Account" + } + }, + "Diversos": { + "account_number": "5195", + "account_type": "Expense Account", + "Comisiones": { + "account_number": "519505", + "account_type": "Expense Account" + }, + "Libros, suscripciones, peri\u00f3dicos y revistas": { + "account_number": "519510", + "account_type": "Expense Account" + }, + "M\u00fasica ambiental": { + "account_number": "519515", + "account_type": "Expense Account" + }, + "Gastos de representaci\u00f3n y relaciones p\u00fablicas": { + "account_number": "519520", + "account_type": "Expense Account" + }, + "Elementos de aseo y cafeter\u00eda": { + "account_number": "519525", + "account_type": "Expense Account" + }, + "\u00datiles, papeler\u00eda y fotocopias": { + "account_number": "519530", + "account_type": "Expense Account" + }, + "Combustibles y lubricantes": { + "account_number": "519535", + "account_type": "Expense Account" + }, + "Envases y empaques": { + "account_number": "519540", + "account_type": "Expense Account" + }, + "Taxis y buses": { + "account_number": "519545", + "account_type": "Expense Account" + }, + "Estampillas": { + "account_number": "519550", + "account_type": "Expense Account" + }, + "Microfilmaci\u00f3n": { + "account_number": "519555", + "account_type": "Expense Account" + }, + "Casino y restaurante": { + "account_number": "519560", + "account_type": "Expense Account" + }, + "Parqueaderos": { + "account_number": "519565", + "account_type": "Expense Account" + }, + "Indemnizaci\u00f3n por da\u00f1os a terceros": { + "account_number": "519570", + "account_type": "Expense Account" + }, + "P\u00f3lvora y similares": { + "account_number": "519575", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "519595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "519599", + "account_type": "Expense Account" + } + }, + "Provisiones": { + "account_number": "5199", + "account_type": "Expense Account", + "Inversiones": { + "account_number": "519905", + "account_type": "Expense Account" + }, + "Deudores": { + "account_number": "519910", + "account_type": "Expense Account" + }, + "Propiedades, planta y equipo": { + "account_number": "519915", + "account_type": "Expense Account" + }, + "Otros activos": { + "account_number": "519995", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "519999", + "account_type": "Expense Account" + } + } + }, + "Operacionales de ventas": { + "account_number": "52", + "account_type": "Expense Account", + "Gastos de personal": { + "account_number": "5205", + "account_type": "Expense Account", + "Salario integral": { + "account_number": "520503", + "account_type": "Expense Account" + }, + "Sueldos": { + "account_number": "520506", + "account_type": "Expense Account" + }, + "Jornales": { + "account_number": "520512", + "account_type": "Expense Account" + }, + "Horas extras y recargos": { + "account_number": "520515", + "account_type": "Expense Account" + }, + "Comisiones": { + "account_number": "520518", + "account_type": "Expense Account" + }, + "Vi\u00e1ticos": { + "account_number": "520521", + "account_type": "Expense Account" + }, + "Incapacidades": { + "account_number": "520524", + "account_type": "Expense Account" + }, + "Auxilio de transporte": { + "account_number": "520527", + "account_type": "Expense Account" + }, + "Cesant\u00edas": { + "account_number": "520530", + "account_type": "Expense Account" + }, + "Intereses sobre cesant\u00edas": { + "account_number": "520533", + "account_type": "Expense Account" + }, + "Prima de servicios": { + "account_number": "520536", + "account_type": "Expense Account" + }, + "Vacaciones": { + "account_number": "520539", + "account_type": "Expense Account" + }, + "Primas extralegales": { + "account_number": "520542", + "account_type": "Expense Account" + }, + "Auxilios": { + "account_number": "520545", + "account_type": "Expense Account" + }, + "Bonificaciones": { + "account_number": "520548", + "account_type": "Expense Account" + }, + "Dotaci\u00f3n y suministro a trabajadores": { + "account_number": "520551", + "account_type": "Expense Account" + }, + "Seguros": { + "account_number": "520554", + "account_type": "Expense Account" + }, + "Cuotas partes pensiones de jubilaci\u00f3n": { + "account_number": "520557", + "account_type": "Expense Account" + }, + "Amortizaci\u00f3n c\u00e1lculo actuarial pensiones de jubilaci\u00f3n": { + "account_number": "520558", + "account_type": "Expense Account" + }, + "Pensiones de jubilaci\u00f3n": { + "account_number": "520559", + "account_type": "Expense Account" + }, + "Indemnizaciones laborales": { + "account_number": "520560", + "account_type": "Expense Account" + }, + "Amortizaci\u00f3n bonos pensionales": { + "account_number": "520561", + "account_type": "Expense Account" + }, + "Amortizaci\u00f3n t\u00edtulos pensionales": { + "account_number": "520562", + "account_type": "Expense Account" + }, + "Capacitaci\u00f3n al personal": { + "account_number": "520563", + "account_type": "Expense Account" + }, + "Gastos deportivos y de recreaci\u00f3n": { + "account_number": "520566", + "account_type": "Expense Account" + }, + "Aportes a administradoras de riesgos profesionales, ARP": { + "account_number": "520568", + "account_type": "Expense Account" + }, + "Aportes a entidades promotoras de salud, EPS": { + "account_number": "520569", + "account_type": "Expense Account" + }, + "Aportes a fondos de pensiones y/o cesant\u00edas": { + "account_number": "520570", + "account_type": "Expense Account" + }, + "Aportes cajas de compensaci\u00f3n familiar": { + "account_number": "520572", + "account_type": "Expense Account" + }, + "Aportes ICBF": { + "account_number": "520575", + "account_type": "Expense Account" + }, + "SENA": { + "account_number": "520578", + "account_type": "Expense Account" + }, + "Aportes sindicales": { + "account_number": "520581", + "account_type": "Expense Account" + }, + "Gastos m\u00e9dicos y drogas": { + "account_number": "520584", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "520595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "520599", + "account_type": "Expense Account" + } + }, + "Honorarios": { + "account_number": "5210", + "account_type": "Expense Account", + "Junta directiva": { + "account_number": "521005", + "account_type": "Expense Account" + }, + "Revisor\u00eda fiscal": { + "account_number": "521010", + "account_type": "Expense Account" + }, + "Auditor\u00eda externa": { + "account_number": "521015", + "account_type": "Expense Account" + }, + "Aval\u00faos": { + "account_number": "521020", + "account_type": "Expense Account" + }, + "Asesor\u00eda jur\u00eddica": { + "account_number": "521025", + "account_type": "Expense Account" + }, + "Asesor\u00eda financiera": { + "account_number": "521030", + "account_type": "Expense Account" + }, + "Asesor\u00eda t\u00e9cnica": { + "account_number": "521035", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "521095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "521099", + "account_type": "Expense Account" + } + }, + "Impuestos": { + "account_number": "5215", + "account_type": "Expense Account", + "Industria y comercio": { + "account_number": "521505", + "account_type": "Expense Account" + }, + "De timbres": { + "account_number": "521510", + "account_type": "Expense Account" + }, + "A la propiedad ra\u00edz": { + "account_number": "521515", + "account_type": "Expense Account" + }, + "Derechos sobre instrumentos p\u00fablicos": { + "account_number": "521520", + "account_type": "Expense Account" + }, + "De valorizaci\u00f3n": { + "account_number": "521525", + "account_type": "Expense Account" + }, + "De turismo": { + "account_number": "521530", + "account_type": "Expense Account" + }, + "Tasa por utilizaci\u00f3n de puertos": { + "account_number": "521535", + "account_type": "Expense Account" + }, + "De veh\u00edculos": { + "account_number": "521540", + "account_type": "Expense Account" + }, + "De espect\u00e1culos p\u00fablicos": { + "account_number": "521545", + "account_type": "Expense Account" + }, + "Cuotas de fomento": { + "account_number": "521550", + "account_type": "Expense Account" + }, + "Licores": { + "account_number": "521555", + "account_type": "Expense Account" + }, + "Cervezas": { + "account_number": "521560", + "account_type": "Expense Account" + }, + "Cigarrillos": { + "account_number": "521565", + "account_type": "Expense Account" + }, + "IVA descontable": { + "account_number": "521570", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "521595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "521599", + "account_type": "Expense Account" + } + }, + "Arrendamientos": { + "account_number": "5220", + "account_type": "Expense Account", + "Terrenos": { + "account_number": "522005", + "account_type": "Expense Account" + }, + "Construcciones y edificaciones": { + "account_number": "522010", + "account_type": "Expense Account" + }, + "Maquinaria y equipo": { + "account_number": "522015", + "account_type": "Expense Account" + }, + "Equipo de oficina": { + "account_number": "522020", + "account_type": "Expense Account" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "522025", + "account_type": "Expense Account" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "522030", + "account_type": "Expense Account" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "522035", + "account_type": "Expense Account" + }, + "Flota y equipo de transporte": { + "account_number": "522040", + "account_type": "Expense Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "522045", + "account_type": "Expense Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "522050", + "account_type": "Expense Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "522055", + "account_type": "Expense Account" + }, + "Acueductos, plantas y redes": { + "account_number": "522060", + "account_type": "Expense Account" + }, + "Aer\u00f3dromos": { + "account_number": "522065", + "account_type": "Expense Account" + }, + "Semovientes": { + "account_number": "522070", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "522095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "522099", + "account_type": "Expense Account" + } + }, + "Contribuciones y afiliaciones": { + "account_number": "5225", + "account_type": "Expense Account", + "Contribuciones": { + "account_number": "522505", + "account_type": "Expense Account" + }, + "Afiliaciones y sostenimiento": { + "account_number": "522510", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "522599", + "account_type": "Expense Account" + } + }, + "Seguros": { + "account_number": "5230", + "account_type": "Expense Account", + "Manejo": { + "account_number": "523005", + "account_type": "Expense Account" + }, + "Cumplimiento": { + "account_number": "523010", + "account_type": "Expense Account" + }, + "Corriente d\u00e9bil": { + "account_number": "523015", + "account_type": "Expense Account" + }, + "Vida colectiva": { + "account_number": "523020", + "account_type": "Expense Account" + }, + "Incendio": { + "account_number": "523025", + "account_type": "Expense Account" + }, + "Terremoto": { + "account_number": "523030", + "account_type": "Expense Account" + }, + "Sustracci\u00f3n y hurto": { + "account_number": "523035", + "account_type": "Expense Account" + }, + "Flota y equipo de transporte": { + "account_number": "523040", + "account_type": "Expense Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "523045", + "account_type": "Expense Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "523050", + "account_type": "Expense Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "523055", + "account_type": "Expense Account" + }, + "Responsabilidad civil y extracontractual": { + "account_number": "523060", + "account_type": "Expense Account" + }, + "Vuelo": { + "account_number": "523065", + "account_type": "Expense Account" + }, + "Rotura de maquinaria": { + "account_number": "523070", + "account_type": "Expense Account" + }, + "Obligatorio accidente de tr\u00e1nsito": { + "account_number": "523075", + "account_type": "Expense Account" + }, + "Lucro cesante": { + "account_number": "523080", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "523095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "523099", + "account_type": "Expense Account" + } + }, + "Servicios": { + "account_number": "5235", + "account_type": "Expense Account", + "Aseo y vigilancia": { + "account_number": "523505", + "account_type": "Expense Account" + }, + "Temporales": { + "account_number": "523510", + "account_type": "Expense Account" + }, + "Asistencia t\u00e9cnica": { + "account_number": "523515", + "account_type": "Expense Account" + }, + "Procesamiento electr\u00f3nico de datos": { + "account_number": "523520", + "account_type": "Expense Account" + }, + "Acueducto y alcantarillado": { + "account_number": "523525", + "account_type": "Expense Account" + }, + "Energ\u00eda el\u00e9ctrica": { + "account_number": "523530", + "account_type": "Expense Account" + }, + "Tel\u00e9fono": { + "account_number": "523535", + "account_type": "Expense Account" + }, + "Correo, portes y telegramas": { + "account_number": "523540", + "account_type": "Expense Account" + }, + "Fax y t\u00e9lex": { + "account_number": "523545", + "account_type": "Expense Account" + }, + "Transporte, fletes y acarreos": { + "account_number": "523550", + "account_type": "Expense Account" + }, + "Gas": { + "account_number": "523555", + "account_type": "Expense Account" + }, + "Publicidad, propaganda y promoci\u00f3n": { + "account_number": "523560", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "523595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "523599", + "account_type": "Expense Account" + } + }, + "Gastos legales": { + "account_number": "5240", + "account_type": "Expense Account", + "Notariales": { + "account_number": "524005", + "account_type": "Expense Account" + }, + "Registro mercantil": { + "account_number": "524010", + "account_type": "Expense Account" + }, + "Tr\u00e1mites y licencias": { + "account_number": "524015", + "account_type": "Expense Account" + }, + "Aduaneros": { + "account_number": "524020", + "account_type": "Expense Account" + }, + "Consulares": { + "account_number": "524025", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "524095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "524099", + "account_type": "Expense Account" + } + }, + "Mantenimiento y reparaciones": { + "account_number": "5245", + "account_type": "Expense Account", + "Terrenos": { + "account_number": "524505", + "account_type": "Expense Account" + }, + "Construcciones y edificaciones": { + "account_number": "524510", + "account_type": "Expense Account" + }, + "Maquinaria y equipo": { + "account_number": "524515", + "account_type": "Expense Account" + }, + "Equipo de oficina": { + "account_number": "524520", + "account_type": "Expense Account" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "524525", + "account_type": "Expense Account" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "524530", + "account_type": "Expense Account" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "524535", + "account_type": "Expense Account" + }, + "Flota y equipo de transporte": { + "account_number": "524540", + "account_type": "Expense Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "524545", + "account_type": "Expense Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "524550", + "account_type": "Expense Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "524555", + "account_type": "Expense Account" + }, + "Acueductos, plantas y redes": { + "account_number": "524560", + "account_type": "Expense Account" + }, + "Armamento de vigilancia": { + "account_number": "524565", + "account_type": "Expense Account" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "524570", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "524599", + "account_type": "Expense Account" + } + }, + "Adecuaci\u00f3n e instalaci\u00f3n": { + "account_number": "5250", + "account_type": "Expense Account", + "Instalaciones el\u00e9ctricas": { + "account_number": "525005", + "account_type": "Expense Account" + }, + "Arreglos ornamentales": { + "account_number": "525010", + "account_type": "Expense Account" + }, + "Reparaciones locativas": { + "account_number": "525015", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "525095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "525099", + "account_type": "Expense Account" + } + }, + "Gastos de viaje": { + "account_number": "5255", + "account_type": "Expense Account", + "Alojamiento y manutenci\u00f3n": { + "account_number": "525505", + "account_type": "Expense Account" + }, + "Pasajes fluviales y/o mar\u00edtimos": { + "account_number": "525510", + "account_type": "Expense Account" + }, + "Pasajes a\u00e9reos": { + "account_number": "525515", + "account_type": "Expense Account" + }, + "Pasajes terrestres": { + "account_number": "525520", + "account_type": "Expense Account" + }, + "Pasajes f\u00e9rreos": { + "account_number": "525525", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "525595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "525599", + "account_type": "Expense Account" + } + }, + "Depreciaciones": { + "account_number": "5260", + "account_type": "Expense Account", + "Construcciones y edificaciones": { + "account_number": "526005", + "account_type": "Expense Account" + }, + "Maquinaria y equipo": { + "account_number": "526010", + "account_type": "Expense Account" + }, + "Equipo de oficina": { + "account_number": "526015", + "account_type": "Expense Account" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "526020", + "account_type": "Expense Account" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "526025", + "account_type": "Expense Account" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "526030", + "account_type": "Expense Account" + }, + "Flota y equipo de transporte": { + "account_number": "526035", + "account_type": "Expense Account" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "526040", + "account_type": "Expense Account" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "526045", + "account_type": "Expense Account" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "526050", + "account_type": "Expense Account" + }, + "Acueductos, plantas y redes": { + "account_number": "526055", + "account_type": "Expense Account" + }, + "Armamento de vigilancia": { + "account_number": "526060", + "account_type": "Expense Account" + }, + "Envases y empaques": { + "account_number": "526065", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "526099", + "account_type": "Expense Account" + } + }, + "Amortizaciones": { + "account_number": "5265", + "account_type": "Expense Account", + "V\u00edas de comunicaci\u00f3n": { + "account_number": "526505", + "account_type": "Expense Account" + }, + "Intangibles": { + "account_number": "526510", + "account_type": "Expense Account" + }, + "Cargos diferidos": { + "account_number": "526515", + "account_type": "Expense Account" + }, + "Otras": { + "account_number": "526595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "526599", + "account_type": "Expense Account" + } + }, + "Financieros-reajuste del sistema": { + "account_number": "5270", + "account_type": "Expense Account", + "Ajustes por inflaci\u00f3n": { + "account_number": "527099", + "account_type": "Expense Account" + } + }, + "P\u00e9rdidas m\u00e9todo de participaci\u00f3n": { + "account_number": "5275", + "account_type": "Expense Account", + "De sociedades an\u00f3nimas y/o asimiladas": { + "account_number": "527505", + "account_type": "Expense Account" + }, + "De sociedades limitadas y/o asimiladas": { + "account_number": "527510", + "account_type": "Expense Account" + } + }, + "Diversos": { + "account_number": "5295", + "account_type": "Expense Account", + "Comisiones": { + "account_number": "529505", + "account_type": "Expense Account" + }, + "Libros, suscripciones, peri\u00f3dicos y revistas": { + "account_number": "529510", + "account_type": "Expense Account" + }, + "M\u00fasica ambiental": { + "account_number": "529515", + "account_type": "Expense Account" + }, + "Gastos de representaci\u00f3n y relaciones p\u00fablicas": { + "account_number": "529520", + "account_type": "Expense Account" + }, + "Elementos de aseo y cafeter\u00eda": { + "account_number": "529525", + "account_type": "Expense Account" + }, + "\u00datiles, papeler\u00eda y fotocopias": { + "account_number": "529530", + "account_type": "Expense Account" + }, + "Combustibles y lubricantes": { + "account_number": "529535", + "account_type": "Expense Account" + }, + "Envases y empaques": { + "account_number": "529540", + "account_type": "Expense Account" + }, + "Taxis y buses": { + "account_number": "529545", + "account_type": "Expense Account" + }, + "Estampillas": { + "account_number": "529550", + "account_type": "Expense Account" + }, + "Microfilmaci\u00f3n": { + "account_number": "529555", + "account_type": "Expense Account" + }, + "Casino y restaurante": { + "account_number": "529560", + "account_type": "Expense Account" + }, + "Parqueaderos": { + "account_number": "529565", + "account_type": "Expense Account" + }, + "Indemnizaci\u00f3n por da\u00f1os a terceros": { + "account_number": "529570", + "account_type": "Expense Account" + }, + "P\u00f3lvora y similares": { + "account_number": "529575", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "529595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "529599", + "account_type": "Expense Account" + } + }, + "Provisiones": { + "account_number": "5299", + "account_type": "Expense Account", + "Inversiones": { + "account_number": "529905", + "account_type": "Expense Account" + }, + "Deudores": { + "account_number": "529910", + "account_type": "Expense Account" + }, + "Inventarios": { + "account_number": "529915", + "account_type": "Expense Account" + }, + "Propiedades, planta y equipo": { + "account_number": "529920", + "account_type": "Expense Account" + }, + "Otros activos": { + "account_number": "529995", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "529999", + "account_type": "Expense Account" + } + } + }, + "No operacionales": { + "account_number": "53", + "account_type": "Expense Account", + "Financieros": { + "account_number": "5305", + "account_type": "Expense Account", + "Gastos bancarios": { + "account_number": "530505", + "account_type": "Expense Account" + }, + "Reajuste monetario-UPAC (hoy UVR)": { + "account_number": "530510", + "account_type": "Expense Account" + }, + "Comisiones": { + "account_number": "530515", + "account_type": "Expense Account" + }, + "Intereses": { + "account_number": "530520", + "account_type": "Expense Account" + }, + "Diferencia en cambio": { + "account_number": "530525", + "account_type": "Expense Account" + }, + "Gastos en negociaci\u00f3n certificados de cambio": { + "account_number": "530530", + "account_type": "Expense Account" + }, + "Descuentos comerciales condicionados": { + "account_number": "530535", + "account_type": "Expense Account" + }, + "Gastos manejo y emisi\u00f3n de bonos": { + "account_number": "530540", + "account_type": "Expense Account" + }, + "Prima amortizada": { + "account_number": "530545", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "530595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "530599", + "account_type": "Expense Account" + } + }, + "P\u00e9rdida en venta y retiro de bienes": { + "account_number": "5310", + "account_type": "Expense Account", + "Venta de inversiones": { + "account_number": "531005", + "account_type": "Expense Account" + }, + "Venta de cartera": { + "account_number": "531010", + "account_type": "Expense Account" + }, + "Venta de propiedades, planta y equipo": { + "account_number": "531015", + "account_type": "Expense Account" + }, + "Venta de intangibles": { + "account_number": "531020", + "account_type": "Expense Account" + }, + "Venta de otros activos": { + "account_number": "531025", + "account_type": "Expense Account" + }, + "Retiro de propiedades, planta y equipo": { + "account_number": "531030", + "account_type": "Expense Account" + }, + "Retiro de otros activos": { + "account_number": "531035", + "account_type": "Expense Account" + }, + "P\u00e9rdidas por siniestros": { + "account_number": "531040", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "531095", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "531099", + "account_type": "Expense Account" + } + }, + "P\u00e9rdidas m\u00e9todo de participaci\u00f3n": { + "account_number": "5313", + "account_type": "Expense Account", + "De sociedades an\u00f3nimas y/o asimiladas": { + "account_number": "531305", + "account_type": "Expense Account" + }, + "De sociedades limitadas y/o asimiladas": { + "account_number": "531310", + "account_type": "Expense Account" + } + }, + "Gastos extraordinarios": { + "account_number": "5315", + "account_type": "Expense Account", + "Costas y procesos judiciales": { + "account_number": "531505", + "account_type": "Expense Account" + }, + "Actividades culturales y c\u00edvicas": { + "account_number": "531510", + "account_type": "Expense Account" + }, + "Costos y gastos de ejercicios anteriores": { + "account_number": "531515", + "account_type": "Expense Account" + }, + "Impuestos asumidos": { + "account_number": "531520", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "531595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "531599", + "account_type": "Expense Account" + } + }, + "Gastos diversos": { + "account_number": "5395", + "account_type": "Expense Account", + "Demandas laborales": { + "account_number": "539505", + "account_type": "Expense Account" + }, + "Demandas por incumplimiento de contratos": { + "account_number": "539510", + "account_type": "Expense Account" + }, + "Indemnizaciones": { + "account_number": "539515", + "account_type": "Expense Account" + }, + "Multas, sanciones y litigios": { + "account_number": "539520", + "account_type": "Expense Account" + }, + "Donaciones": { + "account_number": "539525", + "account_type": "Expense Account" + }, + "Constituci\u00f3n de garant\u00edas": { + "account_number": "539530", + "account_type": "Expense Account" + }, + "Amortizaci\u00f3n de bienes entregados en comodato": { + "account_number": "539535", + "account_type": "Expense Account" + }, + "Otros": { + "account_number": "539595", + "account_type": "Expense Account" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "539599", + "account_type": "Expense Account" + } + } + }, + "Impuesto de renta y complementarios": { + "account_number": "54", + "account_type": "Expense Account", + "Impuesto de renta y complementarios": { + "account_number": "5405", + "account_type": "Expense Account", + "Impuesto de renta y complementarios": { + "account_number": "540505", + "account_type": "Expense Account" + } + } + }, + "Ganancias y p\u00e9rdidas": { + "account_number": "59", + "account_type": "Expense Account", + "Ganancias y p\u00e9rdidas": { + "account_number": "5905", + "account_type": "Expense Account", + "Ganancias y p\u00e9rdidas": { + "account_number": "590505", + "account_type": "Expense Account" + } + } + } + }, + "Costos de ventas": { + "account_number": "6", + "account_type": "Cost of Goods Sold", + "root_type": "Expense", + "Costo de ventas y de prestaci\u00f3n de servicios": { + "account_number": "61", + "account_type": "Cost of Goods Sold", + "Agricultura, ganader\u00eda, caza y silvicultura": { + "account_number": "6105", + "account_type": "Cost of Goods Sold", + "Cultivo de cereales": { + "account_number": "610505", + "account_type": "Cost of Goods Sold" + }, + "Cultivos de hortalizas, legumbres y plantas ornamentales": { + "account_number": "610510", + "account_type": "Cost of Goods Sold" + }, + "Cultivos de frutas, nueces y plantas arom\u00e1ticas": { + "account_number": "610515", + "account_type": "Cost of Goods Sold" + }, + "Cultivo de caf\u00e9": { + "account_number": "610520", + "account_type": "Cost of Goods Sold" + }, + "Cultivo de flores": { + "account_number": "610525", + "account_type": "Cost of Goods Sold" + }, + "Cultivo de ca\u00f1a de az\u00facar": { + "account_number": "610530", + "account_type": "Cost of Goods Sold" + }, + "Cultivo de algod\u00f3n y plantas para material textil": { + "account_number": "610535", + "account_type": "Cost of Goods Sold" + }, + "Cultivo de banano": { + "account_number": "610540", + "account_type": "Cost of Goods Sold" + }, + "Otros cultivos agr\u00edcolas": { + "account_number": "610545", + "account_type": "Cost of Goods Sold" + }, + "Cr\u00eda de ovejas, cabras, asnos, mulas y burd\u00e9ganos": { + "account_number": "610550", + "account_type": "Cost of Goods Sold" + }, + "Cr\u00eda de ganado caballar y vacuno": { + "account_number": "610555", + "account_type": "Cost of Goods Sold" + }, + "Producci\u00f3n av\u00edcola": { + "account_number": "610560", + "account_type": "Cost of Goods Sold" + }, + "Cr\u00eda de otros animales": { + "account_number": "610565", + "account_type": "Cost of Goods Sold" + }, + "Servicios agr\u00edcolas y ganaderos": { + "account_number": "610570", + "account_type": "Cost of Goods Sold" + }, + "Actividad de caza": { + "account_number": "610575", + "account_type": "Cost of Goods Sold" + }, + "Actividad de silvicultura": { + "account_number": "610580", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "610595", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "610599", + "account_type": "Cost of Goods Sold" + } + }, + "Pesca": { + "account_number": "6110", + "account_type": "Cost of Goods Sold", + "Actividad de pesca": { + "account_number": "611005", + "account_type": "Cost of Goods Sold" + }, + "Explotaci\u00f3n de criaderos de peces": { + "account_number": "611010", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "611095", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "611099", + "account_type": "Cost of Goods Sold" + } + }, + "Explotaci\u00f3n de minas y canteras": { + "account_number": "6115", + "account_type": "Cost of Goods Sold", + "Carb\u00f3n": { + "account_number": "611505", + "account_type": "Cost of Goods Sold" + }, + "Petr\u00f3leo crudo": { + "account_number": "611510", + "account_type": "Cost of Goods Sold" + }, + "Gas natural": { + "account_number": "611512", + "account_type": "Cost of Goods Sold" + }, + "Servicios relacionados con extracci\u00f3n de petr\u00f3leo y gas": { + "account_number": "611514", + "account_type": "Cost of Goods Sold" + }, + "Minerales de hierro": { + "account_number": "611515", + "account_type": "Cost of Goods Sold" + }, + "Minerales metal\u00edferos no ferrosos": { + "account_number": "611520", + "account_type": "Cost of Goods Sold" + }, + "Piedra, arena y arcilla": { + "account_number": "611525", + "account_type": "Cost of Goods Sold" + }, + "Piedras preciosas": { + "account_number": "611527", + "account_type": "Cost of Goods Sold" + }, + "Oro": { + "account_number": "611528", + "account_type": "Cost of Goods Sold" + }, + "Otras minas y canteras": { + "account_number": "611530", + "account_type": "Cost of Goods Sold" + }, + "Prestaci\u00f3n de servicios sector minero": { + "account_number": "611532", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "611595", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "611599", + "account_type": "Cost of Goods Sold" + } + }, + "Industrias manufactureras": { + "account_number": "6120", + "account_type": "Cost of Goods Sold", + "Producci\u00f3n y procesamiento de carnes y productos c\u00e1rnicos": { + "account_number": "612001", + "account_type": "Cost of Goods Sold" + }, + "Productos de pescado": { + "account_number": "612002", + "account_type": "Cost of Goods Sold" + }, + "Productos de frutas, legumbres y hortalizas": { + "account_number": "612003", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de aceites y grasas": { + "account_number": "612004", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos l\u00e1cteos": { + "account_number": "612005", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos de moliner\u00eda": { + "account_number": "612006", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de almidones y derivados": { + "account_number": "612007", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de alimentos para animales": { + "account_number": "612008", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos para panader\u00eda": { + "account_number": "612009", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de az\u00facar y melazas": { + "account_number": "612010", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de cacao, chocolate y confiter\u00eda": { + "account_number": "612011", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de pastas y productos farin\u00e1ceos": { + "account_number": "612012", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos de caf\u00e9": { + "account_number": "612013", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de otros productos alimenticios": { + "account_number": "612014", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de bebidas alcoh\u00f3licas y alcohol et\u00edlico": { + "account_number": "612015", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de vinos": { + "account_number": "612016", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de bebidas malteadas y de malta": { + "account_number": "612017", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de bebidas no alcoh\u00f3licas": { + "account_number": "612018", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos de tabaco": { + "account_number": "612019", + "account_type": "Cost of Goods Sold" + }, + "Preparaci\u00f3n e hilatura de fibras textiles y tejedur\u00eda": { + "account_number": "612020", + "account_type": "Cost of Goods Sold" + }, + "Acabado de productos textiles": { + "account_number": "612021", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de art\u00edculos de materiales textiles": { + "account_number": "612022", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de tapices y alfombras": { + "account_number": "612023", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de cuerdas, cordeles, bramantes y redes": { + "account_number": "612024", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de otros productos textiles": { + "account_number": "612025", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de tejidos": { + "account_number": "612026", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de prendas de vestir": { + "account_number": "612027", + "account_type": "Cost of Goods Sold" + }, + "Preparaci\u00f3n, adobo y te\u00f1ido de pieles": { + "account_number": "612028", + "account_type": "Cost of Goods Sold" + }, + "Curtido, adobo o preparaci\u00f3n de cuero": { + "account_number": "612029", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de maletas, bolsos y similares": { + "account_number": "612030", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de calzado": { + "account_number": "612031", + "account_type": "Cost of Goods Sold" + }, + "Producci\u00f3n de madera, art\u00edculos de madera y corcho": { + "account_number": "612032", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de pasta y productos de madera, papel y cart\u00f3n": { + "account_number": "612033", + "account_type": "Cost of Goods Sold" + }, + "Ediciones y publicaciones": { + "account_number": "612034", + "account_type": "Cost of Goods Sold" + }, + "Impresi\u00f3n": { + "account_number": "612035", + "account_type": "Cost of Goods Sold" + }, + "Servicios relacionados con la edici\u00f3n y la impresi\u00f3n": { + "account_number": "612036", + "account_type": "Cost of Goods Sold" + }, + "Reproducci\u00f3n de grabaciones": { + "account_number": "612037", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos de horno de coque": { + "account_number": "612038", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos de la refinaci\u00f3n de petr\u00f3leo": { + "account_number": "612039", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de sustancias qu\u00edmicas b\u00e1sicas": { + "account_number": "612040", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de abonos y compuestos de nitr\u00f3geno": { + "account_number": "612041", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de pl\u00e1stico y caucho sint\u00e9tico": { + "account_number": "612042", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos qu\u00edmicos de uso agropecuario": { + "account_number": "612043", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de pinturas, tintas y masillas": { + "account_number": "612044", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos farmac\u00e9uticos y bot\u00e1nicos": { + "account_number": "612045", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de jabones, detergentes y preparados de tocador": { + "account_number": "612046", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de otros productos qu\u00edmicos": { + "account_number": "612047", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de fibras": { + "account_number": "612048", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de otros productos de caucho": { + "account_number": "612049", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos de pl\u00e1stico": { + "account_number": "612050", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de vidrio y productos de vidrio": { + "account_number": "612051", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de productos de cer\u00e1mica, loza, piedra, arcilla y porcelana": { + "account_number": "612052", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de cemento, cal y yeso": { + "account_number": "612053", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de art\u00edculos de hormig\u00f3n, cemento y yeso": { + "account_number": "612054", + "account_type": "Cost of Goods Sold" + }, + "Corte, tallado y acabado de la piedra": { + "account_number": "612055", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de otros productos minerales no met\u00e1licos": { + "account_number": "612056", + "account_type": "Cost of Goods Sold" + }, + "Industrias b\u00e1sicas y fundici\u00f3n de hierro y acero": { + "account_number": "612057", + "account_type": "Cost of Goods Sold" + }, + "Productos primarios de metales preciosos y de metales no ferrosos": { + "account_number": "612058", + "account_type": "Cost of Goods Sold" + }, + "Fundici\u00f3n de metales no ferrosos": { + "account_number": "612059", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de productos met\u00e1licos para uso estructural": { + "account_number": "612060", + "account_type": "Cost of Goods Sold" + }, + "Forja, prensado, estampado, laminado de metal y pulvimetalurgia": { + "account_number": "612061", + "account_type": "Cost of Goods Sold" + }, + "Revestimiento de metales y obras de ingenier\u00eda mec\u00e1nica": { + "account_number": "612062", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de art\u00edculos de ferreter\u00eda": { + "account_number": "612063", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de otros productos de metal": { + "account_number": "612064", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de maquinaria y equipo": { + "account_number": "612065", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de equipos de elevaci\u00f3n y manipulaci\u00f3n": { + "account_number": "612066", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de aparatos de uso dom\u00e9stico": { + "account_number": "612067", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de equipo de oficina": { + "account_number": "612068", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de pilas y bater\u00edas primarias": { + "account_number": "612069", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de equipo de iluminaci\u00f3n": { + "account_number": "612070", + "account_type": "Cost of Goods Sold" + }, + "Elaboraci\u00f3n de otros tipos de equipo el\u00e9ctrico": { + "account_number": "612071", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de equipos de radio, televisi\u00f3n y comunicaciones": { + "account_number": "612072", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de aparatos e instrumentos m\u00e9dicos": { + "account_number": "612073", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de instrumentos de medici\u00f3n y control": { + "account_number": "612074", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de instrumentos de \u00f3ptica y equipo fotogr\u00e1fico": { + "account_number": "612075", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de relojes": { + "account_number": "612076", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de veh\u00edculos automotores": { + "account_number": "612077", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de carrocer\u00edas para automotores": { + "account_number": "612078", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de partes, piezas y accesorios para automotores": { + "account_number": "612079", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n y reparaci\u00f3n de buques y otras embarcaciones": { + "account_number": "612080", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de locomotoras y material rodante para ferrocarriles": { + "account_number": "612081", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de aeronaves": { + "account_number": "612082", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de motocicletas": { + "account_number": "612083", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de bicicletas y sillas de ruedas": { + "account_number": "612084", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de otros tipos de transporte": { + "account_number": "612085", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de muebles": { + "account_number": "612086", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de joyas y art\u00edculos conexos": { + "account_number": "612087", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de instrumentos de m\u00fasica": { + "account_number": "612088", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de art\u00edculos y equipo para deporte": { + "account_number": "612089", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de juegos y juguetes": { + "account_number": "612090", + "account_type": "Cost of Goods Sold" + }, + "Reciclamiento de desperdicios": { + "account_number": "612091", + "account_type": "Cost of Goods Sold" + }, + "Productos de otras industrias manufactureras": { + "account_number": "612095", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "612099", + "account_type": "Cost of Goods Sold" + } + }, + "Suministro de electricidad, gas y agua": { + "account_number": "6125", + "account_type": "Cost of Goods Sold", + "Generaci\u00f3n, captaci\u00f3n y distribuci\u00f3n de energ\u00eda el\u00e9ctrica": { + "account_number": "612505", + "account_type": "Cost of Goods Sold" + }, + "Fabricaci\u00f3n de gas y distribuci\u00f3n de combustibles gaseosos": { + "account_number": "612510", + "account_type": "Cost of Goods Sold" + }, + "Captaci\u00f3n, depuraci\u00f3n y distribuci\u00f3n de agua": { + "account_number": "612515", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "612595", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "612599", + "account_type": "Cost of Goods Sold" + } + }, + "Construcci\u00f3n": { + "account_number": "6130", + "account_type": "Cost of Goods Sold", + "Preparaci\u00f3n de terrenos": { + "account_number": "613005", + "account_type": "Cost of Goods Sold" + }, + "Construcci\u00f3n de edificios y obras de ingenier\u00eda civil": { + "account_number": "613010", + "account_type": "Cost of Goods Sold" + }, + "Acondicionamiento de edificios": { + "account_number": "613015", + "account_type": "Cost of Goods Sold" + }, + "Terminaci\u00f3n de edificaciones": { + "account_number": "613020", + "account_type": "Cost of Goods Sold" + }, + "Alquiler de equipo con operario": { + "account_number": "613025", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "613095", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "613099", + "account_type": "Cost of Goods Sold" + } + }, + "Comercio al por mayor y al por menor": { + "account_number": "6135", + "account_type": "Cost of Goods Sold", + "Venta de veh\u00edculos automotores": { + "account_number": "613502", + "account_type": "Cost of Goods Sold" + }, + "Mantenimiento, reparaci\u00f3n y lavado de veh\u00edculos automotores": { + "account_number": "613504", + "account_type": "Cost of Goods Sold" + }, + "Venta de partes, piezas y accesorios de veh\u00edculos automotores": { + "account_number": "613506", + "account_type": "Cost of Goods Sold" + }, + "Venta de combustibles s\u00f3lidos, l\u00edquidos, gaseosos": { + "account_number": "613508", + "account_type": "Cost of Goods Sold" + }, + "Venta de lubricantes, aditivos, llantas y lujos para automotores": { + "account_number": "613510", + "account_type": "Cost of Goods Sold" + }, + "Venta a cambio de retribuci\u00f3n o por contrata": { + "account_number": "613512", + "account_type": "Cost of Goods Sold" + }, + "Venta de insumos, materias primas agropecuarias y flores": { + "account_number": "613514", + "account_type": "Cost of Goods Sold" + }, + "Venta de otros insumos y materias primas no agropecuarias": { + "account_number": "613516", + "account_type": "Cost of Goods Sold" + }, + "Venta de animales vivos y cueros": { + "account_number": "613518", + "account_type": "Cost of Goods Sold" + }, + "Venta de productos en almacenes no especializados": { + "account_number": "613520", + "account_type": "Cost of Goods Sold" + }, + "Venta de productos agropecuarios": { + "account_number": "613522", + "account_type": "Cost of Goods Sold" + }, + "Venta de productos textiles, de vestir, de cuero y calzado": { + "account_number": "613524", + "account_type": "Cost of Goods Sold" + }, + "Venta de papel y cart\u00f3n": { + "account_number": "613526", + "account_type": "Cost of Goods Sold" + }, + "Venta de libros, revistas, elementos de papeler\u00eda, \u00fatiles y textos escolares": { + "account_number": "613528", + "account_type": "Cost of Goods Sold" + }, + "Venta de juegos, juguetes y art\u00edculos deportivos": { + "account_number": "613530", + "account_type": "Cost of Goods Sold" + }, + "Venta de instrumentos quir\u00fargicos y ortop\u00e9dicos": { + "account_number": "613532", + "account_type": "Cost of Goods Sold" + }, + "Venta de art\u00edculos en relojer\u00edas y joyer\u00edas": { + "account_number": "613534", + "account_type": "Cost of Goods Sold" + }, + "Venta de electrodom\u00e9sticos y muebles": { + "account_number": "613536", + "account_type": "Cost of Goods Sold" + }, + "Venta de productos de aseo, farmac\u00e9uticos, medicinales y art\u00edculos de tocador": { + "account_number": "613538", + "account_type": "Cost of Goods Sold" + }, + "Venta de cubiertos, vajillas, cristaler\u00eda, porcelanas, cer\u00e1micas y otros art\u00edculos de uso dom\u00e9stico": { + "account_number": "613540", + "account_type": "Cost of Goods Sold" + }, + "Venta de materiales de construcci\u00f3n, fontaner\u00eda y calefacci\u00f3n": { + "account_number": "613542", + "account_type": "Cost of Goods Sold" + }, + "Venta de pinturas y lacas": { + "account_number": "613544", + "account_type": "Cost of Goods Sold" + }, + "Venta de productos de vidrios y marqueter\u00eda": { + "account_number": "613546", + "account_type": "Cost of Goods Sold" + }, + "Venta de herramientas y art\u00edculos de ferreter\u00eda": { + "account_number": "613548", + "account_type": "Cost of Goods Sold" + }, + "Venta de qu\u00edmicos": { + "account_number": "613550", + "account_type": "Cost of Goods Sold" + }, + "Venta de productos intermedios, desperdicios y desechos": { + "account_number": "613552", + "account_type": "Cost of Goods Sold" + }, + "Venta de maquinaria, equipo de oficina y programas de computador": { + "account_number": "613554", + "account_type": "Cost of Goods Sold" + }, + "Venta de art\u00edculos en cacharrer\u00edas y miscel\u00e1neas": { + "account_number": "613556", + "account_type": "Cost of Goods Sold" + }, + "Venta de instrumentos musicales": { + "account_number": "613558", + "account_type": "Cost of Goods Sold" + }, + "Venta de art\u00edculos en casas de empe\u00f1o y prender\u00edas": { + "account_number": "613560", + "account_type": "Cost of Goods Sold" + }, + "Venta de equipo fotogr\u00e1fico": { + "account_number": "613562", + "account_type": "Cost of Goods Sold" + }, + "Venta de equipo \u00f3ptico y de precisi\u00f3n": { + "account_number": "613564", + "account_type": "Cost of Goods Sold" + }, + "Venta de empaques": { + "account_number": "613566", + "account_type": "Cost of Goods Sold" + }, + "Venta de equipo profesional y cient\u00edfico": { + "account_number": "613568", + "account_type": "Cost of Goods Sold" + }, + "Venta de loter\u00edas, rifas, chance, apuestas y similares": { + "account_number": "613570", + "account_type": "Cost of Goods Sold" + }, + "Reparaci\u00f3n de efectos personales y electrodom\u00e9sticos": { + "account_number": "613572", + "account_type": "Cost of Goods Sold" + }, + "Venta de otros productos": { + "account_number": "613595", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "613599", + "account_type": "Cost of Goods Sold" + } + }, + "Hoteles y restaurantes": { + "account_number": "6140", + "account_type": "Cost of Goods Sold", + "Hoteler\u00eda": { + "account_number": "614005", + "account_type": "Cost of Goods Sold" + }, + "Campamento y otros tipos de hospedaje": { + "account_number": "614010", + "account_type": "Cost of Goods Sold" + }, + "Restaurantes": { + "account_number": "614015", + "account_type": "Cost of Goods Sold" + }, + "Bares y cantinas": { + "account_number": "614020", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "614095", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "614099", + "account_type": "Cost of Goods Sold" + } + }, + "Transporte, almacenamiento y comunicaciones": { + "account_number": "6145", + "account_type": "Cost of Goods Sold", + "Servicio de transporte por carretera": { + "account_number": "614505", + "account_type": "Cost of Goods Sold" + }, + "Servicio de transporte por v\u00eda f\u00e9rrea": { + "account_number": "614510", + "account_type": "Cost of Goods Sold" + }, + "Servicio de transporte por v\u00eda acu\u00e1tica": { + "account_number": "614515", + "account_type": "Cost of Goods Sold" + }, + "Servicio de transporte por v\u00eda a\u00e9rea": { + "account_number": "614520", + "account_type": "Cost of Goods Sold" + }, + "Servicio de transporte por tuber\u00edas": { + "account_number": "614525", + "account_type": "Cost of Goods Sold" + }, + "Manipulaci\u00f3n de carga": { + "account_number": "614530", + "account_type": "Cost of Goods Sold" + }, + "Almacenamiento y dep\u00f3sito": { + "account_number": "614535", + "account_type": "Cost of Goods Sold" + }, + "Servicios complementarios para el transporte": { + "account_number": "614540", + "account_type": "Cost of Goods Sold" + }, + "Agencias de viaje": { + "account_number": "614545", + "account_type": "Cost of Goods Sold" + }, + "Otras agencias de transporte": { + "account_number": "614550", + "account_type": "Cost of Goods Sold" + }, + "Servicio postal y de correo": { + "account_number": "614555", + "account_type": "Cost of Goods Sold" + }, + "Servicio telef\u00f3nico": { + "account_number": "614560", + "account_type": "Cost of Goods Sold" + }, + "Servicio de tel\u00e9grafo": { + "account_number": "614565", + "account_type": "Cost of Goods Sold" + }, + "Servicio de transmisi\u00f3n de datos": { + "account_number": "614570", + "account_type": "Cost of Goods Sold" + }, + "Servicio de radio y televisi\u00f3n por cable": { + "account_number": "614575", + "account_type": "Cost of Goods Sold" + }, + "Transmisi\u00f3n de sonido e im\u00e1genes por contrato": { + "account_number": "614580", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "614595", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "614599", + "account_type": "Cost of Goods Sold" + } + }, + "Actividad financiera": { + "account_number": "6150", + "account_type": "Cost of Goods Sold", + "De inversiones": { + "account_number": "615005", + "account_type": "Cost of Goods Sold" + }, + "De servicio de bolsa": { + "account_number": "615010", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "615099", + "account_type": "Cost of Goods Sold" + } + }, + "Actividades inmobiliarias, empresariales y de alquiler": { + "account_number": "6155", + "account_type": "Cost of Goods Sold", + "Arrendamientos de bienes inmuebles": { + "account_number": "615505", + "account_type": "Cost of Goods Sold" + }, + "Inmobiliarias por retribuci\u00f3n o contrata": { + "account_number": "615510", + "account_type": "Cost of Goods Sold" + }, + "Alquiler equipo de transporte": { + "account_number": "615515", + "account_type": "Cost of Goods Sold" + }, + "Alquiler maquinaria y equipo": { + "account_number": "615520", + "account_type": "Cost of Goods Sold" + }, + "Alquiler de efectos personales y enseres dom\u00e9sticos": { + "account_number": "615525", + "account_type": "Cost of Goods Sold" + }, + "Consultor\u00eda en equipo y programas de inform\u00e1tica": { + "account_number": "615530", + "account_type": "Cost of Goods Sold" + }, + "Procesamiento de datos": { + "account_number": "615535", + "account_type": "Cost of Goods Sold" + }, + "Mantenimiento y reparaci\u00f3n de maquinaria de oficina": { + "account_number": "615540", + "account_type": "Cost of Goods Sold" + }, + "Investigaciones cient\u00edficas y de desarrollo": { + "account_number": "615545", + "account_type": "Cost of Goods Sold" + }, + "Actividades empresariales de consultor\u00eda": { + "account_number": "615550", + "account_type": "Cost of Goods Sold" + }, + "Publicidad": { + "account_number": "615555", + "account_type": "Cost of Goods Sold" + }, + "Dotaci\u00f3n de personal": { + "account_number": "615560", + "account_type": "Cost of Goods Sold" + }, + "Investigaci\u00f3n y seguridad": { + "account_number": "615565", + "account_type": "Cost of Goods Sold" + }, + "Limpieza de inmuebles": { + "account_number": "615570", + "account_type": "Cost of Goods Sold" + }, + "Fotograf\u00eda": { + "account_number": "615575", + "account_type": "Cost of Goods Sold" + }, + "Envase y empaque": { + "account_number": "615580", + "account_type": "Cost of Goods Sold" + }, + "Fotocopiado": { + "account_number": "615585", + "account_type": "Cost of Goods Sold" + }, + "Mantenimiento y reparaci\u00f3n de maquinaria y equipo": { + "account_number": "615590", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "615595", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "615599", + "account_type": "Cost of Goods Sold" + } + }, + "Ense\u00f1anza": { + "account_number": "6160", + "account_type": "Cost of Goods Sold", + "Actividades relacionadas con la educaci\u00f3n": { + "account_number": "616005", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "616095", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "616099", + "account_type": "Cost of Goods Sold" + } + }, + "Servicios sociales y de salud": { + "account_number": "6165", + "account_type": "Cost of Goods Sold", + "Servicio hospitalario": { + "account_number": "616505", + "account_type": "Cost of Goods Sold" + }, + "Servicio m\u00e9dico": { + "account_number": "616510", + "account_type": "Cost of Goods Sold" + }, + "Servicio odontol\u00f3gico": { + "account_number": "616515", + "account_type": "Cost of Goods Sold" + }, + "Servicio de laboratorio": { + "account_number": "616520", + "account_type": "Cost of Goods Sold" + }, + "Actividades veterinarias": { + "account_number": "616525", + "account_type": "Cost of Goods Sold" + }, + "Actividades de servicios sociales": { + "account_number": "616530", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "616595", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "616599", + "account_type": "Cost of Goods Sold" + } + }, + "Otras actividades de servicios comunitarios, sociales y personales": { + "account_number": "6170", + "account_type": "Cost of Goods Sold", + "Eliminaci\u00f3n de desperdicios y aguas residuales": { + "account_number": "617005", + "account_type": "Cost of Goods Sold" + }, + "Actividades de asociaci\u00f3n": { + "account_number": "617010", + "account_type": "Cost of Goods Sold" + }, + "Producci\u00f3n y distribuci\u00f3n de filmes y videocintas": { + "account_number": "617015", + "account_type": "Cost of Goods Sold" + }, + "Exhibici\u00f3n de filmes y videocintas": { + "account_number": "617020", + "account_type": "Cost of Goods Sold" + }, + "Actividad de radio y televisi\u00f3n": { + "account_number": "617025", + "account_type": "Cost of Goods Sold" + }, + "Actividad teatral, musical y art\u00edstica": { + "account_number": "617030", + "account_type": "Cost of Goods Sold" + }, + "Grabaci\u00f3n y producci\u00f3n de discos": { + "account_number": "617035", + "account_type": "Cost of Goods Sold" + }, + "Entretenimiento y esparcimiento": { + "account_number": "617040", + "account_type": "Cost of Goods Sold" + }, + "Agencias de noticias": { + "account_number": "617045", + "account_type": "Cost of Goods Sold" + }, + "Lavander\u00edas y similares": { + "account_number": "617050", + "account_type": "Cost of Goods Sold" + }, + "Peluquer\u00edas y similares": { + "account_number": "617055", + "account_type": "Cost of Goods Sold" + }, + "Servicios funerarios": { + "account_number": "617060", + "account_type": "Cost of Goods Sold" + }, + "Zonas francas": { + "account_number": "617065", + "account_type": "Cost of Goods Sold" + }, + "Actividades conexas": { + "account_number": "617095", + "account_type": "Cost of Goods Sold" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "617099", + "account_type": "Cost of Goods Sold" + } + } + }, + "Compras": { + "account_number": "62", + "account_type": "Cost of Goods Sold", + "De mercanc\u00edas": { + "account_number": "6205", + "account_type": "Cost of Goods Sold", + "Ajustes por inflaci\u00f3n": { + "account_number": "620599", + "account_type": "Cost of Goods Sold" + } + }, + "De materias primas": { + "account_number": "6210", + "account_type": "Cost of Goods Sold", + "Ajustes por inflaci\u00f3n": { + "account_number": "621099", + "account_type": "Cost of Goods Sold" + } + }, + "De materiales indirectos": { + "account_number": "6215", + "account_type": "Cost of Goods Sold", + "Ajustes por inflaci\u00f3n": { + "account_number": "621599", + "account_type": "Cost of Goods Sold" + } + }, + "Compra de energ\u00eda": { + "account_number": "6220", + "account_type": "Cost of Goods Sold", + "Ajustes por inflaci\u00f3n": { + "account_number": "622099", + "account_type": "Cost of Goods Sold" + } + }, + "Devoluciones en compras (CR)": { + "account_number": "6225", + "account_type": "Cost of Goods Sold", + "Ajustes por inflaci\u00f3n": { + "account_number": "622599", + "account_type": "Cost of Goods Sold" + } + } + } + }, + "Costos de producci\u00f3n o de operaci\u00f3n": { + "account_number": "7", + "account_type": "Cost of Goods Sold", + "root_type": "Expense", + "Materia prima": { + "account_number": "71", + "account_type": "Cost of Goods Sold" + }, + "Mano de obra directa": { + "account_number": "72", + "account_type": "Cost of Goods Sold" + }, + "Costos indirectos": { + "account_number": "73", + "account_type": "Cost of Goods Sold" + }, + "Contratos de servicios": { + "account_number": "74", + "account_type": "Cost of Goods Sold" + } + }, + "Cuentas de orden deudoras": { + "account_number": "8", + "root_type": "Asset", + "Derechos contingentes": { + "account_number": "81", + "Bienes y valores entregados en custodia": { + "account_number": "8105", + "Valores mobiliarios": { + "account_number": "810505" + }, + "Bienes muebles": { + "account_number": "810510" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "810599" + } + }, + "Bienes y valores entregados en garant\u00eda": { + "account_number": "8110", + "Valores mobiliarios": { + "account_number": "811005" + }, + "Bienes muebles": { + "account_number": "811010" + }, + "Bienes inmuebles": { + "account_number": "811015" + }, + "Contratos de ganado en participaci\u00f3n": { + "account_number": "811020" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "811099" + } + }, + "Bienes y valores en poder de terceros": { + "account_number": "8115", + "En arrendamiento": { + "account_number": "811505" + }, + "En pr\u00e9stamo": { + "account_number": "811510" + }, + "En dep\u00f3sito": { + "account_number": "811515" + }, + "En consignaci\u00f3n": { + "account_number": "811520" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "811599" + } + }, + "Litigios y/o demandas": { + "account_number": "8120", + "Ejecutivos": { + "account_number": "812005" + }, + "Incumplimiento de contratos": { + "account_number": "812010" + } + }, + "Promesas de compraventa": { + "account_number": "8125" + }, + "Diversas": { + "account_number": "8195", + "Valores adquiridos por recibir": { + "account_number": "819505" + }, + "Otras": { + "account_number": "819595" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "819599" + } + } + }, + "Deudoras fiscales": { + "account_number": "82" + }, + "Deudoras de control": { + "account_number": "83", + "Bienes recibidos en arrendamiento financiero": { + "account_number": "8305", + "Bienes muebles": { + "account_number": "830505" + }, + "Bienes inmuebles": { + "account_number": "830510" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "830599" + } + }, + "T\u00edtulos de inversi\u00f3n no colocados": { + "account_number": "8310", + "Acciones": { + "account_number": "831005" + }, + "Bonos": { + "account_number": "831010" + }, + "Otros": { + "account_number": "831095" + } + }, + "Propiedades, planta y equipo totalmente depreciados, agotados y/o amortizados": { + "account_number": "8315", + "Materiales proyectos petroleros": { + "account_number": "831506" + }, + "Construcciones y edificaciones": { + "account_number": "831516" + }, + "Maquinaria y equipo": { + "account_number": "831520" + }, + "Equipo de oficina": { + "account_number": "831524" + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "831528" + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "831532" + }, + "Equipo de hoteles y restaurantes": { + "account_number": "831536" + }, + "Flota y equipo de transporte": { + "account_number": "831540" + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "831544" + }, + "Flota y equipo a\u00e9reo": { + "account_number": "831548" + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "831552" + }, + "Acueductos, plantas y redes": { + "account_number": "831556" + }, + "Armamento de vigilancia": { + "account_number": "831560" + }, + "Envases y empaques": { + "account_number": "831562" + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "831564" + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "831568" + }, + "Minas y canteras": { + "account_number": "831572" + }, + "Pozos artesianos": { + "account_number": "831576" + }, + "Yacimientos": { + "account_number": "831580" + }, + "Semovientes": { + "account_number": "831584" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "831599" + } + }, + "Cr\u00e9ditos a favor no utilizados": { + "account_number": "8320", + "Pa\u00eds": { + "account_number": "832005" + }, + "Exterior": { + "account_number": "832010" + } + }, + "Activos castigados": { + "account_number": "8325", + "Inversiones": { + "account_number": "832505" + }, + "Deudores": { + "account_number": "832510" + }, + "Otros activos": { + "account_number": "832595" + } + }, + "T\u00edtulos de inversi\u00f3n amortizados": { + "account_number": "8330", + "Bonos": { + "account_number": "833005" + }, + "Otros": { + "account_number": "833095" + } + }, + "Capitalizaci\u00f3n por revalorizaci\u00f3n de patrimonio": { + "account_number": "8335" + }, + "Otras cuentas deudoras de control": { + "account_number": "8395", + "Cheques posfechados": { + "account_number": "839505" + }, + "Certificados de dep\u00f3sito a t\u00e9rmino": { + "account_number": "839510" + }, + "Cheques devueltos": { + "account_number": "839515" + }, + "Bienes y valores en fideicomiso": { + "account_number": "839520" + }, + "Intereses sobre deudas vencidas": { + "account_number": "839525" + }, + "Diversas": { + "account_number": "839595" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "839599" + } + }, + "Ajustes por inflaci\u00f3n activos": { + "account_number": "8399", + "Inversiones": { + "account_number": "839905" + }, + "Inventarios": { + "account_number": "839910" + }, + "Propiedades, planta y equipo": { + "account_number": "839915" + }, + "Intangibles": { + "account_number": "839920" + }, + "Cargos diferidos": { + "account_number": "839925" + }, + "Otros activos": { + "account_number": "839995" + } + } + }, + "Derechos contingentes por contra (CR)": { + "account_number": "84" + }, + "Deudoras fiscales por contra (CR)": { + "account_number": "85" + }, + "Deudoras de control por contra (CR)": { + "account_number": "86" + } + }, + "Cuentas de orden acreedoras": { + "account_number": "9", + "root_type": "Liability", + "Responsabilidades contingentes": { + "account_number": "91", + "Bienes y valores recibidos en custodia": { + "account_number": "9105", + "Valores mobiliarios": { + "account_number": "910505" + }, + "Bienes muebles": { + "account_number": "910510" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "910599" + } + }, + "Bienes y valores recibidos en garant\u00eda": { + "account_number": "9110", + "Valores mobiliarios": { + "account_number": "911005" + }, + "Bienes muebles": { + "account_number": "911010" + }, + "Bienes inmuebles": { + "account_number": "911015" + }, + "Contratos de ganado en participaci\u00f3n": { + "account_number": "911020" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "911099" + } + }, + "Bienes y valores recibidos de terceros": { + "account_number": "9115", + "En arrendamiento": { + "account_number": "911505" + }, + "En pr\u00e9stamo": { + "account_number": "911510" + }, + "En dep\u00f3sito": { + "account_number": "911515" + }, + "En consignaci\u00f3n": { + "account_number": "911520" + }, + "En comodato": { + "account_number": "911525" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "911599" + } + }, + "Litigios y/o demandas": { + "account_number": "9120", + "Laborales": { + "account_number": "912005" + }, + "Civiles": { + "account_number": "912010" + }, + "Administrativos o arbitrales": { + "account_number": "912015" + }, + "Tributarios": { + "account_number": "912020" + } + }, + "Promesas de compraventa": { + "account_number": "9125" + }, + "Contratos de administraci\u00f3n delegada": { + "account_number": "9130" + }, + "Cuentas en participaci\u00f3n": { + "account_number": "9135" + }, + "Otras responsabilidades contingentes": { + "account_number": "9195" + } + }, + "Acreedoras fiscales": { + "account_number": "92" + }, + "Acreedoras de control": { + "account_number": "93", + "Contratos de arrendamiento financiero": { + "account_number": "9305", + "Bienes muebles": { + "account_number": "930505" + }, + "Bienes inmuebles": { + "account_number": "930510" + } + }, + "Otras cuentas de orden acreedoras de control": { + "account_number": "9395", + "Documentos por cobrar descontados": { + "account_number": "939505" + }, + "Convenios de pago": { + "account_number": "939510" + }, + "Contratos de construcciones e instalaciones por ejecutar": { + "account_number": "939515" + }, + "Adjudicaciones pendientes de legalizar": { + "account_number": "939525" + }, + "Reserva art\u00edculo 3\u00ba Ley 4\u00aa de 1980": { + "account_number": "939530" + }, + "Reserva costo reposici\u00f3n semovientes": { + "account_number": "939535" + }, + "Diversas": { + "account_number": "939595" + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "939599" + } + }, + "Ajustes por inflaci\u00f3n patrimonio": { + "account_number": "9399", + "Capital social": { + "account_number": "939905" + }, + "Super\u00e1vit de capital": { + "account_number": "939910" + }, + "Reservas": { + "account_number": "939915" + }, + "Dividendos o participaciones decretadas en acciones, cuotas o partes de inter\u00e9s social": { + "account_number": "939925" + }, + "Resultados de ejercicios anteriores": { + "account_number": "939930" + } + } + }, + "Responsabilidades contingentes por contra (DB)": { + "account_number": "94" + }, + "Acreedoras fiscales por contra (DB)": { + "account_number": "95" + }, + "Acreedoras de control por contra (DB)": { + "account_number": "96" + } + } + } +} \ No newline at end of file diff --git a/erpnext/accounts/doctype/account/chart_of_accounts/verified/co_plan_unico_de_cuentas_simple.json b/erpnext/accounts/doctype/account/chart_of_accounts/verified/co_plan_unico_de_cuentas_simple.json new file mode 100644 index 0000000000..cd6ce1edce --- /dev/null +++ b/erpnext/accounts/doctype/account/chart_of_accounts/verified/co_plan_unico_de_cuentas_simple.json @@ -0,0 +1,1746 @@ +{ + "country_code": "co", + "name": "Colombia PUC Simple", + "tree": { + "Activo": { + "account_number": "1", + "root_type": "Asset", + "Disponible": { + "account_number": "11", + "Caja": { + "account_number": "1105", + "account_type": "Cash", + "is_group": 1 + }, + "Bancos": { + "account_number": "1110", + "account_type": "Bank", + "is_group": 1 + }, + "Remesas en tr\u00e1nsito": { + "account_number": "1115", + "is_group": 1 + }, + "Cuentas de ahorro": { + "account_number": "1120", + "is_group": 1 + }, + "Fondos": { + "account_number": "1125", + "is_group": 1 + } + }, + "Inversiones": { + "account_number": "12", + "Acciones": { + "account_number": "1205", + "is_group": 1 + }, + "Cuotas o partes de inter\u00e9s social": { + "account_number": "1210", + "is_group": 1 + }, + "Bonos": { + "account_number": "1215", + "is_group": 1 + }, + "C\u00e9dulas": { + "account_number": "1220", + "is_group": 1 + }, + "Certificados": { + "account_number": "1225", + "is_group": 1 + }, + "Papeles comerciales": { + "account_number": "1230", + "is_group": 1 + }, + "T\u00edtulos": { + "account_number": "1235", + "is_group": 1 + }, + "Aceptaciones bancarias o financieras": { + "account_number": "1240", + "is_group": 1 + }, + "Derechos fiduciarios": { + "account_number": "1245", + "is_group": 1 + }, + "Derechos de recompra de inversiones negociadas (repos)": { + "account_number": "1250", + "is_group": 1 + }, + "Obligatorias": { + "account_number": "1255", + "is_group": 1 + }, + "Cuentas en participaci\u00f3n": { + "account_number": "1260", + "is_group": 1 + }, + "Otras inversiones": { + "account_number": "1295", + "is_group": 1 + }, + "Provisiones": { + "account_number": "1299", + "is_group": 1 + } + }, + "Deudores": { + "account_number": "13", + "account_type": "Receivable", + "Clientes": { + "account_number": "1305", + "account_type": "Receivable", + "is_group": 1 + }, + "Cuentas corrientes comerciales": { + "account_number": "1310", + "account_type": "Receivable", + "is_group": 1 + }, + "Cuentas por cobrar a casa matriz": { + "account_number": "1315", + "account_type": "Receivable", + "is_group": 1 + }, + "Cuentas por cobrar a vinculados econ\u00f3micos": { + "account_number": "1320", + "account_type": "Receivable", + "is_group": 1 + }, + "Cuentas por cobrar a directores": { + "account_number": "1323", + "account_type": "Receivable" + }, + "Cuentas por cobrar a socios y accionistas": { + "account_number": "1325", + "account_type": "Receivable", + "is_group": 1 + }, + "Aportes por cobrar": { + "account_number": "1328", + "account_type": "Receivable" + }, + "Anticipos y avances": { + "account_number": "1330", + "account_type": "Receivable", + "is_group": 1 + }, + "Cuentas de operaci\u00f3n conjunta": { + "account_number": "1332", + "account_type": "Receivable" + }, + "Dep\u00f3sitos": { + "account_number": "1335", + "account_type": "Receivable", + "is_group": 1 + }, + "Promesas de compra venta": { + "account_number": "1340", + "account_type": "Receivable", + "is_group": 1 + }, + "Ingresos por cobrar": { + "account_number": "1345", + "account_type": "Receivable", + "is_group": 1 + }, + "Retenci\u00f3n sobre contratos": { + "account_number": "1350", + "account_type": "Receivable", + "is_group": 1 + }, + "Anticipo de impuestos y contribuciones o saldos a favor": { + "account_number": "1355", + "account_type": "Receivable", + "is_group": 1 + }, + "Reclamaciones": { + "account_number": "1360", + "account_type": "Receivable", + "is_group": 1 + }, + "Cuentas por cobrar a trabajadores": { + "account_number": "1365", + "account_type": "Receivable", + "is_group": 1 + }, + "Pr\u00e9stamos a particulares": { + "account_number": "1370", + "account_type": "Receivable", + "is_group": 1 + }, + "Deudores varios": { + "account_number": "1380", + "account_type": "Receivable", + "is_group": 1 + }, + "Derechos de recompra de cartera negociada": { + "account_number": "1385", + "account_type": "Receivable" + }, + "Deudas de dif\u00edcil cobro": { + "account_number": "1390", + "account_type": "Receivable" + }, + "Provisiones": { + "account_number": "1399", + "account_type": "Receivable", + "is_group": 1 + } + }, + "Inventarios": { + "account_number": "14", + "account_type": "Stock", + "Materias primas": { + "account_number": "1405", + "account_type": "Stock", + "is_group": 1 + }, + "Productos en proceso": { + "account_number": "1410", + "account_type": "Stock", + "is_group": 1 + }, + "Obras de construcci\u00f3n en curso": { + "account_number": "1415", + "account_type": "Stock", + "is_group": 1 + }, + "Obras de urbanismo": { + "account_number": "1417", + "account_type": "Stock", + "is_group": 1 + }, + "Contratos en ejecuci\u00f3n": { + "account_number": "1420", + "account_type": "Stock", + "is_group": 1 + }, + "Cultivos en desarrollo": { + "account_number": "1425", + "account_type": "Stock", + "is_group": 1 + }, + "Plantaciones agr\u00edcolas": { + "account_number": "1428", + "account_type": "Stock", + "is_group": 1 + }, + "Productos terminados": { + "account_number": "1430", + "account_type": "Stock", + "is_group": 1 + }, + "Mercanc\u00edas no fabricadas por la empresa": { + "account_number": "1435", + "account_type": "Stock", + "is_group": 1 + }, + "Bienes ra\u00edces para la venta": { + "account_number": "1440", + "account_type": "Stock", + "is_group": 1 + }, + "Semovientes": { + "account_number": "1445", + "account_type": "Stock", + "is_group": 1 + }, + "Terrenos": { + "account_number": "1450", + "account_type": "Stock", + "is_group": 1 + }, + "Materiales, repuestos y accesorios": { + "account_number": "1455", + "account_type": "Stock", + "is_group": 1 + }, + "Envases y empaques": { + "account_number": "1460", + "account_type": "Stock", + "is_group": 1 + }, + "Inventarios en tr\u00e1nsito": { + "account_number": "1465", + "account_type": "Stock", + "is_group": 1 + }, + "Provisiones": { + "account_number": "1499", + "account_type": "Stock", + "is_group": 1 + } + }, + "Propiedades, planta y equipo": { + "account_number": "15", + "account_type": "Fixed Asset", + "Terrenos": { + "account_number": "1504", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Materiales proyectos petroleros": { + "account_number": "1506", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Construcciones en curso": { + "account_number": "1508", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Maquinaria y equipos en montaje": { + "account_number": "1512", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Construcciones y edificaciones": { + "account_number": "1516", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Maquinaria y equipo": { + "account_number": "1520", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Equipo de oficina": { + "account_number": "1524", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Equipo de computaci\u00f3n y comunicaci\u00f3n": { + "account_number": "1528", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Equipo m\u00e9dico-cient\u00edfico": { + "account_number": "1532", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Equipo de hoteles y restaurantes": { + "account_number": "1536", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Flota y equipo de transporte": { + "account_number": "1540", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Flota y equipo fluvial y/o mar\u00edtimo": { + "account_number": "1544", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Flota y equipo a\u00e9reo": { + "account_number": "1548", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Flota y equipo f\u00e9rreo": { + "account_number": "1552", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Acueductos, plantas y redes": { + "account_number": "1556", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Armamento de vigilancia": { + "account_number": "1560", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Envases y empaques": { + "account_number": "1562", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Plantaciones agr\u00edcolas y forestales": { + "account_number": "1564", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "V\u00edas de comunicaci\u00f3n": { + "account_number": "1568", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Minas y canteras": { + "account_number": "1572", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Pozos artesianos": { + "account_number": "1576", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Yacimientos": { + "account_number": "1580", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Semovientes": { + "account_number": "1584", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Propiedades, planta y equipo en tr\u00e1nsito": { + "account_number": "1588", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Depreciaci\u00f3n acumulada": { + "account_number": "1592", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Depreciaci\u00f3n diferida": { + "account_number": "1596", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Amortizaci\u00f3n acumulada": { + "account_number": "1597", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Agotamiento acumulado": { + "account_number": "1598", + "account_type": "Fixed Asset", + "is_group": 1 + }, + "Provisiones": { + "account_number": "1599", + "account_type": "Fixed Asset", + "is_group": 1 + } + }, + "Intangibles": { + "account_number": "16", + "Cr\u00e9dito mercantil": { + "account_number": "1605", + "is_group": 1 + }, + "Marcas": { + "account_number": "1610", + "is_group": 1 + }, + "Patentes": { + "account_number": "1615", + "is_group": 1 + }, + "Concesiones y franquicias": { + "account_number": "1620", + "is_group": 1 + }, + "Derechos": { + "account_number": "1625", + "is_group": 1 + }, + "Know how": { + "account_number": "1630", + "is_group": 1 + }, + "Licencias": { + "account_number": "1635", + "is_group": 1 + }, + "Depreciaci\u00f3n y/o amortizaci\u00f3n acumulada": { + "account_number": "1698", + "is_group": 1 + }, + "Provisiones": { + "account_number": "1699", + "account_type": "Accumulated Depreciation" + } + }, + "Diferidos": { + "account_number": "17", + "Gastos pagados por anticipado": { + "account_number": "1705", + "is_group": 1 + }, + "Cargos diferidos": { + "account_number": "1710", + "is_group": 1 + }, + "Costos de exploraci\u00f3n por amortizar": { + "account_number": "1715", + "is_group": 1 + }, + "Costos de explotaci\u00f3n y desarrollo": { + "account_number": "1720", + "is_group": 1 + }, + "Cargos por correcci\u00f3n monetaria diferida": { + "account_number": "1730" + }, + "Amortizaci\u00f3n acumulada": { + "account_number": "1798", + "account_type": "Accumulated Depreciation", + "is_group": 1 + } + }, + "Otros activos": { + "account_number": "18", + "Bienes de arte y cultura": { + "account_number": "1805", + "is_group": 1 + }, + "Diversos": { + "account_number": "1895", + "is_group": 1 + }, + "Provisiones": { + "account_number": "1899", + "is_group": 1 + } + }, + "Valorizaciones": { + "account_number": "19", + "De inversiones": { + "account_number": "1905", + "is_group": 1 + }, + "De propiedades, planta y equipo": { + "account_number": "1910", + "is_group": 1 + }, + "De otros activos": { + "account_number": "1995", + "is_group": 1 + } + } + }, + "Pasivo": { + "account_number": "2", + "root_type": "Liability", + "Obligaciones financieras": { + "account_number": "21", + "Bancos nacionales": { + "account_number": "2105", + "is_group": 1 + }, + "Bancos del exterior": { + "account_number": "2110", + "is_group": 1 + }, + "Corporaciones financieras": { + "account_number": "2115", + "is_group": 1 + }, + "Compa\u00f1\u00edas de financiamiento comercial": { + "account_number": "2120", + "is_group": 1 + }, + "Corporaciones de ahorro y vivienda": { + "account_number": "2125", + "is_group": 1 + }, + "Entidades financieras del exterior": { + "account_number": "2130" + }, + "Compromisos de recompra de inversiones negociadas": { + "account_number": "2135", + "is_group": 1 + }, + "Compromisos de recompra de cartera negociada": { + "account_number": "2140" + }, + "Obligaciones gubernamentales": { + "account_number": "2145", + "is_group": 1 + }, + "Otras obligaciones": { + "account_number": "2195", + "is_group": 1 + } + }, + "Proveedores": { + "account_number": "22", + "account_type": "Payable", + "Nacionales": { + "account_number": "2205", + "account_type": "Payable" + }, + "Del exterior": { + "account_number": "2210", + "account_type": "Payable" + }, + "Cuentas corrientes comerciales": { + "account_number": "2215", + "account_type": "Payable" + }, + "Casa matriz": { + "account_number": "2220", + "account_type": "Payable" + }, + "Compa\u00f1\u00edas vinculadas": { + "account_number": "2225", + "account_type": "Payable" + } + }, + "Cuentas por pagar": { + "account_number": "23", + "account_type": "Payable", + "Cuentas corrientes comerciales": { + "account_number": "2305", + "account_type": "Payable" + }, + "A casa matriz": { + "account_number": "2310", + "account_type": "Payable" + }, + "A compa\u00f1\u00edas vinculadas": { + "account_number": "2315", + "account_type": "Payable" + }, + "A contratistas": { + "account_number": "2320", + "account_type": "Payable" + }, + "\u00d3rdenes de compra por utilizar": { + "account_number": "2330", + "account_type": "Payable" + }, + "Costos y gastos por pagar": { + "account_number": "2335", + "account_type": "Payable", + "is_group": 1 + }, + "Instalamentos por pagar": { + "account_number": "2340", + "account_type": "Payable" + }, + "Acreedores oficiales": { + "account_number": "2345", + "account_type": "Payable" + }, + "Regal\u00edas por pagar": { + "account_number": "2350", + "account_type": "Payable" + }, + "Deudas con accionistas o socios": { + "account_number": "2355", + "account_type": "Payable", + "is_group": 1 + }, + "Deudas con directores": { + "account_number": "2357", + "account_type": "Payable" + }, + "Dividendos o participaciones por pagar": { + "account_number": "2360", + "account_type": "Payable", + "is_group": 1 + }, + "Retenci\u00f3n en la fuente": { + "account_number": "2365", + "account_type": "Payable", + "is_group": 1 + }, + "Impuesto a las ventas retenido": { + "account_number": "2367", + "account_type": "Payable" + }, + "Impuesto de industria y comercio retenido": { + "account_number": "2368", + "account_type": "Payable" + }, + "Retenciones y aportes de n\u00f3mina": { + "account_number": "2370", + "account_type": "Payable", + "is_group": 1 + }, + "Cuotas por devolver": { + "account_number": "2375", + "account_type": "Payable" + }, + "Acreedores varios": { + "account_number": "2380", + "account_type": "Payable", + "is_group": 1 + } + }, + "Impuestos, grav\u00e1menes y tasas": { + "account_number": "24", + "account_type": "Tax", + "De renta y complementarios": { + "account_number": "2404", + "account_type": "Tax", + "is_group": 1 + }, + "Impuesto sobre las ventas por pagar": { + "account_number": "2408", + "account_type": "Tax" + }, + "De industria y comercio": { + "account_number": "2412", + "account_type": "Tax", + "is_group": 1 + }, + "A la propiedad ra\u00edz": { + "account_number": "2416", + "account_type": "Tax" + }, + "Derechos sobre instrumentos p\u00fablicos": { + "account_number": "2420", + "account_type": "Tax" + }, + "De valorizaci\u00f3n": { + "account_number": "2424", + "account_type": "Tax", + "is_group": 1 + }, + "De turismo": { + "account_number": "2428", + "account_type": "Tax" + }, + "Tasa por utilizaci\u00f3n de puertos": { + "account_number": "2432", + "account_type": "Tax" + }, + "De veh\u00edculos": { + "account_number": "2436", + "account_type": "Tax", + "is_group": 1 + }, + "De espect\u00e1culos p\u00fablicos": { + "account_number": "2440", + "account_type": "Tax" + }, + "De hidrocarburos y minas": { + "account_number": "2444", + "account_type": "Tax", + "is_group": 1 + }, + "Regal\u00edas e impuestos a la peque\u00f1a y mediana miner\u00eda": { + "account_number": "2448", + "account_type": "Tax" + }, + "A las exportaciones cafeteras": { + "account_number": "2452", + "account_type": "Tax" + }, + "A las importaciones": { + "account_number": "2456", + "account_type": "Tax" + }, + "Cuotas de fomento": { + "account_number": "2460", + "account_type": "Tax" + }, + "De licores, cervezas y cigarrillos": { + "account_number": "2464", + "account_type": "Tax", + "is_group": 1 + }, + "Al sacrificio de ganado": { + "account_number": "2468", + "account_type": "Tax" + }, + "Al azar y juegos": { + "account_number": "2472", + "account_type": "Tax" + }, + "Grav\u00e1menes y regal\u00edas por utilizaci\u00f3n del suelo": { + "account_number": "2476", + "account_type": "Tax" + }, + "Otros": { + "account_number": "2495", + "account_type": "Tax" + } + }, + "Obligaciones laborales": { + "account_number": "25", + "Salarios por pagar": { + "account_number": "2505" + }, + "Cesant\u00edas consolidadas": { + "account_number": "2510", + "is_group": 1 + }, + "Intereses sobre cesant\u00edas": { + "account_number": "2515" + }, + "Prima de servicios": { + "account_number": "2520" + }, + "Vacaciones consolidadas": { + "account_number": "2525" + }, + "Prestaciones extralegales": { + "account_number": "2530", + "is_group": 1 + }, + "Pensiones por pagar": { + "account_number": "2532" + }, + "Cuotas partes pensiones de jubilaci\u00f3n": { + "account_number": "2535" + }, + "Indemnizaciones laborales": { + "account_number": "2540" + } + }, + "Pasivos estimados y provisiones": { + "account_number": "26", + "Para costos y gastos": { + "account_number": "2605", + "is_group": 1 + }, + "Para obligaciones laborales": { + "account_number": "2610", + "is_group": 1 + }, + "Para obligaciones fiscales": { + "account_number": "2615", + "is_group": 1 + }, + "Pensiones de jubilaci\u00f3n": { + "account_number": "2620", + "is_group": 1 + }, + "Para obras de urbanismo": { + "account_number": "2625", + "is_group": 1 + }, + "Para mantenimiento y reparaciones": { + "account_number": "2630", + "is_group": 1 + }, + "Para contingencias": { + "account_number": "2635", + "is_group": 1 + }, + "Para obligaciones de garant\u00edas": { + "account_number": "2640" + }, + "Provisiones diversas": { + "account_number": "2695", + "is_group": 1 + } + }, + "Diferidos": { + "account_number": "27", + "Ingresos recibidos por anticipado": { + "account_number": "2705", + "is_group": 1 + }, + "Abonos diferidos": { + "account_number": "2710", + "is_group": 1 + }, + "Utilidad diferida en ventas a plazos": { + "account_number": "2715" + }, + "Cr\u00e9dito por correcci\u00f3n monetaria diferida": { + "account_number": "2720" + }, + "Impuestos diferidos": { + "account_number": "2725", + "is_group": 1 + } + }, + "Otros pasivos": { + "account_number": "28", + "Anticipos y avances recibidos": { + "account_number": "2805", + "is_group": 1 + }, + "Dep\u00f3sitos recibidos": { + "account_number": "2810", + "is_group": 1 + }, + "Ingresos recibidos para terceros": { + "account_number": "2815", + "is_group": 1 + }, + "Cuentas de operaci\u00f3n conjunta": { + "account_number": "2820" + }, + "Retenciones a terceros sobre contratos": { + "account_number": "2825", + "is_group": 1 + }, + "Embargos judiciales": { + "account_number": "2830", + "is_group": 1 + }, + "Acreedores del sistema": { + "account_number": "2835", + "is_group": 1 + }, + "Cuentas en participaci\u00f3n": { + "account_number": "2840" + }, + "Diversos": { + "account_number": "2895", + "is_group": 1 + } + }, + "Bonos y papeles comerciales": { + "account_number": "29", + "Bonos en circulaci\u00f3n": { + "account_number": "2905" + }, + "Bonos obligatoriamente convertibles en acciones": { + "account_number": "2910" + }, + "Papeles comerciales": { + "account_number": "2915" + }, + "Bonos pensionales": { + "account_number": "2920", + "is_group": 1 + }, + "T\u00edtulos pensionales": { + "account_number": "2925", + "is_group": 1 + } + } + }, + "Patrimonio": { + "account_number": "3", + "account_type": "Equity", + "root_type": "Equity", + "Capital social": { + "account_number": "31", + "account_type": "Equity", + "Capital suscrito y pagado": { + "account_number": "3105", + "account_type": "Equity", + "is_group": 1 + }, + "Aportes sociales": { + "account_number": "3115", + "account_type": "Equity", + "is_group": 1 + }, + "Capital asignado": { + "account_number": "3120", + "account_type": "Equity" + }, + "Inversi\u00f3n suplementaria al capital asignado": { + "account_number": "3125", + "account_type": "Equity" + }, + "Capital de personas naturales": { + "account_number": "3130", + "account_type": "Equity" + }, + "Aportes del Estado": { + "account_number": "3135", + "account_type": "Equity" + }, + "Fondo social": { + "account_number": "3140", + "account_type": "Equity" + } + }, + "Super\u00e1vit de capital": { + "account_number": "32", + "account_type": "Equity", + "Prima en colocaci\u00f3n de acciones, cuotas o partes de inter\u00e9s social": { + "account_number": "3205", + "account_type": "Equity", + "is_group": 1 + }, + "Donaciones": { + "account_number": "3210", + "account_type": "Equity", + "is_group": 1 + }, + "Cr\u00e9dito mercantil": { + "account_number": "3215", + "account_type": "Equity" + }, + "Know how": { + "account_number": "3220", + "account_type": "Equity" + }, + "Super\u00e1vit m\u00e9todo de participaci\u00f3n": { + "account_number": "3225", + "account_type": "Equity", + "is_group": 1 + } + }, + "Reservas": { + "account_number": "33", + "account_type": "Equity", + "Reservas obligatorias": { + "account_number": "3305", + "account_type": "Equity", + "is_group": 1 + }, + "Reservas estatutarias": { + "account_number": "3310", + "account_type": "Equity", + "is_group": 1 + }, + "Reservas ocasionales": { + "account_number": "3315", + "account_type": "Equity", + "is_group": 1 + } + }, + "Revalorizaci\u00f3n del patrimonio": { + "account_number": "34", + "account_type": "Equity", + "Ajustes por inflaci\u00f3n": { + "account_number": "3405", + "account_type": "Equity", + "is_group": 1 + }, + "Saneamiento fiscal": { + "account_number": "3410", + "account_type": "Equity" + }, + "Ajustes por inflaci\u00f3n Decreto 3019 de 1989": { + "account_number": "3415", + "account_type": "Equity" + } + }, + "Dividendos o participaciones decretados en acciones, cuotas o partes de inter\u00e9s social": { + "account_number": "35", + "account_type": "Equity", + "Dividendos decretados en acciones": { + "account_number": "3505", + "account_type": "Equity" + }, + "Participaciones decretadas en cuotas o partes de inter\u00e9s social": { + "account_number": "3510", + "account_type": "Equity" + } + }, + "Resultados del ejercicio": { + "account_number": "36", + "account_type": "Equity", + "Utilidad del ejercicio": { + "account_number": "3605", + "account_type": "Equity" + }, + "P\u00e9rdida del ejercicio": { + "account_number": "3610", + "account_type": "Equity" + } + }, + "Resultados de ejercicios anteriores": { + "account_number": "37", + "account_type": "Equity", + "Utilidades acumuladas": { + "account_number": "3705", + "account_type": "Equity" + }, + "P\u00e9rdidas acumuladas": { + "account_number": "3710", + "account_type": "Equity" + } + }, + "Super\u00e1vit por valorizaciones": { + "account_number": "38", + "account_type": "Equity", + "De inversiones": { + "account_number": "3805", + "account_type": "Equity", + "is_group": 1 + }, + "De propiedades, planta y equipo": { + "account_number": "3810", + "account_type": "Equity", + "is_group": 1 + }, + "De otros activos": { + "account_number": "3895", + "account_type": "Equity", + "is_group": 1 + } + } + }, + "Ingresos": { + "account_number": "4", + "account_type": "Income Account", + "root_type": "Income", + "Operacionales": { + "account_number": "41", + "account_type": "Income Account", + "Agricultura, ganader\u00eda, caza y silvicultura": { + "account_number": "4105", + "account_type": "Income Account", + "is_group": 1 + }, + "Pesca": { + "account_number": "4110", + "account_type": "Income Account", + "is_group": 1 + }, + "Explotaci\u00f3n de minas y canteras": { + "account_number": "4115", + "account_type": "Income Account", + "is_group": 1 + }, + "Industrias manufactureras": { + "account_number": "4120", + "account_type": "Income Account", + "is_group": 1 + }, + "Suministro de electricidad, gas y agua": { + "account_number": "4125", + "account_type": "Income Account", + "is_group": 1 + }, + "Construcci\u00f3n": { + "account_number": "4130", + "account_type": "Income Account", + "is_group": 1 + }, + "Comercio al por mayor y al por menor": { + "account_number": "4135", + "account_type": "Income Account", + "is_group": 1 + }, + "Hoteles y restaurantes": { + "account_number": "4140", + "account_type": "Income Account", + "is_group": 1 + }, + "Transporte, almacenamiento y comunicaciones": { + "account_number": "4145", + "account_type": "Income Account", + "is_group": 1 + }, + "Actividad financiera": { + "account_number": "4150", + "account_type": "Income Account", + "is_group": 1 + }, + "Actividades inmobiliarias, empresariales y de alquiler": { + "account_number": "4155", + "account_type": "Income Account", + "is_group": 1 + }, + "Ense\u00f1anza": { + "account_number": "4160", + "account_type": "Income Account", + "is_group": 1 + }, + "Servicios sociales y de salud": { + "account_number": "4165", + "account_type": "Income Account", + "is_group": 1 + }, + "Otras actividades de servicios comunitarios, sociales y personales": { + "account_number": "4170", + "account_type": "Income Account", + "is_group": 1 + }, + "Devoluciones en ventas (DB)": { + "account_number": "4175", + "account_type": "Income Account", + "is_group": 1 + } + }, + "No operacionales": { + "account_number": "42", + "account_type": "Income Account", + "Otras ventas": { + "account_number": "4205", + "account_type": "Income Account", + "is_group": 1 + }, + "Financieros": { + "account_number": "4210", + "account_type": "Income Account", + "is_group": 1 + }, + "Dividendos y participaciones": { + "account_number": "4215", + "account_type": "Income Account", + "is_group": 1 + }, + "Ingresos m\u00e9todo de participaci\u00f3n": { + "account_number": "4218", + "account_type": "Income Account", + "is_group": 1 + }, + "Arrendamientos": { + "account_number": "4220", + "account_type": "Income Account", + "is_group": 1 + }, + "Comisiones": { + "account_number": "4225", + "account_type": "Income Account", + "is_group": 1 + }, + "Honorarios": { + "account_number": "4230", + "account_type": "Income Account", + "is_group": 1 + }, + "Servicios": { + "account_number": "4235", + "account_type": "Income Account", + "is_group": 1 + }, + "Utilidad en venta de inversiones": { + "account_number": "4240", + "account_type": "Income Account", + "is_group": 1 + }, + "Utilidad en venta de propiedades, planta y equipo": { + "account_number": "4245", + "account_type": "Income Account", + "is_group": 1 + }, + "Utilidad en venta de otros bienes": { + "account_number": "4248", + "account_type": "Income Account", + "is_group": 1 + }, + "Recuperaciones": { + "account_number": "4250", + "account_type": "Income Account", + "is_group": 1 + }, + "Indemnizaciones": { + "account_number": "4255", + "account_type": "Income Account", + "is_group": 1 + }, + "Participaciones en concesiones": { + "account_number": "4260", + "account_type": "Income Account", + "is_group": 1 + }, + "Ingresos de ejercicios anteriores": { + "account_number": "4265", + "account_type": "Income Account", + "is_group": 1 + }, + "Devoluciones en otras ventas (DB)": { + "account_number": "4275", + "account_type": "Income Account", + "is_group": 1 + }, + "Diversos": { + "account_number": "4295", + "account_type": "Income Account", + "is_group": 1 + } + }, + "Ajustes por inflaci\u00f3n": { + "account_number": "47", + "account_type": "Income Account", + "Correcci\u00f3n monetaria": { + "account_number": "4705", + "account_type": "Income Account", + "is_group": 1 + } + } + }, + "Gastos": { + "account_number": "5", + "account_type": "Expense Account", + "root_type": "Expense", + "Operacionales de administraci\u00f3n": { + "account_number": "51", + "account_type": "Expense Account", + "Gastos de personal": { + "account_number": "5105", + "account_type": "Expense Account", + "is_group": 1 + }, + "Honorarios": { + "account_number": "5110", + "account_type": "Expense Account", + "is_group": 1 + }, + "Impuestos": { + "account_number": "5115", + "account_type": "Expense Account", + "is_group": 1 + }, + "Arrendamientos": { + "account_number": "5120", + "account_type": "Expense Account", + "is_group": 1 + }, + "Contribuciones y afiliaciones": { + "account_number": "5125", + "account_type": "Expense Account", + "is_group": 1 + }, + "Seguros": { + "account_number": "5130", + "account_type": "Expense Account", + "is_group": 1 + }, + "Servicios": { + "account_number": "5135", + "account_type": "Expense Account", + "is_group": 1 + }, + "Gastos legales": { + "account_number": "5140", + "account_type": "Expense Account", + "is_group": 1 + }, + "Mantenimiento y reparaciones": { + "account_number": "5145", + "account_type": "Expense Account", + "is_group": 1 + }, + "Adecuaci\u00f3n e instalaci\u00f3n": { + "account_number": "5150", + "account_type": "Expense Account", + "is_group": 1 + }, + "Gastos de viaje": { + "account_number": "5155", + "account_type": "Expense Account", + "is_group": 1 + }, + "Depreciaciones": { + "account_number": "5160", + "account_type": "Expense Account", + "is_group": 1 + }, + "Amortizaciones": { + "account_number": "5165", + "account_type": "Expense Account", + "is_group": 1 + }, + "Diversos": { + "account_number": "5195", + "account_type": "Expense Account", + "is_group": 1 + }, + "Provisiones": { + "account_number": "5199", + "account_type": "Expense Account", + "is_group": 1 + } + }, + "Operacionales de ventas": { + "account_number": "52", + "account_type": "Expense Account", + "Gastos de personal": { + "account_number": "5205", + "account_type": "Expense Account", + "is_group": 1 + }, + "Honorarios": { + "account_number": "5210", + "account_type": "Expense Account", + "is_group": 1 + }, + "Impuestos": { + "account_number": "5215", + "account_type": "Expense Account", + "is_group": 1 + }, + "Arrendamientos": { + "account_number": "5220", + "account_type": "Expense Account", + "is_group": 1 + }, + "Contribuciones y afiliaciones": { + "account_number": "5225", + "account_type": "Expense Account", + "is_group": 1 + }, + "Seguros": { + "account_number": "5230", + "account_type": "Expense Account", + "is_group": 1 + }, + "Servicios": { + "account_number": "5235", + "account_type": "Expense Account", + "is_group": 1 + }, + "Gastos legales": { + "account_number": "5240", + "account_type": "Expense Account", + "is_group": 1 + }, + "Mantenimiento y reparaciones": { + "account_number": "5245", + "account_type": "Expense Account", + "is_group": 1 + }, + "Adecuaci\u00f3n e instalaci\u00f3n": { + "account_number": "5250", + "account_type": "Expense Account", + "is_group": 1 + }, + "Gastos de viaje": { + "account_number": "5255", + "account_type": "Expense Account", + "is_group": 1 + }, + "Depreciaciones": { + "account_number": "5260", + "account_type": "Expense Account", + "is_group": 1 + }, + "Amortizaciones": { + "account_number": "5265", + "account_type": "Expense Account", + "is_group": 1 + }, + "Financieros-reajuste del sistema": { + "account_number": "5270", + "account_type": "Expense Account", + "is_group": 1 + }, + "P\u00e9rdidas m\u00e9todo de participaci\u00f3n": { + "account_number": "5275", + "account_type": "Expense Account", + "is_group": 1 + }, + "Diversos": { + "account_number": "5295", + "account_type": "Expense Account", + "is_group": 1 + }, + "Provisiones": { + "account_number": "5299", + "account_type": "Expense Account", + "is_group": 1 + } + }, + "No operacionales": { + "account_number": "53", + "account_type": "Expense Account", + "Financieros": { + "account_number": "5305", + "account_type": "Expense Account", + "is_group": 1 + }, + "P\u00e9rdida en venta y retiro de bienes": { + "account_number": "5310", + "account_type": "Expense Account", + "is_group": 1 + }, + "P\u00e9rdidas m\u00e9todo de participaci\u00f3n": { + "account_number": "5313", + "account_type": "Expense Account", + "is_group": 1 + }, + "Gastos extraordinarios": { + "account_number": "5315", + "account_type": "Expense Account", + "is_group": 1 + }, + "Gastos diversos": { + "account_number": "5395", + "account_type": "Expense Account", + "is_group": 1 + } + }, + "Impuesto de renta y complementarios": { + "account_number": "54", + "account_type": "Expense Account", + "Impuesto de renta y complementarios": { + "account_number": "5405", + "account_type": "Expense Account", + "is_group": 1 + } + }, + "Ganancias y p\u00e9rdidas": { + "account_number": "59", + "account_type": "Expense Account", + "Ganancias y p\u00e9rdidas": { + "account_number": "5905", + "account_type": "Expense Account", + "is_group": 1 + } + } + }, + "Costos de ventas": { + "account_number": "6", + "account_type": "Cost of Goods Sold", + "root_type": "Expense", + "Costo de ventas y de prestaci\u00f3n de servicios": { + "account_number": "61", + "account_type": "Cost of Goods Sold", + "Agricultura, ganader\u00eda, caza y silvicultura": { + "account_number": "6105", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Pesca": { + "account_number": "6110", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Explotaci\u00f3n de minas y canteras": { + "account_number": "6115", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Industrias manufactureras": { + "account_number": "6120", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Suministro de electricidad, gas y agua": { + "account_number": "6125", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Construcci\u00f3n": { + "account_number": "6130", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Comercio al por mayor y al por menor": { + "account_number": "6135", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Hoteles y restaurantes": { + "account_number": "6140", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Transporte, almacenamiento y comunicaciones": { + "account_number": "6145", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Actividad financiera": { + "account_number": "6150", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Actividades inmobiliarias, empresariales y de alquiler": { + "account_number": "6155", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Ense\u00f1anza": { + "account_number": "6160", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Servicios sociales y de salud": { + "account_number": "6165", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Otras actividades de servicios comunitarios, sociales y personales": { + "account_number": "6170", + "account_type": "Cost of Goods Sold", + "is_group": 1 + } + }, + "Compras": { + "account_number": "62", + "account_type": "Cost of Goods Sold", + "De mercanc\u00edas": { + "account_number": "6205", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "De materias primas": { + "account_number": "6210", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "De materiales indirectos": { + "account_number": "6215", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Compra de energ\u00eda": { + "account_number": "6220", + "account_type": "Cost of Goods Sold", + "is_group": 1 + }, + "Devoluciones en compras (CR)": { + "account_number": "6225", + "account_type": "Cost of Goods Sold", + "is_group": 1 + } + } + }, + "Costos de producci\u00f3n o de operaci\u00f3n": { + "account_number": "7", + "account_type": "Cost of Goods Sold", + "root_type": "Expense", + "Materia prima": { + "account_number": "71", + "account_type": "Cost of Goods Sold" + }, + "Mano de obra directa": { + "account_number": "72", + "account_type": "Cost of Goods Sold" + }, + "Costos indirectos": { + "account_number": "73", + "account_type": "Cost of Goods Sold" + }, + "Contratos de servicios": { + "account_number": "74", + "account_type": "Cost of Goods Sold" + } + }, + "Cuentas de orden deudoras": { + "account_number": "8", + "root_type": "Asset", + "Derechos contingentes": { + "account_number": "81", + "Bienes y valores entregados en custodia": { + "account_number": "8105", + "is_group": 1 + }, + "Bienes y valores entregados en garant\u00eda": { + "account_number": "8110", + "is_group": 1 + }, + "Bienes y valores en poder de terceros": { + "account_number": "8115", + "is_group": 1 + }, + "Litigios y/o demandas": { + "account_number": "8120", + "is_group": 1 + }, + "Promesas de compraventa": { + "account_number": "8125" + }, + "Diversas": { + "account_number": "8195", + "is_group": 1 + } + }, + "Deudoras fiscales": { + "account_number": "82" + }, + "Deudoras de control": { + "account_number": "83", + "Bienes recibidos en arrendamiento financiero": { + "account_number": "8305", + "is_group": 1 + }, + "T\u00edtulos de inversi\u00f3n no colocados": { + "account_number": "8310", + "is_group": 1 + }, + "Propiedades, planta y equipo totalmente depreciados, agotados y/o amortizados": { + "account_number": "8315", + "is_group": 1 + }, + "Cr\u00e9ditos a favor no utilizados": { + "account_number": "8320", + "is_group": 1 + }, + "Activos castigados": { + "account_number": "8325", + "is_group": 1 + }, + "T\u00edtulos de inversi\u00f3n amortizados": { + "account_number": "8330", + "is_group": 1 + }, + "Capitalizaci\u00f3n por revalorizaci\u00f3n de patrimonio": { + "account_number": "8335" + }, + "Otras cuentas deudoras de control": { + "account_number": "8395", + "is_group": 1 + }, + "Ajustes por inflaci\u00f3n activos": { + "account_number": "8399", + "is_group": 1 + } + }, + "Derechos contingentes por contra (CR)": { + "account_number": "84" + }, + "Deudoras fiscales por contra (CR)": { + "account_number": "85" + }, + "Deudoras de control por contra (CR)": { + "account_number": "86" + } + }, + "Cuentas de orden acreedoras": { + "account_number": "9", + "root_type": "Liability", + "Responsabilidades contingentes": { + "account_number": "91", + "Bienes y valores recibidos en custodia": { + "account_number": "9105", + "is_group": 1 + }, + "Bienes y valores recibidos en garant\u00eda": { + "account_number": "9110", + "is_group": 1 + }, + "Bienes y valores recibidos de terceros": { + "account_number": "9115", + "is_group": 1 + }, + "Litigios y/o demandas": { + "account_number": "9120", + "is_group": 1 + }, + "Promesas de compraventa": { + "account_number": "9125" + }, + "Contratos de administraci\u00f3n delegada": { + "account_number": "9130" + }, + "Cuentas en participaci\u00f3n": { + "account_number": "9135" + }, + "Otras responsabilidades contingentes": { + "account_number": "9195" + } + }, + "Acreedoras fiscales": { + "account_number": "92" + }, + "Acreedoras de control": { + "account_number": "93", + "Contratos de arrendamiento financiero": { + "account_number": "9305", + "is_group": 1 + }, + "Otras cuentas de orden acreedoras de control": { + "account_number": "9395", + "is_group": 1 + }, + "Ajustes por inflaci\u00f3n patrimonio": { + "account_number": "9399", + "is_group": 1 + } + }, + "Responsabilidades contingentes por contra (DB)": { + "account_number": "94" + }, + "Acreedoras fiscales por contra (DB)": { + "account_number": "95" + }, + "Acreedoras de control por contra (DB)": { + "account_number": "96" + } + } + } +} \ No newline at end of file From 93c0c26843ea640a4bf885d1f6fe552be7adf696 Mon Sep 17 00:00:00 2001 From: Lakshit Jain <108322669+ljain112@users.noreply.github.com> Date: Sun, 18 Jun 2023 22:25:28 +0530 Subject: [PATCH 13/18] fix: modify filters for account in journal entry (#35626) --- erpnext/accounts/doctype/journal_entry/journal_entry.js | 2 +- .../doctype/journal_entry_template/journal_entry_template.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/accounts/doctype/journal_entry/journal_entry.js b/erpnext/accounts/doctype/journal_entry/journal_entry.js index b31cc3212e..6d9e3202f1 100644 --- a/erpnext/accounts/doctype/journal_entry/journal_entry.js +++ b/erpnext/accounts/doctype/journal_entry/journal_entry.js @@ -575,7 +575,7 @@ $.extend(erpnext.journal_entry, { }; if(!frm.doc.multi_currency) { $.extend(filters, { - account_currency: frappe.get_doc(":Company", frm.doc.company).default_currency + account_currency: ['in', [frappe.get_doc(":Company", frm.doc.company).default_currency, null]] }); } return { filters: filters }; diff --git a/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.js b/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.js index 5ebdf61db2..7d80754e7d 100644 --- a/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.js +++ b/erpnext/accounts/doctype/journal_entry_template/journal_entry_template.js @@ -28,7 +28,7 @@ frappe.ui.form.on("Journal Entry Template", { if(!frm.doc.multi_currency) { $.extend(filters, { - account_currency: frappe.get_doc(":Company", frm.doc.company).default_currency + account_currency: ['in', [frappe.get_doc(":Company", frm.doc.company).default_currency, null]] }); } From 507c966aa7c516924626b7614d216feb6d947e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=BCrker=20Tunal=C4=B1?= Date: Sun, 18 Jun 2023 19:59:42 +0300 Subject: [PATCH 14/18] chore: Make material request title translatable (#35764) chore: Make material request title translatable --- erpnext/stock/doctype/material_request/material_request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/material_request/material_request.py b/erpnext/stock/doctype/material_request/material_request.py index 95c85da552..ee247fd093 100644 --- a/erpnext/stock/doctype/material_request/material_request.py +++ b/erpnext/stock/doctype/material_request/material_request.py @@ -115,7 +115,7 @@ class MaterialRequest(BuyingController): """Set title as comma separated list of items""" if not self.title: items = ", ".join([d.item_name for d in self.items][:3]) - self.title = _("{0} Request for {1}").format(self.material_request_type, items)[:100] + self.title = _("{0} Request for {1}").format(_(self.material_request_type), items)[:100] def on_submit(self): self.update_requested_qty() From d12c9b434e17651c2e4e93c48ef2bffa6ca5aba0 Mon Sep 17 00:00:00 2001 From: HENRY Florian Date: Sun, 18 Jun 2023 19:00:15 +0200 Subject: [PATCH 15/18] chore: fr translation lead vs prospect (#35697) chore: fr translation lead vs prospect --- erpnext/translations/fr.csv | 63 ++++++++++++++++++------------------- 1 file changed, 31 insertions(+), 32 deletions(-) diff --git a/erpnext/translations/fr.csv b/erpnext/translations/fr.csv index 35037fb5a5..bede718264 100644 --- a/erpnext/translations/fr.csv +++ b/erpnext/translations/fr.csv @@ -115,7 +115,7 @@ Add Customers,Ajouter des clients, Add Employees,Ajouter des employés, Add Item,Ajouter un Article, Add Items,Ajouter des articles, -Add Leads,Créer des Prospects, +Add Leads,Créer des Leads, Add Multiple Tasks,Ajouter plusieurs tâches, Add Row,Ajouter une Ligne, Add Sales Partners,Ajouter des partenaires commerciaux, @@ -658,8 +658,8 @@ Create Invoice,Créer une facture, Create Invoices,Créer des factures, Create Job Card,Créer une carte de travail, Create Journal Entry,Créer une entrée de journal, -Create Lead,Créer un Prospect, -Create Leads,Créer des Prospects, +Create Lead,Créer un Lead, +Create Leads,Créer des Lead, Create Maintenance Visit,Créer une visite de maintenance, Create Material Request,Créer une demande de matériel, Create Multiple,Créer plusieurs, @@ -1426,13 +1426,12 @@ Last Purchase Price,Dernier prix d'achat, Last Purchase Rate,Dernier Prix d'Achat, Latest,Dernier, Latest price updated in all BOMs,Prix les plus récents mis à jour dans toutes les nomenclatures, -Lead,Prospect, -Lead Count,Nombre de Prospects, +Lead Count,Nombre de Lead, Lead Owner,Responsable du Prospect, -Lead Owner cannot be same as the Lead,Le Responsable du Prospect ne peut pas être identique au Prospect, +Lead Owner cannot be same as the Lead,Le Responsable du Prospect ne peut pas être identique au Lead, Lead Time Days,Jours de Délai, Lead to Quotation,Du Prospect au Devis, -"Leads help you get business, add all your contacts and more as your leads","Les prospects vous aident à obtenir des contrats, ajoutez tous vos contacts et plus dans votre liste de prospects", +"Leads help you get business, add all your contacts and more as your leads","Les lead vous aident à obtenir des contrats, ajoutez tous vos contacts et plus dans votre liste de lead", Learn,Apprendre, Leave Approval Notification,Notification d'approbation de congés, Leave Blocked,Laisser Verrouillé, @@ -1596,7 +1595,7 @@ Middle Name,Deuxième Nom, Middle Name (Optional),Deuxième Prénom (Optionnel), Min Amt can not be greater than Max Amt,Min Amt ne peut pas être supérieur à Max Amt, Min Qty can not be greater than Max Qty,Qté Min ne peut pas être supérieure à Qté Max, -Minimum Lead Age (Days),Âge Minimum du Prospect (Jours), +Minimum Lead Age (Days),Âge Minimum du lead (Jours), Miscellaneous Expenses,Charges Diverses, Missing Currency Exchange Rates for {0},Taux de Change Manquant pour {0}, Missing email template for dispatch. Please set one in Delivery Settings.,Modèle de courrier électronique manquant pour l'envoi. Veuillez en définir un dans les paramètres de livraison., @@ -1676,7 +1675,7 @@ New {0} pricing rules are created,De nouvelles règles de tarification {0} sont Newsletters,Newsletters, Newspaper Publishers,Éditeurs de journaux, Next,Suivant, -Next Contact By cannot be same as the Lead Email Address,Prochain Contact Par ne peut être identique à l’Adresse Email du Prospect, +Next Contact By cannot be same as the Lead Email Address,Prochain Contact Par ne peut être identique à l’Adresse Email du Lead, Next Contact Date cannot be in the past,La Date de Prochain Contact ne peut pas être dans le passé, Next Steps,Prochaines étapes, No Action,Pas d'action, @@ -1808,9 +1807,9 @@ Operation Time must be greater than 0 for Operation {0},Temps de l'Opération do Operations,Opérations, Operations cannot be left blank,Les opérations ne peuvent pas être laissées vides, Opp Count,Compte d'Opportunités, -Opp/Lead %,Opp / Prospect %, +Opp/Lead %,Opp / Lead %, Opportunities,Opportunités, -Opportunities by lead source,Opportunités par source de plomb, +Opportunities by lead source,Opportunités par source de lead, Opportunity,Opportunité, Opportunity Amount,Montant de l'opportunité, Optional Holiday List not set for leave period {0},Une liste de vacances facultative n'est pas définie pour la période de congé {0}, @@ -2007,7 +2006,7 @@ Please mention Basic and HRA component in Company,Veuillez mentionner les compos Please mention Round Off Account in Company,Veuillez indiquer le Compte d’Arrondi de la Société, Please mention Round Off Cost Center in Company,Veuillez indiquer le Centre de Coûts d’Arrondi de la Société, Please mention no of visits required,Veuillez indiquer le nb de visites requises, -Please mention the Lead Name in Lead {0},Veuillez mentionner le nom du Prospect dans le Prospect {0}, +Please mention the Lead Name in Lead {0},Veuillez mentionner le nom du Lead dans le Lead {0}, Please pull items from Delivery Note,Veuillez récupérer les articles des Bons de Livraison, Please register the SIREN number in the company information file,Veuillez enregistrer le numéro SIREN dans la fiche d'information de la société, Please remove this Invoice {0} from C-Form {1},Veuillez retirez cette Facture {0} du C-Form {1}, @@ -2277,7 +2276,7 @@ Queued for replacing the BOM. It may take a few minutes.,En file d'attente pour Queued for updating latest price in all Bill of Materials. It may take a few minutes.,Mise à jour des prix les plus récents dans toutes les nomenclatures en file d'attente. Cela peut prendre quelques minutes., Quick Journal Entry,Écriture Rapide dans le Journal, Quot Count,Compte de Devis, -Quot/Lead %,Devis / Prospects %, +Quot/Lead %,Devis / Lead %, Quotation,Devis, Quotation {0} is cancelled,Devis {0} est annulée, Quotation {0} not of type {1},Le devis {0} n'est pas du type {1}, @@ -2285,7 +2284,7 @@ Quotations,Devis, "Quotations are proposals, bids you have sent to your customers","Les devis sont des propositions, offres que vous avez envoyées à vos clients", Quotations received from Suppliers.,Devis reçus des Fournisseurs., Quotations: ,Devis :, -Quotes to Leads or Customers.,Devis de Prospects ou Clients., +Quotes to Leads or Customers.,Devis de Lead ou Clients., RFQs are not allowed for {0} due to a scorecard standing of {1},Les Appels d'Offres ne sont pas autorisés pour {0} en raison d'une note de {1} sur la fiche d'évaluation, Range,Plage, Rate,Prix, @@ -3122,7 +3121,7 @@ Total(Amt),Total (Mnt), Total(Qty),Total (Qté), Traceability,Traçabilité, Traceback,Retraçage, -Track Leads by Lead Source.,Suivre les prospects par sources, +Track Leads by Lead Source.,Suivre les leads par sources, Training,Formation, Training Event,Événement de formation, Training Events,Événements de formation, @@ -3243,8 +3242,8 @@ View Chart of Accounts,Voir le plan comptable, View Fees Records,Voir les honoraires, View Form,Voir le formulaire, View Lab Tests,Afficher les tests de laboratoire, -View Leads,Voir Prospects, -View Ledger,Voir le Livre, +View Leads,Voir Lead, +View Ledger,Voir le Journal, View Now,Voir maintenant, View a list of all the help videos,Afficher la liste de toutes les vidéos d'aide, View in Cart,Voir Panier, @@ -3677,7 +3676,7 @@ Couldn't Set Service Level Agreement {0}.,Impossible de définir le contrat de s Country,Pays, Country Code in File does not match with country code set up in the system,Le code de pays dans le fichier ne correspond pas au code de pays configuré dans le système, Create New Contact,Créer un nouveau contact, -Create New Lead,Créer une nouvelle piste, +Create New Lead,Créer une nouvelle lead, Create Pick List,Créer une liste de choix, Create Quality Inspection for Item {0},Créer un contrôle qualité pour l'article {0}, Creating Accounts...,Création de comptes ..., @@ -3784,7 +3783,7 @@ Group Warehouses cannot be used in transactions. Please change the value of {0}, Help,Aidez-moi, Help Article,Article d’Aide, "Helps you keep tracks of Contracts based on Supplier, Customer and Employee","Vous aide à garder une trace des contrats en fonction du fournisseur, client et employé", -Helps you manage appointments with your leads,Vous aide à gérer les rendez-vous avec vos prospects, +Helps you manage appointments with your leads,Vous aide à gérer les rendez-vous avec vos leads, Home,Accueil, IBAN is not valid,IBAN n'est pas valide, Import Data from CSV / Excel files.,Importer des données à partir de fichiers CSV / Excel, @@ -3880,7 +3879,7 @@ Only expired allocation can be cancelled,Seule l'allocation expirée peut être Only users with the {0} role can create backdated leave applications,Seuls les utilisateurs avec le rôle {0} peuvent créer des demandes de congé antidatées, Open,Ouvert, Open Contact,Contact ouvert, -Open Lead,Ouvrir le Prospect, +Open Lead,Ouvrir le Lead, Opening and Closing,Ouverture et fermeture, Operating Cost as per Work Order / BOM,Coût d'exploitation selon l'ordre de fabrication / nomenclature, Order Amount,Montant de la commande, @@ -3926,7 +3925,7 @@ Please select another payment method. Stripe does not support transactions in cu Please select the customer.,S'il vous plaît sélectionner le client., Please set a Supplier against the Items to be considered in the Purchase Order.,Veuillez définir un fournisseur par rapport aux articles à prendre en compte dans la Commande d'Achat., Please set account heads in GST Settings for Compnay {0},Définissez les en-têtes de compte dans les paramètres de la TPS pour le service {0}., -Please set an email id for the Lead {0},Veuillez définir un identifiant de messagerie pour le prospect {0}., +Please set an email id for the Lead {0},Veuillez définir un identifiant de messagerie pour le lead {0}., Please set default UOM in Stock Settings,Veuillez définir l'UdM par défaut dans les paramètres de stock, Please set filter based on Item or Warehouse due to a large amount of entries.,Veuillez définir le filtre en fonction de l'article ou de l'entrepôt en raison d'une grande quantité d'entrées., Please set up the Campaign Schedule in the Campaign {0},Configurez le calendrier de la campagne dans la campagne {0}., @@ -5600,7 +5599,7 @@ Call Log,Journal d'appel, Received By,Reçu par, Caller Information,Informations sur l'appelant, Contact Name,Nom du Contact, -Lead Name,Nom du Prospect, +Lead Name,Nom du Lead, Ringing,Sonnerie, Missed,Manqué, Call Duration in seconds,Durée d'appel en secondes, @@ -5668,7 +5667,7 @@ Fulfilment Terms and Conditions,Termes et conditions d'exécution, Contract Template Fulfilment Terms,Conditions d'exécution du modèle de contrat, Email Campaign,Campagne Email, Email Campaign For ,Campagne d'email pour, -Lead is an Organization,Le prospect est une organisation, +Lead is an Organization,Le Lead est une organisation, CRM-LEAD-.YYYY.-,CRM-LEAD-.YYYY.-, Person Name,Nom de la Personne, Lost Quotation,Devis Perdu, @@ -5683,7 +5682,7 @@ Next Contact Date,Date du Prochain Contact, Ends On,Se termine le, Address & Contact,Adresse & Contact, Mobile No.,N° Mobile., -Lead Type,Type de Prospect, +Lead Type,Type de Lead, Channel Partner,Partenaire de Canal, Consultant,Consultant, Market Segment,Part de Marché, @@ -5706,7 +5705,7 @@ Opportunity Lost Reason,Raison perdue, Potential Sales Deal,Ventes Potentielles, CRM-OPP-.YYYY.-,CRM-OPP-YYYY.-, Opportunity From,Opportunité De, -Customer / Lead Name,Nom du Client / Prospect, +Customer / Lead Name,Nom du Client / Lead, Opportunity Type,Type d'Opportunité, Converted By,Converti par, Sales Stage,Stade de vente, @@ -5716,7 +5715,7 @@ To Discuss,À Discuter, With Items,Avec Articles, Probability (%),Probabilité (%), Contact Info,Information du Contact, -Customer / Lead Address,Adresse du Client / Prospect, +Customer / Lead Address,Adresse du Lead / Prospect, Contact Mobile No,N° de Portable du Contact, Enter name of campaign if source of enquiry is campaign,Entrez le nom de la campagne si la source de l'enquête est une campagne, Opportunity Date,Date d'Opportunité, @@ -7643,7 +7642,7 @@ Campaign Schedules,Horaires de campagne, Buyer of Goods and Services.,Acheteur des Biens et Services., CUST-.YYYY.-,CUST-.YYYY.-, Default Company Bank Account,Compte bancaire d'entreprise par défaut, -From Lead,Du Prospect, +From Lead,Du Lead, Account Manager,Gestionnaire de compte, Allow Sales Invoice Creation Without Sales Order,Autoriser la création de factures de vente sans commande client, Allow Sales Invoice Creation Without Delivery Note,Autoriser la création de factures de vente sans bon de livraison, @@ -7670,7 +7669,7 @@ Installation Date,Date d'Installation, Installation Time,Temps d'Installation, Installation Note Item,Article Remarque d'Installation, Installed Qty,Qté Installée, -Lead Source,Source du Prospect, +Lead Source,Source du Lead, Period Start Date,Date de début de la période, Period End Date,Date de fin de la période, Cashier,Caissier, @@ -8515,8 +8514,8 @@ Item-wise Sales Register,Registre des Ventes par Article, Items To Be Requested,Articles À Demander, Reserved,Réservé, Itemwise Recommended Reorder Level,Renouvellement Recommandé par Article, -Lead Details,Détails du Prospect, -Lead Owner Efficiency,Efficacité des Responsables des Prospects, +Lead Details,Détails du Lead, +Lead Owner Efficiency,Efficacité des Responsables des Leads, Loan Repayment and Closure,Remboursement et clôture de prêts, Loan Security Status,État de la sécurité du prêt, Lost Opportunity,Occasion perdue, @@ -9205,7 +9204,7 @@ Time Required (In Mins),Temps requis (en minutes), From Posting Date,À partir de la date de publication, To Posting Date,À la date de publication, No records found,Aucun enregistrement trouvé, -Customer/Lead Name,Nom du client / prospect, +Customer/Lead Name,Nom du client / lead, Unmarked Days,Jours non marqués, Jan,Jan, Feb,fév, @@ -9469,7 +9468,7 @@ Row {0}: Loan Security {1} added multiple times,Ligne {0}: Garantie de prêt {1} Row #{0}: Child Item should not be a Product Bundle. Please remove Item {1} and Save,Ligne n ° {0}: l'élément enfant ne doit pas être un ensemble de produits. Veuillez supprimer l'élément {1} et enregistrer, Credit limit reached for customer {0},Limite de crédit atteinte pour le client {0}, Could not auto create Customer due to the following missing mandatory field(s):,Impossible de créer automatiquement le client en raison du ou des champs obligatoires manquants suivants:, -Please create Customer from Lead {0}.,Veuillez créer un client à partir du prospect {0}., +Please create Customer from Lead {0}.,Veuillez créer un client à partir du lead {0}., Mandatory Missing,Obligatoire manquant, Please set Payroll based on in Payroll settings,Veuillez définir la paie en fonction des paramètres de paie, Additional Salary: {0} already exist for Salary Component: {1} for period {2} and {3},Salaire supplémentaire: {0} existe déjà pour le composant de salaire: {1} pour la période {2} et {3}, From 2a24423ad2cb6733359fc2b45f39e676e6f9ec24 Mon Sep 17 00:00:00 2001 From: Abhinav Raut Date: Sun, 18 Jun 2023 23:11:52 +0530 Subject: [PATCH 16/18] fix: loan interest accrual date (#35695) fix: loan interest accrual date --------- Co-authored-by: Abhinav Raut Co-authored-by: Deepesh Garg --- .../doctype/loan_interest_accrual/loan_interest_accrual.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.py b/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.py index ced63942ba..ab4ea4cb6b 100644 --- a/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.py +++ b/erpnext/loan_management/doctype/loan_interest_accrual/loan_interest_accrual.py @@ -293,8 +293,8 @@ def get_last_accrual_date(loan, posting_date): # interest for last interest accrual date is already booked, so add 1 day last_disbursement_date = get_last_disbursement_date(loan, posting_date) - if last_disbursement_date and getdate(last_disbursement_date) > getdate( - last_interest_accrual_date + if last_disbursement_date and getdate(last_disbursement_date) > add_days( + getdate(last_interest_accrual_date), 1 ): last_interest_accrual_date = last_disbursement_date From 78fbd6452b69097804446de61d799ae0c7a5a0ce Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 19 Jun 2023 09:14:43 +0530 Subject: [PATCH 17/18] fix: unsupported operand type(s) for //: 'float' and 'NoneType' for POS Barcode search (#35710) * fix: unsupported operand type(s) for //: 'float' and 'NoneType' for POS Barcode search (#35710) (cherry picked from commit 58a6bbcf6d95f59821484ff29b585c10529a0fe4) # Conflicts: # erpnext/selling/page/point_of_sale/point_of_sale.py * chore: resolve conflicts --------- Co-authored-by: Vishal Dhayagude Co-authored-by: Deepesh Garg --- erpnext/selling/page/point_of_sale/point_of_sale.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/page/point_of_sale/point_of_sale.py b/erpnext/selling/page/point_of_sale/point_of_sale.py index 62b3105872..fd2338174c 100644 --- a/erpnext/selling/page/point_of_sale/point_of_sale.py +++ b/erpnext/selling/page/point_of_sale/point_of_sale.py @@ -65,7 +65,7 @@ def search_by_term(search_term, warehouse, price_list): "item_code": item_code, "batch_no": batch_no, }, - fields=["uom", "stock_uom", "currency", "price_list_rate", "batch_no"], + fields=["uom", "currency", "price_list_rate", "batch_no"], ) def __sort(p): From 9d27a25e5f2335386402f96f83a10729695b20c8 Mon Sep 17 00:00:00 2001 From: Deepesh Garg Date: Mon, 19 Jun 2023 11:04:50 +0530 Subject: [PATCH 18/18] fix: Allocated amount validation for other party types (#35741) * fix: Allocated amount validation for other party types * chore: Validation for return allocations * chore: minor typo --------- Co-authored-by: anandbaburajan --- .../doctype/payment_entry/payment_entry.py | 27 ++++++++++++------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/erpnext/accounts/doctype/payment_entry/payment_entry.py b/erpnext/accounts/doctype/payment_entry/payment_entry.py index b6d3e5a30e..b9be5ec724 100644 --- a/erpnext/accounts/doctype/payment_entry/payment_entry.py +++ b/erpnext/accounts/doctype/payment_entry/payment_entry.py @@ -151,6 +151,19 @@ class PaymentEntry(AccountsController): if self.payment_type == "Internal Transfer": return + if self.party_type in ("Customer", "Supplier"): + self.validate_allocated_amount_with_latest_data() + else: + fail_message = _("Row #{0}: Allocated Amount cannot be greater than outstanding amount.") + for d in self.get("references"): + if (flt(d.allocated_amount)) > 0 and flt(d.allocated_amount) > flt(d.outstanding_amount): + frappe.throw(fail_message.format(d.idx)) + + # Check for negative outstanding invoices as well + if flt(d.allocated_amount) < 0 and flt(d.allocated_amount) < flt(d.outstanding_amount): + frappe.throw(fail_message.format(d.idx)) + + def validate_allocated_amount_with_latest_data(self): latest_references = get_outstanding_reference_documents( { "posting_date": self.posting_date, @@ -168,7 +181,7 @@ class PaymentEntry(AccountsController): d = frappe._dict(d) latest_lookup.update({(d.voucher_type, d.voucher_no): d}) - for d in self.get("references").copy(): + for d in self.get("references"): latest = latest_lookup.get((d.reference_doctype, d.reference_name)) # The reference has already been fully paid @@ -187,18 +200,14 @@ class PaymentEntry(AccountsController): ).format(d.reference_doctype, d.reference_name) ) - d.outstanding_amount = latest.outstanding_amount - fail_message = _("Row #{0}: Allocated Amount cannot be greater than outstanding amount.") - if (flt(d.allocated_amount)) > 0: - if flt(d.allocated_amount) > flt(d.outstanding_amount): - frappe.throw(fail_message.format(d.idx)) + if (flt(d.allocated_amount)) > 0 and flt(d.allocated_amount) > flt(latest.outstanding_amount): + frappe.throw(fail_message.format(d.idx)) # Check for negative outstanding invoices as well - if flt(d.allocated_amount) < 0: - if flt(d.allocated_amount) < flt(d.outstanding_amount): - frappe.throw(fail_message.format(d.idx)) + if flt(d.allocated_amount) < 0 and flt(d.allocated_amount) < flt(latest.outstanding_amount): + frappe.throw(fail_message.format(d.idx)) def delink_advance_entry_references(self): for reference in self.references: