commit | 59a706585ce0a4bde85bfebc5d30ab063fbd7972 | [log] [tgz] |
---|---|---|
author | Neil Trini Lasrado <neil@frappe.io> | Wed Feb 04 11:44:24 2015 +0530 |
committer | Neil Trini Lasrado <neil@frappe.io> | Wed Feb 04 11:44:24 2015 +0530 |
tree | 4cd2116b307665f96cf7a174eba588c276b32756 | |
parent | de164c91e0f6fb8d5185ad6c80ba6638300b204f [diff] |
actual start and end date made blank if islocal
diff --git a/erpnext/manufacturing/doctype/production_order/production_order.js b/erpnext/manufacturing/doctype/production_order/production_order.js index d7dc79a..f7ebaa9 100644 --- a/erpnext/manufacturing/doctype/production_order/production_order.js +++ b/erpnext/manufacturing/doctype/production_order/production_order.js
@@ -7,6 +7,13 @@ cfn_set_fields(doc, dt, dn); this.frm.add_fetch("sales_order", "delivery_date", "expected_delivery_date"); + + if(doc.__islocal) { + cur_frm.set_value({ + "actual_start_date": "", + "actual_end_date": "" + }); + } }, before_submit: function() {