2013-08-06 19:13:49 +04:00
|
|
|
<?php
|
2013-09-05 12:11:29 +04:00
|
|
|
|
2013-08-06 19:13:49 +04:00
|
|
|
if(!check_bitrix_sessid()) return;
|
2013-09-05 12:11:29 +04:00
|
|
|
IncludeModuleLangFile(__FILE__);
|
2016-09-15 16:42:10 +03:00
|
|
|
__IncludeLang(GetLangFileName($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/intaro.retailcrm/lang/", "/icml_export_setup.php"));
|
2013-09-05 12:11:29 +04:00
|
|
|
?>
|
|
|
|
<h3><?=GetMessage("EXPORT_CATALOGS_INFO");?></h3>
|
|
|
|
<?php
|
|
|
|
if(isset($arResult['errCode']) && $arResult['errCode'])
|
|
|
|
echo CAdminMessage::ShowMessage(GetMessage($arResult['errCode']));
|
|
|
|
global $oldValues;
|
|
|
|
if (!empty($oldValues)) {
|
|
|
|
$IBLOCK_EXPORT = $oldValues['IBLOCK_EXPORT'];
|
2013-09-13 16:15:54 +04:00
|
|
|
$IBLOCK_PROPERTY_SKU = $oldValues['IBLOCK_PROPERTY_SKU'];
|
2014-01-23 16:55:04 +04:00
|
|
|
$IBLOCK_PROPERTY_UNIT_SKU = $oldValues['IBLOCK_PROPERTY_UNIT_SKU'];
|
2013-09-13 16:15:54 +04:00
|
|
|
$IBLOCK_PROPERTY_PRODUCT = $oldValues['IBLOCK_PROPERTY_PRODUCT'];
|
2014-01-23 16:55:04 +04:00
|
|
|
$IBLOCK_PROPERTY_UNIT_PRODUCT = $oldValues['IBLOCK_PROPERTY_UNIT_PRODUCT'];
|
2013-09-05 12:11:29 +04:00
|
|
|
$SETUP_FILE_NAME = $oldValues['SETUP_FILE_NAME'];
|
|
|
|
$SETUP_PROFILE_NAME = $oldValues['SETUP_PROFILE_NAME'];
|
2018-12-26 11:41:06 +03:00
|
|
|
$MAX_OFFERS_VALUE = $oldValues['MAX_OFFERS_VALUE'];
|
2013-09-05 12:11:29 +04:00
|
|
|
}
|
|
|
|
?>
|
2013-09-13 16:15:54 +04:00
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
.iblock-export-table-display-none {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2018-10-04 16:28:14 +03:00
|
|
|
<form method="post" action="<?php echo $APPLICATION->GetCurPage(); ?>" >
|
2013-09-23 18:05:37 +04:00
|
|
|
<h3><?=GetMessage("SETTINGS_INFOBLOCK");?></h3>
|
2013-09-05 12:11:29 +04:00
|
|
|
<font class="text"><?=GetMessage("EXPORT_CATALOGS");?><br><br></font>
|
|
|
|
<?
|
|
|
|
if (!isset($IBLOCK_EXPORT) || !is_array($IBLOCK_EXPORT))
|
|
|
|
{
|
|
|
|
$IBLOCK_EXPORT = array();
|
|
|
|
}
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
$iblockPropertiesName = Array(
|
2013-10-02 17:42:20 +04:00
|
|
|
"article" => GetMessage("PROPERTY_ARTICLE_HEADER_NAME"),
|
|
|
|
"manufacturer" => GetMessage("PROPERTY_MANUFACTURER_HEADER_NAME"),
|
|
|
|
"color" => GetMessage("PROPERTY_COLOR_HEADER_NAME"),
|
|
|
|
"size" => GetMessage("PROPERTY_SIZE_HEADER_NAME"),
|
2014-01-23 16:55:04 +04:00
|
|
|
"weight" => GetMessage("PROPERTY_WEIGHT_HEADER_NAME"),
|
|
|
|
"length" => GetMessage("PROPERTY_LENGTH_HEADER_NAME"),
|
|
|
|
"width" => GetMessage("PROPERTY_WIDTH_HEADER_NAME"),
|
|
|
|
"height" => GetMessage("PROPERTY_HEIGHT_HEADER_NAME"),
|
2018-10-04 16:28:14 +03:00
|
|
|
"picture" => GetMessage("PROPERTY_PICTURE_HEADER_NAME"),
|
2014-01-23 16:55:04 +04:00
|
|
|
);
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
$iblockFieldsName = Array(
|
|
|
|
"weight" => Array("code" => "catalog_size" , "name" => GetMessage("SELECT_WEIGHT_PROPERTY_NAME"), 'unit' => 'mass'),
|
|
|
|
"length" => Array("code" => "catalog_length" , "name" => GetMessage("SELECT_LENGTH_PROPERTY_NAME"), 'unit' => 'length'),
|
|
|
|
"width" => Array("code" => "catalog_width" , "name" => GetMessage("SELECT_WIDTH_PROPERTY_NAME"), 'unit' => 'length'),
|
|
|
|
"height" => Array("code" => "catalog_height" , "name" => GetMessage("SELECT_HEIGHT_PROPERTY_NAME"), 'unit' => 'length'),
|
2013-09-13 16:15:54 +04:00
|
|
|
);
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
$iblockPropertiesHint = Array(
|
|
|
|
"article" => Array("ARTICLE", "ART", "ARTNUMBER", "ARTICUL", "ARTIKUL"),
|
|
|
|
"manufacturer" => Array("MANUFACTURER", "PROISVODITEL", "PROISVOD", "PROISV"),
|
|
|
|
"color" => Array("COLOR", "CVET"),
|
|
|
|
"size" => Array("SIZE", "RAZMER"),
|
2014-01-23 16:55:04 +04:00
|
|
|
"weight" => Array("WEIGHT", "VES", "VEC"),
|
|
|
|
"length" => Array("LENGTH", "DLINA"),
|
|
|
|
"width" => Array("WIDTH", "SHIRINA"),
|
|
|
|
"height" => Array("HEIGHT", "VISOTA"),
|
2018-10-04 16:28:14 +03:00
|
|
|
"picture" => Array("PICTURE", "PICTURE"),
|
2014-01-23 16:55:04 +04:00
|
|
|
);
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
$units = Array(
|
|
|
|
'length' => Array(
|
|
|
|
'mm' => GetMessage("UNIT_MEASUREMENT_MM"),
|
|
|
|
'cm' => GetMessage("UNIT_MEASUREMENT_CM"),
|
|
|
|
'm' => GetMessage("UNIT_MEASUREMENT_M"),
|
|
|
|
),
|
|
|
|
'mass' => Array(
|
|
|
|
'mg' => GetMessage("UNIT_MEASUREMENT_MG"),
|
|
|
|
'g' => GetMessage("UNIT_MEASUREMENT_G"),
|
|
|
|
'kg' => GetMessage("UNIT_MEASUREMENT_KG"),
|
|
|
|
)
|
2013-09-13 16:15:54 +04:00
|
|
|
);
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
$hintUnit = Array(
|
|
|
|
'length' => 'mm',
|
|
|
|
'mass' => 'g'
|
|
|
|
);
|
2013-09-05 12:11:29 +04:00
|
|
|
|
|
|
|
$boolAll = false;
|
|
|
|
$intCountChecked = 0;
|
|
|
|
$intCountAvailIBlock = 0;
|
|
|
|
$arIBlockList = array();
|
|
|
|
$db_res = CIBlock::GetList(Array("IBLOCK_TYPE"=>"ASC", "NAME"=>"ASC"),array('CHECK_PERMISSIONS' => 'Y','MIN_PERMISSION' => 'W'));
|
2013-09-13 16:15:54 +04:00
|
|
|
while ($iblock = $db_res->Fetch())
|
2013-09-05 12:11:29 +04:00
|
|
|
{
|
2013-09-13 16:15:54 +04:00
|
|
|
if ($arCatalog = CCatalog::GetByIDExt($iblock["ID"]))
|
2013-09-05 12:11:29 +04:00
|
|
|
{
|
|
|
|
if($arCatalog['CATALOG_TYPE'] == "D" || $arCatalog['CATALOG_TYPE'] == "X" || $arCatalog['CATALOG_TYPE'] == "P")
|
|
|
|
{
|
2013-09-13 16:15:54 +04:00
|
|
|
$propertiesSKU = null;
|
|
|
|
if ($arCatalog['CATALOG_TYPE'] == "X" || $arCatalog['CATALOG_TYPE'] == "P")
|
|
|
|
{
|
|
|
|
$iblockOffer = CCatalogSKU::GetInfoByProductIBlock($iblock["ID"]);
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
$db_properties = CIBlock::GetProperties($iblockOffer['IBLOCK_ID'], Array());
|
|
|
|
while($prop = $db_properties->Fetch())
|
|
|
|
$propertiesSKU[] = $prop;
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
$oldPropertySKU = null;
|
|
|
|
if (isset($IBLOCK_PROPERTY_SKU[$iblock['ID']])) {
|
|
|
|
foreach ($iblockPropertiesName as $key => $prop) {
|
|
|
|
$oldPropertySKU[$key] = $IBLOCK_PROPERTY_SKU[$iblock['ID']][$key];
|
|
|
|
}
|
2013-09-05 12:11:29 +04:00
|
|
|
}
|
2014-01-23 16:55:04 +04:00
|
|
|
$oldPropertyUnitSKU = null;
|
|
|
|
if (isset($IBLOCK_PROPERTY_UNIT_SKU[$iblock['ID']])) {
|
|
|
|
foreach ($iblockPropertiesName as $key => $prop) {
|
|
|
|
$oldPropertyUnitSKU[$key] = $IBLOCK_PROPERTY_UNIT_SKU[$iblock['ID']][$key];
|
|
|
|
}
|
|
|
|
}
|
2018-10-04 16:28:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
$propertiesProduct = null;
|
|
|
|
$db_properties = CIBlock::GetProperties($iblock['ID'], Array());
|
|
|
|
while($prop = $db_properties->Fetch())
|
|
|
|
$propertiesProduct[] = $prop;
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
$oldPropertyProduct = null;
|
|
|
|
if (isset($IBLOCK_PROPERTY_PRODUCT[$iblock['ID']])) {
|
|
|
|
foreach ($iblockPropertiesName as $key => $prop) {
|
|
|
|
$oldPropertyProduct[$key] = $IBLOCK_PROPERTY_PRODUCT[$iblock['ID']][$key];
|
|
|
|
}
|
|
|
|
}
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
$oldPropertyUnitProduct = null;
|
|
|
|
if (isset($IBLOCK_PROPERTY_UNIT_PRODUCT[$iblock['ID']])) {
|
|
|
|
foreach ($iblockPropertiesName as $key => $prop) {
|
|
|
|
$oldPropertyUnitProduct[$key] = $IBLOCK_PROPERTY_UNIT_PRODUCT[$iblock['ID']][$key];
|
|
|
|
}
|
|
|
|
}
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
$arSiteList = array();
|
|
|
|
$rsSites = CIBlock::GetSite($iblock["ID"]);
|
|
|
|
while ($arSite = $rsSites->Fetch())
|
|
|
|
{
|
|
|
|
$arSiteList[] = $arSite["SITE_ID"];
|
|
|
|
}
|
2013-09-05 12:11:29 +04:00
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
if (count($IBLOCK_EXPORT) != 0)
|
|
|
|
$boolExport = (in_array($iblock['ID'], $IBLOCK_EXPORT));
|
|
|
|
else
|
|
|
|
$boolExport = true;
|
|
|
|
|
|
|
|
$arIBlockList[] = array(
|
|
|
|
'ID' => $iblock['ID'],
|
|
|
|
'NAME' => $iblock['NAME'],
|
|
|
|
'IBLOCK_TYPE_ID' => $iblock['IBLOCK_TYPE_ID'],
|
|
|
|
'IBLOCK_EXPORT' => $boolExport,
|
|
|
|
'PROPERTIES_SKU' => $propertiesSKU,
|
|
|
|
'PROPERTIES_PRODUCT' => $propertiesProduct,
|
|
|
|
'OLD_PROPERTY_SKU_SELECT' => $oldPropertySKU,
|
2014-01-23 16:55:04 +04:00
|
|
|
'OLD_PROPERTY_UNIT_SKU_SELECT' => $oldPropertyUnitSKU,
|
2013-09-13 16:15:54 +04:00
|
|
|
'OLD_PROPERTY_PRODUCT_SELECT' => $oldPropertyProduct,
|
2014-01-23 16:55:04 +04:00
|
|
|
'OLD_PROPERTY_UNIT_PRODUCT_SELECT' => $oldPropertyUnitProduct,
|
2013-09-13 16:15:54 +04:00
|
|
|
'SITE_LIST' => '('.implode(' ',$arSiteList).')',
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($boolExport)
|
|
|
|
$intCountChecked++;
|
|
|
|
$intCountAvailIBlock++;
|
2013-09-05 12:11:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (count($IBLOCK_EXPORT) != 0) {
|
|
|
|
if ($intCountChecked == $intCountAvailIBlock)
|
|
|
|
$boolAll = true;
|
|
|
|
} else {
|
|
|
|
$intCountChecked = $intCountAvailIBlock;
|
|
|
|
$boolAll = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
2013-09-23 18:05:37 +04:00
|
|
|
<font class="text" style="font-weight: bold;"><?=GetMessage("CHECK_ALL_INFOBLOCKS");?></font>
|
2018-10-04 16:28:14 +03:00
|
|
|
<input
|
|
|
|
style="vertical-align: middle;"
|
|
|
|
type="checkbox"
|
|
|
|
name="icml_export_all"
|
|
|
|
id="icml_export_all"
|
|
|
|
value="Y"
|
2013-09-13 16:15:54 +04:00
|
|
|
onclick="checkAll(this,<? echo $intCountAvailIBlock; ?>);"
|
|
|
|
<? echo ($boolAll ? ' checked' : ''); ?>>
|
|
|
|
</br>
|
|
|
|
</br>
|
|
|
|
<div>
|
|
|
|
<? $checkBoxCounter = 0;?>
|
|
|
|
<? foreach ($arIBlockList as $key => $arIBlock):?>
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<font class="text" style="font-weight: bold;"><? echo htmlspecialcharsex("[".$arIBlock["IBLOCK_TYPE_ID"]."] ".$arIBlock["NAME"]." ".$arIBlock['SITE_LIST']); ?></font>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
name="IBLOCK_EXPORT[<?=$arIBlock["ID"]?>]"
|
|
|
|
id="IBLOCK_EXPORT<?=++$checkBoxCounter?>"
|
|
|
|
value="<?=$arIBlock["ID"]?>"
|
|
|
|
<? if ($arIBlock['IBLOCK_EXPORT']) echo " checked"; ?>
|
|
|
|
onclick="checkOne(this,<? echo $intCountAvailIBlock; ?>);"
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<br>
|
2018-03-22 16:11:04 +03:00
|
|
|
<div id="IBLOCK_EXPORT_TABLE<?=$checkBoxCounter?>" class="IBLOCK_EXPORT_TABLE" data-type="<?=$arIBlock["ID"]?>">
|
2013-09-13 16:15:54 +04:00
|
|
|
<table class="adm-list-table" id="export_setup" <?=($arIBlock['PROPERTIES_SKU'] == null ? 'style="width: 66%;"': "" )?> >
|
|
|
|
<thead>
|
|
|
|
<tr class="adm-list-table-header">
|
2018-10-04 16:28:14 +03:00
|
|
|
<td class="adm-list-table-cell">
|
2013-10-02 17:42:20 +04:00
|
|
|
<div class="adm-list-table-cell-inner"><?=GetMessage("LOADED_PROPERTY");?></div>
|
2013-09-05 12:11:29 +04:00
|
|
|
</td>
|
|
|
|
<td class="adm-list-table-cell">
|
2013-10-02 17:42:20 +04:00
|
|
|
<div class="adm-list-table-cell-inner"><?=GetMessage("PROPERTY_PRODUCT_HEADER_NAME");?></div>
|
2013-09-05 12:11:29 +04:00
|
|
|
</td>
|
2013-09-13 16:15:54 +04:00
|
|
|
<? if ($arIBlock['PROPERTIES_SKU'] != null): ?>
|
|
|
|
<td class="adm-list-table-cell">
|
2013-10-02 17:42:20 +04:00
|
|
|
<div class="adm-list-table-cell-inner"><?=GetMessage("PROPERTY_OFFER_HEADER_NAME");?></div>
|
2013-09-13 16:15:54 +04:00
|
|
|
</td>
|
|
|
|
<? endif;?>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2013-09-13 16:15:54 +04:00
|
|
|
<? foreach ($iblockPropertiesName as $key => $property): ?>
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
<? $productSelected = false;?>
|
|
|
|
|
|
|
|
<tr class="adm-list-table-row">
|
2013-09-13 16:15:54 +04:00
|
|
|
<td class="adm-list-table-cell">
|
2014-01-23 16:55:04 +04:00
|
|
|
<? echo htmlspecialcharsex($property); ?>
|
|
|
|
</td>
|
|
|
|
<td class="adm-list-table-cell">
|
|
|
|
<select
|
|
|
|
style="width: 200px;"
|
|
|
|
id="IBLOCK_PROPERTY_PRODUCT_<?=$key?><?=$arIBlock["ID"]?>"
|
|
|
|
name="IBLOCK_PROPERTY_PRODUCT_<?=$key?>[<?=$arIBlock["ID"]?>]"
|
|
|
|
class="property-export"
|
2018-03-22 16:11:04 +03:00
|
|
|
data-type="<?=$key?>"
|
2014-01-23 16:55:04 +04:00
|
|
|
onchange="propertyChange(this);">
|
|
|
|
<option value=""></option>
|
|
|
|
<?if (version_compare(SM_VERSION, '14.0.0', '>=') && array_key_exists($key, $iblockFieldsName) && $arIBlock['PROPERTIES_SKU'] == null) :?>
|
|
|
|
<optgroup label="<?=GetMessage("SELECT_FIELD_NAME");?>">
|
|
|
|
<? foreach ($iblockFieldsName as $keyField => $field): ?>
|
|
|
|
|
|
|
|
<? if ($keyField == $key): ?>
|
|
|
|
<option value="<?=$field['code'];?>"
|
|
|
|
<?
|
|
|
|
if ($arIBlock['OLD_PROPERTY_PRODUCT_SELECT'] != null) {
|
|
|
|
if ($field['code'] == $arIBlock['OLD_PROPERTY_PRODUCT_SELECT'][$key] ) {
|
|
|
|
echo " selected";
|
|
|
|
$productSelected = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
foreach ($iblockPropertiesHint[$key] as $hint) {
|
|
|
|
if ($field['code'] == $hint ) {
|
|
|
|
echo " selected";
|
|
|
|
$productSelected = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
>
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
<?=$field['name'];?>
|
|
|
|
</option>
|
|
|
|
<? endif; ?>
|
|
|
|
|
|
|
|
<? endforeach;?>
|
|
|
|
</optgroup>
|
|
|
|
<optgroup label="<?=GetMessage("SELECT_PROPERTY_NAME");?>">
|
|
|
|
<?endif; ?>
|
|
|
|
|
|
|
|
<? foreach ($arIBlock['PROPERTIES_PRODUCT'] as $prop): ?>
|
|
|
|
<option value="<?=$prop['CODE'] ?>"
|
|
|
|
<?
|
2018-03-22 16:11:04 +03:00
|
|
|
if ($prop['USER_TYPE'] == 'directory') {
|
|
|
|
echo 'class="highloadblock-product"';
|
|
|
|
echo 'id="'. $prop['USER_TYPE_SETTINGS']['TABLE_NAME'] .'"';
|
|
|
|
} else {
|
|
|
|
echo 'class="not-highloadblock"';
|
|
|
|
}
|
2014-01-23 16:55:04 +04:00
|
|
|
if ($arIBlock['OLD_PROPERTY_PRODUCT_SELECT'] != null) {
|
|
|
|
if ($prop["CODE"] == $arIBlock['OLD_PROPERTY_PRODUCT_SELECT'][$key] ) {
|
2013-09-13 16:15:54 +04:00
|
|
|
echo " selected";
|
2014-01-23 16:55:04 +04:00
|
|
|
$productSelected = true;
|
2013-09-13 16:15:54 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
foreach ($iblockPropertiesHint[$key] as $hint) {
|
|
|
|
if ($prop["CODE"] == $hint ) {
|
|
|
|
echo " selected";
|
2014-01-23 16:55:04 +04:00
|
|
|
$productSelected = true;
|
2013-09-13 16:15:54 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-23 16:55:04 +04:00
|
|
|
?>
|
|
|
|
>
|
|
|
|
<?=$prop["NAME"];?>
|
|
|
|
</option>
|
|
|
|
<? endforeach;?>
|
|
|
|
<?if (version_compare(SM_VERSION, '14.0.0', '>=') && array_key_exists($key, $iblockFieldsName)){?>
|
|
|
|
</optgroup>
|
|
|
|
<?}?>
|
|
|
|
</select>
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
<?if (array_key_exists($key, $iblockFieldsName)) :?>
|
|
|
|
<select
|
|
|
|
style="width: 100px; margin-left: 50px;"
|
|
|
|
id="IBLOCK_PROPERTY_UNIT_PRODUCT_<?=$key?><?=$arIBlock["ID"]?>"
|
|
|
|
name="IBLOCK_PROPERTY_UNIT_PRODUCT_<?=$key?>[<?=$arIBlock["ID"]?>]"
|
|
|
|
>
|
|
|
|
<? foreach ($units as $unitTypeName => $unitType): ?>
|
|
|
|
<? if ($unitTypeName == $iblockFieldsName[$key]['unit']): ?>
|
|
|
|
<? foreach ($unitType as $keyUnit => $unit): ?>
|
|
|
|
<option value="<?=$keyUnit;?>"
|
|
|
|
<?
|
|
|
|
if ($arIBlock['OLD_PROPERTY_UNIT_PRODUCT_SELECT'] != null) {
|
|
|
|
if ($keyUnit == $arIBlock['OLD_PROPERTY_UNIT_PRODUCT_SELECT'][$key] ) {
|
|
|
|
echo " selected";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($keyUnit == $hintUnit[$unitTypeName]) {
|
|
|
|
echo " selected";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
>
|
|
|
|
<?=$unit?>
|
|
|
|
</option>
|
|
|
|
<? endforeach;?>
|
|
|
|
<?endif; ?>
|
|
|
|
<? endforeach;?>
|
|
|
|
</select>
|
|
|
|
<?endif; ?>
|
2013-09-13 16:15:54 +04:00
|
|
|
</td>
|
2014-01-23 16:55:04 +04:00
|
|
|
<? if ($arIBlock['PROPERTIES_SKU'] != null): ?>
|
|
|
|
<td class="adm-list-table-cell">
|
|
|
|
<select
|
|
|
|
style="width: 200px;"
|
|
|
|
id="IBLOCK_PROPERTY_SKU_<?=$key?><?=$arIBlock["ID"]?>"
|
|
|
|
name="IBLOCK_PROPERTY_SKU_<?=$key?>[<?=$arIBlock["ID"]?>]"
|
|
|
|
class="property-export"
|
2018-03-22 16:11:04 +03:00
|
|
|
data-type="<?=$key?>"
|
2014-01-23 16:55:04 +04:00
|
|
|
onchange="propertyChange(this);">
|
|
|
|
|
|
|
|
<option value=""></option>
|
|
|
|
<?if (version_compare(SM_VERSION, '14.0.0', '>=') && array_key_exists($key, $iblockFieldsName)) :?>
|
|
|
|
<optgroup label="<?=GetMessage("SELECT_FIELD_NAME");?>">
|
|
|
|
<? foreach ($iblockFieldsName as $keyField => $field): ?>
|
|
|
|
|
|
|
|
<? if ($keyField == $key) :?>
|
|
|
|
<option value="<?=$field['code'];?>"
|
2018-10-04 16:28:14 +03:00
|
|
|
<?
|
2014-01-23 16:55:04 +04:00
|
|
|
if (!$productSelected) {
|
|
|
|
if ($arIBlock['OLD_PROPERTY_SKU_SELECT'] != null) {
|
|
|
|
if ($field['code'] == $arIBlock['OLD_PROPERTY_SKU_SELECT'][$key] ) {
|
|
|
|
echo " selected";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
foreach ($iblockPropertiesHint[$key] as $hint) {
|
|
|
|
if ($field['code'] == $hint ) {
|
|
|
|
echo " selected";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}?>
|
|
|
|
>
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
<?=$field['name'];?>
|
|
|
|
</option>
|
|
|
|
<? endif; ?>
|
|
|
|
|
|
|
|
<? endforeach;?>
|
|
|
|
</optgroup>
|
|
|
|
<optgroup label="<?=GetMessage("SELECT_PROPERTY_NAME");?>">
|
|
|
|
<? endif; ?>
|
|
|
|
|
|
|
|
<? foreach ($arIBlock['PROPERTIES_SKU'] as $prop): ?>
|
|
|
|
<option value="<?=$prop['CODE'] ?>"
|
|
|
|
<?
|
2018-03-22 16:11:04 +03:00
|
|
|
if ($prop['USER_TYPE'] == 'directory') {
|
|
|
|
echo 'class="highloadblock"';
|
|
|
|
echo 'id="'. $prop['USER_TYPE_SETTINGS']['TABLE_NAME'] .'"';
|
|
|
|
} else {
|
|
|
|
echo 'class="not-highloadblock"';
|
|
|
|
}
|
2014-01-23 16:55:04 +04:00
|
|
|
if (!$productSelected) {
|
|
|
|
if ($arIBlock['OLD_PROPERTY_SKU_SELECT'] != null) {
|
|
|
|
if ($prop["CODE"] == $arIBlock['OLD_PROPERTY_SKU_SELECT'][$key] ) {
|
|
|
|
echo " selected";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
foreach ($iblockPropertiesHint[$key] as $hint) {
|
|
|
|
if ($prop["CODE"] == $hint ) {
|
|
|
|
echo " selected";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
>
|
|
|
|
<?=$prop["NAME"];?>
|
|
|
|
</option>
|
|
|
|
<? endforeach;?>
|
|
|
|
<? if (version_compare(SM_VERSION, '14.0.0', '>=') && array_key_exists($key, $iblockFieldsName)) : ?>
|
|
|
|
</optgroup>
|
|
|
|
<? endif; ?>
|
|
|
|
</select>
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
<?if (array_key_exists($key, $iblockFieldsName)) :?>
|
|
|
|
<select
|
|
|
|
style="width: 100px; margin-left: 50px;"
|
|
|
|
id="IBLOCK_PROPERTY_UNIT_SKU_<?=$key?><?=$arIBlock["ID"]?>"
|
|
|
|
name="IBLOCK_PROPERTY_UNIT_SKU_<?=$key?>[<?=$arIBlock["ID"]?>]"
|
|
|
|
>
|
|
|
|
<? foreach ($units as $unitTypeName => $unitType): ?>
|
|
|
|
<? if ($unitTypeName == $iblockFieldsName[$key]['unit']): ?>
|
|
|
|
<? foreach ($unitType as $keyUnit => $unit): ?>
|
|
|
|
<option value="<?=$keyUnit;?>"
|
|
|
|
<?
|
|
|
|
if ($arIBlock['OLD_PROPERTY_UNIT_SKU_SELECT'] != null) {
|
|
|
|
if ($keyUnit == $arIBlock['OLD_PROPERTY_UNIT_SKU_SELECT'][$key] ) {
|
|
|
|
echo " selected";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($keyUnit == $hintUnit[$unitTypeName]) {
|
|
|
|
echo " selected";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
>
|
|
|
|
<?=$unit?>
|
|
|
|
</option>
|
|
|
|
<? endforeach;?>
|
|
|
|
<?endif; ?>
|
|
|
|
<? endforeach;?>
|
|
|
|
</select>
|
|
|
|
<?endif; ?>
|
|
|
|
</td>
|
|
|
|
<? endif;?>
|
|
|
|
</tr>
|
2013-09-13 16:15:54 +04:00
|
|
|
<? endforeach;?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<? endforeach;?>
|
|
|
|
</div>
|
|
|
|
|
2013-09-05 12:11:29 +04:00
|
|
|
<input type="hidden" name="count_checked" id="count_checked" value="<? echo $intCountChecked; ?>">
|
|
|
|
<br>
|
2013-09-13 16:15:54 +04:00
|
|
|
|
2013-09-05 12:11:29 +04:00
|
|
|
|
|
|
|
<font class="text"><?=GetMessage("FILENAME");?><br><br></font>
|
|
|
|
<input type="text" name="SETUP_FILE_NAME"
|
|
|
|
value="<?=htmlspecialcharsbx(strlen($SETUP_FILE_NAME) > 0 ?
|
2018-05-23 12:19:59 +03:00
|
|
|
$SETUP_FILE_NAME :
|
|
|
|
(COption::GetOptionString(
|
|
|
|
'catalog',
|
|
|
|
'export_default_path',
|
|
|
|
'/bitrix/catalog_export/'))
|
|
|
|
.'retailcrm'/* .mt_rand(0, 999999) */.'.xml'
|
|
|
|
); ?>" size="50">
|
2013-09-05 12:11:29 +04:00
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
|
2018-12-26 11:41:06 +03:00
|
|
|
<div id="profile-field" >
|
|
|
|
<font class="text"><?=GetMessage("OFFERS_VALUE") . ':';?> <br><br></font>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
name="MAX_OFFERS_VALUE"
|
|
|
|
value="<?= ($MAX_OFFERS_VALUE ? $MAX_OFFERS_VALUE: '');?>"
|
|
|
|
size="15">
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
</div>
|
|
|
|
|
2013-09-05 12:11:29 +04:00
|
|
|
<font class="text"><?=GetMessage("LOAD_PERIOD");?><br><br></font>
|
|
|
|
<input type="radio" name="TYPE_LOADING" value="none" onclick="checkProfile(this);"><?=GetMessage("NOT_LOADING");?><Br>
|
|
|
|
<input type="radio" name="TYPE_LOADING" value="cron" onclick="checkProfile(this);"><?=GetMessage("CRON_LOADING");?><Br>
|
|
|
|
<input type="radio" name="TYPE_LOADING" value="agent" checked onclick="checkProfile(this);"><?=GetMessage("AGENT_LOADING");?><Br>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<font class="text"><?=GetMessage("LOAD_NOW");?> </font>
|
2021-05-31 16:33:02 +03:00
|
|
|
<input id="load-now" onchange="checkLoadStatus(this)" type="checkbox" name="LOAD_NOW" value="now">
|
2013-09-05 12:11:29 +04:00
|
|
|
<br>
|
2021-05-31 16:33:02 +03:00
|
|
|
<div id="loadMessage" hidden><?=GetMessage("LOAD_NOW_MSG");?></div>
|
2013-09-05 12:11:29 +04:00
|
|
|
<br>
|
2014-06-20 16:03:46 +04:00
|
|
|
<font class="text"><?=GetMessage("BASE_PRICE");?> </font>
|
|
|
|
<select name="price-types" class="typeselect">
|
|
|
|
<option value=""></option>
|
|
|
|
<?php foreach($arResult['PRICE_TYPES'] as $priceType): ?>
|
|
|
|
<option value="<?php echo $priceType['ID']; ?>"
|
|
|
|
<?php if($priceType['BASE'] == 'Y') echo 'selected'; ?>>
|
|
|
|
<?php echo $priceType['NAME']; ?>
|
|
|
|
</option>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</select>
|
|
|
|
<br>
|
|
|
|
<br>
|
2013-09-05 12:11:29 +04:00
|
|
|
<br>
|
|
|
|
|
|
|
|
<div id="profile-field" >
|
|
|
|
<font class="text"><?=GetMessage("PROFILE_NAME");?> </font>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
name="SETUP_PROFILE_NAME"
|
|
|
|
value="<?= ($SETUP_PROFILE_NAME ? $SETUP_PROFILE_NAME: GetMessage("PROFILE_NAME_EXAMPLE"));?>"
|
|
|
|
size="30">
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/bitrix/js/main/jquery/jquery-1.7.min.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function checkAll(obj,cnt)
|
|
|
|
{
|
2013-09-23 18:27:47 +04:00
|
|
|
for (i = 0; i < cnt; i++)
|
2018-10-04 16:28:14 +03:00
|
|
|
{
|
2013-09-23 18:27:47 +04:00
|
|
|
if (obj.checked)
|
|
|
|
BX.removeClass('IBLOCK_EXPORT_TABLE'+(i+1),"iblock-export-table-display-none");
|
|
|
|
}
|
|
|
|
var table = BX(obj.id.replace('IBLOCK_EXPORT','IBLOCK_EXPORT_TABLE'));
|
|
|
|
if (obj.checked)
|
|
|
|
BX.removeClass(table,"iblock-export-table-display-none");
|
|
|
|
var easing = new BX.easing({
|
|
|
|
duration : 150,
|
|
|
|
start : {opacity : obj.checked ? 0 : 100 },
|
|
|
|
finish : {opacity: obj.checked ? 100 : 0 },
|
|
|
|
transition : BX.easing.transitions.linear,
|
|
|
|
step : function(state){
|
|
|
|
for (i = 0; i < cnt; i++)
|
2018-05-23 12:19:59 +03:00
|
|
|
{
|
|
|
|
BX('IBLOCK_EXPORT_TABLE'+(i+1)).style.opacity = state.opacity/100;
|
|
|
|
}
|
2013-09-23 18:27:47 +04:00
|
|
|
},
|
|
|
|
complete : function() {
|
|
|
|
for (i = 0; i < cnt; i++)
|
2018-10-04 16:28:14 +03:00
|
|
|
{
|
2013-09-23 18:27:47 +04:00
|
|
|
if (!obj.checked)
|
|
|
|
BX.addClass('IBLOCK_EXPORT_TABLE'+(i+1),"iblock-export-table-display-none");
|
2018-10-04 16:28:14 +03:00
|
|
|
}
|
2013-09-23 18:27:47 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
easing.animate();
|
|
|
|
var boolCheck = obj.checked;
|
|
|
|
for (i = 0; i < cnt; i++)
|
|
|
|
{
|
|
|
|
BX('IBLOCK_EXPORT'+(i+1)).checked = boolCheck;
|
|
|
|
}
|
|
|
|
BX('count_checked').value = (boolCheck ? cnt : 0);
|
2013-09-05 12:11:29 +04:00
|
|
|
};
|
|
|
|
function checkOne(obj,cnt)
|
|
|
|
{
|
2013-09-23 18:27:47 +04:00
|
|
|
var table = BX(obj.id.replace('IBLOCK_EXPORT','IBLOCK_EXPORT_TABLE'));
|
|
|
|
if (obj.checked)
|
|
|
|
BX.removeClass(table,"iblock-export-table-display-none");
|
|
|
|
var easing = new BX.easing({
|
|
|
|
duration : 150,
|
|
|
|
start : {opacity : obj.checked ? 0 : 100 },
|
|
|
|
finish : {opacity: obj.checked ? 100 : 0 },
|
|
|
|
transition : BX.easing.transitions.linear,
|
|
|
|
step : function(state){
|
|
|
|
table.style.opacity = state.opacity/100;
|
|
|
|
},
|
|
|
|
complete : function() {
|
|
|
|
if (!obj.checked)
|
2018-10-04 16:28:14 +03:00
|
|
|
BX.addClass(table,"iblock-export-table-display-none");
|
2013-09-23 18:27:47 +04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
easing.animate();
|
2013-09-05 12:11:29 +04:00
|
|
|
var boolCheck = obj.checked;
|
|
|
|
var intCurrent = parseInt(BX('count_checked').value);
|
|
|
|
intCurrent += (boolCheck ? 1 : -1);
|
|
|
|
BX('icml_export_all').checked = (intCurrent < cnt ? false : true);
|
|
|
|
BX('count_checked').value = intCurrent;
|
|
|
|
};
|
2013-09-23 18:27:47 +04:00
|
|
|
function propertyChange(obj)
|
2013-09-05 12:11:29 +04:00
|
|
|
{
|
2013-09-23 18:27:47 +04:00
|
|
|
if (BX(obj.id).value !== 'none') {
|
2018-03-22 16:11:04 +03:00
|
|
|
if (obj.id.indexOf("SKU") !== -1) {
|
2013-09-23 18:27:47 +04:00
|
|
|
BX(obj.id.replace('SKU','PRODUCT')).value = 'none';
|
2018-03-22 16:11:04 +03:00
|
|
|
var bid = obj.id.replace('SKU','PRODUCT');
|
|
|
|
$("#" + bid).siblings('#highloadblock').remove();
|
2019-05-07 16:41:57 +03:00
|
|
|
} else if(BX(obj.id.replace('PRODUCT','SKU'))){
|
2013-09-23 18:27:47 +04:00
|
|
|
BX(obj.id.replace('PRODUCT','SKU')).value = 'none';
|
2018-03-22 16:11:04 +03:00
|
|
|
var bid = obj.id.replace('PRODUCT','SKU');
|
|
|
|
$("#" + bid).siblings('#highloadblock').remove();
|
|
|
|
}
|
2013-09-23 18:27:47 +04:00
|
|
|
}
|
2018-05-23 12:19:59 +03:00
|
|
|
|
|
|
|
if ($(obj).find('option')[obj.selectedIndex].className == 'not-highloadblock') {
|
|
|
|
var a = $(obj).find('option')[obj.selectedIndex].parent('select').siblings('#highloadblock');
|
|
|
|
$(a).remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($(obj).find('option')[obj.selectedIndex].className == 'highloadblock') {
|
|
|
|
getHbFromAjax($(obj).find('option')[obj.selectedIndex], 'sku');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($(obj).find('option')[obj.selectedIndex].className == 'highloadblock-product') {
|
|
|
|
getHbFromAjax($(obj).find('option')[obj.selectedIndex], 'product');
|
|
|
|
}
|
2013-09-05 12:11:29 +04:00
|
|
|
};
|
2021-05-31 16:33:02 +03:00
|
|
|
|
|
|
|
function checkLoadStatus(object)
|
|
|
|
{
|
|
|
|
if (object.checked) {
|
|
|
|
$('#loadMessage').show();
|
|
|
|
} else {
|
|
|
|
$('#loadMessage').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-23 16:55:04 +04:00
|
|
|
function checkProfile(obj)
|
|
|
|
{
|
|
|
|
if (obj.value !== 'none')
|
|
|
|
$('#profile-field').show();
|
|
|
|
else
|
|
|
|
$('#profile-field').hide();
|
|
|
|
};
|
2018-05-23 12:19:59 +03:00
|
|
|
|
2018-03-22 16:11:04 +03:00
|
|
|
function getHbFromAjax(that, type) {
|
|
|
|
var url = $('td .adm-list-table-cell').parents('form').attr('action');
|
|
|
|
var td = $(that).parents('td .adm-list-table-cell');
|
|
|
|
var select = $(that).parent('select').siblings('#highloadblock');
|
|
|
|
var table_name = $(that).attr('id');
|
|
|
|
var iblock = $(that).parents('.IBLOCK_EXPORT_TABLE').attr('data-type');
|
|
|
|
var key = $(that).parent('select').attr('data-type');
|
|
|
|
|
|
|
|
var step = $('input[name="continue"]').val();
|
|
|
|
var id = $('input[name="id"]').val();
|
|
|
|
var install = $('input[name="install"]').val();
|
|
|
|
var sessid = BX.bitrix_sessid();
|
|
|
|
|
|
|
|
var data = 'install=' + install +'&step=' + step + '&sessid=' + sessid +
|
|
|
|
'&id=' + id + '&ajax=1&table=' + table_name;
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: url,
|
|
|
|
type: 'POST',
|
|
|
|
data: data,
|
|
|
|
dataType: "json",
|
|
|
|
success: function(res) {
|
|
|
|
$(select).remove();
|
|
|
|
$('#waiting').remove();
|
|
|
|
var new_options = '';
|
|
|
|
$.each(res.fields, function(key, value) {
|
|
|
|
new_options += '<option value="' + value + '">' + value + '</option>';
|
|
|
|
});
|
|
|
|
if (type == 'sku') {
|
|
|
|
$(td).append('<select name="highloadblock' + res.table + '_' + key + '[' + iblock + ']" id="highloadblock" style="width: 100px; margin-left: 50px;">' + new_options + '</select>');
|
|
|
|
}
|
|
|
|
if (type == 'product') {
|
|
|
|
$(td).append('<select name="highloadblock_product' + res.table + '_' + key + '[' + iblock + ']" id="highloadblock" style="width: 100px; margin-left: 50px;">' + new_options + '</select>');
|
|
|
|
}
|
2018-10-04 16:28:14 +03:00
|
|
|
|
2018-03-22 16:11:04 +03:00
|
|
|
},
|
|
|
|
beforeSend: function() {
|
|
|
|
$(td).append('<span style="margin-left:50px;" id="waiting"><?=GetMessage("WAIT")?></span>');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-09-05 12:11:29 +04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<?//Следующие переменные должны быть обязательно установлены?>
|
|
|
|
<?=bitrix_sessid_post();?>
|
|
|
|
|
|
|
|
<input type="hidden" name="lang" value="<?php echo LANG; ?>">
|
2016-09-15 16:42:10 +03:00
|
|
|
<input type="hidden" name="id" value="intaro.retailcrm">
|
2013-09-05 12:11:29 +04:00
|
|
|
<input type="hidden" name="install" value="Y">
|
|
|
|
<input type="hidden" name="step" value="6">
|
|
|
|
<input type="hidden" name="continue" value="5">
|
|
|
|
<div style="padding: 1px 13px 2px; height:28px;">
|
|
|
|
<div align="right" style="float:right; width:50%; position:relative;">
|
2021-05-31 16:33:02 +03:00
|
|
|
<input type="submit" name="inst" onclick="BX.showWait()" value="<?= GetMessage("MOD_NEXT_STEP"); ?>"
|
|
|
|
class="adm-btn-save">
|
2013-09-05 12:11:29 +04:00
|
|
|
</div>
|
|
|
|
<div align="left" style="float:right; width:50%; position:relative;">
|
2021-05-31 16:33:02 +03:00
|
|
|
<input type="submit" name="back" value="<?= GetMessage("MOD_PREV_STEP"); ?>" class="adm-btn-save">
|
2013-09-05 12:11:29 +04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|