_localeResolver = $localeResolver; $this->_shippingFactory = $shippingFactory; } /** * Refresh sales shipment report statistics for last day * * @return $this */ public function aggregateSalesReportShipmentData() { $this->_localeResolver->emulate(0); $currentDate = new \DateTime(); $date = $currentDate->modify('-25 hours'); $this->_shippingFactory->create()->aggregate($date); $this->_localeResolver->revert(); return $this; } }