Commit ae4f3a35 authored by 15008242619's avatar 15008242619

退库单退库优化

parent c9883241
...@@ -140,7 +140,6 @@ export default { ...@@ -140,7 +140,6 @@ export default {
this.dialogVisible = true this.dialogVisible = true
}, },
confirm() { confirm() {
console.log(this.selectionRows)
let isTkdBack = 0 let isTkdBack = 0
this.selectionRows.forEach(item => { this.selectionRows.forEach(item => {
if (item.remark !== '退库单退库'){ if (item.remark !== '退库单退库'){
...@@ -170,15 +169,17 @@ export default { ...@@ -170,15 +169,17 @@ export default {
}, },
setPersonConfirm() { setPersonConfirm() {
let ids = [] let ids = []
console.log(this.selectionRows)
if (this.selectionRows && this.selectionRows.length) { if (this.selectionRows && this.selectionRows.length) {
ids = this.selectionRows.map(item => item.id) this.selectionRows.map(item => item.inStorageRequestItems.map(i => ids.push(i.id)))
} }
post('/InStorageRequestItem/creator/apply?userIds=' + this.form.userIds, ids).then(res => { post('/InStorageRequestItem/creator/apply?userIds=' + this.form.userIds, ids).then(res => {
this.$utils.showMessageSuccess('提交成功') this.$utils.showMessageSuccess('提交成功')
this.$refs.applyTable.$refs.asCom.getData() setTimeout(() => {
this.$refs.applyTable.$refs.asCom.getData()
}, 1500)
}).catch(err => { }).catch(err => {
this.$utils.showMessageWrong('出现异常,提交失败') this.$utils.showMessageWarning('出现异常,提交失败')
console.log(err)
}).finally(() => { }).finally(() => {
this.dialogVisible = false this.dialogVisible = false
this.setPersonVisible = false this.setPersonVisible = false
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment