Class: SolidusBactracs::Shipment::ExportableQuery
- Inherits:
-
Object
- Object
- SolidusBactracs::Shipment::ExportableQuery
- Defined in:
- app/queries/solidus_bactracs/shipment/exportable_query.rb
Class Method Summary collapse
Class Method Details
.apply(scope) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'app/queries/solidus_bactracs/shipment/exportable_query.rb', line 6 def self.apply(scope) scope = scope .order(:updated_at) .joins(:order) .merge(::Spree::Order.complete) unless SolidusBactracs.configuration.capture_at_notification scope = scope.where(spree_shipments: { state: ['ready', 'canceled'] }) end unless SolidusBactracs.configuration.export_canceled_shipments scope = scope.where.not(spree_shipments: { state: 'canceled' }) end scope end |