mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-14 10:13:57 +00:00
Co-authored-by: NaviN <118178330+Navin-S-R@users.noreply.github.com> Co-authored-by: Raffael Meyer <14891507+barredterra@users.noreply.github.com> fix: use serial and batch bundle to fetch incoming rate (#51119)
This commit is contained in:
@@ -197,6 +197,13 @@ erpnext.assets.AssetCapitalization = class AssetCapitalization extends erpnext.s
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
serial_and_batch_bundle(doc, cdt, cdn) {
|
||||||
|
var row = frappe.get_doc(cdt, cdn);
|
||||||
|
if (cdt === "Asset Capitalization Stock Item") {
|
||||||
|
this.get_warehouse_details(row);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
asset(doc, cdt, cdn) {
|
asset(doc, cdt, cdn) {
|
||||||
var row = frappe.get_doc(cdt, cdn);
|
var row = frappe.get_doc(cdt, cdn);
|
||||||
if (cdt === "Asset Capitalization Asset Item") {
|
if (cdt === "Asset Capitalization Asset Item") {
|
||||||
@@ -410,6 +417,7 @@ erpnext.assets.AssetCapitalization = class AssetCapitalization extends erpnext.s
|
|||||||
voucher_type: me.frm.doc.doctype,
|
voucher_type: me.frm.doc.doctype,
|
||||||
voucher_no: me.frm.doc.name,
|
voucher_no: me.frm.doc.name,
|
||||||
allow_zero_valuation: 1,
|
allow_zero_valuation: 1,
|
||||||
|
serial_and_batch_bundle: item.serial_and_batch_bundle,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
callback: function (r) {
|
callback: function (r) {
|
||||||
|
|||||||
@@ -363,6 +363,7 @@ class AssetCapitalization(StockController):
|
|||||||
"voucher_no": self.name,
|
"voucher_no": self.name,
|
||||||
"company": self.company,
|
"company": self.company,
|
||||||
"allow_zero_valuation": cint(item.get("allow_zero_valuation_rate")),
|
"allow_zero_valuation": cint(item.get("allow_zero_valuation_rate")),
|
||||||
|
"serial_and_batch_bundle": item.serial_and_batch_bundle,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -763,6 +764,7 @@ def get_consumed_stock_item_details(args):
|
|||||||
"company": args.company,
|
"company": args.company,
|
||||||
"serial_no": args.serial_no,
|
"serial_no": args.serial_no,
|
||||||
"batch_no": args.batch_no,
|
"batch_no": args.batch_no,
|
||||||
|
"serial_and_batch_bundle": args.serial_and_batch_bundle,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
out.update(get_warehouse_details(incoming_rate_args))
|
out.update(get_warehouse_details(incoming_rate_args))
|
||||||
|
|||||||
Reference in New Issue
Block a user