Version multitienda
git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoDesign_FactuGES/trunk@165 93f398dd-4eb6-7a46-baf6-13f46f578da2
This commit is contained in:
parent
1b482f91ee
commit
79a0407668
@ -249,6 +249,16 @@ inherited frViewAlbaranesCliente: TfrViewAlbaranesCliente
|
|||||||
ExplicitWidth = 335
|
ExplicitWidth = 335
|
||||||
Width = 335
|
Width = 335
|
||||||
end
|
end
|
||||||
|
inherited txtFiltroTodo2: TcxTextEdit
|
||||||
|
Left = 419
|
||||||
|
Style.LookAndFeel.SkinName = ''
|
||||||
|
StyleDisabled.LookAndFeel.SkinName = ''
|
||||||
|
StyleFocused.LookAndFeel.SkinName = ''
|
||||||
|
StyleHot.LookAndFeel.SkinName = ''
|
||||||
|
ExplicitLeft = 419
|
||||||
|
ExplicitWidth = 250
|
||||||
|
Width = 250
|
||||||
|
end
|
||||||
end
|
end
|
||||||
inherited TBXAlignmentPanel1: TTBXAlignmentPanel
|
inherited TBXAlignmentPanel1: TTBXAlignmentPanel
|
||||||
Width = 596
|
Width = 596
|
||||||
|
|||||||
@ -90,13 +90,14 @@ type
|
|||||||
procedure SetAlbaranes(const Value: IBizAlbaranCliente);
|
procedure SetAlbaranes(const Value: IBizAlbaranCliente);
|
||||||
public
|
public
|
||||||
procedure AnadirOtrosFiltros; override;
|
procedure AnadirOtrosFiltros; override;
|
||||||
|
procedure ConfigView; override;
|
||||||
property Albaranes: IBizAlbaranCliente read GetAlbaranes write SetAlbaranes;
|
property Albaranes: IBizAlbaranCliente read GetAlbaranes write SetAlbaranes;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
uses SysUtils, DateUtils, variants, windows, uDataModuleAlbaranesCliente, schAlbaranesClienteClient_Intf,
|
uses SysUtils, DateUtils, variants, windows, uDataModuleAlbaranesCliente, schAlbaranesClienteClient_Intf,
|
||||||
uViewGridBase;
|
uViewGridBase, uFactuGES_App;
|
||||||
|
|
||||||
{$R *.dfm}
|
{$R *.dfm}
|
||||||
|
|
||||||
@ -199,6 +200,17 @@ begin
|
|||||||
cxGrid.ActiveLevel.GridView := cxGridView;
|
cxGrid.ActiveLevel.GridView := cxGridView;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TfrViewAlbaranesCliente.ConfigView;
|
||||||
|
begin
|
||||||
|
inherited;
|
||||||
|
|
||||||
|
if ((AppFactuGES.EmpresaActiva.ID = 2) or (AppFactuGES.EmpresaActiva.ID = 3)) then
|
||||||
|
cxGridViewTIENDA.Visible := True
|
||||||
|
else
|
||||||
|
cxGridViewTIENDA.Visible := False;
|
||||||
|
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TfrViewAlbaranesCliente.cxGridActiveTabChanged(Sender: TcxCustomGrid; ALevel: TcxGridLevel);
|
procedure TfrViewAlbaranesCliente.cxGridActiveTabChanged(Sender: TcxCustomGrid; ALevel: TcxGridLevel);
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user