fix(ux): negative stock warning
This commit is contained in:
parent
fda60da07b
commit
02d64a32c2
@ -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);
|
||||
}
|
||||
);
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user