wangxinhui
10 天以前 2aec0a99e559fb11b7046b148e5f357b3208cb66
ÏîÄ¿´úÂë/WMS/WMSClient/src/extension/outbound/extend/SelectedStock.vue
@@ -13,14 +13,14 @@
            <el-col :span="24">
              <span class="less-style">物料名称: {{ row.materielName }} </span>
              <el-divider direction="vertical"></el-divider>
              <span class="less-style">物料编号: {{ row.materielCode }} </span>
              <span class="less-style">物料编号: {{ row.materialNo }} </span>
              <el-divider direction="vertical"></el-divider>
              <span class="less-style"
                >需求数量: {{ row.orderQuantity }}
                >需求数量: {{ row.totalUsage }}
              </span>
              <el-divider direction="vertical"></el-divider>
              <span class="less-style"
                >已分配数量: {{ row.lockQuantity }}
                >已分配数量: {{ row.assignTotalUsage }}
              </span>
            </el-col>
          </el-row>
@@ -81,6 +81,7 @@
  data() {
    return {
      row: null,
      orderNo:null,
      showDetialBox: false,
      tableData: [],
      tableColumns: [
@@ -105,16 +106,10 @@
          hidden: true,
        },
        {
          prop: "orderType",
          title: "单据类型",
          prop: "materielId",
          title: "物料Id",
          type: "string",
          width: 90,
        },
        {
          prop: "batchNo",
          title: "批次号",
          type: "string",
          width: 120,
        },
        {
          prop: "materielCode",
@@ -136,16 +131,22 @@
          hidden: true,
        },
        {
          prop: "originalQuantity",
          title: "原始库存量",
          prop: "orderQuantity",
          title: "单据需求长度",
          type: "string",
          width: 100,
          width: 110,
        },
        {
          prop: "originalQuantity",
          title: "原库存长度",
          type: "string",
          width: 110,
        },
        {
          prop: "assignQuantity",
          title: "分配出库量",
          title: "分配出库长度",
          type: "string",
          width: 100,
          width: 110,
        },
        {
          prop: "taskNum",
@@ -155,7 +156,7 @@
        },
        {
          prop: "palletCode",
          title: "托盘编号",
          title: "条码编号",
          type: "string",
          width: 150,
        },
@@ -174,15 +175,16 @@
    };
  },
  methods: {
    open(row) {
    open(row,orderNo) {
      this.row = row;
      this.orderNo=orderNo;
      this.showDetialBox = true;
      this.getData();
    },
    getData() {
      this.http
        .post(
          "api/OutStockLockInfo/GetByOrderDetailId?orderDetailId=" +
          "api/OutStockLockInfo/GetByOrderDetailId?orderNo="+this.orderNo+"&orderDetailId=" +
            this.row.id,
          null,
          "查询中"