Sales::WriteDocument (Interface: Sales)
 
Inserts or updates the prepared document.
 
void WriteDocument (
    enum eReportMode eReportMode
)
 
Parameters
eReportMode
[in] A value of the 'eReportMode' enumeration.
 
See Also
CreateSales
Handling accounting documents using the SDK
PrepareDocument
CancelDocument
 
Samples
 
C++
 
// Change the book date of the current document to 17/09/2024
pSales->PrepareDocument (paUpdate);

pSales->pBookDate = COleDateTime (2024, 9, 17, 0, 0, 0).m_dt;

pSales->WriteDocument (rmFullReport);

C#
 
// Change the book date of the current document to 17/09/2024
oSales.PrepareDocument (ePrepareAction.paUpdate);

oSales.pBookDate = new DateTime (2024, 9, 17);

oSales.WriteDocument (eReportMode.rmFullReport);

VBS
 
' Change the book date of the current document to 17/09/2024
Call oSales.PrepareDocument(paUpdate)

oSales.pBookDate = #9/17/2024#

Call oSales.WriteDocument(rmFullReport)

VB.NET
 
' Change the book date of the current document to 17/09/2024
oSales.PrepareDocument(ePrepareAction.paUpdate)

oSales.pBookDate = #9/17/2024#

oSales.WriteDocument (eReportMode.rmFullReport)