huangxiaoqiang
2025-02-19 5bc6d819399409a429093a6001c553d6fa2d2e15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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>