* Ticket #168 -> En el informe de facturas de cliente, al exportar a Word no hace caso de la pregunta del sello

git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@790 0c75b7a4-871f-7646-8a2f-f78d34cc349f
This commit is contained in:
David Arranz 2008-12-01 17:56:01 +00:00
parent 9c42c97007
commit e136ba4c8f
8 changed files with 10 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -26,6 +26,7 @@ type
FNumCapitulos : Integer;
FCodigoFactura : string;
FNombreFichero : String;
FVerSello : Boolean;
function DarNumCapitulos : Integer;
procedure InsertarConceptos(Tabla : Table);
function Generar : Boolean;
@ -91,6 +92,7 @@ begin
FNombreFichero := Fichero;
FCodigoFactura := Codigo;
FVerSello := VerSello;
_GenerarFactura(Codigo);
Result := True;
end;
@ -271,6 +273,10 @@ begin
ReplaceBookmark('CorreoEmpresa', tbl_Empresa.FieldByName('EMAIL_1').AsString);
ReplaceBookmark('DatosRegistroMercantil', tbl_Empresa.FieldByName('REGISTRO_MERCANTIL').AsString);
if not FVerSello then
ReplaceBookmark('Sello', '');
Close;
end;
Result := True;