From 47b92cc59da3bebcae03e2d50c502b49505853dc Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Fri, 13 Mar 2015 17:42:45 +0100 Subject: [PATCH] [ADD] purchase of building * payment not very interesting, just payment of suppliers * accounting entries to take a loan? --- _static/chart-of-accounts.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/_static/chart-of-accounts.js b/_static/chart-of-accounts.js index 638421789..93cf64330 100644 --- a/_static/chart-of-accounts.js +++ b/_static/chart-of-accounts.js @@ -263,11 +263,17 @@ {account: ASSETS.CASH.code, credit: constant(purchase + purchase_tax)} ] }, { - label: "Buy and pay a building (an asset)", + label: "Acquire a building (purchase contract)", operations: [ {account: ASSETS.BUILDINGS.code, debit: constant(3000)}, - {account: LIABILITIES.NOTES_PAYABLE.code, credit: constant(2500)}, - {account: ASSETS.CASH.code, credit: constant(500)} + {account: ASSETS.TAXES_PAID.code, debit: constant(300)}, + {account: LIABILITIES.ACCOUNTS_PAYABLE.code, credit: constant(3300)} + ] + }, { + label: "Pay for building", + operations: [ + {account: LIABILITIES.ACCOUNTS_PAYABLE.code, debit: constant(3300)}, + {account: ASSETS.CASH.code, credit: constant(3300)} ] }, { label: "Yearly Asset Depreciation (10% per year)",