git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES/trunk@4 3f40d355-893c-4141-8e64-b1d9be72e7e7
53 lines
1.3 KiB
ObjectPascal
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.
|