Plugin Directory

Changeset 3196234


Ignore:
Timestamp:
11/25/2024 09:07:38 AM (16 months ago)
Author:
channelengine
Message:

Release version 3.8.16

Location:
channelengine-integration
Files:
584 added
8 edited

Legend:

Unmodified
Added
Removed
  • channelengine-integration/trunk/changelog.txt

    r3191267 r3196234  
    11*** ChannelEngine WooCommerce Integration ***
     2
     3= 2024-11-22 - version 3.8.16 =
     4* Fixed: Resolved pricing display issue by ensuring accurate subtotal and total calculations for prices with and without VAT.
    25
    36= 2024-11-18 - version 3.8.15 =
  • channelengine-integration/trunk/channelengine-wc.php

    r3191267 r3196234  
    44Plugin URI: https://wordpress.org/plugins/channelengine-integration/
    55Description: ChannelEngine plugin for WooCommerce
    6 Version: 3.8.15
     6Version: 3.8.16
    77Text Domain: channelengine-integration
    88Domain Path: /i18n/languages
  • channelengine-integration/trunk/includes/Components/Services/class-orders-service.php

    r3191267 r3196234  
    242242                'sku' => $product->get_sku(),
    243243                'variation_id' => $product->is_type('variation') ? $order_line->getMerchantProductNo() : 0,
    244                 'subtotal' => $config && $config->isEnableVatExcludedPrices()
    245                     ? $order_line->getUnitPriceExclVat()
    246                     : $order_line->getUnitPriceInclVat(),
     244                'subtotal' => $order_line->getUnitPriceExclVat(),
    247245                'quantity' => $order_line->getQuantity(),
    248                 'total' => $config && $config->isEnableVatExcludedPrices()
    249                     ? $order_line->getLineTotalExclVat()
    250                     : $order_line->getLineTotalInclVat(),
     246                'total' => $order_line->getLineTotalExclVat(),
    251247                'total_tax' => 0,
    252248                'subtotal_tax' => 0,
  • channelengine-integration/trunk/readme.txt

    r3191267 r3196234  
    55Requires at least: 4.9
    66Tested up to: 6.6.2
    7 Stable tag: 3.8.15
     7Stable tag: 3.8.16
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4444
    4545== Changelog ==
     46
     47= 3.8.16 =
     48* Fixed: Resolved pricing display issue by ensuring accurate subtotal and total calculations for prices with and without VAT.
     49
     50= 3.8.15 =
     51* Changed: Update tax label to appropriate format
    4652
    4753= 3.8.14 =
  • channelengine-integration/trunk/vendor/autoload.php

    r3191267 r3196234  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit9c1b4e89380eb26e8a9fdd9eaf056f25::getLoader();
     7return ComposerAutoloaderInit6557833e0116ac5ca7944659dd8f37d2::getLoader();
  • channelengine-integration/trunk/vendor/composer/autoload_real.php

    r3191267 r3196234  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit9c1b4e89380eb26e8a9fdd9eaf056f25
     5class ComposerAutoloaderInit6557833e0116ac5ca7944659dd8f37d2
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit9c1b4e89380eb26e8a9fdd9eaf056f25', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit6557833e0116ac5ca7944659dd8f37d2', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit9c1b4e89380eb26e8a9fdd9eaf056f25', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit6557833e0116ac5ca7944659dd8f37d2', 'loadClassLoader'));
    3030
    3131        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3333            require __DIR__ . '/autoload_static.php';
    3434
    35             call_user_func(\Composer\Autoload\ComposerStaticInit9c1b4e89380eb26e8a9fdd9eaf056f25::getInitializer($loader));
     35            call_user_func(\Composer\Autoload\ComposerStaticInit6557833e0116ac5ca7944659dd8f37d2::getInitializer($loader));
    3636        } else {
    3737            $map = require __DIR__ . '/autoload_namespaces.php';
  • channelengine-integration/trunk/vendor/composer/autoload_static.php

    r3191267 r3196234  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit9c1b4e89380eb26e8a9fdd9eaf056f25
     7class ComposerStaticInit6557833e0116ac5ca7944659dd8f37d2
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    110110    {
    111111        return \Closure::bind(function () use ($loader) {
    112             $loader->prefixLengthsPsr4 = ComposerStaticInit9c1b4e89380eb26e8a9fdd9eaf056f25::$prefixLengthsPsr4;
    113             $loader->prefixDirsPsr4 = ComposerStaticInit9c1b4e89380eb26e8a9fdd9eaf056f25::$prefixDirsPsr4;
    114             $loader->classMap = ComposerStaticInit9c1b4e89380eb26e8a9fdd9eaf056f25::$classMap;
     112            $loader->prefixLengthsPsr4 = ComposerStaticInit6557833e0116ac5ca7944659dd8f37d2::$prefixLengthsPsr4;
     113            $loader->prefixDirsPsr4 = ComposerStaticInit6557833e0116ac5ca7944659dd8f37d2::$prefixDirsPsr4;
     114            $loader->classMap = ComposerStaticInit6557833e0116ac5ca7944659dd8f37d2::$classMap;
    115115
    116116        }, null, ClassLoader::class);
  • channelengine-integration/trunk/vendor/composer/installed.json

    r3177316 r3196234  
    2525            "time": "2024-10-28T13:19:14+00:00",
    2626            "type": "library",
    27             "installation-source": "source",
     27            "installation-source": "dist",
    2828            "autoload": {
    2929                "psr-4": {
Note: See TracChangeset for help on using the changeset viewer.