Ich verbringe einige Zeit damit, das zu verstehen :)
Das Skript berechnet die Preise für den aktuellen Tag , den vorherigen Tag und den nächsten Tag .
In welchen Updates enthalten Intervalle 3 Tage [in Magento 2.2.X]
- aktueller Tag - 1 Tage vor + 1 Tage danach
Tägliche Aktualisierung der Katalogpreisregel von cron
/vendor/magento/module-catalog-rule/Cron/DailyCatalogUpdate.php
- Aktualisierungsintervall 3 Tage - aktueller Tag - 1 Tage vor + 1 Tage danach
- Diese Methode wird vom Cron-Prozess aufgerufen, Cron arbeitet in UTC-Zeit und
- Wir sollten Daten für das Intervall -1 Tag ... +1 Tag generieren
Produktpreise gemäß Regeleinstellungen neu indizieren.
/vendor/magento/module-catalog-rule/Model/Indexer/ReindexRuleProductPrice.php
public function execute(
$batchCount,
\Magento\Catalog\Model\Product $product = null,
$useAdditionalTable = false
) {
$fromDate = mktime(0, 0, 0, date('m'), date('d') - 1);
$toDate = mktime(0, 0, 0, date('m'), date('d') + 1);
/**
* Update products rules prices per each website separately
* because of max join limit in mysql
*/
-
-
-
$ruleData['from_time'] = $this->roundTime($ruleData['from_time']);
$ruleData['to_time'] = $this->roundTime($ruleData['to_time']);
/**
* Build prices for each day
*/
for ($time = $fromDate; $time <= $toDate; $time += IndexBuilder::SECONDS_IN_DAY) {
if (($ruleData['from_time'] == 0 ||
$time >= $ruleData['from_time']) && ($ruleData['to_time'] == 0 ||
$time <= $ruleData['to_time'])
) {
$priceKey = $time . '_' . $productKey;
if (isset($stopFlags[$priceKey])) {
continue;
}
if (!isset($dayPrices[$priceKey])) {
$dayPrices[$priceKey] = [
'rule_date' => $time,
'website_id' => $ruleData['website_id'],
'customer_group_id' => $ruleData['customer_group_id'],
'product_id' => $ruleProductId,
'rule_price' => $this->productPriceCalculator->calculate($ruleData),
'latest_start_date' => $ruleData['from_time'],
'earliest_end_date' => $ruleData['to_time'],
];
} else {
$dayPrices[$priceKey]['rule_price'] = $this->productPriceCalculator->calculate(
$ruleData,
$dayPrices[$priceKey]
);
$dayPrices[$priceKey]['latest_start_date'] = max(
$dayPrices[$priceKey]['latest_start_date'],
$ruleData['from_time']
);
$dayPrices[$priceKey]['earliest_end_date'] = min(
$dayPrices[$priceKey]['earliest_end_date'],
$ruleData['to_time']
);
}
if ($ruleData['action_stop']) {
$stopFlags[$priceKey] = true;
}
}
}
Also die Berechnungsdauer
$fromDate = mktime(0, 0, 0, date('m'), date('d') - 1);
$toDate = mktime(0, 0, 0, date('m'), date('d') + 1);
In Magento 1.X tritt dieser Fehler auf, wenn Sie in einer Zeitzone leben, die mehr als +01: 00 von GMT entfernt ist. Der Standard-Cronjob wird um 01:00 Uhr ausgeführt und verwendet die GMT-Zeit, um das Regeldatum festzulegen. In diesem Fall ist das Datum "gestern", sodass für den aktuellen Tag keine Preisregel gilt.
Beispiel:
Current Datetime: 2017-07-19 01:00:00 (at current timezone)
Current Datetime at GMT: 2017-07-18 23:00:00
At 01:00 cronjob runs to write price rules with "$coreDate->gmtTimestamp('Today');"
Function will return "2017-07-18" which in this example is "yesterday"
Lösung in 2.2.X.
/vendor/magento/module-catalog-rule/Model/Indexer/IndexBuilder.php
$fromTime = strtotime($rule->getFromDate());
$toTime = strtotime($rule->getToDate());
$toTime = $toTime ? $toTime + self::SECONDS_IN_DAY - 1 : 0;
Verweise
- http://www.divisionlab.com/solvingmagento/magento-catalog-price-rules/
- https://github.com/magento/magento2/issues/6610
- https://ipfs-sec.stackexchange.cloudflare-ipfs.com/magento/A/question/3161.html
- https://support.google.com/merchants/answer/6069284?hl=de