diff --git a/src/views/distribution/inventory/CreateOrder.vue b/src/views/distribution/inventory/CreateOrder.vue index b383cdbe..ae2a9020 100644 --- a/src/views/distribution/inventory/CreateOrder.vue +++ b/src/views/distribution/inventory/CreateOrder.vue @@ -2731,7 +2731,11 @@ const handleDispatchPrice = (dispatch, template) => { } // 是否存在最低计费 - if ((dispatch || template) && template.trunklineIsMinCost) { + if ( + (dispatch || template) && + template.trunklineIsMinCost && + Number(template.dispatchMinCostMode) === 1 + ) { switch (Number(template.dispatchMinCostType)) { // 价格 case 1: diff --git a/src/views/waybill/CreateZeroOrder.vue b/src/views/waybill/CreateZeroOrder.vue index dcdef1a5..4be64d40 100644 --- a/src/views/waybill/CreateZeroOrder.vue +++ b/src/views/waybill/CreateZeroOrder.vue @@ -2268,7 +2268,11 @@ const handleDispatchPrice = (dispatch, template) => { } // 是否存在最低计费 - if ((dispatch || template) && template.trunklineIsMinCost) { + if ( + (dispatch || template) && + template.trunklineIsMinCost && + Number(template.dispatchMinCostMode) === 1 + ) { switch (Number(template.dispatchMinCostType)) { // 价格 case 1: