Sha256: ecf3ca03d9fc0319a2d011b1df90aa6238759d4a8722c2f13d6a91d6e9b9fdb3
Contents?: true
Size: 433 Bytes
Versions: 13
Compression:
Stored size: 433 Bytes
Contents
module Billing module BillItem extend ActiveSupport::Concern included do acts_as_paranoid if respond_to?(:acts_as_paranoid) has_paper_trail class_name: 'Billing::Version' if respond_to?(:has_paper_trail) delegate :save, to: :bill, prefix: :bill delegate :origins, :payment_types, :tax_groups, to: :bill after_save :bill_save after_destroy :bill_save end end end
Version data entries
13 entries across 13 versions & 1 rubygems