Errores #484: En pedidos a proveedor cuando envio por correo sale por defecto el precio cuando debe ser al contrario

git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES2/trunk@86 b2cfbe5a-eba1-4a0c-8b32-7feea0a119f2
This commit is contained in:
roberto 2010-10-13 08:38:30 +00:00
parent e8120cbb4c
commit a81426a357

View File

@ -15,9 +15,9 @@ type
function Print(const AListaID : TIntegerList;
const VerPrecios: Boolean = True; const VerRefProveedor: Boolean = True): Boolean;
function ExportToWord(const AID: Integer; const AFileName : String = '';
const VerPrecios: Boolean = True; const VerRefProveedor: Boolean = True): Boolean;
const VerPrecios: Boolean = False; const VerRefProveedor: Boolean = True): Boolean;
function ExportToPDF(const AID: Integer; const AFileName : String = '';
const VerPrecios: Boolean = True; const VerRefProveedor: Boolean = True): Boolean;
const VerPrecios: Boolean = False; const VerRefProveedor: Boolean = True): Boolean;
end;
TPedidosProveedorReportController = class(TControllerBase, IPedidosProveedorReportController)
@ -33,9 +33,9 @@ type
function Print(const AListaID : TIntegerList;
const VerPrecios: Boolean = True; const VerRefProveedor: Boolean = True): Boolean;
function ExportToWord(const AID: Integer; const AFileName : String = '';
const VerPrecios: Boolean = True; const VerRefProveedor: Boolean = True): Boolean;
const VerPrecios: Boolean = False; const VerRefProveedor: Boolean = True): Boolean;
function ExportToPDF(const AID: Integer; const AFileName : String = '';
const VerPrecios: Boolean = True; const VerRefProveedor: Boolean = True): Boolean;
const VerPrecios: Boolean = False; const VerRefProveedor: Boolean = True): Boolean;
end;