|
@@ -5,7 +5,7 @@
|
|
|
title="导入业务经理修正"
|
|
|
:visible="innerVisible"
|
|
|
:close-on-click-modal="false"
|
|
|
- @close="() => innerVisible = false"
|
|
|
+ @close="() => {innerVisible = false; tableData = [];manager = ''; managerid = [];}"
|
|
|
>
|
|
|
<div v-if="tableData && tableData.length > 0" class="tr" style="padding: 10px 0 0 0;display:flex">
|
|
|
<!-- <el-button :size="'mini'" @click="() => tableData = []">取消</el-button>
|
|
@@ -14,7 +14,8 @@
|
|
|
<project-manager size="mini" :is-detail="true" :names="manager" :value="managerid" @searchChange="manageridChange" />
|
|
|
|
|
|
<el-button type="warning" size="mini" style="margin-left:10px" @click="batchSetting">批量设置</el-button>
|
|
|
- <el-button type="primary" size="mini">保存设置</el-button>
|
|
|
+ <el-button type="danger" size="mini" @click="tableData = []">重新上传</el-button>
|
|
|
+ <el-button type="primary" size="mini" @click="onSubmit">保存设置</el-button>
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
<upload-excel :on-success="onSuccess" :before-upload="beforeUpload" />
|
|
@@ -56,7 +57,7 @@ export default {
|
|
|
return {
|
|
|
columns,
|
|
|
manager: "",
|
|
|
- managerid: "",
|
|
|
+ managerid: [],
|
|
|
selected: [],
|
|
|
loading: false,
|
|
|
tableData: [],
|
|
@@ -79,7 +80,7 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
batchSetting(){
|
|
|
- if(!this.manager || !this.managerid){
|
|
|
+ if(!this.manager || this.managerid.length === 0){
|
|
|
this.$message.warning("请选择业务经理!")
|
|
|
return
|
|
|
}
|
|
@@ -89,12 +90,30 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ const newTableData = JSON.parse(JSON.stringify(this.tableData));
|
|
|
+ const orderCodes = this.selected.map(({orderCode}) => orderCode);
|
|
|
+
|
|
|
+
|
|
|
+ newTableData.forEach(item => {
|
|
|
+ if(orderCodes.includes(item.orderCode)){
|
|
|
+ item.managerid = this.managerid[0];
|
|
|
+ item.manager = this.manager;
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ this.tableData = newTableData;
|
|
|
+
|
|
|
+ console.log(this.tableData)
|
|
|
},
|
|
|
handleSelection(data){
|
|
|
this.selected = data.list
|
|
|
},
|
|
|
manageridChange(data){
|
|
|
- console.log(data)
|
|
|
+ this.managerid = data.id ? [data.id] : []
|
|
|
+ this.manager = data.label || ""
|
|
|
+
|
|
|
+ console.log(this.managerid,this.manager)
|
|
|
},
|
|
|
validateTableHeader(header, importHeader) {
|
|
|
let isHeaderOk = true
|
|
@@ -116,7 +135,7 @@ export default {
|
|
|
},
|
|
|
/* 所属平台、商品分类、商品名称、单位、收货人、收货地址、PO编号不能为空 **/
|
|
|
validateRequiredField(requiredFields) {
|
|
|
- const verification = createFieldVerification('销售订单编号、业务经理,不能为空!')
|
|
|
+ const verification = createFieldVerification('销售订单编号、导入业务经理名称,不能为空!')
|
|
|
const fields = helper.fields(requiredFields)
|
|
|
|
|
|
requiredFields[fields[0]].forEach((_, index) => {
|
|
@@ -125,6 +144,7 @@ export default {
|
|
|
verification.notValidRows.push(index + 1)
|
|
|
}
|
|
|
})
|
|
|
+
|
|
|
return verification
|
|
|
},
|
|
|
/* 处理不合法的值,提示错误信息,并返回最终的验证状态 **/
|
|
@@ -187,28 +207,36 @@ export default {
|
|
|
templateHeader
|
|
|
)
|
|
|
|
|
|
-
|
|
|
if (!isHeaderValid) {
|
|
|
this.$message.warning('表格与导入的表头不一致!')
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
if (templateItems.length === 0) {
|
|
|
this.$message.warning('导入的表格没有数据!')
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
templateItems.forEach(templateItem => {
|
|
|
const tableItem = this.mapTemplateItemToTableItem(templateItem)
|
|
|
this.tableData.push(tableItem)
|
|
|
})
|
|
|
this.validateFields(this.tableData).message()
|
|
|
},
|
|
|
- async manageridChange(data){
|
|
|
- console.log(data);
|
|
|
- },
|
|
|
async onSubmit() {
|
|
|
const { message, isFinalValid } = this.validateFields(this.tableData)
|
|
|
+
|
|
|
if (!isFinalValid) return message()
|
|
|
|
|
|
+ console.log(this.tableData)
|
|
|
+
|
|
|
+ const isPass = this.tableData.every(({manager, managerid }) => manager && managerid)
|
|
|
+
|
|
|
+ if(!isPass){
|
|
|
+ this.$message.warning("部分订单未设置业务经理!")
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
const list = this.tableData.map(tableItem => requsetFields.reduce((prev, currentKey) => ({
|
|
|
...prev,
|
|
|
[currentKey]: currentKey === PROPERTYS.SEND_TIME ? dayjs(tableItem[currentKey] * 1000).format('YYYY-MM-DD HH:mm:ss') : tableItem[currentKey]
|