|
@@ -69,13 +69,13 @@
|
|
|
<text class="pnums">{{item.replenishBillQty}}</text>
|
|
|
</view>
|
|
|
<view v-if="item.recallBillQty && item.recallBillQty!=0">
|
|
|
- 调回在途
|
|
|
+ {{item.replenishBillQty && item.replenishBillQty!=0 ? '/':''}}调回在途
|
|
|
<text class="pnums">{{item.recallBillQty}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="pcurnums flex align_center">
|
|
|
<text>调回数量</text>
|
|
|
- <view class="u-ninput"><u-number-box color="#000" :input-height="60" bg-color="#fff" v-model="item.confirmQty" :min="0" :max="item.qty" @minus="minus" @plus="plus" @change="numberBoxChange"></u-number-box></view>
|
|
|
+ <view class="u-ninput"><u-number-box color="#000" :input-height="60" bg-color="#fff" v-model="item.confirmQty" :min="1" :max="item.qty" @minus="minus" @plus="plus" @change="numberBoxChange"></u-number-box></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -241,7 +241,7 @@ export default {
|
|
|
seeDetail(){
|
|
|
if(this.chooseArr.length == 0){
|
|
|
uni.showToast({
|
|
|
- title:'请先选择调回单',
|
|
|
+ title:'请先选择调回产品',
|
|
|
icon:'none'
|
|
|
})
|
|
|
}else{
|
|
@@ -294,6 +294,7 @@ export default {
|
|
|
handelFilter(){
|
|
|
if(this.checkValueRange()){
|
|
|
this.queryParam.shelfSn = this.shelfSn;
|
|
|
+ this.chooseShow =false;
|
|
|
this.loadData(this.queryParam);
|
|
|
}
|
|
|
},
|
|
@@ -351,7 +352,7 @@ export default {
|
|
|
const arrInd = []
|
|
|
if(this.chooseArr.length == 0){
|
|
|
uni.showToast({
|
|
|
- title:'请先选择调回单',
|
|
|
+ title:'请先选择调回产品',
|
|
|
icon:'none'
|
|
|
})
|
|
|
return;
|