git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES/trunk@5 9a1d36f3-7752-2d40-8ccb-50eb49674c68
28 lines
651 B
ObjectPascal
28 lines
651 B
ObjectPascal
unit uViewVendedor;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, uViewContacto, DB, uDADataTable, uViewDireccion, uViewInternet,
|
|
uCustomView, uViewBase, uViewTelefonos, cxControls, cxContainer, cxEdit,
|
|
cxTextEdit, cxDBEdit, ExtCtrls, StdCtrls, cxMaskEdit, cxSpinEdit;
|
|
|
|
type
|
|
IViewVendedor = interface(IViewContacto)
|
|
['{5BCCD062-7B3C-4D93-AF37-EF0418DDA739}']
|
|
end;
|
|
|
|
TfrViewVendedor = class(TfrViewContacto, IViewVendedor)
|
|
Label3: TLabel;
|
|
Panel1: TPanel;
|
|
Label4: TLabel;
|
|
eComision: TcxDBSpinEdit;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|
|
|