Browse Source

财务,修复已知bug

dev-xx
马远东 12 months ago
parent
commit
1b770159bb
  1. 4
      src/views/distribution/reservation/reservationAddFrom.vue
  2. 73
      src/views/distribution/turndelivery/deliveryDiscuss.vue
  3. 2
      src/views/financialsector/CustomerBaseprice.vue
  4. 575
      src/views/financialsector/Financialse/FinancialDelivery.vue
  5. 66
      src/views/financialsector/Financialse/FinancialWarehousing.vue
  6. 4
      src/views/reportforms/DeliveryCustomers.vue
  7. 4
      src/views/reportforms/DeliveryDetails.vue
  8. 4
      src/views/reportforms/DeliveryTrainNumber.vue
  9. 4
      src/views/reportforms/Inventory.vue
  10. 4
      src/views/reportforms/InventoryOutbound.vue
  11. 4
      src/views/reportforms/InventoryReceipt.vue
  12. 4
      src/views/reportforms/Selfpickupreport.vue
  13. 4
      src/views/reportforms/Selfpickuptask.vue
  14. 87
      src/views/reportforms/Stockordertable.vue

4
src/views/distribution/reservation/reservationAddFrom.vue

@ -1121,7 +1121,7 @@ export default {
head: false,
},
{
prop: 'isZero',
prop: 'isZeroName',
label: '是否零担',
type: 3,
values: '',
@ -3323,7 +3323,9 @@ console.log(this.orderList,'');
for (let i = 0; i < this.stockArticleInfo.length; i++) {
const value = this.stockArticleInfo[i];
value.completeSetName = Number(value.completeSet) === 2 ? '已齐套' : '未齐套';
value.isZeroName = Number(value.isZero) === 1 ? '是' : '否';
}
console.log('this.stockArticleInfo :>> ', this.stockArticleInfo);
// this.stockArticleInfo.forEach((item, index) => {

73
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -559,6 +559,7 @@
:loading="loading"
@inputTxt="inputsc"
@selection="TCselectAll"
@selectCheck="selectscStockArtic"
:isselectfun="ProhibitSelection"
:searchInput="multifunctional"
>
@ -1173,7 +1174,20 @@ const menuData = ref([
sortable: true,
head: false,
},
{
prop: 'isZeroName',
label: '是否零担',
type: 3,
values: '',
width: '160',
checkarr: [
{ label: '否', value: 0 },
{ label: '是', value: 1 },
],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'consigneeUnit',
label: '运单收货单位',
@ -1810,7 +1824,7 @@ async function OrderSelection(id, DataParameter) {
...PackageFrom.value, //
...parameter.value, //
});
const { code, data: resData } = res.data;
if (code !== 200) return;
@ -1818,9 +1832,12 @@ async function OrderSelection(id, DataParameter) {
console.log('columnListNode.value :>> ', columnListNode.value);
data.value = resData.records;
data.value.forEach(res=>{
res.isZeroName = res.isZero=='1'?'是':'否'
})
//
console.log(data.records, '在库订单信息');
console.log(data.value, '在库订单信息');
total.value = resData.total; //
await nextTick();
@ -1914,6 +1931,8 @@ const TCselectAll = val => {
/** 表格表头输入框搜索 */
const inputsc = (value, row) => {
if (!wrapLoading.value) {
console.log('走1');
parameter.value[row.prop] = value;
if (!value) delete parameter.value[row.prop];
@ -1932,6 +1951,21 @@ const inputsc = (value, row) => {
}
};
const selectscStockArtic=(value, row)=> {
if (!wrapLoading.value) {
const _name = row.prop.replace('Name', '');
parameter.value[_name] = value;
if (value === '') delete parameter.value[_name];
//
if (kind.value) {
OrderSelection(0, parameter.value);
} else {
OrderSelection(1, parameter.value);
}
}
};
//
const selectChange = (selection, row) => {
//
@ -2078,33 +2112,36 @@ const soclear = () => {
};
function scrollToElementWithinTableRow(partialIdString) {
//
//
const tableRows = document.querySelectorAll('tr');
tableRows.forEach(function (row) {
tableRows.forEach(function(row) {
const cells = row.querySelectorAll('[id]');
cells.forEach(function (cell) {
cells.forEach(function(cell) {
cell.style.backgroundColor = ''; //
cell.style.color = ''; //
});
});
//
const partialIds = partialIdString.split(',').map(id => id.trim());
//
const partialIds = partialIdString.replace(/,/g, ',').split(',').map(id => id.trim());
// partialId
// partialIds
for (let row of tableRows) {
// partialIds
if (partialIds.every(partialId => row.querySelector(`[id*="${partialId}"]`))) {
//
let allIdsFound = partialIds.every(partialId => {
return Array.from(row.querySelectorAll('[id]')).some(cell => cell.id.includes(partialId));
});
if (allIdsFound) {
// partialIds,
const cells = row.querySelectorAll('[id]');
cells.forEach(function (cell) {
cell.style.backgroundColor = '#ff0000'; //
cell.style.color = '#fff'; //
cells.forEach(function(cell) {
cell.style.backgroundColor = '#ff0000';
cell.style.color = '#fff';
});
//
row.scrollIntoView();
break; //
//
row.scrollIntoView({ behavior: 'smooth', block: 'center' });
break;
}
}
}

2
src/views/financialsector/CustomerBaseprice.vue

@ -320,7 +320,7 @@ const Deletetemplate = () => {
return;
}
ElMessageBox.confirm('是否删除选中模板?此操作不可撤销!', 'Warning', {
ElMessageBox.confirm('是否删除选中模板?此操作不可撤销!', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',

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

@ -1,76 +1,77 @@
<template>
<div class="content_max">
<!-- 配送服务类型 -->
<div class="el_Storage">
<span class="el_table_span">配送服务类型</span>
<el-select
class="el_Cselect"
v-model="form.dispatchServiceType"
filterable
placeholder="选择计费类型"
style="width: 240px"
@change="chargetype"
>
<el-option
v-for="item in Warehousebillingmode"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</div>
<!-- 配送计费模式 -->
<div class="el_select_check">
<div class="el_Storage el_Service">
<span class="el_table_span name">配送计费模式</span>
<div class="el_row_f1">
<div class="el_Storage el_flex " style=" margin-right: 20px">
<span class="el_table_span">配送服务类型</span>
<el-select
v-model="form.dispatchPricingType"
class="el_Cselect"
v-model="form.dispatchServiceType"
filterable
placeholder="请选择配送计费模式"
:popper-append-to-body="false"
style="width: 760px"
multiple
@remove-tag="removeTag"
placeholder="选择计费类型"
style="width: 310px"
@change="chargetype"
>
<el-option
v-for="item in ServiceList"
v-for="item in Warehousebillingmode"
:key="item.value"
:label="item.label"
:value="item.value"
>
<el-checkbox v-model="item.check" @change="isChecked(item)">
{{ item.label }}
</el-checkbox>
</el-option>
/>
</el-select>
</div>
</div>
<!-- 是否区分品类 -->
<div class="el_Storage">
<span class="el_table_span">是否区分品类</span>
<el-radio-group
@change="categoryChange"
v-model="form.dispatchIsByCategory"
class="el_Cselect"
>
<el-radio v-for="item in Distinguishcategories" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 配送计费模式 -->
<div class="el_select_check el_flex">
<div class="el_Storage el_Service el_flex" >
<span class="el_table_span name">配送计费模式</span>
<el-select
v-model="form.dispatchPricingType"
filterable
placeholder="请选择配送计费模式"
:popper-append-to-body="false"
style="width: 310px"
multiple
@remove-tag="removeTag"
>
<el-option
v-for="item in ServiceList"
:key="item.value"
:label="item.label"
:value="item.value"
>
<el-checkbox v-model="item.check" @change="isChecked(item)">
{{ item.label }}
</el-checkbox>
</el-option>
</el-select>
</div>
</div>
<!-- 是否区分品类 -->
<div class="el_Storage el_flex el_te" style="margin-left: 20px;">
<span class="el_table_span">是否区分品类</span>
<el-radio-group
@change="categoryChange"
v-model="form.dispatchIsByCategory"
class="el_Cselect el_fx" style=" width: 300px;"
>
<el-radio v-for="item in Distinguishcategories" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
<!-- 是否有遗留件 -->
<div class="el_Storage">
<span class="el_table_span">是否有遗留件</span>
<el-radio-group v-model="form.dispatchIsLeaveBehind" class="el_Cselect">
<el-radio v-for="item in Leftoverparts" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
<!-- 是否有遗留件 -->
<div class="el_Storage el_flex" style="margin-left: 20px;">
<span class="el_table_span">是否有遗留件</span>
<el-radio-group v-model="form.dispatchIsLeaveBehind" class="el_Cselect el_fx" style=" width: 300px;">
<el-radio v-for="item in Leftoverparts" :key="item.label" :label="item.value">{{
item.label
}}</el-radio>
</el-radio-group>
</div>
</div>
<!-- 商配/市配 -->
<div class="el_Storage" v-if="WarehousebillingmodeTitle && categoriesState">
<div class="el_Storage" v-if="form.dispatchServiceType && categoriesState">
<el-tabs class="demo-tabs">
<el-tab-pane
:label="WarehousebillingmodeTitle"
@ -81,7 +82,7 @@
<div class="el_Commercial_ercial" v-if="StateDelivery">
<!-- 按件计费 -->
<template v-for="Item in Commercialcial" :key="Item.title">
<div class="el_Storage" v-if="Item.state">
<div class="el_Storage el_margin" v-if="Item.state">
<div class="Storage-cont">
<!-- 标题 -->
<span class="el_table_span">{{ Item.title }}</span>
@ -91,9 +92,10 @@
v-loading="Item.Storageloading"
element-loading-text="Loading..."
>
<div class="el_table_span">
<div class="el_table_id">序号</div>
<div class="el_table_title">产品品类</div>
<div class="el_table_span el_table_border">
<div class="el_table_id"><span>序号</span></div>
<div class="el_table_title"><span>产品品类</span></div>
<div class="el_table_operation"><span>操作</span></div>
</div>
<!-- 表格循环 -->
<div class="el_table_td" v-for="item in Item.sequence" :key="item.id">
@ -108,7 +110,7 @@
clearable
reserve-keyword
placeholder="请选择品类"
style="width: 240px"
style="width: 100px"
remote-show-suffix
:remote-method="categoriesearch"
@focus="categoriesSearchfocus(item)"
@ -126,15 +128,14 @@
@click="storageplus(Item, item.id)"
v-if="item.plus"
class="el_table_operation_span_b"
>+</span
><el-icon style="margin-right: 3px"><CirclePlus /></el-icon></span
>
<span
@click="storagereduce(Item, item.id)"
v-if="item.reduce"
class="el_table_operation_span_a"
>-</span
><el-icon style="margin-right: 3px"><Delete /></el-icon></span
>
</div>
</div>
</div>
@ -148,6 +149,7 @@
<!-- 附加费计费 -->
<div class="el_Surchargebilling">
<span class="el_title_span">附加费计费</span>
<div class="el_fj">
<!-- 是否有分货费 -->
<div class="el_Storage">
<span class="el_table_span">是否有分货费</span>
@ -168,7 +170,7 @@
</div>
<!-- 是否有上楼费 -->
<div class="el_Storage el_upstairs">
<div class="el_Storage ">
<div class="el_upstairs_a">
<span class="el_table_span">是否有上楼费</span>
<el-radio-group
@ -181,8 +183,9 @@
}}</el-radio>
</el-radio-group>
</div>
<div class="el_upstairs_b" v-if="UpstairsState">
</div>
<div class="el_Storage ">
<div class="el_upstairs_b" v-if="form.dispatchIsStairsCarryingCharge">
<span class="el_table_span">是否配置免费层数</span>
<el-radio-group v-model="form.dispatchIsFeeFloor" class="el_Cselect">
<el-radio v-for="item in Numberlayers" :key="item.label" :label="item.value">{{
@ -191,7 +194,7 @@
</el-radio-group>
</div>
</div>
</div>
<!-- 是否有平移费 -->
<div class="el_Storage">
<span class="el_table_span">是否有平移费</span>
@ -217,7 +220,7 @@
</div>
<!-- 附加费品类 -->
<div class="el_Storage" v-if="SurchargeState">
<div class="el_Storage" v-if="form.dispatchIsCategorySubjoin">
<div class="Storage-cont">
<span class="el_table_span">附加费品类</span>
<!-- 表格 -->
@ -266,7 +269,6 @@
class="el_table_operation_span_a"
>-</span
>
</div>
</div>
</div>
@ -292,7 +294,7 @@
</el-radio-group>
</div>
<!-- 最低计费方式 -->
<div class="el_Minimumbilling_b" v-if="MinimumState">
<div class="el_Minimumbilling_b" v-if="form.dispatchIsMinCost">
<span class="el_table_span">最低计费方式</span>
<el-radio-group v-model="form.dispatchMinCostMode" class="el_Cselect">
<el-radio v-for="item in Billingmethod" :key="item.label" :label="item.value">{{
@ -305,7 +307,7 @@
</div>
<!-- 最低计费类型 -->
<div class="el_Storage" v-if="MinimumState">
<div class="el_Storage" v-if="form.dispatchIsMinCost">
<span class="el_table_span">最低计费类型</span>
<el-radio-group v-model="form.dispatchMinCostType" class="el_Cselect">
<el-radio v-for="item in chargetypeSelect" :key="item.label" :label="item.value">{{
@ -315,7 +317,7 @@
</div>
<!-- 是否向上判断 -->
<div class="el_Storage" v-if="!MinimumState">
<div class="el_Storage" v-if="!form.dispatchIsMinCost">
<span class="el_table_span">是否向上判断</span>
<el-radio-group v-model="form.dispatchIsUpwardJudgment" class="el_Cselect">
<el-radio v-for="item in Upwardjudgment" :key="item.label" :label="item.value">{{
@ -339,7 +341,8 @@ import { getDictionaryBiz } from '@/api/system/dict'; //字典
import { deepClone } from '@/utils/util';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { submit } from '@/api/base/region';
import { $_priceTemplate ,$_putpriceTemplate} from '@/api/financialsector/index'; //
import { $_priceTemplate, $_putpriceTemplate } from '@/api/financialsector/index'; //
const $route = useRoute(); //
const emit = defineEmits(['request-data']);
defineComponent({
emits: ['request-data'],
@ -353,18 +356,18 @@ console.log(props, '来自父页面参数');
const formCopy = ref(null); //
const form = ref({
dispatchServiceType: '', //
dispatchIsByCategory: '0', //
dispatchIsLeaveBehind: '0', //
dispatchIsSortFee: '0', //
dispatchIsOperateFee: '0', //
dispatchIsStairsCarryingCharge: '0', //
dispatchIsByCategory: 0, //
dispatchIsLeaveBehind: 0, //
dispatchIsSortFee: 0, //
dispatchIsOperateFee: 0, //
dispatchIsStairsCarryingCharge: 0, //
dispatchIsFeeFloor: null, //
dispatchIsShiftingCharge: '0', //
dispatchIsCategorySubjoin: '0', //
dispatchIsMinCost: '0', //
dispatchIsShiftingCharge: 0, //
dispatchIsCategorySubjoin: 0, //
dispatchIsMinCost: 0, //
dispatchMinCostMode: null, //
dispatchMinCostType: '1', //
dispatchIsUpwardJudgment: '0', //
dispatchMinCostType: 1, //
dispatchIsUpwardJudgment: 0, //
});
const SelectOpin = ref(null); //
//
@ -463,10 +466,8 @@ const CommercialcialDisplay = () => {
//
const UpstairsChange = val => {
if (val == 1) {
UpstairsState.value = true;
form.value.dispatchIsFeeFloor = '0'; //
form.value.dispatchIsFeeFloor = 0; //
} else {
UpstairsState.value = false;
form.value.dispatchIsFeeFloor = null; //
}
};
@ -480,14 +481,13 @@ const categoryChange = val => {
};
//
const MinimumChange = val => {
if (val == 1) {
MinimumState.value = true;
form.value.dispatchMinCostMode = '1';
console.log(val);
if (val) {
form.value.dispatchMinCostMode = 1;
form.value.dispatchIsUpwardJudgment = null; //
} else {
MinimumState.value = false;
form.value.dispatchMinCostMode = null;
form.value.dispatchIsUpwardJudgment = '0'; //
form.value.dispatchIsUpwardJudgment = 0; //
}
};
//
@ -632,38 +632,27 @@ const categoriesduce = id => {
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType)
.then(res => {
.then(async res => {
console.log(res, '字典');
if (res.data.code == 200) {
if (res.data.data.length) {
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
value: Number(item.dictKey),
label: item.dictValue,
id: item.id,
});
});
}
}
//
if (dictionaryType == 'price_yes_no') {
Leftoverparts.value = { ...Distinguishcategories.value }; //
Distributionfee.value = { ...Distinguishcategories.value }; //
Operatingfee.value = { ...Distinguishcategories.value }; ///
upstairs.value = { ...Distinguishcategories.value }; //
Numberlayers.value = { ...Distinguishcategories.value }; //
Translationfee.value = { ...Distinguishcategories.value }; //
Surchargefee.value = { ...Distinguishcategories.value }; //
Minimumbilling.value = { ...Distinguishcategories.value }; //
Upwardjudgment.value = { ...Distinguishcategories.value }; //
}
//
if (dictionaryType == 'dispatch_pricing_type') {
Commercialcial.value = []; //
res.data.data.forEach(res => {
let data = {
title: res.dictValue, //
id: res.dictKey, //ID
id: Number(res.dictKey), //ID
state: false, //
Storageloading: false, //
sequence: [
@ -683,6 +672,184 @@ function updateDictionary(targetArray, dictionaryType) {
});
});
}
//
if (dictionaryType == 'price_yes_no') {
Leftoverparts.value = { ...Distinguishcategories.value }; //
Distributionfee.value = { ...Distinguishcategories.value }; //
Operatingfee.value = { ...Distinguishcategories.value }; ///
upstairs.value = { ...Distinguishcategories.value }; //
Numberlayers.value = { ...Distinguishcategories.value }; //
Translationfee.value = { ...Distinguishcategories.value }; //
Surchargefee.value = { ...Distinguishcategories.value }; //
Minimumbilling.value = { ...Distinguishcategories.value }; //
Upwardjudgment.value = { ...Distinguishcategories.value }; //
}
//
if (props.templateData.request) {
let request = props.templateData.request;
form.value = await deepClone(request);
form.value.dispatchPricingType = request.dispatchPricingType
? request.dispatchPricingType.split(',').map(Number)
: []; //
ServiceList.value.forEach(dataItem => {
if (form.value.dispatchPricingType.includes(dataItem.value)) {
dataItem.check = true;
}
});
if (request.dispatchIsByCategory) {
categoriesState.value = true; //
console.log(categoriesState.value, '是否区分品类');
}
//
WarehousebillingmodeTitle.value = Warehousebillingmode.value.find(
res => res.value == form.value.dispatchServiceType
).label;
StateDelivery.value = true; //
//
Commercialcial.value.forEach(dataItem => {
// dataItemid1, 2, 3 dispatchPricingTypeid
if (
[1, 2, 3].includes(dataItem.id) &&
form.value.dispatchPricingType.includes(dataItem.id)
) {
dataItem.state = true;
} else {
// statefalse
// dataItem.state = false;
}
});
//
if (request.dispatchPieceCategory) {
let piece = Commercialcial.value.find(res => res.id == 1);
piece.sequence = [];
request.dispatchPieceCategorys.forEach((res, index) => {
console.log(piece, '按件显示');
piece.sequence.push({
Additionalcategories: [
{
label: res.name,
value: res.id,
},
],
StateName: 'storage',
Warehousecategory: res.id,
id: index + 1,
plus: true,
reduce: !index ? false : true,
});
});
}
//
if (request.dispatchWeightCategory) {
let piece = Commercialcial.value.find(res => res.id == 2);
piece.sequence = [];
request.dispatchWeightCategorys.forEach((res, index) => {
console.log(piece, '按件显示');
piece.sequence.push({
Additionalcategories: [
{
label: res.name,
value: res.id,
},
],
StateName: 'storage',
Warehousecategory: res.id,
id: index + 1,
plus: true,
reduce: !index ? false : true,
});
});
}
//
if (request.dispatchCubeCategory) {
let piece = Commercialcial.value.find(res => res.id == 3);
piece.sequence = [];
request.dispatchCubeCategorys.forEach((res, index) => {
console.log(piece, '按件显示');
piece.sequence.push({
Additionalcategories: [
{
label: res.name,
value: res.id,
},
],
StateName: 'storage',
Warehousecategory: res.id,
id: index + 1,
plus: true,
reduce: !index ? false : true,
});
});
}
//
if (request.dispatchSubjoinCategory) {
AdditionalcategoriesList.value = [];
console.log('执行1');
request.dispatchSubjoinCategorys.forEach((res, index) => {
console.log('执行2');
AdditionalcategoriesList.value.push({
Additionalcategories: [
{
label: res.name,
value: res.id,
},
],
StateName: 'additional',
Warehousecategory: res.id,
id: index + 1,
plus: true,
reduce: !index ? false : true,
});
});
}
// function updateSequence(requestCategorys, commercialId, stateName) {
// let piece = Commercialcial.value.find(res => res.id == commercialId);
// if (!piece) return; //
// piece.sequence = []; // sequence
// requestCategorys.forEach((res, index) => {
// piece.sequence.push({
// Additionalcategories: [{
// label: res.name,
// value: res.id,
// }],
// StateName: stateName,
// Warehousecategory: res.id,
// id: index + 1,
// plus: true,
// reduce: !index ? false : true,
// });
// console.log(piece, `${stateName}`); //
// });
// }
// //
// if (request.dispatchPieceCategory) {
// updateSequence(request.dispatchPieceCategorys, 1, "storage");
// }
// //
// if (request.dispatchWeightCategory) {
// updateSequence(request.dispatchWeightCategorys, 2, "storage");
// }
// //
// if (request.dispatchCubeCategory) {
// updateSequence(request.dispatchCubeCategorys, 3, "storage");
// }
// //
// if (request.dispatchSubjoinCategory) {
// AdditionalcategoriesList.value = []; //
// updateSequence(request.dispatchSubjoinCategorys, 0, "additional");
// }
}
})
.catch(() => {})
.finally(() => {});
@ -694,8 +861,7 @@ const categoriesSearchfocus = item => {
};
//
const SurchargeChange = val => {
if (val == 1) {
SurchargeState.value = true;
if (val) {
AdditionalcategoriesList.value = [
{
id: 1,
@ -706,8 +872,6 @@ const SurchargeChange = val => {
Additionalcategories: [],
},
];
} else {
SurchargeState.value = false;
}
};
//
@ -747,12 +911,10 @@ const onLoad = () => {
};
onLoad();
//
const handleSubmit = async() => {
const handleSubmit = async () => {
await emit('request-data'); //
console.log(props, 'props');
if (!props.templateData.TemplateName) {
ElMessage({
message: '请输入模板名称',
@ -772,16 +934,14 @@ const handleSubmit = async() => {
form.value.brandId = props.templateData.brand; //ID
}
if(!form.value.dispatchServiceType){
if (!form.value.dispatchServiceType) {
ElMessage({
message: '请选择配送服务类型',
type: 'warning',
});
return;
}
if(!form.value.dispatchPricingType.length){
if (!form.value.dispatchPricingType.length) {
ElMessage({
message: '请选择配送计费模式',
type: 'warning',
@ -789,7 +949,7 @@ const handleSubmit = async() => {
return;
}
form.value.serviceType=props.templateData.ServiceType.join(',');//
form.value.serviceType = props.templateData.ServiceType.join(','); //
console.log(form.value, '初始表单');
console.log(Commercialcial.value, 'Commercialcial');
//
@ -810,30 +970,32 @@ const handleSubmit = async() => {
return true; //
}
Submit[submitField] = item.sequence.map(res => res.Warehousecategory).join(','); //
console.log(Submit[submitField], '123');
return false; //
}
//
console.log(categoriesState.value, 'categoriesState.value');
if (categoriesState.value) {
for (const res of form.value.dispatchPricingType) {
let shouldReturn = false;
switch (res) {
case '1':
case 1:
shouldReturn = checkAndProcessServiceType(
'1',
1,
'请填写完整按件处理',
'dispatchPieceCategory'
);
break;
case '2':
case 2:
shouldReturn = checkAndProcessServiceType(
'2',
2,
'请填写完整按重量处理',
'dispatchWeightCategory'
);
break;
case '3':
case 3:
shouldReturn = checkAndProcessServiceType(
'3',
3,
'请填写完整按方处理',
'dispatchCubeCategory'
);
@ -845,49 +1007,47 @@ const handleSubmit = async() => {
}
}
//
if (SurchargeState.value) {
if (form.value.dispatchIsCategorySubjoin) {
Submit.dispatchSubjoinCategory = AdditionalcategoriesList.value
.map(res => res.Warehousecategory)
.join(','); //
}
console.log(Submit, '要提交的数据');
if(props.templateData.code){
if (props.templateData.code || $route.query.id) {
console.log('走编辑接口');
//
let data={
let data = {
id: props.templateData.code, //ID
checkType:'4',
...Submit,
}
$_putpriceTemplate(data).then(res=>{
console.log(res,'提交成功后返回值');
checkType: 4, //
};
$_putpriceTemplate(data).then(res => {
console.log(res, '提交成功后返回值');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
})
});
}
})
}else{
});
} else {
//
let data={
...Submit
}
console.log('走新增接口');
$_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);//
}
})
let data = {
...Submit,
};
console.log('走新增接口');
$_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); //
}
});
}
};
</script>
@ -935,13 +1095,13 @@ const handleSubmit = async() => {
.el_Storage {
margin-bottom: 30px;
.el_Cselect {
margin-left: 10px;
}
.el_table_span {
font-size: 16px;
font-weight: 500;
display: inline-block;
width: 160px;
margin-bottom: 10px;
}
.Storage-cont {
/* 禁止双击选中文本 */
@ -950,23 +1110,55 @@ const handleSubmit = async() => {
-ms-user-select: none; /* IE 10+/Edge */
user-select: none; /* Standard syntax */
display: flex;
flex-direction: column;
width: 382px;
.el_Storagecategory {
border: 1px solid #ccc;
.el_table_span {
display: flex;
width: 100%;
background-color: #ebeef5;
padding: 4px;
padding: 0 4px;
border-bottom: 1px solid #ccc;
box-sizing: border-box;
}
.el_table_border {
height: 30px;
margin-bottom: 0;
align-items: center;
}
.el_table_id {
width: 62px;
width: 55px;
font-weight: 600;
color: #606266;
border-right: 1px solid #ccc;
margin-right: 4px;
font-weight: 500;
height: 100%;
display: flex;
align-items: center;
}
.el_table_title {
font-weight: 600;
color: #606266;
font-weight: 500;
border-right: 1px solid #ccc;
display: flex;
width: 207px;
height: 100%;
align-items: center;
}
.el_table_operation {
color: #606266;
width: 134px;
display: flex;
font-weight: 500;
justify-content: flex-start;
height: 100%;
align-items: center;
span {
padding-left: 3px;
}
}
.el_table_td {
display: flex;
@ -975,40 +1167,39 @@ const handleSubmit = async() => {
border-bottom: 1px solid #ccc;
position: relative;
.el_table_operation {
width: 70px;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
position: absolute;
right: -80px;
right: 0px;
border-left: 1px solid #ccc;
padding: 0 3px;
width: 110px;
.el_table_operation_span_a,
.el_table_operation_span_b {
font-size: 20px;
font-weight: bold;
width: 40%;
border: 2px solid #f00;
font-size: 14px;
color: #f00;
height: 70%;
border-radius: 6px;
display: block;
line-height: 23px;
text-align: center;
cursor: pointer;
display: flex;
align-items: center;
}
.el_table_operation_span_b {
border: 2px solid #0d83b7;
color: #0d83b7;
}
.el_table_operation_span_a:hover {
background-color: #f00;
color: #ccc;
}
.el_table_operation_span_b:hover {
background-color: #0d83b7;
color: #ccc;
}
// .el_table_operation_span_a:hover {
// background-color: #f00;
// color: #ccc;
// }
// .el_table_operation_span_b:hover {
// background-color: #0d83b7;
// color: #ccc;
// }
}
}
.el_table_idNumber {
@ -1039,10 +1230,15 @@ const handleSubmit = async() => {
width: 100%;
max-height: 500px;
box-sizing: border-box;
border: 1px solid #ccc;
padding: 4px;
border-radius: 4px;
display: flex;
overflow-y: scroll;
.el_margin {
margin-left: 20px;
}
.el_margin:first-child {
margin-left: 0;
}
}
}
.el_Surchargebilling {
@ -1068,4 +1264,35 @@ const handleSubmit = async() => {
margin-left: 70px;
}
}
.el_flex {
display: flex;
flex-direction: column;
align-items: flex-start;
.el_Cselect {
margin-left: 0;
}
}
.el_row_f1 {
display: flex;
}
.el_fx {
background-color: #f6f6f6;
padding: 0 6px;
border-radius: 4px;
}
.el_fj{
display: flex;
.el_Storage{
width: 280px;
display: flex;
flex-direction: column;
width:400px;
margin-right: 2%;
.el_Cselect{
background-color:#f6f6f6;
width:100%;
padding: 0 4px;
}
}
}
</style>

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

@ -1,7 +1,8 @@
<template>
<div class="content_max">
<div>
<!-- 仓储计费类型 -->
<div class="el_Storage">
<div class="el_Storage el_flex">
<span class="el_table_span">仓储计费类型</span>
<el-select
class="el_Cselect"
@ -39,6 +40,7 @@
/>
</el-select>
</div>
</div>
<!-- 计算基准 -->
<div class="el_Storage">
<span class="el_table_span">计算基准</span>
@ -258,7 +260,9 @@ import { getDictionaryBiz } from '@/api/system/dict'; //字典
import { $_priceTemplate, $_basicdataBrande,$_putpriceTemplate } from '@/api/financialsector/index'; //
import { ElMessage } from 'element-plus';
import { postFindCategoryInfo } from '@/api/distribution/CreateOrder.js';
import { deepClone } from '@/utils/util';
const SelectOpin = ref(null); //
const $route = useRoute(); //
// ()
const categoriesDisplay = ref(false); ///
const SurchargeDisplay = ref(false); //(/)
@ -312,12 +316,12 @@ console.log(props, '来自父页面参数');
const Storageloading = ref(false); //
const goriesloading = ref(false); //
const form = ref({
warehouseCalculationBasis: '1', //
warehouseIsByCategory: '0', //
warehouseIsManageFee: '0', //
warehouseIsOperateFee: '0', ///
warehouseIsSortFee: '0', //
warehouseIsCategorySubjoin: '0', //
warehouseCalculationBasis: 1, //
warehouseIsByCategory: 0, //
warehouseIsManageFee: 0, //
warehouseIsOperateFee: 0, ///
warehouseIsSortFee: 0, //
warehouseIsCategorySubjoin: 0, //
}); //
//
const Storagebillingtype = ref([]);
@ -481,8 +485,46 @@ const onLoad = async() => {
updateDictionary(Distinguishcategories.value, 'price_yes_no'); //
updateDictionary(Surchargepricingunit.value, 'warehouse_pricing_unit'); //
if(props.templateData.request){
let request =props.templateData.request
//
form.value=props.templateData.request
form.value= await deepClone(request)
if(request.warehouseIsByCategory==1){
categoriesDisplay.value=true;//
console.log(StoragecategoryList.value,'品类');
StoragecategoryList.value=[]
request.warehousePieceCategorys.forEach((res,index)=>{
StoragecategoryList.value.push({
id:index+1,
plus:true,
reduce:!index?false:true,
StateName:'storage',//
warehousePieceCategory:res.id,
Additionalcategories:[{
label:res.name,
value:res.id,
}]
})
})
}
if(request.warehouseIsCategorySubjoin==1){
AdditionalcategoriesList.value=[]
console.log(AdditionalcategoriesList.value,'附加品类');
SurchargeDisplay.value=true;//
request.warehouseSubjoinCategorys.forEach((res,index)=>{
AdditionalcategoriesList.value.push({
id:index+1,
plus:true,
reduce:!index?false:true,
StateName:'additional',//
warehousePieceCategory:res.id,
Additionalcategories:[{
label:res.name,
value:res.id,
}]
})
})
}
}
@ -554,7 +596,7 @@ const Submit = async () => {
console.log(form.value, '要提交的参数');
if(props.templateData.code){
if(props.templateData.code || $route.query.id){
//
let data={
id:props.templateData.code,//
@ -747,4 +789,10 @@ const AdditionalDisplayChange = val => {
display: flex;
justify-content: flex-end;
}
.el_flex{
display:flex;
.el_Cselect{
margin-left: 0;
}
}
</style>

4
src/views/reportforms/DeliveryCustomers.vue

@ -402,12 +402,12 @@ const searchReset=()=>{
//
const sizeChange = val => {
details.page.pageSize = val;
getrain()
getrain(queryCarn.value)
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain()
getrain(queryCarn.value)
};
//
const searchChangeS = () => {

4
src/views/reportforms/DeliveryDetails.vue

@ -426,12 +426,12 @@ const searchChange = () => {
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
getrain(queryCarn.value);
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
getrain(queryCarn.value);
};
//
const searchChangeS = () => {

4
src/views/reportforms/DeliveryTrainNumber.vue

@ -402,12 +402,12 @@ const Toptiem = val => {
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
getrain(queryCarn.value);
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
getrain(queryCarn.value);
};
//
const searchChangeS = () => {

4
src/views/reportforms/Inventory.vue

@ -391,12 +391,12 @@ const searchChange = () => {
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
getrain(queryCarn.value);
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
getrain(queryCarn.value);
};
//
const searchChangeS = () => {

4
src/views/reportforms/InventoryOutbound.vue

@ -424,12 +424,12 @@
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
getrain(queryCarn.value);
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
getrain(queryCarn.value);
};
//
const searchChangeS = () => {

4
src/views/reportforms/InventoryReceipt.vue

@ -428,12 +428,12 @@ const searchChange = () => {
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
getrain(queryCarn.value);
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
getrain(queryCarn.value);
};
//
const searchChangeS = () => {

4
src/views/reportforms/Selfpickupreport.vue

@ -366,12 +366,12 @@ const searchChange = () => {
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
getrain(queryCarn.value);
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
getrain(queryCarn.value);
};
//
const searchChangeS = () => {

4
src/views/reportforms/Selfpickuptask.vue

@ -408,12 +408,12 @@
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
getrain(queryCarn.value);
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
getrain(queryCarn.value);
};
//
const searchChangeS = () => {

87
src/views/reportforms/Stockordertable.vue

@ -8,8 +8,8 @@
<el-form :inline="true" :model="TopQuery" class="el-fr-d">
<!-- 查询按钮 -->
<!-- <div class="el_top_left">
<el-form-item label="提货时间">
<div class="el_top_left">
<el-form-item label="入库时间">
<el-date-picker
v-model="TopQuery.time"
type="datetimerange"
@ -21,7 +21,8 @@
@change="Toptiem"
/>
</el-form-item>
<el-form-item label="仓库">
<el-select
multiple
@ -39,44 +40,35 @@
</el-select>
</el-form-item>
<el-form-item label="收货单位">
<el-form-item label="商场名称">
<el-input
v-model="TopQuery.consigneeUnitRange"
v-model="TopQuery.mallNameRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个收货单位请用逗号隔开"
placeholder="多个商场名称请用逗号隔开"
/>
</el-form-item>
<el-form-item label="收货人">
<el-input
v-model="TopQuery.consigneeUserRange"
v-model="TopQuery.consigneePersonRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个收货人请用逗号隔开"
/>
</el-form-item>
<el-form-item label="提货人">
<el-form-item label=" 运单号">
<el-input
v-model="TopQuery.billUserRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个提货人请用逗号隔开"
placeholder="多个 运单号请用逗号隔开"
/>
</el-form-item>
<el-form-item label="运单收货人">
<el-input
v-model="TopQuery.consigneeNameRange"
style="width: 240px"
:rows="1"
type="textarea"
placeholder="多个运单收货人请用逗号隔开"
/>
</el-form-item>
</div>-->
</div>
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
@ -160,7 +152,7 @@
import { columnList } from '@/option/reportforms/Stockordertable.js';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { processRowProperty, setNodeHeight } from '@/utils/util';
import { $_getMyWarehouseList,$_getasks,$_exportTasks } from '@/api/reportforms/index.js';
import { $_getMyWarehouseList,$_getasks,$_exportTasks ,$_getstockOrder } from '@/api/reportforms/index.js';
import { ElMessageBox } from 'element-plus';
import { downloadXls } from '@/utils/util';
import functions from '@/utils/functions.js';
@ -354,38 +346,21 @@
//
const searchChange = () => {
//
// if (TopQuery.value.time) {
// queryCarn.value.startCreatedTime = dayjs(TopQuery.value.time[0]).format('YYYY-MM-DD HH:mm:ss'); //
// queryCarn.value.endCreatedTime = dayjs(TopQuery.value.time[1]).format('YYYY-MM-DD HH:mm:ss'); //
// }else{
// delete queryCarn.value.startCreatedTime
// delete queryCarn.value.endCreatedTime
// }
// //
// if (TopQuery.value.warehouseRange.length) {
// queryCarn.value.warehouseRange = TopQuery.value.warehouseRange.join(',');
// }else{
// delete queryCarn.value.warehouseRange;
// }
// //
// if(TopQuery.value.consigneeUnitRange){
// queryCarn.value.consigneeUnitRange = TopQuery.value.consigneeUnitRange
// }else{
// delete queryCarn.value.consigneeUnitRange;
// }
// //
// if(TopQuery.value.consigneeUserRange){
// queryCarn.value.consigneeUserRange = TopQuery.value.consigneeUserRange
// }else{
// delete queryCarn.value.consigneeUserRange;
// }
// //
// if(TopQuery.value.billUserRange){
// queryCarn.value.billUserRange = TopQuery.value.billUserRange
// }else{
// delete queryCarn.value.billUserRange;
// }
//
queryCarn.value.startWarehouseEntryTime = TopQuery.value.time ? dayjs(TopQuery.value.time[0]).format('YYYY-MM-DD HH:mm:ss') : undefined;
queryCarn.value.endWarehouseEntryTime = TopQuery.value.time ? dayjs(TopQuery.value.time[1]).format('YYYY-MM-DD HH:mm:ss') : undefined;
//
queryCarn.value.warehouseRange = TopQuery.value.warehouseRange.length ? TopQuery.value.warehouseRange.join(',') : undefined;
//
queryCarn.value.mallNameRange = TopQuery.value.mallNameRange || undefined;
//
queryCarn.value.billUserRange = TopQuery.value.billUserRange || undefined;
//
queryCarn.value.consigneePersonRange = TopQuery.value.consigneePersonRange || undefined;
// //
// if(TopQuery.value.consigneeNameRange){
// queryCarn.value.consigneeNameRange = TopQuery.value.consigneeNameRange
@ -403,12 +378,12 @@
//
const sizeChange = val => {
details.page.pageSize = val;
getrain();
getrain(queryCarn.value);
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
getrain();
getrain(queryCarn.value);
};
//
const searchChangeS = () => {
@ -416,7 +391,7 @@
// item.values = '';
// });
details.search = false; //
getrain();
getrain(queryCarn.value);
};
//
const searchHide = () => {
@ -469,7 +444,7 @@
};
details.loadingObj.list = true;
$_getasks(data)
$_getstockOrder(data)
.then(res => {
console.log(res, '当前参数');
details.page.total = res.data.data.total;

Loading…
Cancel
Save