Browse Source

发货通知单改单导入添加Customer Code列

java8
han\hanst 8 months ago
parent
commit
15663046c9
  1. 8
      src/views/modules/ecss/codelnotify.vue
  2. 9
      src/views/modules/ecss/codelnotifyConfirm.vue
  3. 3
      src/views/modules/ecss/createDeclaration.vue
  4. 2
      src/views/modules/ecss/del_upload_excel.vue

8
src/views/modules/ecss/codelnotify.vue

@ -1349,7 +1349,7 @@
sortLv: 0, sortLv: 0,
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 100
columnWidth: 60
}, },
{ {
userId: this.$store.state.user.name, userId: this.$store.state.user.name,
@ -1439,7 +1439,7 @@
sortLv: 0, sortLv: 0,
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 60
columnWidth: 50
}, },
{ {
userId: this.$store.state.user.name, userId: this.$store.state.user.name,
@ -1780,6 +1780,7 @@
buNo:this.currentRow.buNo, buNo:this.currentRow.buNo,
createBy:this.currentRow.createBy, createBy:this.currentRow.createBy,
delNo:this.currentRow.delNo, delNo:this.currentRow.delNo,
cmcInvoice:this.currentRow.cmcInvoice,
notifyStatus:'已下达', notifyStatus:'已下达',
walMartOrderFlag:this.walMartOrderFlag walMartOrderFlag:this.walMartOrderFlag
} }
@ -1980,6 +1981,9 @@
getBuList(tempData).then(({data}) => { getBuList(tempData).then(({data}) => {
if (data.code === 0) { if (data.code === 0) {
this.buList = data.row2 this.buList = data.row2
if (this.buList.length===1) {
this.searchData.buNo = this.buList[0].buNo;
}
} }
}) })
}, },

9
src/views/modules/ecss/codelnotifyConfirm.vue

@ -1493,7 +1493,7 @@
sortLv: 0, sortLv: 0,
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 100
columnWidth: 60
}, },
{ {
userId: this.$store.state.user.name, userId: this.$store.state.user.name,
@ -1583,7 +1583,7 @@
sortLv: 0, sortLv: 0,
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 60
columnWidth: 50
}, },
{ {
userId: this.$store.state.user.name, userId: this.$store.state.user.name,
@ -1747,7 +1747,7 @@
sortLv: 0, sortLv: 0,
status: true, status: true,
fixed: '', fixed: '',
columnWidth: 100
columnWidth: 60
}, },
{ {
userId: this.$store.state.user.name, userId: this.$store.state.user.name,
@ -2144,6 +2144,9 @@
getBuList(tempData).then(({data}) => { getBuList(tempData).then(({data}) => {
if (data.code === 0) { if (data.code === 0) {
this.buList = data.row2 this.buList = data.row2
if (this.buList.length===1) {
this.searchData.buNo = this.buList[0].buNo;
}
} }
}) })
}, },

3
src/views/modules/ecss/createDeclaration.vue

@ -1617,6 +1617,9 @@
getBuList(tempData).then(({data}) => { getBuList(tempData).then(({data}) => {
if (data.code === 0) { if (data.code === 0) {
this.buList = data.row2 this.buList = data.row2
if (this.buList.length===1) {
this.searchData.buNo = this.buList[0].buNo;
}
} }
}) })
}, },

2
src/views/modules/ecss/del_upload_excel.vue

@ -67,7 +67,7 @@
getBuList(tempData).then(({data}) => { getBuList(tempData).then(({data}) => {
if (data.code === 0) { if (data.code === 0) {
this.buList = data.row2 this.buList = data.row2
if(data.row2.length>0){
if(data.row2.length===1){
this.pageData.buNo=data.row2[0].buNo this.pageData.buNo=data.row2[0].buNo
} }
} }

Loading…
Cancel
Save