Files
hht-hdyy-uni/pages/hdyy/ccgl/xuni-outstore.vue
2026-04-01 19:00:34 +08:00

129 lines
3.2 KiB
Vue

<template>
<view class="zd_container">
<!-- 虚拟出库 -->
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<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>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<td>{{e.storagevehicle_code}}</td>
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.pcsn}}</td>
<td><input type="number" class="sin_input" v-model="e.canuse_qty" @blur="handleBlur(e)"></td>
<td>{{e.quality_code}}</td>
<td>{{e.produce_name}}</td>
</tr>
</tbody>
</table>
</view>
</view>
</view>
<view class="zd-row submit-bar">
<button class="zd-col-11 button-primary" @tap="toKccx">库存查询</button>
<button class="zd-col-11 button-primary" :class="{'button-info': !dataList.length}" :disabled="disabled" @tap="_hyConfirmOut">确认出库</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {hyConfirmOut} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
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
},
onShow () {
if (this.$store.getters.publicArr.length) {
const combined = [...this.dataList, ...this.$store.getters.publicArr];
const map = new Map();
combined.forEach(item => {
const key = `${item.storagevehicle_code}}`;
// 仅当键不存在时才添加,这样先出现的记录会被保留
if (!map.has(key)) {
map.set(key, item);
}
});
this.dataList = Array.from(map.values());
this.$store.dispatch('setPublicArr', '')
}
},
methods: {
handleBlur (e) {
if (e.canuse_qty) {
if (e.canuse_qty < 0) {
e.canuse_qty = 0
} else {
e.canuse_qty = e.canuse_qty.replace(/[^0-9]/g, '')
e.canuse_qty = e.canuse_qty.replace(/^0+/, '') || '0'
}
} else {
// uni.showToast({
// title: '数量必填',
// icon: 'none'
// })
}
},
toEmpty () {
this.dataList = []
this.disabled = false
},
toKccx () {
uni.navigateTo({
url: '/pages/hdyy/ccgl/xuni-outstore-kcquery?title=库存查询'
})
},
async _hyConfirmOut () {
const hasEmpty = this.dataList.some(item => item.canuse_qty === '');
if (hasEmpty) {
uni.showToast({
title: '请填写出库数量',
icon: 'none'
})
return false
}
this.disabled = true
try {
let res = await hyConfirmOut(this.dataList)
if (res) {
uni.showToast({
title: res.message,
icon: 'none'
})
}
this.toEmpty()
this.disabled = false
} catch (e) {
this.disabled = false
}
}
}
}
</script>