Browse Source

YT-2899WMS-手持校验发料功能,需要取消改数功能,因为现场校验发料存在一次发多箱的情况

intex
张立 1 week ago
parent
commit
05b03f5c87
  1. 8
      src/mycomponents/record/recordComDetailCard.vue
  2. 2
      src/pages/issue/record/directIssueByBatchCom.vue

8
src/mycomponents/record/recordComDetailCard.vue

@ -173,6 +173,11 @@
type: Boolean,
default: true
},
// checkIssue
fromType:{
type:String,
default:''
}
},
watch: {
@ -209,7 +214,8 @@
mounted() {
this.detailOptions = getDetailOption();
this.scanOptions = getRecordOption(this.allowModifyQty,this.allowModifyLocation);
// this.scanOptions = getRecordOption(this.allowModifyQty,this.allowModifyLocation);
if(this.fromType =='checkIssue'){ this.scanOptions = getRecordOption(false,this.allowModifyLocation); }else{ this.scanOptions = getRecordOption(this.allowModifyQty,this.allowModifyLocation); }
this.removeOptions = this.isShowModifedLocation ?getEditLocationRemoveOption():getClearOption();
},

2
src/pages/issue/record/directIssueByBatchCom.vue

@ -13,7 +13,7 @@
:isShowFromLocation="true" @removeItem="removeItem(index,item)"
:isShowToLocation="false" :isShowParentToLocation="false" @updateData="updateData"
:isShowRecommendQty="false"
:allowModifyQty="true" :isShowPackingNumberProps="true" @removePack="removePack">
:allowModifyQty="true" :isShowPackingNumberProps="true" @removePack="removePack" :fromType='fromType'>
</record-com-detail-card>
</view>

Loading…
Cancel
Save