自动化立体仓库 - WMS系统
#
1
16 小时以前 371af76976cec152184123fac0073efcba2b5a70
src/main/webapp/views/orderCargoGrouping/orderCargoGroupingOperate.html
@@ -216,7 +216,7 @@
         class="detail-dialog"
         @close="closeDetailDialog">
      <div v-if="currentRow">
         <h3>组货单主表 (订单号: {{ currentRow.orderNo }})</h3>
         <h3>订单主表 (订单号: {{ currentRow.orderNo }})</h3>
         <el-descriptions :column="2" border>
            <el-descriptions-item label="客户名称">{{ currentRow.cstmrName }}</el-descriptions-item>
            <el-descriptions-item label="状态">{{ formatStatus(currentRow)}}</el-descriptions-item>
@@ -224,7 +224,7 @@
            <el-descriptions-item label="备注">{{ currentRow.memo || '无' }}</el-descriptions-item>
         </el-descriptions>
         <h3 style="margin-top: 20px;">组货单明细</h3>
         <h3 style="margin-top: 20px;">订单明细</h3>
         <el-table
               border
               :data="tableDataB"
@@ -250,7 +250,7 @@
                  ></el-input-number>
               </template>
            </el-table-column>
            <el-table-column prop="erpAnfme" label="erp下发数量" min-width="80" align="center"></el-table-column>
            <el-table-column prop="anfme" label="erp下发数量" min-width="80" align="center"></el-table-column>
            <el-table-column prop="sortingAnfme" label="待下发数量" min-width="80" align="center"></el-table-column>
<!--            <el-table-column prop="status" label="状态" min-width="100" align="center" :formatter="formatStatusB"></el-table-column>-->
            <el-table-column prop="inspect" label="状态" min-width="100" align="center" :formatter="formatStatusC"></el-table-column>
@@ -544,7 +544,7 @@
            }
            // 验证ERP下发数量
            if (row.erpAnfme && newValue > parseInt(row.erpAnfme)) {
            if (row.anfme && newValue > parseInt(row.anfme)) {
               this.$message.warning('修改数量不能大于ERP下架数量');
               this.$set(row, 'anfme', oldValue);
               this.modifiedQuantities[itemKey] = oldValue;
@@ -634,7 +634,7 @@
               headers: {'token': localStorage.getItem('token')},
               data: top.reObject({
                  orderNo: orderNo, // 组货单号
                  id: id, // 箱号
                  id: id, // id
                  anfme: anfme, // 箱号
                  inspect: inspect // 箱号
               }),
@@ -644,7 +644,7 @@
                  if (res.code === 200 || res.success) {
                     this.$message({
                        message: `修改成功!组货单号: ${groupOrderNo}, 箱号: ${batch}`,
                        message: `修改成功!订单号: ${orderNo}, id: ${id}`,
                        type: 'success',
                        duration: 3000
                     });