Sha256: 653079716dfb277fe2a6790a2cfe116d7e9febc7e4b6a555aa4c4879cb61ac19
Contents?: true
Size: 432 Bytes
Versions: 7
Compression:
Stored size: 432 Bytes
Contents
# frozen_string_literal: true require 'gecko/record/base' module Gecko module Record class InvoiceLineItem < Base belongs_to :invoice, writeable_on: :create belongs_to :order_line_item # belongs_to :ledger_account attribute :ledger_account_id, Integer attribute :quantity, BigDecimal attribute :position, Integer end class InvoiceLineItemAdapter < BaseAdapter end end end
Version data entries
7 entries across 7 versions & 1 rubygems