lxf 1 年之前
父节点
当前提交
6ed69fc7d3
共有 1 个文件被更改,包括 159 次插入0 次删除
  1. 159 0
      src/views/production/operation/overclaim/index.vue

+ 159 - 0
src/views/production/operation/overclaim/index.vue

@@ -0,0 +1,159 @@
+<template>
+  <el-card class="box-card">
+    <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="submit">
+      <template #productionCostList>
+        <div style="width: 100%">
+          <el-table :data="formData.data.productionCostList" :row-style="{ height: '35px' }" header-row-class-name="tableHeader">
+            <el-table-column label="SKU品号" prop="code" width="160" />
+            <el-table-column label="SKU品名" prop="name" min-width="220" />
+            <el-table-column label="BOM品号" prop="bomCode" width="160" />
+            <el-table-column label="订单数量" prop="orderQuantity" width="120" />
+            <el-table-column label="超领数量" width="160">
+              <template #default="{ row, $index }">
+                <el-form-item :prop="'productionCostList.' + $index + '.quantity'" :rules="rules.quantity" :inline-message="true" style="width: 100%">
+                  <el-input-number
+                    onmousewheel="return false;"
+                    v-model="row.quantity"
+                    placeholder="超领数量"
+                    style="width: 100%"
+                    :controls="false"
+                    :min="0"
+                    :precision="0"
+                    :max="row.orderQuantity" />
+                </el-form-item>
+              </template>
+            </el-table-column>
+          </el-table>
+        </div>
+      </template>
+    </byForm>
+    <div style="text-align: center; margin: 10px">
+      <el-button @click="clickCancel()" size="large">重 置</el-button>
+      <el-button type="primary" @click="submitForm()" size="large" v-preReClick>提 交</el-button>
+    </div>
+  </el-card>
+</template>
+
+<script setup>
+import byForm from "/src/components/byForm/index";
+import { ElMessage } from "element-plus";
+
+const { proxy } = getCurrentInstance();
+const productionOrder = ref([]);
+const exceedReceiveReasonList = ref([
+  {
+    dictKey: 1,
+    dictValue: "制作损坏",
+  },
+  {
+    dictKey: 2,
+    dictValue: "裸垫质量不良",
+  },
+]);
+const getDemandData = () => {
+  proxy.post("/productionOrder/page", { pageNum: 1, pageSize: 9999, status: "30" }).then((res) => {
+    if (res.rows && res.rows.length > 0) {
+      productionOrder.value = productionOrder.value.concat(
+        res.rows.map((item) => {
+          return {
+            dictKey: item.orderId,
+            dictValue: item.code + " (" + item.wlnCode + ")",
+          };
+        })
+      );
+    }
+  });
+};
+getDemandData();
+const submit = ref(null);
+const formOption = reactive({
+  inline: true,
+  labelWidth: "120px",
+  itemWidth: 100,
+  rules: [],
+  labelPosition: "right",
+});
+const formData = reactive({
+  data: {
+    orderId: "",
+    exceedReceiveReason: "",
+    productionCostList: [],
+  },
+});
+const formConfig = computed(() => {
+  return [
+    {
+      type: "select",
+      label: "订单号",
+      prop: "orderId",
+      data: productionOrder.value,
+      itemWidth: 51,
+      fn: (val) => {
+        if (val) {
+          proxy.post("/productionExceedReceive/getOrderSkuList", { id: val }).then((res) => {
+            console.log(res);
+            if (res && res.length > 0) {
+              formData.data.productionCostList = res.map((item) => {
+                return {
+                  bomSpecId: item.bomSpecId,
+                  name: item.name,
+                  code: item.code,
+                  bomCode: item.bomCode,
+                  quantity: undefined,
+                  orderQuantity: item.quantity,
+                };
+              });
+            } else {
+              formData.data.productionCostList = [];
+            }
+          });
+        } else {
+          formData.data.productionCostList = [];
+        }
+      },
+    },
+    {
+      type: "select",
+      label: "超领原因",
+      prop: "exceedReceiveReason",
+      data: exceedReceiveReasonList.value,
+      itemWidth: 51,
+    },
+    {
+      type: "slot",
+      slotName: "productionCostList",
+      label: "订单商品",
+    },
+  ];
+});
+const rules = ref({
+  orderId: [{ required: true, message: "请选择订单号", trigger: "change" }],
+  exceedReceiveReason: [{ required: true, message: "请选择超领原因", trigger: "change" }],
+  quantity: [{ required: true, message: "请输入超领数量", trigger: "blur" }],
+});
+const submitForm = () => {
+  submit.value.handleSubmit(() => {
+    if (formData.data.productionCostList && formData.data.productionCostList.length > 0) {
+      proxy.post("/productionExceedReceive/exceedReceive", formData.data).then(() => {
+        ElMessage({ message: "选择完成", type: "success" });
+        clickCancel();
+      });
+    } else {
+      return ElMessage("请添加订单商品");
+    }
+  });
+};
+const clickCancel = () => {
+  formData.data = {
+    orderId: "",
+    exceedReceiveReason: "",
+    productionCostList: [],
+  };
+};
+</script>
+
+<style lang="scss" scoped>
+::v-deep(.el-input-number .el-input__inner) {
+  text-align: left;
+}
+</style>