Browse Source

24-05-16 标签记录

master
qiezi 1 year ago
parent
commit
618304161e
  1. 10
      src/views/modules/production/outboundLabelScan.vue
  2. 2
      src/views/modules/production/shippingScan.vue

10
src/views/modules/production/outboundLabelScan.vue

@ -200,7 +200,7 @@ export default {
return
}
// + > + -1
if (this.selectDelNotifyDetail.printBoxSeqNo + this.boxNum > this.selectDelNotifyDetail.printTotalBoxCount){
if (this.selectDelNotifyDetail.printBoxSeqNo + this.boxNum -1> this.selectDelNotifyDetail.printTotalBoxCount){
this.$message.warning("超出总箱数。")
return
}
@ -715,17 +715,17 @@ export default {
<el-row :gutter="20">
<el-col :span="4">
<el-form-item label="发货数量" required>
<el-input-number v-model="selectDelNotifyDetail.shipQty" :controls="false" :step="0" :precision="0"></el-input-number>
<el-input-number v-model="selectDelNotifyDetail.shipQty" :controls="false" :step="0" ></el-input-number>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="每盒(袋)数量" required>
<el-input-number v-model="selectDelNotifyDetail.qtyPerBag" :controls="false" :step="0" :precision="0"></el-input-number>
<el-input-number v-model="selectDelNotifyDetail.qtyPerBag" :controls="false" :step="0" ></el-input-number>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="每箱中的盒数" required>
<el-input-number v-model="selectDelNotifyDetail.qtyPerBox" :controls="false" :step="0" :precision="0"></el-input-number>
<el-input-number v-model="selectDelNotifyDetail.qtyPerBox" :controls="false" :step="0"></el-input-number>
</el-form-item>
</el-col>
<el-col :span="4">
@ -740,7 +740,7 @@ export default {
</el-col>
<el-col :span="4">
<el-form-item label="末箱子余数" required>
<el-input-number v-model="endBoxQty" :controls="false" :step="0" :precision="0"></el-input-number>
<el-input-number v-model="endBoxQty" :controls="false" :step="0" :precision="2"></el-input-number>
</el-form-item>
</el-col>
</el-row>

2
src/views/modules/production/shippingScan.vue

@ -217,7 +217,7 @@ export default {
return
}
// + > + -1
if (this.selectDelNotifyDetail.printBoxSeqNo + this.boxNum > this.selectDelNotifyDetail.printTotalBoxCount){
if (this.selectDelNotifyDetail.printBoxSeqNo + this.boxNum -1> this.selectDelNotifyDetail.printTotalBoxCount){
this.$message.warning("超出总箱数。")
return
}

Loading…
Cancel
Save