From 1e6b97f7b20f5a876378d201dfb28477a4c81759 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Tue, 22 Oct 2024 14:48:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BC=80=E5=8D=95bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/distribution/inventory/CreateOrder.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/distribution/inventory/CreateOrder.vue b/src/views/distribution/inventory/CreateOrder.vue index a27108e8..1654bcb2 100644 --- a/src/views/distribution/inventory/CreateOrder.vue +++ b/src/views/distribution/inventory/CreateOrder.vue @@ -4006,7 +4006,7 @@ const handleSpecialBrandPrice = (value, trunkLine, template) => { if (!isDisabled.value) return; // 总件数小于15件 && 总方数小于0.8 && 总方数 / 总件数小于0.11 则按件计费, 否则以按方计费 - const { totalCount, totalVolume } = details.totalCost; + const { totalCount, totalVolume } = details.totalObj; if (totalCount < 15 && totalVolume < 0.8 && totalVolume / (totalCount || 1) < 0.11) { value.chargeType = 1;