From 65ae8143ac483aefb9de02096ac2f06aae0aad2e Mon Sep 17 00:00:00 2001 From: czm <2192718639@qq.com> Date: Fri, 21 Oct 2022 18:59:04 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix(=E4=BF=AE=E6=94=B9=E9=80=80?= =?UTF-8?q?=E6=AC=BE=E7=A0=81=E5=8D=95=E5=AD=97=E6=AE=B5):?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/salesAfter/components/returnPayCheck/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(),