This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
FactuGES/Clientes/HistorialFacturacion.pas
2007-06-26 08:08:27 +00:00

53 lines
1.3 KiB
ObjectPascal

unit HistorialFacturacion;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, RdxFrame, RdxTitulos, cxDropDownEdit, cxCalendar, cxDBEdit,
RdxBotones, RdxPaneles, RdxBarras, cxMaskEdit, cxButtonEdit, cxControls,
cxContainer, cxEdit, cxTextEdit, StdCtrls, AdvPanel, ExtCtrls, Configuracion,
cxCheckBox;
type
TfrHistorialFacturacionCliente = class(TRdxFrame)
pnlTitulo: TRdxPanelTituloOperacion;
pnlCuerpo: TPanel;
pnlProveedor: TAdvPanel;
eCodigo: TLabel;
eCodigoCliente: TLabel;
eNombre: TLabel;
eFecha: TLabel;
eNIFCIF: TLabel;
eTipo: TLabel;
CodCliente: TcxTextEdit;
NIFCIF: TcxTextEdit;
Serie: TcxTextEdit;
FechaFactura: TcxTextEdit;
Nombre: TcxTextEdit;
Codigo: TcxButtonEdit;
pnlVistaPrevia: TPanel;
brImprimir: TRdxBarraInferior;
bImprimir: TRdxBoton;
bCancelar: TRdxBoton;
cxDBDateEdit1: TcxDBDateEdit;
cxDBDateEdit2: TcxDBDateEdit;
cxButtonEdit1: TcxButtonEdit;
Label1: TLabel;
Label2: TLabel;
cxCheckBox1: TcxCheckBox;
private
{ Private declarations }
public
{ Public declarations }
end;
var
frHistorialFacturacionCliente: TfrHistorialFacturacionCliente;
implementation
{$R *.dfm}
end.