| | |
| | | <el-table-column label="含税单价(元)" prop="taxInclusiveUnitPrice" width="130"> |
| | | <template #default="scope">{{ formatAmount(scope.row.taxInclusiveUnitPrice) }}</template> |
| | | </el-table-column> |
| | | <el-table-column label="含税总价(元)" prop="taxInclusiveTotalPrice" width="130"> |
| | | <el-table-column label="退货总价(元)" prop="taxInclusiveTotalPrice" width="130"> |
| | | <template #default="scope">{{ formatAmount(scope.row.taxInclusiveTotalPrice) }}</template> |
| | | </el-table-column> |
| | | <el-table-column label="不含税总价(元)" prop="taxExclusiveTotalPrice" width="140"> |
| | | <el-table-column label="不退货总价(元)" prop="taxExclusiveTotalPrice" width="140"> |
| | | <template #default="scope">{{ formatAmount(scope.row.taxExclusiveTotalPrice) }}</template> |
| | | </el-table-column> |
| | | <el-table-column label="是否质检" prop="isChecked" width="100" align="center"> |
| | |
| | | prop: 'returnUserName', |
| | | width: 110, |
| | | }, |
| | | |
| | | |
| | | { |
| | | label: '整单折扣额', |
| | | prop: 'totalDiscountAmount', |
| | |
| | | }, |
| | | ], |
| | | }, |
| | | |
| | | |
| | | ]) |
| | | const data = reactive({ |
| | | searchForm: { |
| | |
| | | const payload = res?.data || {} |
| | | detailData.value = payload |
| | | // 拼接连个对象成一个对象,方便展示 item 和 item.salesLedgerProduct 里的字段 |
| | | |
| | | |
| | | |
| | | |
| | | detailProducts.value = |
| | | payload.purchaseReturnOrderProductsDetailVoList.map(item => ({ ...item, ...item.salesLedgerProduct })) || |
| | | [] |