Changeset 3260839
- Timestamp:
- 03/24/2025 01:42:08 PM (12 months ago)
- Location:
- mlm-soft-integration/trunk
- Files:
-
- 3 edited
-
CHANGELOG.md (modified) (1 diff)
-
integrations/woocommerce/paymentGateways/eWallet/EWalletApi.php (modified) (1 diff)
-
mlm-soft-integration.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mlm-soft-integration/trunk/CHANGELOG.md
r3257446 r3260839 2 2 3 3 ## Changelog ## 4 5 ## 2025-03-24 - version 3.9.2 6 * EWalletApi: Added shipping tax to `shipping_total` property before creating coupon. 4 7 5 8 ## 2025-03-17 - version 3.9.1 -
mlm-soft-integration/trunk/integrations/woocommerce/paymentGateways/eWallet/EWalletApi.php
r3212008 r3260839 114 114 if ( $origin ) { 115 115 if ( 'checkout' == $origin ) { 116 116 117 $total = WC()->cart->total; 117 118 $subtotal = WC()->cart->subtotal; 118 $shipping_total = WC()->cart->get_shipping_total(); 119 $shipping_total = WC()->cart->get_shipping_total(); 120 121 /** 122 * @since 3.9.2 123 */ 124 $shipping_total_tax = WC()->cart->get_shipping_tax(); 125 if ( $shipping_total_tax > 0 ) { 126 $shipping_total += $shipping_total_tax; 127 } 128 119 129 } else { 130 120 131 $total = $order->get_total(); 121 132 $subtotal = $order->get_subtotal(); 122 133 $shipping_total = $order->get_shipping_total(); 134 135 /** 136 * @since 3.9.2 137 */ 138 $shipping_total_tax = $order->get_shipping_tax(); 139 if ( $shipping_total_tax > 0 ) { 140 $shipping_total += $shipping_total_tax; 141 } 123 142 } 124 143 } -
mlm-soft-integration/trunk/mlm-soft-integration.php
r3257446 r3260839 4 4 Plugin Name: MLM Soft Integration 5 5 Description: WP integration with mlm-soft.com cloud platform 6 Version: 3.9. 16 Version: 3.9.2 7 7 Author: MLM Soft Ltd. 8 8 Author URI: https://mlm-soft.com
Note: See TracChangeset
for help on using the changeset viewer.