80 lines
3.2 KiB
PHP
80 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* Copyright since 2007 PrestaShop SA and Contributors
|
|
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Open Software License (OSL 3.0)
|
|
* that is bundled with this package in the file LICENSE.md.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/OSL-3.0
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
|
*
|
|
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
|
* @copyright Since 2007 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
|
|
*/
|
|
function update_order_detail_taxes()
|
|
{
|
|
$order_detail_taxes = Db::getInstance()->executeS('
|
|
SELECT `id_order_detail`, `tax_name`, `tax_rate` FROM `' . _DB_PREFIX_ . 'order_detail`
|
|
');
|
|
$id_lang_list = Db::getInstance()->executeS('SELECT id_lang FROM `' . _DB_PREFIX_ . 'lang`');
|
|
|
|
foreach ($order_detail_taxes as $order_detail_tax) {
|
|
if ($order_detail_tax['tax_rate'] == '0.000') {
|
|
continue;
|
|
}
|
|
|
|
$alternative_tax_name = 'Tax ' . $order_detail_tax['tax_rate'];
|
|
$create_tax = true;
|
|
$id_tax = (int) Db::getInstance()->getValue('SELECT t.`id_tax`
|
|
FROM `' . _DB_PREFIX_ . 'tax` t
|
|
LEFT JOIN `' . _DB_PREFIX_ . 'tax_lang` tl ON (tl.id_tax = t.id_tax)
|
|
WHERE tl.`name` = \'' . pSQL($order_detail_tax['tax_name']) . '\' ');
|
|
$id_tax_alt = (int) Db::getInstance()->getValue('SELECT t.`id_tax`
|
|
FROM `' . _DB_PREFIX_ . 'tax` t
|
|
LEFT JOIN `' . _DB_PREFIX_ . 'tax_lang` tl ON (tl.id_tax = t.id_tax)
|
|
WHERE tl.`name` = \'' . pSQL($alternative_tax_name) . '\' ');
|
|
|
|
if ($id_tax || $id_tax_alt) {
|
|
$create_tax = !(bool) Db::getInstance()->getValue('SELECT count(*)
|
|
FROM `' . _DB_PREFIX_ . 'tax`
|
|
WHERE id_tax = ' . (int) $id_tax . '
|
|
AND rate = "' . pSQL($order_detail_tax['tax_rate']) . '"
|
|
');
|
|
}
|
|
|
|
if ($create_tax) {
|
|
$tax_name = (isset($order_detail_tax['tax_name']) ? $order_detail_tax['tax_name'] : $alternative_tax_name);
|
|
|
|
Db::getInstance()->execute(
|
|
'INSERT INTO `' . _DB_PREFIX_ . 'tax` (`rate`, `active`, `deleted`)
|
|
VALUES (\'' . (float) $order_detail_tax['tax_rate'] . '\', 0, 1)'
|
|
);
|
|
|
|
$id_tax = Db::getInstance()->Insert_ID();
|
|
foreach ($id_lang_list as $id_lang) {
|
|
Db::getInstance()->execute('
|
|
INSERT INTO `' . _DB_PREFIX_ . 'tax_lang` (`id_tax`, `id_lang`, `name`)
|
|
VALUES (' . (int) $id_tax . ',' . (int) $id_lang['id_lang'] . ',\'' . pSQL($tax_name) . '\')
|
|
');
|
|
}
|
|
}
|
|
|
|
Db::getInstance()->execute('
|
|
INSERT INTO `' . _DB_PREFIX_ . 'order_detail_tax` (`id_order_detail`, `id_tax`)
|
|
VALUES (' . (int) $order_detail_tax['id_order_detail'] . ',' . $id_tax . ')
|
|
');
|
|
}
|
|
}
|