Payment plugin - How to get order total in payment info view

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
10 years ago
Hi,

I'm developing a payment plugin, and I need to get the order total in controller's method "public ActionResult PaymentInfo()".
I need the order total to show some options to customer, these options can change acording with the order value, like the number of installments.

Is it possible? How I get the order total?

Thanks
10 years ago
rcianci wrote:
Hi,

I'm developing a payment plugin, and I need to get the order total in controller's method "public ActionResult PaymentInfo()".
I need the order total to show some options to customer, these options can change acording with the order value, like the number of installments.

Is it possible? How I get the order total?

Thanks


You can always use OrderTotalCalculationService to do the calculation. :D
10 years ago
Yes, inject IOrderTotalCalculationService
and then _orderTotalCalcService.GetShoppingCartTotal(cart);
but, beware - GetShoppingCartTotal will include the payment additional fee if a method has been selected (e.g. back button, etc.)
10 years ago
Thanks, problem solved.
5 years ago
I am not able to achieve this can you please elaborate
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.