12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Tax report resource model with aggregation by updated at
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- namespace Magento\Tax\Model\ResourceModel\Report\Tax;
- class Updatedat extends \Magento\Tax\Model\ResourceModel\Report\Tax\Createdat
- {
- /**
- * Resource initialization
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init('tax_order_aggregated_updated', 'id');
- }
- /**
- * Aggregate Tax data by order updated at
- *
- * @param mixed $from
- * @param mixed $to
- * @return $this
- */
- public function aggregate($from = null, $to = null)
- {
- return $this->_aggregateByOrder('updated_at', $from, $to);
- }
- }
|