1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
<template>
<div class="app-container">
<el-form ref="form" :model="form" :rules="rules" label-width="150px">
<products-selector
ref="productSelector"
v-model="form.productIdList"
show-all
@setall="isAllProduct = $event"
:default-ids="form.productIdList"
enable-filtered
@setFiltered="isAllFilteredProduct = $event"
class="mb-20"
/>
<routers-selector v-model="selectedRoutes" type="air" />
<el-card style="margin-bottom: 10px">
<div slot="header" style="font-size: 20px">
{{ $t("价格设置") }}
</div>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item :label="$t('预付')" prop="needPay">
<el-radio-group v-model="form.needPay">
<el-radio :label="1">{{ $t("预付") }}</el-radio>
<el-radio :label="0">{{ $t("均可") }}</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item :label="$t('单价模式')" prop="priceType">
<dict-selector
:type="DICT_TYPE.ECW_PRICE_TYPE"
v-model="form.priceType"
form-type="radio"
formatter="number"
/>
</el-form-item>
<el-form-item :label="$t('最小起计量')" :prop="`minWeight`">
<el-input-number
v-model="form.minWeight"
:controls="false"
class="w-100"
/>
/
<selector
v-model="form.minWeightUnit"
:options="unitList"
:label-field="$l(null, 'title')"
value-field="id"
defaultable2
class="w-100"
disabled
/>
</el-form-item>
</el-col>
<el-col :span="12">
<quick-set
:unit-list="unitList"
:currency-list="currencyList"
:value="form"
></quick-set>
</el-col>
</el-row>
<!--全包价-->
<template v-if="form.priceType == 1">
<div v-for="(item, index) in form.fullPriceStepList" :key="index">
<price-step
ref="stepPrice"
:index="index"
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="all"
:price-name="$t('全包价')"
:show-add="index === form.fullPriceStepList.length - 1"
:value="item"
@add="handleAddPrice('fullPriceStepList', $event)"
@delete="handleDeletePrice('fullPriceStepList', $event)"
@changeUnit="
handleUnitChange(form.fullPriceStepList, index, ...$event)
"
></price-step>
</div>
</template>
<el-row v-else :gutter="20" class="mt-20">
<el-col :span="12">
<div
v-for="(item, index) in form.freightPriceStepList"
:key="index"
>
<price-step
ref="stepPrice"
:index="index"
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="transport"
:price-name="$t('运费')"
:show-add="index === form.freightPriceStepList.length - 1"
:value="item"
@add="handleAddPrice('freightPriceStepList', $event)"
@delete="handleDeletePrice('freightPriceStepList', $event)"
@changeUnit="
handleUnitChange(form.freightPriceStepList, index, ...$event)
"
></price-step>
</div>
</el-col>
<el-col :span="12">
<div
v-for="(item, index) in form.clearancePriceStepList"
:key="index"
>
<price-step
ref="stepPrice"
:index="index"
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="clearance"
:price-name="$t('清关费')"
:show-add="index === form.clearancePriceStepList.length - 1"
:value="item"
@add="handleAddPrice('clearancePriceStepList', $event)"
@delete="handleDeletePrice('clearancePriceStepList', $event)"
@changeUnit="
handleUnitChange(
form.clearancePriceStepList,
index,
...$event
)
"
></price-step>
</div>
</el-col>
</el-row>
<el-form-item :label="$t('价格有效期')">
<el-date-picker
v-model="form.validateStartDate"
value-format="yyyy-MM-dd HH:mm:ss"
></el-date-picker>
-
<el-date-picker
v-model="form.validateEndDate"
value-format="yyyy-MM-dd HH:mm:ss"
></el-date-picker>
</el-form-item>
</el-card>
<el-card>
<div slot="header" style="font-size: 20px">
{{ $t("基础信息") }}
</div>
<el-form-item :label="$t('是否预约入仓')" prop="needBook">
<el-radio v-model.number="form.needBook" :label="1">{{
$t("是")
}}</el-radio>
<el-radio v-model.number="form.needBook" :label="0">{{
$t("否")
}}</el-radio>
</el-form-item>
<el-form-item :label="$t('是否单询')" prop="inquiry">
<dict-selector
:type="DICT_TYPE.NEED_ORDER_INQUIRY"
v-model="form.needOrderInquiry"
form-type="radio"
formatter="number"
></dict-selector>
</el-form-item>
<el-form-item :label="$t('线路重量上限') + `(kg)`" prop="square">
<el-input-number
v-model="form.weightLimit"
type="number"
style="width: 200px"
:controls="false"
/>
</el-form-item>
</el-card>
</el-form>
<div style="margin: 20px 0">
<el-button @click="submitForm" type="primary" :loading="loading">{{
$t("确认提交")
}}</el-button>
<el-button type="default" @click="$router.back()">{{
$t("返回上一页")
}}</el-button>
</div>
</div>
</template>
<script>
import RoutersSelector from "@/components/RoutersSelector";
import {
batchUpdateProductPrice,
batchUpdateProductPriceAir,
getProductPrice,
} from "@/api/ecw/productPrice";
import { getCurrencyList } from "@/api/ecw/currency";
import { getUnitList } from "@/api/ecw/unit";
import ProductsSelector from "@/components/ProductsSelector";
import Selector from "@/components/Selector";
import Inputor from "@/components/Inputor";
import Decimal from "decimal.js";
import { getProduct } from "@/api/ecw/product";
import QuickSet from "@/views/ecw/productPrice/components/QuickSet.vue";
import PriceStep from "@/views/ecw/productPrice/components/PriceStep.vue";
import { getProductTypeList } from "@/api/ecw/productType";
// 定义默认的价格单位和体积单位
const DEFAULT_PRICE_UNIT = 1;
const DEFAULT_VOLUME_UNIT = 6;
const DEFAULT_WEIGHT_UNIT = 6;
export default {
components: {
PriceStep,
QuickSet,
RoutersSelector,
ProductsSelector,
Selector,
Inputor,
},
data() {
return {
checkList: [],
selectedRoutes: [], // 勾选的路线渠道
form: {
stepPrice: 0,
priceType: null,
},
isAllProduct: false, // 是否全部商品
isAllFilteredProduct: false, // 是否勾選全部搜索結果
specialProducts: [],
rules() {},
product: null,
currencyList: [],
unitList: [],
productTypeList: [],
productDisabled: true,
lineList: [], //路线数组
loading: false,
};
},
computed: {
// 判断是否空值
isEmpty() {
return (content) => {
return !content && content !== 0 && content !== "0";
};
},
},
watch: {
checkList() {
//选择路线
if (this.checkList.length > 0) {
this.form.lineChannelList = this.checkList.map((item) => {
return { lineId: item, shippingChannelId: 0 };
});
} else {
this.form.lineChannelList = [];
}
},
product() {
this.$set(this.form, "productType", this.product.typeId);
},
// 价格类型切换,需要初始化对应的字段
"form.priceType"(priceType) {
if (priceType == 1 && !this.form.fullPriceStepList?.length) {
this.handleAddPrice("fullPriceStepList", "all");
}
if (priceType == 0) {
if (!this.form.freightPriceStepList?.length) {
this.handleAddPrice("freightPriceStepList", "transport");
}
if (!this.form.clearancePriceStepList?.length) {
this.handleAddPrice("clearancePriceStepList", "clearance");
}
}
},
"form.needBook"(val) {
if (val) this.$set(this.form, "dayLimit", 10000);
else delete this.form.dayLimit;
},
},
async created() {
this.currencyList = (await getCurrencyList())?.data || [];
this.unitList = (await getUnitList())?.data || [];
this.$set(this.form, "stepPrice", 1);
// 如果是复制,则获取数据并填充,先复制,然后填充特需,避免数据的特需不全导致部分不显示
if (this.$route.query.templateId) {
await this.getTemplateDetail(this.$route.query.templateId);
}
},
methods: {
// 获取模板数据(复制的源路线价格信息)
async getTemplateDetail(id) {
const res = await getProductPrice(id);
// 要复制过来的字段
const {
allPrice,
allPriceUnit,
allVolumeUnit,
transportPrice,
transportPriceUnit,
transportVolumeUnit,
clearancePrice,
clearancePriceUnit,
clearanceVolumeUnit,
priceType,
stepPrice,
specialList,
priceStepList,
minWeight,
minWeightUnit,
needOrderInquiry,
needBook,
needPay,
freightPriceStepList,
clearancePriceStepList,
fullPriceStepList,
} = res.data;
const data = {
allPrice,
allPriceUnit,
allVolumeUnit,
transportPrice,
transportPriceUnit,
transportVolumeUnit,
clearancePrice,
clearancePriceUnit,
clearanceVolumeUnit,
priceType,
stepPrice,
specialList,
priceStepList,
minWeight,
minWeightUnit,
needOrderInquiry,
needBook,
needPay,
freightPriceStepList,
clearancePriceStepList,
fullPriceStepList,
};
this.$set(this, "form", Object.assign({}, this.form, data));
// 产品选择器默认选择的商品
/* 23-11-07要求不复制商品和线路 https://zentao.test.jdshangmen.com/bug-view-5145.html
getProduct(res.data.productId).then(res => {
this.$refs.productSelector.choose(res.data)
})*/
},
handleAddPrice(field, fieldPrefix) {
if (!this.form[field]) {
this.$set(this.form, field, []);
}
let priceUnit = DEFAULT_PRICE_UNIT;
let volumeUnit = DEFAULT_VOLUME_UNIT;
let weightUnit = DEFAULT_WEIGHT_UNIT;
if (this.form[field].length) {
const first = this.form[field][0];
priceUnit = first[`${fieldPrefix}PriceUnit`];
volumeUnit = first[`${fieldPrefix}VolumeUnit`];
weightUnit = first.weightUnit;
}
console.log("添加价格的默认单位", {
priceUnit,
volumeUnit,
weightUnit,
});
this.form[field].push({
[`${fieldPrefix}PriceUnit`]: priceUnit,
[`${fieldPrefix}VolumeUnit`]: volumeUnit,
weightUnit: weightUnit,
specialList: [],
});
},
handleDeletePrice(field, index) {
this.form[field].splice(index, 1);
},
handleUnitChange(stepPriceList, index, data) {
console.log("handleUnitChange", ...arguments);
if (index > 0) return;
const isVolumeUnit = data.field.indexOf("VolumeUnit") > -1;
// 如果是重量单位,且不是清关费想换的,则需要同步最小起计量单位
if (isVolumeUnit && data.type != "clearance") {
this.form.minWeightUnit = data.value;
}
stepPriceList.forEach((item) => {
item[data.field] = data.value;
// 如果是设置体积单位,则还需要同步到阶梯重量单位
if (isVolumeUnit) {
item["weightUnit"] = data.value;
}
if (item.packagingList?.length) {
item.packagingList.forEach((p) => {
if (data.field.indexOf("PriceUnit") > -1) {
p["packagingPriceUnit"] = data.value;
}
if (data.field.indexOf("VolumeUnit") > -1) {
p["packagingVolumeUnit"] = data.value;
}
});
}
if (item.specialList?.length) {
item.specialList.forEach((p) => {
p[data.field] = data.value;
});
}
});
},
// 获得用语提交的阶梯价副本
getPriceList(stepList, prefix) {
if (!stepList?.length) return [];
let stepPriceList = JSON.parse(JSON.stringify(stepList));
stepPriceList.forEach((item, index) => {
item.rankNum = index + 1;
item.packagingList = item.packagingList.filter(
(p) => !!p.packagingTypes?.length
);
item.packagingList = item.packagingList.map((p) => {
p.packagingTypes = p.packagingTypes.join(",");
return p;
});
});
// 240121应老王要求,未设置价格的不提交
return stepPriceList.filter((item) => {
return !!item[`${prefix}Price`];
});
},
submitForm() {
this.$refs["form"].validate(async (valid) => {
if (!valid) {
return;
}
//lanbm 2024-04-12 添加单价模式校验
if (this.form.priceType == 0 || this.form.priceType == 1) {
} else {
this.$message.error(this.$t("请选择单价模式"));
return;
}
//end lanbm 2024-04-12 添加单价模式校验
// 只有新增的时候做判断
if (
!this.$route.query.ids &&
(!this.selectedRoutes || !this.selectedRoutes.length)
) {
this.$message.error(this.$t("请选择线路"));
return;
}
let data = Object.assign({}, this.form, {
isAllProduct: this.isAllProduct ? 1 : 0,
});
// 如果是勾選了全部篩選商品,則獲取商品ID
if (this.isAllFilteredProduct) {
data.productIdList =
await this.$refs.productSelector.getFilteredIds();
}
if (
!data.isAllProduct &&
(!data.productIdList || !data.productIdList.length)
) {
return this.$message.error("请选择商品");
}
data.lineChannelList = this.selectedRoutes;
/* let isValid = true
for (let stepPrice of this.$refs.stepPrice){
if(!stepPrice.validate()){
isValid = false
break
}
}
if(!isValid)return */
// 全包价
if (this.form.priceType == 1) {
data.fullPriceStepList = this.getPriceList(
this.form.fullPriceStepList,
"all"
);
delete data.clearancePriceStepList;
delete data.freightPriceStepList;
} else {
data.clearancePriceStepList = this.getPriceList(
this.form.clearancePriceStepList,
"clearance"
);
data.freightPriceStepList = this.getPriceList(
this.form.freightPriceStepList,
"transport"
);
delete data.fullPriceStepList;
}
if (data.lineChannelList.length < 1) {
return this.$message.error(this.$t("请选择需要修改的路线"));
}
await this.$confirm(
this.$t("已选择{route}条路线,{product}个商品;确认提交修改?", {
route: data.lineChannelList.length,
product: this.isAllProduct
? this.$refs.productSelector.allTotal
: data.productIdList.length,
})
);
this.loading = true;
batchUpdateProductPriceAir(data)
.then((response) => {
this.$modal.msgSuccess(this.$t("修改成功"));
this.$router.replace(
"/lineProject/product-price?" +
new URLSearchParams(this.$route.query).toString()
);
})
.finally((res) => (this.loading = false));
});
},
},
};
</script>
<style scoped>
.w100 {
width: 100px;
}
.mr10 {
margin-right: 10px;
}
</style>