Browse Source

新增录单开单名称字数限制,新增对账单字段

dev-xx
qb 5 months ago
parent
commit
4108da903e
  1. 1
      src/components/SelectBox/SelectBox.vue
  2. 8
      src/components/tablecmt/tablecmt.vue
  3. 94
      src/option/finance/ReconciliationDepositSlip.js
  4. 6
      src/views/distribution/artery/abnormalList.vue

1
src/components/SelectBox/SelectBox.vue

@ -9,6 +9,7 @@
@change="handleChange" @change="handleChange"
:clearable="props.clearable !== false" :clearable="props.clearable !== false"
:disabled="props.disabled === true" :disabled="props.disabled === true"
:maxlength="30"
></el-input> ></el-input>
<div <div

8
src/components/tablecmt/tablecmt.vue

@ -736,10 +736,10 @@ const handleWidthChange = (newWidth, oldWidth, column, event) => {
console.log('props.columnListName :>> ', props.columnListName); console.log('props.columnListName :>> ', props.columnListName);
postSaveTableSeting({ // postSaveTableSeting({
tableKey: $route.path + props.columnListName, // tableKey: $route.path + props.columnListName,
tableSetCongig: JSON.stringify(props.columnList), // tableSetCongig: JSON.stringify(props.columnList),
}); // });
}; };
defineExpose({ handleCheckSelect, handleClearSelect }); defineExpose({ handleCheckSelect, handleClearSelect });

94
src/option/finance/ReconciliationDepositSlip.js

@ -114,18 +114,18 @@ export const columnList = [
width: '150', width: '150',
checkarr: [ checkarr: [
{ {
label:'商配', label: '商配',
value:1 value: 1,
}, },
{ {
label:'市配', label: '市配',
value:2 value: 2,
}, },
{ {
label:'自提', label: '自提',
value:3 value: 3,
}, },
], ],
fixed: false, fixed: false,
sortable: true, sortable: true,
head: false, head: false,
@ -152,6 +152,28 @@ export const columnList = [
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'goodsNum',
label: '品类件数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'goodsPrice',
label: '品类单价',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{ {
prop: 'totalNum', prop: 'totalNum',
label: '总件数', label: '总件数',
@ -726,18 +748,18 @@ export const columnListB = [
width: '150', width: '150',
checkarr: [ checkarr: [
{ {
label:'商配1', label: '商配1',
value:1 value: 1,
}, },
{ {
label:'市配', label: '市配',
value:2 value: 2,
}, },
{ {
label:'自提', label: '自提',
value:3 value: 3,
}, },
], ],
fixed: false, fixed: false,
sortable: true, sortable: true,
head: false, head: false,
@ -764,6 +786,28 @@ export const columnListB = [
sortable: true, sortable: true,
head: false, head: false,
}, },
{
prop: 'goodsNum',
label: '品类件数',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'goodsPrice',
label: '品类单价',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{ {
prop: 'totalNum', prop: 'totalNum',
label: '总件数', label: '总件数',
@ -1291,4 +1335,4 @@ export const confirmColumnList = [
head: false, head: false,
isshowSummary: true, isshowSummary: true,
}, },
]; ];

6
src/views/distribution/artery/abnormalList.vue

@ -159,7 +159,9 @@
:align-center="true" :align-center="true"
v-model="details.popUpShow.abnormalVisited" v-model="details.popUpShow.abnormalVisited"
> >
<div class="flex-c-c fwb">包条码 {{ details.abnormalInfo.orderPackageCode }}</div> <div class="flex-c-c fwb" v-if="!details.isBatch">
包条码 {{ details.abnormalInfo.orderPackageCode }}
</div>
<div class="flex-c-c mt20"> <div class="flex-c-c mt20">
<!-- 系统无编码 --> <!-- 系统无编码 -->
<template v-if="Number(details.abnormalInfo.abnormalType) === 1"> <template v-if="Number(details.abnormalInfo.abnormalType) === 1">
@ -560,7 +562,7 @@ const handleAbnormal = (dealType, title) => {
const handleBatchAbnormarl = () => { const handleBatchAbnormarl = () => {
if (details.selectionList.length === 0) return ElMessage.warning('请选择需要处理的异常数据'); if (details.selectionList.length === 0) return ElMessage.warning('请选择需要处理的异常数据');
if (details.selectionList.length > 30) return ElMessage.warning('最大数暂时支持30条') if (details.selectionList.length > 30) return ElMessage.warning('最大数暂时支持30条');
const _abnormalType = details.selectionList[0].abnormalType; const _abnormalType = details.selectionList[0].abnormalType;

Loading…
Cancel
Save