87ee25bcc236b70b0d22b2ff121f9552959d4873..c825c201696b2eeb3e2faccda7f17f376ac1e097
2023-11-24 zss
Merge remote-tracking branch 'origin/master'
c825c2 对比 | 目录
2023-11-24 zss
货盘运输修改
7ffc79 对比 | 目录
已修改2个文件
16 ■■■■ 文件已修改
src/views/warehouse/pallettransports/ifslocation-form.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/warehouse/pallettransports/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/warehouse/pallettransports/ifslocation-form.vue
@@ -142,13 +142,13 @@
  methods: {
    formatLocType(val){
      let list = this.locTypeOption
      console.log(val,list)
      list.forEach(ele=>{
        console.log(Number(ele.value) == Number(val));
        if(Number(ele.value) == Number(val)){
          return ele.label
        }
      let index = list.findIndex(ele=>{
        return ele.value == val
      })
      if(index!=null){
        return list[index].label
      }
      return null
    },
    // 查询ifs库位列表
    queryLocation() {
src/views/warehouse/pallettransports/index.vue
@@ -125,8 +125,8 @@
              </el-table-column>
              <el-table-column prop="unit" label="单位" align="center">
              </el-table-column>
              <el-table-column prop="fromIfsLocationNo" label="IFS从库位" align="center">
              </el-table-column>
              <!-- <el-table-column prop="fromIfsLocationNo" label="IFS从库位" align="center">
              </el-table-column> -->
              <el-table-column prop="toIfsLocationNo" label="移至库位" align="center">
                <template slot-scope="scope">
                  <el-link type="primary" @click="openSingleLocationDialog(scope.row)">{{ scope.row.toIfsLocationNo