diff --git a/src/pages/Middle/Mold/MoldProductionOrder/Edit.vue b/src/pages/Middle/Mold/MoldProductionOrder/Edit.vue index 3f0aac9..68ff789 100644 --- a/src/pages/Middle/Mold/MoldProductionOrder/Edit.vue +++ b/src/pages/Middle/Mold/MoldProductionOrder/Edit.vue @@ -810,8 +810,13 @@ export default { postdata.engineer_uid = this.$mk.toBigInt(postdata.engineer_uid); } + if (postdata.mold_master_user_detail) { + postdata.mold_master_name = postdata.mold_master_user_detail.name || ''; + } + if (postdata.engineer_detail) { + postdata.engineer_name = postdata.engineer_detail.name || ''; + } - postdata.mold_production_order_component = !this.isEdit ? [] : { insertList: [], deleteList: [], updateList: [] }; postdata.mold_production_order_component_processes = !this.isEdit ? [] : { insertList: [], deleteList: [], updateList: [] };