Browse Source

2022-07-14 结束卷和产量报告 允许报0数结束

master
rui_li 4 years ago
parent
commit
b6e22b0c60
  1. 5
      src/views/modules/yieldReport/com_finish_roll.vue

5
src/views/modules/yieldReport/com_finish_roll.vue

@ -805,9 +805,10 @@ export default {
// //
let approvedQty = this.pageData.approvedQty; let approvedQty = this.pageData.approvedQty;
if(approvedQty == null || approvedQty == ''){ if(approvedQty == null || approvedQty == ''){
this.$message.error('请输入良品总数量!');
//this.$message.error('!');
this.pageData.approvedQty = 0;// this.pageData.approvedQty = 0;//
return false;
approvedQty = 0;
//return false;
} }
if(approvedQty < 0){ if(approvedQty < 0){
this.$message.error('良品总数量必须大于等于0!'); this.$message.error('良品总数量必须大于等于0!');

Loading…
Cancel
Save