From 7dc71b46eabac7b62a436818fe7955baf09b962e Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Tue, 21 Apr 2015 10:46:30 +0200 Subject: [PATCH] [FIX] Production Order: raw materials account is credited, not debited also renamed MO -> PO for coherence with rest of --- _static/coa-valuation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_static/coa-valuation.js b/_static/coa-valuation.js index 9b84a9778..ad523f9b8 100644 --- a/_static/coa-valuation.js +++ b/_static/coa-valuation.js @@ -253,11 +253,11 @@ {account: ASSETS.STOCK.code, credit: constant(cor)} ] }, { - label: "Manufacturing Order", + label: "Production Order", operations: [ {account: ASSETS.STOCK.code, debit: constant(50)}, {account: EXPENSES.MANUFACTURING_OVERHEAD.code, debit: constant(2)}, - {account: ASSETS.RAW_MATERIALS.code, debit: constant(52)} + {account: ASSETS.RAW_MATERIALS.code, credit: constant(52)} ] }]); function constant(val) {return function () { return val; };}