2007-10-29 19:18:51 +00:00
|
|
|
unit uViewAlbaranesDevCliente;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
|
|
|
Dialogs, uViewAlbaranesCliente, 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, cxGridPopupMenu,
|
2008-01-04 11:16:59 +00:00
|
|
|
dxPScxCommon, dxPScxGrid6Lnk, uDADataTable, TB2Item, TBX, TB2Toolbar,
|
2007-10-29 19:18:51 +00:00
|
|
|
TBXDkPanels, TB2Dock, uViewFiltroBase, cxGridLevel, cxGridCustomTableView,
|
|
|
|
|
cxGridTableView, cxGridDBTableView, cxClasses, cxControls, cxGridCustomView,
|
2008-08-27 16:48:20 +00:00
|
|
|
cxGrid, uDAInterfaces;
|
|
|
|
|
|
2007-10-29 19:18:51 +00:00
|
|
|
type
|
|
|
|
|
IViewAlbaranesDevCliente = interface(IViewAlbaranesCliente)
|
|
|
|
|
['{C3B3534D-DC3C-49E8-9176-77DD079D7A47}']
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
TfrViewAlbaranesDevCliente = class(TfrViewAlbaranesCliente, IViewAlbaranesDevCliente)
|
|
|
|
|
procedure CustomViewCreate(Sender: TObject);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses uViewGrid;
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
|
|
procedure TfrViewAlbaranesDevCliente.CustomViewCreate(Sender: TObject);
|
|
|
|
|
begin
|
|
|
|
|
inherited;
|
|
|
|
|
cxGrid.RootLevelOptions.DetailTabsPosition := dtpNone;
|
2008-05-20 18:50:02 +00:00
|
|
|
|
|
|
|
|
with cxGridViewSITUACION do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewREF_PEDIDO do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewFECHA_PREVISTA_ENVIO do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewFECHA_ENVIO do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewFECHA_RECEPCION do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewCALLE do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewCODIGO_POSTAL do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewPOBLACION do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
with cxGridViewPROVINCIA do
|
|
|
|
|
begin
|
|
|
|
|
VisibleForCustomization := False;
|
|
|
|
|
Visible := False;
|
|
|
|
|
end;
|
2007-10-29 19:18:51 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|