Browse Source

盘点状态必填+去掉收货目检不合格状态

dev_web_online
安虹睿 2 years ago
parent
commit
766dbb3dff
  1. 4
      fe/PC/src/components/StepsCountPlanForm/index.vue
  2. 4
      fe/PC/src/views/inventoryManage/Count/CountPlan-ms.vue

4
fe/PC/src/components/StepsCountPlanForm/index.vue

@ -665,6 +665,10 @@ export default {
this.otherFormData.vendCondition = { this.otherFormData.vendCondition = {
filters:[] filters:[]
} }
if(this.otherFormData.statusList.length <= 0){
this.$warningMsg("请选择状态");
return
}
this.loading = true; this.loading = true;
// this.otherFormData.requestType = 2 // this.otherFormData.requestType = 2
this.splitFormData(this.otherFormData).then( this.splitFormData(this.otherFormData).then(

4
fe/PC/src/views/inventoryManage/Count/CountPlan-ms.vue

@ -294,7 +294,9 @@ export default {
this.paging() this.paging()
let inventoryStageArray = this.$staticOptions.inventoryStage() let inventoryStageArray = this.$staticOptions.inventoryStage()
inventoryStageArray.forEach(item => { inventoryStageArray.forEach(item => {
this.editOptions.radios.push(item.label) if(item.value != '31'){
this.editOptions.radios.push(item.label)
}
}) })
}, },
methods: { methods: {

Loading…
Cancel
Save