fix: Hide button and cart after success
diff --git a/erpnext/templates/includes/cart.js b/erpnext/templates/includes/cart.js
index f26aff4..4c35dd0 100644
--- a/erpnext/templates/includes/cart.js
+++ b/erpnext/templates/includes/cart.js
@@ -162,6 +162,8 @@
.html(msg || frappe._("Something went wrong!"))
.toggle(true);
} else {
+ $('.cart-container table').hide();
+ $(btn).hide();
window.location.href = '/orders/' + encodeURIComponent(r.message);
}
}
@@ -185,6 +187,8 @@
.html(msg || frappe._("Something went wrong!"))
.toggle(true);
} else {
+ $('.cart-container table').hide();
+ $(btn).hide();
window.location.href = '/quotations/' + encodeURIComponent(r.message);
}
}