物料组盘

This commit is contained in:
2025-10-20 14:29:49 +08:00
parent 1cff3efc79
commit 82d01ee240

View File

@@ -4,14 +4,6 @@
<nav-bar :title="title"></nav-bar> <nav-bar :title="title"></nav-bar>
<view class="zd_content"> <view class="zd_content">
<view class="zd_wrapper"> <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">
<uni-datetime-picker type="date" :value="singleDate" @change="onSingleDateChange" />
</view>
</view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">源单编码</span> <span class="filter_label">源单编码</span>
@@ -27,9 +19,18 @@
<view class="zd-col-17"> <view class="zd-col-17">
<search-box <search-box
v-model="val1" v-model="val1"
@handleChange="handleChange"
/> />
</view> </view>
</view> </view>
<view class="zd-row border-bottom">
<view class="zd-col-7">
<span class="filter_label filter_input_disabled">点位编码</span>
</view>
<view class="zd-col-17">
<input type="text" class="filter_input filter_input_disabled" v-model="val2" disabled>
</view>
</view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">物料信息</span> <span class="filter_label">物料信息</span>
@@ -72,17 +73,20 @@
</view> </view>
<view class="zd-row border-bottom"> <view class="zd-row border-bottom">
<view class="zd-col-7"> <view class="zd-col-7">
<span class="filter_label">供应商</span> <span class="filter_label filter_input_disabled">供应商</span>
</view> </view>
<view class="zd-col-24 filter_select"> <!-- <view class="zd-col-24 filter_select">
<uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select> <uni-data-select v-model="index2" :localdata="options2" @change="selectChange2"></uni-data-select>
</view> -->
<view class="zd-col-17">
<input type="text" class="filter_input filter_input_disabled" v-model="currentData.supp_name" disabled>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
<view class="zd-row submit-bar"> <view class="zd-row submit-bar">
<button class="zd-col-6 button-default" @tap="clearUp">清空</button> <button class="zd-col-6 button-default" @tap="clearUp">清空</button>
<button class="zd-col-16 button-primary" :class="{'button-info': JSON.stringify(currentData) === '{}' || !val1 || !index || !index2}" :disabled="disabled" @tap="_zwgroupPlate">组盘确认</button> <button class="zd-col-16 button-primary" :class="{'button-info': JSON.stringify(currentData) === '{}' || !val1 || !index}" :disabled="disabled" @tap="_zwgroupPlate">组盘确认</button>
</view> </view>
</view> </view>
</template> </template>
@@ -91,7 +95,7 @@
import NavBar from '@/components/NavBar.vue' import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue' import SearchBox from '@/components/SearchBox.vue'
import NumberInput from '@/components/NumberInput.vue' import NumberInput from '@/components/NumberInput.vue'
import {getFormDataList, getFormMaterial, supplierdroplist, zwgroupPlate} from '@/utils/getData4.js' import {getPointCodeByVehicleCode, getFormDataList, getFormMaterial, supplierdroplist, zwgroupPlate} from '@/utils/getData4.js'
export default { export default {
components: { components: {
NavBar, NavBar,
@@ -100,14 +104,14 @@
}, },
data() { data() {
return { return {
singleDate: '',
title: '', title: '',
val1: '', val1: '',
val2: '',
currentData: {}, currentData: {},
options: [], options: [],
index: '', index: '',
options2: [], options2: [],
index2: '', // index2: '',
disabled: false disabled: false
}; };
}, },
@@ -119,16 +123,12 @@
this._supplierdroplist() this._supplierdroplist()
}, },
methods: { methods: {
onSingleDateChange(e) {
this.singleDate = e
this._getFormDataList()
},
toJump () { toJump () {
this._getFormMaterial() this._getFormMaterial()
}, },
async _getFormDataList () { async _getFormDataList () {
try { try {
let res = await getFormDataList(this.singleDate) let res = await getFormDataList()
if (res) { if (res) {
this.options = res.data this.options = res.data
} else { } else {
@@ -168,26 +168,40 @@
this._getFormMaterial() this._getFormMaterial()
} }
}, },
selectChange2 (e) { // selectChange2 (e) {
this.index2 = e // this.index2 = e
// },
handleChange (e) {
if (e) {
this._getPointCodeByVehicleCode()
}
},
async _getPointCodeByVehicleCode () {
try {
let res = await getPointCodeByVehicleCode(this.val1)
if (res) {
this.val2 = res.data.point_code
}
} catch (e) {
}
}, },
clearUp () { clearUp () {
this.val1 = '' this.val1 = ''
this.index = '' this.index = ''
this.index2 = '' // this.index2 = ''
this.currentData = {} this.currentData = {}
this.disabled = false this.disabled = false
}, },
async _zwgroupPlate () { async _zwgroupPlate () {
this.disabled = true this.disabled = true
if (JSON.stringify(this.currentData) === '{}' || !this.val1 || !this.index || !this.index2) { if (JSON.stringify(this.currentData) === '{}' || !this.val1 || !this.index) {
this.disabled = false this.disabled = false
return return
} }
try { try {
this.currentData.stor_code = this.index this.currentData.stor_code = this.index
let selobj = this.options2.find(item => item.value === this.index2) let selobj = this.options2.find(item => item.value === this.currentData.supp_code)
let res = await zwgroupPlate(this.val1, this.currentData.material_id, this.currentData.qty, this.index, this.index2, selobj.text) let res = await zwgroupPlate(this.val1, this.currentData.material_id, this.currentData.qty, this.index, this.currentData.supp_code, selobj.text)
uni.showToast({ uni.showToast({
title: res.message, title: res.message,
icon: 'none' icon: 'none'