Browse Source

完善回显

dev-xx
qb 12 months ago
parent
commit
97ad8adaed
  1. 2
      src/views/basicdata/ConfigureBillingAndWarehousing/list.vue
  2. 82
      src/views/financialsector/Financialse/FinancialBill.vue
  3. 291
      src/views/financialsector/Financialse/FinancialTrunkLine.vue

2
src/views/basicdata/ConfigureBillingAndWarehousing/list.vue

@ -563,7 +563,7 @@ const remoteMethodBrand = async value => {
}
};
remoteMethodBrand();
remoteMethodBrand('');
/** 搜索仓库 */
const getMaterialTree = async value => {

82
src/views/financialsector/Financialse/FinancialBill.vue

@ -317,13 +317,11 @@ const handleTrunkLinePricingType = response => {
details.priceMethodType = data || [];
if (props.templateData) return;
const _billTemplateDetailArr = [];
for (let i = 0; i < details.priceMethodType.length; i++) {
const value = details.priceMethodType[i];
if (value.dictKey != '2') {
_billTemplateDetailArr.push({
const _itemObj = {
title: value.dictValue + '计费品类',
code: value.dictKey,
categories: [
@ -337,18 +335,90 @@ const handleTrunkLinePricingType = response => {
loading: false,
},
],
});
};
if (!props.templateData.request) continue;
if (!props.templateData.request) {
console.log('123123 :>> ', 123123);
_billTemplateDetailArr.push(_itemObj);
continue;
}
//
console.log('222 :>> ', 222);
const _arr = [];
//
if (value.dictKey === '1') {
const { pickupPieceCategorys } = props.templateData.request;
if (pickupPieceCategorys && pickupPieceCategorys.length !== 0) {
for (let i = 0; i < pickupPieceCategorys.length; i++) {
const item = pickupPieceCategorys[i];
_arr.push({
reduce: i === 0 ? false : true,
plus: true,
goodsName: item.name,
goodsId: item.id,
goods: item.name,
goodsArr: [],
loading: false,
});
}
_itemObj.categories = _arr;
}
}
//
if (value.dictKey === '4') {
const { pickupWeightCategorys } = props.templateData.request;
if (pickupWeightCategorys && pickupWeightCategorys.length !== 0) {
for (let i = 0; i < pickupWeightCategorys.length; i++) {
const item = pickupWeightCategorys[i];
_arr.push({
reduce: i === 0 ? false : true,
plus: true,
goodsName: item.name,
goodsId: item.id,
goods: item.name,
goodsArr: [],
loading: false,
});
}
_itemObj.categories = _arr;
}
}
//
if (value.dictKey === '3') {
const { pickupCubeCategorys } = props.templateData.request;
if (pickupCubeCategorys && pickupCubeCategorys.length !== 0) {
for (let i = 0; i < pickupCubeCategorys.length; i++) {
const item = pickupCubeCategorys[i];
_arr.push({
reduce: i === 0 ? false : true,
plus: true,
goodsName: item.name,
goodsId: item.id,
goods: item.name,
goodsArr: [],
loading: false,
});
}
_itemObj.categories = _arr;
}
}
_billTemplateDetailArr.push(_itemObj);
}
}
console.log('_billTemplateDetailArr :>> ', _billTemplateDetailArr);
details.form.billTemplateDetail = _billTemplateDetailArr;
};

291
src/views/financialsector/Financialse/FinancialTrunkLine.vue

@ -73,7 +73,7 @@
<!-- 表格循环 -->
<div class="el_table_td" v-for="(item, index) in value.categories">
<div class="el_table_idNumber">{{ index+1 }}</div>
<div class="el_table_idNumber">{{ index + 1 }}</div>
<el-select
:ref="value.title + index"
class="el_Cselect"
@ -171,11 +171,11 @@
</template>
<script setup lang="ts">
import { ref, reactive, getCurrentInstance, nextTick,defineEmits, defineComponent } from 'vue';
import { ref, reactive, getCurrentInstance, nextTick, defineEmits, defineComponent } from 'vue';
import { debounce, deepClone } from '@/utils/util';
import { ElMessage, ElMessageBox } from 'element-plus';
import { getDictionaryBiz } from '@/api/system/dict';
import { $_priceTemplate ,$_putpriceTemplate} from '@/api/financialsector/index'; //
import { $_priceTemplate, $_putpriceTemplate } from '@/api/financialsector/index'; //
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
const emit = defineEmits(['request-data']);
defineComponent({
@ -332,29 +332,105 @@ const handleTrunkLinePricingType = response => {
const _billTemplateDetailArr = [];
for (let i = 0; i < details.priceMethodType.length; i++) {
const value = details.priceMethodType[i];
console.log(value,'value');
if(value.dictKey !='2'){
console.log(value,'value====');
_billTemplateDetailArr.push({
title: value.dictValue + '计费品类',
code: value.dictKey,
categories: [
{
reduce: false,
plus: true,
goodsName: '',
goodsId: '',
goods: '',
goodsArr: [],
loading: false,
},
],
});
}
if (value.dictKey != '2') {
const _itemObj = {
title: value.dictValue + '计费品类',
code: value.dictKey,
categories: [
{
reduce: false,
plus: true,
goodsName: '',
goodsId: '',
goods: '',
goodsArr: [],
loading: false,
},
],
};
if (!props.templateData.request) {
console.log('123123 :>> ', 123123);
_billTemplateDetailArr.push(_itemObj);
continue;
}
console.log('222 :>> ', 222);
const _arr = [];
//
if (value.dictKey === '1') {
const { trunklinePieceCategorys } = props.templateData.request;
if (trunklinePieceCategorys && trunklinePieceCategorys.length !== 0) {
for (let i = 0; i < trunklinePieceCategorys.length; i++) {
const item = trunklinePieceCategorys[i];
_arr.push({
reduce: i === 0 ? false : true,
plus: true,
goodsName: item.name,
goodsId: item.id,
goods: item.name,
goodsArr: [],
loading: false,
});
}
_itemObj.categories = _arr;
}
}
//
if (value.dictKey === '4') {
const { trunklineWeightCategorys } = props.templateData.request;
if (trunklineWeightCategorys && trunklineWeightCategorys.length !== 0) {
for (let i = 0; i < trunklineWeightCategorys.length; i++) {
const item = trunklineWeightCategorys[i];
_arr.push({
reduce: i === 0 ? false : true,
plus: true,
goodsName: item.name,
goodsId: item.id,
goods: item.name,
goodsArr: [],
loading: false,
});
}
_itemObj.categories = _arr;
}
}
//
if (value.dictKey === '3') {
const { trunklineCubeCategorys } = props.templateData.request;
if (trunklineCubeCategorys && trunklineCubeCategorys.length !== 0) {
for (let i = 0; i < trunklineCubeCategorys.length; i++) {
const item = trunklineCubeCategorys[i];
_arr.push({
reduce: i === 0 ? false : true,
plus: true,
goodsName: item.name,
goodsId: item.id,
goods: item.name,
goodsArr: [],
loading: false,
});
}
_itemObj.categories = _arr;
}
}
_billTemplateDetailArr.push(_itemObj);
}
}
console.log('_billTemplateDetailArr :>> ', _billTemplateDetailArr);
details.form.billTemplateDetail = _billTemplateDetailArr;
};
@ -388,11 +464,26 @@ const initDictionaryBiz = async () => {
const [trunkLineResult, minCostResult] = await Promise.all([trunkLinePromise, minCostPromise]);
await nextTick();
console.log('props.templateData.request :>> ', props.templateData.request);
if (Object.keys(props.templateData).length !== 0) {
details.form = props.templateData.request;
details.form.trunklinePricingType = details.form.trunklinePricingType.split(',');
details.form.trunklineIsUnifyAreaBill += '';
details.form.trunklineIsByCategory += '';
details.form.trunklineIsPeculiarSetup += '';
details.form.trunklineIsMinCost += '';
details.form.trunklineMinCostType += '';
}
console.log('details.form :>> ', details.form);
// 线
handleTrunkLinePricingType(trunkLineResult);
handleLowestPrice(minCostResult);
// form
initFormData();
} catch (error) {
console.log('error :>> ', error);
@ -402,7 +493,6 @@ const initDictionaryBiz = async () => {
initDictionaryBiz();
/** 新增品类 */
const handlePlus = async (value: any, index: number) => {
value.categories.splice(index + 1, 0, {
@ -483,91 +573,100 @@ const resetFormData = () => {
};
/** 提交 */
const handleSubmit = async() => {
const handleSubmit = async () => {
if (details.form.trunklinePricingType.length === 0) ElMessage.error('请选择计价方式');
formRef.value.validate(async valid => {
await emit('request-data'); //
if (!valid) return;
console.log(props, 'props');
if (!props.templateData.TemplateName) {
ElMessage({
message: '请输入模板名称',
type: 'warning',
});
return;
} else {
details.form.name = props.templateData.TemplateName; //
}
console.log(props, 'props');
if (!props.templateData.TemplateName) {
ElMessage({
message: '请输入模板名称',
type: 'warning',
});
return;
} else {
details.form.name = props.templateData.TemplateName; //
}
if (!props.templateData.brand) {
ElMessage({
message: '请选择品牌',
type: 'warning',
});
return;
} else {
details.form.brandId = props.templateData.brand; //ID
}
if (!props.templateData.brand) {
ElMessage({
message: '请选择品牌',
type: 'warning',
});
return;
} else {
details.form.brandId = props.templateData.brand; //ID
}
details.form.serviceType=props.templateData.ServiceType.join(',');//
console.log(details.form,'初始表单');
const submitData = deepClone(details.form);//
details.form.serviceType = props.templateData.ServiceType.join(','); //
console.log(details.form, '初始表单');
const submitData = deepClone(details.form); //
//
submitData.trunklinePricingType= submitData.trunklinePricingType.join(',')
submitData.trunklinePricingType = submitData.trunklinePricingType.join(',');
//
//
if(details.form.trunklineIsByCategory === '1'){
submitData.billTemplateDetail.forEach(item=>{
switch (item.code) {
case '1':
submitData.trunklinePieceCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(',');
break;
case '3':
submitData.trunklineCubeCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(',');
break;
case '4':
submitData.trunklineWeightCategory = item.categories.filter(res => res.goodsId).map(res => res.goodsId).join(',');
break;
default:
break;
}
})
if (details.form.trunklineIsByCategory === '1') {
submitData.billTemplateDetail.forEach(item => {
switch (item.code) {
case '1':
submitData.trunklinePieceCategory = item.categories
.filter(res => res.goodsId)
.map(res => res.goodsId)
.join(',');
break;
case '3':
submitData.trunklineCubeCategory = item.categories
.filter(res => res.goodsId)
.map(res => res.goodsId)
.join(',');
break;
case '4':
submitData.trunklineWeightCategory = item.categories
.filter(res => res.goodsId)
.map(res => res.goodsId)
.join(',');
break;
default:
break;
}
});
}
delete submitData.billTemplateDetail;//
console.log(submitData,'处理好的参数');
if(props.templateData.code){
let data={
checkType:'2',
...submitData,//
id:props.templateData.code,//
}
delete submitData.billTemplateDetail; //
console.log(submitData, '处理好的参数');
if (props.templateData.code) {
let data = {
checkType: '2',
...submitData, //
id: props.templateData.code, //
};
//
$_putpriceTemplate(data).then(res=>{
console.log(res,'编辑成功之后返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
})
}
})
}else{
$_putpriceTemplate(data).then(res => {
console.log(res, '编辑成功之后返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
}
});
} else {
//
let data={
...submitData,//
}
$_priceTemplate(data).then(res=>{
console.log(res,'提交成功返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
let data = {
...submitData, //
};
$_priceTemplate(data).then(res => {
console.log(res, '提交成功返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
emit('request-data', res.data.data); //
}
});
emit('request-data',res.data.data);//
}
})
}
});
};

Loading…
Cancel
Save