fix(ux): negative stock warning

This commit is contained in:
Ankush Menat 2022-03-14 16:29:00 +05:30 committed by Ankush Menat
parent fda60da07b
commit 02d64a32c2

View File

@ -13,5 +13,24 @@ frappe.ui.form.on('Stock Settings', {
frm.set_query("default_warehouse", filters);
frm.set_query("sample_retention_warehouse", filters);
},
allow_negative_stock: function(frm) {
if (!frm.doc.allow_negative_stock) {
return;
}
let msg = __("Using negative stock disables FIFO/Moving average valuation when inventory is negative.");
msg += " ";
msg += __("This is considered dangerous from accounting point of view.")
msg += "<br>";
msg += ("Do you still want to enable negative inventory?");
frappe.confirm(
msg,
() => {},
() => {
frm.set_value("allow_negative_stock", 0);
}
);
}
});