mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-19 13:09:17 +00:00
fix: Do not cancel reference document on Quality Inspection cancellation (#24198)
This commit is contained in:
@@ -4,6 +4,11 @@
|
|||||||
cur_frm.cscript.refresh = cur_frm.cscript.inspection_type;
|
cur_frm.cscript.refresh = cur_frm.cscript.inspection_type;
|
||||||
|
|
||||||
frappe.ui.form.on("Quality Inspection", {
|
frappe.ui.form.on("Quality Inspection", {
|
||||||
|
refresh: function(frm) {
|
||||||
|
// Ignore cancellation of reference doctype on cancel all.
|
||||||
|
frm.ignore_doctypes_on_cancel_all = [frm.doc.reference_type];
|
||||||
|
},
|
||||||
|
|
||||||
item_code: function(frm) {
|
item_code: function(frm) {
|
||||||
if (frm.doc.item_code) {
|
if (frm.doc.item_code) {
|
||||||
return frm.call({
|
return frm.call({
|
||||||
|
|||||||
Reference in New Issue
Block a user