Sha256: c31e76cd1284d4c132db01ca15cfd6d740381922f21fc1a413dbcb58fd44ceaf
Contents?: true
Size: 587 Bytes
Versions: 13
Compression:
Stored size: 587 Bytes
Contents
# frozen_string_literal: true require_relative 'currency' require_relative 'subsidiary' require_relative 'journal_entry_line_item' module LedgerSync module NetSuite class JournalEntry < NetSuite::Resource attribute :memo, type: Type::String attribute :trandate, type: Type::Date attribute :tranId, type: Type::String references_one :currency, to: Currency references_one :subsidiary, to: Subsidiary references_many :line_items, to: JournalEntryLineItem def name "JournalEntry: #{transaction_date}" end end end end
Version data entries
13 entries across 13 versions & 1 rubygems