module KashflowApi class Receipt < KashflowApi::SoapObject Keys = KashflowApi::Invoice::Keys Finds = KashflowApi::Invoice::Finds KFObject = { singular: "receipt", plural: "receipts" } XMLKey = "InvoiceDBID" def self.build_arguments(action, object, field, argument) if action == "get" expects argument, String return "#{argument}" if object == "receipt" elsif action == "update" || action == "insert" expects argument, KashflowApi::Receipt return "#{argument.receiptid}#{argument.to_xml}" if field == "Line" return "#{argument.invoicenumber}#{argument.to_xml}" if field == "Number" return "#{argument.to_xml}" if object == "receipt" end end def save if @hash["InvoiceDBID"] == "0" insert_receipt else update_receipt end end private def update_receipt KashflowApi.api.update_receipt(self) end def insert_receipt KashflowApi.api.insert_receipt(self) end end end