commit | d7fb6dce89900b928f2cae85a6755ab403b1ee3b | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Fri Jan 31 17:05:09 2014 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Fri Jan 31 17:05:09 2014 +0530 |
tree | f8b87852fc3bee912ec3de953f3749c68768f8dd | |
parent | 759f9ee973223be5805e576d177c2b60619b4218 [diff] |
Stock reconciliation: cost center filters
diff --git a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js index 48f3e45..b12b38a 100644 --- a/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js +++ b/erpnext/stock/doctype/stock_reconciliation/stock_reconciliation.js
@@ -40,6 +40,14 @@ } } } + this.frm.fields_dict["cost_center"].get_query = function() { + return { + "filters": { + 'company': me.frm.doc.company, + 'group_or_ledger': 'Ledger' + } + } + } } },