修复从订单转销售出库或者采购入库单的时候没有把订金带过来的bug

This commit is contained in:
jishenghua
2025-09-04 16:50:38 +08:00
parent 78a7027d70
commit e53ea44501

View File

@@ -755,12 +755,13 @@ export const BillListMixin = {
} }
getAction('/depotItem/getDetailList', param).then((res) => { getAction('/depotItem/getDetailList', param).then((res) => {
if (res.code === 200) { if (res.code === 200) {
let deposit = info.changeAmount - info.finishDeposit
let transferParam = { let transferParam = {
list: res.data.rows, list: res.data.rows,
number: info.number, number: info.number,
organId: info.organId, organId: info.organId,
discountMoney: info.discountMoney, discountMoney: info.discountMoney,
deposit: info.deposit, deposit: deposit,
remark: info.remark, remark: info.remark,
accountId: info.accountId, accountId: info.accountId,
salesMan: info.salesMan salesMan: info.salesMan