diff --git a/src/pages/fg/receiptByPlan.vue b/src/pages/fg/receiptByPlan.vue index 997ed820..9cd7eca8 100644 --- a/src/pages/fg/receiptByPlan.vue +++ b/src/pages/fg/receiptByPlan.vue @@ -306,14 +306,14 @@ //创建上架申请 if(this.dataContent.putAwayRequestSwitch){ if(list.length>0&&list[0].requestNumber){ - createPutawayRequestByPlan(list[0].requestNumber) + await createPutawayRequestByPlan(list[0].requestNumber) } } //创建检验申请 if(this.dataContent.putAwayInspectSwitch){ if(list.length>0&&list[0].requestNumber){ - createInspectRequestByPlan(list[0].requestNumber) + await createInspectRequestByPlan(list[0].requestNumber) } }