Commit 77dab022 authored by dragondean@qq.com's avatar dragondean@qq.com Committed by 332784038@qq.com

修复海运价格编辑全包阶梯价提交异常

parent eb4e04ab
...@@ -874,11 +874,7 @@ export default { ...@@ -874,11 +874,7 @@ export default {
return packging return packging
.filter((item) => !!item.packagingTypes) .filter((item) => !!item.packagingTypes)
.map((item) => { .map((item) => {
if (item.packagingTypes.length === 0){
item.packagingTypes = "";
} else {
item.packagingTypes = item.packagingTypes?.join(",") || ""; item.packagingTypes = item.packagingTypes?.join(",") || "";
}
return item; return item;
}); });
}, },
...@@ -956,10 +952,10 @@ export default { ...@@ -956,10 +952,10 @@ export default {
isAllProduct: 0, isAllProduct: 0,
}); });
if (this.form.needOrderInquiry == 0) {
//不是单询价才校验价格参数 lanbm 2024-06-17
// 阶梯价 // 阶梯价
if (this.form.stepPrice) { if (this.form.stepPrice) {
// 单询不校验
if (this.form.needOrderInquiry == 0) {
let isValid = true; let isValid = true;
for (let stepPrice of this.$refs.stepPrice) { for (let stepPrice of this.$refs.stepPrice) {
if (!stepPrice.validate()) { if (!stepPrice.validate()) {
...@@ -968,6 +964,7 @@ export default { ...@@ -968,6 +964,7 @@ export default {
} }
} }
if (!isValid) return; if (!isValid) return;
}
// 全包价 // 全包价
if (this.form.priceType == 1) { if (this.form.priceType == 1) {
...@@ -985,9 +982,16 @@ export default { ...@@ -985,9 +982,16 @@ export default {
); );
delete data.fullPriceStepList; delete data.fullPriceStepList;
} }
// 删除非阶梯价 包装费字段
delete data.clearancePricePackagingList
delete data.freightPricePackagingList
delete data.fullPricePackagingList
} }
//海运非阶梯价校验 //海运非阶梯价校验
else { else {
// 单询不校验
if (this.form.needOrderInquiry == 0) {
// 有多个组件则表示清关费 + 运费 // 有多个组件则表示清关费 + 运费
if (this.$refs.seaPrice?.length) { if (this.$refs.seaPrice?.length) {
let isValid = true; let isValid = true;
...@@ -1003,6 +1007,7 @@ export default { ...@@ -1003,6 +1007,7 @@ export default {
else if (this.$refs.seaPrice && !this.$refs.seaPrice.validate()) { else if (this.$refs.seaPrice && !this.$refs.seaPrice.validate()) {
return; return;
} }
}
// 格式化 // 格式化
if (this.form.priceType === 1) { if (this.form.priceType === 1) {
...@@ -1045,8 +1050,6 @@ export default { ...@@ -1045,8 +1050,6 @@ export default {
} }
} }
}
// 修改单条路线 // 修改单条路线
if (this.$route.query.action == "update") { if (this.$route.query.action == "update") {
this.loading = true; this.loading = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment