182 lines
4.5 KiB
Vue
182 lines
4.5 KiB
Vue
<template>
|
|
<view class="zd_container">
|
|
<!-- 物料组盘 -->
|
|
<nav-bar :title="title"></nav-bar>
|
|
<view class="zd_content">
|
|
<view class="zd_wrapper">
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label">载具</span>
|
|
</view>
|
|
<view class="zd-col-24 filter_select">
|
|
<search-box
|
|
v-model="val1"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label">袋码</span>
|
|
</view>
|
|
<view class="zd-col-24 filter_select">
|
|
<search-box
|
|
v-model="bagCode"
|
|
/>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row">
|
|
<button class="zd-col-11 button-primary ftsize1" @tap="toScanAdd">扫码插入</button>
|
|
<button class="zd-col-11 button-primary ftsize1" @tap="toDel">删除行</button>
|
|
</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>
|
|
<th>批号</th>
|
|
<th>数量</th>
|
|
<th>单位</th>
|
|
<th>供应商</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.bag_code === pkId}" @tap="toCheck(e)">
|
|
<td>{{i+1}}</td>
|
|
<td>{{e.bag_code}}</td>
|
|
<td>{{e.material_code}}</td>
|
|
<td>{{e.material_name}}</td>
|
|
<td>{{e.class_name}}</td>
|
|
<td>{{e.pcsn}}</td>
|
|
<td>{{e.qty}}</td>
|
|
<td>{{e.qty_unit_name}}</td>
|
|
<td>{{e.supp_name}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row submit-bar">
|
|
<button class="zd-col-5 button-default" @tap="toEmpty">清空</button>
|
|
<button class="zd-col-18 button-primary" :class="{'button-info': !val1 || !dataList.length}" :disabled="disabled" @tap="_confirmPalletAssembly">确认组盘</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import {getBagAssembly, confirmPalletAssembly} from '@/utils/getData3.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
val1: '',
|
|
bagCode: '',
|
|
pkId: '',
|
|
pkObj: {},
|
|
dataList: [],
|
|
// dataList: [{material_code: 'm001', qty: 100, checked: false, initialQty: 100}, {material_code: 'm002', qty: 200, checked: false, initialQty: 200}],
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
methods: {
|
|
toScanAdd () {
|
|
if (this.bagCode) {
|
|
this._getBagAssembly2(this.bagCode)
|
|
}
|
|
// uni.scanCode({
|
|
// success: (res) => {
|
|
// // console.log('扫码成功:', res.result);
|
|
// this._getPalletAssembly(res.result)
|
|
// },
|
|
// fail: (err) => {
|
|
// console.log('扫码失败:', err)
|
|
// // uni.showToast({
|
|
// // title: err + '扫码失败',
|
|
// // icon: 'none'
|
|
// // })
|
|
// }
|
|
// })
|
|
},
|
|
toDel () {
|
|
if (!this.pkId) {
|
|
return
|
|
}
|
|
this.dataList = this.dataList.filter(item => item.bag_code !== this.pkObj.bag_code)
|
|
},
|
|
toCheck (e) {
|
|
this.pkId = this.pkId === e.bag_code ? '' : e.bag_code
|
|
this.pkObj = this.pkId === e.bag_code ? e : {}
|
|
},
|
|
toEmpty () {
|
|
this.val1 = ''
|
|
this.dataList = []
|
|
this.disabled = false
|
|
},
|
|
async _getBagAssembly () {
|
|
try {
|
|
let res = await getBagAssembly(this.val1)
|
|
if (res && res.data.length > 0) {
|
|
this.dataList = [...res.data]
|
|
} else {
|
|
this.dataList = []
|
|
}
|
|
} catch (e) {
|
|
this.dataList = []
|
|
}
|
|
},
|
|
async _getBagAssembly2 () {
|
|
try {
|
|
let res = await getBagAssembly(this.bagCode)
|
|
if (res) {
|
|
const existingItem = this.dataList.find(item => item.bag_code === res.data.bag_code)
|
|
if (existingItem) {
|
|
uni.showToast({
|
|
title: '袋码已存在,不能重复插入',
|
|
icon: 'none'
|
|
})
|
|
return
|
|
}
|
|
this.dataList.push(res.data)
|
|
} else {
|
|
}
|
|
} catch (e) {
|
|
}
|
|
},
|
|
async _confirmPalletAssembly () {
|
|
this.disabled = true
|
|
if (!this.val1 || !this.dataList.length) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
try {
|
|
let res = await confirmPalletAssembly(this.val1, this.dataList)
|
|
if (res) {
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
}
|
|
this.toEmpty()
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script> |