-
按吨计费
+
@@ -348,56 +395,6 @@ const request = ref({});
const Warehousebillingmode = ref([]); //服务类型
const pricevehicle = ref([]); //车型
const form = ref({
- // 附加费品类
- aaa:[
- { label: '序号', prop: 'index', type: 'string', width: '78', disabled: true },
- {
- label: '产品品类(元/件)',
- prop: 'categoryId',
- type: 'select',
- width: 'auto',
- disabled: true,
- },
- {
- label: '操作/装卸费(元/件)',
- prop: 'handlingPrice',
- type: 'number',
- width: 'auto',
- disabled: true,
- },
- {
- label: '分货费(元/件)',
- prop: 'sortPrice',
- type: 'number',
- width: 'auto',
- disabled: true,
- },
- {
- label: '平移费(元/件)',
- prop: 'relocationPrice',
- type: 'number',
- width: 'auto',
- disabled: true,
- },
- {
- label: '上楼费价格(元/层)',
- prop: 'upstairsDeliveryPrice',
- type: 'number',
- width: 'auto',
- disabled: true,
- },
- ],
-
- aaa: [
- {
- index:1,
- handlingPrice:0,
- sortPrice:0,
- relocationPrice:0,
- upstairsDeliveryPrice:0,
- }
-],
-
// 按件计费
pieceCategory: [
{ label: '序号', prop: 'index', type: 'string', width: '78', disabled: true },
@@ -523,7 +520,47 @@ const form = ref({
{ label: '操作', prop: '', type: '', width: '130', disabled: true },
],
+ // 附加费品类
+ additionalCategory: [
+ { label: '序号', prop: 'index', type: 'string', width: '78', disabled: true },
+ {
+ label: '产品品类(元/件)',
+ prop: 'categoryId',
+ type: 'select',
+ width: 'auto',
+ disabled: true,
+ },
+ {
+ label: '操作/装卸费(元/件)',
+ prop: 'handlingPrice',
+ type: 'number',
+ width: '150',
+ disabled: true,
+ },
+ {
+ label: '分货费(元/件)',
+ prop: 'sortPrice',
+ type: 'number',
+ width: 'auto',
+ disabled: true,
+ },
+ {
+ label: '平移费(元/件)',
+ prop: 'relocationPrice',
+ type: 'number',
+ width: 'auto',
+ disabled: true,
+ },
+ {
+ label: '上楼费价格(元/层)',
+ prop: 'upstairsDeliveryPrice',
+ type: 'number',
+ width: 'auto',
+ disabled: true,
+ },
+ ],
+ additionalCategoryData: [],
VehiclebillingData: [
{
@@ -540,21 +577,25 @@ const form = ref({
label: '最低计费价格',
input: 0,
disabled: true,
+ index: 1,
},
{
label: '最低计费件数',
input: 0,
disabled: true,
+ index: 2,
},
{
label: '最低计费方数',
input: 0,
disabled: true,
+ index: 3,
},
{
label: '最低计费重量',
input: 0,
disabled: true,
+ index: 4,
},
{
label: '加算价格',
@@ -567,30 +608,29 @@ const form = ref({
{
label: '遗留件低于最低件数收费(元)',
input: 0,
+ index: 1,
disabled: true,
},
{
label: '遗留件最最低计费件数',
input: 0,
+ index: 2,
disabled: true,
},
{
label: '遗留件最低计费方数',
input: 0,
+ index: 3,
disabled: true,
},
{
label: '遗留件最低计费重量',
input: 0,
+ index: 4,
disabled: true,
},
{
- label: '向上判断件数',
- input: 0,
- disabled: true,
- },
- {
- label: '上上判断加价',
+ label: '遗留加算',
input: 0,
disabled: true,
},
@@ -648,6 +688,37 @@ const storagereduce = id => {
const storageplus = data => {
addItemAfterId(form.value.fullVehicleData);
};
+// const display=computed(()=>{
+
+// })
+
+const billing = async () => {
+ // 服务类型转换为数字数组
+ form.value.dispatchPricingType = (await request.value.dispatchPricingType)
+ ? request.value.dispatchPricingType.split(',').map(Number)
+ : [];
+
+ console.log(request.value.dispatchPricingType, 'form.value.dispatchPricingType');
+ console.log(form.value.dispatchPricingType.includes(1), 'form.value.dispatchPricingType[=====>]');
+
+ // 使用映射对象优化属性设置
+ const pricingTypeToProperty = {
+ 1: 'piece', // 按件计费
+ 2: 'heavy', // 按重量计费
+ 3: 'square', // 按方计费
+ 4: 'Wholevehicle', // 按整车
+ 5: 'spot', // 按点位
+ 6: 'ton', // 按吨公里
+ 7: 'tonkilometer', // 按公里
+ 8: 'kilometre', // 按吨计费
+ };
+
+ // 自动设置相关属性值
+ Object.entries(pricingTypeToProperty).forEach(([type, property]) => {
+ const typeNumber = parseInt(type, 10);
+ form.value[property] = form.value.dispatchPricingType.includes(typeNumber);
+ });
+};
const onLoad = async () => {
await updateDictionary(Warehousebillingmode.value, 'dispatch_type'); //仓储计费类型
@@ -659,10 +730,12 @@ const onLoad = async () => {
console.log(props.templateData.request, 'props.templateData.request');
request.value = await deepClone(props.templateData.request);
form.value.dispatchServiceType = request.value.dispatchServiceType; //配送服务类型
+ console.log(form.value, 'form.value===>>');
form.value.dispatchPricingType = request.value.dispatchPricingType
? request.value.dispatchPricingType.split(',').map(Number)
: []; //服务类型
+ billing(); //显示条件
addItemAfterId(form.value.fullVehicleData); //整车计费(缺少判断)
// 缺少判断
// 按件品类计费
@@ -701,11 +774,53 @@ const onLoad = async () => {
});
});
}
+ console.log(request.value, ' request.value');
+ // 附加费品类(缺少if)
+ if (request.value.dispatchSubjoinCategorys && request.value.dispatchSubjoinCategorys.length) {
+ request.value.dispatchSubjoinCategorys.forEach((item, index) => {
+ form.value.additionalCategoryData.push({
+ index: index + 1,
+ categoryId: item.id,
+ handlingPrice: 0,
+ sortPrice: 0,
+ relocationPrice: 0,
+ upstairsDeliveryPrice: 0,
+ options: [
+ {
+ label: item.name,
+ value: item.id,
+ },
+ ],
+ });
+ });
+ }
+
+ // 最低计费等级
+ console.log(form.value.Minimumbilling, 'Minimumbilling');
+ console.log(request.dispatchMinCostType);
+ form.value.Minimumbilling.forEach(res => {
+ if (res.index == request.value.dispatchMinCostType) {
+ res.disabled = true;
+ } else {
+ res.disabled = false;
+ }
+ });
+ if(request.dispatchMinCostType !=1){
+ form.value.Minimumbilling.find(res=>res.label=='加算价格').disabled=true
+ }
+ // 遗留控制
+ form.value.Minimumlegacy.forEach(res => {
+ if (res.index == request.value.dispatchMinCostType) {
+ res.disabled = true;
+ } else {
+ res.disabled = false;
+ }
+ });
+ if(request.dispatchMinCostType !=1){
+ form.value.Minimumlegacy.find(res=>res.label=='遗留加算').disabled=true
+ }
+
- // 附加费品类
- // request.value.dispatchAdditionalCategorys.forEach((item,index)=>{
- // form.value.additionalCategoryData.push()
- // })
}
};
@@ -716,14 +831,55 @@ const btn = () => {
const view = val => {
console.log(val);
};
-
-const billing = computed(() => {
- if (!request.value.value) {
- return true;
- } else {
- return false;
+const handleSubmit=()=>{
+ let data={
+ checkType: '4',
+ id: $route.query.id,
+ dispatch:{
+ pieceCategory:[],// 按件品类计费
+ cubeCategory:[],//按方品类计费
+ weightCategory:[],//按重量品类计费
+ tonKilometerCost:[],//按公里计费
+ }
}
-});
+ // 按件品类计费
+ form.value.pieceCategoryData.forEach(item=>{
+ data.dispatch['pieceCategory'].push({
+ categoryId:item.categoryId,//品类id
+ leaveBehindPrice:item.leaveBehindPrice,// 遗留单价
+ price:item.price,//单价
+ })
+ })
+ // 按方品类计费
+ form.value.cubeCategoryData.forEach(item=>{
+ data.dispatch['cubeCategory'].push({
+ categoryId:item.categoryId,//品类id
+ leaveBehindPrice:item.leaveBehindPrice,// 遗留单价
+ price:item.price,//单价
+ })
+ })
+
+ // 按重量品类计费
+ form.value.weightCategoryData.forEach(item=>{
+ data.dispatch['weightCategory'].push({
+ categoryId:item.categoryId,//品类id
+ leaveBehindPrice:item.leaveBehindPrice,// 遗留单价
+ price:item.price,//单价
+ })
+ })
+// 按公里品类计费
+ data.dispatch['weightCategory'].push({
+ categoryId:item.categoryId,//品类id
+ leaveBehindPrice:item.leaveBehindPrice,// 遗留单价
+ price:item.price,//单价
+ })
+
+ console.log(data,'准备提交的数据');
+ return
+ putBasicdataPrice(data).then(res=>{
+ console.log(res,'处理好的值');
+ })
+}