47 lines
1.4 KiB
ObjectPascal
47 lines
1.4 KiB
ObjectPascal
|
|
unit uViewCalculoHonorarios;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||
|
|
Dialogs, uViewBase, cxDropDownEdit, cxCalc, cxDBEdit, cxGroupBox,
|
||
|
|
cxRadioGroup, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit,
|
||
|
|
cxSpinEdit, dxLayoutControl, DB, uDADataTable, ExtCtrls;
|
||
|
|
|
||
|
|
type
|
||
|
|
TfrViewCalculoHonorarios = class(TfrViewBase)
|
||
|
|
edtHonorarios: TcxDBSpinEdit;
|
||
|
|
DADataSource: TDADataSource;
|
||
|
|
dxLayoutControl1Group_Root: TdxLayoutGroup;
|
||
|
|
dxLayoutControl1: TdxLayoutControl;
|
||
|
|
dxLayoutControl1Item1: TdxLayoutItem;
|
||
|
|
dxLayoutControl1Group1: TdxLayoutGroup;
|
||
|
|
dxLayoutControl1Group5: TdxLayoutGroup;
|
||
|
|
cxDBRadioGroup1: TcxDBRadioGroup;
|
||
|
|
dxLayoutControl1Group2: TdxLayoutGroup;
|
||
|
|
dxLayoutControl1Item3: TdxLayoutItem;
|
||
|
|
dxLayoutControl1Group3: TdxLayoutGroup;
|
||
|
|
dxLayoutControl1Item6: TdxLayoutItem;
|
||
|
|
edtPresupuestosIni: TcxDBTextEdit;
|
||
|
|
dxLayoutControl1Item4: TdxLayoutItem;
|
||
|
|
edtPresupuestosFin: TcxDBTextEdit;
|
||
|
|
dxLayoutControl1Item5: TdxLayoutItem;
|
||
|
|
edtImporteHonorarios: TcxDBTextEdit;
|
||
|
|
dxLayoutControl1Group4: TdxLayoutGroup;
|
||
|
|
Bevel2: TBevel;
|
||
|
|
dxLayoutControl1Item7: TdxLayoutItem;
|
||
|
|
private
|
||
|
|
{ Private declarations }
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
frViewCalculoHonorarios: TfrViewCalculoHonorarios;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
end.
|