Files
hht-shangdianke-uni/pages/manage/back/man-group-disk.vue

290 lines
8.7 KiB
Vue
Raw Normal View History

2024-02-18 17:59:15 +08:00
<template>
<view class="zd_container">
<nav-bar title="人工组盘"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label">载具类型</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index1" :localdata="options1" @change="selectChange1"></uni-data-select>
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">载具编码</span>
</view>
<view class="filter_input_wraper">
<search-box
v-model="val1"
/>
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">物料</span>
</view>
<view class="filter_input_wraper">
<input type="text" class="filter_input filter_input_disabled pointer" v-model="val2" @tap="getMater">
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">物料数量</span>
</view>
<view class="filter_input_wraper">
<input type="number" class="filter_input" v-model="val3">
</view>
</view>
<view class="filter_item">
<view class="filter_label">当前点位</view>
<view class="filter_input_wraper">
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<th>载具编码</th>
<th>载具类型</th>
<th>物料编码</th>
<th>物料名称</th>
<th>点位</th>
2024-02-19 09:48:42 +08:00
<th>物料数量</th>
2024-02-18 17:59:15 +08:00
</tr>
</thead>
<tbody>
2024-02-19 09:48:42 +08:00
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.checked}">
2024-02-18 17:59:15 +08:00
<td>{{e.vehicle_code}}</td>
<td>{{e.vehicle_type}}</td>
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.point_code}}</td>
2024-02-19 09:48:42 +08:00
<td>{{e.material_qty}}</td>
2024-02-18 17:59:15 +08:00
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="submit-bar_new">
2024-02-20 10:43:17 +08:00
<view class="zd-col-4">
<view class="zd-row flexcol">
<view class="iconfont icon_unchecked mgb10" :class="{'icon_checked': isV}" @tap="isVirtual">&#xe66b;</view>
2024-02-18 17:59:15 +08:00
<view class="filter_input_wraper_inn_text">是否配盘</view>
</view>
</view>
<button class="zd-col-4 submit-button_new" @tap="clearUp">清空</button>
2024-02-20 10:43:17 +08:00
<button class="zd-col-5 submit-button_new" :class="{'btn-disabled': !index1 || !val1 || !val3 || !index2 || !$store.getters.publicObj}" :disabled="disabled1" @tap="_groupManual">开始组盘</button>
<button class="zd-col-5 submit-button_new" :class="{'btn-disabled': checkArr.length === 0}" :disabled="disabled2" @tap="_groupLink">开始配盘</button>
<button class="zd-col-4 submit-button_new" :class="{'btn-disabled': !val1 || (isV === true && printActive === false)}" :disabled="disabled3" @tap="_pdaPrintf">打印</button>
2024-02-18 17:59:15 +08:00
</view>
</view>
</template>
<script>
2024-02-20 16:03:06 +08:00
import {getCLodop} from "@/utils/CLodopfuncs.js"
2024-02-18 17:59:15 +08:00
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
2024-02-20 10:43:17 +08:00
import {queryPoints, getVehicleType, queryVehicleGroup, groupManual, groupLink, pdaPrintf} from '@/utils/getData2.js'
2024-02-18 17:59:15 +08:00
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
options1: [],
index1: '',
val1: '',
val2: '',
val3: '',
val4: '',
val5: '',
options2: [],
index2: '',
dataList: [],
isV: false,
disabled1: false,
disabled2: false,
2024-02-20 10:43:17 +08:00
disabled3: false,
checkArr: [],
printActive: false
2024-02-18 17:59:15 +08:00
};
},
created () {
this._getVehicleType()
this._queryPoints()
this._queryVehicleGroup()
},
destroyed () {
this.$store.dispatch('setPublicObj', '')
},
onShow() {
if (this.$store.getters.publicObj) {
this.val2 = this.$store.getters.publicObj.material_name
this.val4 = this.$store.getters.publicObj.material_id
this.val5 = this.$store.getters.publicObj.material_code
}
},
methods: {
/** 选择器 */
selectChange1(e) {
this.index1 = e
},
selectChange2(e) {
this.index2 = e
},
/** 载具类型下拉框 */
async _getVehicleType () {
let res = await getVehicleType()
this.options1 = [...res]
},
/** 点位下拉框 */
async _queryPoints () {
let res = await queryPoints('1')
res.map(el => {
this.$set(el, 'value', el.point_code)
this.$set(el, 'text', el.point_name)
})
this.options2 = [...res]
},
/** grid */
async _queryVehicleGroup () {
let res = await queryVehicleGroup()
2024-02-19 09:48:42 +08:00
res.map(el => {
this.$set(el, 'checked', false)
})
2024-02-18 17:59:15 +08:00
this.dataList = [...res]
},
getMater () {
uni.navigateTo({
url: '/pages/manage/search-mater-1'
})
},
toCheck (e) {
2024-02-19 09:48:42 +08:00
e.checked = !e.checked
this.checkArr = this.dataList.filter(i => { return i.checked === true })
2024-02-18 17:59:15 +08:00
},
isVirtual () {
this.isV = !this.isV
},
/** 开始组盘 */
async _groupManual () {
this.disabled1 = true
if (!this.index1 || !this.val1 || !this.val3 || !this.index2 || !this.$store.getters.publicObj) {
this.disabled1 = false
return
}
try {
let res = await groupManual(this.index1, this.val1, this.index2, this.val4, this.val5, this.val3, this.isV)
this.disabled1 = false
2024-02-19 09:48:42 +08:00
this.checkArr = []
2024-02-18 17:59:15 +08:00
this._queryVehicleGroup()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled1 = false
}
},
/** 开始配盘 */
async _groupLink () {
this.disabled2 = true
2024-02-19 09:48:42 +08:00
if (this.checkArr.length === 0) {
2024-02-18 17:59:15 +08:00
this.disabled2 = false
return
}
try {
2024-02-19 09:48:42 +08:00
let arr = []
this.checkArr.map(el => {
if (el.checked) {
2024-02-20 09:04:43 +08:00
arr.push({group_id: el.group_id, vehicle_code: this.val1})
2024-02-19 09:48:42 +08:00
}
})
2024-02-20 09:04:43 +08:00
let res = await groupLink(arr)
2024-02-18 17:59:15 +08:00
this.disabled2 = false
2024-02-19 09:48:42 +08:00
this.checkArr = []
2024-02-20 10:43:17 +08:00
this.printActive = true
2024-02-18 17:59:15 +08:00
this._queryVehicleGroup()
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled2 = false
}
},
clearUp () {
this.index1 = ''
this.index2 = ''
this.val1 = ''
this.val2 = ''
this.val3 = ''
2024-02-20 10:43:17 +08:00
this.printActive = false
2024-02-18 17:59:15 +08:00
this.$store.dispatch('setPublicObj', '')
2024-02-20 10:43:17 +08:00
},
/** 打印 */
async _pdaPrintf () {
this.disabled3 = true
if (!this.val1 || (this.isV === true && this.printActive === false)) {
this.disabled3 = false
return
}
try {
let res = await pdaPrintf(this.val1)
this.disabled3 = false
2024-02-20 16:03:06 +08:00
if (JSON.stringify(res) !== '{}') {
setTimeout(this.toPrint(res), 800)
}
2024-02-20 10:43:17 +08:00
} catch (e) {
this.disabled3 = false
}
2024-02-20 16:03:06 +08:00
},
toPrint (data) {
let iparr = this.$store.getters.printUrl.split(":")
let printUrl = iparr[1].slice(2)
let LODOP = getCLodop();
if (!(LODOP.webskt && LODOP.webskt.readyState === 1)) {
uni.showToast({
title: '当前配置ip' + printUrl + '网络不通,请检查',
icon: 'none',
duration: 5000
})
return
}
LODOP.SET_SHOW_MODE('HIDE_DISBUTTIN_SETUP', 1)// 隐藏那些无效按钮
LODOP.SET_LICENSES('浙江省烟草专卖局(公司)', 'C0C4A46A3A0D1F526D426018D9F11921', '', '')
// 更换为打印服务器ip 不需要加前缀
LODOP.PRINT_INIT(null, printUrl);
// 打印机序号 规则为打印服务器打印机列表倒数从0开始 -1为默认打印机
LODOP.SET_PRINTER_INDEX(-1);
// 设置打印纸大小
LODOP.SET_PRINT_PAGESIZE(1, '80mm', '60mm', '');
LODOP.ADD_PRINT_RECT('1mm', '3mm', '74mm', '54mm', 0, 1);
LODOP.SET_PRINT_STYLE('FontSize', 12);
LODOP.SET_PRINT_STYLE('Bold', 1);
LODOP.ADD_PRINT_BARCODE('2mm', '4mm', '32mm', '32mm', 'QRCode', data.vehicle_code + '##' + data.material_code + '##' + data.material_qty + '##' + data.pcsn + '##' + data.print_time);
LODOP.ADD_PRINT_TEXT('5mm', '35mm', '50mm', '15mm', '载具编码:' + data.vehicle_code);
LODOP.ADD_PRINT_TEXT('15mm', '35mm', '50mm', '15mm', '物料编码:' + data.material_code);
LODOP.ADD_PRINT_TEXT('25mm', '35mm', '50mm', '15mm', '物料名称:' + data.material_name);
LODOP.ADD_PRINT_TEXT('34mm', '5mm', '80mm', '15mm', '物料数量:' + data.material_qty);
LODOP.ADD_PRINT_TEXT('41mm', '5mm', '80mm', '15mm', '配盘批次:' + data.pcsn);
LODOP.ADD_PRINT_TEXT('48mm', '5mm', '80mm', '15mm', '打印时间:' + data.print_time);
LODOP.PRINT(); // 打印
// LODOP.PREVIEW()
uni.showToast({
title: '打印成功',
icon: 'none'
})
2024-02-18 17:59:15 +08:00
}
}
}
</script>
<style lang="stylus">
</style>