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;