Browse Source

优化财务

dev-xx
马远东 11 months ago
parent
commit
ebca8a8f35
  1. 120
      src/views/Pricesystem/Price/PriceDelivery.vue
  2. 5
      src/views/Pricesystem/Price/PriceWarehousing.vue
  3. 11
      src/views/distribution/signfor/distributionSignforedt.vue
  4. 22
      src/views/financialsector/Financialse/FinancialDelivery.vue
  5. 29
      src/views/financialsector/Financialse/FinancialWarehousing.vue

120
src/views/Pricesystem/Price/PriceDelivery.vue

@ -192,7 +192,12 @@
style="width: 48%" style="width: 48%"
v-if="form.Wholevehicle" v-if="form.Wholevehicle"
> >
<SurchargeTable :SurchargeData="form.fullVehicleData" :Surcharge="form.fullVehicle"> <SurchargeTable
:SurchargeData="form.fullVehicleData"
:Surcharge="form.fullVehicle"
@change="selectChange"
>
<template #default="slotProps"> <template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'"> <template v-if="slotProps.scope.column.label === '操作'">
<div class="eml_btn"> <div class="eml_btn">
@ -726,6 +731,43 @@ async function updateDictionary(targetArray, dictionaryType) {
.catch(() => {}) .catch(() => {})
.finally(() => {}); .finally(() => {});
} }
function updateOptions(allDropdowns) {
//
let dropdowns = allDropdowns;
console.log(dropdowns,'dropdowns');
//
dropdowns.forEach((dropdown, index, self) => {
//
let selectedValue = dropdown.vehicleType;
// options
self.forEach(otherDropdown => {
if (dropdown !== otherDropdown) {
//
otherDropdown.options.forEach(option => {
//
if (option.value === selectedValue) {
option.disabled = true;
} else {
//
let isSelectedSomewhereElse = self.some(
d => d !== otherDropdown && d.vehicleType === option.value
);
option.disabled = isSelectedSomewhereElse;
}
});
}
});
});
}
//
const selectChange = data => {
//
updateOptions(form.value.fullVehicleData);
};
// //
const resetFormData = () => { const resetFormData = () => {
ElMessageBox.confirm('是否重置数据?', '提示', { ElMessageBox.confirm('是否重置数据?', '提示', {
@ -763,9 +805,11 @@ async function addItemAfterId(array) {
vehicleType: '', // vehicleType: '', //
loading: false, loading: false,
price: 0, // price: 0, //
options: pricevehicle.value, // options: deepClone(pricevehicle.value), //
}; };
await array.push(newItem); await array.push(newItem);
updateOptions(form.value.fullVehicleData);
} }
// //
const storagereduce = id => { const storagereduce = id => {
@ -774,10 +818,73 @@ const storagereduce = id => {
}; };
// //
const storageplus = data => { const storageplus = async data => {
addItemAfterId(form.value.fullVehicleData); await addItemAfterId(form.value.fullVehicleData);
}; //
};
// let data=[
// {
// "index": 1,
// "loading": false,
// "options": [
// {
// "value": 1,
// "label": "56",
// "id": "1775349356882358274"
// },
// {
// "value": 2,
// "label": "95",
// "id": "1775349396015214594"
// },
// {
// "value": 3,
// "label": "37",
// "id": "1775349435810770945"
// },
// {
// "value": 4,
// "label": "28",
// "id": "1775349490655490049"
// }
// ],
// "plus": true,
// "price": 55,
// "vehicleType": 1
// },
// {
// "index": 2,
// "plus": false,
// "reduce": true,
// "vehicleType": "",
// "loading": false,
// "price": 0,
// "options": [
// {
// "value": 1,
// "label": "56",
// "id": "1775349356882358274"
// },
// {
// "value": 2,
// "label": "95",
// "id": "1775349396015214594"
// },
// {
// "value": 3,
// "label": "37",
// "id": "1775349435810770945"
// },
// {
// "value": 4,
// "label": "28",
// "id": "1775349490655490049"
// }
// ]
// }
// ]
const billing = async () => { const billing = async () => {
// //
form.value.dispatchPricingType = (await request.value.dispatchPricingType) form.value.dispatchPricingType = (await request.value.dispatchPricingType)
@ -870,7 +977,6 @@ const onLoad = async () => {
}); });
}); });
} }
} }
// //
if (form.value.dispatchPricingType.includes(2)) { if (form.value.dispatchPricingType.includes(2)) {
@ -885,7 +991,6 @@ const onLoad = async () => {
}); });
}); });
} }
} }
} }
@ -941,7 +1046,6 @@ const onLoad = async () => {
}); });
} }
// //
// / // /
if (!request.value.dispatchIsOperateFee) { if (!request.value.dispatchIsOperateFee) {

5
src/views/Pricesystem/Price/PriceWarehousing.vue

@ -638,6 +638,7 @@ const handleSubmit = () => {
delete mox.warehouseSortPrice; delete mox.warehouseSortPrice;
} }
} }
loading.value=true
putBasicdataPrice(data) putBasicdataPrice(data)
.then(res => { .then(res => {
console.log(res, '保存成功'); console.log(res, '保存成功');
@ -649,7 +650,9 @@ const handleSubmit = () => {
} }
}) })
.catch(() => {}) .catch(() => {})
.finally(() => {}); .finally(() => {
loading.value=false
});
}; };
</script> </script>

