Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2025-07-04 4.8.30
* Added description for canceling of bonus operations

## 2025-06-30 4.8.29
* Fixed zero VAT handling

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.8.29
4.8.30
4 changes: 3 additions & 1 deletion src/include/components/class-wc-retailcrm-loyalty-form.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ public function getInfoLoyalty(array $loyaltyAccount)
'credit_for_order' => __('Сredited for order ', 'retailcrm'),
'burn' => __('Burn','retailcrm'),
'charge_for_order' => __('Сharged for order ', 'retailcrm'),
'credit_for_event' => __('Credited for event', 'retailcrm')
'credit_for_event' => __('Credited for event', 'retailcrm'),
'cancel_of_charge' => __('Сancel of charge for order ', 'retailcrm'),
'cancel_of_credit' => __('Сancel of credit for order ', 'retailcrm'),
];
$currency = ' ' . $loyaltyAccount['loyalty']['currency'];
$burnInfo = $loyaltyAccount['burnBonuses'][0] ?: [];
Expand Down
6 changes: 4 additions & 2 deletions src/languages/retailcrm-es_ES.l10n.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,13 @@
"Total order summ " => "Total de compras ",
"Total summ for next level: " => "Falta para el siguiente nivel: ",
"History" => "Historial de operaciones",
"Сredited for order" => "Acreditado por el pedido",
"Сharged for order" => "Cargado por el pedido",
"Сredited for order " => "Acreditado por el pedido ",
"Сharged for order " => "Cargado por el pedido ",
"Сharged by manager" => "Cobrado por el gerente",
"Сredited by manager" => "Acreditado por el gerente",
"Credited for event" => "Acreditado por evento",
"Сancel of charge for order " => "Cancelación de cobro de un pedido ",
"Сancel of credit for order " => "Cancelación de cargos de un pedido ",
"%s bonuses will expire %s" => "%s bonos expirarán %s",
"%s bonuses will active %s" => "%s bonos se activarán %s",
"Send" => "Enviar",
Expand Down
4 changes: 3 additions & 1 deletion src/languages/retailcrm-ru_RU.l10n.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,13 @@
"Total order summ " => "Сумма покупок ",
"Total summ for next level: " => "Сумма, оставшаяся до перехода на следующий уровень: ",
"History" => "История операций",
"Сredited for order " => "Начислено за заказ",
"Сredited for order " => "Начислено за заказ ",
"Сharged for order " => "Списано за заказ ",
"Сharged by manager" => "Списано менеджером",
"Сredited by manager" => "Начислено менеджером",
"Credited for event" => "Начислено за событие",
"Сancel of charge for order " => "Отмена списания за заказ ",
"Сancel of credit for order " => "Отмена начисления за заказ ",
"%s bonuses will expire %s" => "%s бонусов сгорят %s",
"%s bonuses will active %s" => "%s бонусов ожидают активации %s",
"Send" => "Отправить",
Expand Down
5 changes: 4 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
Requires PHP: 7.1
Requires at least: 5.3
Tested up to: 6.8
Stable tag: 4.8.29
Stable tag: 4.8.30
License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html

Expand Down Expand Up @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i


== Changelog ==
= 4.8.30 =
* Added description for canceling of bonus operations

= 4.8.29 =
* Fixed zero VAT handling

Expand Down
4 changes: 2 additions & 2 deletions src/retailcrm.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Integration plugin for WooCommerce & Simla.com
* Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/
* Version: 4.8.29
* Version: 4.8.30
* Tested up to: 6.8
* Requires Plugins: woocommerce
* WC requires at least: 5.4
Expand All @@ -27,7 +27,7 @@
class WC_Integration_Retailcrm {
const WOOCOMMERCE_SLUG = 'woocommerce';
const WOOCOMMERCE_PLUGIN_PATH = 'woocommerce/woocommerce.php';
const MODULE_VERSION = '4.8.29';
const MODULE_VERSION = '4.8.30';

private static $instance;

Expand Down
2 changes: 1 addition & 1 deletion src/uninstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @link https://wordpress.org/plugins/woo-retailcrm/
*
* @version 4.8.29
* @version 4.8.30
*
* @package RetailCRM
*/
Expand Down