Skip to content

Commit

Permalink
fix: fix total send to pix
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatasoli committed Oct 21, 2024
1 parent e33f3d6 commit 0bd94b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/cart/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ async def add_payment_information( # noqa: PLR0913
customer.customer_uuid,
customer_email=user.email,
description=description,
amount=int(cache_cart.subtotal),
amount=int(cache_cart.total),
)
qr_code = _payment.point_of_interaction.transaction_data.qr_code
qr_code_base64 = (
Expand Down

0 comments on commit 0bd94b7

Please sign in to comment.