diff --git a/src/pages/salesAfter/components/returnPayCheck/index.tsx b/src/pages/salesAfter/components/returnPayCheck/index.tsx index 8e777c3..c98fdfb 100644 --- a/src/pages/salesAfter/components/returnPayCheck/index.tsx +++ b/src/pages/salesAfter/components/returnPayCheck/index.tsx @@ -54,9 +54,9 @@ export default memo(({ show = true, onClose, orderInfo }: Param) => { product_color_name: citem.name, num: citem.roll.toString(), length: (citem.length / 100).toString(), - weight: formatWeightDiv(citem.actual_weight || citem.estimate_weight).toString(), + weight: formatWeightDiv(citem.actual_weight).toString(), sale_price: formatPriceDiv(citem.sale_price).toString(), - total_price: formatPriceDiv(citem.total_sale_price || citem.estimate_amount).toString(), //小计 + total_price: formatPriceDiv(citem.refund_amount).toString(), //小计 weight_error: formatWeightDiv(citem.settle_weight_error).toString(), deduction_weight: formatWeightDiv(citem.deductions_weight).toString(), settle_weight: formatWeightDiv(citem.settle_weight).toString(),