Browse Source

2024.9.18 一、物料成本信息维护(第二版)

二、加工中心功能改造
三、标准工序(第二版)
四、商品组 - 标准工序(第二版)
五、商品组 - Process Time Matrix(第一版)
java8
yuejiayang 1 year ago
parent
commit
e2e4b5d88e
  1. 14
      src/views/modules/eam/com_project_proof_record.vue

14
src/views/modules/eam/com_project_proof_record.vue

@ -1151,6 +1151,13 @@
})
return
}
// 0
if (!/^[1-9]\d*$/.test(this.modalData.proofingNumber)) {
this.$alert('数量必需是大于等于0的正整数', '提示', {
confirmButtonText: '确定',
});
return
}
if (this.modalData.planStartDate === '' || this.modalData.planStartDate === null || this.modalData.planStartDate === undefined) {
this.$message({
message: '打样开始日期不能为空',
@ -1386,6 +1393,13 @@
})
return
}
// 0
if (!/^[1-9]\d*$/.test(this.modalData.proofingNumber)) {
this.$alert('数量必需是大于等于0的正整数', '提示', {
confirmButtonText: '确定',
});
return
}
if (this.modalData.planStartDate === '' || this.modalData.planStartDate === null || this.modalData.planStartDate === undefined) {
this.$message({
message: '打样开始日期不能为空',

Loading…
Cancel
Save