* @link http://www.oxidmodule.com */ namespace D3\TaxRatesAdjustment\Models; use OxidEsales\Eshop\Application\Model\Article; use OxidEsales\Eshop\Application\Model\Shop; use OxidEsales\Eshop\Core\Config; use OxidEsales\Eshop\Core\DatabaseProvider; use OxidEsales\Eshop\Core\Exception\StandardException; use OxidEsales\Eshop\Core\Registry; abstract class taxRateAbstract extends genericAbstract { /** * @throws \OxidEsales\Eshop\Core\Exception\DatabaseConnectionException * @throws \OxidEsales\Eshop\Core\Exception\DatabaseErrorException */ public function run() { if (false === $this->isInExecutableTimeRange()) { trigger_error("script shouldn't run outside the defined time range", E_USER_WARNING); die(); }; $this->changeTaxRates(); } /** * @throws \OxidEsales\Eshop\Core\Exception\DatabaseConnectionException * @throws \OxidEsales\Eshop\Core\Exception\DatabaseErrorException */ public function changeTaxRates() { $shop = new Shop(); // use shop list, when parameter -d is set $opts = getopt("s:"); $where = isset($opts['s']) ? "oxid IN (".implode(', ', array_map( function ($a) {return DatabaseProvider::getDb()->quote(trim($a));}, explode(',', $opts['s'])) ).")" : "1"; $q = "SELECT oxid FROM " . $shop->getCoreTableName() . " WHERE ".$where ; foreach ( DatabaseProvider::getDb( DatabaseProvider::FETCH_MODE_ASSOC )->getAll( $q ) as $record ) { $shopId = (int) $record["oxid"]; $this->switchToShop($shopId); $this->changeDefaultTaxRate( $shopId ); $this->changeArticlesTaxRate( $shopId ); } } /** * @param int $shopId */ public function changeDefaultTaxRate($shopId) { $oCurrConfig = new Config(); $newVat = $this->rateChanges[(int) $oCurrConfig->getConfigParam('dDefaultVAT')]; if ($newVat) { $oCurrConfig->saveShopConfVar('num', 'dDefaultVAT', $newVat); echo "default tax rate was sucessfully changed in shop ".$shopId.PHP_EOL; } else { echo "no changeable default tax rate found in shop ".$shopId.PHP_EOL; } } /** * @param int $shopId * * @throws \OxidEsales\Eshop\Core\Exception\DatabaseConnectionException * @throws \OxidEsales\Eshop\Core\Exception\DatabaseErrorException */ public function changeArticlesTaxRate($shopId) { $article = oxNew(Article::class); $q = "SELECT oxid FROM ".$article->getCoreTableName()." WHERE oxvat IN (".implode(', ', array_keys($this->rateChanges)).") AND oxshopid = ".DatabaseProvider::getDb()->quote($shopId); $counter = 0; foreach (DatabaseProvider::getDb(DatabaseProvider::FETCH_MODE_ASSOC)->getAll($q) as $articleRecord) { $articleId = $articleRecord['oxid']; $article = oxNew(Article::class); $article->load($articleId); $article->assign( [ 'oxvat' => $this->rateChanges[(int) $article->getFieldData('oxvat')] ] ); $article->save(); $counter++; } if ($counter) { echo "the tax rate for " . $counter . " article(s) was changed in shop " . $shopId . PHP_EOL; } $q = "SELECT count(*) FROM ".$article->getCoreTableName()." WHERE oxvat IN (".implode(', ', array_keys($this->rateChanges)).") AND oxshopid = ".DatabaseProvider::getDb()->quote($shopId); if ($counter = DatabaseProvider::getDb()->getOne($q)) { echo "the tax rate update for " . $counter . " article(s) was failed in shop " . $shopId . PHP_EOL; } } }