1 Then totale=totale+Documento.TotalAmount End If Next Response.Write(Rdy.FormatCurrency(totale))[/codevb]" name="description" />
 

POSRecord - Esempi

Creato il: 07.11.2022
Esempio : Visualizzazione dell'importo totale dei documenti di tipo "Corrispettivi" all'interno di una registrazione di cassa del giorno

totale=0
For Each Documento In POSRecord.Docs
     If Documento.TotalCalcType>1 Then
         totale=totale+Documento.TotalAmount
     End If
Next
Response.Write(Rdy.FormatCurrency(totale))
Esempio : Visualizzazione dell'importo totale confermato sulla chiusura di cassa

totale=0
For Each TotChiusura In POSRecord.TotalTaxes
   totale = totale + TotChiusura.TaxableAmount + TotChiusura.TaxAmount
Next
Response.Write(Rdy.FormatCurrency(totale))

Login