- Code: Select all Expand view RUN
PRINT oPrn FILE ".\PDFS\" + wfecha + "-" + whora + ".pdf"
REPORT oReport ;
TITLE "*** Informe de Entrada al Desosado ***",;
wfecha + " de las " + wHorainic + " hasta las " + wHoraFin ;
HEADER "Fecha: " + dtoc(date()),;
"Hora: " + time() ;
RIGHT ;
FOOTER "Página: " + str(oReport:nPage,4) ;
CENTERED ;
SUMMARY ;
TO DEVICE oPrn
COLUMN TITLE "Cantidad" ;
DATA oRs:Cantidad ;
PICTURE "99,999" ;
SIZE 14 ;
FONT 1 ;
TOTAL
COLUMN TITLE "Peso Neto";
DATA oRs:PesoNeto ;
PICTURE "99,999.99";
SIZE 12 ;
FONT 1 ;
TOTAL
COLUMN TITLE "Peso Promedio";
DATA ( oRs:PesoNeto / oRs:Cantidad ) ;
PICTURE "999,999.99" ;
SIZE 12 ;
FONT 1
GROUP ON oRs:ProductoId ;
HEADER "Producto: " + Alltrim( oRs:ProductoId ) + "-" + oRs:DescProd font 1
END REPORT
oReport:bInit := {|| oRs:movefirst()}
oReport:bSkip := {|| oRs:movenext()}
ACTIVATE REPORT oReport WHILE !oRs:Eof() ON STARTGROUP oReport:NewLine() ;
ON STARTPAGE StartPage()
Este es el resultado, la ultima columna en blanco.
¿Que podrá ser?