|
Gets an accounting detail from the document. |
|
|
VARIANT_BOOL GetDetail ( SHORT sIndex, VARIANT* pvAmountDocC, VARIANT* pvQuantity, VARIANT* pvValue1, VARIANT* pvAccount, VARIANT* pvRemark, VARIANT* pvText1, VARIANT* pvAmountDetC, VARIANT* pvDetC, VARIANT* pvTickSysNum ) |
|
|
Parameters | sIndex | [in] The index of the detail, starting from 0. | pvAmountDocC | [out] Returns a VARIANT, subtype DOUBLE, containing the amount (in document currency) of the detail. | pvQuantity | [out] Returns a VARIANT, subtype DOUBLE, containing the quantity of the detail. | pvValue1 | [out] Returns a VARIANT, subtype DOUBLE, containing the free value of the detail. | pvAccount | [out] Returns a VARIANT, subtype BSTR, containing the general account of the detail. | pvRemark | [out] Returns a VARIANT, subtype BSTR, containing the remark of the detail. | pvText1 | [out] Returns a VARIANT, subtype BSTR, containing the free text of the detail. | pvAmountDetC | [out] Returns a VARIANT, subtype DOUBLE, containing the amount (in detail currency) of the detail. | pvDetC | [out] Returns a VARIANT, subtype BSTR, containing the detail currency of the detail. | pvTickSysNum | [out] Returns a VARIANT, subtype LONG, containing the system number of the detail that is ticked by this detail. | | Return value |
True if the detail with the given index exists, otherwise false. |
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Retrieve all detail data of the current document
VARIANT vAmountDocC, vQuantity, vValue1, vAccount, vRemark, vText1, vAmountDetC, vDetC, vTickSysNum;
short sNumDetails;
pFinan->PrepareDocument (paView);
sNumDetails = pFinan->GetNumDetails ();
for (short sDetail = 0; sDetail < sNumDetails; sDetail++)
{
if (pFinan->GetDetail (sDetail, &vAmountDocC, &vQuantity, &vValue1, &vAccount, &vRemark, &vText1, &vAmountDetC, &vDetC, &vTickSysNum))
{
// Process data
}
}
pFinan->CancelDocument ();
|
|
|
C# |
|
// Retrieve all detail data of the current document
object oAmountDocC, oQuantity, oValue1, oAccount, oRemark, oText1, oAmountDetC, oDetC, oTickSysNum;
short sNumDetails;
oFinan.PrepareDocument (ePrepareAction.paView);
sNumDetails = oFinan.GetNumDetails ();
for (short sDetail = 0; sDetail < sNumDetails; sDetail++)
{
if (oFinan.GetDetail (sDetail, out oAmountDocC, out oQuantity, out oValue1, out oAccount, out oRemark, out oText1, out oAmountDetC, out oDetC, out oTickSysNum))
{
// Process data
}
}
oFinan.CancelDocument ();
|
|
|
VBS |
|
' Retrieve all detail data of the current document
Dim oAmountDocC, oQuantity, oValue1, oAccount, oRemark, oText1, oAmountDetC, oDetC, oTickSysNum
Dim sDetail, sNumDetails
Call oFinan.PrepareDocument(paView)
sNumDetails = oFinan.GetNumDetails()
For sDetail = 0 To sNumDetails - 1
If oFinan.GetDetail(sDetail, oAmountDocC, oQuantity, oValue1, oAccount, oRemark, oText1, oAmountDetC, oDetC, oTickSysNum) Then
' Process data
End If
Next
Call oFinan.CancelDocument()
|
|
|
VB.NET |
|
' Retrieve all detail data of the current document
Dim oAmountDocC, oQuantity, oValue1, oAccount, oRemark, oText1, oAmountDetC, oDetC, oTickSysNum As Object
Dim sNumDetails As Short
oFinan.PrepareDocument(ePrepareAction.paView)
sNumDetails = oFinan.GetNumDetails()
For sDetail As Short = 0 To sNumDetails - 1
If oFinan.GetDetail(sDetail, oAmountDocC, oQuantity, oValue1, oAccount, oRemark, oText1, oAmountDetC, oDetC, oTickSysNum) Then
' Process data
End If
Next
Call oFinan.CancelDocument()
|
|