Browse Source

修改在库订单查询零担二维码

dev-xx
qb 5 months ago
parent
commit
6c096e9089
  1. 4
      src/option/distribution/zeroAdditionalRecording.js
  2. 77
      src/views/distribution/inventory/delivery/distributionStockArticle.vue
  3. 141
      src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue
  4. 143
      src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue
  5. 158
      src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue
  6. 29
      src/views/distribution/inventory/delivery/distributionStockArticleWhole.vue

4
src/option/distribution/zeroAdditionalRecording.js

@ -30,7 +30,7 @@ export const oldColumnList = [
label: '合同号',
type: 1,
values: '',
width: '300',
width: '200',
checkarr: [],
fixed: true,
sortable: true,
@ -211,7 +211,7 @@ export const newColumnList = [
label: '合同号',
type: 1,
values: '',
width: '300',
width: '200',
checkarr: [],
fixed: true,
sortable: true,

77
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -42,35 +42,50 @@
<div class="flex-c-sb">
<!-- 头部左侧按钮模块 -->
<div>
<el-button type="primary" icon="el-icon-edit" @click="handleStockList" v-if="handler"
>批量转库存品</el-button
>
<!-- 批量转库存品 -->
<el-button type="primary" icon="el-icon-edit" @click="handleStockList" v-if="handler">
批量转库存品
</el-button>
<!-- 修改客户信息 -->
<el-button
type="danger"
icon="el-icon-edit"
@click="handleCallDelivery('3')"
v-if="handler"
>修改客户信息</el-button
>
>修改客户信息
</el-button>
<!-- 修改服务类型 -->
<el-button
type="danger"
icon="el-icon-edit"
@click="handleCallDelivery('2')"
v-if="handler"
>修改服务类型</el-button
>
修改服务类型
</el-button>
<!-- 修改收货单位 -->
<el-button
type="danger"
icon="el-icon-edit"
@click="Modifyreceivingunit"
v-if="permissionList.Modifyreceivingunit"
>修改收货单位</el-button
>
>修改收货单位
</el-button>
<!-- 批量查看二维码 -->
<el-button type="primary" icon="Printer" @click="handleBatchPrinter">批量打印</el-button>
<!-- 导出 -->
<el-button type="danger" icon="Download" @click="handleExport" plain> </el-button>
<el-button type="primary" icon="el-icon-plus" @click="handlebill" v-if="!handler"
>创建提货单</el-button
>
<!-- 创建提货单 -->
<el-button type="primary" icon="el-icon-plus" @click="handlebill" v-if="!handler">
创建提货单
</el-button>
<el-button
type="danger"
icon="el-icon-delete"
@ -142,9 +157,7 @@
</template>
<template v-if="slotProps.scope.column.label === '未入库数量'">
<el-text class="el_textBtn" @click="InformationViewing(slotProps.scope.row)">
{{
slotProps.scope.row.notReceived
}}
{{ slotProps.scope.row.notReceived }}
</el-text>
</template>
<template v-else-if="slotProps.scope.column.label === '是否齐套'">
@ -416,8 +429,8 @@
</avue-form>
</el-dialog>
<MyPrint v-model="popUpShow.printVisited" :html="html" type="titlePrint" :title="'配送单'">
</MyPrint>
<!-- 打印 -->
<MyPrint v-model="popUpShow.printVisited" :html="html" type="titlePrint"> </MyPrint>
</div>
<!-- 零担拆单 -->
<el-dialog
@ -934,8 +947,8 @@ export default {
methods: {
//
InformationViewing(row) {
if(!row.notReceived || Number(row.isZero)) {
return
if (!row.notReceived || Number(row.isZero)) {
return;
}
this.$router.push({
path: '/distribution/inventory/delivery/Unstoreddetails',
@ -2000,6 +2013,34 @@ export default {
this.loadingObj.pageLoading = false;
}
},
/** 批量查看二维码 */
async handleBatchPrinter() {
try {
if (this.selectionList.length === 0) return ElMessage.warning('请勾选需要打印的零担订单');
let _ids = '';
for (let i = 0; i < this.selectionList.length; i++) {
const val = this.selectionList[i];
_ids += i === this.selectionList.length - 1 ? val.id : val.id + ',';
if (Number(val.isZero) === 1) continue;
return ElMessage.warning('仅支持零担订单的批量查看二维码');
}
this.loadingObj.pageLoading = true;
const res = await postShowOrderCode({ ids: _ids });
const { code, data } = res.data;
if (code !== 200) return;
this.html = this.getHtmls(data.dataList, data.templateHtml);
this.popUpShow.printVisited = true;
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loadingObj.pageLoading = false;
}
},
handleGoLogs({ row }) {
this.$router.push({
path: '/distribution/inventory/delivery/orderLogs',

141
src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue

@ -39,22 +39,35 @@
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-if="handler"
>创建异常</el-button
> -->
<!-- 修改客户信息 -->
<el-button type="danger" icon="Edit" @click="handleCallDelivery('3')" v-if="handler"
>修改客户信息</el-button
>
>修改客户信息
</el-button>
<!-- 修改运单收货人 -->
<el-button type="danger" icon="Edit" @click="Modifywaybillrecipient"
>修改运单收货人</el-button
>
>修改运单收货人
</el-button>
<!-- 修改收货单位 -->
<el-button
type="danger"
icon="el-icon-edit"
@click="Modifyreceivingunit"
v-if="permissionList.Modifyreceivingunit"
>修改收货单位</el-button
>
<el-button type="danger" icon="Edit" @click="handleCallDelivery('2')" v-if="handler"
>修改服务类型</el-button
>
修改收货单位
</el-button>
<!-- 修改服务类型 -->
<el-button type="danger" icon="Edit" @click="handleCallDelivery('2')" v-if="handler">
修改服务类型
</el-button>
<!-- 批量查看二维码 -->
<el-button type="primary" icon="Printer" @click="handleBatchPrinter">批量打印</el-button>
<el-button type="danger" icon="Download" @click="handleExport" plain> </el-button>
</div>
@ -98,9 +111,7 @@
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '未入库数量'">
<el-text class="el_textBtn" @click="InformationViewing(slotProps.scope.row)">
{{
slotProps.scope.row.notReceived
}}
{{ slotProps.scope.row.notReceived }}
</el-text>
</template>
<template v-if="slotProps.scope.column.label === '货位信息'">
@ -146,24 +157,25 @@
</template>
</template>
</tablecmt>
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
<!-- 通知提货 -->
<el-dialog v-model="dialogFormVisible" title="通知提货">
<el-form :model="formCall">
<el-form-item label="顾客姓名" :label-width="formLabelWidth">
@ -193,6 +205,8 @@
</span>
</template>
</el-dialog>
<!-- 修改服务类型 -->
<el-dialog v-model="dialogFormService" title="修改服务类型">
<el-form :model="formService" :rules="serveRules" ref="formServiceRef">
<el-form-item label="服务类型" :label-width="formLabelWidth" prop="typeService">
@ -227,6 +241,8 @@
</span>
</template>
</el-dialog>
<!-- 修改客户信息 -->
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<el-form :model="formCustomer" :rules="rules" ref="formCustomerRef">
<el-form-item label="姓名" :label-width="formLabelWidth" prop="name">
@ -252,6 +268,8 @@
</span>
</template>
</el-dialog>
<!-- 修改运单收货人 -->
<el-dialog v-model="waybillrecipient" title="修改运单收货人">
<el-form
v-loading="loadingwaybillrecipient"
@ -290,6 +308,7 @@
</span>
</template>
</el-dialog>
<!-- 表单模块 -->
<el-dialog
:title="title"
@ -408,8 +427,8 @@
</el-dialog>
</div>
<MyPrint v-model="popUpShow.printVisited" :html="html" type="titlePrint" :title="'配送单'">
</MyPrint>
<!-- 打印 -->
<MyPrint v-model="popUpShow.printVisited" :html="html" type="titlePrint"> </MyPrint>
</basic-container>
<edittablehead
@closce="showdrawer"
@ -441,7 +460,13 @@ import option from '@/option/distribution/distributionStockArticle';
import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import dayjs from 'dayjs';
import { downloadXls, setNodeHeight, getObjType, handleClearTableQuery } from '@/utils/util';
import {
downloadXls,
setNodeHeight,
getObjType,
handleClearTableQuery,
handleSelectQuery,
} from '@/utils/util';
import { columnList } from '@/option/distribution/distributionStockArticleSelf';
import { deepClone, hanleTextLineFeed } from '@/utils/util.js';
import { ElMessage, ElMessageBox } from 'element-plus';
@ -630,25 +655,7 @@ export default {
* @param {*} row
*/
selectsc(index, row) {
if (row.prop === 'freezeStatusName') {
this.query['freezeStatus'] = index;
} else if (row.prop === 'completeSetName') {
this.query['completeSet'] = index;
} else if (row.prop === 'reservationStatusName') {
this.query['reservationStatus'] = index;
} else if (row.prop === 'groundingStatusName') {
this.query['groundingStatus'] = index;
} else if (row.prop === 'stockupStatusName') {
this.query['stockupStatus'] = index;
} else if (row.prop === 'orderStatusName') {
this.query['orderStatus'] = index;
} else if (row.prop === 'typeServerName') {
this.query['typeService'] = index;
} else if (row.prop === 'orderReceiveStatusName') {
this.query['orderReceiveStatus'] = index;
} else {
this.query[row.prop] = index;
}
handleSelectQuery(index, row, this.query);
this.onLoad(this.page);
},
timesc(index, row) {
@ -1050,8 +1057,8 @@ export default {
this.onLoad(this.page);
},
InformationViewing(row) {
if(!row.notReceived || Number(row.isZero)) {
return
if (!row.notReceived || Number(row.isZero)) {
return;
}
this.$router.push({
path: '/distribution/inventory/delivery/Unstoreddetails',
@ -1314,6 +1321,34 @@ export default {
this.loadingObj.pageLoading = false;
}
},
/** 批量查看二维码 */
async handleBatchPrinter() {
try {
if (this.selectionList.length === 0) return ElMessage.warning('请勾选需要打印的零担订单');
let _ids = '';
for (let i = 0; i < this.selectionList.length; i++) {
const val = this.selectionList[i];
_ids += i === this.selectionList.length - 1 ? val.id : val.id + ',';
if (Number(val.isZero) === 1) continue;
return ElMessage.warning('仅支持零担订单的批量查看二维码');
}
this.loadingObj.pageLoading = true;
const res = await postShowOrderCode({ ids: _ids });
const { code, data } = res.data;
if (code !== 200) return;
this.html = this.getHtmls(data.dataList, data.templateHtml);
this.popUpShow.printVisited = true;
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loadingObj.pageLoading = false;
}
},
/** 查看日志 */
handleGoLogs({ row }) {
this.$router.push({

143
src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue

@ -40,48 +40,68 @@
<!-- <el-button type="danger" icon="el-icon-edit" @click="handleMoke" v-if="handler"
>转预约单</el-button
> -->
<!-- 批量转库存品 -->
<el-button type="primary" icon="el-icon-edit" @click="handleStockList" v-if="handler"
>批量转库存品</el-button
>
>批量转库存品
</el-button>
<!-- 修改客户信息 -->
<el-button
type="danger"
icon="el-icon-edit"
@click="handleCallDelivery('3')"
v-if="handler"
>修改客户信息</el-button
>
修改客户信息
</el-button>
<!-- 修改收货单位 -->
<el-button
type="danger"
icon="el-icon-edit"
@click="Modifyreceivingunit"
v-if="permissionList.Modifyreceivingunit"
>修改收货单位</el-button
>
修改收货单位
</el-button>
<!-- 修改服务类型 -->
<el-button
type="danger"
icon="el-icon-edit"
@click="handleCallDelivery('2')"
v-if="handler"
>修改服务类型</el-button
>
修改服务类型
</el-button>
<el-button type="primary" icon="el-icon-plus" @click="handlebill" v-if="!handler"
>创建提货单</el-button
>
<!-- 创建提货单 -->
<el-button type="primary" icon="el-icon-plus" @click="handlebill" v-if="!handler">
创建提货单
</el-button>
<!-- 再次通知 -->
<el-button
type="danger"
icon="el-icon-delete"
@click="handleCallDelivery('1')"
v-if="!handler"
>再次通知</el-button
>
>再次通知
</el-button>
<!-- 通知提货 -->
<el-button
type="primary"
icon="el-icon-plus"
@click="handleCallDelivery('1')"
v-if="!handler"
>通知提货</el-button
>
>通知提货
</el-button>
<!-- 批量查看二维码 -->
<el-button type="primary" icon="Printer" @click="handleBatchPrinter">批量打印</el-button>
<!-- 导出 -->
<el-button type="danger" icon="Download" @click="handleExport" plain> </el-button>
<!-- <el-button type="danger" icon="el-icon-plus" v-if = "handler">转配送</el-button>-->
</div>
@ -127,9 +147,7 @@
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '未入库数量'">
<el-text class="el_textBtn" @click="InformationViewing(slotProps.scope.row)">
{{
slotProps.scope.row.notReceived
}}
{{ slotProps.scope.row.notReceived }}
</el-text>
</template>
<template v-if="slotProps.scope.column.label === '货位信息'">
@ -176,24 +194,24 @@
</template>
</tablecmt>
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
<!-- 通知提货 -->
<el-dialog v-model="dialogFormVisible" title="通知提货">
<el-form :model="formCall">
<el-form-item label="顾客姓名" :label-width="formLabelWidth">
@ -223,6 +241,8 @@
</span>
</template>
</el-dialog>
<!-- 修改服务类型 -->
<el-dialog v-model="dialogFormService" title="修改服务类型">
<el-form :model="formService" :rules="serveRules" ref="formServiceRef">
<el-form-item label="服务类型" :label-width="formLabelWidth" prop="typeService">
@ -257,6 +277,8 @@
</span>
</template>
</el-dialog>
<!-- 修改客户信息 -->
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<el-form :model="formCustomer" :rules="rules" ref="formCustomerRef">
<el-form-item label="姓名" :label-width="formLabelWidth" prop="name">
@ -282,6 +304,7 @@
</span>
</template>
</el-dialog>
<!-- 表单模块 -->
<el-dialog
:title="title"
@ -400,6 +423,7 @@
</el-dialog>
</div>
<!-- 打印 -->
<MyPrint v-model="popUpShow.printVisited" :html="html" type="titlePrint"> </MyPrint>
</basic-container>
<edittablehead
@ -437,6 +461,7 @@ import {
downloadXls,
getObjType,
handleClearTableQuery,
handleSelectQuery,
} from '@/utils/util.js';
const _newCol = deepClone(columnList);
@ -601,25 +626,7 @@ export default {
console.log(index, row);
},
selectsc(index, row) {
if (row.prop === 'freezeStatusName') {
this.query['freezeStatus'] = index;
} else if (row.prop === 'completeSetName') {
this.query['completeSet'] = index;
} else if (row.prop === 'reservationStatusName') {
this.query['reservationStatus'] = index;
} else if (row.prop === 'groundingStatusName') {
this.query['groundingStatus'] = index;
} else if (row.prop === 'stockupStatusName') {
this.query['stockupStatus'] = index;
} else if (row.prop === 'orderStatusName') {
this.query['orderStatus'] = index;
} else if (row.prop === 'typeServerName') {
this.query['typeService'] = index;
} else if (row.prop === 'orderReceiveStatusName') {
this.query['orderReceiveStatus'] = index;
} else {
this.query[row.prop] = index;
}
handleSelectQuery(index, row, this.query);
this.onLoad(this.page);
},
timesc(index, row) {
@ -922,8 +929,8 @@ export default {
this.dialogFormCustomerOwn = true;
},
InformationViewing(row) {
if(!row.notReceived || Number(row.isZero)) {
return
if (!row.notReceived || Number(row.isZero)) {
return;
}
this.$router.push({
path: '/distribution/inventory/delivery/Unstoreddetails',
@ -1291,6 +1298,34 @@ export default {
this.loadingObj.pageLoading = false;
}
},
/** 批量查看二维码 */
async handleBatchPrinter() {
try {
if (this.selectionList.length === 0) return ElMessage.warning('请勾选需要打印的零担订单');
let _ids = '';
for (let i = 0; i < this.selectionList.length; i++) {
const val = this.selectionList[i];
_ids += i === this.selectionList.length - 1 ? val.id : val.id + ',';
if (Number(val.isZero) === 1) continue;
return ElMessage.warning('仅支持零担订单的批量查看二维码');
}
this.loadingObj.pageLoading = true;
const res = await postShowOrderCode({ ids: _ids });
const { code, data } = res.data;
if (code !== 200) return;
this.html = this.getHtmls(data.dataList, data.templateHtml);
this.popUpShow.printVisited = true;
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loadingObj.pageLoading = false;
}
},
/** 查看日志 */
handleGoLogs({ row }) {
this.$router.push({

158
src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue

@ -38,34 +38,54 @@
<!-- <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-if="handler"
>创建异常</el-button
> -->
<!-- 创建提货单 -->
<el-button type="primary" icon="el-icon-plus" @click="handlebill" v-if="handler"
>创建提货单</el-button
>
>创建提货单
</el-button>
<!-- 批量转库存品 -->
<el-button type="primary" icon="Position" @click="handleStockList" v-if="handler"
>批量转库存品</el-button
>
>批量转库存品
</el-button>
<!-- 修改客户信息 -->
<el-button type="danger" icon="Edit" @click="handleCallDelivery('3')" v-if="handler"
>修改客户信息</el-button
>
>修改客户信息
</el-button>
<!-- 修改运单收货人 -->
<el-button type="danger" icon="Edit" @click="Modifywaybillrecipient"
>修改运单收货人</el-button
>
>修改运单收货人
</el-button>
<!-- 修改收货单位 -->
<el-button
type="danger"
icon="el-icon-edit"
@click="Modifyreceivingunit"
v-if="permissionList.Modifyreceivingunit"
>修改收货单位</el-button
>
>修改收货单位
</el-button>
<!-- 修改服务类型 -->
<el-button type="danger" icon="Edit" @click="handleCallDelivery('2')" v-if="handler"
>修改服务类型</el-button
>
<el-button type="primary" icon="el-icon-plus" @click="handleCallDelivery('1', '1')"
>通知提货</el-button
>
<el-button type="danger" icon="Plus" @click="handleCallDelivery('1', '2')"
>再次通知</el-button
>
>修改服务类型
</el-button>
<!-- 通知提货 -->
<el-button type="primary" icon="el-icon-plus" @click="handleCallDelivery('1', '1')">
通知提货
</el-button>
<!-- 再次通知 -->
<el-button type="danger" icon="Plus" @click="handleCallDelivery('1', '2')">
再次通知
</el-button>
<!-- 批量查看二维码 -->
<el-button type="primary" icon="Printer" @click="handleBatchPrinter">批量打印</el-button>
<el-button type="danger" icon="Download" @click="handleExport" plain> </el-button>
</div>
@ -110,9 +130,7 @@
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '未入库数量'">
<el-text class="el_textBtn" @click="InformationViewing(slotProps.scope.row)">
{{
slotProps.scope.row.notReceived
}}
{{ slotProps.scope.row.notReceived }}
</el-text>
</template>
<template v-if="slotProps.scope.column.label === '货位信息'">
@ -158,24 +176,24 @@
</template>
</tablecmt>
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div>
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
<!-- 通知提货 -->
<el-dialog v-model="dialogFormVisible" title="通知提货">
<el-form :model="formCall">
<el-form-item label="顾客姓名" :label-width="formLabelWidth">
@ -252,6 +270,8 @@
</span>
</template>
</el-dialog>
<!-- 修改服务类型 -->
<el-dialog v-model="dialogFormService" title="修改服务类型">
<el-form :model="formService" :rules="serveRules" ref="formServiceRef">
<el-form-item label="服务类型" :label-width="formLabelWidth" prop="typeService">
@ -286,6 +306,8 @@
</span>
</template>
</el-dialog>
<!-- 修改客户信息 -->
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<el-form :model="formCustomer" :rules="rules" ref="formCustomerRef">
<el-form-item label="姓名" :label-width="formLabelWidth" prop="name">
@ -311,6 +333,7 @@
</span>
</template>
</el-dialog>
<!-- 表单模块 -->
<el-dialog
:title="title"
@ -428,6 +451,7 @@
</template>
</el-dialog>
<!-- 修改运单收货人 -->
<el-dialog v-model="waybillrecipient" title="修改运单收货人">
<el-form
v-loading="loadingwaybillrecipient"
@ -537,6 +561,8 @@
</span>
</template>
</el-dialog>-->
<!-- 打印 -->
<MyPrint v-model="popUpShow.printVisited" :html="html" type="titlePrint"> </MyPrint>
</div>
</basic-container>
@ -580,6 +606,7 @@ import {
deepClone,
getObjType,
handleClearTableQuery,
handleSelectQuery,
} from '@/utils/util';
import { columnList } from '@/option/distribution/distributionStockArticleSelf';
import { ElMessage, ElMessageBox } from 'element-plus';
@ -870,26 +897,7 @@ export default {
console.log(index, row);
},
selectsc(index, row) {
console.log(index, row);
if (row.prop === 'freezeStatusName') {
this.query['freezeStatus'] = index;
} else if (row.prop === 'completeSetName') {
this.query['completeSet'] = index;
} else if (row.prop === 'reservationStatusName') {
this.query['reservationStatus'] = index;
} else if (row.prop === 'groundingStatusName') {
this.query['groundingStatus'] = index;
} else if (row.prop === 'stockupStatusName') {
this.query['stockupStatus'] = index;
} else if (row.prop === 'orderStatusName') {
this.query['orderStatus'] = index;
} else if (row.prop === 'typeName') {
this.query['typeService'] = index;
} else if (row.prop === 'orderReceiveStatusName') {
this.query['orderReceiveStatus'] = index;
} else {
this.query[row.prop] = index;
}
handleSelectQuery(index, row, this.query);
this.onLoad(this.page);
},
timesc(index, row) {
@ -909,8 +917,8 @@ export default {
this.onLoad(this.page);
},
InformationViewing(row) {
if(!row.notReceived || Number(row.isZero)) {
return
if (!row.notReceived || Number(row.isZero)) {
return;
}
this.$router.push({
path: '/distribution/inventory/delivery/Unstoreddetails',
@ -1642,6 +1650,34 @@ export default {
this.loadingObj.pageLoading = false;
}
},
/** 批量查看二维码 */
async handleBatchPrinter() {
try {
if (this.selectionList.length === 0) return ElMessage.warning('请勾选需要打印的零担订单');
let _ids = '';
for (let i = 0; i < this.selectionList.length; i++) {
const val = this.selectionList[i];
_ids += i === this.selectionList.length - 1 ? val.id : val.id + ',';
if (Number(val.isZero) === 1) continue;
return ElMessage.warning('仅支持零担订单的批量查看二维码');
}
this.loadingObj.pageLoading = true;
const res = await postShowOrderCode({ ids: _ids });
const { code, data } = res.data;
if (code !== 200) return;
this.html = this.getHtmls(data.dataList, data.templateHtml);
this.popUpShow.printVisited = true;
} catch (error) {
console.log('error :>> ', error);
} finally {
this.loadingObj.pageLoading = false;
}
},
/** 查看日志 */
handleGoLogs({ row }) {
this.$router.push({

29
src/views/distribution/inventory/delivery/distributionStockArticleWhole.vue

@ -170,6 +170,8 @@
</el-pagination>
</div>
</el-row>
<!-- 通知提货 -->
<el-dialog v-model="dialogFormVisible" title="通知提货">
<el-form :model="formCall">
<el-form-item label="顾客姓名" :label-width="formLabelWidth">
@ -199,6 +201,8 @@
</span>
</template>
</el-dialog>
<!-- 修改服务类型 -->
<el-dialog v-model="dialogFormService" title="修改服务类型">
<el-form :model="formService">
<el-form-item label="服务类型" :label-width="formLabelWidth">
@ -233,6 +237,8 @@
</span>
</template>
</el-dialog>
<!-- 修改客户信息 -->
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<el-form :model="formCustomer">
<el-form-item label="姓名" :label-width="formLabelWidth">
@ -403,7 +409,7 @@ import { mapGetters } from 'vuex';
import { getDictionaryBiz } from '@/api/system/dict';
import dayjs from 'dayjs';
import { getUser } from '@/api/system/user';
import { handleClearTableQuery } from '@/utils/util';
import { handleClearTableQuery, handleSelectQuery } from '@/utils/util';
export default {
data() {
@ -974,26 +980,7 @@ export default {
console.log(index, row);
},
selectsc(index, row) {
console.log(index, row);
if (row.prop === 'freezeStatusName') {
this.query['freezeStatus'] = index;
} else if (row.prop === 'completeSetName') {
this.query['completeSet'] = index;
} else if (row.prop === 'reservationStatusName') {
this.query['reservationStatus'] = index;
} else if (row.prop === 'groundingStatusName') {
this.query['groundingStatus'] = index;
} else if (row.prop === 'stockupStatusName') {
this.query['stockupStatus'] = index;
} else if (row.prop === 'orderStatusName') {
this.query['orderStatus'] = index;
} else if (row.prop === 'typeServerName') {
this.query['typeService'] = index;
} else if (row.prop === 'orderReceiveStatusName') {
this.query['orderReceiveStatus'] = index;
} else {
this.query[row.prop] = index;
}
handleSelectQuery(index, row, this.query);
this.onLoad(this.page);
},
timesc(index, row) {

Loading…
Cancel
Save