|
@@ -1,5 +1,18 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
+ <div style="display:flex;margin-bottom: 10px">
|
|
|
+ <p style="width:80px">
|
|
|
+ <span style="color:red">*</span> 客户公司
|
|
|
+ </p>
|
|
|
+ <search-customer
|
|
|
+ :value="ruleForm.companyCode"
|
|
|
+ :names="ruleForm.companyName"
|
|
|
+ :placeholder="'客户公司'"
|
|
|
+ :size="'mini'"
|
|
|
+ @searchChange="customerChange"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+
|
|
|
<el-form ref="formRef" :model="editCacheData" :rules="rules">
|
|
|
<el-table border size="mini" :data="list" max-height="300px">
|
|
|
<el-table-column label="收货总数" prop="receipt_quantity">
|
|
@@ -37,14 +50,24 @@
|
|
|
<el-table-column label="收货省市区" prop="addr_code">
|
|
|
<template slot-scope="scope">
|
|
|
<el-form-item v-if="scope.$index === editIndex" prop="addr_code">
|
|
|
- <select-area
|
|
|
+ <!-- <select-area
|
|
|
:value="editCacheData.addr_code"
|
|
|
:placeholder="'收货省市区'"
|
|
|
size="mini"
|
|
|
@selectChange="handleInAddrChange($event)"
|
|
|
+ />-->
|
|
|
+ <search-area
|
|
|
+ :value="editCacheData.area_code"
|
|
|
+ :is-detail="scope.$index === editIndex"
|
|
|
+ :disabled="!scope.$index === editIndex"
|
|
|
+ size="mini"
|
|
|
+ :names="[getAddrName(scope.row.addr_code_name)]"
|
|
|
+ placeholder="收货省市区"
|
|
|
+ :level="3"
|
|
|
+ @searchChange="areaChange($event,scope.$index)"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <span v-else>{{ scope.row.addr_code_name }}</span>
|
|
|
+ <span v-else>{{getAddrName(scope.row.addr_code_name,true)}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
@@ -125,22 +148,27 @@ const defaultAddressData = {
|
|
|
contactor: "",
|
|
|
addr_code: "",
|
|
|
mobile: "",
|
|
|
- addr: ""
|
|
|
+ addr: "",
|
|
|
+ area_code: "",
|
|
|
+ area_label: ""
|
|
|
};
|
|
|
|
|
|
export default {
|
|
|
- components: {
|
|
|
- InAddressModal
|
|
|
- },
|
|
|
+ components: { InAddressModal },
|
|
|
props: ["id", "num"],
|
|
|
data() {
|
|
|
return {
|
|
|
+ ruleForm: {
|
|
|
+ companyName: "",
|
|
|
+ companyCode: ""
|
|
|
+ },
|
|
|
list: [],
|
|
|
editIndex: -1,
|
|
|
loading: false,
|
|
|
showModal: false,
|
|
|
rules: addressRules,
|
|
|
- editCacheData: { ...defaultAddressData }
|
|
|
+ editCacheData: { ...defaultAddressData },
|
|
|
+ companyName: ""
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -161,7 +189,9 @@ export default {
|
|
|
mobile,
|
|
|
addr_code,
|
|
|
addr,
|
|
|
- addr_code_name
|
|
|
+ addr_code_name,
|
|
|
+ area_code,
|
|
|
+ area_label
|
|
|
} = this.list[index];
|
|
|
|
|
|
this.editCacheData = {
|
|
@@ -170,7 +200,9 @@ export default {
|
|
|
mobile,
|
|
|
addr_code,
|
|
|
addr,
|
|
|
- addr_code_name
|
|
|
+ addr_code_name,
|
|
|
+ area_code,
|
|
|
+ area_label
|
|
|
};
|
|
|
},
|
|
|
|
|
@@ -192,14 +224,17 @@ export default {
|
|
|
utils.book_append_sheet(workBook, workSheet, "sheet");
|
|
|
|
|
|
// 导出模板
|
|
|
- writeFile(workBook, "收货模板.xlsx", {
|
|
|
- bookType: "xlsx"
|
|
|
- });
|
|
|
+ writeFile(workBook, "收货模板.xlsx", { bookType: "xlsx" });
|
|
|
},
|
|
|
handleDelete(index) {
|
|
|
this.list.splice(index, 1);
|
|
|
if (this.editIndex >= 0) this.editIndex = -1;
|
|
|
},
|
|
|
+ getAddrName(name, modifider) {
|
|
|
+ if (modifider) return name;
|
|
|
+ const _n = name.split("/").join("");
|
|
|
+ return _n;
|
|
|
+ },
|
|
|
|
|
|
handleSave() {
|
|
|
this.$refs.formRef.validate(async isValid => {
|
|
@@ -221,6 +256,15 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
|
|
|
+ customerChange(evt) {
|
|
|
+ const { code, label } = evt;
|
|
|
+
|
|
|
+ this.ruleForm = {
|
|
|
+ companyCode: code ? [code] : "",
|
|
|
+ companyName: label ? [label] : ""
|
|
|
+ };
|
|
|
+ },
|
|
|
+
|
|
|
handleRefresh(data) {
|
|
|
const _data = data.list.map(
|
|
|
({
|
|
@@ -236,10 +280,13 @@ export default {
|
|
|
contactor,
|
|
|
mobile,
|
|
|
receipt_quantity,
|
|
|
- addr_code_name
|
|
|
+ addr_code_name,
|
|
|
+ area_code: [addr_code[addr_code.length - 1]]
|
|
|
})
|
|
|
);
|
|
|
|
|
|
+ console.log(_data);
|
|
|
+
|
|
|
this.list = [...this.list, ..._data];
|
|
|
this.showModal = false;
|
|
|
},
|
|
@@ -254,11 +301,28 @@ export default {
|
|
|
this.editIndex = this.list.length - 1;
|
|
|
},
|
|
|
|
|
|
+ async areaChange(e) {
|
|
|
+ console.log(e);
|
|
|
+ const { code, area_code, splitLabel } = e;
|
|
|
+ this.editCacheData.area_label = splitLabel
|
|
|
+ ? splitLabel.split(",").join("/")
|
|
|
+ : "";
|
|
|
+
|
|
|
+ this.editCacheData["area_code"] = area_code ? [area_code] : [];
|
|
|
+
|
|
|
+ this.editCacheData["addr_code"] = code ? code.split(",") : [];
|
|
|
+ },
|
|
|
+
|
|
|
handleInAddrChange(e) {
|
|
|
this.editCacheData["addr_code"] = e;
|
|
|
},
|
|
|
|
|
|
async handleSubmit() {
|
|
|
+ if (!this.ruleForm.companyCode) {
|
|
|
+ this.$message.warning("请选择客户公司");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
if (this.editIndex !== -1) {
|
|
|
this.$message.warning("当前已有地址在编辑,请保存后再试!");
|
|
|
return;
|
|
@@ -273,17 +337,25 @@ export default {
|
|
|
return Number(current) + Number(prev.receipt_quantity);
|
|
|
}, 0);
|
|
|
|
|
|
- if (Number(this.num) > currentNum) {
|
|
|
- this.$message.warning("收货数量小于销售数量!");
|
|
|
+ if (currentNum > Number(this.num)) {
|
|
|
+ this.$message.warning(
|
|
|
+ `未转单数量为${this.num},收货数量总和不能超过未转单数量!`
|
|
|
+ );
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- const { data, code, message } = await asyncRequest.transfer({
|
|
|
+ const { code, message } = await asyncRequest.transfer({
|
|
|
id: this.id,
|
|
|
- addr_list: this.list
|
|
|
+ addr_list: this.list,
|
|
|
+
|
|
|
+ customerCode: Array.isArray(this.ruleForm.companyCode)
|
|
|
+ ? this.ruleForm.companyCode[0]
|
|
|
+ : this.ruleForm.companyCode
|
|
|
});
|
|
|
|
|
|
if (Number(code) === 0) {
|
|
|
+ this.list = [];
|
|
|
+ this.ruleForm.companyCode = "";
|
|
|
this.$emit("refresh");
|
|
|
} else {
|
|
|
this.$message.error(message);
|