Browse Source

小数问题

master
han\hanst 3 months ago
parent
commit
5e90f6e1f1
  1. 4
      src/views/modules/recv/qualifiedStorage.vue

4
src/views/modules/recv/qualifiedStorage.vue

@ -174,7 +174,7 @@
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<el-form-item label="数量"> <el-form-item label="数量">
<span>{{ label.qty }} {{ label.unit}}</span>
<span>{{ label.qty }} </span>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -564,7 +564,7 @@ export default {
lotBatchNo: '', // HandlingUnit lotBatchNo: '', // HandlingUnit
wdr: '', // HandlingUnit wdr: '', // HandlingUnit
toLocationNo: this.targetLocationId, toLocationNo: this.targetLocationId,
qtyToMove: Math.floor(totalQty),
qtyToMove: totalQty,
qtyArrived: this.selectedReceipt.qtyArrived, qtyArrived: this.selectedReceipt.qtyArrived,
scrappedQty: this.selectedReceipt.scrappedQty || 0, scrappedQty: this.selectedReceipt.scrappedQty || 0,
returnedQty: this.selectedReceipt.returnedQty || 0, returnedQty: this.selectedReceipt.returnedQty || 0,

Loading…
Cancel
Save