Changeset 53 for trunk/Client/Forms


Ignore:
Timestamp:
Apr 3, 2012, 8:31:39 AM (13 years ago)
Author:
chronos
Message:
  • Opraveno: Aktualizace seznamu modulů do databáze a použití příznaku modulů "Instalován" pro zjištění, zda vytvářet znova strukturu.
Location:
trunk/Client/Forms
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Client/Forms/UFormItemAdd.pas

    r52 r53  
    6464    NewProxy.Client := Client;
    6565    NewProxy.ObjectName := SelectedObject.Table;
    66     NewProxy.SchemaName := SelectedObject.Schema;
     66    NewProxy.Path := SelectedObject.Schema;
    6767    for I := 0 to Report.Columns.Count - 1 do
    6868    if not (TReportColumn(Report.Columns[I]).CustomType is TDataTypeRelationMany) then
  • trunk/Client/Forms/UFormItemEdit.pas

    r52 r53  
    128128    Proxy.Client := Client;
    129129    Proxy.ObjectName := SelectedObject.Table;
    130     Proxy.SchemaName := SelectedObject.Schema;
     130    Proxy.Path := SelectedObject.Schema;
    131131    Proxy.Id := SelectedItemId;
    132132    for I := 0 to Report.Columns.Count - 1 do
  • trunk/Client/Forms/UFormMenu.pas

    r52 r53  
    142142      Groups.Client := Core.System.Client;
    143143      Groups.ObjectName := ObjectGroupTable;
    144       Groups.SchemaName := Core.System.Client.Schema;
     144      Groups.Path := Core.System.Client.Schema;
    145145      Groups.Load;
    146146      for I := 0 to Groups.Objects.Count - 1 do begin
     
    154154          Objects.Client := Core.System.Client;
    155155          Objects.ObjectName := ObjectTable;
    156           Objects.SchemaName := Core.System.Client.Schema;
     156          Objects.Path := Core.System.Client.Schema;
    157157          Objects.Condition := '`Group`="' + Obj.Properties.Values['Id'] + '"';
    158158          Objects.Load;
Note: See TracChangeset for help on using the changeset viewer.