2011-11-14 17:40:41 +00:00
|
|
|
unit uViewFiltroImportes;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
|
|
|
Dialogs, uViewBase, cxContainer, cxEdit, cxTextEdit, cxMaskEdit, cxSpinEdit,
|
2012-02-07 17:19:35 +00:00
|
|
|
dxLayoutControl, StdCtrls, cxControls, TBXDkPanels, uViewParametrosInforme,
|
|
|
|
|
uIViewParametrosInforme;
|
2011-11-14 17:40:41 +00:00
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IViewFiltroImportes = interface(IViewParametrosInforme)
|
|
|
|
|
['{AE773F0B-E72A-4A71-9C5C-8E68EC61456A}']
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
TfrViewFiltroImportes = class(TfrViewParametrosInforme, IViewFiltroImportes)
|
|
|
|
|
cbxDesglosado: TCheckBox;
|
|
|
|
|
eImporte: TcxSpinEdit;
|
|
|
|
|
TBXLabel2: TTBXLabel;
|
|
|
|
|
TBXAlignmentPanel1: TTBXAlignmentPanel;
|
|
|
|
|
procedure cbxDesglosadoClick(Sender: TObject);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
|
|
procedure TfrViewFiltroImportes.cbxDesglosadoClick(Sender: TObject);
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
eImporte.Enabled := not eImporte.Enabled;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|