2019-06-04 13:33:00 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# This table will save the user's profile data needed for legal accounting (invoices, wallet, etc.)
|
|
|
|
# Legal accounting must be kept for 10 years but GDPR requires that an user can delete his account at any time.
|
|
|
|
# The data will be kept even if the user is deleted, but it will be unlinked from the user's account.
|
2019-05-21 16:07:40 +02:00
|
|
|
class InvoicingProfile < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2019-05-22 12:45:45 +02:00
|
|
|
has_one :address, as: :placeable, dependent: :destroy
|
2019-05-29 14:28:14 +02:00
|
|
|
accepts_nested_attributes_for :address, allow_destroy: true
|
2019-05-22 12:45:45 +02:00
|
|
|
has_one :organization, dependent: :destroy
|
2019-05-29 14:28:14 +02:00
|
|
|
accepts_nested_attributes_for :organization, allow_destroy: false
|
2019-05-22 17:49:22 +02:00
|
|
|
has_many :invoices, dependent: :destroy
|
2019-05-28 16:49:36 +02:00
|
|
|
|
2019-06-03 16:00:09 +02:00
|
|
|
has_one :wallet, dependent: :destroy
|
|
|
|
has_many :wallet_transactions, dependent: :destroy
|
|
|
|
|
2019-06-03 16:51:43 +02:00
|
|
|
has_many :history_values, dependent: :nullify
|
|
|
|
|
2019-06-12 12:22:38 +02:00
|
|
|
has_many :operated_invoices, foreign_key: :operator_profile_id, class_name: 'Invoice', dependent: :nullify
|
|
|
|
|
2019-05-28 16:49:36 +02:00
|
|
|
def full_name
|
|
|
|
# if first_name or last_name is nil, the empty string will be used as a temporary replacement
|
|
|
|
(first_name || '').humanize.titleize + ' ' + (last_name || '').humanize.titleize
|
|
|
|
end
|
2019-05-21 16:07:40 +02:00
|
|
|
end
|