huangxiaoqiang
2025-01-10 c3a719e955015f8ac4007d1e6f44dd1baaf3077b
新增补录数据按钮
已修改2个文件
已添加1个文件
132 ■■■■■ 文件已修改
Code Management/WMS/WIDESEA_WMSClient/src/api/buttons.js 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/Dt_BillGroupStock.jsx 19 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/extend/SupplementationData.vue 104 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Code Management/WMS/WIDESEA_WMSClient/src/api/buttons.js
@@ -131,6 +131,15 @@
    onClick: function () {
      
    }
  },{
    name: '补录数据',
    type: 'primary',
    // color: '#529b2e',
    value: 'SupplementationData',
    onClick: function () {
    }
  }
]
Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/Dt_BillGroupStock.jsx
@@ -8,12 +8,12 @@
//此js文件是用来自定义扩展业务代码,可以扩展一些自定义页面或者重新配置生成的代码
// import gridHeader from "./demo_Product/Dt_BillGroupStockDetail.vue";
import gridBody from "./extend/SupplementationData.vue"
let extension = {
  components: {
    //查询界面扩展组件
    gridHeader: '',
    gridBody: '',
    gridBody: gridBody,
    gridFooter: '',
    //新建、编辑弹出框扩展组件
    modelHeader: '',
@@ -55,6 +55,21 @@
            })
        }
      }
      var btnSupplementationData = this.buttons.find(x => x.value == "SupplementationData");
            if (btnSupplementationData != null) {
                btnSupplementationData.onClick = () => {
                    let rows = this.$refs.table.getSelected();
                        if (rows.length == 0) {
                            return this.$error("请选择数据!");
                        } else if (rows.length > 1) {
                            return this.$error("只能选择单条数据");
                        }
                        this.$refs.gridBody.open(rows[0].palletCode);
                        this.refresh();
                    }
                }
      //示例:在按钮的最前面添加一个按钮
      // this.buttons.unshift({
      //   //也可以用push或者splice方法来修改buttons数组
Code Management/WMS/WIDESEA_WMSClient/src/extension/widesea_wms/stock/extend/SupplementationData.vue
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,104 @@
<template>
  <vol-box v-model="show" title="补录数据" :width="800" :height="600">
    <template #content>
      <el-form ref="form" :model="form" label-width="90px">
        <el-form-item label="托盘号">
          <el-input type="text" v-model="this.form.palletCode" readonly></el-input>
        </el-form-item>
        <el-form-item label="出库OR入库" prop="OutIn">
          <el-select v-model="OutIn" placeholder="请选择出库Or入库">
            <el-option label="出库" value="Out" />
            <el-option label="入库" value="In" />
          </el-select>
        </el-form-item>
        <el-form-item label="区域" prop="areaID">
          <el-select v-model="form.areaID" placeholder="请选择区域">
            <el-option label="陈化" value="1" />
            <el-option label="静置" value="2" />
            <el-option label="分容" value="3" />
            <el-option label="高温" value="4" />
            <el-option label="常温1" value="5" />
            <el-option label="常温2" value="6" />
            <el-option label="常温3" value="7" />
          </el-select>
        </el-form-item>
      </el-form>
    </template>
    <template #footer>
      <div>
        <el-button type="danger" size="small" plain @click="submit">
          <i class="el-icon-check">确认</i>
        </el-button>
        <el-button size="small" type="primary" plain @click="() => {
            this.show = false;
          }
          ">
          <i class="el-icon-close">关闭</i>
        </el-button>
      </div>
    </template>
  </vol-box>
</template>
<script>
import VolBox from "@/components/basic/VolBox.vue";
export default {
  components: {
    "vol-box": VolBox,
  },
  data() {
    return {
      OutIn:"",
      form:{
        areaID:"",
        palletCode:""
      },
      show: false,
    };
  },
  methods: {
    open(palletCode) {
      this.show = true;
      this.form.palletCode=palletCode;
    },
    submit() {
      this.$emit("parentCall", ($vue) => {
        if (
          !this.OutIn ||
          !this.form.areaID ||
          !this.form.palletCode||
          this.OutIn==""||
          this.form.areaID==""||
          this.form.palletCode==""
        ) {
          this.$message.error("参数错误");
          return;
        }
        if(this.OutIn=="Out"){
          this.http.post("api/ProcessApply/StockOutDataBack", this.form, "").then((x) => {
          if (!x.status) {
            this.$message.error(x.message);
          } else {
            this.$Message.success("成功");
            this.show = false;
            $vue.refresh();
          }
        });
        }else if(this.OutIn=="In"){
          this.http.post("api/ProcessApply/StockInDataBack", this.form, "").then((x) => {
          if (!x.status) {
            this.$message.error(x.message);
          } else {
            this.$Message.success("成功");
            this.show = false;
            $vue.refresh();
          }
        });
        }
      });
    },
  },
};
</script>