Changeset 3281284
- Timestamp:
- 04/24/2025 09:14:32 PM (11 months ago)
- Location:
- asm-manager
- Files:
-
- 10 added
- 8 edited
-
tags/1.3.1 (added)
-
tags/1.3.1/asmplsww.php (added)
-
tags/1.3.1/changelog.txt (added)
-
tags/1.3.1/includes (added)
-
tags/1.3.1/includes/asmplsww_admin_field.php (added)
-
tags/1.3.1/includes/asmplsww_product_field.php (added)
-
tags/1.3.1/includes/asmplsww_query_live.php (added)
-
tags/1.3.1/includes/asmplsww_shipping_api.php (added)
-
tags/1.3.1/includes/asmplsww_shipping_method.php (added)
-
tags/1.3.1/readme.txt (added)
-
trunk/asmplsww.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/asmplsww_admin_field.php (modified) (1 diff)
-
trunk/includes/asmplsww_product_field.php (modified) (1 diff)
-
trunk/includes/asmplsww_query_live.php (modified) (1 diff)
-
trunk/includes/asmplsww_shipping_api.php (modified) (1 diff)
-
trunk/includes/asmplsww_shipping_method.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
asm-manager/trunk/asmplsww.php
r3270642 r3281284 6 6 Author: ASM 7 7 Developer: ASM 8 Version: 1.3 8 Version: 1.3.1 9 9 WC requires at least: 7.0.0 10 10 WC tested up to: 9.8 -
asm-manager/trunk/changelog.txt
r3270642 r3281284 1 1 == Changelog == 2 = 1.3.1 = 3 * Tax Connector support added for native tax rules, as well as AvaTax, TaxJar, and TaxCloud 4 2 5 = 1.3 = 3 6 * Details page improvements -
asm-manager/trunk/includes/asmplsww_admin_field.php
r3270642 r3281284 2 2 /** 3 3 * @package Asm_Admin_Field 4 * @version 1.3 4 * @version 1.3.1 5 5 */ 6 6 -
asm-manager/trunk/includes/asmplsww_product_field.php
r3270642 r3281284 2 2 /** 3 3 * @package ASM product field 4 * @version 1.3 4 * @version 1.3.1 5 5 */ 6 6 -
asm-manager/trunk/includes/asmplsww_query_live.php
r3270642 r3281284 2 2 /** 3 3 * @package ASM Shipping Api 4 * @version 1.3 4 * @version 1.3.1 5 5 */ 6 6 global $woocommerce; -
asm-manager/trunk/includes/asmplsww_shipping_api.php
r3270642 r3281284 2 2 /** 3 3 * @package ASM Shipping Api 4 * @version 1.3 4 * @version 1.3.1 5 5 */ 6 6 /* -
asm-manager/trunk/includes/asmplsww_shipping_method.php
r3270642 r3281284 2 2 /** 3 3 * @package ASM Shipping Method 4 * @version 1.3 4 * @version 1.3.1 5 5 */ 6 6 … … 81 81 'label' => $shippingValues['Name'], 82 82 'cost' => $shippingValues['Rate'], 83 'taxes' => array($shippingValues['TaxRate']), 84 'calc_tax' => 'per_order', 83 85 ); 84 86 $this->add_rate($shipping_single_rate); … … 90 92 'label' => $shippingValues[$key]['Name'], 91 93 'cost' => $shippingValues[$key]['Rate'], 94 'taxes' => array($shippingValues[$key]['TaxRate']), 95 'calc_tax' => 'per_order', 92 96 ); 93 97 $this->add_rate($shipping_rate); -
asm-manager/trunk/readme.txt
r3271140 r3281284 73 73 74 74 == Changelog == 75 = 1.3.1 = 76 * Tax Connector support added for native tax rules, as well as AvaTax, TaxJar, and TaxCloud 77 75 78 = 1.3 = 76 79 * Details page improvements
Note: See TracChangeset
for help on using the changeset viewer.