Files
hht-hdyy-uni/pages/hdyy/ccgl/xuni-instore.vue
2026-04-01 17:43:22 +08:00

152 lines
4.1 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-6">
<span class="filter_label">物料编码</span>
</view>
<view class="zd-col-13">
<search-box v-model="mcode"/>
</view>
<button class="mini-btn" type="primary" @tap="toJump('xuni-instore-matersave?title=物料维护')">查询</button>
</view>
</view>
<view class="zd_wrapper grid-wraper">
<view class="slide_new">
<table>
<thead>
<tr>
<!-- <th @tap="toAllCheck"><uni-icons :type="allCheck ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></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 @tap="toCheck(e)"><uni-icons :type="e.checked ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></td> -->
<td>{{e.material_code}}</td>
<td><input type="text" class="sin_input" v-model="e.pcsn"></td>
<td><input type="number" class="sin_input" v-model="e.qty" @blur="handleBlur(e)"></td>
<td>{{e.class_name}}</td>
<td>{{e.quality_code}}</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': !dataList.length}" :disabled="disabled" @tap="_hyConfirmIn">确认入库</button>
</view>
</view>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {hyConfirmIn} from '@/utils/getData3.js'
export default {
components: {
NavBar,
SearchBox
},
data() {
return {
title: '',
materialData: {},
mcode: '',
allCheck: false,
checkedArr: [],
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.publicObj !== '') {
this.materialData = this.$store.getters.publicObj
this.mcode = this.materialData.material_code
this.$store.dispatch('setPublicObj', '')
}
if (this.$store.getters.publicArr.length) {
const combined = [...this.dataList, ...this.$store.getters.publicArr];
const map = new Map();
combined.forEach(item => {
// const key = `${item.material_code}_${item.pcsn}`;
const key = `${item.material_code}}`;
// 仅当键不存在时才添加,这样先出现的记录会被保留
if (!map.has(key)) {
map.set(key, item);
}
});
this.dataList = Array.from(map.values());
this.$store.dispatch('setPublicArr', '')
}
},
methods: {
toJump (name) {
uni.navigateTo({
url: `/pages/hdyy/ccgl/${name}`
})
},
handleBlur (e) {
if (e.qty) {
if (e.qty < 0) {
e.qty = 0
} else {
e.qty = e.qty.replace(/[^0-9]/g, '')
e.qty = e.qty.replace(/^0+/, '') || '0'
}
} else {
// uni.showToast({
// title: '数量必填',
// icon: 'none'
// })
}
},
toCheck (e) {
e.checked = !e.checked
this.checkedArr = this.dataList.filter(el => el.checked === true)
this.allCheck = this.checkedArr.length === this.dataList.length
},
toEmpty () {
this.dataList = []
this.disabled = false
},
async _hyConfirmIn () {
this.disabled = true
if (!this.dataList.length) {
this.disabled = false
return
}
try {
let res = await hyConfirmIn(this.dataList)
if (res) {
uni.showToast({
title: res.message,
icon: 'none'
})
}
this.toEmpty()
this.disabled = false
} catch (e) {
this.disabled = false
}
}
}
}
</script>