AADD( aReport , { "Clip2.jpg", "Ombrellone 0006","1", "9.00", "9.00", "08-Lug-2021", "08-Lug-2021","" , "0.00", "0.00" } )
AADD( aReport , { "Clip3.jpg", "Lettino", "1", "5.00", "5.00", "08-Lug-2021", "08-Lug-2021","" , "0.00", "0.00" } )
AADD( aReport , { "Clip4.jpg", "Sdraio", "2", "6.00", "6.00", "08-Lug-2021", "08-Lug-2021","" , "0.00", "0.00" } )
cHtml += cTextIni
cText += "<table style='width:100%'>" + CRLF
cText += "<tr>" + CRLF
cText += check4prn( 1,"<th>Ico</th>" + CRLF )
cText += check4prn( 2,"<th>Descrizione</th>" + CRLF )
cText += check4prn( 3,"<th>Qt.</th>" + CRLF )
cText += check4prn( 4,"<th>Unit.</th>" + CRLF )
cText += check4prn( 5,"<th>ToxQt</th>" + CRLF )
cText += check4prn( 6,"<th>Dal</th>" + CRLF )
cText += check4prn( 7,"<th>Al</th>" + CRLF )
cText += check4prn( 8,"<th>Giorni</th>" + CRLF )
cText += check4prn( 9,"<th>Sconto</th>" + CRLF )
cText += check4prn( 10,"<th>Totale riga</th>" + CRLF )
cText += "</tr>" + CRLF
cHtml += cText
FOR I := 1 to len(aReport)
cText := "<tr>" + CRLF
cText += check4prn( 1,"<td class='mytd'><IMG SRC='beach/" + aReport[I,1] + "' NAME='Grafik1' ALIGN=BOTTOM WIDTH=37 HEIGHT=37 BORDER=0></td>" + CRLF )
cText += check4prn( 2,"<td class='mytd'>" + aReport[I,2] + "</td>" + CRLF )
cText += check4prn( 3,"<td class='mytd'>" + aReport[I,3] + "</td>" + CRLF )
cText += check4prn( 4,"<td class='mytd'>" + aReport[I,4] + "</td>" + CRLF )
cText += check4prn( 5,"<td class='mytd'>" + aReport[I,5] + "</td>" + CRLF )
cText += check4prn( 6,"<td class='mytd'>" + aReport[I,6] + "</td>" + CRLF )
cText += check4prn( 7,"<td class='mytd'>" + aReport[I,7] + "</td>" + CRLF )
cText += check4prn( 8,"<td class='mytd'>" + aReport[I,8] + "</td>" + CRLF )
cText += check4prn( 9,"<td class='mytd'>" + aReport[I,9] + "</td>" + CRLF )
cText += check4prn( 10,"<td class='mytd'>" + aReport[I,10] + "</td>" + CRLF )
cText += "</tr>" + CRLF
cHtml += cText
next
cHtml += "</table> "