11
src/views/distribution/signfor/distributionSignforedt.vue

@ -1159,6 +1159,17 @@ const menuData2 = ref([
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'materialName',
label: '物料名称',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{ {
prop: 'firsts', prop: 'firsts',
label: '一级品类', label: '一级品类',

22
src/views/financialsector/Financialse/FinancialDelivery.vue

@ -1194,11 +1194,7 @@ const handleSubmit = async () => {
return; return;
} }
ElMessageBox.confirm('是否保存?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
form.value.serviceType = props.templateData.ServiceType.join(','); // form.value.serviceType = props.templateData.ServiceType.join(','); //
// //
const Submit = deepClone(form.value); // const Submit = deepClone(form.value); //
@ -1273,6 +1269,12 @@ const handleSubmit = async () => {
} }
console.log(Submit, '要提交的数据'); console.log(Submit, '要提交的数据');
ElMessageBox.confirm('是否保存?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
pageLoading.value=true
if (props.templateData.code || $route.query.id) { if (props.templateData.code || $route.query.id) {
console.log('走编辑接口'); console.log('走编辑接口');
// //
@ -1289,6 +1291,10 @@ const handleSubmit = async () => {
type: 'success', type: 'success',
}); });
} }
}).catch(res=>{
console.log(res,'错误信息');
}).finally(()=>{
pageLoading.value=false
}); });
} else { } else {
// //
@ -1305,7 +1311,11 @@ const handleSubmit = async () => {
}); });
emit('request-data', res.data.data); // emit('request-data', res.data.data); //
} }
}); }).catch(res=>{
console.log(res,'错误信息');
}).finally(()=>{
pageLoading.value=false
});;
} }
}); });
}; };

29
src/views/financialsector/Financialse/FinancialWarehousing.vue

@ -361,14 +361,17 @@ function updateOptions(allDropdowns) {
// options // options
self.forEach(otherDropdown => { self.forEach(otherDropdown => {
if (dropdown !== otherDropdown) { // if (dropdown !== otherDropdown) {
//
otherDropdown.options.forEach(option => { otherDropdown.options.forEach(option => {
// //
if (option.value === selectedValue) { if (option.value === selectedValue) {
option.disabled = true; option.disabled = true;
} else { } else {
// //
let isSelectedSomewhereElse = self.some(d => d !== otherDropdown && d.Warehousecategory === option.value); let isSelectedSomewhereElse = self.some(
d => d !== otherDropdown && d.Warehousecategory === option.value
);
option.disabled = isSelectedSomewhereElse; option.disabled = isSelectedSomewhereElse;
} }
}); });
@ -377,7 +380,6 @@ function updateOptions(allDropdowns) {
}); });
} }
// //
const selectChange = data => { const selectChange = data => {
// console.log(data, 'data'); // console.log(data, 'data');
@ -388,13 +390,12 @@ const selectChange = data => {
let allDropdowns = [form.value.StoragecategoryData]; let allDropdowns = [form.value.StoragecategoryData];
// //
updateOptions(allDropdowns); updateOptions(allDropdowns);
}; };
const wxselectChange = () => { const wxselectChange = () => {
let allDropdowns = [form.value.AdditionalcategoriesData]; let allDropdowns = [form.value.AdditionalcategoriesData];
// //
updateOptions(allDropdowns); updateOptions(allDropdowns);
} };
const formCopy = ref({}); // const formCopy = ref({}); //
const SelectOpin = ref(null); // const SelectOpin = ref(null); //
const $route = useRoute(); // const $route = useRoute(); //
@ -659,12 +660,7 @@ const Submit = () => {
if (!valid) { if (!valid) {
return; return;
} }
ElMessageBox.confirm('是否保存?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
pageLoading.value = true;
await emit('request-data'); // await emit('request-data'); //
console.log(props, 'props'); console.log(props, 'props');
@ -710,9 +706,7 @@ const Submit = () => {
} }
// //
if (form.value.warehouseIsCategorySubjoin) { if (form.value.warehouseIsCategorySubjoin) {
let Surcharge = form.value.AdditionalcategoriesData.find( let Surcharge = form.value.AdditionalcategoriesData.find(res => !res.warehousePieceCategory); //
res => !res.warehousePieceCategory
); //
if (Surcharge) { if (Surcharge) {
// , // ,
ElMessage({ ElMessage({
@ -734,6 +728,12 @@ const Submit = () => {
console.log(form.value, '要提交的参数'); console.log(form.value, '要提交的参数');
ElMessageBox.confirm('是否保存?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
pageLoading.value = true;
if (props.templateData.code || $route.query.id) { if (props.templateData.code || $route.query.id) {
// //
let data = { let data = {
@ -742,6 +742,7 @@ const Submit = () => {
checkType: '3', // checkType: '3', //
}; };
console.log('编辑操作'); console.log('编辑操作');
$_putpriceTemplate(data) $_putpriceTemplate(data)
.then(res => { .then(res => {
console.log(res, '编辑成功之后返回值'); console.log(res, '编辑成功之后返回值');

Loading…
Cancel
Save