123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\ResourceModel\Order\Creditmemo;
- use Magento\Sales\Api\Data\CreditmemoSearchResultInterface;
- use Magento\Sales\Model\ResourceModel\Order\Collection\AbstractCollection;
- /**
- * Flat sales order creditmemo collection
- *
- * @api
- * @author Magento Core Team <core@magentocommerce.com>
- * @since 100.0.2
- */
- class Collection extends AbstractCollection implements CreditmemoSearchResultInterface
- {
- /**
- * Id field name
- *
- * @var string
- */
- protected $_idFieldName = 'entity_id';
- /**
- * Event prefix
- *
- * @var string
- */
- protected $_eventPrefix = 'sales_order_creditmemo_collection';
- /**
- * Event object
- *
- * @var string
- */
- protected $_eventObject = 'order_creditmemo_collection';
- /**
- * Order field for setOrderFilter
- *
- * @var string
- */
- protected $_orderField = 'order_id';
- /**
- * Model initialization
- *
- * @return void
- */
- protected function _construct()
- {
- $this->_init(
- \Magento\Sales\Model\Order\Creditmemo::class,
- \Magento\Sales\Model\ResourceModel\Order\Creditmemo::class
- );
- }
- /**
- * Used to emulate after load functionality for each item without loading them
- *
- * @return $this
- */
- protected function _afterLoad()
- {
- $this->walk('afterLoad');
- return $this;
- }
- /**
- * Add filtration conditions
- *
- * @param array|null $filter
- * @return $this
- */
- public function getFiltered($filter = null)
- {
- if (is_array($filter)) {
- foreach ($filter as $field => $value) {
- $this->addFieldToFilter($field, $value);
- }
- }
- return $this;
- }
- }
|