Browse Source

新增金牌特殊计费带出

dev-xx
qb 11 months ago
parent
commit
b2951207c4
  1. 14
      src/views/distribution/inventory/CreateOrder.vue
  2. 14
      src/views/waybill/CreateZeroOrder.vue

14
src/views/distribution/inventory/CreateOrder.vue

@ -2417,6 +2417,11 @@ const destinationWarehouseNameChange = val => {
/** 计算行合计 */
const handleComputed = (row: any) => {
const { template, trunkLine } = details.priceTemplate;
if (Boolean(isDisabled.value && template && trunkLine))
handleSpecialBrandPrice(row, trunkLine, template);
if (row.chargeType === 1) row.subtotalFreight = computeNumber(row.num, '*', row.price).result;
else if (row.chargeType === 2)
row.subtotalFreight = computeNumber(row.volume, '*', row.price).result;
@ -2427,7 +2432,6 @@ const handleComputed = (row: any) => {
console.log('row :>> ', row);
// handleTrunkLinePrice(details.priceTemplate.trunkLine, details.priceTemplate.template);
handlePrice();
};
@ -3062,17 +3066,19 @@ const handleAssignmentItemPriceTrunkline = (value, trunkLine, template) => {
/** 金牌 -- 干线特殊处理 */
const handleSpecialBrandPrice = (value, trunkLine, template) => {
if (!isDisabled.value) return;
// 15 && 0.8 && / 0.11 ,
const { totalCount, totalVolume } = details.totalCost;
if (totalCount < 15 && totalVolume < 0.8) {
if (totalCount < 15 && totalVolume < 0.8 && totalVolume / (totalCount || 1) < 0.11) {
value.chargeType = 1;
value.price = 5;
} else {
value.chargeType = 2;
const { pieceCategory, cubeCategory, weightCategory } = trunkLine;
const { cubeCategory } = trunkLine;
//
if (template.trunklineIsByCategory) {
@ -3114,7 +3120,7 @@ const handleAssignmentItemPrice = (value, isOnload = false) => {
// 线
if (trunkLine && template && !isOnload) {
// ,
if (details.query.brand === '金牌') handleSpecialBrandPrice(value, trunkLine, template);
if (isDisabled.value) handleSpecialBrandPrice(value, trunkLine, template);
else handleAssignmentItemPriceTrunkline(value, trunkLine, template);
//
} else value.price = 0;

14
src/views/waybill/CreateZeroOrder.vue

@ -1955,6 +1955,11 @@ const handleFindGoods = async (goodsName, item, isClearId = 0) => {
/** 计算行合计 */
const handleComputed = (row: any) => {
const { template, trunkLine } = details.priceTemplate;
if (Boolean(isDisabled.value && template && trunkLine))
handleSpecialBrandPrice(row, trunkLine, template);
details.query.goodsCode = '-' + details.totalObj.totalCount;
if (row.chargeType === 1) row.subtotalFreight = computeNumber(row.num, '*', row.price).result;
else if (row.chargeType === 2)
@ -1966,7 +1971,6 @@ const handleComputed = (row: any) => {
console.log('row :>> ', row);
// handleTrunkLinePrice(details.priceTemplate.trunkLine, details.priceTemplate.template);
handlePrice();
};
@ -2579,17 +2583,19 @@ const handleAssignmentItemPriceTrunkline = (value, trunkLine, template) => {
/** 金牌 -- 干线特殊处理 */
const handleSpecialBrandPrice = (value, trunkLine, template) => {
if (!isDisabled.value) return;
// 15 && 0.8 && / 0.11 ,
const { totalCount, totalVolume } = details.totalObj;
if (totalCount < 15 && totalVolume < 0.8) {
if (totalCount < 15 && totalVolume < 0.8 && totalVolume / (totalCount || 1) < 0.11) {
value.chargeType = 1;
value.price = 5;
} else {
value.chargeType = 2;
const { pieceCategory, cubeCategory, weightCategory } = trunkLine;
const { cubeCategory } = trunkLine;
//
if (template.trunklineIsByCategory) {
@ -2633,7 +2639,7 @@ const handleAssignmentItemPrice = (value, isOnload = false) => {
// 线
if (trunkLine && template && !isOnload) {
// ,
if (details.query.brand === '金牌') handleSpecialBrandPrice(value, trunkLine, template);
if (isDisabled.value) handleSpecialBrandPrice(value, trunkLine, template);
else handleAssignmentItemPriceTrunkline(value, trunkLine, template);
//

Loading…
Cancel
Save