This commit is contained in:
parent
57419cadc6
commit
f44cf792b2
@ -1,3 +1,6 @@
|
|||||||
|
## 2023-06-08 v.6.3.12
|
||||||
|
- Исправление критических ошибок при обновлении модуля и php
|
||||||
|
|
||||||
## 2023-06-07 v.6.3.11
|
## 2023-06-07 v.6.3.11
|
||||||
- Исправление критической ошибки при изменении настроек модуля
|
- Исправление критической ошибки при изменении настроек модуля
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
- Исправление критической ошибки при изменении настроек модуля
|
- Исправление критических ошибок при обновлении модуля и php
|
@ -1154,7 +1154,7 @@ class intaro_retailcrm extends CModule
|
|||||||
$agentId = CAgent::AddAgent(
|
$agentId = CAgent::AddAgent(
|
||||||
'CCatalogExport::PreGenerateExport(' . $profileId . ');',
|
'CCatalogExport::PreGenerateExport(' . $profileId . ');',
|
||||||
'catalog',
|
'catalog',
|
||||||
'N',
|
'N'
|
||||||
);
|
);
|
||||||
|
|
||||||
CCatalogExport::Update($profileId, [
|
CCatalogExport::Update($profileId, [
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
$arModuleVersion = [
|
$arModuleVersion = [
|
||||||
'VERSION' => '6.3.11',
|
'VERSION' => '6.3.12',
|
||||||
'VERSION_DATE' => '2023-06-07 18:00:00'
|
'VERSION_DATE' => '2023-06-08 19:00:00'
|
||||||
];
|
];
|
||||||
|
@ -529,10 +529,8 @@ if (isset($_POST['Update']) && ($_POST['Update'] === 'Y')) {
|
|||||||
//discount_round
|
//discount_round
|
||||||
if (htmlspecialchars(trim($_POST['discount_round'])) === 'Y') {
|
if (htmlspecialchars(trim($_POST['discount_round'])) === 'Y') {
|
||||||
$discount_round = 'Y';
|
$discount_round = 'Y';
|
||||||
RegisterModuleDependences("main", "OnBeforeProlog", $mid, "RetailCrmDc", "add");
|
|
||||||
} else {
|
} else {
|
||||||
$discount_round = 'N';
|
$discount_round = 'N';
|
||||||
UnRegisterModuleDependences("main", "OnBeforeProlog", $mid, "RetailCrmDc", "add");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//shipment
|
//shipment
|
||||||
@ -560,10 +558,8 @@ if (isset($_POST['Update']) && ($_POST['Update'] === 'Y')) {
|
|||||||
//purchasePrice_null
|
//purchasePrice_null
|
||||||
if (htmlspecialchars(trim($_POST['purchasePrice_null'])) === 'Y') {
|
if (htmlspecialchars(trim($_POST['purchasePrice_null'])) === 'Y') {
|
||||||
$purchasePrice_null = 'Y';
|
$purchasePrice_null = 'Y';
|
||||||
RegisterModuleDependences("main", "OnBeforeProlog", $mid, "RetailCrmPricePrchase", "add");
|
|
||||||
} else {
|
} else {
|
||||||
$purchasePrice_null = 'N';
|
$purchasePrice_null = 'N';
|
||||||
UnRegisterModuleDependences("main", "OnBeforeProlog", $mid, "RetailCrmPricePrchase", "add");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//version
|
//version
|
||||||
|
@ -1089,6 +1089,10 @@ function update()
|
|||||||
->updateBonusInfoFieldForLp()
|
->updateBonusInfoFieldForLp()
|
||||||
->updateBonusFieldsTypeInHl()
|
->updateBonusFieldsTypeInHl()
|
||||||
->updateDefDiscountFieldTypeInHl();
|
->updateDefDiscountFieldTypeInHl();
|
||||||
|
|
||||||
|
UnRegisterModuleDependences("main", "OnBeforeProlog", 'intaro.retailcrm', "RetailCrmPricePrchase", "add");
|
||||||
|
UnRegisterModuleDependences("main", "OnBeforeProlog", 'intaro.retailcrm', "RetailCrmDc", "add");
|
||||||
|
UnRegisterModuleDependences("main", "OnBeforeProlog", 'intaro.retailcrm', "RetailCrmCc", "add");
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user