Class: Kaui::Account
- Inherits:
-
KillBillClient::Model::Account
- Object
- KillBillClient::Model::Account
- Kaui::Account
- Defined in:
- app/models/kaui/account.rb
Constant Summary collapse
- SENSIVITE_DATA_FIELDS =
%w[name email].freeze
- REMAPPING_FIELDS =
{ 'is_payment_delegated_to_parent' => 'pay_via_parent', 'account_balance' => 'balance', 'bill_cycle_day_local' => 'bcd', 'account_cba' => 'cba', 'is_migrated' => 'migrated' }.freeze
- ADVANCED_SEARCH_COLUMNS =
%w[id external_key email name currency parent_account_id pay_via_parent payment_method_id time_zone country postal_code].freeze
- ADVANCED_SEARCH_NAME_CHANGES =
[%w[pay_via_parent is_payment_delegated_to_parent]].freeze
Instance Attribute Summary collapse
-
#bill_cycle_day_local ⇒ Object
Returns the value of attribute bill_cycle_day_local.
-
#phone ⇒ Object
Returns the value of attribute phone.
Class Method Summary collapse
- .find_by_id_or_key(account_id_or_key, with_balance, with_balance_and_cba, options = {}) ⇒ Object
- .list_or_search(search_key = nil, offset = 0, limit = 10, options = {}) ⇒ Object
Instance Method Summary collapse
- #balance_to_money ⇒ Object
- #cba_to_money ⇒ Object
- #check_account_details_bill_cycle_day_local ⇒ Object
- #check_account_details_phone ⇒ Object
- #persisted? ⇒ Boolean
Instance Attribute Details
#bill_cycle_day_local ⇒ Object
Returns the value of attribute bill_cycle_day_local.
5 6 7 |
# File 'app/models/kaui/account.rb', line 5 def bill_cycle_day_local @bill_cycle_day_local end |
#phone ⇒ Object
Returns the value of attribute phone.
5 6 7 |
# File 'app/models/kaui/account.rb', line 5 def phone @phone end |
Class Method Details
.find_by_id_or_key(account_id_or_key, with_balance, with_balance_and_cba, options = {}) ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'app/models/kaui/account.rb', line 31 def self.find_by_id_or_key(account_id_or_key, with_balance, with_balance_and_cba, = {}) if account_id_or_key =~ /[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}/ begin find_by_id(account_id_or_key, with_balance, with_balance_and_cba, ) rescue StandardError => e begin # account_id_or_key looked like an id, but maybe it's an external key (this will happen in tests)? find_by_external_key(account_id_or_key, with_balance, with_balance_and_cba, ) rescue StandardError => _ # Nope - raise the initial exception raise e end end else find_by_external_key(account_id_or_key, with_balance, with_balance_and_cba, ) end end |
.list_or_search(search_key = nil, offset = 0, limit = 10, options = {}) ⇒ Object
49 50 51 52 53 54 55 |
# File 'app/models/kaui/account.rb', line 49 def self.list_or_search(search_key = nil, offset = 0, limit = 10, = {}) if search_key.present? find_in_batches_by_search_key(search_key, offset, limit, true, false, ) else find_in_batches(offset, limit, true, false, ) end end |
Instance Method Details
#balance_to_money ⇒ Object
57 58 59 |
# File 'app/models/kaui/account.rb', line 57 def balance_to_money Kaui::Base.to_money(account_balance.abs, currency) end |
#cba_to_money ⇒ Object
61 62 63 |
# File 'app/models/kaui/account.rb', line 61 def cba_to_money Kaui::Base.to_money(account_cba.abs, currency) end |
#check_account_details_bill_cycle_day_local ⇒ Object
25 26 27 28 29 |
# File 'app/models/kaui/account.rb', line 25 def check_account_details_bill_cycle_day_local return true if bill_cycle_day_local.to_i.between?(1, 31) false end |
#check_account_details_phone ⇒ Object
19 20 21 22 23 |
# File 'app/models/kaui/account.rb', line 19 def check_account_details_phone return true if phone =~ /\A(?:\+?\d{1,3}\s*-?)?\(?(?:\d{3})?\)?[- ]?\d{3}[- ]?\d{4}\z/i false end |
#persisted? ⇒ Boolean
65 66 67 |
# File 'app/models/kaui/account.rb', line 65 def persisted? !account_id.blank? end |