数据
This commit is contained in:
@@ -423,7 +423,7 @@
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await updateAssignDtl(this.popData)
|
let res = await updateAssignDtl(this.popData, this.crType)
|
||||||
if (res.code === 1) {
|
if (res.code === 1) {
|
||||||
this.show = false
|
this.show = false
|
||||||
this._easOutInBillDetailPage(this.popObj)
|
this._easOutInBillDetailPage(this.popObj)
|
||||||
|
|||||||
@@ -440,7 +440,7 @@
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
let res = await updateAssignDtl(this.popData)
|
let res = await updateAssignDtl(this.popData, 'RECE')
|
||||||
if (res.code === 1) {
|
if (res.code === 1) {
|
||||||
this.show = false
|
this.show = false
|
||||||
this._receiptBillDetailPage(this.popObj)
|
this._receiptBillDetailPage(this.popObj)
|
||||||
|
|||||||
@@ -101,9 +101,9 @@ export const viewAssignDtl = (obj) => request({
|
|||||||
data: obj
|
data: obj
|
||||||
})
|
})
|
||||||
// 查看分配明细->确认
|
// 查看分配明细->确认
|
||||||
export const updateAssignDtl = (arr) => request({
|
export const updateAssignDtl = (arr, type) => request({
|
||||||
url:'api/stIvtStockAssignDtl/updateAssignDtl',
|
url:'api/stIvtStockAssignDtl/updateAssignDtl',
|
||||||
data: arr
|
data: {details: arr, type: type}
|
||||||
})
|
})
|
||||||
// 分配库位查看详情
|
// 分配库位查看详情
|
||||||
export const inWarehouseAssignLocation = (arr, type) => request({
|
export const inWarehouseAssignLocation = (arr, type) => request({
|
||||||
|
|||||||
Reference in New Issue
Block a user