[FIX] mementoes: Fix some terms/computation/links
This commit is contained in:
@@ -211,20 +211,20 @@
|
||||
purchase = 52,
|
||||
purchase_tax = 52 * 0.09;
|
||||
var operations = Immutable.fromJS([{
|
||||
label: "Supplier Invoice (PO $50, Invoice $40)",
|
||||
label: "Vendor Bill (PO $50, Invoice $40)",
|
||||
operations: [
|
||||
{account: LIABILITIES.STOCK_IN.code, debit: constant(50)},
|
||||
{account: ASSETS.TAXES_PAID.code, debit: constant(50 * 0.09)},
|
||||
{account: LIABILITIES.ACCOUNTS_PAYABLE.code, credit: constant(50 * 1.09)},
|
||||
]
|
||||
}, {
|
||||
label: "Supplier Goods Reception (PO $50, Invoice $50)",
|
||||
label: "Vendor Goods Reception (PO $50, Invoice $50)",
|
||||
operations: [
|
||||
{account: LIABILITIES.STOCK_IN.code, credit: constant(50)},
|
||||
{account: ASSETS.STOCK.code, debit: constant(50)},
|
||||
]
|
||||
}, {
|
||||
label: "Supplier Invoice (PO $48, Invoice $50)",
|
||||
label: "Vendor Bill (PO $48, Invoice $50)",
|
||||
operations: [
|
||||
{account: EXPENSES.PRICE_DIFFERENCE.code, debit: constant(2)},
|
||||
{account: LIABILITIES.STOCK_IN.code, debit: constant(48)},
|
||||
@@ -232,7 +232,7 @@
|
||||
{account: LIABILITIES.ACCOUNTS_PAYABLE.code, credit: constant(50 * 1.09)},
|
||||
]
|
||||
}, {
|
||||
label: "Supplier Goods Reception (PO $48, Invoice $50)",
|
||||
label: "Vendor Goods Reception (PO $48, Invoice $50)",
|
||||
operations: [
|
||||
{account: LIABILITIES.STOCK_IN.code, credit: constant(48)},
|
||||
{account: ASSETS.STOCK.code, debit: constant(48)},
|
||||
|
||||
Reference in New Issue
Block a user