Skip to content

Commit

Permalink
change quote status
Browse files Browse the repository at this point in the history
  • Loading branch information
basilkot committed May 2, 2024
1 parent fe53cca commit 504191c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public async Task<ApproveQuoteResult> Handle(ApproveQuoteCommand request, Cancel
throw new ExecutionError($"Quote status is not '{QuoteStatus.ProposalSent}'") { Code = Constants.ValidationErrorCode };
}

//quote.Status = QuoteStatus.Ordered;
quote.Status = QuoteStatus.Ordered;
var cart = _quoteConverter.ConvertToCartWithTax(quote);
var order = await _customerOrderBuilder.PlaceCustomerOrderFromCartAsync(cart);

Expand Down

0 comments on commit 504191c

Please sign in to comment.