Repaso del combobox de filtro por año.
git-svn-id: https://192.168.0.254/svn/Proyectos.Noviseda_FactuGES2/trunk@63 f33bb606-9f5c-448d-9c99-757f00063c96
This commit is contained in:
parent
9d2c9364a9
commit
7e29fa7456
Binary file not shown.
@ -96,9 +96,12 @@ inherited fEditorGridBase: TfEditorGridBase
|
|||||||
ShrinkMode = tbsmNone
|
ShrinkMode = tbsmNone
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
object lblAno: TSpTBXLabelItem
|
object lblAno: TSpTBXLabelItem
|
||||||
Caption = 'A'#241'o'
|
Caption = 'A'#241'o:'
|
||||||
Visible = False
|
Visible = False
|
||||||
end
|
end
|
||||||
|
object TBControlItem1: TTBControlItem
|
||||||
|
Control = cbxListaAnos
|
||||||
|
end
|
||||||
object sepAno: TSpTBXSeparatorItem
|
object sepAno: TSpTBXSeparatorItem
|
||||||
Visible = False
|
Visible = False
|
||||||
end
|
end
|
||||||
@ -118,11 +121,8 @@ inherited fEditorGridBase: TfEditorGridBase
|
|||||||
object TBXItem37: TSpTBXItem
|
object TBXItem37: TSpTBXItem
|
||||||
Action = actFiltrar
|
Action = actFiltrar
|
||||||
end
|
end
|
||||||
object TBControlItem1: TTBControlItem
|
|
||||||
Control = cbxListaAnos
|
|
||||||
end
|
|
||||||
object cbxListaAnos: TSpTBXComboBox
|
object cbxListaAnos: TSpTBXComboBox
|
||||||
Left = 197
|
Left = 0
|
||||||
Top = 0
|
Top = 0
|
||||||
Width = 145
|
Width = 145
|
||||||
Height = 21
|
Height = 21
|
||||||
|
|||||||
@ -477,7 +477,7 @@ end;
|
|||||||
|
|
||||||
procedure TfEditorAlbaranesCliente.OnListaAnosChange(Sender: TObject);
|
procedure TfEditorAlbaranesCliente.OnListaAnosChange(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
Controller.FiltrarAno(Albaranes, DynWhereDataTable, Text);
|
Controller.FiltrarAno(Albaranes, DynWhereDataTable, cbxListaAnos.Text);
|
||||||
if Albaranes.DataTable.Active then
|
if Albaranes.DataTable.Active then
|
||||||
RefrescarInterno;
|
RefrescarInterno;
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -308,7 +308,7 @@ end;
|
|||||||
|
|
||||||
procedure TfEditorAlbaranesProveedor.OnListaAnosChange(Sender: TObject);
|
procedure TfEditorAlbaranesProveedor.OnListaAnosChange(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
Controller.FiltrarAno(Albaranes, DynWhereDataTable, Text);
|
Controller.FiltrarAno(Albaranes, DynWhereDataTable, cbxListaAnos.Text);
|
||||||
if Albaranes.DataTable.Active then
|
if Albaranes.DataTable.Active then
|
||||||
RefrescarInterno;
|
RefrescarInterno;
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -379,7 +379,7 @@ end;
|
|||||||
|
|
||||||
procedure TfEditorFacturasCliente.OnListaAnosChange(Sender: TObject);
|
procedure TfEditorFacturasCliente.OnListaAnosChange(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
Controller.FiltrarAno(Facturas, DynWhereDataTable, Text);
|
Controller.FiltrarAno(Facturas, DynWhereDataTable, cbxListaAnos.Text);
|
||||||
if Facturas.DataTable.Active then
|
if Facturas.DataTable.Active then
|
||||||
RefrescarInterno;
|
RefrescarInterno;
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -357,7 +357,7 @@ end;
|
|||||||
|
|
||||||
procedure TfEditorFacturasProveedor.OnListaAnosChange(Sender: TObject);
|
procedure TfEditorFacturasProveedor.OnListaAnosChange(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
Controller.FiltrarAno(Facturas, DynWhereDataTable, Text);
|
Controller.FiltrarAno(Facturas, DynWhereDataTable, cbxListaAnos.Text);
|
||||||
if Facturas.DataTable.Active then
|
if Facturas.DataTable.Active then
|
||||||
RefrescarInterno;
|
RefrescarInterno;
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -370,7 +370,7 @@ end;
|
|||||||
|
|
||||||
procedure TfEditorPedidosProveedor.OnListaAnosChange(Sender: TObject);
|
procedure TfEditorPedidosProveedor.OnListaAnosChange(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
Controller.FiltrarAno(Pedidos, DynWhereDataTable, Text);
|
Controller.FiltrarAno(Pedidos, DynWhereDataTable, cbxListaAnos.Text);
|
||||||
if Pedidos.DataTable.Active then
|
if Pedidos.DataTable.Active then
|
||||||
RefrescarInterno;
|
RefrescarInterno;
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -522,7 +522,7 @@ end;
|
|||||||
|
|
||||||
procedure TfEditorPresupuestosCliente.OnListaAnosChange(Sender: TObject);
|
procedure TfEditorPresupuestosCliente.OnListaAnosChange(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
Controller.FiltrarAno(Presupuestos, DynWhereDataTable, Text);
|
Controller.FiltrarAno(Presupuestos, DynWhereDataTable, cbxListaAnos.Text);
|
||||||
if Presupuestos.DataTable.Active then
|
if Presupuestos.DataTable.Active then
|
||||||
RefrescarInterno;
|
RefrescarInterno;
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -3,7 +3,7 @@ unit schRecibosClienteClient_Intf;
|
|||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, DB, SysUtils, uROClasses, uDAInterfaces, uDADataTable, FmtBCD, uROXMLIntf;
|
Classes, DB, schBase_Intf, SysUtils, uROClasses, uDAInterfaces, uDADataTable, FmtBCD, uROXMLIntf;
|
||||||
|
|
||||||
const
|
const
|
||||||
{ Data table rules ids
|
{ Data table rules ids
|
||||||
@ -207,7 +207,7 @@ type
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
{ TListaAnosRecibosDataTableRules }
|
{ TListaAnosRecibosDataTableRules }
|
||||||
TListaAnosRecibosDataTableRules = class(TDADataTableRules, IListaAnosRecibos)
|
TListaAnosRecibosDataTableRules = class(TIntfObjectDADataTableRules, IListaAnosRecibos)
|
||||||
private
|
private
|
||||||
protected
|
protected
|
||||||
{ Property getters and setters }
|
{ Property getters and setters }
|
||||||
@ -440,7 +440,7 @@ type
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
{ TRecibosClienteDataTableRules }
|
{ TRecibosClienteDataTableRules }
|
||||||
TRecibosClienteDataTableRules = class(TDADataTableRules, IRecibosCliente)
|
TRecibosClienteDataTableRules = class(TIntfObjectDADataTableRules, IRecibosCliente)
|
||||||
private
|
private
|
||||||
protected
|
protected
|
||||||
{ Property getters and setters }
|
{ Property getters and setters }
|
||||||
@ -739,7 +739,7 @@ type
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
{ TPagosClienteDataTableRules }
|
{ TPagosClienteDataTableRules }
|
||||||
TPagosClienteDataTableRules = class(TDADataTableRules, IPagosCliente)
|
TPagosClienteDataTableRules = class(TIntfObjectDADataTableRules, IPagosCliente)
|
||||||
private
|
private
|
||||||
protected
|
protected
|
||||||
{ Property getters and setters }
|
{ Property getters and setters }
|
||||||
@ -1014,7 +1014,7 @@ type
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
{ TRecibosCompensadosCliDataTableRules }
|
{ TRecibosCompensadosCliDataTableRules }
|
||||||
TRecibosCompensadosCliDataTableRules = class(TDADataTableRules, IRecibosCompensadosCli)
|
TRecibosCompensadosCliDataTableRules = class(TIntfObjectDADataTableRules, IRecibosCompensadosCli)
|
||||||
private
|
private
|
||||||
protected
|
protected
|
||||||
{ Property getters and setters }
|
{ Property getters and setters }
|
||||||
|
|||||||
@ -191,7 +191,7 @@ end;
|
|||||||
|
|
||||||
procedure TfEditorRecibosProveedor.OnListaAnosChange(Sender: TObject);
|
procedure TfEditorRecibosProveedor.OnListaAnosChange(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
Controller.FiltrarAno(RecibosProveedor, DynWhereDataTable, Text);
|
Controller.FiltrarAno(RecibosProveedor, DynWhereDataTable, cbxListaAnos.Text);
|
||||||
if RecibosProveedor.DataTable.Active then
|
if RecibosProveedor.DataTable.Active then
|
||||||
RefrescarInterno;
|
RefrescarInterno;
|
||||||
end;
|
end;
|
||||||
|
|||||||
Binary file not shown.
@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ProjectGuid>{ebdcd25d-40d7-4146-91ec-a0ea4aa1dcd1}</ProjectGuid>
|
<ProjectGuid>{ebdcd25d-40d7-4146-91ec-a0ea4aa1dcd1}</ProjectGuid>
|
||||||
|
|||||||
@ -14,7 +14,7 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
VALUE "FileVersion", "1.0.0.0\0"
|
VALUE "FileVersion", "1.0.0.0\0"
|
||||||
VALUE "ProductVersion", "1.0.0.0\0"
|
VALUE "ProductVersion", "1.0.0.0\0"
|
||||||
VALUE "CompileDate", "lunes, 25 de enero de 2010 12:01\0"
|
VALUE "CompileDate", "lunes, 25 de enero de 2010 18:22\0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|||||||
Reference in New Issue
Block a user