mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-31 10:49:09 +00:00
Merge branch 'master' of github.com:webnotes/erpnext
This commit is contained in:
@@ -108,8 +108,8 @@ erpnext.stock.StockReconciliation = erpnext.stock.StockController.extend({
|
||||
method: 'stock.doctype.stock_reconciliation.stock_reconciliation.upload'
|
||||
},
|
||||
sample_url: "e.g. http://example.com/somefile.csv",
|
||||
callback: function(r) {
|
||||
me.frm.set_value("reconciliation_json", JSON.stringify(r));
|
||||
callback: function(fid, filename, r) {
|
||||
me.frm.set_value("reconciliation_json", JSON.stringify(r.message));
|
||||
me.show_reconciliation_data();
|
||||
me.frm.save();
|
||||
}
|
||||
|
||||
@@ -203,23 +203,27 @@ wn.module_page["Stock"] = [
|
||||
{
|
||||
"label":wn._("Purchase In Transit"),
|
||||
route: "query-report/Purchase In Transit",
|
||||
doctype: "Purchase Order"
|
||||
},
|
||||
{
|
||||
"label":wn._("Requested Items To Be Transferred"),
|
||||
route: "query-report/Requested Items To Be Transferred",
|
||||
doctype: "Material Request"
|
||||
},
|
||||
{
|
||||
"label":wn._("Batch-Wise Balance History"),
|
||||
route: "query-report/Batch-Wise Balance History",
|
||||
doctype: "Batch"
|
||||
},
|
||||
{
|
||||
"label":wn._("Warehouse-Wise Stock Balance"),
|
||||
route: "query-report/Warehouse-Wise Stock Balance",
|
||||
doctype: "Warehouse"
|
||||
},
|
||||
{
|
||||
"label":wn._("Item Prices"),
|
||||
route: "query-report/Item Prices",
|
||||
|
||||
doctype: "Price List"
|
||||
},
|
||||
{
|
||||
"label":wn._("Itemwise Recommended Reorder Level"),
|
||||
|
||||
Reference in New Issue
Block a user