|
|
|
@ -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({ |
|
|
|
|