Skip to content

Commit

Permalink
Merge pull request #195 from oc-shopaholic/develop
Browse files Browse the repository at this point in the history
Release version 1.22.5
  • Loading branch information
kharanenka authored Jun 28, 2019
2 parents 2d32371 + 8422972 commit 18a8415
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 1 deletion.
12 changes: 12 additions & 0 deletions classes/import/ImportBrandModelFromXML.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@ public function getFields() : array
return parent::getFields();
}

/**
* Start import
* @param $obProgressBar
* @throws
*/
public function import($obProgressBar = null)
{
parent::import($obProgressBar);

$this->deactivateElements();
}

/**
* Prepare array of import data
*/
Expand Down
12 changes: 12 additions & 0 deletions classes/import/ImportCategoryModelFromXML.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ public function getFields() : array
return parent::getFields();
}

/**
* Start import
* @param $obProgressBar
* @throws
*/
public function import($obProgressBar = null)
{
parent::import($obProgressBar);

$this->deactivateElements();
}

/**
* Prepare array of import data
*/
Expand Down
12 changes: 12 additions & 0 deletions classes/import/ImportOfferModelFromXML.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@ public function getFields() : array
return parent::getFields();
}

/**
* Start import
* @param $obProgressBar
* @throws
*/
public function import($obProgressBar = null)
{
parent::import($obProgressBar);

$this->deactivateElements();
}

/**
* Prepare array of import data
*/
Expand Down
12 changes: 12 additions & 0 deletions classes/import/ImportOfferPriceFromXML.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,18 @@ public function getFields() : array
return parent::getFields();
}

/**
* Start import
* @param $obProgressBar
* @throws
*/
public function import($obProgressBar = null)
{
parent::import($obProgressBar);

$this->deactivateElements();
}

/**
* Prepare array of import data
*/
Expand Down
12 changes: 12 additions & 0 deletions classes/import/ImportProductModelFromXML.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,18 @@ public function getFields() : array
return parent::getFields();
}

/**
* Start import
* @param $obProgressBar
* @throws
*/
public function import($obProgressBar = null)
{
parent::import($obProgressBar);

$this->deactivateElements();
}

/**
* Prepare array of import data
*/
Expand Down
4 changes: 3 additions & 1 deletion updates/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,6 @@
1.22.3:
- 'Fixed attaching of children categories to parent category in script of import from XML.'
1.22.4:
- 'Removed deleted offers from sorting by price.'
- 'Removed deleted offers from sorting by price.'
1.22.5:
- 'Fixed bug with deactivating items in import from XML files.'

0 comments on commit 18a8415

Please sign in to comment.