TReport: como hacer que los TOTALES se impriman al final

Post Reply
RSalazarU
Posts: 177
Joined: Wed Jul 16, 2008 12:59 pm
Location: Cochabamba-Bolivia
Contact:

TReport: como hacer que los TOTALES se impriman al final

Post by RSalazarU »

Hola amigos del foro:

Habra alguna forma de hacer que TReport imprima los totales siempre al final del espacio de impresion (una linea antes del FOOTER)
Ejemplo:
Ahora imprime así

Code: Select all

---------------------------------------
|CANT  |DETALLE              |  VALOR |
---------------------------------------
|  10  |DETALLE              |    100 |
|  20  |DETALLE              |    200 |
---------------------------------------
|      TOTAL                 |    300 |
---------------------------------------
 
Como imprimo así

Code: Select all

---------------------------------------
|CANT  |DETALLE              |  VALOR |
---------------------------------------
|  10  |DETALLE              |    100 |
|  20  |DETALLE              |    200 |
|      |                     |        |
|      |                     |        |
|      |                     |        |
|      |                     |        |
---------------------------------------
|      TOTAL                 |    300 |
---------------------------------------
 
De antemano, muchas gracias por la ayuda.

Rolando
Cochabamba, Bolivia
Last edited by RSalazarU on Tue Nov 24, 2015 5:40 pm, edited 1 time in total.
User avatar
karinha
Posts: 4882
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: TReport: como obligar a que los TOTALES se impriman al final

Post by karinha »

Code: Select all

#include "FiveWin.ch"
#include "report.ch"

STATIC oReport

Function Rep17()

     USE TEST2 NEW // VIA "DBFCDX"

     REPORT oReport ;
          TITLE  "*** Fivewin Report ***"  ;
          PREVIEW

     COLUMN TITLE "St" DATA TEST2->State

     COLUMN TITLE "First Name", "Last Name" ;
            DATA  TEST2->First, TEST2->Last

     COLUMN TITLE "Street", "City"  ;
            DATA  TEST2->Street, TEST2->City

     COLUMN TITLE "   Salary"  ;
            DATA  TEST2->Salary ;
            TOTAL

     END REPORT

     /*
     In Spanish
     */

     /*
     Descriptions for page total and grand total
     */

     oReport:cPageTotal := "Page Total..."
     oReport:cGrandTotal := "Total General..."

     /*
     No Up line on column titles
     */

     oReport:nTitleUpLine := RPT_NOLINE

     /*
     Single total lines
     */

     oReport:nTotalLine := RPT_SINGLELINE

     /*
     Left margin at 1 inch
     */

     oReport:Margin(1, RPT_LEFT, RPT_INCHES)

     ACTIVATE REPORT oReport

     CLOSE TEST2

RETURN NIL
 
João Santos - São Paulo - Brasil
RSalazarU
Posts: 177
Joined: Wed Jul 16, 2008 12:59 pm
Location: Cochabamba-Bolivia
Contact:

(SOLUCIONADO)

Post by RSalazarU »

Modifique la clase TReport()

Añadi la siguiente DATA

Code: Select all

   DATA lColComplete INIT .F.
 
y en el metodo EndPage()

Code: Select all

METHOD EndPage() CLASS TReport

   static lRunning := .f.

   if ::lColComplete .and. ! ::lBreak .and. ::lFinish
      do while ::nRow < ::nLastdRow                      
         ::StartLine( if( ( ::nRow + ::nStdLineHeight ) >= ::nBottomRow, ::nBottomRow - ::nRow -1, ::nStdLineHeight) )
         ::nRow += if( ( ::nRow + ::nStdLineHeight ) >= ::nBottomRow, ::nBottomRow - ::nRow -1, ::nStdLineHeight)     
      enddo   
   endif       

   if ::bEndPage != nil .and. !lRunning
 
Prove con varias reportes: Facturas, Notas de venta, etc., y funciona bien.

Image

Rolando
Cochabamba, Bolivia
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: TReport: como hacer que los TOTALES se impriman al final

Post by Silvio.Falconi »

How you user treport to create a factura ?
Can you post a small sample here ?
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Post Reply