Skip to content

Commit

Permalink
Fix translate for 'INN' field
Browse files Browse the repository at this point in the history
  • Loading branch information
uryvskiy-dima committed Aug 1, 2024
1 parent 4150949 commit 9554777
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## v3.6.8
* Исправлен перевод для поля "ИНН"

## v3.6.7
* Добавлена передача полей "Компания" и "Номер НДС" из заказа CMS в пользовательские поля заказа CRM
* Добавлена передача полей "Компания" и "ИНН" из заказа CMS в пользовательские поля заказа CRM

## v3.6.6
* Добавлена передача поля link при выгрузке брошенных корзин
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.7
3.6.8
2 changes: 1 addition & 1 deletion retailcrm/lib/settings/RetailcrmSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private function createCompanyAndVatNumberFields()
$api = RetailcrmTools::getApiClient();
$locale = RetailcrmTools::getCurrentLanguageISO();
$translate = [
'ru' => ['company' => 'Компания', 'vat_number' => 'Номер НДС'],
'ru' => ['company' => 'Компания', 'vat_number' => 'ИНН'],
'en' => ['company' => 'Company', 'vat_number' => 'VAT number'],
];

Expand Down
2 changes: 1 addition & 1 deletion retailcrm/retailcrm.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

class RetailCRM extends Module
{
const VERSION = '3.6.7';
const VERSION = '3.6.8';

const API_URL = 'RETAILCRM_ADDRESS';
const API_KEY = 'RETAILCRM_API_TOKEN';
Expand Down
2 changes: 1 addition & 1 deletion retailcrm/views/js/app.js

Large diffs are not rendered by default.

0 comments on commit 9554777

Please sign in to comment.