Skip to content

Commit

Permalink
fix: set rate as price list rate on uom change
Browse files Browse the repository at this point in the history
  • Loading branch information
s-aga-r committed Feb 8, 2024
1 parent 61a29eb commit 5cf0759
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions erpnext/stock/doctype/material_request/material_request.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,17 @@ frappe.ui.form.on('Material Request', {
const qty_fields = ['actual_qty', 'projected_qty', 'min_order_qty'];

if(!r.exc) {
$.each(r.message, function(k, v) {
if(!d[k] || in_list(qty_fields, k)) d[k] = v;
$.each(r.message, function(key, value) {
if(!d[key] || in_list(qty_fields, key)) {
d[key] = value;
}
});

if (d.price_list_rate != r.message.price_list_rate) {
d.price_list_rate = r.message.price_list_rate;

frappe.model.set_value(d.doctype, d.name, "rate", d.price_list_rate);
}
}
}
});
Expand Down Expand Up @@ -432,7 +440,6 @@ frappe.ui.form.on("Material Request Item", {
item.amount = flt(item.qty) * flt(item.rate);
frappe.model.set_value(doctype, name, "amount", item.amount);
refresh_field("amount", item.name, item.parentfield);
frm.events.get_item_data(frm, item, false);
},

item_code: function(frm, doctype, name) {
Expand All @@ -452,7 +459,12 @@ frappe.ui.form.on("Material Request Item", {
set_schedule_date(frm);
}
}
}
},

conversion_factor: function(frm, doctype, name) {
const item = locals[doctype][name];
frm.events.get_item_data(frm, item, false);
},
});

erpnext.buying.MaterialRequestController = class MaterialRequestController extends erpnext.buying.BuyingController {
Expand Down

0 comments on commit 5cf0759

Please sign in to comment.