|
@@ -439,7 +439,7 @@
|
|
{{ scope.row.hasSendAmount | numToFixed }}
|
|
{{ scope.row.hasSendAmount | numToFixed }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column align="right" label="发货数量" prop="hasSendQty" min-width="100" show-overflow-tooltip>
|
|
|
|
|
|
+ <el-table-column align="right" label="发货数量" prop="fahuo" min-width="100" show-overflow-tooltip>
|
|
<template v-slot="{ row }">
|
|
<template v-slot="{ row }">
|
|
{{ row.qty - (row.refundableQty || 0) }}
|
|
{{ row.qty - (row.refundableQty || 0) }}
|
|
</template>
|
|
</template>
|
|
@@ -783,7 +783,8 @@ export default {
|
|
}
|
|
}
|
|
getTotalList(params).then(res => {
|
|
getTotalList(params).then(res => {
|
|
res.data.records.forEach(item => {
|
|
res.data.records.forEach(item => {
|
|
- item.sums1 = ['refundableQty', 'qty', 'retiredQty', 'hasSendQty', 'directTransferQty', 'refundProductQty']
|
|
|
|
|
|
+ item.fahuo = item.qty - (item.refundableQty || 0)
|
|
|
|
+ item.sums1 = ['refundableQty', 'qty', 'retiredQty', 'hasSendQty', 'directTransferQty', 'refundProductQty','fahuo']
|
|
item.sums2 = ['payAmount', 'payRebateAmount', 'hasSendAmount', 'retiredAmount', 'refundProductAmount']
|
|
item.sums2 = ['payAmount', 'payRebateAmount', 'hasSendAmount', 'retiredAmount', 'refundProductAmount']
|
|
})
|
|
})
|
|
this.dataList = res.data.records
|
|
this.dataList = res.data.records
|