Skip to content

Commit

Permalink
Fixed: removed comments from the api parameters (hotwax#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Oct 18, 2023
1 parent 75c5c83 commit 878850c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ClosePurchaseOrderModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ export default defineComponent({
const eligibleItems = this.order.items.filter((item: any) => item.isChecked && this.isPOItemStatusPending(item))
const responses = await Promise.allSettled(eligibleItems.map(async (item: any) => {
await OrderService.updatePOItemStatus({
// orderId: item.orderId,
// orderItemSeqId: item.orderItemSeqId,
orderId: item.orderId,
orderItemSeqId: item.orderItemSeqId,
statusId: "ITEM_COMPLETED"
})
}))
Expand Down

0 comments on commit 878850c

Please sign in to comment.