module Dolla::Terms

Constants

BANK_FINANCED
NOT_FINANCED

Public Instance Methods

payment_plan() click to toggle source

TODO: when implementing montlhy payments will require to have logic for set if financing is available

# File lib/dolla/terms.rb, line 8
def payment_plan
  bank_account_terms > 1 ? BANK_FINANCED : NOT_FINANCED
end