Changeset 2217020
- Timestamp:
- 12/23/2019 02:39:57 PM (6 years ago)
- Location:
- channelengine-woocommerce/trunk
- Files:
-
- 3 edited
-
admin/class-channel-engine-api.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
woocommerce-channel-engine.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
channelengine-woocommerce/trunk/admin/class-channel-engine-api.php
r2056955 r2217020 382 382 // shipping 383 383 $shippingItem = new WC_Order_Item_Shipping(); 384 $shippingItem->set_total($order->getShippingCostsInclVat() );384 $shippingItem->set_total($order->getShippingCostsInclVat() - $order->getShippingCostsVat()); 385 385 // 386 386 $wc_order->add_item($shippingItem); … … 389 389 $wc_order->set_total($order->getTotalInclVat()); 390 390 391 $wc_order->set_shipping_total($order->getShippingCostsInclVat() );391 $wc_order->set_shipping_total($order->getShippingCostsInclVat() - $order->getShippingCostsVat()); 392 392 393 393 $wc_order->calculate_taxes(); -
channelengine-woocommerce/trunk/readme.txt
r1843386 r2217020 4 4 Tags: woocommerce, channelengine, marketplaces 5 5 Requires at least: 4.4 6 Tested up to: 4.9.46 Tested up to: 5.3.2 7 7 Stable tag: master 8 8 License: MIT -
channelengine-woocommerce/trunk/woocommerce-channel-engine.php
r2056955 r2217020 4 4 Plugin URI: http://channelengine.net 5 5 Description: ChannelEngine plugin for WooCommerce 6 Version: 2. 3.06 Version: 2.4.0 7 7 Author: ChannelEngine 8 8 Author URI: http://channelengine.net
Note: See TracChangeset
for help on using the changeset viewer.