|
|
|
@ -23,7 +23,8 @@
|
|
|
|
|
<div v-if="showSearch || item.isImport">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)"
|
|
|
|
|
class="query-form-item"
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id"
|
|
|
|
|
>
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="codeQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -34,11 +35,13 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)"
|
|
|
|
|
class="query-form-item"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
:label="item.columnDesc+`:`"
|
|
|
|
|
>
|
|
|
|
|
<el-select v-model="codeQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
|
clearable>
|
|
|
|
|
clearable
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="dict in item.lableRuleObj"
|
|
|
|
|
:key="dict.value"
|
|
|
|
@ -69,7 +72,8 @@
|
|
|
|
|
<!--</el-form-item>-->
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)"
|
|
|
|
|
class="query-form-item"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
:label="item.columnDesc+`:`"
|
|
|
|
|
>
|
|
|
|
|
<el-date-picker
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
v-model="actDateRange"
|
|
|
|
@ -83,7 +87,8 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)"
|
|
|
|
|
class="query-form-item"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
:label="item.columnDesc+`:`"
|
|
|
|
|
>
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="codeQuery[item.columnName]"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
@ -102,7 +107,7 @@
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">高级搜索</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="addBind"
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="addBind()"
|
|
|
|
|
>维护绑定关系
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
@ -127,7 +132,7 @@
|
|
|
|
|
<!--<el-table-column label="产品ID" prop="relId" show-overflow-tooltip width="160"></el-table-column>-->
|
|
|
|
|
<el-table-column label="产品标识" prop="nameCode" show-overflow-tooltip width="160"></el-table-column>
|
|
|
|
|
<el-table-column label="产品通用名" prop="cpmctymc" show-overflow-tooltip width="160"></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip width="160"></el-table-column>
|
|
|
|
|
<el-table-column label="规格" prop="ggxh" show-overflow-tooltip width="160"></el-table-column>
|
|
|
|
|
<el-table-column label="所属取货架编号" prop="freightCode" show-overflow-tooltip width="160"></el-table-column>
|
|
|
|
|
<el-table-column label="所属摆货层编号" prop="layerCode" show-overflow-tooltip width="160"></el-table-column>
|
|
|
|
|
<!--<el-table-column label="格数" prop="grid" show-overflow-tooltip width="160"></el-table-column>-->
|
|
|
|
@ -148,7 +153,7 @@
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="removeRelId(scope.row)"
|
|
|
|
|
@click.native.stop="selectBind()"
|
|
|
|
|
:disabled="scope.row.nameCode"
|
|
|
|
|
>绑定产品
|
|
|
|
|
</el-button>
|
|
|
|
@ -166,7 +171,6 @@
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="维护绑定关系"
|
|
|
|
|
:visible.sync="addBindVisible"
|
|
|
|
@ -177,7 +181,8 @@
|
|
|
|
|
append-to-body
|
|
|
|
|
>
|
|
|
|
|
<el-form :model="addBindData" ref="stockCompare" class="query-form"
|
|
|
|
|
size="mini" label-width="auto">
|
|
|
|
|
size="mini" label-width="auto"
|
|
|
|
|
>
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item prop="code" label="出货槽位编号:" class="query-form-item">
|
|
|
|
@ -198,10 +203,10 @@
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item prop="udiCode" label="" class="query-form-item">
|
|
|
|
|
<el-descriptions class="margin-top" title="" :column="3" border style="width: 80%">
|
|
|
|
|
<el-descriptions-item label="出货槽编号">{{sysWorkplaceQueue.code}}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="货架名称">{{sysWorkplaceQueue.name}}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="备注">{{sysWorkplaceQueue.remark}}</el-descriptions-item>
|
|
|
|
|
<el-descriptions class="margin-top" title="" :column="3" border style="width: 80%">
|
|
|
|
|
<el-descriptions-item label="出货槽编号">{{ sysWorkplaceQueue.code }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="货架名称">{{ sysWorkplaceQueue.name }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="备注">{{ sysWorkplaceQueue.remark }}</el-descriptions-item>
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -224,28 +229,50 @@
|
|
|
|
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item prop="udiCode" label="" class="query-form-item">
|
|
|
|
|
<el-descriptions class="margin-top" title="" :column="3" border style="width: 80%">
|
|
|
|
|
<el-descriptions-item label="产品标识">{{product.nameCode}}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="产品通用名">{{product.cpmctymc}}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="规格型号">{{product.ggxh}}</el-descriptions-item>
|
|
|
|
|
<el-descriptions class="margin-top" title="" :column="3" border style="width: 80%">
|
|
|
|
|
<el-descriptions-item label="产品标识">{{ product.nameCode }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="产品通用名">{{ product.cpmctymc }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item v-if="product.productsType === 2" label="包装规格">{{
|
|
|
|
|
product.bzgg
|
|
|
|
|
}}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item v-else label="规格型号">{{ product.ggxh }}</el-descriptions-item>
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<div style="text-align: right; margin-bottom: 10px;margin-top: 18px ;margin-right: 18px ;">
|
|
|
|
|
<div class="center-button">
|
|
|
|
|
<!--<div style="text-align: right; margin-bottom: 10px;margin-top: 18px ;margin-right: 18px ;">-->
|
|
|
|
|
<el-button @click="closeAddBindData">取消</el-button>
|
|
|
|
|
<el-button type="primary" @click="submitAddBindData">提交</el-button>
|
|
|
|
|
<!--</div>-->
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="绑定产品"
|
|
|
|
|
:visible.sync="selectBindVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="selectBindVisible"
|
|
|
|
|
width="65%"
|
|
|
|
|
append-to-body
|
|
|
|
|
>
|
|
|
|
|
<selectDrugDialog>
|
|
|
|
|
|
|
|
|
|
</selectDrugDialog>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import { isBlank } from '@/utils/strUtil'
|
|
|
|
|
import {
|
|
|
|
|
getQueueListPage,
|
|
|
|
|
getInfoByCode,
|
|
|
|
@ -254,28 +281,21 @@ import {
|
|
|
|
|
removeProduct
|
|
|
|
|
} from '@/api/basic/workPlace/SysWorkplaceQueue'
|
|
|
|
|
import { executeFuc, getHead } from '@/utils/customConfig'
|
|
|
|
|
import selectDrugDialog from "./selectDrugDialog"
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
|
site_id: "",
|
|
|
|
|
site_name: "",
|
|
|
|
|
describe: "",
|
|
|
|
|
ads: [],
|
|
|
|
|
};
|
|
|
|
|
site_id: '',
|
|
|
|
|
site_name: '',
|
|
|
|
|
describe: '',
|
|
|
|
|
ads: []
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "workplaceQueue",
|
|
|
|
|
name: 'workplaceQueue',
|
|
|
|
|
components:{selectDrugDialog},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
//页面配置
|
|
|
|
|
executeFuc(row, type, clickFuc, value) {
|
|
|
|
|
return executeFuc(this, row, type, clickFuc, value);
|
|
|
|
|
},
|
|
|
|
|
executeEval(row, expression, defaultRet) {
|
|
|
|
|
if (expression) {
|
|
|
|
|
return eval(expression);
|
|
|
|
|
}
|
|
|
|
|
return defaultRet;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
tableObj: [],
|
|
|
|
|
queryList: [],
|
|
|
|
|
tableHeader: [],
|
|
|
|
@ -289,24 +309,24 @@ export default {
|
|
|
|
|
index: null,
|
|
|
|
|
enableDept: false,
|
|
|
|
|
fromTypeMap: {
|
|
|
|
|
"1": "UDIMS平台",
|
|
|
|
|
"2": "网页新增",
|
|
|
|
|
"3": "pda即时校验",
|
|
|
|
|
"4": "pda未校验",
|
|
|
|
|
"5": "pc端扫码精灵",
|
|
|
|
|
"6": "流转自动补单",
|
|
|
|
|
"7": "UDI供应商平台",
|
|
|
|
|
"8": "平衡补录单据",
|
|
|
|
|
"10": "手动补单",
|
|
|
|
|
"11": "仓库盘点",
|
|
|
|
|
"12": "采购计划",
|
|
|
|
|
"13": "领用单据",
|
|
|
|
|
"14": "第三方系统单据",
|
|
|
|
|
'1': 'UDIMS平台',
|
|
|
|
|
'2': '网页新增',
|
|
|
|
|
'3': 'pda即时校验',
|
|
|
|
|
'4': 'pda未校验',
|
|
|
|
|
'5': 'pc端扫码精灵',
|
|
|
|
|
'6': '流转自动补单',
|
|
|
|
|
'7': 'UDI供应商平台',
|
|
|
|
|
'8': '平衡补录单据',
|
|
|
|
|
'10': '手动补单',
|
|
|
|
|
'11': '仓库盘点',
|
|
|
|
|
'12': '采购计划',
|
|
|
|
|
'13': '领用单据',
|
|
|
|
|
'14': '第三方系统单据'
|
|
|
|
|
},
|
|
|
|
|
deleteData: {
|
|
|
|
|
orderId: null,
|
|
|
|
|
orderId: null
|
|
|
|
|
},
|
|
|
|
|
addBindData:{
|
|
|
|
|
addBindData: {
|
|
|
|
|
id: null,
|
|
|
|
|
code: null,
|
|
|
|
|
relId: null,
|
|
|
|
@ -317,6 +337,7 @@ export default {
|
|
|
|
|
dialogTableVisible: false,
|
|
|
|
|
radio: 1,
|
|
|
|
|
addBindVisible: false,
|
|
|
|
|
selectBindVisible: false,
|
|
|
|
|
formLoading: false,
|
|
|
|
|
dialogVisible: false,
|
|
|
|
|
formData: formJson,
|
|
|
|
@ -327,33 +348,33 @@ export default {
|
|
|
|
|
pickerOptions: {
|
|
|
|
|
shortcuts: [
|
|
|
|
|
{
|
|
|
|
|
text: "最近一周",
|
|
|
|
|
text: '最近一周',
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
const end = new Date()
|
|
|
|
|
const start = new Date()
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7)
|
|
|
|
|
picker.$emit('pick', [start, end])
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "最近一个月",
|
|
|
|
|
text: '最近一个月',
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
const end = new Date()
|
|
|
|
|
const start = new Date()
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30)
|
|
|
|
|
picker.$emit('pick', [start, end])
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
text: "最近三个月",
|
|
|
|
|
text: '最近三个月',
|
|
|
|
|
onClick(picker) {
|
|
|
|
|
const end = new Date();
|
|
|
|
|
const start = new Date();
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
|
|
|
|
picker.$emit("pick", [start, end]);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
const end = new Date()
|
|
|
|
|
const start = new Date()
|
|
|
|
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90)
|
|
|
|
|
picker.$emit('pick', [start, end])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
codeQuery: {
|
|
|
|
|
scanCode: null,
|
|
|
|
@ -369,7 +390,7 @@ export default {
|
|
|
|
|
zczbhhzbapzbh: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
keyWords:""
|
|
|
|
|
keyWords: ''
|
|
|
|
|
},
|
|
|
|
|
codeTotal: 0,
|
|
|
|
|
codeDetailLoading: false,
|
|
|
|
@ -380,109 +401,118 @@ export default {
|
|
|
|
|
auditDateRange: [],
|
|
|
|
|
showSup: false,
|
|
|
|
|
statusMap: {
|
|
|
|
|
1: "在库",
|
|
|
|
|
2: "已使用",
|
|
|
|
|
3: "已退回",
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
1: '在库',
|
|
|
|
|
2: '已使用',
|
|
|
|
|
3: '已退回'
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {},
|
|
|
|
|
methods: {
|
|
|
|
|
//页面配置
|
|
|
|
|
executeFuc(row, type, clickFuc, value) {
|
|
|
|
|
return executeFuc(this, row, type, clickFuc, value)
|
|
|
|
|
},
|
|
|
|
|
executeEval(row, expression, defaultRet) {
|
|
|
|
|
if (expression) {
|
|
|
|
|
return eval(expression)
|
|
|
|
|
}
|
|
|
|
|
return defaultRet
|
|
|
|
|
},
|
|
|
|
|
onReset() {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "",
|
|
|
|
|
});
|
|
|
|
|
this.getList();
|
|
|
|
|
path: ''
|
|
|
|
|
})
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
onSubmit() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.loading = true
|
|
|
|
|
|
|
|
|
|
if (this.auditDateRange !== null) {
|
|
|
|
|
this.codeQuery.startAduditTime = this.auditDateRange[0];
|
|
|
|
|
this.codeQuery.endAduditTime = this.auditDateRange[1];
|
|
|
|
|
this.codeQuery.startAduditTime = this.auditDateRange[0]
|
|
|
|
|
this.codeQuery.endAduditTime = this.auditDateRange[1]
|
|
|
|
|
} else {
|
|
|
|
|
this.codeQuery.startAduditTime = null;
|
|
|
|
|
this.codeQuery.endAduditTime = null;
|
|
|
|
|
this.codeQuery.startAduditTime = null
|
|
|
|
|
this.codeQuery.endAduditTime = null
|
|
|
|
|
}
|
|
|
|
|
this.codeQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
this.codeQuery.page = 1
|
|
|
|
|
this.getList()
|
|
|
|
|
},
|
|
|
|
|
hideSearch() {
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
this.showSearch = !this.showSearch
|
|
|
|
|
},
|
|
|
|
|
getInputFocus(event) {
|
|
|
|
|
event.currentTarget.select();
|
|
|
|
|
event.currentTarget.select()
|
|
|
|
|
},
|
|
|
|
|
enterKey1(){
|
|
|
|
|
enterKey1() {
|
|
|
|
|
//1、后端验证货位是否存在 且 是否绑定 产品
|
|
|
|
|
if(isBlank(this.addBindData.code)){
|
|
|
|
|
return this.$message.error("出货槽位编码不可以为空")
|
|
|
|
|
if (isBlank(this.addBindData.code)) {
|
|
|
|
|
return this.$message.error('出货槽位编码不可以为空')
|
|
|
|
|
}
|
|
|
|
|
getInfoByCode({code:this.addBindData.code}).then(
|
|
|
|
|
getInfoByCode({ code: this.addBindData.code }).then(
|
|
|
|
|
(response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.sysWorkplaceQueue = response.data;
|
|
|
|
|
if (this.sysWorkplaceQueue.relId != null){
|
|
|
|
|
this.sysWorkplaceQueue = response.data
|
|
|
|
|
if (this.sysWorkplaceQueue.relId != null) {
|
|
|
|
|
//已绑定
|
|
|
|
|
this.$confirm("出货槽位编码已绑定产品, 是否继续?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
this.$confirm('出货槽位编码已绑定产品, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.product.nameCode = this.sysWorkplaceQueue.nameCode
|
|
|
|
|
this.product.ggxh = this.sysWorkplaceQueue.ggxh
|
|
|
|
|
this.product.cpmctymc = this.sysWorkplaceQueue.cpmctymc
|
|
|
|
|
this.product.ggxh = this.sysWorkplaceQueue.ggxh
|
|
|
|
|
this.product.cpmctymc = this.sysWorkplaceQueue.cpmctymc
|
|
|
|
|
|
|
|
|
|
this.addBindData.id = this.sysWorkplaceQueue.id
|
|
|
|
|
this.addBindData.codeFlag = true
|
|
|
|
|
this.addBindData.udiCodeFlag = true
|
|
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.inputRef2.focus(); // 设置焦点到第一个输入框
|
|
|
|
|
});
|
|
|
|
|
this.$refs.inputRef2.focus() // 设置焦点到第一个输入框
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
}else {
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
this.addBindData.id = this.sysWorkplaceQueue.id
|
|
|
|
|
this.addBindData.codeFlag = true
|
|
|
|
|
this.addBindData.udiCodeFlag = true
|
|
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.inputRef2.focus(); // 设置焦点到第一个输入框
|
|
|
|
|
});
|
|
|
|
|
this.$refs.inputRef2.focus() // 设置焦点到第一个输入框
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message)
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message)
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
enterKey2() {
|
|
|
|
|
if(isBlank(this.addBindData.udiCode)){
|
|
|
|
|
return this.$message.error("UDI码不可以为空")
|
|
|
|
|
if (isBlank(this.addBindData.udiCode)) {
|
|
|
|
|
return this.$message.error('UDI码不可以为空')
|
|
|
|
|
}
|
|
|
|
|
getProductByCode({udiCode:this.addBindData.udiCode}).then(
|
|
|
|
|
getProductByCode({ udiCode: this.addBindData.udiCode }).then(
|
|
|
|
|
(response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.product = response.data;
|
|
|
|
|
if (this.product.relId != null){
|
|
|
|
|
this.product = response.data
|
|
|
|
|
if (this.product.relId != null) {
|
|
|
|
|
//已绑定
|
|
|
|
|
this.$confirm("当前出货槽位编码将绑定绑定产品, 是否提交?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
this.$confirm('当前出货槽位编码将绑定绑定产品, 是否提交?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.addBindData.relId = this.product.relId
|
|
|
|
|
this.submitAddBindData()
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
}else {
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
@ -490,117 +520,130 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message)
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
submitAddBindData(){
|
|
|
|
|
submitAddBindData() {
|
|
|
|
|
if (this.addBindData.id == null || this.addBindData.code == null) {
|
|
|
|
|
return this.$message.error('请添加槽位')
|
|
|
|
|
}
|
|
|
|
|
if (this.addBindData.udiCode == null) {
|
|
|
|
|
return this.$message.error('请添加产品!')
|
|
|
|
|
}
|
|
|
|
|
this.addBindData.relId = this.product.relId
|
|
|
|
|
bind(this.addBindData).then(
|
|
|
|
|
(response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("绑定成功")
|
|
|
|
|
this.addBindData = {
|
|
|
|
|
this.$message.success('绑定成功')
|
|
|
|
|
this.addBindData = {
|
|
|
|
|
code: null,
|
|
|
|
|
codeFlag: false,
|
|
|
|
|
udiCode: null,
|
|
|
|
|
udiCodeFlag: false
|
|
|
|
|
}
|
|
|
|
|
this.sysWorkplaceQueue = {},
|
|
|
|
|
this.product = {},
|
|
|
|
|
this.sysWorkplaceQueue = {}
|
|
|
|
|
this.product = {}
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.inputRef1.focus(); // 设置焦点到第一个输入框
|
|
|
|
|
});
|
|
|
|
|
this.$refs.inputRef1.focus() // 设置焦点到第一个输入框
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message)
|
|
|
|
|
this.$refs.inputRef1.select();
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.inputRef1.focus() // 设置焦点到第一个输入框
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message)
|
|
|
|
|
this.$refs.inputRef1.select();
|
|
|
|
|
});
|
|
|
|
|
this.$refs.inputRef1.select()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
closeAddBindData() {
|
|
|
|
|
this.addBindVisible = false
|
|
|
|
|
this.getCodeDetailList()
|
|
|
|
|
},
|
|
|
|
|
enterKey() {
|
|
|
|
|
this.getOrderDetails()
|
|
|
|
|
},
|
|
|
|
|
getBusType() {
|
|
|
|
|
let query = {
|
|
|
|
|
code: this.filterQuery.invCode,
|
|
|
|
|
enabled: true,
|
|
|
|
|
};
|
|
|
|
|
enabled: true
|
|
|
|
|
}
|
|
|
|
|
getLocalJoinByUser(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
|
this.filterQuery.action = this.busTypes[0].action;
|
|
|
|
|
this.busTypes = response.data.list || []
|
|
|
|
|
this.filterQuery.action = this.busTypes[0].action
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleSelectionChange(val) {
|
|
|
|
|
this.currentRow = val;
|
|
|
|
|
this.getOrderDetails();
|
|
|
|
|
this.currentRow = val
|
|
|
|
|
this.getOrderDetails()
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getOrderDetails() {
|
|
|
|
|
this.codeQuery.page = 1;
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
this.codeQuery.page = 1
|
|
|
|
|
this.getCodeDetailList()
|
|
|
|
|
},
|
|
|
|
|
clearDetailList() {
|
|
|
|
|
this.codeDetailList = [];
|
|
|
|
|
this.codeTotal = 0;
|
|
|
|
|
this.codeDetailList = []
|
|
|
|
|
this.codeTotal = 0
|
|
|
|
|
},
|
|
|
|
|
//获取订单列表
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.loading = true
|
|
|
|
|
getSysWorkplaceLayerList(this.codeQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.loading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.list = response.data.list || []
|
|
|
|
|
this.total = response.data.total || 0
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.$message.error(response.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch((error) => {
|
|
|
|
|
this.$message.error(error.message)
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.list = []
|
|
|
|
|
this.total = 0
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
deleteOrders(data) {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.loading = true
|
|
|
|
|
let delQuery = {
|
|
|
|
|
billNo: data,
|
|
|
|
|
billNo: data
|
|
|
|
|
}
|
|
|
|
|
deleterPrein(delQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getList()
|
|
|
|
|
this.$message({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "删除成功!",
|
|
|
|
|
});
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: '删除成功!'
|
|
|
|
|
})
|
|
|
|
|
} else if (response.code == 520) {
|
|
|
|
|
this.$message.error("新增扫码单据列表已不存在该扫码单据!");
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$message.error('新增扫码单据列表已不存在该扫码单据!')
|
|
|
|
|
this.getList()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
deleteDialog(row) {
|
|
|
|
|
this.$confirm("此操作将永久删除该订单, 是否继续?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
this.$confirm('此操作将永久删除该订单, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.deleteOrders(row.billNo);
|
|
|
|
|
this.deleteOrders(row.billNo)
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
onCodeReset() {
|
|
|
|
|
this.codeQuery = {
|
|
|
|
@ -618,91 +661,118 @@ export default {
|
|
|
|
|
zczbhhzbapzbh: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
keyWords:""
|
|
|
|
|
};
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
keyWords: ''
|
|
|
|
|
}
|
|
|
|
|
this.getCodeDetailList()
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
keyup_submit(event) {
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
event.target.select();
|
|
|
|
|
this.filterQuery.page = 1
|
|
|
|
|
this.getList()
|
|
|
|
|
event.target.select()
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onCodeSubmit() {
|
|
|
|
|
this.codeQuery.page = 1;
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
this.codeQuery.page = 1
|
|
|
|
|
this.getCodeDetailList()
|
|
|
|
|
},
|
|
|
|
|
addBind() {
|
|
|
|
|
this.addBindData = {
|
|
|
|
|
this.addBindData = {
|
|
|
|
|
code: null,
|
|
|
|
|
codeFlag: false,
|
|
|
|
|
udiCode: null,
|
|
|
|
|
udiCodeFlag: false
|
|
|
|
|
codeFlag: false,
|
|
|
|
|
udiCode: null,
|
|
|
|
|
udiCodeFlag: false
|
|
|
|
|
}
|
|
|
|
|
this.sysWorkplaceQueue = {}
|
|
|
|
|
this.product = {}
|
|
|
|
|
this.addBindVisible = true
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.inputRef1.focus(); // 设置焦点到第一个输入框
|
|
|
|
|
});
|
|
|
|
|
this.$refs.inputRef1.focus() // 设置焦点到第一个输入框
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// else {
|
|
|
|
|
// this.addBindData = {
|
|
|
|
|
// code: null,
|
|
|
|
|
// codeFlag: true,
|
|
|
|
|
// udiCode: null,
|
|
|
|
|
// udiCodeFlag: true
|
|
|
|
|
// }
|
|
|
|
|
// this.bindType = 2
|
|
|
|
|
// this.titleName = "2"
|
|
|
|
|
// this.sysWorkplaceQueue.code = row.code
|
|
|
|
|
// this.sysWorkplaceQueue.remark = row.remark
|
|
|
|
|
// this.addBindData.code = row.code
|
|
|
|
|
// this.addBindData.id = row.id
|
|
|
|
|
// this.product = {}
|
|
|
|
|
// this.addBindVisible = true
|
|
|
|
|
// this.$nextTick(() => {
|
|
|
|
|
// this.$refs.inputRef2.focus();
|
|
|
|
|
// });
|
|
|
|
|
//
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
selectBind(){
|
|
|
|
|
this.selectBindVisible = true
|
|
|
|
|
},
|
|
|
|
|
getCodeDetailList() {
|
|
|
|
|
this.codeDetailLoading = true;
|
|
|
|
|
this.codeDetailLoading = true
|
|
|
|
|
getQueueListPage(this.codeQuery).then((res) => {
|
|
|
|
|
this.codeDetailLoading = false;
|
|
|
|
|
this.codeDetailLoading = false
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.codeDetailList = res.data.list || [];
|
|
|
|
|
this.codeTotal = res.data.total || 0;
|
|
|
|
|
this.codeDetailList = res.data.list || []
|
|
|
|
|
this.codeTotal = res.data.total || 0
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
this.codeDetailList = [];
|
|
|
|
|
this.codeTotal = 0;
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
this.codeDetailList = []
|
|
|
|
|
this.codeTotal = 0
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.codeDetailLoading = true;
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
this.codeDetailList = [];
|
|
|
|
|
this.codeTotal = 0;
|
|
|
|
|
this.codeDetailLoading = true
|
|
|
|
|
this.$message.error(error.message)
|
|
|
|
|
this.codeDetailList = []
|
|
|
|
|
this.codeTotal = 0
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
findMethod(query) {
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
this.fromOptions = []
|
|
|
|
|
let cQuery = {
|
|
|
|
|
key: query,
|
|
|
|
|
corpType: 2,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
limit: 10
|
|
|
|
|
}
|
|
|
|
|
getBasicUnitMaintains(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromOptions = response.data.list || [];
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.fromOptions = response.data.list || []
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
});
|
|
|
|
|
this.loading = false
|
|
|
|
|
this.fromOptions = []
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
removeRelId(row){
|
|
|
|
|
removeRelId(row) {
|
|
|
|
|
let query = {
|
|
|
|
|
code : row.code,
|
|
|
|
|
code: row.code,
|
|
|
|
|
relId: row.relId
|
|
|
|
|
}
|
|
|
|
|
this.$confirm("此操作将解绑该槽位与产品, 是否继续?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
this.$confirm('此操作将解绑该槽位与产品, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
removeProduct(query).then(res => {
|
|
|
|
|
if (res.code == 20000){
|
|
|
|
|
this.$message.success("解绑成功")
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
}else {
|
|
|
|
|
this.$message.error("解绑失败")
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.$message.success('解绑成功')
|
|
|
|
|
this.getCodeDetailList()
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error('解绑失败')
|
|
|
|
|
this.getCodeDetailList()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -710,37 +780,46 @@ export default {
|
|
|
|
|
filters: {
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
|
const statusMap = {
|
|
|
|
|
false: "success",
|
|
|
|
|
true: "warning",
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
},
|
|
|
|
|
false: 'success',
|
|
|
|
|
true: 'warning'
|
|
|
|
|
}
|
|
|
|
|
return statusMap[status]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
};
|
|
|
|
|
document.body.ondrop = function(event) {
|
|
|
|
|
event.preventDefault()
|
|
|
|
|
event.stopPropagation()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
getHead("workplaceQueue-cwgl", "1").then((re) => {
|
|
|
|
|
getHead('workplaceQueue-cwgl', '1').then((re) => {
|
|
|
|
|
// 处理返回的数据
|
|
|
|
|
this.tableObj = re.data;
|
|
|
|
|
this.tableHeader = re.data.tableList;
|
|
|
|
|
this.queryList = re.data.queryList;
|
|
|
|
|
this.fromList = re.data.fromList;
|
|
|
|
|
});
|
|
|
|
|
this.getCodeDetailList();
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
this.tableObj = re.data
|
|
|
|
|
this.tableHeader = re.data.tableList
|
|
|
|
|
this.queryList = re.data.queryList
|
|
|
|
|
this.fromList = re.data.fromList
|
|
|
|
|
})
|
|
|
|
|
this.getCodeDetailList()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style type="text/scss" lang="scss">
|
|
|
|
|
.el-radio__original {
|
|
|
|
|
display: none !important; /* 隐藏原生 radio 输入,但仍然允许交互 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner {
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.center-button {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
margin-top: 18px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|