[fix] Quantity is not copying in the Received Qty during making of debit note

This commit is contained in:
Rohit Waghchaure 2017-03-17 17:19:17 +05:30
parent f494626ce4
commit 414c0ab3bb

View File

@ -139,7 +139,7 @@ erpnext.buying.BuyingController = erpnext.TransactionController.extend({
qty: function(doc, cdt, cdn) { qty: function(doc, cdt, cdn) {
var item = frappe.get_doc(cdt, cdn); var item = frappe.get_doc(cdt, cdn);
if ((doc.doctype == "Purchase Receipt") || (doc.doctype == "Purchase Invoice" && doc.update_stock)) { if ((doc.doctype == "Purchase Receipt") || (doc.doctype == "Purchase Invoice" && (doc.update_stock || doc.is_return))) {
frappe.model.round_floats_in(item, ["qty", "received_qty"]); frappe.model.round_floats_in(item, ["qty", "received_qty"]);
if(!item.rejected_qty && item.qty) { if(!item.rejected_qty && item.qty) {
item.received_qty = item.qty; item.received_qty = item.qty;