From 98e7dcfe2c3707c9c5a190d529599b85096d51ae Mon Sep 17 00:00:00 2001 From: nabinhait Date: Tue, 29 Jul 2014 11:26:52 +0530 Subject: [PATCH] landed cost voucher minor fix --- .../stock/doctype/landed_cost_voucher/landed_cost_voucher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js index 6101074282..042011a991 100644 --- a/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js +++ b/erpnext/stock/doctype/landed_cost_voucher/landed_cost_voucher.js @@ -24,7 +24,7 @@ erpnext.stock.LandedCostVoucher = erpnext.stock.StockController.extend({ return { filters:[ ['Account', 'group_or_ledger', '=', 'Ledger'], - ['Account', 'account_type', 'in', ['Tax', 'Chargeable']], + ['Account', 'account_type', 'in', ['Tax', 'Chargeable', 'Expense Account']], ['Account', 'company', '=', me.frm.doc.company] ] }