Skip to content

Commit

Permalink
Improved: appending quantityReceived field in the newly added product (
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Oct 15, 2024
1 parent a2aa34e commit 478e872
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 478e872

Please sign in to comment.