diff --git a/src/api/basic/workPlace/SysWorkplaceQueue.js b/src/api/basic/workPlace/SysWorkplaceQueue.js index cca7f1ae..8ee03e97 100644 --- a/src/api/basic/workPlace/SysWorkplaceQueue.js +++ b/src/api/basic/workPlace/SysWorkplaceQueue.js @@ -53,6 +53,17 @@ export function getByCode(query) { }); } +export function printQueueLabel(query) { + return axios({ + url: "/udiwms/sysWorkplaceQueue/label/print", + method: "post", + data: query, + headers: {'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'}, + responseType: 'arraybuffer', //一定要设置响应类型,否则页面会是空白pdf + }); +} + + diff --git a/src/views/basic/workplace/addPlaidDialog.vue b/src/views/basic/workplace/addPlaidDialog.vue index 098dba8d..682e161b 100644 --- a/src/views/basic/workplace/addPlaidDialog.vue +++ b/src/views/basic/workplace/addPlaidDialog.vue @@ -6,7 +6,7 @@ > - + - + {{ workPlaceClasss[scope.row.workPlaceClass] }} + + + {{ queueStatusMap[scope.row.queueStatus] }} + + @@ -147,7 +152,7 @@ - + 工位标签 + 分格标签 + - 工位分格 + 货位 @@ -275,7 +286,7 @@ > 新增工位分格 + >新增货位 @@ -291,8 +302,8 @@ > - - + + @@ -381,8 +392,8 @@ - - + + @@ -441,6 +452,16 @@ + + + + + + + + + + @@ -577,7 +598,7 @@ import { addTree, deleteTree, getTree, updateTree } from '@/api/basic/collectPoi import { delCollect, getBindCollectList } from '@/api/basic/collectPoint/cargowWorkplaceManage' import addCollectWorkplace from './addCollectWorkplace' import addPlaidDialog from './addPlaidDialog' -import { deleteQueue, getQueueList } from '@/api/basic/workPlace/SysWorkplaceQueue' +import { deleteQueue, getQueueList, printQueueLabel } from '@/api/basic/workPlace/SysWorkplaceQueue' export default { components: { addCollectWorkplace, addPlaidDialog }, @@ -664,6 +685,10 @@ export default { 1: '采集工位', 2: '上货工位' }, + queueStatusMap:{ + 0 : '关闭', + 1 : '启用', + }, orderFinishVerifys: { 0: '完全赋码', 1: '部分赋码', @@ -727,8 +752,8 @@ export default { collectWorks: [], plaidName: 'add', plaids: { - 'add': '新增工位分格', - 'edit': '编辑工位分格' + 'add': '新增货位', + 'edit': '编辑货位' }, fromName: 'add', fromMap: { @@ -752,6 +777,7 @@ export default { chargeUser: null, constituencies: null, invRemindNumber: 0, + queueStatus:0, remake: null }, fromDeptOptions: [], @@ -891,27 +917,7 @@ export default { } }) }, - removeQueue(row) { - this.$confirm('此操作将永久删除该工位分格, 是否继续?', '提示', { - confirmButtonText: '确定', - cancelButtonText: '取消', - type: 'warning' - }).then(() => { - deleteQueue(row).then(res => { - if (res.code == 20000) { - this.$message.success('删除成功') - this.getQueueList() - } else { - this.$message.error(res.message) - } - }) - }) - }, - updateQueue(row) { - this.queueData = row - this.plaidName = 'edit' - this.plaidDialogVisible = true - }, + onCollectList() { if (this.rowData.workplaceId == null) { return this.$message.error('请选择上货工位') @@ -975,13 +981,7 @@ export default { // this.collectWorks = this.collectWorkPlaceCodes.concat(this.collectBusTypeCodes); }, - addPlaid() { - if (this.rowData.workplaceId == null) { - return this.$message.error('请选择上货工位') - } - this.queueData = null - this.plaidDialogVisible = true - }, + removeCollect(row) { this.$confirm('此操作将永久删除该采集工位, 是否继续?', '提示', { confirmButtonText: '确定', @@ -1012,10 +1012,7 @@ export default { this.getCargowBindCollectList() this.chooseCollectDialogVisible = false }, - closePlaidDialog() { - this.plaidDialogVisible = false - this.getQueueList() - }, + printLabel(row) { row.labelId = 6 printWorkLabel(row).then((response) => { @@ -1060,6 +1057,7 @@ export default { chargeUser: null, constituencies: '1001', invRemindNumber: 0, + queueStatus:0, remake: null } if (this.groupData != null) { @@ -1205,6 +1203,7 @@ export default { }, edit(row) { this.formData = row + this.formData.queueStatus = Number(row.queueStatus) // this.formData.invCode = String(row.invCode) if (row.chargeUser == 0) { this.formData.chargeUser = null @@ -1224,6 +1223,56 @@ export default { }) this.getTree() this.addWorkplaceDialogVisible = true + }, + //工位分格 + addPlaid() { + if (this.rowData.workplaceId == null) { + return this.$message.error('请选择上货工位') + } + this.queueData = null + this.plaidDialogVisible = true + }, + removeQueue(row) { + this.$confirm('此操作将永久删除该工位分格, 是否继续?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + deleteQueue(row).then(res => { + if (res.code == 20000) { + this.$message.success('删除成功') + this.getQueueList() + } else { + this.$message.error(res.message) + } + }) + }) + }, + updateQueue(row) { + this.queueData = row + this.plaidName = 'edit' + this.plaidDialogVisible = true + }, + closePlaidDialog() { + this.plaidDialogVisible = false + this.getQueueList() + }, + printQueue(row) { + row.labelId = 8 + printQueueLabel(row).then(res => { + const binaryData = [] + binaryData.push(res) + let url = window.URL.createObjectURL( + new Blob(binaryData, { type: 'application/pdf' }) + ) + this.loading = false + window.open(url) + }).catch(() => { + this.loading = false + }) + }, + printQueueList(row){ + } }, created() { diff --git a/src/views/collect/DealOrder.vue b/src/views/collect/DealOrder.vue index 0f42cc4f..597ca3e1 100644 --- a/src/views/collect/DealOrder.vue +++ b/src/views/collect/DealOrder.vue @@ -73,7 +73,8 @@ + v-if="this.formDataVisible != null && this.formDataVisible.scanType == 1" + > @@ -131,7 +132,8 @@ v-for="item in invList" :key="item.name" :label="item.name" - :value="item.code"> + :value="item.code" + > {{ item.name }} @@ -146,7 +148,8 @@ remote reserve-keyword @change="changeCorp" - placeholder="请选择收货方" clearable style="width: 90%"> + placeholder="请选择收货方" clearable style="width: 90%" + > ALT+29 + @click="addGs" + >ALT+29 + :description="result" + > + :description="warnResult" + > + :description="errResult" + > @@ -353,7 +360,8 @@ + @click="selectBusType(info.documentTypeCode)" + > {{ info.busName }} @@ -369,7 +377,8 @@ {{ info.remark }} 开始作业 + @click="selectBusType(info.documentTypeCode)" + >开始作业 @@ -387,17 +396,17 @@
{{ info.busName }}
{{ info.remark }}