Skip to content

Commit

Permalink
feat: copy the flag from a cart
Browse files Browse the repository at this point in the history
  • Loading branch information
ksavosteev committed Oct 18, 2023
1 parent c875052 commit 69abfb2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ protected virtual CustomerOrder ToOrderModel(ShoppingCart cart)
order.FeeTotalWithTax = cart.FeeTotalWithTax;
order.HandlingTotal = cart.HandlingTotal;
order.HandlingTotalWithTax = cart.HandlingTotalWithTax;
order.IsAnonymous = cart.IsAnonymous;

order.Status = GetInitialOrderStatusAsync(cart).GetAwaiter().GetResult();

Expand Down

0 comments on commit 69abfb2

Please sign in to comment.