Browse Source

修复干线部分bug

dev-xx
qb 5 months ago
parent
commit
1fe7c954e4
  1. 29
      src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue
  2. 8
      src/components/TripartiteTransferPrintTemplate/TripartiteTransferPrintTemplate.vue
  3. 8
      src/option/distribution/VehicleArrivalManagement.js
  4. 8
      src/option/distribution/VehicleStowage.js
  5. 6
      src/views/distribution/artery/TripartiteTransfer.vue
  6. 6
      src/views/distribution/artery/VehicleArrivalManagement.vue
  7. 6
      src/views/distribution/artery/VehicleStowage.vue
  8. 4
      src/views/distribution/inventory/BookingNote.vue
  9. 24
      src/views/waybill/WaybillOrderList.vue

29
src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue

@ -129,8 +129,11 @@
<th style="border-bottom: 1px solid #000; border-left: 1px solid #000">小计</th>
</tr>
<!-- -->
<template v-if="renderInfo.mainList">
<tr v-for="(value, index) in renderInfo.mainList" style="word-break: break-all">
<td style="border-bottom: 1px solid #000; border-left: 1px solid #000">{{ index + 1 }}</td>
<td style="border-bottom: 1px solid #000; border-left: 1px solid #000">
{{ index + 1 }}
</td>
<!-- 发货单位 -->
<td
v-if="value.mergeColumnIndex"
@ -220,12 +223,22 @@
{{ value.unloadNum }}
</td>
<!-- 卸车网点 -->
<td style="border-bottom: 1px solid #000; border-left: 1px solid #000" contenteditable></td>
<td
style="border-bottom: 1px solid #000; border-left: 1px solid #000"
contenteditable
></td>
<!-- 卸车时间 -->
<td style="border-bottom: 1px solid #000; border-left: 1px solid #000" contenteditable></td>
<td
style="border-bottom: 1px solid #000; border-left: 1px solid #000"
contenteditable
></td>
<!-- 异常备注 -->
<td style="border-bottom: 1px solid #000; border-left: 1px solid #000" contenteditable></td>
<td
style="border-bottom: 1px solid #000; border-left: 1px solid #000"
contenteditable
></td>
</tr>
</template>
<!-- 合计行 -->
<tr>
@ -296,8 +309,6 @@ renderInfo.value.endWarehouseNames = renderInfo.value.endWarehouseNames.split(',
let mergeStartIndex = 0;
//
let comparisonValue = '';
renderInfo.value.mainList[0].mergeColumnIndex = 1;
const handleMerge = (startIndex: number, endIndex: number, data: {}) => {
for (let index = startIndex; index < endIndex; index++) {
const value = data[index];
@ -312,8 +323,10 @@ const handleMerge = (startIndex: number, endIndex: number, data: {}) => {
for (let index = 0; index < renderInfo.value.mainList.length; index++) {
const element = renderInfo.value.mainList[index];
if (index === 0) comparisonValue = element.waybillNo;
if (index === 0) {
comparisonValue = element.waybillNo;
element.mergeColumnIndex = 1;
}
totalNum.value += element.smallTotal || 0;
totalUnLoadNum.value += element.unloadNum || 0;
totalPlanNum.value += element.planNum || 0;

8
src/components/TripartiteTransferPrintTemplate/TripartiteTransferPrintTemplate.vue

@ -58,6 +58,7 @@
</thead>
<tbody>
<!-- -->
<template v-if="renderInfo.mainList">
<tr v-for="(value, index) in renderInfo.mainList" style="word-break: break-all">
<td>{{ index + 1 }}</td>
<!-- 发货单位 -->
@ -102,6 +103,7 @@
<!-- 异常备注 -->
<td contenteditable></td>
</tr>
</template>
<!-- 合计行 -->
<tr>
@ -157,7 +159,6 @@ const isShowTotal = ref(false);
let mergeStartIndex = 0;
//
let comparisonValue = '';
renderInfo.value.mainList[0].mergeColumnIndex = 1;
const handleMerge = (startIndex: number, endIndex: number, data: {}) => {
for (let index = startIndex; index < endIndex; index++) {
@ -174,7 +175,10 @@ renderInfo.value.endWarehouseNames = renderInfo.value.endWarehouseNames.split(',
for (let index = 0; index < renderInfo.value.mainList.length; index++) {
const element = renderInfo.value.mainList[index];
if (index === 0) comparisonValue = element.waybillNo;
if (index === 0) {
comparisonValue = element.waybillNo;
element.mergeColumnIndex = 1;
}
totalNum.value += element.smallTotal || 0;
totalUnLoadNum.value += element.unloadNum || 0;

8
src/option/distribution/VehicleArrivalManagement.js

@ -145,7 +145,7 @@ export const columnList = [
{
prop: 'driverName',
label: '主驾司机',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],
@ -165,7 +165,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '车牌号',
type: 1,
type: 2,
values: '',
width: '150',
checkarr: [],
@ -175,7 +175,7 @@ export const columnList = [
{
prop: 'startWarehouseName',
label: '起点仓库',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],
@ -185,7 +185,7 @@ export const columnList = [
{
prop: 'endWarehouseNames',
label: '终点仓库',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],

8
src/option/distribution/VehicleStowage.js

@ -145,7 +145,7 @@ export const columnList = [
{
prop: 'driverName',
label: '主驾司机',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],
@ -165,7 +165,7 @@ export const columnList = [
{
prop: 'carNumber',
label: '车牌号',
type: 1,
type: 2,
values: '',
width: '150',
checkarr: [],
@ -175,7 +175,7 @@ export const columnList = [
{
prop: 'startWarehouseName',
label: '起点仓库',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],
@ -185,7 +185,7 @@ export const columnList = [
{
prop: 'endWarehouseNames',
label: '终点仓库',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],

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

@ -499,6 +499,12 @@
></edittablehead>
</template>
<script lang="ts">
export default {
name: '/distribution/artery/TripartiteTransfer',
};
</script>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import functions from '@/utils/functions';

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

@ -639,6 +639,12 @@
></edittablehead>
</template>
<script lang="ts">
export default {
name: '/distribution/artery/VehicleArrivalManagement',
};
</script>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import dayjs from 'dayjs';

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

@ -599,6 +599,12 @@
></edittablehead>
</template>
<script lang="ts">
export default {
name: '/distribution/artery/VehicleStowage',
};
</script>
<script setup lang="ts">
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import functions from '@/utils/functions';

4
src/views/distribution/inventory/BookingNote.vue

@ -685,7 +685,7 @@
<el-form-item label-width="fit-content" label="支付方式:">
<el-select disabled v-model="query.payType" :teleported="false">
<el-option
v-for="item in details.info.payTypeList"
v-for="item in query.payTypeList"
:key="item.dictValue"
:label="item.dictValue"
:value="item.dictKey"
@ -696,7 +696,7 @@
<el-form-item label="付款方式:" label-width="fit-content" prop="payWay">
<el-select disabled v-model="query.payWay" :teleported="false">
<el-option
v-for="item in details.info.payWayList"
v-for="item in query.payWayList"
:key="item.dictValue"
:label="item.dictValue"
:value="item.dictKey"

24
src/views/waybill/WaybillOrderList.vue

@ -109,13 +109,14 @@
@click="handleBatchRecover"
> </el-button
>
<!-- 导出 -->
<el-button
type="primary"
icon="Download"
v-if="permissionObj.WaybillOrderList_export"
@click="handleExport"
> </el-button
>
>
</el-button>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
@ -127,6 +128,7 @@
<!-- 列表模块 -->
<tablecmt
ref="tableNodeRef"
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@ -416,6 +418,8 @@ const details = reactive<any>({
warehouseOption: [],
});
const tableNodeRef = ref();
const { search, query, shortcuts, data, loadingObj, selectionList, drawerShow, page, popUpShow } =
toRefs(details);
@ -455,14 +459,6 @@ const permissionObj = reactive({
}),
});
onMounted(() => {
const timer = setTimeout(() => {
details.listNode = document.querySelector('.maboxhi');
details.listNode.style.transition = 'all .5s ease-out';
clearTimeout(timer);
}, 100);
});
/** 请求页面数据 */
const onLoad = async (page?: any, params = {}) => {
try {
@ -559,10 +555,10 @@ const showdrawer = (_flag?: boolean) => {
};
/** 是否开启搜索区 */
const searchHide = () => {
const searchHide = async () => {
details.search = !details.search;
setNodeHeight(details.listNode, '', true);
await nextTick();
setNodeHeight(tableNodeRef.value.$el, '', true);
};
/** 表格表头输入框搜索 */
@ -982,6 +978,8 @@ const handleExport = () => {
delete submitData.createTime;
delete submitData.documentMakingTime;
if (details.selectionList.length > 0)
submitData.ids = details.selectionList.map(val => val.id).join(',');
const res = await postExport(submitData);

Loading…
Cancel
Save