2026-01-05 17:01:08 +08:00
|
|
|
<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"
|
2026-01-26 13:43:54 +08:00
|
|
|
@handleChange="handleChange"
|
2026-01-05 17:01:08 +08:00
|
|
|
/>
|
|
|
|
|
</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
|
2026-01-26 13:43:54 +08:00
|
|
|
v-model="val2"
|
2026-01-05 17:01:08 +08:00
|
|
|
/>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2026-01-26 14:38:46 +08:00
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-7">
|
|
|
|
|
<span class="filter_label">毛重</span>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-24">
|
|
|
|
|
<input type="number" v-model="weight" class="filter_input">
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2026-01-05 17:01:08 +08:00
|
|
|
<view class="zd-row border-bottom">
|
|
|
|
|
<view class="zd-col-7">
|
2026-01-08 10:57:11 +08:00
|
|
|
<span class="filter_label filter_input_disabled">总数量</span>
|
2026-01-05 17:01:08 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="zd-col-24">
|
|
|
|
|
<input type="number" v-model="num" class="filter_input filter_input_disabled" disabled>
|
|
|
|
|
</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>
|
|
|
|
|
<th>类别</th>
|
|
|
|
|
<th>规格</th>
|
|
|
|
|
<th>型号</th>
|
|
|
|
|
<th>点位</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2026-01-26 13:43:54 +08:00
|
|
|
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.bucket_code === pkId}" @tap="toCheck(e)">
|
2026-01-05 17:01:08 +08:00
|
|
|
<td>{{i+1}}</td>
|
|
|
|
|
<td>{{e.bag_code}}</td>
|
|
|
|
|
<td>{{e.material_code}}</td>
|
|
|
|
|
<td>{{e.material_name}}</td>
|
|
|
|
|
<td>{{e.pcsn}}</td>
|
2026-01-22 10:31:29 +08:00
|
|
|
<td>{{e.class_name}}</td>
|
2026-01-05 17:01:08 +08:00
|
|
|
<td>{{e.material_spec}}</td>
|
|
|
|
|
<td>{{e.material_model}}</td>
|
|
|
|
|
<td>{{e.struct_code}}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="zd-row submit-bar">
|
|
|
|
|
<!-- <button class="zd-col-5 button-default" @tap="toEmpty">清空</button> -->
|
2026-01-26 14:38:46 +08:00
|
|
|
<button class="zd-col-10 button-primary" :class="{'button-info': !pkId || !val2 || !val1 || !num || !weight}" :disabled="disabled" @tap="_manualInbound">入站</button>
|
|
|
|
|
<button class="zd-col-10 button-primary" :class="{'button-info': !pkId || !val2 || !val1 || !num || !weight}" :disabled="disabled" @tap="_manualOutbound">出站</button>
|
2026-01-05 17:01:08 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import NavBar from '@/components/NavBar.vue'
|
|
|
|
|
import SearchBox from '@/components/SearchBox.vue'
|
2026-01-26 13:43:54 +08:00
|
|
|
import {getTaskBucketGroupInfo, manualInbound, manualOutbound} from '@/utils/getData3.js'
|
2026-01-05 17:01:08 +08:00
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
NavBar,
|
|
|
|
|
SearchBox
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
title: '',
|
|
|
|
|
val1: '',
|
2026-01-26 13:43:54 +08:00
|
|
|
val2: '',
|
2026-01-05 17:01:08 +08:00
|
|
|
num: null,
|
2026-01-26 14:38:46 +08:00
|
|
|
weight: null,
|
2026-01-26 13:43:54 +08:00
|
|
|
pkId: '',
|
|
|
|
|
pkObj: {},
|
2026-01-05 17:01:08 +08:00
|
|
|
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: {
|
|
|
|
|
toEmpty () {
|
|
|
|
|
this.val1 = ''
|
2026-01-26 13:43:54 +08:00
|
|
|
this.val2 = ''
|
2026-01-26 14:38:46 +08:00
|
|
|
this.num = null
|
|
|
|
|
this.weight = null
|
|
|
|
|
this.pkId = ''
|
|
|
|
|
this.pkObj = {}
|
2026-01-05 17:01:08 +08:00
|
|
|
this.dataList = []
|
|
|
|
|
this.disabled = false
|
|
|
|
|
},
|
2026-01-26 13:43:54 +08:00
|
|
|
handleChange (e) {
|
|
|
|
|
if (e) {
|
|
|
|
|
this._getTaskBucketGroupInfo()
|
2026-01-05 17:01:08 +08:00
|
|
|
}
|
|
|
|
|
},
|
2026-01-26 13:43:54 +08:00
|
|
|
async _getTaskBucketGroupInfo () {
|
2026-01-05 17:01:08 +08:00
|
|
|
try {
|
2026-01-26 13:43:54 +08:00
|
|
|
let res = await getTaskBucketGroupInfo(this.val1)
|
2026-01-05 17:01:08 +08:00
|
|
|
if (res && res.data.length > 0) {
|
|
|
|
|
this.dataList = [...res.data]
|
2026-01-26 13:43:54 +08:00
|
|
|
this.num = this.dataList.reduce((sum, item) => sum + Number(item.qty), 0)
|
2026-01-05 17:01:08 +08:00
|
|
|
} else {
|
|
|
|
|
this.dataList = []
|
|
|
|
|
}
|
|
|
|
|
} catch (e) {
|
|
|
|
|
this.dataList = []
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-01-26 13:43:54 +08:00
|
|
|
toCheck (e) {
|
|
|
|
|
this.pkId = this.pkId === e.bucket_code ? '' : e.bucket_code
|
|
|
|
|
this.pkObj = this.pkId === e.bucket_code ? e : {}
|
|
|
|
|
},
|
|
|
|
|
async _manualInbound () {
|
|
|
|
|
this.disabled = true
|
2026-01-26 14:38:46 +08:00
|
|
|
if (!this.pkId || !this.val2 || !this.val1 || !this.num || !this.weight) {
|
2026-01-26 13:43:54 +08:00
|
|
|
this.disabled = false
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
try {
|
2026-01-26 14:38:46 +08:00
|
|
|
let res = await manualInbound(this.pkObj, this.val2, this.val1, this.num, this.weight)
|
2026-01-26 13:43:54 +08:00
|
|
|
if (res) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.toEmpty()
|
|
|
|
|
this.disabled = false
|
|
|
|
|
} catch (e) {
|
|
|
|
|
this.disabled = false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async _manualOutbound () {
|
2026-01-05 17:01:08 +08:00
|
|
|
this.disabled = true
|
2026-01-26 14:38:46 +08:00
|
|
|
if (!this.pkId || !this.val2 || !this.val1 || !this.num || !this.weight) {
|
2026-01-05 17:01:08 +08:00
|
|
|
this.disabled = false
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
try {
|
2026-01-26 14:38:46 +08:00
|
|
|
let res = await manualOutbound(this.pkObj, this.val2, this.val1, this.num, this.weight)
|
2026-01-05 17:01:08 +08:00
|
|
|
if (res) {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.toEmpty()
|
|
|
|
|
this.disabled = false
|
|
|
|
|
} catch (e) {
|
|
|
|
|
this.disabled = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|