At now categories load from IB of product
This commit is contained in:
parent
f684763ea9
commit
a3a72718f8
@ -22,7 +22,11 @@ class ICMLLoader {
|
|||||||
|
|
||||||
$categories = $this->GetCategories();
|
$categories = $this->GetCategories();
|
||||||
|
|
||||||
$offers = $this->GetOffers();
|
$newCategories = array();
|
||||||
|
$offers = $this->GetOffers($newCategories);
|
||||||
|
foreach ($newCategories as $newCategory) {
|
||||||
|
$categories[] = $this->BuildCategory($newCategory);
|
||||||
|
}
|
||||||
|
|
||||||
$this->PrepareFile();
|
$this->PrepareFile();
|
||||||
|
|
||||||
@ -141,8 +145,8 @@ class ICMLLoader {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function GetOffers()
|
protected function GetOffers(&$newCategories)
|
||||||
{
|
{
|
||||||
$offers = Array();
|
$offers = Array();
|
||||||
foreach ($this->iblocks as $key => $id)
|
foreach ($this->iblocks as $key => $id)
|
||||||
{
|
{
|
||||||
@ -205,12 +209,21 @@ class ICMLLoader {
|
|||||||
$rsOffers = CIBlockElement::GetList(array(), $arFilterOffer, false, false, $arSelectOffer);
|
$rsOffers = CIBlockElement::GetList(array(), $arFilterOffer, false, false, $arSelectOffer);
|
||||||
while ($arOffer = $rsOffers->GetNext()) {
|
while ($arOffer = $rsOffers->GetNext()) {
|
||||||
|
|
||||||
$dbResCategories = CIBlockElement::GetElementGroups($arOffer['ID'], true);
|
$dbResCategories = CIBlockElement::GetElementGroups($product['ID'], true);
|
||||||
while ($arResCategory = $dbResCategories->Fetch()) {
|
while ($arResCategory = $dbResCategories->Fetch()) {
|
||||||
$categoriesString .= "<categoryId>" . $arResCategory["ID"] . "</categoryId>\n";
|
$categoriesString .= "<categoryId>" . $arResCategory["ID"] . "</categoryId>\n";
|
||||||
}
|
}
|
||||||
if ($categoriesString == '')
|
if ($categoriesString == '') {
|
||||||
$categoriesString .= "<categoryId>" . ($this->mainSection + $id) . "</categoryId>\n";
|
|
||||||
|
$catId = $this->mainSection + $id;
|
||||||
|
$categoriesString .= "<categoryId>" . ($catId) . "</categoryId>\n";
|
||||||
|
|
||||||
|
$category = array();
|
||||||
|
$category['ID'] = $catId;
|
||||||
|
$category['NAME'] = 'Основная группа инфоблока ' . $iblock['IBLOCK_DB']['NAME'];
|
||||||
|
|
||||||
|
$newCategories[$catId] = $category;
|
||||||
|
}
|
||||||
$offer = CCatalogProduct::GetByID($arOffer['ID']);
|
$offer = CCatalogProduct::GetByID($arOffer['ID']);
|
||||||
$arOffer['QUANTITY'] = $offer["QUANTITY"];
|
$arOffer['QUANTITY'] = $offer["QUANTITY"];
|
||||||
|
|
||||||
@ -236,8 +249,17 @@ class ICMLLoader {
|
|||||||
while ($arResCategory = $dbResCategories->Fetch()) {
|
while ($arResCategory = $dbResCategories->Fetch()) {
|
||||||
$categoriesString .= "<categoryId>" . $arResCategory["ID"] . "</categoryId>\n";
|
$categoriesString .= "<categoryId>" . $arResCategory["ID"] . "</categoryId>\n";
|
||||||
}
|
}
|
||||||
if ($categoriesString == '')
|
if ($categoriesString == '') {
|
||||||
$categoriesString .= "<categoryId>" . ($this->mainSection + $id) . "</categoryId>\n";
|
|
||||||
|
$catId = $this->mainSection + $id;
|
||||||
|
$categoriesString .= "<categoryId>" . ($catId) . "</categoryId>\n";
|
||||||
|
|
||||||
|
$category = array();
|
||||||
|
$category['ID'] = $catId;
|
||||||
|
$category['NAME'] = 'Основная группа инфоблока ' . $iblock['IBLOCK_DB']['NAME'];
|
||||||
|
|
||||||
|
$newCategories[$catId] = $category;
|
||||||
|
}
|
||||||
|
|
||||||
$offer = CCatalogProduct::GetByID($product['ID']);
|
$offer = CCatalogProduct::GetByID($product['ID']);
|
||||||
$product['QUANTITY'] = $offer["QUANTITY"];
|
$product['QUANTITY'] = $offer["QUANTITY"];
|
||||||
|
@ -190,7 +190,7 @@ if ($STEP==1)
|
|||||||
if ($arIBlock['OLD_PROPERTY_SELECT'] == $prop["CODE"]){
|
if ($arIBlock['OLD_PROPERTY_SELECT'] == $prop["CODE"]){
|
||||||
echo " selected";
|
echo " selected";
|
||||||
} else {
|
} else {
|
||||||
if ($arIBlock['OLD_PROPERTY_SELECT'] != "") {
|
if ($arIBlock['OLD_PROPERTY_SELECT'] == "") {
|
||||||
if ($prop["CODE"] == "ARTICLE" ||
|
if ($prop["CODE"] == "ARTICLE" ||
|
||||||
$prop["CODE"] == "ART" ||
|
$prop["CODE"] == "ART" ||
|
||||||
$prop["CODE"] == "ARTNUMBER" )
|
$prop["CODE"] == "ARTNUMBER" )
|
||||||
|
Loading…
Reference in New Issue
Block a user