Добавлена поддержка PHP 8.1-8.2
This commit is contained in:
parent
0ca2527c5f
commit
198d8b2e9e
@ -1,3 +1,7 @@
|
||||
## 2023-04-10 v.6.3.3
|
||||
- Исправлено некорректное отображение настроек модуля
|
||||
- Добавлена поддержка PHP 8.1-8.2
|
||||
|
||||
## 2023-04-10 v.6.3.2
|
||||
- Добавлена возможность экспорта неактивных товаров и торговых предложений
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
[![Build Status](https://github.com/retailcrm/bitrix-module/workflows/ci/badge.svg)](https://github.com/retailcrm/bitrix-module/actions)
|
||||
[![GitHub release](https://img.shields.io/github/release/retailcrm/bitrix-module.svg?logo=github)](https://github.com/retailcrm/bitrix-module/releases)
|
||||
[![Coverage](https://img.shields.io/codecov/c/gh/retailcrm/bitrix-module/master.svg?logo=codecov)](https://codecov.io/gh/retailcrm/bitrix-module)
|
||||
[![PHP version](https://img.shields.io/badge/PHP->=5.3-blue.svg?logo=php)](https://php.net/)
|
||||
[![PHP version](https://img.shields.io/badge/PHP->=7.4-blue.svg?logo=php)](https://php.net/)
|
||||
|
||||
Bitrix module
|
||||
=============
|
||||
|
@ -1 +1,2 @@
|
||||
- Добавлена возможность экспорта неактивных товаров и торговых предложений
|
||||
- Исправлено некорректное отображение настроек модуля
|
||||
- Добавлена поддержка PHP 8.1-8.2
|
@ -580,7 +580,8 @@ if ($STEP === 1) {
|
||||
} ?>
|
||||
</form>
|
||||
|
||||
<script type="text/javascript" src='/bitrix/js/main/jquery/jquery-1.7.min.js'></script>
|
||||
<?php CJSCore::Init(['jquery']);?>
|
||||
|
||||
<script type="text/javascript">
|
||||
function checkLoadStatus(object)
|
||||
{
|
||||
|
@ -127,7 +127,8 @@ if (isset($arResult['PAYMENT'])) {
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="text/javascript" src="/bitrix/js/main/jquery/jquery-1.7.min.js"></script>
|
||||
<?php CJSCore::Init(['jquery']);?>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('input[name="update"]').on('click', function() {
|
||||
|
@ -76,7 +76,9 @@ if (isset($arResult['ORDER_PROPS'])) {
|
||||
];
|
||||
}
|
||||
?>
|
||||
<script type="text/javascript" src="/bitrix/js/main/jquery/jquery-1.7.min.js"></script>
|
||||
|
||||
<?php CJSCore::Init(['jquery']);?>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
const individual = $("[name='contragent-type-1']").val();
|
||||
|
@ -68,7 +68,8 @@ IncludeModuleLangFile(__FILE__);
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="text/javascript" src="/bitrix/js/main/jquery/jquery-1.7.min.js"></script>
|
||||
<?php CJSCore::Init(['jquery']);?>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
var globStop = false;
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
$arModuleVersion = [
|
||||
'VERSION' => '6.3.2',
|
||||
'VERSION_DATE' => '2023-04-10 18:00:00'
|
||||
'VERSION' => '6.3.3',
|
||||
'VERSION_DATE' => '2023-04-14 15:00:00'
|
||||
];
|
||||
|
@ -999,7 +999,8 @@ if (isset($_POST['Update']) && ($_POST['Update'] === 'Y')) {
|
||||
}
|
||||
?>
|
||||
|
||||
<script type="text/javascript" src="/bitrix/js/main/jquery/jquery-1.7.min.js"></script>
|
||||
<?php CJSCore::Init(['jquery']);?>
|
||||
|
||||
<script type="text/javascript">
|
||||
function createTemplates(donor) {
|
||||
BX.ajax.runAction('intaro:retailcrm.api.adminpanel.createTemplate',
|
||||
|
Loading…
Reference in New Issue
Block a user