Commit ae4f3a35 authored by 15008242619's avatar 15008242619

退库单退库优化

parent c9883241
......@@ -140,7 +140,6 @@ export default {
this.dialogVisible = true
},
confirm() {
console.log(this.selectionRows)
let isTkdBack = 0
this.selectionRows.forEach(item => {
if (item.remark !== '退库单退库'){
......@@ -170,15 +169,17 @@ export default {
},
setPersonConfirm() {
let ids = []
console.log(this.selectionRows)
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 => {
this.$utils.showMessageSuccess('提交成功')
setTimeout(() => {
this.$refs.applyTable.$refs.asCom.getData()
}, 1500)
}).catch(err => {
this.$utils.showMessageWrong('出现异常,提交失败')
this.$utils.showMessageWarning('出现异常,提交失败')
console.log(err)
}).finally(() => {
this.dialogVisible = 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