Skip to content

Commit

Permalink
adjust ahamove item (#108)
Browse files Browse the repository at this point in the history
Co-authored-by: NHT <[email protected]>
  • Loading branch information
nfesta2023 and hoangtuan910 authored Apr 13, 2024
1 parent b5b5182 commit 2431251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/feature/order/order.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1549,7 +1549,7 @@ export class OrderService {
_id: i.sku_id.toString(),
num: i.qty_ordered,
name: `${name} - ${i.portion_customization} - ${i.advanced_taste_customization} - ${i.basic_taste_customization}`,
price: i.price + averageOtherFee,
price: (i.price + averageOtherFee) * i.qty_ordered, //WHAT WRONG WITH AHAMOVE
});
});
const ahamoveOrderRequest: PostAhaOrderRequest = {
Expand Down

0 comments on commit 2431251

Please sign in to comment.