SerialNumbers (collection)

Creato il: 11.11.2022
Restituisce lotti e matricole associati alla linea corrente

Sintassi
rowObject.SerialNumbers( ) as Collection

Tipo dati restituito
Collection di oggetti SerialNumber

ESEMPIO
La proprieta' SerialNumbers consente ad esempio di visualizzare maggiori dettagli sui lotti associati ad ogni riga del documento

Option Explicit
Dim lotto
Dim output
 
output = ""
For Each Lotto In DocRow.SerialNumbers
    If output<>"" Then
        output = output & vbCrLf
    End If
    output= output & Lotto.Code & " - " & DocRow.Unit & " " & Lotto.Quantity
Next
Response.Write(output)

Login