|
|
|
@ -136,6 +136,11 @@
|
|
|
|
|
<span>{{ workPlaceClasss[scope.row.workPlaceClass] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="货位上架" prop="queueStatus" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ queueStatusMap[scope.row.queueStatus] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<!--<el-table-column label="所属组别" prop="categoryName" width="90"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据类型编号" prop="busTypeCode" width="100"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据类型名称" prop="busTypeName" width="100"></el-table-column>-->
|
|
|
|
@ -147,7 +152,7 @@
|
|
|
|
|
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remake" width="140"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="160">
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="240">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
@ -155,6 +160,12 @@
|
|
|
|
|
@click.native.stop="printLabel(scope.row)"
|
|
|
|
|
>工位标签
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="printQueueList(scope.row)"
|
|
|
|
|
>分格标签
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
@ -249,14 +260,14 @@
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane>
|
|
|
|
|
<!-- {{ workplaceName }}--->
|
|
|
|
|
<span slot="label">工位分格</span>
|
|
|
|
|
<span slot="label">货位</span>
|
|
|
|
|
<el-form :inline="true" :model="queueQuery" class="query-form" size="mini"
|
|
|
|
|
style="margin-bottom: 10px"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item class="query-form-item" label="名称/编号:">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queueQuery.key"
|
|
|
|
|
placeholder="请输入分格名称或分格编号"
|
|
|
|
|
placeholder="请输入货位名称或货位编号"
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -275,7 +286,7 @@
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="addPlaid"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
>新增工位分格
|
|
|
|
|
>新增货位
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<!--<el-button type="primary" @click="choosePlaid"-->
|
|
|
|
@ -291,8 +302,8 @@
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="index" label="序号"></el-table-column>
|
|
|
|
|
<!-- <el-table-column label="业务类型编码 " prop="documentTypeCode" width="100"></el-table-column>-->
|
|
|
|
|
<el-table-column label="格子名称" prop="name"></el-table-column>
|
|
|
|
|
<el-table-column label="格子编号 " prop="code"></el-table-column>
|
|
|
|
|
<el-table-column label="货位名称" prop="name"></el-table-column>
|
|
|
|
|
<el-table-column label="货位编号 " prop="code"></el-table-column>
|
|
|
|
|
<el-table-column label="备注" prop="remark"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -381,8 +392,8 @@
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="工位状态:" prop="workplaceStatus" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.workplaceStatus" style="width: 80%" placeholder="工位状态">
|
|
|
|
|
<el-option label="暂停" :value="0"></el-option>
|
|
|
|
|
<el-option label="启用" :value="1"></el-option>
|
|
|
|
|
<el-option label="暂停" :value=0></el-option>
|
|
|
|
|
<el-option label="启用" :value=1></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -441,6 +452,16 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="按货位上架:" prop="queueStatus" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.queueStatus" style="width: 80%" placeholder="货位上架">
|
|
|
|
|
<el-option label="关闭" :value="0"></el-option>
|
|
|
|
|
<el-option label="启用" :value="1"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
@ -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() {
|
|
|
|
|