240 lines
6.5 KiB
Vue
240 lines
6.5 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-7">
|
|
<span class="filter_label">源单编码</span>
|
|
</view>
|
|
<view class="zd-col-24 filter_select">
|
|
<uni-data-select v-model="index" :localdata="options" @change="selectChange"></uni-data-select>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-7">
|
|
<span class="filter_label">载具编码</span>
|
|
</view>
|
|
<view class="zd-col-17">
|
|
<search-box
|
|
v-model="val1"
|
|
@handleChange="handleChange"
|
|
/>
|
|
</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-col-7">
|
|
<span class="filter_label">物料信息</span>
|
|
</view>
|
|
<view class="zd-col-17">
|
|
<input type="text" class="filter_input" v-model="currentData.material_name" @tap="toJump" disabled>
|
|
</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="currentData.material_code" disabled>
|
|
</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="currentData.material_name" disabled>
|
|
</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="currentData.material_spec" disabled>
|
|
</view>
|
|
</view>
|
|
<view class="zd-row border-bottom">
|
|
<view class="zd-col-6">
|
|
<span class="filter_label">物料数量</span>
|
|
</view>
|
|
<view class="zd-col-16">
|
|
<NumberInput v-model="currentData.qty" />
|
|
</view>
|
|
<view class="zd-col-2"><span class="filter_unit">KG</span></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-24 filter_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 class="zd-row submit-bar">
|
|
<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}" :disabled="disabled" @tap="toSure">组盘确认</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import NavBar from '@/components/NavBar.vue'
|
|
import SearchBox from '@/components/SearchBox.vue'
|
|
import NumberInput from '@/components/NumberInput.vue'
|
|
import {getPointCodeByVehicleCode, getFormDataList, getFormMaterial, supplierdroplist, zwgroupPlate} from '@/utils/getData4.js'
|
|
export default {
|
|
components: {
|
|
NavBar,
|
|
SearchBox,
|
|
NumberInput
|
|
},
|
|
data() {
|
|
return {
|
|
title: '',
|
|
val1: '',
|
|
val2: '',
|
|
currentData: {},
|
|
options: [],
|
|
index: '',
|
|
options2: [],
|
|
// index2: '',
|
|
disabled: false
|
|
};
|
|
},
|
|
onLoad (options) {
|
|
this.title = options.title
|
|
},
|
|
created () {
|
|
this._getFormDataList()
|
|
this._supplierdroplist()
|
|
},
|
|
methods: {
|
|
toJump () {
|
|
this._getFormMaterial()
|
|
},
|
|
async _getFormDataList () {
|
|
try {
|
|
let res = await getFormDataList()
|
|
if (res) {
|
|
this.options = res.data
|
|
} else {
|
|
this.options = []
|
|
}
|
|
} catch (e) {
|
|
this.options = []
|
|
}
|
|
},
|
|
async _supplierdroplist () {
|
|
try {
|
|
let res = await supplierdroplist()
|
|
if (res) {
|
|
this.options2 = res.data
|
|
} else {
|
|
this.options2 = []
|
|
}
|
|
} catch (e) {
|
|
this.options2 = []
|
|
}
|
|
},
|
|
async _getFormMaterial () {
|
|
try {
|
|
let res = await getFormMaterial(this.index)
|
|
if (res) {
|
|
this.currentData = res.data
|
|
} else {
|
|
this.options = []
|
|
}
|
|
} catch (e) {
|
|
this.options = []
|
|
}
|
|
},
|
|
selectChange (e) {
|
|
this.index = e
|
|
if (e) {
|
|
this._getFormMaterial()
|
|
}
|
|
},
|
|
// selectChange2 (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 () {
|
|
this.val1 = ''
|
|
this.index = ''
|
|
// this.index2 = ''
|
|
this.currentData = {}
|
|
this.disabled = false
|
|
},
|
|
toSure () {
|
|
this.disabled = true
|
|
if (JSON.stringify(this.currentData) === '{}' || !this.val1 || !this.index) {
|
|
this.disabled = false
|
|
return
|
|
}
|
|
if (Number(this.currentData.qty) > 2000) {
|
|
uni.showModal({
|
|
title: '提示',
|
|
content: '输入的重量'+ Number(this.currentData.qty) +'过大,是否继续?',
|
|
confirmColor: '#ff6a00',
|
|
success: (res) => {
|
|
if (res.confirm) {
|
|
this._zwgroupPlate()
|
|
} else if (res.cancel) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
})
|
|
} else {
|
|
this._zwgroupPlate()
|
|
}
|
|
},
|
|
async _zwgroupPlate () {
|
|
try {
|
|
this.currentData.stor_code = this.index
|
|
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.currentData.supp_code, selobj.text)
|
|
uni.showToast({
|
|
title: res.message,
|
|
icon: 'none'
|
|
})
|
|
this.disabled = false
|
|
} catch (e) {
|
|
this.disabled = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
|
|
</style>
|