commit | 42fd7ffbc01c59b901b46953ead07096da957887 | [log] [tgz] |
---|---|---|
author | GangaManoj <ganga.manoj98@gmail.com> | Sun Jun 20 17:44:35 2021 +0530 |
committer | GangaManoj <ganga.manoj98@gmail.com> | Fri Jul 09 22:36:05 2021 +0530 |
tree | fb5882e4e8e565a5368ff7cdf3ada97ec8d58328 | |
parent | 68e0c96c0366a18da4215b2834644db44f35171c [diff] |
fix(Asset Repair): Set completion_date on changing repair_status to 'Completed'
diff --git a/erpnext/assets/doctype/asset_repair/asset_repair.js b/erpnext/assets/doctype/asset_repair/asset_repair.js index efa6a9d..ced3dad 100644 --- a/erpnext/assets/doctype/asset_repair/asset_repair.js +++ b/erpnext/assets/doctype/asset_repair/asset_repair.js
@@ -28,6 +28,10 @@ } }); } + + if (frm.doc.repair_status == "Completed") { + frm.set_value('completion_date', frappe.datetime.now_datetime()); + } } });