Skip to content

Commit

Permalink
Merge pull request #401 from amansinghbais/#396
Browse files Browse the repository at this point in the history
Improved: appending quantityReceived field in the newly added product (#396)
  • Loading branch information
ravilodhi authored Oct 15, 2024
2 parents a2aa34e + 478e872 commit 3193839
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/store/modules/shipment/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ const actions: ActionTree<ShipmentState, RootState> = {
const product = {
...item,
quantityAccepted: 0,
quantityOrdered: 0
quantityOrdered: 0,
quantityReceived: 0
}
const params = {
orderId: payload.orderId,
Expand Down

0 comments on commit 3193839

Please sign in to comment.