Changeset 760


Ignore:
Timestamp:
Oct 27, 2015, 12:06:52 AM (9 years ago)
Author:
chronos
Message:
  • Added: Allow to hide some columns from IS lists.
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/Version.php

    r759 r760  
    11<?php
    22
    3 $Revision = 759; // Subversion revision
     3$Revision = 760; // Subversion revision
    44$DatabaseRevision = 759; // SQL structure revision
    55$ReleaseTime = strtotime('2015-10-26');
  • trunk/Modules/Finance/Finance.php

    r755 r760  
    444444        'TimeEnd' => array('Type' => 'Date', 'Caption' => 'Čas zrušení', 'Default' => '', 'Null' => true),
    445445        'Currency' => array('Type' => 'TCurrency', 'Caption' => 'Měna', 'Default' => ''),
    446         'LoginName' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno / token', 'Default' => ''),
    447         'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => ''),
     446        'LoginName' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno / token', 'Default' => '', 'NotInList' => true),
     447        'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => '', 'NotInList' => true),
    448448        'Operations' => array('Type' => 'TFinanceOperationListAccount', 'Caption' => 'Operace', 'Default' => ''),
    449449        'Use' => array('Type' => 'Boolean', 'Caption' => 'Používat', 'Default' => '0'),
  • trunk/Modules/IS/IS.php

    r755 r760  
    477477        if($ExcludeColumn != $ItemIndex)
    478478        if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false))
     479        if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false))
    479480          $TableColumns[] = array('Name' => $ItemIndex, 'Title' => $FormItem['Caption']);
    480481        $UseType = $UseType = $FormItem['Type'];
     
    536537    foreach($FormClass['Items'] as $ItemIndex => $FormItem)
    537538    if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false))
     539    if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false))
    538540    if((!array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) or
    539541    (array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) and
     
    558560      foreach($FormClass['Items'] as $ItemIndex => $FormItem)
    559561      if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false))
     562      if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false))
    560563      if((!array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) or
    561564      (array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) and
  • trunk/Modules/Network/Network.php

    r755 r760  
    156156        'MapPosition' => array('Type' => 'TMapPosition', 'Caption' => 'Pozice na mapě', 'Default' => '0', 'Null' => true),
    157157        'Product' => array('Type' => 'TProduct', 'Caption' => 'Produkt', 'Default' => '', 'Null' => true),
    158         'LoginName' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => '', 'Null' => true),
    159         'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => '', 'Null' => true),
     158        'LoginName' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => '', 'Null' => true, 'NotInList' => true),
     159        'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => '', 'Null' => true, 'NotInList' => true),
    160160        'API' => array('Type' => 'TDeviceAPIType', 'Caption' => 'API', 'Default' => '', 'Null' => true),
    161161      ),
  • trunk/Modules/Scheduler/Scheduler.php

    r759 r760  
    2626        'Action' => array('Type' => 'TSchedulerAction', 'Caption' => 'Akce', 'Default' => ''),
    2727        'Period' => array('Type' => 'Integer', 'Caption' => 'Opakovat po', 'Default' => '', 'Null' => true, 'Suffix' => 'sekund'),
    28         'Log' => array('Type' => 'Text', 'Caption' => 'Poslední záznam', 'Default' => '', 'ReadOnly' => true),
    2928        'LastExecutedTime' => array('Type' => 'DateTime', 'Caption' => 'Čas posledního spuštění', 'Default' => '', 'ReadOnly' => true),
    3029        'Duration' => array('Type' => 'TimeDiff', 'Caption' => 'Trvání', 'Default' => '', 'ReadOnly' => true),
     30        'Log' => array('Type' => 'Text', 'Caption' => 'Poslední záznam', 'Default' => '', 'ReadOnly' => true, 'NotInList' => true),
    3131      ),
    3232    ));
  • trunk/Modules/Task/Task.php

    r755 r760  
    2323      'Items' => array(
    2424        'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => '', 'Required' => true),
    25         'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''),
    2625        'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Datum zadání', 'Default' => '', 'Required' => true),
    2726        'TimeDue' => array('Type' => 'Date', 'Caption' => 'Termín', 'Default' => '', 'Null' => true),
    2827        'TimeClose' => array('Type' => 'Date', 'Caption' => 'Datum uzavření', 'Default' => '', 'Null' => true),
    2928        'Priority' => array('Type' => 'TPriority', 'Caption' => 'Důležitost', 'Default' => 1),
    30         'Conclusion' => array('Type' => 'Text', 'Caption' => 'Vyhodnocení', 'Default' => ''),
    3129        'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => '0'),
    3230        'Progress' => array('Type' => 'Integer', 'Caption' => 'Průběh', 'Default' => '0', 'Suffix' => '%'),
    3331        'Group' => array('Type' => 'TTaskGroup', 'Caption' => 'Kategorie', 'Default' => '', 'Null' => true),
     32        'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => '', 'NotInList' => true),
     33        'Conclusion' => array('Type' => 'Text', 'Caption' => 'Vyhodnocení', 'Default' => '', 'NotInList' => true),
    3434        'AssignedTo' => array('Type' => 'TUser', 'Caption' => 'Přiřazeno', 'Default' => '', 'Null' => true),
    3535        'Work' => array('Type' => 'TWorkListTask', 'Caption' => 'Práce', 'Default' => ''),
  • trunk/Modules/User/User.php

    r755 r760  
    192192        'Login' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''),
    193193        'Name' => array('Type' => 'String', 'Caption' => 'Celé jméno', 'Default' => ''),
    194         'Salt' => array('Type' => 'RandomHash', 'Caption' => 'Sůl', 'Default' => ''),
    195         'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => '', 'Method' => 'DoubleSHA1'),
     194        'Salt' => array('Type' => 'RandomHash', 'Caption' => 'Sůl', 'Default' => '', 'NotInList' => true),
     195        'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => '', 'Method' => 'DoubleSHA1', 'NotInList' => true),
    196196        'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
    197197        'LastIpAddress' => array('Type' => 'IPv4Address', 'Caption' => 'Poslední IP adresa', 'Default' => '', 'ReadOnly' => true),
Note: See TracChangeset for help on using the changeset viewer.