Commit 46fc605b authored by 何远江's avatar 何远江

发货下架添加扫描交货单

parent 0e8463fe
......@@ -4,6 +4,7 @@
<NavBar title="发货下架"></NavBar>
<view class="btn">
<uni-easyinput class="boxSelect" prefixIcon="search" v-model="lgort" placeholder="请扫描目标仓位"></uni-easyinput>
<uni-easyinput class="boxSelect" prefixIcon="search" v-model="vbeln" placeholder="请扫描交货单"></uni-easyinput>
<uni-easyinput prefixIcon="search" :disabled="isDisabled" v-model="wxparams" :focus="isFocus"
placeholder="请扫描产品包装条码/外箱码" @input="handleInputPlnr"></uni-easyinput>
</view>
......@@ -110,11 +111,15 @@
if (!this.goodsList.length) {
return this.$u.toast('请扫描需要下架的箱条码/外箱码')
}
if (!this.vbeln) {
return this.$u.toast('请扫描交货单')
}
if (!this.lgort) {
return this.$u.toast('请选择目标仓位')
}
const arr = this.goodsList.map((item) => {
item.LGORT = this.lgort
item.VBELN = this.vbeln
return item
})
this.$u.api.sapApi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment