Merge pull request #4613 from nabinhait/fixes

[fix] Item query and exchange rate
This commit is contained in:
Rushabh Mehta
2016-01-15 11:19:44 +05:30
3 changed files with 13 additions and 10 deletions

View File

@@ -10,9 +10,11 @@ frappe.ui.form.on("Stock Reconciliation", {
// end of life
frm.set_query("item_code", "items", function(doc, cdt, cdn) {
return {
filters:[
['Item', 'end_of_life', '>=', frappe.datetime.nowdate()]
]
query: "erpnext.controllers.queries.item_query",
filters:{
"is_stock_item": 1,
"has_serial_no": 0
}
}
});
},