Method: Effective::Order#purchased_without_credit_card?

Defined in:
app/models/effective/order.rb

#purchased_without_credit_card?Boolean

Returns:

  • (Boolean)


422
423
424
# File 'app/models/effective/order.rb', line 422

def purchased_without_credit_card?
  purchased? && EffectiveOrders.credit_card_payment_providers.exclude?(payment_provider)
end