Sha256: 8780101ea567d2bb7465f1887c8ed84a5a3d3c10c7e820933cbb020bb9ce554e
Contents?: true
Size: 893 Bytes
Versions: 3
Compression:
Stored size: 893 Bytes
Contents
module Dorsale module BillingMachine class InvoiceLine < ActiveRecord::Base self.table_name = "dorsale_billing_machine_invoice_lines" belongs_to :invoice, inverse_of: :lines validates :invoice, presence: true default_scope -> { order(created_at: :asc) } def initialize(*) super assign_default_values end before_validation :assign_default_values before_validation :update_total def assign_default_values self.quantity ||= 0 self.unit_price ||= 0 self.vat_rate ||= ::Dorsale::BillingMachine::DEFAULT_VAT_RATE end def update_total assign_default_values self.total = self.quantity * self.unit_price end after_save :update_invoice_total def update_invoice_total self.invoice.reload.save! end end end end
Version data entries
3 entries across 3 versions & 1 rubygems