1
huangxiaoqiang
2025-11-21 97a9ad53c6d1ac097f46f0b5d4d4d53547c9efe4
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/Order/Production/ProductionStockSelect.vue
@@ -81,7 +81,7 @@
          title: "物料名称",
          type: "string",
          width: 150,
        },
        {
          prop: "palletCode",
@@ -102,7 +102,7 @@
        },
      ],
      selection: [],
      ids:[],
      ids: [],
      selectionSum: 0,
      selectionClass: "less-style",
      originalQuantity: 0,
@@ -130,7 +130,7 @@
      }
      this.ids.push(this.row.id);
      var param = {
        "orderIds":this.ids,
        "orderIds": this.ids,
        "stockViews": this.selection,
        "AreaId": this.form.areaId,
      }
@@ -138,7 +138,7 @@
        .post(
          "api/ProductionOutboundOrder/GeneratetProductOutboundTask",
          param,
          "数据处理中"
          "数据处理中..."
        )
        .then((x) => {
          if (!x.status) return this.$message.error(x.message);
@@ -151,12 +151,12 @@
    },
    getData() {
      var param = {
        "materielCode":this.row.materielCode,
        "materielCode": this.row.materielCode,
        "materielName": this.row.materielName,
        "demandClassification": this.row.demandClassification,
      }
      this.http
        .post("api/StockInfo/GetStockSelectViews",param,"查询中").then((x) => {
        .post("api/StockInfo/GetStockSelectViews", param, "查询中...").then((x) => {
          this.tableData = x;
        });
    },