1
dengjunjie
2025-03-18 9f225bb1f1e26d25c1652d3e1ec2a8f239f69615
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSClient/src/extension/inbound/inboundOrder.js
@@ -17,6 +17,21 @@
  tableAction: '', //指定某张表的权限(这里填写表名,默认不用填写)
  buttons: { view: [], box: [], detail: [] }, //扩展的按钮
  methods: {
    //获取表单配置
    getOption(field) {
      let option;
      this.detailOptions.columns.forEach(x => {
        if (x.field == field) {
          option = x;
        }
        // x.forEach(item => {
        //   if (item.field == field) {
        //     option = item;
        //   }
        // })
      })
      return option;
    },
    //下面这些方法可以保留也可以删除
    onInit() {
      // let enableBtn = this.buttons.find(x => x.value == 'Add');
@@ -32,6 +47,7 @@
      //框架初始化配置后
      //如果要配置明细表,在此方法操作
      this.detailOptions.columns.forEach(x => {
        if (x.field == 'materielCode') {
          x.onChange = (val, option) => {
            // this.$error(val.materielCode)
@@ -42,9 +58,19 @@
                // this.$success(source.data.materielName);
                this.refresh();
              })
            // let locationCodes = this.getOption("locationCode");
            // locationCodes.bind.data.splice(0);
            // this.http.post("/api/LocationInfo/GetLocationCodes", { Extra: val.materielCode }, true).then(
            //   source => {
            //     if (!source.status) return this.$error(source.message);
            //     val.materielName = source.message;
            //     for (let i = 0; i < source.data.length; i++) {
            //       locationCodes.bind.data.push({ key: source.data[i], value: source.data[i] });
            //     }
            //     this.refresh();
            //   })
          }
        }
      });
    },
    searchBefore(param) {
@@ -58,8 +84,23 @@
    },
    addBefore(formData) {
      //新建保存前formData为对象,包括明细表,可以给给表单设置值,自己输出看formData的值
      let req = true;
      // let locationCodes = formData.detailData.map(x=>{
      //   // this.$error(x.locationCode);
      //   return x.locationCode
      // });
      formData.detailData.forEach(x => {
        // if ('locationCode' in x) {
        //   //  return this.$error(x.batchNo);
        // }
        if (!x.hasOwnProperty('batchNo')) {
          req = false;
          return this.$error("柜号不能为空");
        }
      })
      if (formData.detailData.length > 3) return this.$error("入库单明细不能超过3个");
      return true;
      return req;
    },
    updateBefore(formData) {
      //编辑保存前formData为对象,包括明细表、删除行的Id
@@ -78,17 +119,26 @@
      //(3)this.editFormFields.字段='xxx';
      //如果需要给下拉框设置默认值,请遍历this.editFormOptions找到字段配置对应data属性的key值
      //看不懂就把输出看:console.log(this.editFormOptions)
      if (this.currentAction == 'Add') {
      let locationCodes=this.getOption("locationCode");
      locationCodes.bind.data.splice(0);
      this.http.post("/api/LocationInfo/GetLocationCodes", null, true).then(
        source => {
          if (!source.status) return this.$error(source.message);
          for (let i = 0; i < source.data.length; i++) {
            locationCodes.bind.data.push({ key: source.data[i], value: source.data[i] });
          }
          this.refresh();
        })
        this.detailOptions.columns.forEach(x => {
          if (x.field == 'materielCode' || x.field == 'batchNo' || x.field == 'orderQuantity') {
          if (x.field == 'materielCode' || x.field == 'batchNo' || x.field == 'orderQuantity' || x.field == 'locationCode') {
            x.readonly = false
          }
        });
      } else {
        this.detailOptions.columns.forEach(x => {
          if (x.field == 'materielCode' || x.field == 'batchNo' || x.field == 'orderQuantity') {
            x.readonly = row.orderStatus > 0
          if (x.field == 'materielCode' || x.field == 'batchNo' || x.field == 'orderQuantity' || x.field == 'locationCode') {
            x.readonly = true// row.orderStatus > 0
          }
        });
      }