Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Invoice save: Difference between revisions

From Catglobe Wiki
Nguyenduyan (talk | contribs)
Created page with "Category:Cost {{HelpFiles}} = Invoice_save = == Syntax == Invoice_save (array invoiceObject); == Arguments == array ''invoiceObject'' == Return type == Empty ==..."
 
Nguyenduyan (talk | contribs)
Line 13: Line 13:
== Arguments ==
== Arguments ==


array ''invoiceObject''
array ''[[CGS Constants list#Invoice constant|invoiceObject]]''


== Return type ==
== Return type ==

Revision as of 09:01, 2 January 2018



Invoice_save

Syntax

Invoice_save (array invoiceObject);

Arguments

array invoiceObject

Return type

Empty

Example

string ledgerName = "test4";
string ledgerEntryDescription = "123";
array ledgerEntry = LedgerEntry_new(ledgerName, ledgerEntryDescription);
string invoiceName = "test1";
number parentResourceId = 11088827;
number eraningUserRId = 10768810;
array invoiceDate = getCurrentDateTime();
array dueDate = getCurrentDateTime();
number templateInvoiceRId = 2111;
array invoice = Invoice_new (invoiceName, parentResourceId, eraningUserRId, invoiceDate, dueDate, templateInvoiceRId);
invoice[INVOICE_LEDGER] = {ledgerEntry};
Invoice_save(invoice);