Files
hht-tongbo/pages/WarehouseManage/ProdDeliveryConfirm.vue

164 lines
4.1 KiB
Vue
Raw Normal View History

2022-10-20 11:31:21 +08:00
<template>
<view class="zd_container">
2022-10-28 10:57:45 +08:00
<nav-bar title="生产区发货确认"></nav-bar>
2022-10-20 11:31:21 +08:00
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">木箱</span>
</view>
<view class="filter_input_wraper">
2022-12-03 14:31:36 +08:00
<search-box v-model="val1" :focused="true" @handleChange="handleChange1"
2022-10-20 11:31:21 +08:00
/>
</view>
</view>
<view class="filter_item">
<view class="filter_label_wraper">
<span class="filter_label">点位</span>
</view>
<view class="filter_input_wraper">
2022-11-30 12:28:31 +08:00
<search-box v-model="val2" @handleChange="handleChange2" />
2022-10-20 11:31:21 +08:00
</view>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
2022-10-28 10:57:45 +08:00
<th>木箱码</th>
<th>子卷号</th>
<th>物料编码</th>
<th>物料名称</th>
<th>重量kg</th>
<th>更换外包</th>
<th>更换内包</th>
2022-10-20 11:31:21 +08:00
</tr>
</thead>
<tbody>
2022-11-17 14:23:07 +08:00
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.package_box_sn === pkId, 'bgyellow': e.colro_flag === '1'}">
<td>{{e.package_box_sn}}</td>
2022-10-20 11:31:21 +08:00
<td>{{e.container_name}}</td>
2022-10-28 10:57:45 +08:00
<td>{{e.product_name}}</td>
<td>{{e.product_description}}</td>
<td>{{e.net_weight}}</td>
<td>{{e.change_out}}</td>
<td>{{e.change_in}}</td>
2022-10-20 11:31:21 +08:00
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="submit-bar">
2022-10-31 14:25:51 +08:00
<button class="submit-button" :class="{'btn-disabled': !dataList.length}" :disabled="disabled1" @tap="_stoutConfirm">出库确认</button>
2023-01-09 12:28:36 +08:00
<button class="submit-button" :class="{'btn-disabled': !val1 || !val2}" :disabled="disabled2" @tap="_stdeliverApply">发货申请</button>
2022-11-30 12:28:31 +08:00
<button class="submit-button" @tap="_stivtQuery(val1, val2)">查询</button>
2022-10-20 11:31:21 +08:00
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
2023-01-09 12:28:36 +08:00
import {stivtQuery, stoutConfirm, stoutPrint, stdeliverApply} from '@/utils/getData1.js'
2022-10-20 11:31:21 +08:00
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
val1: '',
val2: '',
dataList: [],
pkId: '',
pkObj: {},
2023-01-09 12:28:36 +08:00
disabled1: false,
disabled2: false
2022-10-20 11:31:21 +08:00
};
},
created () {
},
methods: {
2022-11-30 12:28:31 +08:00
handleChange1 (e) {
this._stivtQuery(e, this.val2)
},
handleChange2 (e) {
this._stivtQuery(this.val1, e)
2022-10-20 11:31:21 +08:00
},
/** 初始化查询 */
2022-11-30 12:28:31 +08:00
async _stivtQuery (val1, val2) {
let res = await stivtQuery(val1, val2)
2022-10-20 11:31:21 +08:00
this.dataList = [...res.data]
},
2022-10-28 10:57:45 +08:00
async _stoutConfirm () {
2022-10-20 11:31:21 +08:00
this.disabled1 = true
try {
2022-10-31 14:25:51 +08:00
let res = await stoutConfirm(this.dataList, this.val1)
2022-10-20 11:31:21 +08:00
this.disabled1 = false
this.pkId = ''
this.pkObj = {}
2022-11-30 12:28:31 +08:00
this._stivtQuery(this.val1, this.val2)
2022-11-11 18:22:26 +08:00
uni.showToast({
title: res.message,
icon: 'none'
})
2022-10-28 10:57:45 +08:00
} catch (e) {
this.disabled1 = false
}
},
2023-01-09 12:28:36 +08:00
async _stdeliverApply () {
this.disabled2 = true
if (!this.val1 || !this.val2) {
this.disabled2 = false
return
}
try {
let res = await stdeliverApply(this.val1, this.val2)
this.disabled2 = false
uni.showToast({
title: res.message,
icon: 'none'
})
} catch (e) {
this.disabled2 = false
}
},
2022-10-28 10:57:45 +08:00
async _stoutPrint () {
this.disabled1 = true
if (!this.pkId) {
this.disabled1 = false
return
}
try {
let res = await stoutPrint(this.pkObj)
this.disabled1 = false
this.pkId = ''
this.pkObj = {}
2022-11-30 12:28:31 +08:00
this._stivtQuery(this.val1, this.val2)
2022-11-11 18:22:26 +08:00
uni.showToast({
title: res.message,
icon: 'none'
})
2022-10-20 11:31:21 +08:00
} catch (e) {
this.disabled1 = false
}
},
toCheck (e) {
2022-11-17 14:23:07 +08:00
this.pkId = this.pkId === e.package_box_sn ? '' : e.package_box_sn
this.pkObj = this.pkId === e.package_box_sn ? e : {}
2022-10-20 11:31:21 +08:00
}
}
}
</script>
<style lang="stylus">
.zd_content
2022-10-28 10:57:45 +08:00
padding-bottom 77rpx
2022-10-28 11:12:43 +08:00
.slide_new table td:nth-child(1), .slide_new table th:nth-child(1)
2022-10-20 11:31:21 +08:00
box-shadow 1px 0 2px rgba(0,0,0,.12)
2022-10-28 10:57:45 +08:00
.bgyellow td
background-color #E9B451
2022-10-20 11:31:21 +08:00
</style>