mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
Merge pull request #241 from 18alantom/fix-coa-issues
fix: bank account parent not being set on setup
This commit is contained in:
commit
d99563977d
@ -1,49 +1,53 @@
|
|||||||
import frappe from 'frappejs';
|
import frappe from 'frappejs';
|
||||||
import countries from '../fixtures/countryInfo.json';
|
import countries from '../fixtures/countryInfo.json';
|
||||||
import standardCOA from '../fixtures/verified/standardCOA.json';
|
import standardCOA from '../fixtures/verified/standardCOA.json';
|
||||||
const accountFields = [
|
const accountFields = ['accountType', 'accountNumber', 'rootType', 'isGroup'];
|
||||||
'accountType',
|
|
||||||
'rootType',
|
|
||||||
'isGroup',
|
|
||||||
'account_type',
|
|
||||||
'root_type',
|
|
||||||
'is_group'
|
|
||||||
];
|
|
||||||
|
|
||||||
async function importAccounts(children, parent, rootType, rootAccount) {
|
function getAccountName(accountName, accountNumber) {
|
||||||
for (let accountName in children) {
|
if (accountNumber) {
|
||||||
const child = children[accountName];
|
return `${accountName} - ${accountNumber}`;
|
||||||
|
}
|
||||||
|
return accountName;
|
||||||
|
}
|
||||||
|
|
||||||
if (rootAccount) {
|
async function importAccounts(children, parentAccount, rootType, rootAccount) {
|
||||||
rootType = child.rootType || child.root_type;
|
for (let rootName in children) {
|
||||||
|
if (accountFields.includes(rootName)) {
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!accountFields.includes(accountName)) {
|
const child = children[rootName];
|
||||||
let isGroup = identifyIsGroup(child);
|
|
||||||
|
if (rootAccount) {
|
||||||
|
rootType = child.rootType;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { accountType, accountNumber } = child;
|
||||||
|
const accountName = getAccountName(rootName, accountNumber);
|
||||||
|
const isGroup = identifyIsGroup(child);
|
||||||
|
console.log('inserting account: ', accountName);
|
||||||
const doc = frappe.newDoc({
|
const doc = frappe.newDoc({
|
||||||
doctype: 'Account',
|
doctype: 'Account',
|
||||||
name: accountName,
|
name: accountName,
|
||||||
parentAccount: parent,
|
parentAccount,
|
||||||
isGroup,
|
isGroup,
|
||||||
rootType,
|
rootType,
|
||||||
balance: 0,
|
balance: 0,
|
||||||
accountType: child.accountType || child.account_type
|
accountType,
|
||||||
});
|
});
|
||||||
|
|
||||||
await doc.insert();
|
await doc.insert();
|
||||||
|
|
||||||
await importAccounts(child, accountName, rootType);
|
await importAccounts(child, accountName, rootType);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function identifyIsGroup(child) {
|
function identifyIsGroup(child) {
|
||||||
if (child.isGroup || child.is_group) {
|
if (child.isGroup) {
|
||||||
return child.isGroup || child.is_group;
|
return child.isGroup;
|
||||||
}
|
}
|
||||||
|
|
||||||
const keys = Object.keys(child);
|
const keys = Object.keys(child);
|
||||||
const children = keys.filter(key => !accountFields.includes(key));
|
const children = keys.filter((key) => !accountFields.includes(key));
|
||||||
|
|
||||||
if (children.length) {
|
if (children.length) {
|
||||||
return 1;
|
return 1;
|
||||||
@ -52,12 +56,14 @@ function identifyIsGroup(child) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function getCountryCOA() {
|
export async function getCountryCOA() {
|
||||||
const doc = await frappe.getDoc('AccountingSettings');
|
const doc = await frappe.getDoc('AccountingSettings');
|
||||||
const conCode = countries[doc.country].code;
|
const conCode = countries[doc.country].code;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const countryCoa = await import('../fixtures/verified/' + conCode + '.json');
|
const countryCoa = await import(
|
||||||
|
'../fixtures/verified/' + conCode + '.json'
|
||||||
|
);
|
||||||
return countryCoa.tree;
|
return countryCoa.tree;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return standardCOA;
|
return standardCOA;
|
||||||
@ -67,4 +73,4 @@ async function getCountryCOA() {
|
|||||||
export default async function importCharts() {
|
export default async function importCharts() {
|
||||||
const chart = await getCountryCOA();
|
const chart = await getCountryCOA();
|
||||||
await importAccounts(chart, '', '', true);
|
await importAccounts(chart, '', '', true);
|
||||||
};
|
}
|
||||||
|
@ -1,39 +1,39 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"country_code": "ae",
|
"countryCode": "ae",
|
||||||
"name": "U.A.E - Chart of Accounts",
|
"name": "U.A.E - Chart of Accounts",
|
||||||
"tree": {
|
"tree": {
|
||||||
"Assets": {
|
"Assets": {
|
||||||
"Current Assets": {
|
"Current Assets": {
|
||||||
"Accounts Receivable": {
|
"Accounts Receivable": {
|
||||||
"Corporate Credit Cards": {
|
"Corporate Credit Cards": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Other Receivable": {
|
"Other Receivable": {
|
||||||
"Accrued Rebates Due from Suppliers": {
|
"Accrued Rebates Due from Suppliers": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Accured Income from Suppliers": {
|
"Accured Income from Suppliers": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Other Debtors": {
|
"Other Debtors": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Post Dated Cheques Received": {
|
"Post Dated Cheques Received": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Staff Receivable": {
|
"Staff Receivable": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Trade Receivable": {
|
"Trade Receivable": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Trade in Opening Fees": {
|
"Trade in Opening Fees": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Cash in Hand & Banks": {
|
"Cash in Hand & Banks": {
|
||||||
"Banks": {
|
"Banks": {
|
||||||
@ -41,42 +41,42 @@
|
|||||||
"Banks Blocked Deposits": {},
|
"Banks Blocked Deposits": {},
|
||||||
"Banks Call Deposit Accounts": {},
|
"Banks Call Deposit Accounts": {},
|
||||||
"Banks Current Accounts": {
|
"Banks Current Accounts": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Cash in Hand": {
|
"Cash in Hand": {
|
||||||
"Cash in Safe": {
|
"Cash in Safe": {
|
||||||
"Main Safe": {
|
"Main Safe": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Main Safe - Foreign Currency": {
|
"Main Safe - Foreign Currency": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Petty Cash": {
|
"Petty Cash": {
|
||||||
"Petty Cash - Admininistration": {
|
"Petty Cash - Admininistration": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Petty Cash - Others": {
|
"Petty Cash - Others": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Cash in Transit": {
|
"Cash in Transit": {
|
||||||
"Credit Cards": {
|
"Credit Cards": {
|
||||||
"Gateway Credit Cards": {
|
"Gateway Credit Cards": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Manual Visa & Master Cards": {
|
"Manual Visa & Master Cards": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"PayPal Account": {
|
"PayPal Account": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Visa & Master Credit Cards": {
|
"Visa & Master Credit Cards": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -84,12 +84,12 @@
|
|||||||
"Inventory": {
|
"Inventory": {
|
||||||
"Consigned Stock": {
|
"Consigned Stock": {
|
||||||
"Handling Difference in Inventory": {
|
"Handling Difference in Inventory": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"Items Delivered to Customs on temprary Base": {}
|
"Items Delivered to Customs on temprary Base": {}
|
||||||
},
|
},
|
||||||
"Stock in Hand": {
|
"Stock in Hand": {
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Perliminary and Preoperating Expenses": {
|
"Perliminary and Preoperating Expenses": {
|
||||||
@ -130,32 +130,32 @@
|
|||||||
"Fixed Assets": {
|
"Fixed Assets": {
|
||||||
"Accumulated Depreciation": {
|
"Accumulated Depreciation": {
|
||||||
"Acc. Depreciation of Motor Vehicles": {
|
"Acc. Depreciation of Motor Vehicles": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"Acc. Deprn.Computer Hardware & Software": {
|
"Acc. Deprn.Computer Hardware & Software": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"Acc.Deprn.of Furniture & Office Equipment": {
|
"Acc.Deprn.of Furniture & Office Equipment": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"Amortisation on Leasehold Improvement": {
|
"Amortisation on Leasehold Improvement": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"Fixed Assets (Cost Price)": {
|
"Fixed Assets (Cost Price)": {
|
||||||
"Computer Hardware & Software": {
|
"Computer Hardware & Software": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Furniture and Equipment": {
|
"Furniture and Equipment": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Leasehold Improvement": {},
|
"Leasehold Improvement": {},
|
||||||
"Motor Vehicules": {
|
"Motor Vehicules": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Work In Progrees": {},
|
"Work In Progrees": {},
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Intangible Assets": {
|
"Intangible Assets": {
|
||||||
@ -168,13 +168,13 @@
|
|||||||
"Investments in Subsidiaries": {}
|
"Investments in Subsidiaries": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"Closing And Temporary Accounts": {
|
"Closing And Temporary Accounts": {
|
||||||
"Closing Accounts": {
|
"Closing Accounts": {
|
||||||
"Closing Account": {}
|
"Closing Account": {}
|
||||||
},
|
},
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
},
|
},
|
||||||
"Expenses": {
|
"Expenses": {
|
||||||
"Commercial Expenses": {
|
"Commercial Expenses": {
|
||||||
@ -185,25 +185,25 @@
|
|||||||
"Cost Of Goods Sold": {
|
"Cost Of Goods Sold": {
|
||||||
"Cost Of Goods Sold I/C Sales": {},
|
"Cost Of Goods Sold I/C Sales": {},
|
||||||
"Cost of Goods Sold in Trading": {
|
"Cost of Goods Sold in Trading": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Expenses Included In Valuation": {
|
"Expenses Included In Valuation": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Depreciation": {
|
"Depreciation": {
|
||||||
"Depreciation & Amortization": {
|
"Depreciation & Amortization": {
|
||||||
"Amortization on Leasehold Improvement": {},
|
"Amortization on Leasehold Improvement": {},
|
||||||
"Depreciation Of Computer Hard & Soft": {
|
"Depreciation Of Computer Hard & Soft": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Depreciation Of Furniture & Office Equipment\n\t\t\t": {
|
"Depreciation Of Furniture & Office Equipment\n\t\t\t": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Depreciation Of Motor Vehicles": {
|
"Depreciation Of Motor Vehicles": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -235,10 +235,10 @@
|
|||||||
},
|
},
|
||||||
"Tax / Zakat Expenses": {
|
"Tax / Zakat Expenses": {
|
||||||
"Income Tax": {
|
"Income Tax": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Zakat": {},
|
"Zakat": {},
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -320,32 +320,32 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Liabilities": {
|
"Liabilities": {
|
||||||
"Current Liabilities": {
|
"Current Liabilities": {
|
||||||
"Accounts Payable": {
|
"Accounts Payable": {
|
||||||
"Payables": {
|
"Payables": {
|
||||||
"Advance Paybale to Suppliers": {
|
"Advance Paybale to Suppliers": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Consigned Payable": {
|
"Consigned Payable": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Other Payable": {
|
"Other Payable": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Post Dated Cheques Paid": {
|
"Post Dated Cheques Paid": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Staff Payable": {},
|
"Staff Payable": {},
|
||||||
"Suppliers Price Protection": {
|
"Suppliers Price Protection": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Trade Payable": {
|
"Trade Payable": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Accruals & Provisions": {
|
"Accruals & Provisions": {
|
||||||
@ -385,8 +385,8 @@
|
|||||||
"Short Term Loan": {}
|
"Short Term Loan": {}
|
||||||
},
|
},
|
||||||
"Duties and Taxes": {
|
"Duties and Taxes": {
|
||||||
"account_type": "Tax",
|
"accountType": "Tax",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Reservations & Credit Notes": {
|
"Reservations & Credit Notes": {
|
||||||
"Credit Notes": {
|
"Credit Notes": {
|
||||||
@ -396,7 +396,7 @@
|
|||||||
},
|
},
|
||||||
"Stock Liabilities": {
|
"Stock Liabilities": {
|
||||||
"Stock Received But Not Billed": {
|
"Stock Received But Not Billed": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Unearned Income": {}
|
"Unearned Income": {}
|
||||||
@ -404,7 +404,7 @@
|
|||||||
"Long Term Liabilities": {
|
"Long Term Liabilities": {
|
||||||
"Long Term Loans & Provisions": {}
|
"Long Term Loans & Provisions": {}
|
||||||
},
|
},
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
},
|
},
|
||||||
"Revenue": {
|
"Revenue": {
|
||||||
"Direct Revenue": {
|
"Direct Revenue": {
|
||||||
@ -445,7 +445,7 @@
|
|||||||
"Sales of I/C": {}
|
"Sales of I/C": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
},
|
},
|
||||||
"Share Holder Equity": {
|
"Share Holder Equity": {
|
||||||
"Capital": {
|
"Capital": {
|
||||||
@ -460,8 +460,8 @@
|
|||||||
"Dividends Paid": {},
|
"Dividends Paid": {},
|
||||||
"Previous Years Results": {}
|
"Previous Years Results": {}
|
||||||
},
|
},
|
||||||
"account_type": "Equity",
|
"accountType": "Equity",
|
||||||
"root_type": "Equity"
|
"rootType": "Equity"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"country_code": "ca",
|
"countryCode": "ca",
|
||||||
"name": "Canada - Plan comptable pour les provinces francophones",
|
"name": "Canada - Plan comptable pour les provinces francophones",
|
||||||
"tree": {
|
"tree": {
|
||||||
"Actif": {
|
"Actif": {
|
||||||
@ -10,17 +10,17 @@
|
|||||||
"Avances sur commissions": {}
|
"Avances sur commissions": {}
|
||||||
},
|
},
|
||||||
"Banque": {
|
"Banque": {
|
||||||
"account_type": "Bank",
|
"accountType": "Bank",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Comptes \u00e0 recevoir": {
|
"Comptes \u00e0 recevoir": {
|
||||||
"Comptes clients": {
|
"Comptes clients": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Provision pour cr\u00e9ances douteuses": {}
|
"Provision pour cr\u00e9ances douteuses": {}
|
||||||
},
|
},
|
||||||
"Encaisse": {
|
"Encaisse": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Frais pay\u00e9s d\u2019avance": {
|
"Frais pay\u00e9s d\u2019avance": {
|
||||||
"Assurances pay\u00e9s d'avance": {},
|
"Assurances pay\u00e9s d'avance": {},
|
||||||
@ -28,15 +28,15 @@
|
|||||||
"Taxes pay\u00e9s d'avance": {}
|
"Taxes pay\u00e9s d'avance": {}
|
||||||
},
|
},
|
||||||
"Petite caisse": {
|
"Petite caisse": {
|
||||||
"account_type": "Cash",
|
"accountType": "Cash",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Stocks": {
|
"Stocks": {
|
||||||
"Mati\u00e8res premi\u00e8res": {},
|
"Mati\u00e8res premi\u00e8res": {},
|
||||||
"Stock de produits fini": {},
|
"Stock de produits fini": {},
|
||||||
"Stock exp\u00e9di\u00e9 non-factur\u00e9": {},
|
"Stock exp\u00e9di\u00e9 non-factur\u00e9": {},
|
||||||
"Travaux en cours": {},
|
"Travaux en cours": {},
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"Subventions \u00e0 recevoir": {},
|
"Subventions \u00e0 recevoir": {},
|
||||||
"TR\u00c9SORERIE OU \u00c9QUIVALENTS DE TR\u00c9SORERIE": {},
|
"TR\u00c9SORERIE OU \u00c9QUIVALENTS DE TR\u00c9SORERIE": {},
|
||||||
@ -67,42 +67,42 @@
|
|||||||
"Amortissement accumul\u00e9 - mat\u00e9riel roulant": {},
|
"Amortissement accumul\u00e9 - mat\u00e9riel roulant": {},
|
||||||
"Amortissement accumul\u00e9 - mobilier et \u00e9quipement de bureau": {},
|
"Amortissement accumul\u00e9 - mobilier et \u00e9quipement de bureau": {},
|
||||||
"Am\u00e9liorations locatives": {
|
"Am\u00e9liorations locatives": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Biens lou\u00e9s en vertu d\u2019un contrat de location - acquisition": {
|
"Biens lou\u00e9s en vertu d\u2019un contrat de location - acquisition": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"B\u00e2timent": {
|
"B\u00e2timent": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Entrep\u00f4t": {
|
"Entrep\u00f4t": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Logiciels": {
|
"Logiciels": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Machinerie et \u00e9quipement": {
|
"Machinerie et \u00e9quipement": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Mat\u00e9riel roulant": {
|
"Mat\u00e9riel roulant": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Mobilier et \u00e9quipement de bureau": {
|
"Mobilier et \u00e9quipement de bureau": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Terrain": {
|
"Terrain": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"account_type": "Fixed Asset",
|
"accountType": "Fixed Asset",
|
||||||
"\u00c9quipement informatique": {
|
"\u00c9quipement informatique": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Placements": {
|
"Placements": {
|
||||||
"D\u00e9p\u00f4ts": {},
|
"D\u00e9p\u00f4ts": {},
|
||||||
"Placement": {}
|
"Placement": {}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"Avoir des actionnaires": {
|
"Avoir des actionnaires": {
|
||||||
" B\u00e9n\u00e9fice de la p\u00e9riode": {},
|
" B\u00e9n\u00e9fice de la p\u00e9riode": {},
|
||||||
@ -112,13 +112,13 @@
|
|||||||
"Capital - actions privil\u00e9gi\u00e9": {},
|
"Capital - actions privil\u00e9gi\u00e9": {},
|
||||||
"Dividendes": {},
|
"Dividendes": {},
|
||||||
"Surplus d\u2019apport": {},
|
"Surplus d\u2019apport": {},
|
||||||
"root_type": "Equity"
|
"rootType": "Equity"
|
||||||
},
|
},
|
||||||
"Charges": {
|
"Charges": {
|
||||||
"Charges d'exploitation": {
|
"Charges d'exploitation": {
|
||||||
"Salaires et charges sociales": {
|
"Salaires et charges sociales": {
|
||||||
"Assurance - emploi": {
|
"Assurance - emploi": {
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"Assurance parentale": {},
|
"Assurance parentale": {},
|
||||||
"Fonds des services de sant\u00e9": {},
|
"Fonds des services de sant\u00e9": {},
|
||||||
@ -127,10 +127,10 @@
|
|||||||
"Normes du travail": {},
|
"Normes du travail": {},
|
||||||
"Rentes": {},
|
"Rentes": {},
|
||||||
"Salaires": {
|
"Salaires": {
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"sant\u00e9 et s\u00e9curit\u00e9 du travail CSST": {
|
"sant\u00e9 et s\u00e9curit\u00e9 du travail CSST": {
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -139,27 +139,27 @@
|
|||||||
" R\u00e9parations et entretien - moules et matrices": {},
|
" R\u00e9parations et entretien - moules et matrices": {},
|
||||||
"Ammortissements": {
|
"Ammortissements": {
|
||||||
"Amortissements - am\u00e9liorations locatives": {
|
"Amortissements - am\u00e9liorations locatives": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Amortissements - biens lou\u00e9s contrat de location - acquisition": {
|
"Amortissements - biens lou\u00e9s contrat de location - acquisition": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Amortissements - b\u00e2timent": {
|
"Amortissements - b\u00e2timent": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Amortissements - entrep\u00f4t": {
|
"Amortissements - entrep\u00f4t": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Amortissements - machinerie et \u00e9quipement": {
|
"Amortissements - machinerie et \u00e9quipement": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Amortissements - mat\u00e9riel roulant": {
|
"Amortissements - mat\u00e9riel roulant": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Amortissements - moules et matrices": {
|
"Amortissements - moules et matrices": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Assurances": {
|
"Assurances": {
|
||||||
" Assurances - feu": {},
|
" Assurances - feu": {},
|
||||||
@ -175,7 +175,7 @@
|
|||||||
"Loyer - b\u00e2timent": {},
|
"Loyer - b\u00e2timent": {},
|
||||||
"Loyer - entrep\u00f4t": {},
|
"Loyer - entrep\u00f4t": {},
|
||||||
"Op\u00e9rations indirectes de la main-d\u2019\u0153uvre directe": {
|
"Op\u00e9rations indirectes de la main-d\u2019\u0153uvre directe": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"R\u00e9parations et entretien - b\u00e2timent": {},
|
"R\u00e9parations et entretien - b\u00e2timent": {},
|
||||||
"R\u00e9parations et entretien - machinerie et \u00e9quipement": {},
|
"R\u00e9parations et entretien - machinerie et \u00e9quipement": {},
|
||||||
@ -287,30 +287,30 @@
|
|||||||
"Frais variables": {
|
"Frais variables": {
|
||||||
"Frais variables de fabrication": {
|
"Frais variables de fabrication": {
|
||||||
" Emballage \u00e0 la production": {
|
" Emballage \u00e0 la production": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
" Sous-traitance": {
|
" Sous-traitance": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Achats de mati\u00e8res premi\u00e8res": {
|
"Achats de mati\u00e8res premi\u00e8res": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Achats de mat\u00e9riel direct": {
|
"Achats de mat\u00e9riel direct": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Achats de produits non fabriqu\u00e9s": {
|
"Achats de produits non fabriqu\u00e9s": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"Avantages sociaux": {
|
"Avantages sociaux": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Main-d\u2019\u0153uvre directe": {
|
"Main-d\u2019\u0153uvre directe": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Variation des stocks": {
|
"Variation des stocks": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Frais variables de vente": {
|
"Frais variables de vente": {
|
||||||
"Commissions": {},
|
"Commissions": {},
|
||||||
@ -318,7 +318,7 @@
|
|||||||
"Transport (\u00e0 contrat)": {}
|
"Transport (\u00e0 contrat)": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Passif": {
|
"Passif": {
|
||||||
"PASSIFS NON-COURANTS": {
|
"PASSIFS NON-COURANTS": {
|
||||||
@ -333,7 +333,7 @@
|
|||||||
"Autres comptes cr\u00e9diteurs": {},
|
"Autres comptes cr\u00e9diteurs": {},
|
||||||
"Comptes \u00e0 payer": {
|
"Comptes \u00e0 payer": {
|
||||||
"Comptes fournisseurs": {
|
"Comptes fournisseurs": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"D\u00e9p\u00f4ts de clients": {},
|
"D\u00e9p\u00f4ts de clients": {},
|
||||||
@ -375,7 +375,7 @@
|
|||||||
},
|
},
|
||||||
"Passifs de stock": {
|
"Passifs de stock": {
|
||||||
"Stock re\u00e7u non factur\u00e9": {
|
"Stock re\u00e7u non factur\u00e9": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Provision pour vacances et cong\u00e9s": {},
|
"Provision pour vacances et cong\u00e9s": {},
|
||||||
@ -391,7 +391,7 @@
|
|||||||
"Obligation d\u00e9coulant d\u2019un contrat de location - acquisition": {},
|
"Obligation d\u00e9coulant d\u2019un contrat de location - acquisition": {},
|
||||||
"Passif d\u2019imp\u00f4ts futurs": {}
|
"Passif d\u2019imp\u00f4ts futurs": {}
|
||||||
},
|
},
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
},
|
},
|
||||||
"Produits": {
|
"Produits": {
|
||||||
"Revenus de ventes": {
|
"Revenus de ventes": {
|
||||||
@ -406,7 +406,7 @@
|
|||||||
"Autres revenus non li\u00e9s \u00e0 la vente": {},
|
"Autres revenus non li\u00e9s \u00e0 la vente": {},
|
||||||
"Revenues d'int\u00e9r\u00eats": {}
|
"Revenues d'int\u00e9r\u00eats": {}
|
||||||
},
|
},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"country_code": "gt",
|
"countryCode": "gt",
|
||||||
"name": "Guatemala - Cuentas",
|
"name": "Guatemala - Cuentas",
|
||||||
"tree": {
|
"tree": {
|
||||||
"Activos": {
|
"Activos": {
|
||||||
@ -7,356 +7,356 @@
|
|||||||
"Activos Biol\u00f3gicos": {
|
"Activos Biol\u00f3gicos": {
|
||||||
"Activos Biol\u00f3gicos a Valor Razonable": {
|
"Activos Biol\u00f3gicos a Valor Razonable": {
|
||||||
"Animales": {
|
"Animales": {
|
||||||
"account_number": "1.5.2.1",
|
"accountNumber": "1.5.2.1",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Plantas": {
|
"Plantas": {
|
||||||
"account_number": "1.5.2.2",
|
"accountNumber": "1.5.2.2",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.5.2",
|
"accountNumber": "1.5.2",
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"Activos Biol\u00f3gicos al Costo": {
|
"Activos Biol\u00f3gicos al Costo": {
|
||||||
"account_number": "1.5.1",
|
"accountNumber": "1.5.1",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.5",
|
"accountNumber": "1.5",
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"Activos Corrientes Adicionales": {
|
"Activos Corrientes Adicionales": {
|
||||||
"Activos Diferidos o Restringidos": {
|
"Activos Diferidos o Restringidos": {
|
||||||
"Cr\u00e9dito Fiscal (IVA Por Cobrar)": {
|
"Cr\u00e9dito Fiscal (IVA Por Cobrar)": {
|
||||||
"account_number": "1.1.2.1",
|
"accountNumber": "1.1.2.1",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.1.2",
|
"accountNumber": "1.1.2",
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"Inversiones Corrientes no Clasificados como Equivalentes de Caja y Bancos": {
|
"Inversiones Corrientes no Clasificados como Equivalentes de Caja y Bancos": {
|
||||||
"account_number": "1.1.1"
|
"accountNumber": "1.1.1"
|
||||||
},
|
},
|
||||||
"account_number": "1.1",
|
"accountNumber": "1.1",
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"Activos Devengables y Otros Activos": {
|
"Activos Devengables y Otros Activos": {
|
||||||
"Activos Adicionales y Otros": {
|
"Activos Adicionales y Otros": {
|
||||||
"account_number": "1.6.6",
|
"accountNumber": "1.6.6",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Cobrables Relacionados con Impuestos": {
|
"Cobrables Relacionados con Impuestos": {
|
||||||
"account_number": "1.6.2",
|
"accountNumber": "1.6.2",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Contratos de Construccion": {
|
"Contratos de Construccion": {
|
||||||
"account_number": "1.6.4",
|
"accountNumber": "1.6.4",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Costos de Montaje": {
|
"Costos de Montaje": {
|
||||||
"account_number": "1.6.5",
|
"accountNumber": "1.6.5",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Pagos Anticipados y Otros Activos Circulantes": {
|
"Pagos Anticipados y Otros Activos Circulantes": {
|
||||||
"Seguro Pagado Anticipadamente": {
|
"Seguro Pagado Anticipadamente": {
|
||||||
"account_number": "1.6.1.0",
|
"accountNumber": "1.6.1.0",
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"account_number": "1.6.1",
|
"accountNumber": "1.6.1",
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"Proveedores de Servicio": {
|
"Proveedores de Servicio": {
|
||||||
"account_number": "1.6.3",
|
"accountNumber": "1.6.3",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.6",
|
"accountNumber": "1.6",
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"Activos Financieros": {
|
"Activos Financieros": {
|
||||||
"Activos Financieros Clasificados por Designaci\u00f3n": {
|
"Activos Financieros Clasificados por Designaci\u00f3n": {
|
||||||
"account_number": "1.4.6",
|
"accountNumber": "1.4.6",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Activos Financieros Derivados": {
|
"Activos Financieros Derivados": {
|
||||||
"account_number": "1.4.3",
|
"accountNumber": "1.4.3",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Inversion o Participaci\u00f3n Accionaria en Empresas Afiliadas": {
|
"Inversion o Participaci\u00f3n Accionaria en Empresas Afiliadas": {
|
||||||
"account_number": "1.4.1",
|
"accountNumber": "1.4.1",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Inversiones Burs\u00e1tiles e Instrumentos Financieros": {
|
"Inversiones Burs\u00e1tiles e Instrumentos Financieros": {
|
||||||
"account_number": "1.4.2",
|
"accountNumber": "1.4.2",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Otros Activos Financieros": {
|
"Otros Activos Financieros": {
|
||||||
"account_number": "1.4.4",
|
"accountNumber": "1.4.4",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Provisi\u00f3n por Riesgo de Cr\u00e9dito (agregado) (Contra-activo)": {
|
"Provisi\u00f3n por Riesgo de Cr\u00e9dito (agregado) (Contra-activo)": {
|
||||||
"account_number": "1.4.5",
|
"accountNumber": "1.4.5",
|
||||||
"account_type": "Round Off",
|
"accountType": "Round Off",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.4",
|
"accountNumber": "1.4",
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"Activos Intangibles": {
|
"Activos Intangibles": {
|
||||||
"account_number": "1.3",
|
"accountNumber": "1.3",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Caja y Equivalentes": {
|
"Caja y Equivalentes": {
|
||||||
"Caja": {
|
"Caja": {
|
||||||
"account_number": "1.9.1",
|
"accountNumber": "1.9.1",
|
||||||
"account_type": "Cash",
|
"accountType": "Cash",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Equivalentes de Efectivo (Bancos)": {
|
"Equivalentes de Efectivo (Bancos)": {
|
||||||
"Bancos Internacionales": {
|
"Bancos Internacionales": {
|
||||||
"HSBC": {
|
"HSBC": {
|
||||||
"account_number": "1.9.2.2.1",
|
"accountNumber": "1.9.2.2.1",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"account_number": "1.9.2.2",
|
"accountNumber": "1.9.2.2",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Bancos Nacionales": {
|
"Bancos Nacionales": {
|
||||||
"Banco Agromercantil de Guatemala": {
|
"Banco Agromercantil de Guatemala": {
|
||||||
"account_number": "1.9.2.1.2",
|
"accountNumber": "1.9.2.1.2",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Banco G&T Continental": {
|
"Banco G&T Continental": {
|
||||||
"account_number": "1.9.2.1.5",
|
"accountNumber": "1.9.2.1.5",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Banco Industrial": {
|
"Banco Industrial": {
|
||||||
"account_number": "1.9.2.1.1",
|
"accountNumber": "1.9.2.1.1",
|
||||||
"account_type": "Bank",
|
"accountType": "Bank",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Banco Internacional": {
|
"Banco Internacional": {
|
||||||
"account_number": "1.9.2.1.6",
|
"accountNumber": "1.9.2.1.6",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Banco Prom\u00e9rica": {
|
"Banco Prom\u00e9rica": {
|
||||||
"account_number": "1.9.2.1.3",
|
"accountNumber": "1.9.2.1.3",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Banco de Am\u00e9rica Central": {
|
"Banco de Am\u00e9rica Central": {
|
||||||
"account_number": "1.9.2.1.4",
|
"accountNumber": "1.9.2.1.4",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Banco de Desarrollo Rural": {
|
"Banco de Desarrollo Rural": {
|
||||||
"account_number": "1.9.2.1.7",
|
"accountNumber": "1.9.2.1.7",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Banco de los Trabajadores": {
|
"Banco de los Trabajadores": {
|
||||||
"account_number": "1.9.2.1.8",
|
"accountNumber": "1.9.2.1.8",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Vivibanco": {
|
"Vivibanco": {
|
||||||
"account_number": "1.9.2.1.9",
|
"accountNumber": "1.9.2.1.9",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"account_number": "1.9.2.1",
|
"accountNumber": "1.9.2.1",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Cadena de Bloques (Blockchain)": {
|
"Cadena de Bloques (Blockchain)": {
|
||||||
"Billetera Bitcoin 1234567890abcdefg": {
|
"Billetera Bitcoin 1234567890abcdefg": {
|
||||||
"account_number": "1.9.2.3.1",
|
"accountNumber": "1.9.2.3.1",
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"account_number": "1.9.2.3",
|
"accountNumber": "1.9.2.3",
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"account_number": "1.9.2",
|
"accountNumber": "1.9.2",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Inversiones a Corto Plazo": {
|
"Inversiones a Corto Plazo": {
|
||||||
"account_number": "1.9.3",
|
"accountNumber": "1.9.3",
|
||||||
"account_type": "Bank",
|
"accountType": "Bank",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Otros Equivalentes de Caja y Bancos": {
|
"Otros Equivalentes de Caja y Bancos": {
|
||||||
"account_number": "1.9.4",
|
"accountNumber": "1.9.4",
|
||||||
"account_type": "Cash",
|
"accountType": "Cash",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.9",
|
"accountNumber": "1.9",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Cobrables": {
|
"Cobrables": {
|
||||||
"Activos bajo Contrato": {
|
"Activos bajo Contrato": {
|
||||||
"account_number": "1.8.2",
|
"accountNumber": "1.8.2",
|
||||||
"account_type": "Receivable",
|
"accountType": "Receivable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Ajustes": {
|
"Ajustes": {
|
||||||
"account_number": "1.8.4",
|
"accountNumber": "1.8.4",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Otras Cuentas por Cobrar": {
|
"Otras Cuentas por Cobrar": {
|
||||||
"Cuentas Por Cobrar Compa\u00f1\u00edas Afiliadas": {
|
"Cuentas Por Cobrar Compa\u00f1\u00edas Afiliadas": {
|
||||||
"Compa\u00f1\u00eda subsidiaria (EJEMPLO)": {
|
"Compa\u00f1\u00eda subsidiaria (EJEMPLO)": {
|
||||||
"account_number": "1.8.3.2.1",
|
"accountNumber": "1.8.3.2.1",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_number": "1.8.3.2",
|
"accountNumber": "1.8.3.2",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Cuentas por Cobrar a Empleados": {
|
"Cuentas por Cobrar a Empleados": {
|
||||||
"Prestamo EJEMPLO": {
|
"Prestamo EJEMPLO": {
|
||||||
"account_number": "1.8.3.3.1",
|
"accountNumber": "1.8.3.3.1",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_number": "1.8.3.3",
|
"accountNumber": "1.8.3.3",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Cuentas por Cobrar a Otras Entidades no Afiliadas": {
|
"Cuentas por Cobrar a Otras Entidades no Afiliadas": {
|
||||||
"Compa\u00f1\u00eda No Afiliada (EJEMPLO)": {
|
"Compa\u00f1\u00eda No Afiliada (EJEMPLO)": {
|
||||||
"account_number": "1.8.3.1.1",
|
"accountNumber": "1.8.3.1.1",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_number": "1.8.3.1",
|
"accountNumber": "1.8.3.1",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_number": "1.8.3",
|
"accountNumber": "1.8.3",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Ventas al Cr\u00e9dito": {
|
"Ventas al Cr\u00e9dito": {
|
||||||
"account_number": "1.8.1",
|
"accountNumber": "1.8.1",
|
||||||
"account_type": "Receivable",
|
"accountType": "Receivable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.8",
|
"accountNumber": "1.8",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Impuestos por Cobrar": {
|
"Impuestos por Cobrar": {
|
||||||
"Retenciones de IVA recibidas": {}
|
"Retenciones de IVA recibidas": {}
|
||||||
},
|
},
|
||||||
"Inventario": {
|
"Inventario": {
|
||||||
"Art\u00edculos de Inventario Adicionales": {
|
"Art\u00edculos de Inventario Adicionales": {
|
||||||
"account_number": "1.7.8",
|
"accountNumber": "1.7.8",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Combustibles": {
|
"Combustibles": {
|
||||||
"account_number": "1.7.5",
|
"accountNumber": "1.7.5",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Inventarios Pignorados Como Garant\u00eda de Pasivo": {
|
"Inventarios Pignorados Como Garant\u00eda de Pasivo": {
|
||||||
"account_number": "1.7.10",
|
"accountNumber": "1.7.10",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Inventarios a Valor Razonable Menos Costos de Venta": {
|
"Inventarios a Valor Razonable Menos Costos de Venta": {
|
||||||
"account_number": "1.7.11",
|
"accountNumber": "1.7.11",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Materia Prima": {
|
"Materia Prima": {
|
||||||
"account_number": "1.7.1",
|
"accountNumber": "1.7.1",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Mercader\u00eda (Mercanc\u00edas)": {
|
"Mercader\u00eda (Mercanc\u00edas)": {
|
||||||
"account_number": "1.7.2",
|
"accountNumber": "1.7.2",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Otros Inventarios": {
|
"Otros Inventarios": {
|
||||||
"Merma o Ajuste de Inventario": {
|
"Merma o Ajuste de Inventario": {
|
||||||
"account_number": "1.7.9.1",
|
"accountNumber": "1.7.9.1",
|
||||||
"account_type": "Stock Adjustment",
|
"accountType": "Stock Adjustment",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.7.9",
|
"accountNumber": "1.7.9",
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"Producto Terminado": {
|
"Producto Terminado": {
|
||||||
"account_number": "1.7.7",
|
"accountNumber": "1.7.7",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Repuestos": {
|
"Repuestos": {
|
||||||
"Respuestos en Transito": {
|
"Respuestos en Transito": {
|
||||||
"account_number": "1.7.4.0",
|
"accountNumber": "1.7.4.0",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.7.4",
|
"accountNumber": "1.7.4",
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"Suministros de Producci\u00f3n y Consumibles": {
|
"Suministros de Producci\u00f3n y Consumibles": {
|
||||||
"account_number": "1.7.3",
|
"accountNumber": "1.7.3",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Trabajo en Progeso": {
|
"Trabajo en Progeso": {
|
||||||
"account_number": "1.7.6",
|
"accountNumber": "1.7.6",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.7",
|
"accountNumber": "1.7",
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"Inversion en Propiedades": {
|
"Inversion en Propiedades": {
|
||||||
"Inversion Inmobiliaria Bajo Construccion": {
|
"Inversion Inmobiliaria Bajo Construccion": {
|
||||||
"account_number": "1.2.1",
|
"accountNumber": "1.2.1",
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"Inversion Inmobiliaria Construida": {
|
"Inversion Inmobiliaria Construida": {
|
||||||
"account_number": "1.2.2",
|
"accountNumber": "1.2.2",
|
||||||
"account_type": "Chargeable",
|
"accountType": "Chargeable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1.2",
|
"accountNumber": "1.2",
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"account_number": "1.0"
|
"accountNumber": "1.0"
|
||||||
},
|
},
|
||||||
"No Corriente": {
|
"No Corriente": {
|
||||||
"Activos Fijos": {
|
"Activos Fijos": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Cargos Diferidos": {}
|
"Cargos Diferidos": {}
|
||||||
},
|
},
|
||||||
"account_number": "1",
|
"accountNumber": "1",
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"Costos": {
|
"Costos": {
|
||||||
"Costo de Ventas": {
|
"Costo de Ventas": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Costos Incluidos en la Valuaci\u00f3n": {
|
"Costos Incluidos en la Valuaci\u00f3n": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"Merma o Ajuste de Inventario": {
|
"Merma o Ajuste de Inventario": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"account_number": "5",
|
"accountNumber": "5",
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Gastos": {
|
"Gastos": {
|
||||||
"Alquileres": {},
|
"Alquileres": {},
|
||||||
"Depreciaciones": {
|
"Depreciaciones": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Gastos Diversos": {},
|
"Gastos Diversos": {},
|
||||||
"Gastos de Personal": {},
|
"Gastos de Personal": {},
|
||||||
@ -364,14 +364,14 @@
|
|||||||
"Mantenimiento": {},
|
"Mantenimiento": {},
|
||||||
"Seguros": {},
|
"Seguros": {},
|
||||||
"Servicios B\u00e1sicos": {},
|
"Servicios B\u00e1sicos": {},
|
||||||
"account_number": "6",
|
"accountNumber": "6",
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Ingresos": {
|
"Ingresos": {
|
||||||
"Productos": {},
|
"Productos": {},
|
||||||
"Servicios": {},
|
"Servicios": {},
|
||||||
"account_number": "4",
|
"accountNumber": "4",
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
},
|
},
|
||||||
"Otros Gastos y Productos Financieros": {
|
"Otros Gastos y Productos Financieros": {
|
||||||
"Otros Gastos": {
|
"Otros Gastos": {
|
||||||
@ -386,13 +386,13 @@
|
|||||||
"Otros Gastos Financieros": {}
|
"Otros Gastos Financieros": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"account_number": "7",
|
"accountNumber": "7",
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Pasivos": {
|
"Pasivos": {
|
||||||
"Pasivo Corriente": {
|
"Pasivo Corriente": {
|
||||||
"Acreedores 1": {
|
"Acreedores 1": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Cuentas por Pagar": {},
|
"Cuentas por Pagar": {},
|
||||||
"Impuestos por Pagar": {},
|
"Impuestos por Pagar": {},
|
||||||
@ -400,7 +400,7 @@
|
|||||||
"Prestaciones": {},
|
"Prestaciones": {},
|
||||||
"Proveedores": {
|
"Proveedores": {
|
||||||
"Inventario Recibido pero No Cobrado": {
|
"Inventario Recibido pero No Cobrado": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Sueldos por Liquidar": {}
|
"Sueldos por Liquidar": {}
|
||||||
@ -409,15 +409,15 @@
|
|||||||
"Acreedores": {},
|
"Acreedores": {},
|
||||||
"Provisi\u00f3n para Indemnizaciones": {}
|
"Provisi\u00f3n para Indemnizaciones": {}
|
||||||
},
|
},
|
||||||
"account_number": "2",
|
"accountNumber": "2",
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
},
|
},
|
||||||
"Patrimonio": {
|
"Patrimonio": {
|
||||||
"Capital": {},
|
"Capital": {},
|
||||||
"Resultados del Ejercicio": {},
|
"Resultados del Ejercicio": {},
|
||||||
"Utilidades Retenidas": {},
|
"Utilidades Retenidas": {},
|
||||||
"account_number": "3",
|
"accountNumber": "3",
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"country_code": "hu",
|
"countryCode": "hu",
|
||||||
"name": "Hungary - Chart of Accounts",
|
"name": "Hungary - Chart of Accounts",
|
||||||
"tree": {
|
"tree": {
|
||||||
"1. SZ\u00c1MLAOSZT\u00c1LY BEFEKTETETT ESZK\u00d6Z\u00d6K": {
|
"1. SZ\u00c1MLAOSZT\u00c1LY BEFEKTETETT ESZK\u00d6Z\u00d6K": {
|
||||||
@ -15,30 +15,30 @@
|
|||||||
"12. INGATLANOK \u00c9S KAPCSOL\u00d3D\u00d3 VAGYONI \u00c9RT\u00c9K\u00db JOGOK": {
|
"12. INGATLANOK \u00c9S KAPCSOL\u00d3D\u00d3 VAGYONI \u00c9RT\u00c9K\u00db JOGOK": {
|
||||||
"121. Telkek, f\u00f6ldter\u00fclet ": {
|
"121. Telkek, f\u00f6ldter\u00fclet ": {
|
||||||
"1211. Telkek, f\u00f6ldter\u00fcletek brutt\u00f3 \u00e9rt\u00e9ke": {
|
"1211. Telkek, f\u00f6ldter\u00fcletek brutt\u00f3 \u00e9rt\u00e9ke": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"1218. Telkek, f\u00f6ldter\u00fcletek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
"1218. Telkek, f\u00f6ldter\u00fcletek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
||||||
"1219. Telkek, f\u00f6ldter\u00fcletek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
"1219. Telkek, f\u00f6ldter\u00fcletek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
||||||
},
|
},
|
||||||
"122. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok": {
|
"122. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok": {
|
||||||
"1221. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok brutt\u00f3 \u00e9rt\u00e9ke": {
|
"1221. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok brutt\u00f3 \u00e9rt\u00e9ke": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"1228. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
"1228. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
||||||
"1229. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
"1229. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
||||||
},
|
},
|
||||||
"123. \u00c9p\u00fcletek, \u00e9p\u00fcletr\u00e9szek, tulajdoni h\u00e1nyadok ": {
|
"123. \u00c9p\u00fcletek, \u00e9p\u00fcletr\u00e9szek, tulajdoni h\u00e1nyadok ": {
|
||||||
"account_type": "Fixed Asset",
|
"accountType": "Fixed Asset",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"124. Egy\u00e9b ingatlanok": {
|
"124. Egy\u00e9b ingatlanok": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"125. \u00dczemk\u00f6r\u00f6n k\u00edv\u00fcli ingatlanok, \u00e9p\u00fcletek ": {
|
"125. \u00dczemk\u00f6r\u00f6n k\u00edv\u00fcli ingatlanok, \u00e9p\u00fcletek ": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"126. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok": {
|
"126. Ingatlanokhoz kapcsol\u00f3d\u00f3 vagyoni \u00e9rt\u00e9k\u0171 jogok": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"127. Ingatlanok \u00e9rt\u00e9khelyesb\u00edt\u00e9se": {},
|
"127. Ingatlanok \u00e9rt\u00e9khelyesb\u00edt\u00e9se": {},
|
||||||
"129. Kis \u00e9rt\u00e9k\u0171 ingatlanok": {}
|
"129. Kis \u00e9rt\u00e9k\u0171 ingatlanok": {}
|
||||||
@ -46,7 +46,7 @@
|
|||||||
"13. M\u00dbSZAKI BERENDEZ\u00c9SEK, G\u00c9PEK, J\u00c1RM\u00dbVEK": {
|
"13. M\u00dbSZAKI BERENDEZ\u00c9SEK, G\u00c9PEK, J\u00c1RM\u00dbVEK": {
|
||||||
"131. Termel\u0151 g\u00e9pek, berendez\u00e9sek, szersz\u00e1mok, gy\u00e1rt\u00f3eszk\u00f6z\u00f6k": {
|
"131. Termel\u0151 g\u00e9pek, berendez\u00e9sek, szersz\u00e1mok, gy\u00e1rt\u00f3eszk\u00f6z\u00f6k": {
|
||||||
"1311. Termel\u0151 g\u00e9pek, berendez\u00e9sek brutt\u00f3 \u00e9rt\u00e9ke": {
|
"1311. Termel\u0151 g\u00e9pek, berendez\u00e9sek brutt\u00f3 \u00e9rt\u00e9ke": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"1318. Termel\u0151 g\u00e9pek, berendez\u00e9sek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
"1318. Termel\u0151 g\u00e9pek, berendez\u00e9sek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
||||||
"1319. Termel\u0151 g\u00e9pek, berendez\u00e9sek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
"1319. Termel\u0151 g\u00e9pek, berendez\u00e9sek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
||||||
@ -58,36 +58,36 @@
|
|||||||
"14. EGY\u00c9B BERENDEZ\u00c9SEK, FELSZEREL\u00c9SEK, J\u00c1RM\u00dbVEK": {
|
"14. EGY\u00c9B BERENDEZ\u00c9SEK, FELSZEREL\u00c9SEK, J\u00c1RM\u00dbVEK": {
|
||||||
"141. Egy\u00e9b (\u00fczemi \u2013 \u00fczleti), berendez\u00e9sek, felszerel\u00e9sek": {
|
"141. Egy\u00e9b (\u00fczemi \u2013 \u00fczleti), berendez\u00e9sek, felszerel\u00e9sek": {
|
||||||
"1411. Egy\u00e9b (\u00fczemi \u2013 \u00fczleti), berendez\u00e9sek, felszerel\u00e9sek brutt\u00f3 \u00e9rt\u00e9ke": {
|
"1411. Egy\u00e9b (\u00fczemi \u2013 \u00fczleti), berendez\u00e9sek, felszerel\u00e9sek brutt\u00f3 \u00e9rt\u00e9ke": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"1418. Egy\u00e9b (\u00fczemi \u2013 \u00fczleti), berendez\u00e9sek, felszerel\u00e9sek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
"1418. Egy\u00e9b (\u00fczemi \u2013 \u00fczleti), berendez\u00e9sek, felszerel\u00e9sek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
||||||
"1419. Egy\u00e9b (\u00fczemi \u2013 \u00fczleti), berendez\u00e9sek, felszerel\u00e9sek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
"1419. Egy\u00e9b (\u00fczemi \u2013 \u00fczleti), berendez\u00e9sek, felszerel\u00e9sek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
||||||
},
|
},
|
||||||
"142. Egy\u00e9b j\u00e1rm\u0171vek": {
|
"142. Egy\u00e9b j\u00e1rm\u0171vek": {
|
||||||
"1421. Egy\u00e9b j\u00e1rm\u0171vek brutt\u00f3 \u00e9rt\u00e9ke": {
|
"1421. Egy\u00e9b j\u00e1rm\u0171vek brutt\u00f3 \u00e9rt\u00e9ke": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"1428. Egy\u00e9b j\u00e1rm\u0171vek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
"1428. Egy\u00e9b j\u00e1rm\u0171vek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
||||||
"1429. Egy\u00e9b j\u00e1rm\u0171vek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
"1429. Egy\u00e9b j\u00e1rm\u0171vek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
||||||
},
|
},
|
||||||
"143. Irodai, igazgat\u00e1si berendez\u00e9sek \u00e9s felszerel\u00e9sek": {
|
"143. Irodai, igazgat\u00e1si berendez\u00e9sek \u00e9s felszerel\u00e9sek": {
|
||||||
"1431. Irodai, igazgat\u00e1si berendez\u00e9sek \u00e9s felszerel\u00e9sek brutt\u00f3 \u00e9rt\u00e9ke": {
|
"1431. Irodai, igazgat\u00e1si berendez\u00e9sek \u00e9s felszerel\u00e9sek brutt\u00f3 \u00e9rt\u00e9ke": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"1438. Irodai, igazgat\u00e1si berendez\u00e9sek \u00e9s felszerel\u00e9sek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
"1438. Irodai, igazgat\u00e1si berendez\u00e9sek \u00e9s felszerel\u00e9sek terven fel\u00fcli \u00e9rt\u00e9kcs\u00f6kken\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {},
|
||||||
"1439. Irodai, igazgat\u00e1si berendez\u00e9sek \u00e9s felszerel\u00e9sek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
"1439. Irodai, igazgat\u00e1si berendez\u00e9sek \u00e9s felszerel\u00e9sek terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9se": {}
|
||||||
},
|
},
|
||||||
"144. Ki nem emelt egy\u00e9b berendez\u00e9sek, felszerel\u00e9sek": {
|
"144. Ki nem emelt egy\u00e9b berendez\u00e9sek, felszerel\u00e9sek": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"145. J\u00f3l\u00e9ti berendez\u00e9sek, felszerel\u00e9si t\u00e1rgyak \u00e9s k\u00e9pz\u0151m\u0171v\u00e9szeti alkot\u00e1sok": {
|
"145. J\u00f3l\u00e9ti berendez\u00e9sek, felszerel\u00e9si t\u00e1rgyak \u00e9s k\u00e9pz\u0151m\u0171v\u00e9szeti alkot\u00e1sok": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"147. Egy\u00e9b berendez\u00e9sek, felszerel\u00e9sek, j\u00e1rm\u0171vek \u00e9rt\u00e9khelyesb\u00edt\u00e9se": {
|
"147. Egy\u00e9b berendez\u00e9sek, felszerel\u00e9sek, j\u00e1rm\u0171vek \u00e9rt\u00e9khelyesb\u00edt\u00e9se": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"149. Kis \u00e9rt\u00e9k\u0171 egy\u00e9b berendez\u00e9sek, felszerel\u00e9sek, j\u00e1rm\u0171vek": {
|
"149. Kis \u00e9rt\u00e9k\u0171 egy\u00e9b berendez\u00e9sek, felszerel\u00e9sek, j\u00e1rm\u0171vek": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"15. TENY\u00c9SZ\u00c1LLATOK": {
|
"15. TENY\u00c9SZ\u00c1LLATOK": {
|
||||||
@ -124,7 +124,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"2. SZ\u00c1MLAOSZT\u00c1LY K\u00c9SZLETEK": {
|
"2. SZ\u00c1MLAOSZT\u00c1LY K\u00c9SZLETEK": {
|
||||||
"21-22. ANYAGOK": {
|
"21-22. ANYAGOK": {
|
||||||
@ -148,7 +148,7 @@
|
|||||||
"239. Befejezetlen termel\u00e9s \u00e9s f\u00e9lk\u00e9sz term\u00e9kek \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {}
|
"239. Befejezetlen termel\u00e9s \u00e9s f\u00e9lk\u00e9sz term\u00e9kek \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {}
|
||||||
},
|
},
|
||||||
"24. N\u00d6VEND\u00c9K-, H\u00cdZ\u00d3- \u00c9S EGY\u00c9B \u00c1LLATOK": {
|
"24. N\u00d6VEND\u00c9K-, H\u00cdZ\u00d3- \u00c9S EGY\u00c9B \u00c1LLATOK": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"25. K\u00c9SZTERM\u00c9KEK": {
|
"25. K\u00c9SZTERM\u00c9KEK": {
|
||||||
"251-257. K\u00e9szterm\u00e9kek": {},
|
"251-257. K\u00e9szterm\u00e9kek": {},
|
||||||
@ -157,61 +157,61 @@
|
|||||||
},
|
},
|
||||||
"26-28. \u00c1RUK ": {
|
"26-28. \u00c1RUK ": {
|
||||||
"261. Kereskedelmi \u00e1ruk": {
|
"261. Kereskedelmi \u00e1ruk": {
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 0
|
"isGroup": 0
|
||||||
},
|
},
|
||||||
"262. Idegen helyen t\u00e1rolt, bizom\u00e1nyba \u00e1tadott \u00e1ruk": {
|
"262. Idegen helyen t\u00e1rolt, bizom\u00e1nyba \u00e1tadott \u00e1ruk": {
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 0
|
"isGroup": 0
|
||||||
},
|
},
|
||||||
"263. T\u00e1rgyi eszk\u00f6z\u00f6k k\u00f6z\u00fcl \u00e1tsorolt \u00e1ruk": {
|
"263. T\u00e1rgyi eszk\u00f6z\u00f6k k\u00f6z\u00fcl \u00e1tsorolt \u00e1ruk": {
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 0
|
"isGroup": 0
|
||||||
},
|
},
|
||||||
"264. Bels\u0151 (egys\u00e9gek, tev\u00e9kenys\u00e9gek k\u00f6z\u00f6tti) \u00e1tad\u00e1s-\u00e1tv\u00e9tel \u00fctk\u00f6z\u0151sz\u00e1mla": {
|
"264. Bels\u0151 (egys\u00e9gek, tev\u00e9kenys\u00e9gek k\u00f6z\u00f6tti) \u00e1tad\u00e1s-\u00e1tv\u00e9tel \u00fctk\u00f6z\u0151sz\u00e1mla": {
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 0
|
"isGroup": 0
|
||||||
},
|
},
|
||||||
"269. Kereskedelmi \u00e1ruk \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {
|
"269. Kereskedelmi \u00e1ruk \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 0
|
"isGroup": 0
|
||||||
},
|
},
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"27. K\u00d6ZVET\u00cdTETT SZOLG\u00c1LTAT\u00c1SOK ": {
|
"27. K\u00d6ZVET\u00cdTETT SZOLG\u00c1LTAT\u00c1SOK ": {
|
||||||
"271. K\u00f6zvet\u00edtett szolg\u00e1ltat\u00e1sok": {},
|
"271. K\u00f6zvet\u00edtett szolg\u00e1ltat\u00e1sok": {},
|
||||||
"279. K\u00f6zvet\u00edtett szolg\u00e1ltat\u00e1sok \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {}
|
"279. K\u00f6zvet\u00edtett szolg\u00e1ltat\u00e1sok \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {}
|
||||||
},
|
},
|
||||||
"28. BET\u00c9TD\u00cdJAS G\u00d6NGY\u00d6LEGEK": {
|
"28. BET\u00c9TD\u00cdJAS G\u00d6NGY\u00d6LEGEK": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"3. SZ\u00c1MLAOSZT\u00c1LY K\u00d6VETEL\u00c9SEK, P\u00c9NZ\u00dcGYI ESZK\u00d6Z\u00d6K \u00c9S AKT\u00cdV ID\u00d5BELI ELHAT\u00c1ROL\u00c1SOK": {
|
"3. SZ\u00c1MLAOSZT\u00c1LY K\u00d6VETEL\u00c9SEK, P\u00c9NZ\u00dcGYI ESZK\u00d6Z\u00d6K \u00c9S AKT\u00cdV ID\u00d5BELI ELHAT\u00c1ROL\u00c1SOK": {
|
||||||
"31. K\u00d6VETEL\u00c9SEK \u00c1RUSZ\u00c1LL\u00cdT\u00c1SB\u00d3L \u00c9S SZOLG\u00c1LTAT\u00c1SB\u00d3L (VEV\u00d5K) ": {
|
"31. K\u00d6VETEL\u00c9SEK \u00c1RUSZ\u00c1LL\u00cdT\u00c1SB\u00d3L \u00c9S SZOLG\u00c1LTAT\u00c1SB\u00d3L (VEV\u00d5K) ": {
|
||||||
"311. Belf\u00f6ldi k\u00f6vetel\u00e9sek (forintban)": {
|
"311. Belf\u00f6ldi k\u00f6vetel\u00e9sek (forintban)": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"312. Belf\u00f6ldi k\u00f6vetel\u00e9sek (deviz\u00e1ban)": {
|
"312. Belf\u00f6ldi k\u00f6vetel\u00e9sek (deviz\u00e1ban)": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"315. Belf\u00f6ldi k\u00f6vetel\u00e9sek \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa ": {},
|
"315. Belf\u00f6ldi k\u00f6vetel\u00e9sek \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa ": {},
|
||||||
"316. K\u00fclf\u00f6ldi k\u00f6vetel\u00e9sek (forintban)": {
|
"316. K\u00fclf\u00f6ldi k\u00f6vetel\u00e9sek (forintban)": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"317. K\u00fclf\u00f6ldi k\u00f6vetel\u00e9sek (deviz\u00e1ban)": {
|
"317. K\u00fclf\u00f6ldi k\u00f6vetel\u00e9sek (deviz\u00e1ban)": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"319. K\u00fclf\u00f6ldi k\u00f6vetel\u00e9sek \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {}
|
"319. K\u00fclf\u00f6ldi k\u00f6vetel\u00e9sek \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {}
|
||||||
},
|
},
|
||||||
"32. K\u00d6VETEL\u00c9SEK KAPCSOLT V\u00c1LLALKOZ\u00c1SSAL SZEMBEN": {
|
"32. K\u00d6VETEL\u00c9SEK KAPCSOLT V\u00c1LLALKOZ\u00c1SSAL SZEMBEN": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"33. K\u00d6VETEL\u00c9SEK EGY\u00c9B R\u00c9SZESED\u00c9SI VISZONYBAN L\u00c9V\u00d5 V\u00c1LLALKOZ\u00c1SSAL SZEMBEN ": {
|
"33. K\u00d6VETEL\u00c9SEK EGY\u00c9B R\u00c9SZESED\u00c9SI VISZONYBAN L\u00c9V\u00d5 V\u00c1LLALKOZ\u00c1SSAL SZEMBEN ": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"34. V\u00c1LT\u00d3K\u00d6VETEL\u00c9SEK": {
|
"34. V\u00c1LT\u00d3K\u00d6VETEL\u00c9SEK": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"35. ADOTT EL\u00d5LEGEK": {
|
"35. ADOTT EL\u00d5LEGEK": {
|
||||||
"351. Immateri\u00e1lis javakra adott el\u0151legek": {},
|
"351. Immateri\u00e1lis javakra adott el\u0151legek": {},
|
||||||
@ -227,17 +227,17 @@
|
|||||||
"3613. Egy\u00e9b elsz\u00e1mol\u00e1sok a munkav\u00e1llal\u00f3kkal": {}
|
"3613. Egy\u00e9b elsz\u00e1mol\u00e1sok a munkav\u00e1llal\u00f3kkal": {}
|
||||||
},
|
},
|
||||||
"362. K\u00f6lts\u00e9gvet\u00e9ssel szembeni k\u00f6vetel\u00e9sek": {
|
"362. K\u00f6lts\u00e9gvet\u00e9ssel szembeni k\u00f6vetel\u00e9sek": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"363. R\u00f6vid lej\u00e1ratra k\u00f6lcs\u00f6nadott p\u00e9nzeszk\u00f6z\u00f6k": {
|
"363. R\u00f6vid lej\u00e1ratra k\u00f6lcs\u00f6nadott p\u00e9nzeszk\u00f6z\u00f6k": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"364. R\u00e9szesed\u00e9sekkel, \u00e9rt\u00e9kpap\u00edrokkal kapcsolatos k\u00f6vetel\u00e9sek": {
|
"364. R\u00e9szesed\u00e9sekkel, \u00e9rt\u00e9kpap\u00edrokkal kapcsolatos k\u00f6vetel\u00e9sek": {
|
||||||
"3641. R\u00f6vid lej\u00e1rat\u00fa k\u00f6lcs\u00f6n\u00f6k": {},
|
"3641. R\u00f6vid lej\u00e1rat\u00fa k\u00f6lcs\u00f6n\u00f6k": {},
|
||||||
"3642. Tart\u00f3san adott k\u00f6lcs\u00f6n\u00f6kb\u0151l \u00e1tsorolt k\u00f6vetel\u00e9sek": {}
|
"3642. Tart\u00f3san adott k\u00f6lcs\u00f6n\u00f6kb\u0151l \u00e1tsorolt k\u00f6vetel\u00e9sek": {}
|
||||||
},
|
},
|
||||||
"365. V\u00e1s\u00e1rolt \u00e9s kapott k\u00f6vetel\u00e9sek ": {
|
"365. V\u00e1s\u00e1rolt \u00e9s kapott k\u00f6vetel\u00e9sek ": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"366. R\u00e9szesed\u00e9sekkel, \u00e9rt\u00e9kpap\u00edrokkal kapcsolatos k\u00f6vetel\u00e9sek": {},
|
"366. R\u00e9szesed\u00e9sekkel, \u00e9rt\u00e9kpap\u00edrokkal kapcsolatos k\u00f6vetel\u00e9sek": {},
|
||||||
"367. Hat\u00e1rid\u0151s, opci\u00f3s \u00e9s swap \u00fcgyletekkel kapcsolatos k\u00f6vetel\u00e9sek": {},
|
"367. Hat\u00e1rid\u0151s, opci\u00f3s \u00e9s swap \u00fcgyletekkel kapcsolatos k\u00f6vetel\u00e9sek": {},
|
||||||
@ -276,7 +276,7 @@
|
|||||||
"381. P\u00e9nzt\u00e1r ": {
|
"381. P\u00e9nzt\u00e1r ": {
|
||||||
"3811. P\u00e9nzt\u00e1r-sz\u00e1mla": {},
|
"3811. P\u00e9nzt\u00e1r-sz\u00e1mla": {},
|
||||||
"3812. Elektronikus p\u00e9nzeszk\u00f6z\u00f6k ": {},
|
"3812. Elektronikus p\u00e9nzeszk\u00f6z\u00f6k ": {},
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"382. Valutap\u00e9nzt\u00e1r ": {
|
"382. Valutap\u00e9nzt\u00e1r ": {
|
||||||
"3821. Valutap\u00e9nzt\u00e1r-sz\u00e1mla": {},
|
"3821. Valutap\u00e9nzt\u00e1r-sz\u00e1mla": {},
|
||||||
@ -284,8 +284,8 @@
|
|||||||
},
|
},
|
||||||
"383. Csekkek": {},
|
"383. Csekkek": {},
|
||||||
"384. Elsz\u00e1mol\u00e1si bet\u00e9tsz\u00e1mla ": {
|
"384. Elsz\u00e1mol\u00e1si bet\u00e9tsz\u00e1mla ": {
|
||||||
"account_type": "Bank",
|
"accountType": "Bank",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"385. Elk\u00fcl\u00f6n\u00edtett bet\u00e9tsz\u00e1ml\u00e1k ": {
|
"385. Elk\u00fcl\u00f6n\u00edtett bet\u00e9tsz\u00e1ml\u00e1k ": {
|
||||||
"3851. Kamatoz\u00f3 bet\u00e9tsz\u00e1ml\u00e1k": {},
|
"3851. Kamatoz\u00f3 bet\u00e9tsz\u00e1ml\u00e1k": {},
|
||||||
@ -324,7 +324,7 @@
|
|||||||
},
|
},
|
||||||
"399. A k\u00f6vetel\u00e9s-jelleg\u0171 akt\u00edv id\u0151beli elhat\u00e1rol\u00e1sok \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {}
|
"399. A k\u00f6vetel\u00e9s-jelleg\u0171 akt\u00edv id\u0151beli elhat\u00e1rol\u00e1sok \u00e9rt\u00e9kveszt\u00e9se \u00e9s annak vissza\u00edr\u00e1sa": {}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"4. SZ\u00c1MLAOSZT\u00c1LY FORR\u00c1SOK": {
|
"4. SZ\u00c1MLAOSZT\u00c1LY FORR\u00c1SOK": {
|
||||||
"41. SAJ\u00c1T T\u00d5KE": {
|
"41. SAJ\u00c1T T\u00d5KE": {
|
||||||
@ -373,7 +373,7 @@
|
|||||||
"4452. Egy\u00e9b hossz\u00fa lej\u00e1rat\u00fa hitelek deviz\u00e1ban": {}
|
"4452. Egy\u00e9b hossz\u00fa lej\u00e1rat\u00fa hitelek deviz\u00e1ban": {}
|
||||||
},
|
},
|
||||||
"446. Tart\u00f3s k\u00f6telezetts\u00e9gek kapcsolt v\u00e1llalkoz\u00e1ssal szemben ": {
|
"446. Tart\u00f3s k\u00f6telezetts\u00e9gek kapcsolt v\u00e1llalkoz\u00e1ssal szemben ": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"447. Tart\u00f3s k\u00f6telezetts\u00e9gek egy\u00e9b r\u00e9szesed\u00e9si viszonyban l\u00e9v\u0151 v\u00e1llalkoz\u00e1ssal szemben": {},
|
"447. Tart\u00f3s k\u00f6telezetts\u00e9gek egy\u00e9b r\u00e9szesed\u00e9si viszonyban l\u00e9v\u0151 v\u00e1llalkoz\u00e1ssal szemben": {},
|
||||||
"448. P\u00e9nz\u00fcgyi l\u00edzing miatti k\u00f6telezetts\u00e9gek ": {},
|
"448. P\u00e9nz\u00fcgyi l\u00edzing miatti k\u00f6telezetts\u00e9gek ": {},
|
||||||
@ -396,15 +396,15 @@
|
|||||||
"454-456. K\u00f6telezetts\u00e9gek \u00e1rusz\u00e1ll\u00edt\u00e1sb\u00f3l \u00e9s szolg\u00e1ltat\u00e1sb\u00f3l (sz\u00e1ll\u00edt\u00f3k)": {
|
"454-456. K\u00f6telezetts\u00e9gek \u00e1rusz\u00e1ll\u00edt\u00e1sb\u00f3l \u00e9s szolg\u00e1ltat\u00e1sb\u00f3l (sz\u00e1ll\u00edt\u00f3k)": {
|
||||||
"454. Sz\u00e1ll\u00edt\u00f3k ": {
|
"454. Sz\u00e1ll\u00edt\u00f3k ": {
|
||||||
"4541. Belf\u00f6ldi anyag- \u00e9s \u00e1rusz\u00e1ll\u00edt\u00f3k ": {
|
"4541. Belf\u00f6ldi anyag- \u00e9s \u00e1rusz\u00e1ll\u00edt\u00f3k ": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"4542. K\u00fclf\u00f6ldi anyag- \u00e9s \u00e1rusz\u00e1ll\u00edt\u00f3k ": {
|
"4542. K\u00fclf\u00f6ldi anyag- \u00e9s \u00e1rusz\u00e1ll\u00edt\u00f3k ": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"4543. Belf\u00f6ldi szolg\u00e1ltat\u00f3k": {},
|
"4543. Belf\u00f6ldi szolg\u00e1ltat\u00f3k": {},
|
||||||
"4544. K\u00fclf\u00f6ldi szolg\u00e1ltat\u00f3k": {},
|
"4544. K\u00fclf\u00f6ldi szolg\u00e1ltat\u00f3k": {},
|
||||||
"4549. Nem sz\u00e1ml\u00e1zott sz\u00e1ll\u00edt\u00e1sok, szolg\u00e1ltat\u00e1sok ": {
|
"4549. Nem sz\u00e1ml\u00e1zott sz\u00e1ll\u00edt\u00e1sok, szolg\u00e1ltat\u00e1sok ": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"455. Beruh\u00e1z\u00e1si sz\u00e1ll\u00edt\u00f3k ": {
|
"455. Beruh\u00e1z\u00e1si sz\u00e1ll\u00edt\u00f3k ": {
|
||||||
@ -449,7 +449,7 @@
|
|||||||
"463-9. C\u00e9gaut\u00f3ad\u00f3 ": {}
|
"463-9. C\u00e9gaut\u00f3ad\u00f3 ": {}
|
||||||
},
|
},
|
||||||
"464. G\u00e9pj\u00e1rm\u0171 ad\u00f3 (c\u00e9gaut\u00f3ad\u00f3) elsz\u00e1mol\u00e1sa": {
|
"464. G\u00e9pj\u00e1rm\u0171 ad\u00f3 (c\u00e9gaut\u00f3ad\u00f3) elsz\u00e1mol\u00e1sa": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"465. V\u00e1m- \u00e9s p\u00e9nz\u00fcgy\u0151rs\u00e9g elsz\u00e1mol\u00e1si sz\u00e1mla ": {
|
"465. V\u00e1m- \u00e9s p\u00e9nz\u00fcgy\u0151rs\u00e9g elsz\u00e1mol\u00e1si sz\u00e1mla ": {
|
||||||
"4651. V\u00e1mk\u00f6lts\u00e9gek \u00e9s egy\u00e9b v\u00e1mterhek elsz\u00e1mol\u00e1si sz\u00e1mla": {},
|
"4651. V\u00e1mk\u00f6lts\u00e9gek \u00e9s egy\u00e9b v\u00e1mterhek elsz\u00e1mol\u00e1si sz\u00e1mla": {},
|
||||||
@ -524,7 +524,7 @@
|
|||||||
"493. Ad\u00f3zott eredm\u00e9ny elsz\u00e1mol\u00e1si sz\u00e1mla": {},
|
"493. Ad\u00f3zott eredm\u00e9ny elsz\u00e1mol\u00e1si sz\u00e1mla": {},
|
||||||
"494. El\u0151z\u0151 \u00e9vi ad\u00f3zott eredm\u00e9ny elsz\u00e1mol\u00e1sa": {}
|
"494. El\u0151z\u0151 \u00e9vi ad\u00f3zott eredm\u00e9ny elsz\u00e1mol\u00e1sa": {}
|
||||||
},
|
},
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
},
|
},
|
||||||
"5. SZ\u00c1MLAOSZT\u00c1LY K\u00d6LTS\u00c9GNEMEK": {
|
"5. SZ\u00c1MLAOSZT\u00c1LY K\u00d6LTS\u00c9GNEMEK": {
|
||||||
"51 - 53. ANYAGJELLEG\u00db R\u00c1FORD\u00cdT\u00c1SOK ": {
|
"51 - 53. ANYAGJELLEG\u00db R\u00c1FORD\u00cdT\u00c1SOK ": {
|
||||||
@ -605,7 +605,7 @@
|
|||||||
"57. \u00c9RT\u00c9KCS\u00d6KKEN\u00c9SI LE\u00cdR\u00c1S": {
|
"57. \u00c9RT\u00c9KCS\u00d6KKEN\u00c9SI LE\u00cdR\u00c1S": {
|
||||||
"571. Terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9si le\u00edr\u00e1s ": {
|
"571. Terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9si le\u00edr\u00e1s ": {
|
||||||
"5711. Terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9si le\u00edr\u00e1s ": {
|
"5711. Terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9si le\u00edr\u00e1s ": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"5712. Kiemelt, kis \u00e9rt\u00e9k\u0171 (50 eFt egyedi beszerz\u00e9si \u00e9rt\u00e9k alatti) eszk\u00f6z\u00f6k terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9si le\u00edr\u00e1sa": {},
|
"5712. Kiemelt, kis \u00e9rt\u00e9k\u0171 (50 eFt egyedi beszerz\u00e9si \u00e9rt\u00e9k alatti) eszk\u00f6z\u00f6k terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9si le\u00edr\u00e1sa": {},
|
||||||
"57121. Kis \u00e9rt\u00e9k\u0171 (50 eFt egyedi beszerz\u00e9si \u00e9rt\u00e9k alatti) vagyoni \u00e9rt\u00e9k\u0171 jogok terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9si le\u00edr\u00e1sa": {},
|
"57121. Kis \u00e9rt\u00e9k\u0171 (50 eFt egyedi beszerz\u00e9si \u00e9rt\u00e9k alatti) vagyoni \u00e9rt\u00e9k\u0171 jogok terv szerinti \u00e9rt\u00e9kcs\u00f6kken\u00e9si le\u00edr\u00e1sa": {},
|
||||||
@ -619,9 +619,9 @@
|
|||||||
"589. Aktiv\u00e1lt saj\u00e1t teljes\u00edtm\u00e9nyek \u00e1tvezet\u00e9si sz\u00e1mla": {}
|
"589. Aktiv\u00e1lt saj\u00e1t teljes\u00edtm\u00e9nyek \u00e1tvezet\u00e9si sz\u00e1mla": {}
|
||||||
},
|
},
|
||||||
"59. K\u00d6LTS\u00c9GNEM \u00c1TVEZET\u00c9SI SZ\u00c1MLA": {
|
"59. K\u00d6LTS\u00c9GNEM \u00c1TVEZET\u00c9SI SZ\u00c1MLA": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"6. SZ\u00c1MLAOSZT\u00c1LY K\u00d6LTS\u00c9GHELYEK, \u00c1LTAL\u00c1NOS K\u00d6LTS\u00c9GEK": {
|
"6. SZ\u00c1MLAOSZT\u00c1LY K\u00d6LTS\u00c9GHELYEK, \u00c1LTAL\u00c1NOS K\u00d6LTS\u00c9GEK": {
|
||||||
"61. JAV\u00cdT\u00d3-KARBANTART\u00d3 \u00dcZEMEK K\u00d6LTS\u00c9GEI": {},
|
"61. JAV\u00cdT\u00d3-KARBANTART\u00d3 \u00dcZEMEK K\u00d6LTS\u00c9GEI": {},
|
||||||
@ -644,11 +644,11 @@
|
|||||||
"69. K\u00d6LTS\u00c9GHELYEK K\u00d6LTS\u00c9GNEMEK \u00c1TVEZET\u00c9SE": {
|
"69. K\u00d6LTS\u00c9GHELYEK K\u00d6LTS\u00c9GNEMEK \u00c1TVEZET\u00c9SE": {
|
||||||
"691. K\u00f6lts\u00e9ghelyek k\u00f6lts\u00e9geinek \u00e1tvezet\u00e9se": {}
|
"691. K\u00f6lts\u00e9ghelyek k\u00f6lts\u00e9geinek \u00e1tvezet\u00e9se": {}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"7. SZ\u00c1MLAOSZT\u00c1LY TEV\u00c9KENYS\u00c9GEKK\u00d6LTS\u00c9GEI": {
|
"7. SZ\u00c1MLAOSZT\u00c1LY TEV\u00c9KENYS\u00c9GEKK\u00d6LTS\u00c9GEI": {
|
||||||
"is_group": 1,
|
"isGroup": 1,
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"8. SZ\u00c1MLAOSZT\u00c1LY \u00c9RT\u00c9KES\u00cdT\u00c9S ELSZ\u00c1MOLT \u00d6NK\u00d6LTS\u00c9GE \u00c9S R\u00c1FORD\u00cdT\u00c1SOK": {
|
"8. SZ\u00c1MLAOSZT\u00c1LY \u00c9RT\u00c9KES\u00cdT\u00c9S ELSZ\u00c1MOLT \u00d6NK\u00d6LTS\u00c9GE \u00c9S R\u00c1FORD\u00cdT\u00c1SOK": {
|
||||||
"81-83. SZ\u00c1MLACSOPORTOK (az \u00f6sszk\u00f6lts\u00e9g elj\u00e1r\u00e1ssal k\u00e9sz\u00fcl\u0151 eredm\u00e9ny-kimutat\u00e1shoz)": {
|
"81-83. SZ\u00c1MLACSOPORTOK (az \u00f6sszk\u00f6lts\u00e9g elj\u00e1r\u00e1ssal k\u00e9sz\u00fcl\u0151 eredm\u00e9ny-kimutat\u00e1shoz)": {
|
||||||
@ -671,13 +671,13 @@
|
|||||||
"81-85. SZ\u00c1MLACSOPORTOK (a forgalmi k\u00f6lts\u00e9g elj\u00e1r\u00e1ssal k\u00e9sz\u00fcl\u0151 eredm\u00e9nykimutat\u00e1shoz)": {
|
"81-85. SZ\u00c1MLACSOPORTOK (a forgalmi k\u00f6lts\u00e9g elj\u00e1r\u00e1ssal k\u00e9sz\u00fcl\u0151 eredm\u00e9nykimutat\u00e1shoz)": {
|
||||||
"81-82. BELF\u00d6LDI \u00c9RT\u00c9KES\u00cdT\u00c9S K\u00d6ZVETLEN K\u00d6LTS\u00c9GEI": {
|
"81-82. BELF\u00d6LDI \u00c9RT\u00c9KES\u00cdT\u00c9S K\u00d6ZVETLEN K\u00d6LTS\u00c9GEI": {
|
||||||
"811. Belf\u00f6ldi \u00e9rt\u00e9kes\u00edt\u00e9s elsz\u00e1molt k\u00f6zvetlen \u00f6nk\u00f6lts\u00e9ge": {
|
"811. Belf\u00f6ldi \u00e9rt\u00e9kes\u00edt\u00e9s elsz\u00e1molt k\u00f6zvetlen \u00f6nk\u00f6lts\u00e9ge": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"812. Belf\u00f6ldi \u00e9rt\u00e9kes\u00edt\u00e9s eladott \u00e1ruk beszerz\u00e9si \u00e9rt\u00e9ke": {
|
"812. Belf\u00f6ldi \u00e9rt\u00e9kes\u00edt\u00e9s eladott \u00e1ruk beszerz\u00e9si \u00e9rt\u00e9ke": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"813. Belf\u00f6ldi \u00e9rt\u00e9kes\u00edt\u00e9s eladott (k\u00f6zvet\u00edtett) szolg\u00e1ltat\u00e1sok \u00e9rt\u00e9ke": {
|
"813. Belf\u00f6ldi \u00e9rt\u00e9kes\u00edt\u00e9s eladott (k\u00f6zvet\u00edtett) szolg\u00e1ltat\u00e1sok \u00e9rt\u00e9ke": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"83-84. EXPORT\u00c9RT\u00c9KES\u00cdT\u00c9S K\u00d6ZVETLEN K\u00d6LTS\u00c9GEI": {
|
"83-84. EXPORT\u00c9RT\u00c9KES\u00cdT\u00c9S K\u00d6ZVETLEN K\u00d6LTS\u00c9GEI": {
|
||||||
@ -764,7 +764,7 @@
|
|||||||
"893. Kisv\u00e1llalati ad\u00f3": {},
|
"893. Kisv\u00e1llalati ad\u00f3": {},
|
||||||
"899. Eredm\u00e9nyt terhel\u0151 egy\u00e9b ad\u00f3k": {}
|
"899. Eredm\u00e9nyt terhel\u0151 egy\u00e9b ad\u00f3k": {}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"9. SZ\u00c1MLAOSZT\u00c1LY BEV\u00c9TELEK": {
|
"9. SZ\u00c1MLAOSZT\u00c1LY BEV\u00c9TELEK": {
|
||||||
"91. BELF\u00d6LDI \u00c9RT\u00c9KES\u00cdT\u00c9S \u00c1RBEV\u00c9TELE": {
|
"91. BELF\u00d6LDI \u00c9RT\u00c9KES\u00cdT\u00c9S \u00c1RBEV\u00c9TELE": {
|
||||||
@ -812,7 +812,7 @@
|
|||||||
"9684. R\u00e9szesed\u00e9sek \u00e9rt\u00e9kveszt\u00e9s\u00e9nek vissza\u00edr\u00e1sa": {}
|
"9684. R\u00e9szesed\u00e9sek \u00e9rt\u00e9kveszt\u00e9s\u00e9nek vissza\u00edr\u00e1sa": {}
|
||||||
},
|
},
|
||||||
"969. K\u00fcl\u00f6nf\u00e9le egy\u00e9b bev\u00e9telek": {
|
"969. K\u00fcl\u00f6nf\u00e9le egy\u00e9b bev\u00e9telek": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"97. P\u00c9NZ\u00dcGYI M\u0170VELETEK BEV\u00c9TELEI": {
|
"97. P\u00c9NZ\u00dcGYI M\u0170VELETEK BEV\u00c9TELEI": {
|
||||||
@ -829,7 +829,7 @@
|
|||||||
"978. P\u00e9nz\u00fcgyi rendez\u00e9shez kapcsol\u00f3d\u00f3an kapott engedm\u00e9ny": {},
|
"978. P\u00e9nz\u00fcgyi rendez\u00e9shez kapcsol\u00f3d\u00f3an kapott engedm\u00e9ny": {},
|
||||||
"979. Egy\u00e9b vagyonn\u00f6veked\u00e9ssel j\u00e1r\u00f3 p\u00e9nz\u00fcgyi bev\u00e9telek": {}
|
"979. Egy\u00e9b vagyonn\u00f6veked\u00e9ssel j\u00e1r\u00f3 p\u00e9nz\u00fcgyi bev\u00e9telek": {}
|
||||||
},
|
},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,687 +1,687 @@
|
|||||||
{
|
{
|
||||||
"country_code": "id",
|
"countryCode": "id",
|
||||||
"name": "Indonesia - Chart of Accounts",
|
"name": "Indonesia - Chart of Accounts",
|
||||||
"tree": {
|
"tree": {
|
||||||
"Aktiva": {
|
"Aktiva": {
|
||||||
"Aktiva Lancar": {
|
"Aktiva Lancar": {
|
||||||
"Akun sementara": {
|
"Akun sementara": {
|
||||||
"Pembukaan sementara": {
|
"Pembukaan sementara": {
|
||||||
"account_number": "1171.000",
|
"accountNumber": "1171.000",
|
||||||
"account_type": "Temporary"
|
"accountType": "Temporary"
|
||||||
},
|
},
|
||||||
"account_number": "1170.000"
|
"accountNumber": "1170.000"
|
||||||
},
|
},
|
||||||
"Bank ": {
|
"Bank ": {
|
||||||
"Bank Other Currency": {
|
"Bank Other Currency": {
|
||||||
"account_number": "1122.000",
|
"accountNumber": "1122.000",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Bank Rupiah": {
|
"Bank Rupiah": {
|
||||||
"account_number": "1121.000",
|
"accountNumber": "1121.000",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_number": "1120.000",
|
"accountNumber": "1120.000",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Biaya di Bayar di Muka": {
|
"Biaya di Bayar di Muka": {
|
||||||
"Biaya di Bayar di Muka": {
|
"Biaya di Bayar di Muka": {
|
||||||
"Biaya di Bayar di Muka": {
|
"Biaya di Bayar di Muka": {
|
||||||
"Biaya d Bayar di Muka": {
|
"Biaya d Bayar di Muka": {
|
||||||
"account_number": "1151.00111"
|
"accountNumber": "1151.00111"
|
||||||
},
|
},
|
||||||
"account_number": "1151.001"
|
"accountNumber": "1151.001"
|
||||||
},
|
},
|
||||||
"account_number": "1151.000"
|
"accountNumber": "1151.000"
|
||||||
},
|
},
|
||||||
"account_number": "1150.000"
|
"accountNumber": "1150.000"
|
||||||
},
|
},
|
||||||
"Kas": {
|
"Kas": {
|
||||||
"Kas Mata Uang Lain": {
|
"Kas Mata Uang Lain": {
|
||||||
"Kas USD": {
|
"Kas USD": {
|
||||||
"account_number": "1112.0010",
|
"accountNumber": "1112.0010",
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"account_number": "1112.000"
|
"accountNumber": "1112.000"
|
||||||
},
|
},
|
||||||
"Kas Rupiah": {
|
"Kas Rupiah": {
|
||||||
"Kas Besar": {
|
"Kas Besar": {
|
||||||
"account_number": "1111.0020",
|
"accountNumber": "1111.0020",
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Kas Kecil": {
|
"Kas Kecil": {
|
||||||
"account_number": "1111.0010",
|
"accountNumber": "1111.0010",
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"account_number": "1111.000",
|
"accountNumber": "1111.000",
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"account_number": "1110.0000"
|
"accountNumber": "1110.0000"
|
||||||
},
|
},
|
||||||
"Pendapatan Yang Akan di Terima": {
|
"Pendapatan Yang Akan di Terima": {
|
||||||
"Pendapatan Yang di Terima": {
|
"Pendapatan Yang di Terima": {
|
||||||
"Pendapatan Yang Akan di Terima": {
|
"Pendapatan Yang Akan di Terima": {
|
||||||
"account_number": "1161.001"
|
"accountNumber": "1161.001"
|
||||||
},
|
},
|
||||||
"account_number": "1161.000"
|
"accountNumber": "1161.000"
|
||||||
},
|
},
|
||||||
"account_number": "1160.000"
|
"accountNumber": "1160.000"
|
||||||
},
|
},
|
||||||
"Persediaan Barang": {
|
"Persediaan Barang": {
|
||||||
"Persediaan Barang": {
|
"Persediaan Barang": {
|
||||||
"account_number": "1141.000",
|
"accountNumber": "1141.000",
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Uang Muka Pembelian": {
|
"Uang Muka Pembelian": {
|
||||||
"Uang Muka Pembelian": {
|
"Uang Muka Pembelian": {
|
||||||
"account_number": "1142.001",
|
"accountNumber": "1142.001",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"account_number": "1142.000"
|
"accountNumber": "1142.000"
|
||||||
},
|
},
|
||||||
"account_number": "1140.000"
|
"accountNumber": "1140.000"
|
||||||
},
|
},
|
||||||
"Piutang": {
|
"Piutang": {
|
||||||
"Piutang Dagang": {
|
"Piutang Dagang": {
|
||||||
"Piutang Dagang": {
|
"Piutang Dagang": {
|
||||||
"account_number": "1131.0010",
|
"accountNumber": "1131.0010",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_number": "1131.000"
|
"accountNumber": "1131.000"
|
||||||
},
|
},
|
||||||
"Piutang Lain lain": {
|
"Piutang Lain lain": {
|
||||||
"Piutang Lain-lain 1": {
|
"Piutang Lain-lain 1": {
|
||||||
"account_number": "1132.001",
|
"accountNumber": "1132.001",
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_number": "1132.000"
|
"accountNumber": "1132.000"
|
||||||
},
|
},
|
||||||
"account_number": "1130.000"
|
"accountNumber": "1130.000"
|
||||||
},
|
},
|
||||||
"account_number": "1100.0000"
|
"accountNumber": "1100.0000"
|
||||||
},
|
},
|
||||||
"Aktiva Tetap": {
|
"Aktiva Tetap": {
|
||||||
"Aktiva": {
|
"Aktiva": {
|
||||||
"Aktiva": {
|
"Aktiva": {
|
||||||
"Aktiva": {
|
"Aktiva": {
|
||||||
"account_number": "1211.001",
|
"accountNumber": "1211.001",
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"account_number": "1211.000"
|
"accountNumber": "1211.000"
|
||||||
},
|
},
|
||||||
"Akumulasi Penyusutan Aktiva": {
|
"Akumulasi Penyusutan Aktiva": {
|
||||||
"Akumulasi Penyusutan Aktiva": {
|
"Akumulasi Penyusutan Aktiva": {
|
||||||
"account_number": "1212.001",
|
"accountNumber": "1212.001",
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"account_number": "1212.000"
|
"accountNumber": "1212.000"
|
||||||
},
|
},
|
||||||
"account_number": "1210.000"
|
"accountNumber": "1210.000"
|
||||||
},
|
},
|
||||||
"Investasi": {
|
"Investasi": {
|
||||||
"Investasi": {
|
"Investasi": {
|
||||||
"Deposito": {
|
"Deposito": {
|
||||||
"account_number": "1231.003",
|
"accountNumber": "1231.003",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Investai Saham": {
|
"Investai Saham": {
|
||||||
"Investasi Saham": {
|
"Investasi Saham": {
|
||||||
"account_number": "1231.0011"
|
"accountNumber": "1231.0011"
|
||||||
},
|
},
|
||||||
"account_number": "1231.001"
|
"accountNumber": "1231.001"
|
||||||
},
|
},
|
||||||
"Investasi Perumahan": {
|
"Investasi Perumahan": {
|
||||||
"Investasi Perumahan": {
|
"Investasi Perumahan": {
|
||||||
"account_number": "1231.0021"
|
"accountNumber": "1231.0021"
|
||||||
},
|
},
|
||||||
"account_number": "1231.002"
|
"accountNumber": "1231.002"
|
||||||
},
|
},
|
||||||
"account_number": "1231.000"
|
"accountNumber": "1231.000"
|
||||||
},
|
},
|
||||||
"account_number": "1230.000"
|
"accountNumber": "1230.000"
|
||||||
},
|
},
|
||||||
"account_number": "1200.000"
|
"accountNumber": "1200.000"
|
||||||
},
|
},
|
||||||
"account_number": "1000.0000",
|
"accountNumber": "1000.0000",
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"Beban": {
|
"Beban": {
|
||||||
"Beban Lain lain": {
|
"Beban Lain lain": {
|
||||||
"Beban Lain lain": {
|
"Beban Lain lain": {
|
||||||
"Beban Adm Bank": {
|
"Beban Adm Bank": {
|
||||||
"account_number": "5510.001"
|
"accountNumber": "5510.001"
|
||||||
},
|
},
|
||||||
"Beban Bunga Kredit Rekening Koran Bank": {
|
"Beban Bunga Kredit Rekening Koran Bank": {
|
||||||
"account_number": "5510.004"
|
"accountNumber": "5510.004"
|
||||||
},
|
},
|
||||||
"Beban Bunga Pinjaman Pada Pihak Ke 3": {
|
"Beban Bunga Pinjaman Pada Pihak Ke 3": {
|
||||||
"account_number": "5510.005"
|
"accountNumber": "5510.005"
|
||||||
},
|
},
|
||||||
"Beban Notaris Dan ADM Kredit Bank": {
|
"Beban Notaris Dan ADM Kredit Bank": {
|
||||||
"account_number": "5510.003"
|
"accountNumber": "5510.003"
|
||||||
},
|
},
|
||||||
"Beban Pajak Bumi & Bangunan": {
|
"Beban Pajak Bumi & Bangunan": {
|
||||||
"account_number": "5510.006"
|
"accountNumber": "5510.006"
|
||||||
},
|
},
|
||||||
"Beban Pajak PPN": {
|
"Beban Pajak PPN": {
|
||||||
"account_number": "5510.008"
|
"accountNumber": "5510.008"
|
||||||
},
|
},
|
||||||
"Beban Pajak Penghasilan ": {
|
"Beban Pajak Penghasilan ": {
|
||||||
"account_number": "5510.007"
|
"accountNumber": "5510.007"
|
||||||
},
|
},
|
||||||
"Beban Provisi Pinjaman Bank": {
|
"Beban Provisi Pinjaman Bank": {
|
||||||
"account_number": "5510.002"
|
"accountNumber": "5510.002"
|
||||||
},
|
},
|
||||||
"Selisih Kurs": {
|
"Selisih Kurs": {
|
||||||
"account_number": "5510.010",
|
"accountNumber": "5510.010",
|
||||||
"account_type": "Round Off"
|
"accountType": "Round Off"
|
||||||
},
|
},
|
||||||
"Selisih Pembayaran Customer": {
|
"Selisih Pembayaran Customer": {
|
||||||
"account_number": "5510.009",
|
"accountNumber": "5510.009",
|
||||||
"account_type": "Round Off"
|
"accountType": "Round Off"
|
||||||
},
|
},
|
||||||
"account_number": "5510.000"
|
"accountNumber": "5510.000"
|
||||||
},
|
},
|
||||||
"account_number": "5500.000"
|
"accountNumber": "5500.000"
|
||||||
},
|
},
|
||||||
"Beban Langsung": {
|
"Beban Langsung": {
|
||||||
"Beban Penjualan": {
|
"Beban Penjualan": {
|
||||||
"Biaya Asuransi Kendaraan Operasional": {
|
"Biaya Asuransi Kendaraan Operasional": {
|
||||||
"account_number": "5110.009"
|
"accountNumber": "5110.009"
|
||||||
},
|
},
|
||||||
"Biaya BBM": {
|
"Biaya BBM": {
|
||||||
"account_number": "5110.001"
|
"accountNumber": "5110.001"
|
||||||
},
|
},
|
||||||
"Biaya Barang Rusak": {
|
"Biaya Barang Rusak": {
|
||||||
"account_number": "5110.007"
|
"accountNumber": "5110.007"
|
||||||
},
|
},
|
||||||
"Biaya Bonus, Hadiah, dan Sampel": {
|
"Biaya Bonus, Hadiah, dan Sampel": {
|
||||||
"account_number": "5110.013"
|
"accountNumber": "5110.013"
|
||||||
},
|
},
|
||||||
"Biaya Entertainment dan Pergaulan": {
|
"Biaya Entertainment dan Pergaulan": {
|
||||||
"account_number": "5110.014"
|
"accountNumber": "5110.014"
|
||||||
},
|
},
|
||||||
"Biaya Kebutuhan Penjualan": {
|
"Biaya Kebutuhan Penjualan": {
|
||||||
"account_number": "5110.011"
|
"accountNumber": "5110.011"
|
||||||
},
|
},
|
||||||
"Biaya Kuli": {
|
"Biaya Kuli": {
|
||||||
"account_number": "5110.005"
|
"accountNumber": "5110.005"
|
||||||
},
|
},
|
||||||
"Biaya Leasing Kendaraan Operasional": {
|
"Biaya Leasing Kendaraan Operasional": {
|
||||||
"account_number": "5110.010"
|
"accountNumber": "5110.010"
|
||||||
},
|
},
|
||||||
"Biaya Parkir": {
|
"Biaya Parkir": {
|
||||||
"account_number": "5110.003"
|
"accountNumber": "5110.003"
|
||||||
},
|
},
|
||||||
"Biaya Penjualan Lain Lain": {
|
"Biaya Penjualan Lain Lain": {
|
||||||
"account_number": "5110.019"
|
"accountNumber": "5110.019"
|
||||||
},
|
},
|
||||||
"Biaya Perbaikan Kendaraan Operasional": {
|
"Biaya Perbaikan Kendaraan Operasional": {
|
||||||
"account_number": "5110.008"
|
"accountNumber": "5110.008"
|
||||||
},
|
},
|
||||||
"Biaya Perjalanan Dinas": {
|
"Biaya Perjalanan Dinas": {
|
||||||
"account_number": "5110.006"
|
"accountNumber": "5110.006"
|
||||||
},
|
},
|
||||||
"Biaya Piutang Tak Tertagih": {
|
"Biaya Piutang Tak Tertagih": {
|
||||||
"account_number": "5110.017"
|
"accountNumber": "5110.017"
|
||||||
},
|
},
|
||||||
"Biaya Sample": {
|
"Biaya Sample": {
|
||||||
"account_number": "5110.012"
|
"accountNumber": "5110.012"
|
||||||
},
|
},
|
||||||
"Biaya Sewa Gudang": {
|
"Biaya Sewa Gudang": {
|
||||||
"account_number": "5110.015"
|
"accountNumber": "5110.015"
|
||||||
},
|
},
|
||||||
"Biaya Sewa Peralatan Gudang": {
|
"Biaya Sewa Peralatan Gudang": {
|
||||||
"account_number": "5110.016"
|
"accountNumber": "5110.016"
|
||||||
},
|
},
|
||||||
"Biaya Susut Barang": {
|
"Biaya Susut Barang": {
|
||||||
"account_number": "5110.021"
|
"accountNumber": "5110.021"
|
||||||
},
|
},
|
||||||
"Biaya Tol": {
|
"Biaya Tol": {
|
||||||
"account_number": "5110.002"
|
"accountNumber": "5110.002"
|
||||||
},
|
},
|
||||||
"Biaya Upah Angkat/Turun Barang": {
|
"Biaya Upah Angkat/Turun Barang": {
|
||||||
"account_number": "5110.004"
|
"accountNumber": "5110.004"
|
||||||
},
|
},
|
||||||
"Penyesuaian Stock": {
|
"Penyesuaian Stock": {
|
||||||
"account_number": "5110.020",
|
"accountNumber": "5110.020",
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"Potongan Supplier": {
|
"Potongan Supplier": {
|
||||||
"account_number": "5110.018"
|
"accountNumber": "5110.018"
|
||||||
},
|
},
|
||||||
"account_number": "5110.000"
|
"accountNumber": "5110.000"
|
||||||
},
|
},
|
||||||
"Biaya Gaji & Kesejahteraan Pegawai": {
|
"Biaya Gaji & Kesejahteraan Pegawai": {
|
||||||
"Biaya Asuransi Kesehatan Pegawai": {
|
"Biaya Asuransi Kesehatan Pegawai": {
|
||||||
"account_number": "5120.004"
|
"accountNumber": "5120.004"
|
||||||
},
|
},
|
||||||
"Biaya Gaji & Kesejahteraan Lainnya": {
|
"Biaya Gaji & Kesejahteraan Lainnya": {
|
||||||
"account_number": "5120.007"
|
"accountNumber": "5120.007"
|
||||||
},
|
},
|
||||||
"Biaya Gaji Karyawan Harian": {
|
"Biaya Gaji Karyawan Harian": {
|
||||||
"account_number": "5120.002"
|
"accountNumber": "5120.002"
|
||||||
},
|
},
|
||||||
"Biaya Gaji Staff & Karyawan Tetap": {
|
"Biaya Gaji Staff & Karyawan Tetap": {
|
||||||
"account_number": "5120.001"
|
"accountNumber": "5120.001"
|
||||||
},
|
},
|
||||||
"Biaya Konsumsi": {
|
"Biaya Konsumsi": {
|
||||||
"account_number": "5120.006"
|
"accountNumber": "5120.006"
|
||||||
},
|
},
|
||||||
"Biaya Pengobatan": {
|
"Biaya Pengobatan": {
|
||||||
"account_number": "5120.003"
|
"accountNumber": "5120.003"
|
||||||
},
|
},
|
||||||
"Biaya THR, Bonus, dan Komisi": {
|
"Biaya THR, Bonus, dan Komisi": {
|
||||||
"account_number": "5120.005"
|
"accountNumber": "5120.005"
|
||||||
},
|
},
|
||||||
"account_number": "5120.000"
|
"accountNumber": "5120.000"
|
||||||
},
|
},
|
||||||
"Biaya Kantor & Gudang": {
|
"Biaya Kantor & Gudang": {
|
||||||
"Biaya Alat Tulis Kantor": {
|
"Biaya Alat Tulis Kantor": {
|
||||||
"account_number": "5130.005"
|
"accountNumber": "5130.005"
|
||||||
},
|
},
|
||||||
"Biaya Asuransi Bangunan": {
|
"Biaya Asuransi Bangunan": {
|
||||||
"account_number": "5130.014"
|
"accountNumber": "5130.014"
|
||||||
},
|
},
|
||||||
"Biaya Fotocopy, Photo, Print Out": {
|
"Biaya Fotocopy, Photo, Print Out": {
|
||||||
"account_number": "5130.004"
|
"accountNumber": "5130.004"
|
||||||
},
|
},
|
||||||
"Biaya Humas & Pergaulan": {
|
"Biaya Humas & Pergaulan": {
|
||||||
"account_number": "5130.009"
|
"accountNumber": "5130.009"
|
||||||
},
|
},
|
||||||
"Biaya KTR & GDG Lain Lain": {
|
"Biaya KTR & GDG Lain Lain": {
|
||||||
"account_number": "5130.018"
|
"accountNumber": "5130.018"
|
||||||
},
|
},
|
||||||
"Biaya PAM Gudang & Kantor": {
|
"Biaya PAM Gudang & Kantor": {
|
||||||
"account_number": "5130.002"
|
"accountNumber": "5130.002"
|
||||||
},
|
},
|
||||||
"Biaya PLN Gudang & Kantor": {
|
"Biaya PLN Gudang & Kantor": {
|
||||||
"account_number": "5130.001"
|
"accountNumber": "5130.001"
|
||||||
},
|
},
|
||||||
"Biaya Pemeliharaan Bgn Gudang": {
|
"Biaya Pemeliharaan Bgn Gudang": {
|
||||||
"account_number": "5130.008"
|
"accountNumber": "5130.008"
|
||||||
},
|
},
|
||||||
"Biaya Perizinan Kendaraan Operasional": {
|
"Biaya Perizinan Kendaraan Operasional": {
|
||||||
"account_number": "5130.017"
|
"accountNumber": "5130.017"
|
||||||
},
|
},
|
||||||
"Biaya Perizinan Usaha dan Bangunan": {
|
"Biaya Perizinan Usaha dan Bangunan": {
|
||||||
"account_number": "5130.016"
|
"accountNumber": "5130.016"
|
||||||
},
|
},
|
||||||
"Biaya Perlengkapan Gudang": {
|
"Biaya Perlengkapan Gudang": {
|
||||||
"account_number": "5130.010"
|
"accountNumber": "5130.010"
|
||||||
},
|
},
|
||||||
"Biaya Serba Serbi": {
|
"Biaya Serba Serbi": {
|
||||||
"account_number": "5130.012"
|
"accountNumber": "5130.012"
|
||||||
},
|
},
|
||||||
"Biaya Servis Peralatan Gudang": {
|
"Biaya Servis Peralatan Gudang": {
|
||||||
"account_number": "5130.007"
|
"accountNumber": "5130.007"
|
||||||
},
|
},
|
||||||
"Biaya Sewa Kantor": {
|
"Biaya Sewa Kantor": {
|
||||||
"account_number": "5130.013"
|
"accountNumber": "5130.013"
|
||||||
},
|
},
|
||||||
"Biaya Stamp Duty & Pos": {
|
"Biaya Stamp Duty & Pos": {
|
||||||
"account_number": "5130.006"
|
"accountNumber": "5130.006"
|
||||||
},
|
},
|
||||||
"Biaya Sumbangan": {
|
"Biaya Sumbangan": {
|
||||||
"account_number": "5130.015"
|
"accountNumber": "5130.015"
|
||||||
},
|
},
|
||||||
"Biaya TLP Gudang & Kantor": {
|
"Biaya TLP Gudang & Kantor": {
|
||||||
"account_number": "5130.003"
|
"accountNumber": "5130.003"
|
||||||
},
|
},
|
||||||
"Iuran Bulanan": {
|
"Iuran Bulanan": {
|
||||||
"account_number": "5130.011"
|
"accountNumber": "5130.011"
|
||||||
},
|
},
|
||||||
"account_number": "5130.000"
|
"accountNumber": "5130.000"
|
||||||
},
|
},
|
||||||
"account_number": "5100.000"
|
"accountNumber": "5100.000"
|
||||||
},
|
},
|
||||||
"Beban Tidak Langsung": {
|
"Beban Tidak Langsung": {
|
||||||
"Biaya Gaji & Kesejahteraan Pegawai Indirect": {
|
"Biaya Gaji & Kesejahteraan Pegawai Indirect": {
|
||||||
"Biaya Gaji Lain Lain": {
|
"Biaya Gaji Lain Lain": {
|
||||||
"account_number": "5210.005"
|
"accountNumber": "5210.005"
|
||||||
},
|
},
|
||||||
"Biaya Gaji Staff": {
|
"Biaya Gaji Staff": {
|
||||||
"account_number": "5210.001"
|
"accountNumber": "5210.001"
|
||||||
},
|
},
|
||||||
"Biaya Konsumsi": {
|
"Biaya Konsumsi": {
|
||||||
"account_number": "5210.004"
|
"accountNumber": "5210.004"
|
||||||
},
|
},
|
||||||
"Biaya Pengobatan & Kesehatan": {
|
"Biaya Pengobatan & Kesehatan": {
|
||||||
"account_number": "5210.003"
|
"accountNumber": "5210.003"
|
||||||
},
|
},
|
||||||
"Biaya THR dan Bonus Staff": {
|
"Biaya THR dan Bonus Staff": {
|
||||||
"account_number": "5210.002"
|
"accountNumber": "5210.002"
|
||||||
},
|
},
|
||||||
"account_number": "5210.000"
|
"accountNumber": "5210.000"
|
||||||
},
|
},
|
||||||
"Biaya Kantor Indirect": {
|
"Biaya Kantor Indirect": {
|
||||||
"Biaya Alat Tulis Kantor": {
|
"Biaya Alat Tulis Kantor": {
|
||||||
"account_number": "5230.006"
|
"accountNumber": "5230.006"
|
||||||
},
|
},
|
||||||
"Biaya Asuransi Bangunan": {
|
"Biaya Asuransi Bangunan": {
|
||||||
"account_number": "5230.005"
|
"accountNumber": "5230.005"
|
||||||
},
|
},
|
||||||
"Biaya Fotocopy, Photo, Print Out": {
|
"Biaya Fotocopy, Photo, Print Out": {
|
||||||
"account_number": "5230.007"
|
"accountNumber": "5230.007"
|
||||||
},
|
},
|
||||||
"Biaya Iuran Bulanan": {
|
"Biaya Iuran Bulanan": {
|
||||||
"account_number": "5230.012"
|
"accountNumber": "5230.012"
|
||||||
},
|
},
|
||||||
"Biaya KTR Lain Lain": {
|
"Biaya KTR Lain Lain": {
|
||||||
"account_number": "5230.016"
|
"accountNumber": "5230.016"
|
||||||
},
|
},
|
||||||
"Biaya Kirim Dokumen": {
|
"Biaya Kirim Dokumen": {
|
||||||
"account_number": "5230.008"
|
"accountNumber": "5230.008"
|
||||||
},
|
},
|
||||||
"Biaya PAM Kantor": {
|
"Biaya PAM Kantor": {
|
||||||
"account_number": "5230.002"
|
"accountNumber": "5230.002"
|
||||||
},
|
},
|
||||||
"Biaya PLN Kantor": {
|
"Biaya PLN Kantor": {
|
||||||
"account_number": "5230.001"
|
"accountNumber": "5230.001"
|
||||||
},
|
},
|
||||||
"Biaya Pemeliharaan Bangunan Kantor": {
|
"Biaya Pemeliharaan Bangunan Kantor": {
|
||||||
"account_number": "5230.011"
|
"accountNumber": "5230.011"
|
||||||
},
|
},
|
||||||
"Biaya Perizinan Bangunan": {
|
"Biaya Perizinan Bangunan": {
|
||||||
"account_number": "5230.014"
|
"accountNumber": "5230.014"
|
||||||
},
|
},
|
||||||
"Biaya Perizinan Kendaraan Dinas": {
|
"Biaya Perizinan Kendaraan Dinas": {
|
||||||
"account_number": "5230.015"
|
"accountNumber": "5230.015"
|
||||||
},
|
},
|
||||||
"Biaya Perlengkapan & Peralatan Kantor": {
|
"Biaya Perlengkapan & Peralatan Kantor": {
|
||||||
"account_number": "5230.009"
|
"accountNumber": "5230.009"
|
||||||
},
|
},
|
||||||
"Biaya Sewa Kantor": {
|
"Biaya Sewa Kantor": {
|
||||||
"account_number": "5230.004"
|
"accountNumber": "5230.004"
|
||||||
},
|
},
|
||||||
"Biaya Stamp Duty & Pos": {
|
"Biaya Stamp Duty & Pos": {
|
||||||
"account_number": "5230.017"
|
"accountNumber": "5230.017"
|
||||||
},
|
},
|
||||||
"Biaya Sumbangan": {
|
"Biaya Sumbangan": {
|
||||||
"account_number": "5230.013"
|
"accountNumber": "5230.013"
|
||||||
},
|
},
|
||||||
"Biaya TLP Kantor": {
|
"Biaya TLP Kantor": {
|
||||||
"account_number": "5230.003"
|
"accountNumber": "5230.003"
|
||||||
},
|
},
|
||||||
"Service Peralatan Kantor": {
|
"Service Peralatan Kantor": {
|
||||||
"account_number": "5230.010"
|
"accountNumber": "5230.010"
|
||||||
},
|
},
|
||||||
"account_number": "5230.000"
|
"accountNumber": "5230.000"
|
||||||
},
|
},
|
||||||
"Biaya Operational Indirect": {
|
"Biaya Operational Indirect": {
|
||||||
"Biaya Asuransi Kendaraan Dinas": {
|
"Biaya Asuransi Kendaraan Dinas": {
|
||||||
"account_number": "5220.006"
|
"accountNumber": "5220.006"
|
||||||
},
|
},
|
||||||
"Biaya BBM": {
|
"Biaya BBM": {
|
||||||
"account_number": "5220.001"
|
"accountNumber": "5220.001"
|
||||||
},
|
},
|
||||||
"Biaya Entertainment dan Pergaulan": {
|
"Biaya Entertainment dan Pergaulan": {
|
||||||
"account_number": "5220.008"
|
"accountNumber": "5220.008"
|
||||||
},
|
},
|
||||||
"Biaya Hadiah dan Bonus": {
|
"Biaya Hadiah dan Bonus": {
|
||||||
"account_number": "5220.009"
|
"accountNumber": "5220.009"
|
||||||
},
|
},
|
||||||
"Biaya Leasing Kendaraan Dinas": {
|
"Biaya Leasing Kendaraan Dinas": {
|
||||||
"account_number": "5220.007"
|
"accountNumber": "5220.007"
|
||||||
},
|
},
|
||||||
"Biaya Perbaikan Kendaraan Dinas": {
|
"Biaya Perbaikan Kendaraan Dinas": {
|
||||||
"account_number": "5220.005"
|
"accountNumber": "5220.005"
|
||||||
},
|
},
|
||||||
"Biaya Perjalanan Dinas": {
|
"Biaya Perjalanan Dinas": {
|
||||||
"account_number": "5220.004"
|
"accountNumber": "5220.004"
|
||||||
},
|
},
|
||||||
"Biaya TLP & HP": {
|
"Biaya TLP & HP": {
|
||||||
"account_number": "5220.003"
|
"accountNumber": "5220.003"
|
||||||
},
|
},
|
||||||
"Biaya Tol & Parkir": {
|
"Biaya Tol & Parkir": {
|
||||||
"account_number": "5220.002"
|
"accountNumber": "5220.002"
|
||||||
},
|
},
|
||||||
"account_number": "5220.000"
|
"accountNumber": "5220.000"
|
||||||
},
|
},
|
||||||
"account_number": "5200.000"
|
"accountNumber": "5200.000"
|
||||||
},
|
},
|
||||||
"Biaya Amortisasi": {
|
"Biaya Amortisasi": {
|
||||||
"Biaya Amortisasi": {
|
"Biaya Amortisasi": {
|
||||||
"account_number": "5410.000"
|
"accountNumber": "5410.000"
|
||||||
},
|
},
|
||||||
"account_number": "5400.000"
|
"accountNumber": "5400.000"
|
||||||
},
|
},
|
||||||
"Biaya Penyusutan": {
|
"Biaya Penyusutan": {
|
||||||
"Biaya Penyusutan": {
|
"Biaya Penyusutan": {
|
||||||
"By Peny Aktiva ": {
|
"By Peny Aktiva ": {
|
||||||
"account_number": "5310.001",
|
"accountNumber": "5310.001",
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"account_number": "5310.000"
|
"accountNumber": "5310.000"
|
||||||
},
|
},
|
||||||
"account_number": "5300.000"
|
"accountNumber": "5300.000"
|
||||||
},
|
},
|
||||||
"account_number": "5000.000",
|
"accountNumber": "5000.000",
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Modal": {
|
"Modal": {
|
||||||
"Laba": {
|
"Laba": {
|
||||||
"Laba Periode Berjalan": {
|
"Laba Periode Berjalan": {
|
||||||
"account_number": "3230.000"
|
"accountNumber": "3230.000"
|
||||||
},
|
},
|
||||||
"Laba Tahun Berjalan": {
|
"Laba Tahun Berjalan": {
|
||||||
"account_number": "3220.000"
|
"accountNumber": "3220.000"
|
||||||
},
|
},
|
||||||
"Laba di Tahan": {
|
"Laba di Tahan": {
|
||||||
"account_number": "3210.000"
|
"accountNumber": "3210.000"
|
||||||
},
|
},
|
||||||
"account_number": "3200.000"
|
"accountNumber": "3200.000"
|
||||||
},
|
},
|
||||||
"Modal": {
|
"Modal": {
|
||||||
"Modal di Setor": {
|
"Modal di Setor": {
|
||||||
"account_number": "3110.000"
|
"accountNumber": "3110.000"
|
||||||
},
|
},
|
||||||
"Prive P.Saham": {
|
"Prive P.Saham": {
|
||||||
"account_number": "3120.000"
|
"accountNumber": "3120.000"
|
||||||
},
|
},
|
||||||
"Saldo pembukaan Equity": {
|
"Saldo pembukaan Equity": {
|
||||||
"account_number": "3130.000"
|
"accountNumber": "3130.000"
|
||||||
},
|
},
|
||||||
"account_number": "3100.000"
|
"accountNumber": "3100.000"
|
||||||
},
|
},
|
||||||
"account_number": "3000.000",
|
"accountNumber": "3000.000",
|
||||||
"root_type": "Equity"
|
"rootType": "Equity"
|
||||||
},
|
},
|
||||||
"Passiva": {
|
"Passiva": {
|
||||||
"Pasiva Lancar": {
|
"Pasiva Lancar": {
|
||||||
"Biaya Yang Akan di Bayar": {
|
"Biaya Yang Akan di Bayar": {
|
||||||
"Biaya Yang Akan di Bayar": {
|
"Biaya Yang Akan di Bayar": {
|
||||||
"Biaya Yang Akan di Bayar": {
|
"Biaya Yang Akan di Bayar": {
|
||||||
"account_number": "2131.001"
|
"accountNumber": "2131.001"
|
||||||
},
|
},
|
||||||
"account_number": "2131.000"
|
"accountNumber": "2131.000"
|
||||||
},
|
},
|
||||||
"Biaya Yang Akan di Bayar - Freight": {
|
"Biaya Yang Akan di Bayar - Freight": {
|
||||||
"Biaya Yang Akan di Bayar - Freight": {
|
"Biaya Yang Akan di Bayar - Freight": {
|
||||||
"account_number": "2132.001",
|
"accountNumber": "2132.001",
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"account_number": "2132.000"
|
"accountNumber": "2132.000"
|
||||||
},
|
},
|
||||||
"account_number": "2130.000"
|
"accountNumber": "2130.000"
|
||||||
},
|
},
|
||||||
"Hutang Dagang": {
|
"Hutang Dagang": {
|
||||||
"Hutang Dagang Other Currency": {
|
"Hutang Dagang Other Currency": {
|
||||||
"Hutang Dagang Biaya Kirim Dalam Negeri": {
|
"Hutang Dagang Biaya Kirim Dalam Negeri": {
|
||||||
"account_number": "2112.005",
|
"accountNumber": "2112.005",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Hutang Dagang Biaya Kirim Luar Negeri (SGD)": {
|
"Hutang Dagang Biaya Kirim Luar Negeri (SGD)": {
|
||||||
"account_number": "2112.004",
|
"accountNumber": "2112.004",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Hutang Dagang Biaya Kirim Luar Negeri (USD)": {
|
"Hutang Dagang Biaya Kirim Luar Negeri (USD)": {
|
||||||
"account_number": "2112.003",
|
"accountNumber": "2112.003",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Hutang Dagang Luar Negeri (SGD)": {
|
"Hutang Dagang Luar Negeri (SGD)": {
|
||||||
"account_number": "2112.002",
|
"accountNumber": "2112.002",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Hutang Dagang Luar Negeri (USD)": {
|
"Hutang Dagang Luar Negeri (USD)": {
|
||||||
"account_number": "2112.001",
|
"accountNumber": "2112.001",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"account_number": "2112.000"
|
"accountNumber": "2112.000"
|
||||||
},
|
},
|
||||||
"Hutang Dagang Rupiah": {
|
"Hutang Dagang Rupiah": {
|
||||||
"HUtang Dagang Biaya Kirim Luar Negeri": {
|
"HUtang Dagang Biaya Kirim Luar Negeri": {
|
||||||
"account_number": "2111.004",
|
"accountNumber": "2111.004",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Hutang Dagang Biaya Kirim Dalam Negeri": {
|
"Hutang Dagang Biaya Kirim Dalam Negeri": {
|
||||||
"account_number": "2111.003",
|
"accountNumber": "2111.003",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Hutang Dagang Dalam Negeri": {
|
"Hutang Dagang Dalam Negeri": {
|
||||||
"account_number": "2111.001",
|
"accountNumber": "2111.001",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Hutang Dagang Luar Negeri": {
|
"Hutang Dagang Luar Negeri": {
|
||||||
"account_number": "2111.002",
|
"accountNumber": "2111.002",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"account_number": "2111.000"
|
"accountNumber": "2111.000"
|
||||||
},
|
},
|
||||||
"Stock Diterima Tapi Tidak Ditagih": {
|
"Stock Diterima Tapi Tidak Ditagih": {
|
||||||
"account_number": "2115.000",
|
"accountNumber": "2115.000",
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
},
|
},
|
||||||
"account_number": "2110.000"
|
"accountNumber": "2110.000"
|
||||||
},
|
},
|
||||||
"Hutang Pajak": {
|
"Hutang Pajak": {
|
||||||
"Hutang Pajak": {
|
"Hutang Pajak": {
|
||||||
"account_number": "2141.000",
|
"accountNumber": "2141.000",
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"account_number": "2140.000"
|
"accountNumber": "2140.000"
|
||||||
},
|
},
|
||||||
"Pendapatan di Terima di Muka": {
|
"Pendapatan di Terima di Muka": {
|
||||||
"Pendapatan di Terima di Muka": {
|
"Pendapatan di Terima di Muka": {
|
||||||
"Dp Penjualan": {
|
"Dp Penjualan": {
|
||||||
"account_number": "2121.001",
|
"accountNumber": "2121.001",
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"account_number": "2121.000"
|
"accountNumber": "2121.000"
|
||||||
},
|
},
|
||||||
"account_number": "2120.000"
|
"accountNumber": "2120.000"
|
||||||
},
|
},
|
||||||
"account_number": "2100.000"
|
"accountNumber": "2100.000"
|
||||||
},
|
},
|
||||||
"Passiva Tetap": {
|
"Passiva Tetap": {
|
||||||
"Hutang Lain Lain": {
|
"Hutang Lain Lain": {
|
||||||
"Hutang Lain Lain": {
|
"Hutang Lain Lain": {
|
||||||
"Hutang": {
|
"Hutang": {
|
||||||
"account_number": "2241.001"
|
"accountNumber": "2241.001"
|
||||||
},
|
},
|
||||||
"account_number": "2241.000"
|
"accountNumber": "2241.000"
|
||||||
},
|
},
|
||||||
"account_number": "2240.000"
|
"accountNumber": "2240.000"
|
||||||
},
|
},
|
||||||
"Hutang Leasing Kendaraan": {
|
"Hutang Leasing Kendaraan": {
|
||||||
"Hutang Leasing Kendaraan": {
|
"Hutang Leasing Kendaraan": {
|
||||||
"Hutang Leasing Kendaraan": {
|
"Hutang Leasing Kendaraan": {
|
||||||
"account_number": "2231.001"
|
"accountNumber": "2231.001"
|
||||||
},
|
},
|
||||||
"account_number": "2231.000"
|
"accountNumber": "2231.000"
|
||||||
},
|
},
|
||||||
"account_number": "2230.000"
|
"accountNumber": "2230.000"
|
||||||
},
|
},
|
||||||
"Hutang Pada Bank": {
|
"Hutang Pada Bank": {
|
||||||
"Hutang Bank": {
|
"Hutang Bank": {
|
||||||
"Hutang": {
|
"Hutang": {
|
||||||
"account_number": "2221.001"
|
"accountNumber": "2221.001"
|
||||||
},
|
},
|
||||||
"account_number": "2221.000"
|
"accountNumber": "2221.000"
|
||||||
},
|
},
|
||||||
"account_number": "2220.000"
|
"accountNumber": "2220.000"
|
||||||
},
|
},
|
||||||
"Hutang Pada Pihak ke 3": {
|
"Hutang Pada Pihak ke 3": {
|
||||||
"Hutang Bunga Pinjaman Pihak Ke 3 Tidak Rutin": {
|
"Hutang Bunga Pinjaman Pihak Ke 3 Tidak Rutin": {
|
||||||
"Hutang Bunga": {
|
"Hutang Bunga": {
|
||||||
"account_number": "2213.001"
|
"accountNumber": "2213.001"
|
||||||
},
|
},
|
||||||
"account_number": "2213.000"
|
"accountNumber": "2213.000"
|
||||||
},
|
},
|
||||||
"Pinjaman Pihak ke 3 Rutin": {
|
"Pinjaman Pihak ke 3 Rutin": {
|
||||||
"Hutang": {
|
"Hutang": {
|
||||||
"account_number": "2211.001"
|
"accountNumber": "2211.001"
|
||||||
},
|
},
|
||||||
"account_number": "2211.000"
|
"accountNumber": "2211.000"
|
||||||
},
|
},
|
||||||
"Pinjaman Pihak ke 3 Tidak Rutin": {
|
"Pinjaman Pihak ke 3 Tidak Rutin": {
|
||||||
"Hutang": {
|
"Hutang": {
|
||||||
"account_number": "2212.001"
|
"accountNumber": "2212.001"
|
||||||
},
|
},
|
||||||
"account_number": "2212.000"
|
"accountNumber": "2212.000"
|
||||||
},
|
},
|
||||||
"account_number": "2210.000"
|
"accountNumber": "2210.000"
|
||||||
},
|
},
|
||||||
"account_number": "2200.000"
|
"accountNumber": "2200.000"
|
||||||
},
|
},
|
||||||
"account_number": "2000.000",
|
"accountNumber": "2000.000",
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
},
|
},
|
||||||
"Penjualan": {
|
"Penjualan": {
|
||||||
"Harga Pokok Pembelian": {
|
"Harga Pokok Pembelian": {
|
||||||
"HPP Pembelian": {
|
"HPP Pembelian": {
|
||||||
"account_number": "4210.000",
|
"accountNumber": "4210.000",
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"account_number": "4200.000"
|
"accountNumber": "4200.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Lain lain": {
|
"Pendapatan Lain lain": {
|
||||||
"Pendapatan Bunga Bank": {
|
"Pendapatan Bunga Bank": {
|
||||||
"account_number": "4410.000"
|
"accountNumber": "4410.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Bunga Dari Pihak Ke 3": {
|
"Pendapatan Bunga Dari Pihak Ke 3": {
|
||||||
"account_number": "4420.000"
|
"accountNumber": "4420.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Keuntungan Penjualan Aktiva": {
|
"Pendapatan Keuntungan Penjualan Aktiva": {
|
||||||
"account_number": "4430.000"
|
"accountNumber": "4430.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Komisi": {
|
"Pendapatan Komisi": {
|
||||||
"account_number": "4440.000"
|
"accountNumber": "4440.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Lain lain": {
|
"Pendapatan Lain lain": {
|
||||||
"account_number": "4480.000"
|
"accountNumber": "4480.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Penjualan Barang BS": {
|
"Pendapatan Penjualan Barang BS": {
|
||||||
"account_number": "4470.000"
|
"accountNumber": "4470.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Sewa Gudang": {
|
"Pendapatan Sewa Gudang": {
|
||||||
"account_number": "4450.000"
|
"accountNumber": "4450.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Sewa Lain lain": {
|
"Pendapatan Sewa Lain lain": {
|
||||||
"account_number": "4460.000"
|
"accountNumber": "4460.000"
|
||||||
},
|
},
|
||||||
"account_number": "4400.000"
|
"accountNumber": "4400.000"
|
||||||
},
|
},
|
||||||
"Pendapatan Service/Jasa": {
|
"Pendapatan Service/Jasa": {
|
||||||
"Pendapatan Service": {
|
"Pendapatan Service": {
|
||||||
"account_number": "4310.000"
|
"accountNumber": "4310.000"
|
||||||
},
|
},
|
||||||
"account_number": "4300.000"
|
"accountNumber": "4300.000"
|
||||||
},
|
},
|
||||||
"Penjualan Barang Dagangan": {
|
"Penjualan Barang Dagangan": {
|
||||||
"Penjualan": {
|
"Penjualan": {
|
||||||
"account_number": "4110.000"
|
"accountNumber": "4110.000"
|
||||||
},
|
},
|
||||||
"Potongan Penjualan": {
|
"Potongan Penjualan": {
|
||||||
"account_number": "4130.000"
|
"accountNumber": "4130.000"
|
||||||
},
|
},
|
||||||
"Retur Penjualan": {
|
"Retur Penjualan": {
|
||||||
"account_number": "4120.000"
|
"accountNumber": "4120.000"
|
||||||
},
|
},
|
||||||
"account_number": "4100.000"
|
"accountNumber": "4100.000"
|
||||||
},
|
},
|
||||||
"account_number": "4000.000",
|
"accountNumber": "4000.000",
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,85 +1,85 @@
|
|||||||
{
|
{
|
||||||
"country_code": "in",
|
"countryCode": "in",
|
||||||
"name": "India - Chart of Accounts",
|
"name": "India - Chart of Accounts",
|
||||||
"tree": {
|
"tree": {
|
||||||
"Application of Funds (Assets)": {
|
"Application of Funds (Assets)": {
|
||||||
"Current Assets": {
|
"Current Assets": {
|
||||||
"Accounts Receivable": {
|
"Accounts Receivable": {
|
||||||
"Debtors": {
|
"Debtors": {
|
||||||
"is_group": 0,
|
"isGroup": 0,
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Bank Accounts": {
|
"Bank Accounts": {
|
||||||
"account_type": "Bank",
|
"accountType": "Bank",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Cash In Hand": {
|
"Cash In Hand": {
|
||||||
"Cash": {
|
"Cash": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Loans and Advances (Assets)": {
|
"Loans and Advances (Assets)": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Securities and Deposits": {
|
"Securities and Deposits": {
|
||||||
"Earnest Money": {}
|
"Earnest Money": {}
|
||||||
},
|
},
|
||||||
"Stock Assets": {
|
"Stock Assets": {
|
||||||
"Stock In Hand": {
|
"Stock In Hand": {
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"Tax Assets": {
|
"Tax Assets": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Fixed Assets": {
|
"Fixed Assets": {
|
||||||
"Capital Equipments": {
|
"Capital Equipments": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Electronic Equipments": {
|
"Electronic Equipments": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Furnitures and Fixtures": {
|
"Furnitures and Fixtures": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Office Equipments": {
|
"Office Equipments": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Plants and Machineries": {
|
"Plants and Machineries": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Buildings": {
|
"Buildings": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Accumulated Depreciations": {
|
"Accumulated Depreciations": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Investments": {
|
"Investments": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Temporary Accounts": {
|
"Temporary Accounts": {
|
||||||
"Temporary Opening": {
|
"Temporary Opening": {
|
||||||
"account_type": "Temporary"
|
"accountType": "Temporary"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"Expenses": {
|
"Expenses": {
|
||||||
"Direct Expenses": {
|
"Direct Expenses": {
|
||||||
"Stock Expenses": {
|
"Stock Expenses": {
|
||||||
"Cost of Goods Sold": {
|
"Cost of Goods Sold": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Expenses Included In Valuation": {
|
"Expenses Included In Valuation": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"Stock Adjustment": {
|
"Stock Adjustment": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -87,11 +87,11 @@
|
|||||||
"Administrative Expenses": {},
|
"Administrative Expenses": {},
|
||||||
"Commission on Sales": {},
|
"Commission on Sales": {},
|
||||||
"Depreciation": {
|
"Depreciation": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Entertainment Expenses": {},
|
"Entertainment Expenses": {},
|
||||||
"Freight and Forwarding Charges": {
|
"Freight and Forwarding Charges": {
|
||||||
"account_type": "Chargeable"
|
"accountType": "Chargeable"
|
||||||
},
|
},
|
||||||
"Legal Expenses": {},
|
"Legal Expenses": {},
|
||||||
"Marketing Expenses": {},
|
"Marketing Expenses": {},
|
||||||
@ -101,7 +101,7 @@
|
|||||||
"Postal Expenses": {},
|
"Postal Expenses": {},
|
||||||
"Print and Stationary": {},
|
"Print and Stationary": {},
|
||||||
"Rounded Off": {
|
"Rounded Off": {
|
||||||
"account_type": "Round Off"
|
"accountType": "Round Off"
|
||||||
},
|
},
|
||||||
"Salary": {},
|
"Salary": {},
|
||||||
"Sales Expenses": {},
|
"Sales Expenses": {},
|
||||||
@ -112,23 +112,23 @@
|
|||||||
"Exchange Gain/Loss": {},
|
"Exchange Gain/Loss": {},
|
||||||
"Gain/Loss on Asset Disposal": {}
|
"Gain/Loss on Asset Disposal": {}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Income": {
|
"Income": {
|
||||||
"Direct Income": {
|
"Direct Income": {
|
||||||
"Sales": {
|
"Sales": {
|
||||||
"account_type": "Income Account"
|
"accountType": "Income Account"
|
||||||
},
|
},
|
||||||
"Service": {
|
"Service": {
|
||||||
"account_type": "Income Account"
|
"accountType": "Income Account"
|
||||||
},
|
},
|
||||||
"account_type": "Income Account"
|
"accountType": "Income Account"
|
||||||
},
|
},
|
||||||
"Indirect Income": {
|
"Indirect Income": {
|
||||||
"account_type": "Income Account",
|
"accountType": "Income Account",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
},
|
},
|
||||||
"Source of Funds (Liabilities)": {
|
"Source of Funds (Liabilities)": {
|
||||||
"Capital Account": {
|
"Capital Account": {
|
||||||
@ -138,18 +138,18 @@
|
|||||||
"Current Liabilities": {
|
"Current Liabilities": {
|
||||||
"Accounts Payable": {
|
"Accounts Payable": {
|
||||||
"Creditors": {
|
"Creditors": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Payroll Payable": {}
|
"Payroll Payable": {}
|
||||||
},
|
},
|
||||||
"Stock Liabilities": {
|
"Stock Liabilities": {
|
||||||
"Stock Received But Not Billed": {
|
"Stock Received But Not Billed": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Duties and Taxes": {
|
"Duties and Taxes": {
|
||||||
"TDS": {
|
"TDS": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"IGST": {
|
"IGST": {
|
||||||
"accountType": "Tax"
|
"accountType": "Tax"
|
||||||
@ -170,7 +170,7 @@
|
|||||||
"Bank Overdraft Account": {}
|
"Bank Overdraft Account": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"country_code": "mx",
|
"countryCode": "mx",
|
||||||
"name": "Mexico - Plan de Cuentas",
|
"name": "Mexico - Plan de Cuentas",
|
||||||
"tree": {
|
"tree": {
|
||||||
"ACTIVO": {
|
"ACTIVO": {
|
||||||
@ -8,16 +8,16 @@
|
|||||||
"COMPA\u00d1IAS AFILIADAS Y RELACIONADAS 1": {},
|
"COMPA\u00d1IAS AFILIADAS Y RELACIONADAS 1": {},
|
||||||
"CUENTAS POR COBRAR ACCIONISTAS": {
|
"CUENTAS POR COBRAR ACCIONISTAS": {
|
||||||
"CUENTAS POR COBRAR SOCIOS 1": {
|
"CUENTAS POR COBRAR SOCIOS 1": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"CUENTAS POR COBRAR EMPLEADOS": {
|
"CUENTAS POR COBRAR EMPLEADOS": {
|
||||||
"ANTICIPO DE NOMINA": {},
|
"ANTICIPO DE NOMINA": {},
|
||||||
"CUENTAS POR COBRAR EMPLEADOS 1": {
|
"CUENTAS POR COBRAR EMPLEADOS 1": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"CUENTAS POR COBRAR SOCIOS": {
|
"CUENTAS POR COBRAR SOCIOS": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"PRESTAMOS PERSONALES": {},
|
"PRESTAMOS PERSONALES": {},
|
||||||
"SEGURO DE VEHICULOS": {},
|
"SEGURO DE VEHICULOS": {},
|
||||||
@ -29,20 +29,20 @@
|
|||||||
"CUENTAS POR COBRAR NACIONALES": {
|
"CUENTAS POR COBRAR NACIONALES": {
|
||||||
"COBRO ANTICIPO CLIENTES": {},
|
"COBRO ANTICIPO CLIENTES": {},
|
||||||
"CUENTAS POR COBRAR CLIENTES": {
|
"CUENTAS POR COBRAR CLIENTES": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"CUENTAS POR COBRAR DETALLISTA": {
|
"CUENTAS POR COBRAR DETALLISTA": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"CUENTAS POR COBRAR MAYORISTA": {
|
"CUENTAS POR COBRAR MAYORISTA": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"EFECTOS POR COBRAR": {
|
"EFECTOS POR COBRAR": {
|
||||||
"EFECTOS POR COBRAR NACIONALES": {
|
"EFECTOS POR COBRAR NACIONALES": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"INTERESES POR COBRAR": {},
|
"INTERESES POR COBRAR": {},
|
||||||
"OTRAS CUENTAS POR COBRAR 1": {
|
"OTRAS CUENTAS POR COBRAR 1": {
|
||||||
@ -50,7 +50,7 @@
|
|||||||
"CHEQUES DEVUELTOS": {},
|
"CHEQUES DEVUELTOS": {},
|
||||||
"DEPOSITOS VARIOS": {},
|
"DEPOSITOS VARIOS": {},
|
||||||
"DEUDORES DIVERSOS": {
|
"DEUDORES DIVERSOS": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"ENTES GUBERNAMENTALES": {},
|
"ENTES GUBERNAMENTALES": {},
|
||||||
"RECLAMO AL BANCO": {},
|
"RECLAMO AL BANCO": {},
|
||||||
@ -69,17 +69,17 @@
|
|||||||
"BANCOS E INTITUCIONES FINANCIERAS": {
|
"BANCOS E INTITUCIONES FINANCIERAS": {
|
||||||
"BANCO X MXN": {},
|
"BANCO X MXN": {},
|
||||||
"BANCO X USD": {},
|
"BANCO X USD": {},
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"CAJAS": {
|
"CAJAS": {
|
||||||
"CAJA CHICA": {
|
"CAJA CHICA": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"CAJA PRINCIPAL": {
|
"CAJA PRINCIPAL": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"FONDO A DEPOSITAR": {},
|
"FONDO A DEPOSITAR": {},
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"INVERSIONES A CORTO PLAZO": {
|
"INVERSIONES A CORTO PLAZO": {
|
||||||
"INVERSIONES EN BONOS M.E.": {},
|
"INVERSIONES EN BONOS M.E.": {},
|
||||||
@ -109,46 +109,46 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"INVENTARIOS": {
|
"INVENTARIOS": {
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ACTIVO LARGO PLAZO": {
|
"ACTIVO LARGO PLAZO": {
|
||||||
"ACTIVO FIJO NETO": {
|
"ACTIVO FIJO NETO": {
|
||||||
"ACTIVO FIJO": {
|
"ACTIVO FIJO": {
|
||||||
"INMUEBLES COSTO ORIGINAL": {
|
"INMUEBLES COSTO ORIGINAL": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"LICENCIA Y SOFTWARE COSTO ORIGINAL": {},
|
"LICENCIA Y SOFTWARE COSTO ORIGINAL": {},
|
||||||
"MAQUINARIAS Y EQUIPOS COSTO ORIGINAL": {
|
"MAQUINARIAS Y EQUIPOS COSTO ORIGINAL": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"MUEBLES Y ENSERES COSTO ORIGINAL": {
|
"MUEBLES Y ENSERES COSTO ORIGINAL": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"TERRENO COSTO ORIGINAL": {},
|
"TERRENO COSTO ORIGINAL": {},
|
||||||
"VEHICULOS COSTO ORIGINAL": {
|
"VEHICULOS COSTO ORIGINAL": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"DEPRECIACION Y AMORTIZACION ACUMULADAS": {
|
"DEPRECIACION Y AMORTIZACION ACUMULADAS": {
|
||||||
"INMUEBLES COSTO ORIGINAL 1": {
|
"INMUEBLES COSTO ORIGINAL 1": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"LICENCIA Y SOFTWARE COSTO ORIGINAL 1": {},
|
"LICENCIA Y SOFTWARE COSTO ORIGINAL 1": {},
|
||||||
"MAQUINARIAS Y EQUIPOS COSTO ORIGINAL 1": {
|
"MAQUINARIAS Y EQUIPOS COSTO ORIGINAL 1": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"MEJORAS A PROPIEDAD COSTO ORIGINAL": {},
|
"MEJORAS A PROPIEDAD COSTO ORIGINAL": {},
|
||||||
"MUEBLES Y ENSERES COSTO ORIGINAL 1": {
|
"MUEBLES Y ENSERES COSTO ORIGINAL 1": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"TERRENOS COSTO ORIGINAL": {},
|
"TERRENOS COSTO ORIGINAL": {},
|
||||||
"VEHICULOS COSTO ORIGINAL 1": {
|
"VEHICULOS COSTO ORIGINAL 1": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"CARGOS DIFERIDOS": {
|
"CARGOS DIFERIDOS": {
|
||||||
@ -156,7 +156,7 @@
|
|||||||
"GASTOS DE CONSTITUCION": {},
|
"GASTOS DE CONSTITUCION": {},
|
||||||
"MARCA DE FABRICA": {},
|
"MARCA DE FABRICA": {},
|
||||||
"OTRAS CUENTAS POR COBRAR": {
|
"OTRAS CUENTAS POR COBRAR": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -180,7 +180,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"CAPITAL": {
|
"CAPITAL": {
|
||||||
"CAPITAL SOCIAL": {
|
"CAPITAL SOCIAL": {
|
||||||
@ -232,16 +232,16 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Equity"
|
"rootType": "Equity"
|
||||||
},
|
},
|
||||||
"COSTO": {
|
"COSTO": {
|
||||||
" Gastos incluidos en la valoraci\u00f3n": {
|
" Gastos incluidos en la valoraci\u00f3n": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"COSTO DE VENTAS": {
|
"COSTO DE VENTAS": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"CUENTAS DE ORDEN": {
|
"CUENTAS DE ORDEN": {
|
||||||
"CUENTAS DE ORDEN 1": {
|
"CUENTAS DE ORDEN 1": {
|
||||||
@ -261,7 +261,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"GASTOS": {
|
"GASTOS": {
|
||||||
"GASTOS OPERATIVOS": {
|
"GASTOS OPERATIVOS": {
|
||||||
@ -273,18 +273,18 @@
|
|||||||
"INMUEBLES": {},
|
"INMUEBLES": {},
|
||||||
"LICENCIA Y SOFTWARE": {},
|
"LICENCIA Y SOFTWARE": {},
|
||||||
"MAQUINARIAS Y EQUIPOS": {
|
"MAQUINARIAS Y EQUIPOS": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"MEJORAS A PROPIEDAD": {
|
"MEJORAS A PROPIEDAD": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"MUEBLES Y ENSERES": {
|
"MUEBLES Y ENSERES": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"VEHICULOS": {
|
"VEHICULOS": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"GASTOS COMERCIALIZACION": {
|
"GASTOS COMERCIALIZACION": {
|
||||||
@ -335,10 +335,10 @@
|
|||||||
"GASTOS GENERALES 1": {
|
"GASTOS GENERALES 1": {
|
||||||
"AGUA POTABLE Y REFRIGERIO": {},
|
"AGUA POTABLE Y REFRIGERIO": {},
|
||||||
"AJUSTE DE INVENTARIOS DONADOS": {
|
"AJUSTE DE INVENTARIOS DONADOS": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"AJUSTE DE INVENTARIOS OBSOLETOS": {
|
"AJUSTE DE INVENTARIOS OBSOLETOS": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"ARRENDAMIENTO": {},
|
"ARRENDAMIENTO": {},
|
||||||
"ARTICULOS DE OFICINA": {},
|
"ARTICULOS DE OFICINA": {},
|
||||||
@ -385,7 +385,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"INGRESOS": {
|
"INGRESOS": {
|
||||||
"INGRESOS OPERACIONALES": {
|
"INGRESOS OPERACIONALES": {
|
||||||
@ -405,7 +405,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
},
|
},
|
||||||
"OTROS INGRESOS (EGRESOS)": {
|
"OTROS INGRESOS (EGRESOS)": {
|
||||||
"EGRESOS": {
|
"EGRESOS": {
|
||||||
@ -448,11 +448,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
},
|
},
|
||||||
"PASIVO": {
|
"PASIVO": {
|
||||||
" Stock recibidas, pero no facturada": {
|
" Stock recibidas, pero no facturada": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
},
|
},
|
||||||
"OTROS PASIVOS A CORTO PLAZO": {
|
"OTROS PASIVOS A CORTO PLAZO": {
|
||||||
"OTROS PASIVOS A CORTO PLAZO 1": {
|
"OTROS PASIVOS A CORTO PLAZO 1": {
|
||||||
@ -490,24 +490,24 @@
|
|||||||
"COMPA\u00d1IAS AFILIADAS Y RELACIONADAS": {},
|
"COMPA\u00d1IAS AFILIADAS Y RELACIONADAS": {},
|
||||||
"CUENTAS POR PAGAR ACCIONISTAS": {
|
"CUENTAS POR PAGAR ACCIONISTAS": {
|
||||||
"CUENTAS POR PAGAR SOCIOS": {
|
"CUENTAS POR PAGAR SOCIOS": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"PROVEEDORES EXTRANJEROS": {},
|
"PROVEEDORES EXTRANJEROS": {},
|
||||||
"PROVEEDORES OCASIONALES": {
|
"PROVEEDORES OCASIONALES": {
|
||||||
"CUENTAS POR PAGAR PROVEEDORES": {
|
"CUENTAS POR PAGAR PROVEEDORES": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"OTRAS CUENTAS POR PAGAR": {
|
"OTRAS CUENTAS POR PAGAR": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"TARJETA DE CREDITO X": {
|
"TARJETA DE CREDITO X": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"GASTOS ACUMULADOS Y RETENCIONES POR PAGAR": {
|
"GASTOS ACUMULADOS Y RETENCIONES POR PAGAR": {
|
||||||
"CONTRIBUCIONES PATRONAL": {
|
"CONTRIBUCIONES PATRONAL": {
|
||||||
@ -521,18 +521,18 @@
|
|||||||
"CONDOMINIOS": {},
|
"CONDOMINIOS": {},
|
||||||
"CONVESION DE COMERCIALIZACION": {},
|
"CONVESION DE COMERCIALIZACION": {},
|
||||||
"IMPUESTOS MUNICIPALES POR PAGAR": {
|
"IMPUESTOS MUNICIPALES POR PAGAR": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"IMPUESTOS POR PAGAR 1": {
|
"IMPUESTOS POR PAGAR 1": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"INTERESES S/PRESTACIONES SOCIALES": {},
|
"INTERESES S/PRESTACIONES SOCIALES": {},
|
||||||
"NOMINA POR PAGAR": {
|
"NOMINA POR PAGAR": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"PATENTE INDUSTRIA Y COMERCIO": {},
|
"PATENTE INDUSTRIA Y COMERCIO": {},
|
||||||
"POLIZA DE SEGURO POR PAGAR": {
|
"POLIZA DE SEGURO POR PAGAR": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"PRESTACIONES SOCIALES": {},
|
"PRESTACIONES SOCIALES": {},
|
||||||
"PRIMA POR EFECIENCIA": {},
|
"PRIMA POR EFECIENCIA": {},
|
||||||
@ -596,7 +596,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"country_code": "ni",
|
"countryCode": "ni",
|
||||||
"name": "Nicaragua - Catalogo de Cuentas",
|
"name": "Nicaragua - Catalogo de Cuentas",
|
||||||
"tree": {
|
"tree": {
|
||||||
"Activo": {
|
"Activo": {
|
||||||
@ -12,52 +12,52 @@
|
|||||||
},
|
},
|
||||||
"Cuentas y Documentos por Cobrar a Clientes": {
|
"Cuentas y Documentos por Cobrar a Clientes": {
|
||||||
"Cuentas por Cobrar Moneda Extrangera": {
|
"Cuentas por Cobrar Moneda Extrangera": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Cuentas por Cobrar Moneda Nacional": {
|
"Cuentas por Cobrar Moneda Nacional": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Cuentas por Cobrar por Exportaciones": {
|
"Cuentas por Cobrar por Exportaciones": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Documentos por Cobrar Moneda Extrangera": {
|
"Documentos por Cobrar Moneda Extrangera": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Documentos por Cobrar Moneda Nacional": {
|
"Documentos por Cobrar Moneda Nacional": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Estimacion para Cuentas Incobrables": {}
|
"Estimacion para Cuentas Incobrables": {}
|
||||||
},
|
},
|
||||||
"Efectivo en Caja y Bancos": {
|
"Efectivo en Caja y Bancos": {
|
||||||
"Caja": {
|
"Caja": {
|
||||||
"Caja Chica Moneda Extrangera": {
|
"Caja Chica Moneda Extrangera": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Caja Chica Moneda Nacional": {
|
"Caja Chica Moneda Nacional": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Caja General Moneda Extrangera": {
|
"Caja General Moneda Extrangera": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Caja General Moneda Nacional": {
|
"Caja General Moneda Nacional": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Fondos por Depositar": {
|
"Fondos por Depositar": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Cuentas Bancarias": {
|
"Cuentas Bancarias": {
|
||||||
"Cuenta Corriente Moneda Extrangera": {
|
"Cuenta Corriente Moneda Extrangera": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Cuenta Corriente Moneda Nacional": {
|
"Cuenta Corriente Moneda Nacional": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Otros Equivalentes a Efectivo": {
|
"Otros Equivalentes a Efectivo": {
|
||||||
"account_type": "Cash",
|
"accountType": "Cash",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Impuestos Acreditables": {
|
"Impuestos Acreditables": {
|
||||||
@ -65,80 +65,80 @@
|
|||||||
"Impuesto a Valor Agregado Acreditable": {
|
"Impuesto a Valor Agregado Acreditable": {
|
||||||
"Acreditacion Proporcional": {},
|
"Acreditacion Proporcional": {},
|
||||||
"IVA Acreditable por Compra de Bienes": {
|
"IVA Acreditable por Compra de Bienes": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"IVA Acreditable por Importaciones": {
|
"IVA Acreditable por Importaciones": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"IVA Acreditable por Prestacion de Servicios y Uso y Goce de Bienes": {
|
"IVA Acreditable por Prestacion de Servicios y Uso y Goce de Bienes": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Retenciones Definitivas Sobre Rentas o Ganancias de Capital": {},
|
"Retenciones Definitivas Sobre Rentas o Ganancias de Capital": {},
|
||||||
"Retenciones a Cuenta de IMI Acreditables": {},
|
"Retenciones a Cuenta de IMI Acreditables": {},
|
||||||
"Retenciones a Cuenta de IR Acreditables": {
|
"Retenciones a Cuenta de IR Acreditables": {
|
||||||
"Retencion Operaciones Targeta Debito/Credito 1.5%": {
|
"Retencion Operaciones Targeta Debito/Credito 1.5%": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion por V/Bienes o P/Servicios 2%": {
|
"Retencion por V/Bienes o P/Servicios 2%": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Inventarios": {
|
"Inventarios": {
|
||||||
"Ajuste de Inventarios": {
|
"Ajuste de Inventarios": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"Todos los Almacenes": {
|
"Todos los Almacenes": {
|
||||||
"account_type": "Stock",
|
"accountType": "Stock",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"Otras Cuentas por Cobrar": {
|
"Otras Cuentas por Cobrar": {
|
||||||
"account_type": "Receivable",
|
"accountType": "Receivable",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Activo no Corriente": {
|
"Activo no Corriente": {
|
||||||
"Activo por Impuestos Diferidos": {
|
"Activo por Impuestos Diferidos": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Activos Intangibles": {
|
"Activos Intangibles": {
|
||||||
"Amortizacion de Activos Intangibles": {
|
"Amortizacion de Activos Intangibles": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Concesiones": {
|
"Concesiones": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Derechos de Autor": {
|
"Derechos de Autor": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Deterioro de Valor de Activos Intangibles": {},
|
"Deterioro de Valor de Activos Intangibles": {},
|
||||||
"Gastos de investigacion": {
|
"Gastos de investigacion": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Licencias": {
|
"Licencias": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Marcas Registradas": {
|
"Marcas Registradas": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Patentes": {
|
"Patentes": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Amortizables": {
|
"Amortizables": {
|
||||||
"Amortizacion de Activos Amortizables": {},
|
"Amortizacion de Activos Amortizables": {},
|
||||||
"Deterioro de Valaor de Activos Amortizables": {},
|
"Deterioro de Valaor de Activos Amortizables": {},
|
||||||
"Gastos Pre Operativos": {
|
"Gastos Pre Operativos": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"Gastos de Consitucion": {
|
"Gastos de Consitucion": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"Mejoras en Bienes Arrendados": {
|
"Mejoras en Bienes Arrendados": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Bienes en Arrendamiento Financiero": {
|
"Bienes en Arrendamiento Financiero": {
|
||||||
@ -147,103 +147,103 @@
|
|||||||
},
|
},
|
||||||
"Cuentas por Cobrar a Largo Plazo": {
|
"Cuentas por Cobrar a Largo Plazo": {
|
||||||
"Creditos a Largo Plazo": {
|
"Creditos a Largo Plazo": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Inversiones Permanentes": {
|
"Inversiones Permanentes": {
|
||||||
"Inversiones Permanentes 1": {
|
"Inversiones Permanentes 1": {
|
||||||
"account_type": "Fixed Asset",
|
"accountType": "Fixed Asset",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Negocios Conjuntos": {
|
"Negocios Conjuntos": {
|
||||||
"account_type": "Fixed Asset",
|
"accountType": "Fixed Asset",
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Inversiones a Largo Plazo": {
|
"Inversiones a Largo Plazo": {
|
||||||
"Depositos Bancarios a Plazo": {
|
"Depositos Bancarios a Plazo": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Intereses percibidos por adelantado": {
|
"Intereses percibidos por adelantado": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Titulos y Acciones": {
|
"Titulos y Acciones": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Propiedad Planta y Equipo": {
|
"Propiedad Planta y Equipo": {
|
||||||
"Almacenes": {},
|
"Almacenes": {},
|
||||||
"Depresiacion Acumulada": {
|
"Depresiacion Acumulada": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Edificios": {},
|
"Edificios": {},
|
||||||
"Equipo de Computo": {},
|
"Equipo de Computo": {},
|
||||||
"Maquinaria Industrial": {},
|
"Maquinaria Industrial": {},
|
||||||
"Mobiliario y Equipo de Oficinas": {},
|
"Mobiliario y Equipo de Oficinas": {},
|
||||||
"Otra Bienes Mobiliarios": {
|
"Otra Bienes Mobiliarios": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Otros Activos Inmobiliarios": {},
|
"Otros Activos Inmobiliarios": {},
|
||||||
"Parque Vehicular": {},
|
"Parque Vehicular": {},
|
||||||
"Terrenos": {},
|
"Terrenos": {},
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"Capital y Patrimonio": {
|
"Capital y Patrimonio": {
|
||||||
"Aporte de Socios": {
|
"Aporte de Socios": {
|
||||||
"Capital": {
|
"Capital": {
|
||||||
"Capital Social Pagado": {
|
"Capital Social Pagado": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Capital Social no Pagado": {
|
"Capital Social no Pagado": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Donaciones": {
|
"Donaciones": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Ganancias Acumuladas": {
|
"Ganancias Acumuladas": {
|
||||||
"Reservas": {
|
"Reservas": {
|
||||||
"Reservas Legales": {
|
"Reservas Legales": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Reservas Voluntarias": {
|
"Reservas Voluntarias": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Resultados": {
|
"Resultados": {
|
||||||
"Ajustes a Periodos Anteriores": {
|
"Ajustes a Periodos Anteriores": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Resultado del ejercicio": {
|
"Resultado del ejercicio": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Resultados Acumulados": {
|
"Resultados Acumulados": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Equity"
|
"rootType": "Equity"
|
||||||
},
|
},
|
||||||
"Costos y Gastos": {
|
"Costos y Gastos": {
|
||||||
"Costo de Venta": {
|
"Costo de Venta": {
|
||||||
"Costo de Bienes": {
|
"Costo de Bienes": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Costo de Produccion": {
|
"Costo de Produccion": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Costo de Servicios": {
|
"Costo de Servicios": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Costos y Gastos No Deducibles": {},
|
"Costos y Gastos No Deducibles": {},
|
||||||
"Gastopor Depreciacion": {
|
"Gastopor Depreciacion": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Gastos de Administracion": {
|
"Gastos de Administracion": {
|
||||||
"Alquileres": {},
|
"Alquileres": {},
|
||||||
@ -292,11 +292,11 @@
|
|||||||
"Certificacion de Cheques y Chequeras": {},
|
"Certificacion de Cheques y Chequeras": {},
|
||||||
"Perdida Cambiario": {},
|
"Perdida Cambiario": {},
|
||||||
"P\u00e9rdida en Venta de Activo Fijo": {
|
"P\u00e9rdida en Venta de Activo Fijo": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Siniestros": {}
|
"Siniestros": {}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Ingresos": {
|
"Ingresos": {
|
||||||
"Ingresos no Grabables": {
|
"Ingresos no Grabables": {
|
||||||
@ -315,74 +315,74 @@
|
|||||||
"Venta de Bienes o Prestacion de Servicios Grabados": {},
|
"Venta de Bienes o Prestacion de Servicios Grabados": {},
|
||||||
"Venta por Exportaciones": {}
|
"Venta por Exportaciones": {}
|
||||||
},
|
},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
},
|
},
|
||||||
"Pasivo": {
|
"Pasivo": {
|
||||||
"Obligaciones por Arrendamiento Financiero a Largo Plazo": {
|
"Obligaciones por Arrendamiento Financiero a Largo Plazo": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Pasivo Corriente": {
|
"Pasivo Corriente": {
|
||||||
"Anticipos de Clientes": {},
|
"Anticipos de Clientes": {},
|
||||||
"Cuentas por Pagar Proveedores": {
|
"Cuentas por Pagar Proveedores": {
|
||||||
"Bienes Adquiridos no Pagados": {
|
"Bienes Adquiridos no Pagados": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
},
|
},
|
||||||
"Cuentas por Pagar Moneda Extrangera": {
|
"Cuentas por Pagar Moneda Extrangera": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Cuentas por Pagar Moneda Nacional": {
|
"Cuentas por Pagar Moneda Nacional": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Cuentas por Pagar por Importaciones": {
|
"Cuentas por Pagar por Importaciones": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Documentos por Pagar Moneda Extrangera": {
|
"Documentos por Pagar Moneda Extrangera": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Documentos por Pagar Moneda Nacional": {
|
"Documentos por Pagar Moneda Nacional": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Gastos por Pagar": {
|
"Gastos por Pagar": {
|
||||||
"Prestaciones Sociales": {
|
"Prestaciones Sociales": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Salarios por Pagar": {},
|
"Salarios por Pagar": {},
|
||||||
"Servicios Basicos 1": {
|
"Servicios Basicos 1": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Impuestos por Pagar": {
|
"Impuestos por Pagar": {
|
||||||
"Impuesto al Valor Agregado por Pagar": {
|
"Impuesto al Valor Agregado por Pagar": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Impuesto sobre la Renta por Actividades Economicas": {
|
"Impuesto sobre la Renta por Actividades Economicas": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Impuestos Municipales": {
|
"Impuestos Municipales": {
|
||||||
"Impuesto Municipal Sobre Ingresos": {
|
"Impuesto Municipal Sobre Ingresos": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Matricula Municipal": {
|
"Matricula Municipal": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Recoleccion Basura": {
|
"Recoleccion Basura": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Otras Cuentas por Pagar": {
|
"Otras Cuentas por Pagar": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Pasivos Financieros a Corto Plazo": {
|
"Pasivos Financieros a Corto Plazo": {
|
||||||
"Otras Deudas Bancarias": {
|
"Otras Deudas Bancarias": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Prestamos por Pagar a Corto Plazo": {
|
"Prestamos por Pagar a Corto Plazo": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Sobregiros Bancarios": {
|
"Sobregiros Bancarios": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Provisiones por Pagar": {
|
"Provisiones por Pagar": {
|
||||||
@ -396,99 +396,99 @@
|
|||||||
"Retenciones por Pagar": {
|
"Retenciones por Pagar": {
|
||||||
"Rentas de Actividades Economicas": {
|
"Rentas de Actividades Economicas": {
|
||||||
"Otras Retenciones 10%": {
|
"Otras Retenciones 10%": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion 10% Servicios Profesionales": {
|
"Retencion 10% Servicios Profesionales": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion 2% por C/Bienes o P/Servicios": {
|
"Retencion 2% por C/Bienes o P/Servicios": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion 3% compra Bienes Agropecuarios": {
|
"Retencion 3% compra Bienes Agropecuarios": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion 5% compra Madera en Rollo": {
|
"Retencion 5% compra Madera en Rollo": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 1.5% Actividades Economicas No Residentes": {
|
"Retencion Definitiva 1.5% Actividades Economicas No Residentes": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 10% Actividades Economicas No Residentes": {
|
"Retencion Definitiva 10% Actividades Economicas No Residentes": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 15% Actividades Economicas No Residentes": {
|
"Retencion Definitiva 15% Actividades Economicas No Residentes": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 3% Actividades Economicas No Residentes": {
|
"Retencion Definitiva 3% Actividades Economicas No Residentes": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Rentas del Trabajo": {
|
"Rentas del Trabajo": {
|
||||||
"Retencion Definitiva 10% por Rentas del Trabajo - Indemnizacion Adicional": {
|
"Retencion Definitiva 10% por Rentas del Trabajo - Indemnizacion Adicional": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 12.5% por Rentas del Trabajo - Dietas": {
|
"Retencion Definitiva 12.5% por Rentas del Trabajo - Dietas": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 15% por Rentas del Trabajo - No Residentes": {
|
"Retencion Definitiva 15% por Rentas del Trabajo - No Residentes": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Rentas del Trabajo Tarifa Progresiva": {
|
"Retencion Rentas del Trabajo Tarifa Progresiva": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Rentas y Ganancias de Capital": {
|
"Rentas y Ganancias de Capital": {
|
||||||
"Retencion Definitiva 0.25% Transacciones Bursatiles": {
|
"Retencion Definitiva 0.25% Transacciones Bursatiles": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 1% Transacciones Bursatiles": {
|
"Retencion Definitiva 1% Transacciones Bursatiles": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 1.5% Transacciones Bursatiles": {
|
"Retencion Definitiva 1.5% Transacciones Bursatiles": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 10% por Ganancia de Capital": {
|
"Retencion Definitiva 10% por Ganancia de Capital": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 2% Transacciones Bursatiles": {
|
"Retencion Definitiva 2% Transacciones Bursatiles": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Definitiva 5% por Rentas de Capital": {
|
"Retencion Definitiva 5% por Rentas de Capital": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Defintiva 10% por Rentas de Capital": {
|
"Retencion Defintiva 10% por Rentas de Capital": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retencion Defintiva 15% por Rentas de Capital": {
|
"Retencion Defintiva 15% por Rentas de Capital": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Retenciones Defintiva 5% Fondos de Inversion": {
|
"Retenciones Defintiva 5% Fondos de Inversion": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Retencion 17% Operaciones con Paraisos Fiscales": {
|
"Retencion 17% Operaciones con Paraisos Fiscales": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Pasivo No Corriente": {
|
"Pasivo No Corriente": {
|
||||||
"Cuentas por Pagar a Largo Plaso": {
|
"Cuentas por Pagar a Largo Plaso": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Otras Cuentas por Pagar a Largo Plazo": {
|
"Otras Cuentas por Pagar a Largo Plazo": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Otros Pasivos Financieros a Largo Plaso": {
|
"Otros Pasivos Financieros a Largo Plaso": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"Prestamos a Largo Plazo": {
|
"Prestamos a Largo Plazo": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Pasivo por Impuestos Diferidos": {
|
"Pasivo por Impuestos Diferidos": {
|
||||||
"is_group": 1
|
"isGroup": 1
|
||||||
},
|
},
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,49 +1,49 @@
|
|||||||
{
|
{
|
||||||
"country_code": "nl",
|
"countryCode": "nl",
|
||||||
"name": "Netherlands - Grootboekschema",
|
"name": "Netherlands - Grootboekschema",
|
||||||
"tree": {
|
"tree": {
|
||||||
"FABRIKAGEREKENINGEN": {
|
"FABRIKAGEREKENINGEN": {
|
||||||
"is_group": 1,
|
"isGroup": 1,
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"FINANCIELE REKENINGEN, KORTLOPENDE VORDERINGEN EN SCHULDEN": {
|
"FINANCIELE REKENINGEN, KORTLOPENDE VORDERINGEN EN SCHULDEN": {
|
||||||
"Bank": {
|
"Bank": {
|
||||||
"RABO Bank": {
|
"RABO Bank": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"KORTLOPENDE SCHULDEN": {
|
"KORTLOPENDE SCHULDEN": {
|
||||||
"Af te dragen Btw-verlegd": {
|
"Af te dragen Btw-verlegd": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Afdracht loonheffing": {},
|
"Afdracht loonheffing": {},
|
||||||
"Btw af te dragen hoog": {
|
"Btw af te dragen hoog": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Btw af te dragen laag": {
|
"Btw af te dragen laag": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Btw af te dragen overig": {
|
"Btw af te dragen overig": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Btw oude jaren": {
|
"Btw oude jaren": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Btw te vorderen hoog": {
|
"Btw te vorderen hoog": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Btw te vorderen laag": {
|
"Btw te vorderen laag": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Btw te vorderen overig": {
|
"Btw te vorderen overig": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Btw-afdracht": {
|
"Btw-afdracht": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Crediteuren": {
|
"Crediteuren": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Dividend": {},
|
"Dividend": {},
|
||||||
"Dividendbelasting": {},
|
"Dividendbelasting": {},
|
||||||
@ -57,11 +57,11 @@
|
|||||||
"Rente": {},
|
"Rente": {},
|
||||||
"Sociale lasten 1": {},
|
"Sociale lasten 1": {},
|
||||||
"Stock Recieved niet gefactureerd": {
|
"Stock Recieved niet gefactureerd": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
},
|
},
|
||||||
"Tanti\u00e8mes 1": {},
|
"Tanti\u00e8mes 1": {},
|
||||||
"Te vorderen Btw-verlegd": {
|
"Te vorderen Btw-verlegd": {
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Telefoon/telefax 1": {},
|
"Telefoon/telefax 1": {},
|
||||||
"Termijnen onderh. werk": {},
|
"Termijnen onderh. werk": {},
|
||||||
@ -77,23 +77,23 @@
|
|||||||
"Effecten": {},
|
"Effecten": {},
|
||||||
"Girobetaalkaarten": {},
|
"Girobetaalkaarten": {},
|
||||||
"Kas": {
|
"Kas": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Kas valuta": {
|
"Kas valuta": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Kleine kas": {
|
"Kleine kas": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Kruisposten": {},
|
"Kruisposten": {},
|
||||||
"Postbank": {
|
"Postbank": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"VORDERINGEN": {
|
"VORDERINGEN": {
|
||||||
"Debiteuren": {
|
"Debiteuren": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
},
|
},
|
||||||
"Dubieuze debiteuren": {},
|
"Dubieuze debiteuren": {},
|
||||||
"Overige vorderingen": {},
|
"Overige vorderingen": {},
|
||||||
@ -103,11 +103,11 @@
|
|||||||
"Vooruitbetaalde kosten": {},
|
"Vooruitbetaalde kosten": {},
|
||||||
"Voorziening dubieuze debiteuren": {}
|
"Voorziening dubieuze debiteuren": {}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"INDIRECTE KOSTEN": {
|
"INDIRECTE KOSTEN": {
|
||||||
"is_group": 1,
|
"isGroup": 1,
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"KOSTENREKENINGEN": {
|
"KOSTENREKENINGEN": {
|
||||||
"AFSCHRIJVINGEN": {
|
"AFSCHRIJVINGEN": {
|
||||||
@ -117,11 +117,11 @@
|
|||||||
"Auteursrechten": {},
|
"Auteursrechten": {},
|
||||||
"Bedrijfsgebouwen": {},
|
"Bedrijfsgebouwen": {},
|
||||||
"Bedrijfsinventaris": {
|
"Bedrijfsinventaris": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Drankvergunningen": {},
|
"Drankvergunningen": {},
|
||||||
"Fabrieksinventaris": {
|
"Fabrieksinventaris": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Gebouwen": {},
|
"Gebouwen": {},
|
||||||
"Gereedschappen": {},
|
"Gereedschappen": {},
|
||||||
@ -130,7 +130,7 @@
|
|||||||
"Heftrucks": {},
|
"Heftrucks": {},
|
||||||
"Kantine-inventaris": {},
|
"Kantine-inventaris": {},
|
||||||
"Kantoorinventaris": {
|
"Kantoorinventaris": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Kantoormachines": {},
|
"Kantoormachines": {},
|
||||||
"Licenties": {},
|
"Licenties": {},
|
||||||
@ -141,7 +141,7 @@
|
|||||||
"Pachtersinvestering": {},
|
"Pachtersinvestering": {},
|
||||||
"Parkeerplaats": {},
|
"Parkeerplaats": {},
|
||||||
"Personenauto's": {
|
"Personenauto's": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Rijwielen en bromfietsen": {},
|
"Rijwielen en bromfietsen": {},
|
||||||
"Tonnagevergunningen": {},
|
"Tonnagevergunningen": {},
|
||||||
@ -151,7 +151,7 @@
|
|||||||
"Vrachtauto's": {},
|
"Vrachtauto's": {},
|
||||||
"Winkels": {},
|
"Winkels": {},
|
||||||
"Woon-winkelhuis": {},
|
"Woon-winkelhuis": {},
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"ALGEMENE KOSTEN": {
|
"ALGEMENE KOSTEN": {
|
||||||
"Accountantskosten": {},
|
"Accountantskosten": {},
|
||||||
@ -291,144 +291,144 @@
|
|||||||
"Priv\u00e9-gebruik auto's": {},
|
"Priv\u00e9-gebruik auto's": {},
|
||||||
"Wegenbelasting": {}
|
"Wegenbelasting": {}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"TUSSENREKENINGEN": {
|
"TUSSENREKENINGEN": {
|
||||||
"Betaalwijze cadeaubonnen": {
|
"Betaalwijze cadeaubonnen": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Betaalwijze chipknip": {
|
"Betaalwijze chipknip": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Betaalwijze contant": {
|
"Betaalwijze contant": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Betaalwijze pin": {
|
"Betaalwijze pin": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen Nederland hoog": {
|
"Inkopen Nederland hoog": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen Nederland laag": {
|
"Inkopen Nederland laag": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen Nederland onbelast": {
|
"Inkopen Nederland onbelast": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen Nederland overig": {
|
"Inkopen Nederland overig": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen Nederland verlegd": {
|
"Inkopen Nederland verlegd": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen binnen EU hoog": {
|
"Inkopen binnen EU hoog": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen binnen EU laag": {
|
"Inkopen binnen EU laag": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen binnen EU overig": {
|
"Inkopen binnen EU overig": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen buiten EU hoog": {
|
"Inkopen buiten EU hoog": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen buiten EU laag": {
|
"Inkopen buiten EU laag": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Inkopen buiten EU overig": {
|
"Inkopen buiten EU overig": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Kassa 1": {
|
"Kassa 1": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Kassa 2": {
|
"Kassa 2": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Netto lonen": {
|
"Netto lonen": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Tegenrekening Inkopen": {
|
"Tegenrekening Inkopen": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Tussenrek. autom. betalingen": {
|
"Tussenrek. autom. betalingen": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Tussenrek. autom. loonbetalingen": {
|
"Tussenrek. autom. loonbetalingen": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Tussenrek. cadeaubonbetalingen": {
|
"Tussenrek. cadeaubonbetalingen": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Tussenrekening balans": {
|
"Tussenrekening balans": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Tussenrekening chipknip": {
|
"Tussenrekening chipknip": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Tussenrekening correcties": {
|
"Tussenrekening correcties": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Tussenrekening pin": {
|
"Tussenrekening pin": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Vraagposten": {
|
"Vraagposten": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"VASTE ACTIVA, EIGEN VERMOGEN, LANGLOPEND VREEMD VERMOGEN EN VOORZIENINGEN": {
|
"VASTE ACTIVA, EIGEN VERMOGEN, LANGLOPEND VREEMD VERMOGEN EN VOORZIENINGEN": {
|
||||||
"EIGEN VERMOGEN": {
|
"EIGEN VERMOGEN": {
|
||||||
"Aandelenkapitaal": {
|
"Aandelenkapitaal": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Assuranties": {
|
"Assuranties": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Buitengewone lasten": {
|
"Buitengewone lasten": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Giften": {
|
"Giften": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Huishoudgeld": {
|
"Huishoudgeld": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Inkomstenbelasting": {
|
"Inkomstenbelasting": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Kapitaal": {
|
"Kapitaal": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Overige persoonlijke verplichtingen": {
|
"Overige persoonlijke verplichtingen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Overige priv\u00e9-uitgaven": {
|
"Overige priv\u00e9-uitgaven": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Overige reserves": {
|
"Overige reserves": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Premie lijfrenteverzekeringen": {
|
"Premie lijfrenteverzekeringen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Premie volksverzekeringen": {
|
"Premie volksverzekeringen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Priv\u00e9-gebruik": {
|
"Priv\u00e9-gebruik": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Priv\u00e9-opnamen/stortingen": {
|
"Priv\u00e9-opnamen/stortingen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Vermogensbelasting": {
|
"Vermogensbelasting": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"WAO en ziekengeldverzekeringen": {
|
"WAO en ziekengeldverzekeringen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Wettelijke reserves": {
|
"Wettelijke reserves": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"FINANCIELE VASTE ACTIVA EN LANGLOPENDE VORDERINGEN": {
|
"FINANCIELE VASTE ACTIVA EN LANGLOPENDE VORDERINGEN": {
|
||||||
@ -513,24 +513,24 @@
|
|||||||
"Afschrijving Kantoorinventaris": {},
|
"Afschrijving Kantoorinventaris": {},
|
||||||
"Afschrijving Kantoormachines": {},
|
"Afschrijving Kantoormachines": {},
|
||||||
"Afschrijving Magazijninventaris": {},
|
"Afschrijving Magazijninventaris": {},
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
},
|
},
|
||||||
"MACHINES": {
|
"MACHINES": {
|
||||||
"Aanschafwaarde Machines 1": {
|
"Aanschafwaarde Machines 1": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Aanschafwaarde Machines 2": {},
|
"Aanschafwaarde Machines 2": {},
|
||||||
"Aanschafwaarde Machines 3": {},
|
"Aanschafwaarde Machines 3": {},
|
||||||
"Aanschafwaarde Machines 4": {},
|
"Aanschafwaarde Machines 4": {},
|
||||||
"Aanschafwaarde Machines 5": {},
|
"Aanschafwaarde Machines 5": {},
|
||||||
"Afschrijving Machines 1": {
|
"Afschrijving Machines 1": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"Afschrijving Machines 2": {},
|
"Afschrijving Machines 2": {},
|
||||||
"Afschrijving Machines 3": {},
|
"Afschrijving Machines 3": {},
|
||||||
"Afschrijving Machines 4": {},
|
"Afschrijving Machines 4": {},
|
||||||
"Afschrijving Machines 5": {},
|
"Afschrijving Machines 5": {},
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ONROERENDE GOEDEREN": {
|
"ONROERENDE GOEDEREN": {
|
||||||
@ -569,40 +569,40 @@
|
|||||||
},
|
},
|
||||||
"VOORZIENINGEN": {
|
"VOORZIENINGEN": {
|
||||||
"Assurantie eigen risico": {
|
"Assurantie eigen risico": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Backservice pensioenverpl.": {
|
"Backservice pensioenverpl.": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Egalisatierekening WIR": {
|
"Egalisatierekening WIR": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Egalisatieres. grootonderh.": {
|
"Egalisatieres. grootonderh.": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Garantieverplichtingen": {
|
"Garantieverplichtingen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Latente belastingverpl.": {
|
"Latente belastingverpl.": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Pens.voorz. eigen beheer": {
|
"Pens.voorz. eigen beheer": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Pensioenverplichtingen": {
|
"Pensioenverplichtingen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Stamrechtverplichtingen": {
|
"Stamrechtverplichtingen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Vervangingsreserve": {
|
"Vervangingsreserve": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
},
|
},
|
||||||
"Voorziening deelnemingen": {
|
"Voorziening deelnemingen": {
|
||||||
"account_type": "Equity"
|
"accountType": "Equity"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"VERKOOPRESULTATEN": {
|
"VERKOOPRESULTATEN": {
|
||||||
"Diensten fabric. 0% niet-EU": {},
|
"Diensten fabric. 0% niet-EU": {},
|
||||||
@ -626,14 +626,14 @@
|
|||||||
"Verkopen handel overig": {},
|
"Verkopen handel overig": {},
|
||||||
"Verleende Kredietbep. fabricage": {},
|
"Verleende Kredietbep. fabricage": {},
|
||||||
"Verleende Kredietbep. handel": {},
|
"Verleende Kredietbep. handel": {},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
},
|
},
|
||||||
"VOORRAAD GEREED PRODUCT EN ONDERHANDEN WERK": {
|
"VOORRAAD GEREED PRODUCT EN ONDERHANDEN WERK": {
|
||||||
"Betalingskort. crediteuren": {},
|
"Betalingskort. crediteuren": {},
|
||||||
"Garantiekosten": {},
|
"Garantiekosten": {},
|
||||||
"Hulpmaterialen": {},
|
"Hulpmaterialen": {},
|
||||||
"Inkomende vrachten": {
|
"Inkomende vrachten": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"Inkoop import buiten EU hoog": {},
|
"Inkoop import buiten EU hoog": {},
|
||||||
"Inkoop import buiten EU laag": {},
|
"Inkoop import buiten EU laag": {},
|
||||||
@ -652,13 +652,13 @@
|
|||||||
"Invoerkosten": {},
|
"Invoerkosten": {},
|
||||||
"Kosten inkoopvereniging": {},
|
"Kosten inkoopvereniging": {},
|
||||||
"Kostprijs omzet grondstoffen": {
|
"Kostprijs omzet grondstoffen": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Kostprijs omzet handelsgoederen": {},
|
"Kostprijs omzet handelsgoederen": {},
|
||||||
"Onttrekking uitgev.garantie": {},
|
"Onttrekking uitgev.garantie": {},
|
||||||
"Priv\u00e9-gebruik goederen": {},
|
"Priv\u00e9-gebruik goederen": {},
|
||||||
"Stock aanpassing": {
|
"Stock aanpassing": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
},
|
},
|
||||||
"Tegenrekening inkoop": {},
|
"Tegenrekening inkoop": {},
|
||||||
"Toev. Voorz. incour. grondst.": {},
|
"Toev. Voorz. incour. grondst.": {},
|
||||||
@ -667,7 +667,7 @@
|
|||||||
"Uitbesteed werk": {},
|
"Uitbesteed werk": {},
|
||||||
"Voorz. Incourourant grondst.": {},
|
"Voorz. Incourourant grondst.": {},
|
||||||
"Voorz.incour. handelsgoed.": {},
|
"Voorz.incour. handelsgoed.": {},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"VOORRAAD GRONDSTOFFEN, HULPMATERIALEN EN HANDELSGOEDEREN": {
|
"VOORRAAD GRONDSTOFFEN, HULPMATERIALEN EN HANDELSGOEDEREN": {
|
||||||
"Emballage": {},
|
"Emballage": {},
|
||||||
@ -687,7 +687,7 @@
|
|||||||
"Onderhanden werk": {},
|
"Onderhanden werk": {},
|
||||||
"Verpakkingsmateriaal": {},
|
"Verpakkingsmateriaal": {},
|
||||||
"Zegels": {},
|
"Zegels": {},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"country_code": "sg",
|
"countryCode": "sg",
|
||||||
"name": "Singapore - Chart of Accounts",
|
"name": "Singapore - Chart of Accounts",
|
||||||
"tree": {
|
"tree": {
|
||||||
"Assets": {
|
"Assets": {
|
||||||
@ -13,23 +13,23 @@
|
|||||||
"VISA Receivable": {}
|
"VISA Receivable": {}
|
||||||
},
|
},
|
||||||
"Debtors": {
|
"Debtors": {
|
||||||
"account_type": "Receivable"
|
"accountType": "Receivable"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Bank Accounts": {
|
"Bank Accounts": {
|
||||||
"Paypal Account": {
|
"Paypal Account": {
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"account_type": "Bank"
|
"accountType": "Bank"
|
||||||
},
|
},
|
||||||
"Cash in Hand": {
|
"Cash in Hand": {
|
||||||
"Cash in Transit": {
|
"Cash in Transit": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Petty Cash": {
|
"Petty Cash": {
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"account_type": "Cash"
|
"accountType": "Cash"
|
||||||
},
|
},
|
||||||
"Loans and Advances-Assets": {
|
"Loans and Advances-Assets": {
|
||||||
"Prepayments": {}
|
"Prepayments": {}
|
||||||
@ -41,7 +41,7 @@
|
|||||||
},
|
},
|
||||||
"Stock Assets": {
|
"Stock Assets": {
|
||||||
"Stock in Hand": {
|
"Stock in Hand": {
|
||||||
"account_type": "Stock"
|
"accountType": "Stock"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Tax Assets": {
|
"Tax Assets": {
|
||||||
@ -52,38 +52,38 @@
|
|||||||
"Fixed Assets": {
|
"Fixed Assets": {
|
||||||
"Accumulated Depreciation": {
|
"Accumulated Depreciation": {
|
||||||
"AccDep-Equipment-ICT": {
|
"AccDep-Equipment-ICT": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"AccDep-Equipment-Office": {
|
"AccDep-Equipment-Office": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"AccDep-Furniture and Fixtures": {
|
"AccDep-Furniture and Fixtures": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"AccDep-Motor Vehicle": {
|
"AccDep-Motor Vehicle": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"AccDep-Plant and Machinery": {
|
"AccDep-Plant and Machinery": {
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"account_type": "Accumulated Depreciation"
|
"accountType": "Accumulated Depreciation"
|
||||||
},
|
},
|
||||||
"Equipment-ICT": {
|
"Equipment-ICT": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Equipment-Office": {
|
"Equipment-Office": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Furniture and Fixtures": {
|
"Furniture and Fixtures": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Motor Vehicle": {
|
"Motor Vehicle": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Plant and Machinery": {
|
"Plant and Machinery": {
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"account_type": "Fixed Asset"
|
"accountType": "Fixed Asset"
|
||||||
},
|
},
|
||||||
"Non-Fixed Assets": {
|
"Non-Fixed Assets": {
|
||||||
"Goodwill": {},
|
"Goodwill": {},
|
||||||
@ -99,17 +99,17 @@
|
|||||||
},
|
},
|
||||||
"Temporary Accunts": {
|
"Temporary Accunts": {
|
||||||
"Temporary Opening": {
|
"Temporary Opening": {
|
||||||
"account_type": "Temporary"
|
"accountType": "Temporary"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root_type": "Asset"
|
"rootType": "Asset"
|
||||||
},
|
},
|
||||||
"Equity": {
|
"Equity": {
|
||||||
"Current Year Earnings": {},
|
"Current Year Earnings": {},
|
||||||
"Proposed Dividends": {},
|
"Proposed Dividends": {},
|
||||||
"Retained Earnings": {},
|
"Retained Earnings": {},
|
||||||
"Share Capital": {},
|
"Share Capital": {},
|
||||||
"root_type": "Equity"
|
"rootType": "Equity"
|
||||||
},
|
},
|
||||||
"Expenses": {
|
"Expenses": {
|
||||||
"Expenses-Administrative": {
|
"Expenses-Administrative": {
|
||||||
@ -127,14 +127,14 @@
|
|||||||
},
|
},
|
||||||
"Expenses-Direct": {
|
"Expenses-Direct": {
|
||||||
"Cost of Goods Sold": {
|
"Cost of Goods Sold": {
|
||||||
"account_type": "Cost of Goods Sold"
|
"accountType": "Cost of Goods Sold"
|
||||||
},
|
},
|
||||||
"Cost of Sales": {},
|
"Cost of Sales": {},
|
||||||
"Expenses Included in Valuation": {
|
"Expenses Included in Valuation": {
|
||||||
"account_type": "Expenses Included In Valuation"
|
"accountType": "Expenses Included In Valuation"
|
||||||
},
|
},
|
||||||
"Stock Adjustment": {
|
"Stock Adjustment": {
|
||||||
"account_type": "Stock Adjustment"
|
"accountType": "Stock Adjustment"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Expenses-Marketing": {
|
"Expenses-Marketing": {
|
||||||
@ -185,24 +185,24 @@
|
|||||||
"Bad Debts Written Off": {},
|
"Bad Debts Written Off": {},
|
||||||
"Depreciation": {
|
"Depreciation": {
|
||||||
"Dep-Fixtures & Furniture": {
|
"Dep-Fixtures & Furniture": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Dep-ICT Equipment": {
|
"Dep-ICT Equipment": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Dep-Motor Vehicle": {
|
"Dep-Motor Vehicle": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Dep-Office Equipment": {
|
"Dep-Office Equipment": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Dep-Plant & Machinery": {
|
"Dep-Plant & Machinery": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Dep-Renovation": {
|
"Dep-Renovation": {
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"account_type": "Depreciation"
|
"accountType": "Depreciation"
|
||||||
},
|
},
|
||||||
"Donations": {},
|
"Donations": {},
|
||||||
"Round Off": {},
|
"Round Off": {},
|
||||||
@ -236,7 +236,7 @@
|
|||||||
"Staff Transport": {},
|
"Staff Transport": {},
|
||||||
"Staff Welfare": {}
|
"Staff Welfare": {}
|
||||||
},
|
},
|
||||||
"root_type": "Expense"
|
"rootType": "Expense"
|
||||||
},
|
},
|
||||||
"Income": {
|
"Income": {
|
||||||
"Direct Income": {
|
"Direct Income": {
|
||||||
@ -252,7 +252,7 @@
|
|||||||
"Other Income": {},
|
"Other Income": {},
|
||||||
"Service Charges": {}
|
"Service Charges": {}
|
||||||
},
|
},
|
||||||
"root_type": "Income"
|
"rootType": "Income"
|
||||||
},
|
},
|
||||||
"Liabilities": {
|
"Liabilities": {
|
||||||
"Capital Account": {
|
"Capital Account": {
|
||||||
@ -262,7 +262,7 @@
|
|||||||
"Current liabilities": {
|
"Current liabilities": {
|
||||||
"Accounts Payable": {
|
"Accounts Payable": {
|
||||||
"Creditors": {
|
"Creditors": {
|
||||||
"account_type": "Payable"
|
"accountType": "Payable"
|
||||||
},
|
},
|
||||||
"Payroll Payable": {}
|
"Payroll Payable": {}
|
||||||
},
|
},
|
||||||
@ -270,7 +270,7 @@
|
|||||||
"Deferred Tax Liabilities-Current": {},
|
"Deferred Tax Liabilities-Current": {},
|
||||||
"GST-Output": {},
|
"GST-Output": {},
|
||||||
"Income Tax Payable": {},
|
"Income Tax Payable": {},
|
||||||
"account_type": "Tax"
|
"accountType": "Tax"
|
||||||
},
|
},
|
||||||
"Loans-Current": {
|
"Loans-Current": {
|
||||||
"Amount Owing to Directors": {},
|
"Amount Owing to Directors": {},
|
||||||
@ -297,7 +297,7 @@
|
|||||||
"Sponsorship Funds": {},
|
"Sponsorship Funds": {},
|
||||||
"Stock Liabilities": {
|
"Stock Liabilities": {
|
||||||
"Stock Received But Not Billed": {
|
"Stock Received But Not Billed": {
|
||||||
"account_type": "Stock Received But Not Billed"
|
"accountType": "Stock Received But Not Billed"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -305,7 +305,7 @@
|
|||||||
"Deferred Tax Liabilities": {},
|
"Deferred Tax Liabilities": {},
|
||||||
"Loans-Non Current": {}
|
"Loans-Non Current": {}
|
||||||
},
|
},
|
||||||
"root_type": "Liability"
|
"rootType": "Liability"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -12,25 +12,25 @@ export default {
|
|||||||
label: 'Item Name',
|
label: 'Item Name',
|
||||||
fieldtype: 'Data',
|
fieldtype: 'Data',
|
||||||
placeholder: 'Item Name',
|
placeholder: 'Item Name',
|
||||||
required: 1
|
required: 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fieldname: 'image',
|
fieldname: 'image',
|
||||||
label: 'Image',
|
label: 'Image',
|
||||||
fieldtype: 'AttachImage'
|
fieldtype: 'AttachImage',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fieldname: 'description',
|
fieldname: 'description',
|
||||||
label: 'Description',
|
label: 'Description',
|
||||||
placeholder: 'Item Description',
|
placeholder: 'Item Description',
|
||||||
fieldtype: 'Text'
|
fieldtype: 'Text',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fieldname: 'unit',
|
fieldname: 'unit',
|
||||||
label: 'Unit Type',
|
label: 'Unit Type',
|
||||||
fieldtype: 'Select',
|
fieldtype: 'Select',
|
||||||
default: 'Unit',
|
default: 'Unit',
|
||||||
options: ['Unit', 'Kg', 'Gram', 'Hour', 'Day']
|
options: ['Unit', 'Kg', 'Gram', 'Hour', 'Day'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fieldname: 'itemType',
|
fieldname: 'itemType',
|
||||||
@ -38,7 +38,7 @@ export default {
|
|||||||
placeholder: 'Sales',
|
placeholder: 'Sales',
|
||||||
fieldtype: 'Select',
|
fieldtype: 'Select',
|
||||||
default: 'Product',
|
default: 'Product',
|
||||||
options: ['Product', 'Service']
|
options: ['Product', 'Service'],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fieldname: 'incomeAccount',
|
fieldname: 'incomeAccount',
|
||||||
@ -51,18 +51,22 @@ export default {
|
|||||||
getFilters: () => {
|
getFilters: () => {
|
||||||
return {
|
return {
|
||||||
isGroup: 0,
|
isGroup: 0,
|
||||||
accountType: 'Income Account'
|
rootType: 'Income',
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
formulaDependsOn: ['itemType'],
|
formulaDependsOn: ['itemType'],
|
||||||
formula(doc) {
|
async formula(doc) {
|
||||||
|
let accountName = 'Service';
|
||||||
if (doc.itemType === 'Product') {
|
if (doc.itemType === 'Product') {
|
||||||
return 'Sales';
|
accountName = 'Sales';
|
||||||
}
|
|
||||||
if (doc.itemType === 'Service') {
|
|
||||||
return 'Service';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const accountExists = await frappe.db.exists('Account', accountName);
|
||||||
|
if (!accountExists) {
|
||||||
|
return '';
|
||||||
}
|
}
|
||||||
|
return accountName;
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fieldname: 'expenseAccount',
|
fieldname: 'expenseAccount',
|
||||||
@ -75,20 +79,27 @@ export default {
|
|||||||
getFilters: () => {
|
getFilters: () => {
|
||||||
return {
|
return {
|
||||||
isGroup: 0,
|
isGroup: 0,
|
||||||
accountType: ['in', ['Cost of Goods Sold', 'Expense Account']]
|
rootType: 'Expense',
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
formulaDependsOn: ['itemType'],
|
formulaDependsOn: ['itemType'],
|
||||||
formula() {
|
async formula() {
|
||||||
return 'Cost of Goods Sold';
|
const cogs = await frappe.db
|
||||||
|
.knex('Account')
|
||||||
|
.where({ accountType: 'Cost of Goods Sold' });
|
||||||
|
if (cogs.length === 0) {
|
||||||
|
return '';
|
||||||
|
} else {
|
||||||
|
return cogs[0].name;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
fieldname: 'tax',
|
fieldname: 'tax',
|
||||||
label: 'Tax',
|
label: 'Tax',
|
||||||
fieldtype: 'Link',
|
fieldtype: 'Link',
|
||||||
target: 'Tax',
|
target: 'Tax',
|
||||||
placeholder: 'GST'
|
placeholder: 'GST',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
fieldname: 'rate',
|
fieldname: 'rate',
|
||||||
@ -101,36 +112,44 @@ export default {
|
|||||||
'Rate must be greater than 0'
|
'Rate must be greater than 0'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
|
],
|
||||||
|
quickEditFields: [
|
||||||
|
'rate',
|
||||||
|
'unit',
|
||||||
|
'itemType',
|
||||||
|
'tax',
|
||||||
|
'description',
|
||||||
|
'incomeAccount',
|
||||||
|
'expenseAccount',
|
||||||
],
|
],
|
||||||
quickEditFields: ['rate', 'unit', 'itemType', 'tax', 'description'],
|
|
||||||
actions: [
|
actions: [
|
||||||
{
|
{
|
||||||
label: _('New Invoice'),
|
label: _('New Invoice'),
|
||||||
condition: doc => !doc.isNew(),
|
condition: (doc) => !doc.isNew(),
|
||||||
action: async (doc, router) => {
|
action: async (doc, router) => {
|
||||||
const invoice = await frappe.getNewDoc('SalesInvoice');
|
const invoice = await frappe.getNewDoc('SalesInvoice');
|
||||||
invoice.append('items', {
|
invoice.append('items', {
|
||||||
item: doc.name,
|
item: doc.name,
|
||||||
rate: doc.rate,
|
rate: doc.rate,
|
||||||
tax: doc.tax
|
tax: doc.tax,
|
||||||
});
|
});
|
||||||
router.push(`/edit/SalesInvoice/${invoice.name}`);
|
router.push(`/edit/SalesInvoice/${invoice.name}`);
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: _('New Bill'),
|
label: _('New Bill'),
|
||||||
condition: doc => !doc.isNew(),
|
condition: (doc) => !doc.isNew(),
|
||||||
action: async (doc, router) => {
|
action: async (doc, router) => {
|
||||||
const invoice = await frappe.getNewDoc('PurchaseInvoice');
|
const invoice = await frappe.getNewDoc('PurchaseInvoice');
|
||||||
invoice.append('items', {
|
invoice.append('items', {
|
||||||
item: doc.name,
|
item: doc.name,
|
||||||
rate: doc.rate,
|
rate: doc.rate,
|
||||||
tax: doc.tax
|
tax: doc.tax,
|
||||||
});
|
});
|
||||||
router.push(`/edit/PurchaseInvoice/${invoice.name}`);
|
router.push(`/edit/PurchaseInvoice/${invoice.name}`);
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
};
|
};
|
||||||
|
@ -133,6 +133,8 @@ export default {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
if (e.type === frappe.errors.DuplicateEntryError) {
|
if (e.type === frappe.errors.DuplicateEntryError) {
|
||||||
|
console.log(e);
|
||||||
|
console.log('retrying');
|
||||||
await this.renameDbFileAndRerunSetup();
|
await this.renameDbFileAndRerunSetup();
|
||||||
} else {
|
} else {
|
||||||
handleErrorWithDialog(e, this.doc);
|
handleErrorWithDialog(e, this.doc);
|
||||||
@ -142,8 +144,15 @@ export default {
|
|||||||
async renameDbFileAndRerunSetup() {
|
async renameDbFileAndRerunSetup() {
|
||||||
const filePath = config.get('lastSelectedFilePath');
|
const filePath = config.get('lastSelectedFilePath');
|
||||||
renameDbFile(filePath);
|
renameDbFile(filePath);
|
||||||
frappe.removeFromCache('AccountingSettings', 'AccountingSettings');
|
|
||||||
delete frappe.AccountingSettings;
|
// Clear cache to prevent doc changed error.
|
||||||
|
Object.keys(frappe.docs)
|
||||||
|
.filter((d) => frappe.docs[d][d] instanceof frappe.BaseMeta)
|
||||||
|
.forEach((d) => {
|
||||||
|
frappe.removeFromCache(d, d);
|
||||||
|
delete frappe[d];
|
||||||
|
});
|
||||||
|
|
||||||
const connectionSuccess = await connectToLocalDatabase(filePath);
|
const connectionSuccess = await connectToLocalDatabase(filePath);
|
||||||
if (connectionSuccess) {
|
if (connectionSuccess) {
|
||||||
await setupCompany(this.doc);
|
await setupCompany(this.doc);
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import frappe from 'frappejs';
|
import frappe from 'frappejs';
|
||||||
import countryList from '~/fixtures/countryInfo.json';
|
import countryList from '~/fixtures/countryInfo.json';
|
||||||
import generateTaxes from '../../../models/doctype/Tax/RegionalChanges';
|
import generateTaxes from '../../../models/doctype/Tax/RegionalChanges';
|
||||||
|
import { getCountryCOA } from '../../../accounting/importCOA';
|
||||||
import config from '@/config';
|
import config from '@/config';
|
||||||
|
|
||||||
export default async function setupCompany(setupWizardValues) {
|
export default async function setupCompany(setupWizardValues) {
|
||||||
@ -36,7 +37,7 @@ export default async function setupCompany(setupWizardValues) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
await setupGlobalCurrencies(countryList);
|
await setupGlobalCurrencies(countryList);
|
||||||
await setupChartOfAccounts(bankName);
|
await setupChartOfAccounts(bankName, country);
|
||||||
await setupRegionalChanges(country);
|
await setupRegionalChanges(country);
|
||||||
updateCompanyNameInConfig();
|
updateCompanyNameInConfig();
|
||||||
|
|
||||||
@ -72,34 +73,30 @@ async function setupGlobalCurrencies(countries) {
|
|||||||
numberFormat: numberFormat || '#,###.##',
|
numberFormat: numberFormat || '#,###.##',
|
||||||
};
|
};
|
||||||
|
|
||||||
const canCreate = await checkIfExactRecordAbsent(docObject);
|
const doc = checkAndCreateDoc(docObject);
|
||||||
if (canCreate) {
|
if (doc) {
|
||||||
const doc = await frappe.newDoc(docObject);
|
promises.push(doc);
|
||||||
promises.push(doc.insert());
|
|
||||||
queue.push(currency);
|
queue.push(currency);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Promise.all(promises);
|
return Promise.all(promises);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function setupChartOfAccounts(bankName) {
|
async function setupChartOfAccounts(bankName, country) {
|
||||||
await frappe.call({
|
await frappe.call({
|
||||||
method: 'import-coa',
|
method: 'import-coa',
|
||||||
});
|
});
|
||||||
|
const parentAccount = await getBankAccountParentName(country);
|
||||||
|
console.log('parent account gonna be', parentAccount, ` for ${country} `);
|
||||||
const docObject = {
|
const docObject = {
|
||||||
doctype: 'Account',
|
doctype: 'Account',
|
||||||
name: bankName,
|
name: bankName,
|
||||||
rootType: 'Asset',
|
rootType: 'Asset',
|
||||||
parentAccount: 'Bank Accounts',
|
parentAccount,
|
||||||
accountType: 'Bank',
|
accountType: 'Bank',
|
||||||
isGroup: 0,
|
isGroup: 0,
|
||||||
};
|
};
|
||||||
|
await checkAndCreateDoc(docObject);
|
||||||
if (await checkIfExactRecordAbsent(docObject)) {
|
|
||||||
const accountDoc = await frappe.newDoc(docObject);
|
|
||||||
accountDoc.insert();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function setupRegionalChanges(country) {
|
async function setupRegionalChanges(country) {
|
||||||
@ -147,3 +144,33 @@ export async function checkIfExactRecordAbsent(docObject) {
|
|||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function checkAndCreateDoc(docObject) {
|
||||||
|
const canCreate = await checkIfExactRecordAbsent(docObject);
|
||||||
|
if (!canCreate) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const doc = await frappe.newDoc(docObject);
|
||||||
|
return doc.insert();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getBankAccountParentName(country) {
|
||||||
|
const parentBankAccount = await frappe.db
|
||||||
|
.knex('Account')
|
||||||
|
.where({ isGroup: true, accountType: 'Bank' });
|
||||||
|
|
||||||
|
if (parentBankAccount.length === 0) {
|
||||||
|
// This should not happen if the fixtures are correct.
|
||||||
|
return 'Bank Accounts';
|
||||||
|
} else if (parentBankAccount.length > 1) {
|
||||||
|
switch (country) {
|
||||||
|
case 'Indonesia':
|
||||||
|
return 'Bank Rupiah - 1121.000';
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return parentBankAccount[0].name;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user