brotherton-erpnext/erpnext/docs/user/manual/de/customize-erpnext/custom-scripts/custom-script-examples/restrict-purpose-of-stock-entry.md

12 lines
412 B
Markdown
Raw Normal View History

# Anliegen der Lagerbuchung einschränken
<span class="text-muted contributed-by">Beigetragen von CWT Connector & Wire Technology GmbH</span>
frappe.ui.form.on("Material Request", "validate", function(frm) {
if(user=="user1@example.com" && frm.doc.purpose!="Material Receipt") {
msgprint("You are only allowed Material Receipt");
throw "Not allowed";
}
}
{next}