私はいつかこれを理解するのに費やします:)
そして、のスクリプト計算の価格、当日、前日と翌日。
更新には3日の間隔が含まれます(Magento 2.2.Xの場合)
cronによるカタログ価格ルールの毎日の更新
/vendor/magento/module-catalog-rule/Cron/DailyCatalogUpdate.php
- 更新には、3日-現在の日-1日前+ 1日後の間隔が含まれます
- このメソッドはcronプロセスから呼び出され、cronはUTC時間で動作し、
- 間隔-1日... +1日のデータを生成する必要があります
ルール設定に従って製品価格のインデックスを再作成します。
/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;
}
}
}
したがって、計算期間
$fromDate = mktime(0, 0, 0, date('m'), date('d') - 1);
$toDate = mktime(0, 0, 0, date('m'), date('d') + 1);
Magento 1.Xでは、GMTから+01:00を超えるタイムゾーンに住んでいる場合にこのバグが発生します。デフォルトのcronjobは01:00に実行され、GMT時間を使用してrule_dateを設定しています。上記の場合、日付は「昨日」になるため、当日の価格ルールはありません。
例:
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"
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;
参考文献
- 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=en