43 lines
1.2 KiB
ObjectPascal
43 lines
1.2 KiB
ObjectPascal
|
|
unit uViewDatosFacturaCliente;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||
|
|
Dialogs, uViewBase, DB, uDADataTable, cxControls, cxContainer, cxEdit,
|
||
|
|
cxTextEdit, cxMaskEdit, cxDropDownEdit, cxCalendar, cxDBEdit, StdCtrls,
|
||
|
|
Mask, DBCtrls, ExtCtrls, cxMemo, cxRichEdit, cxDBRichEdit, cxGraphics,
|
||
|
|
ImgList, PngImageList, cxImageComboBox, dxLayoutControl;
|
||
|
|
|
||
|
|
type
|
||
|
|
TfrViewDatosFacturaCliente = class(TfrViewBase)
|
||
|
|
DADataSource: TDADataSource;
|
||
|
|
PngImageList: TPngImageList;
|
||
|
|
dxLayoutControl1Group_Root: TdxLayoutGroup;
|
||
|
|
dxLayoutControl1: TdxLayoutControl;
|
||
|
|
dxLayoutControl1Item4: TdxLayoutItem;
|
||
|
|
eTipo: TcxDBImageComboBox;
|
||
|
|
dxLayoutControl1Item6: TdxLayoutItem;
|
||
|
|
eReferencia: TcxDBTextEdit;
|
||
|
|
dxLayoutControl1Item8: TdxLayoutItem;
|
||
|
|
edtFecha: TcxDBDateEdit;
|
||
|
|
dxLayoutControl1Item10: TdxLayoutItem;
|
||
|
|
edtVencimiento: TcxDBDateEdit;
|
||
|
|
dxLayoutControl1Item12: TdxLayoutItem;
|
||
|
|
cxDBImageComboBox1: TcxDBImageComboBox;
|
||
|
|
dxLayoutControl1Group1: TdxLayoutGroup;
|
||
|
|
private
|
||
|
|
{ Private declarations }
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
frViewDatosFacturaCliente: TfrViewDatosFacturaCliente;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
end.
|