Sha256: 7c97e2974d2b3e44dd1f54d5035e6690f65e5b9835c7140c67b2b2253bf5876d
Contents?: true
Size: 1.41 KB
Versions: 3
Compression:
Stored size: 1.41 KB
Contents
module GoTransverseTractApi module GeneralLedger class GLTransactionBatch class << self # # @param {Long} eid # def find_by_eid eid GoTransverseTractApi.get_response_for(self, {eid: eid}) end # # @param {Long} batch_num # def find_by_batch_num batch_num GoTransverseTractApi.get_response_for(self, {batch_num: batch_num}) end # # @param {DateTime} posted_on # def find_by_posted_on posted_on GoTransverseTractApi.get_response_for(self, {posted_on: posted_on}) end # # @param {Boolean} exported # def find_by_exported exported GoTransverseTractApi.get_response_for(self, {exported: exported}) end # # @param {String} status # def find_by_status status GoTransverseTractApi.get_response_for(self, {status: status}) end # # @param {Long} eid # @param {Hash} gl_transaction_batch # def update eid, gl_transaction_batch data = { glTransactionBatch: { eid: eid, exported: gl_transaction_batch[:exported] } } xml_data = GoTransverseTractApi.generateXML(data, 'glTransactionBatch') GoTransverseTractApi.put_request_for(self, {eid: eid}, xml_data) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems