feat: added confirm dialog on closing of workorder
diff --git a/erpnext/manufacturing/doctype/work_order/work_order.js b/erpnext/manufacturing/doctype/work_order/work_order.js
index d423573..9ab8161 100644
--- a/erpnext/manufacturing/doctype/work_order/work_order.js
+++ b/erpnext/manufacturing/doctype/work_order/work_order.js
@@ -520,9 +520,12 @@
 	set_custom_buttons: function(frm) {
 		var doc = frm.doc;
 		if (doc.docstatus === 1 && doc.status != "Closed") {
-			console.log("check");
 			frm.add_custom_button(__('Close'), function() {
-				erpnext.work_order.change_work_order_status(frm, "Closed");
+				frappe.confirm(__("Once the Work Order is Closed. It can't be resumed."),
+					() => {
+						erpnext.work_order.change_work_order_status(frm, "Closed");
+					}
+				);
 			}, __("Status"));
 
 			if (doc.status != 'Stopped' && doc.status != 'Completed') {