1
0
mirror of synced 2024-11-21 21:06:09 +03:00

Исправление ошибки при получении НДС (#293)

This commit is contained in:
Smiley48 2023-06-01 12:29:25 +03:00 committed by GitHub
parent bc31ffa50c
commit 595d713931
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,6 @@
## 2023-06-01 v.6.3.8
- Исправлена ошибка с получением настроек при генерации файла каталога
## 2023-06-01 v.6.3.7
- Исправлено получение основного сайта для записи логов модуля

View File

@ -1 +1,2 @@
- Исправлено получение основного сайта для записи логов модуля
- Исправлена ошибка с получением настроек при генерации файла каталога

View File

@ -1,6 +1,6 @@
<?php
$arModuleVersion = [
'VERSION' => '6.3.7',
'VERSION' => '6.3.8',
'VERSION_DATE' => '2023-06-01 12:00:00'
];

View File

@ -108,7 +108,7 @@ class XmlOfferBuilder
$this->setup = $setup;
$this->purchasePriceNull = RetailcrmConfigProvider::getCrmPurchasePrice();
/** @var \Intaro\RetailCrm\Icml\SettingsService $settingsService */
$settingsService = ServiceLocator::get(SettingsService::class);
$settingsService = SettingsService::getInstance([], '');
$this->vatRates = $settingsService->vatRates;
$this->measures = $this->prepareMeasures($measure);
$this->defaultServerName = $defaultServerName;