Class: AdvancedBilling::ProformaInvoiceStatus
- Inherits:
-
Object
- Object
- AdvancedBilling::ProformaInvoiceStatus
- Defined in:
- lib/advanced_billing/models/proforma_invoice_status.rb
Overview
Proforma Invoice Status.
Constant Summary collapse
- PROFORMA_INVOICE_STATUS =
[ # TODO: Write general description for DRAFT DRAFT = 'draft'.freeze, # TODO: Write general description for VOIDED VOIDED = 'voided'.freeze, # TODO: Write general description for ARCHIVED ARCHIVED = 'archived'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.from_value(value, default_value = DRAFT) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/advanced_billing/models/proforma_invoice_status.rb', line 26 def self.from_value(value, default_value = DRAFT) return default_value if value.nil? str = value.to_s.strip case str.downcase when 'draft' then DRAFT when 'voided' then VOIDED when 'archived' then ARCHIVED else default_value end end |
.validate(value) ⇒ Object
20 21 22 23 24 |
# File 'lib/advanced_billing/models/proforma_invoice_status.rb', line 20 def self.validate(value) return false if value.nil? PROFORMA_INVOICE_STATUS.include?(value) end |