2007-11-16 20:58:56 +00:00
|
|
|
unit uViewAlbaranesDevProveedor;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
|
|
|
Dialogs, uViewAlbaranesProveedor, cxStyles, cxCustomData, cxGraphics,
|
|
|
|
|
cxFilter, cxData, cxDataStorage, cxEdit, DB, cxDBData, cxImageComboBox,
|
|
|
|
|
cxCurrencyEdit, dxPSGlbl, dxPSUtl, dxPSEngn, dxPrnPg, dxBkgnd, dxWrap,
|
|
|
|
|
dxPrnDev, dxPSCompsProvider, dxPSFillPatterns, dxPSEdgePatterns, dxPgsDlg,
|
|
|
|
|
dxPSCore, ImgList, PngImageList, ActnList, cxGridCustomPopupMenu,
|
2008-01-04 11:16:59 +00:00
|
|
|
cxGridPopupMenu, dxPScxCommon, dxPScxGrid6Lnk, uDADataTable, TB2Item, TBX,
|
2007-11-16 20:58:56 +00:00
|
|
|
TB2Toolbar, TBXDkPanels, TB2Dock, uViewFiltroBase, cxGridLevel,
|
|
|
|
|
cxGridCustomTableView, cxGridTableView, cxGridDBTableView, cxClasses,
|
2008-08-27 16:48:20 +00:00
|
|
|
cxControls, cxGridCustomView, cxGrid, cxTextEdit,
|
|
|
|
|
uDAInterfaces;
|
2007-11-16 20:58:56 +00:00
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IViewAlbaranesDevProveedor = interface(IViewAlbaranesProveedor)
|
|
|
|
|
['{FB031921-EC00-402F-820D-2EFE0EBB8FCC}']
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
TfrViewAlbaranesDevProveedor = class(TfrViewAlbaranesProveedor, IViewAlbaranesDevProveedor)
|
|
|
|
|
procedure CustomViewCreate(Sender: TObject);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
|
|
procedure TfrViewAlbaranesDevProveedor.CustomViewCreate(Sender: TObject);
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
2008-05-20 18:50:02 +00:00
|
|
|
with cxGridViewREF_PED_PROVEEDOR do
|
|
|
|
|
begin
|
|
|
|
|
Visible := False;
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewCALLE do
|
|
|
|
|
begin
|
|
|
|
|
Visible := False;
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewCODIGO_POSTAL do
|
|
|
|
|
begin
|
|
|
|
|
Visible := False;
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewPOBLACION do
|
|
|
|
|
begin
|
|
|
|
|
Visible := False;
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewPROVINCIA do
|
|
|
|
|
begin
|
|
|
|
|
Visible := False;
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
end;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|