Changeset 760
- Timestamp:
- Oct 27, 2015, 12:06:52 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Version.php
r759 r760 1 1 <?php 2 2 3 $Revision = 7 59; // Subversion revision3 $Revision = 760; // Subversion revision 4 4 $DatabaseRevision = 759; // SQL structure revision 5 5 $ReleaseTime = strtotime('2015-10-26'); -
trunk/Modules/Finance/Finance.php
r755 r760 444 444 'TimeEnd' => array('Type' => 'Date', 'Caption' => 'Čas zrušení', 'Default' => '', 'Null' => true), 445 445 '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), 448 448 'Operations' => array('Type' => 'TFinanceOperationListAccount', 'Caption' => 'Operace', 'Default' => ''), 449 449 'Use' => array('Type' => 'Boolean', 'Caption' => 'Používat', 'Default' => '0'), -
trunk/Modules/IS/IS.php
r755 r760 477 477 if($ExcludeColumn != $ItemIndex) 478 478 if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false)) 479 if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false)) 479 480 $TableColumns[] = array('Name' => $ItemIndex, 'Title' => $FormItem['Caption']); 480 481 $UseType = $UseType = $FormItem['Type']; … … 536 537 foreach($FormClass['Items'] as $ItemIndex => $FormItem) 537 538 if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false)) 539 if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false)) 538 540 if((!array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) or 539 541 (array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) and … … 558 560 foreach($FormClass['Items'] as $ItemIndex => $FormItem) 559 561 if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false)) 562 if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false)) 560 563 if((!array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) or 561 564 (array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) and -
trunk/Modules/Network/Network.php
r755 r760 156 156 'MapPosition' => array('Type' => 'TMapPosition', 'Caption' => 'Pozice na mapě', 'Default' => '0', 'Null' => true), 157 157 '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), 160 160 'API' => array('Type' => 'TDeviceAPIType', 'Caption' => 'API', 'Default' => '', 'Null' => true), 161 161 ), -
trunk/Modules/Scheduler/Scheduler.php
r759 r760 26 26 'Action' => array('Type' => 'TSchedulerAction', 'Caption' => 'Akce', 'Default' => ''), 27 27 'Period' => array('Type' => 'Integer', 'Caption' => 'Opakovat po', 'Default' => '', 'Null' => true, 'Suffix' => 'sekund'), 28 'Log' => array('Type' => 'Text', 'Caption' => 'Poslední záznam', 'Default' => '', 'ReadOnly' => true),29 28 'LastExecutedTime' => array('Type' => 'DateTime', 'Caption' => 'Čas posledního spuštění', 'Default' => '', 'ReadOnly' => true), 30 29 'Duration' => array('Type' => 'TimeDiff', 'Caption' => 'Trvání', 'Default' => '', 'ReadOnly' => true), 30 'Log' => array('Type' => 'Text', 'Caption' => 'Poslední záznam', 'Default' => '', 'ReadOnly' => true, 'NotInList' => true), 31 31 ), 32 32 )); -
trunk/Modules/Task/Task.php
r755 r760 23 23 'Items' => array( 24 24 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => '', 'Required' => true), 25 'Description' => array('Type' => 'Text', 'Caption' => 'Popis', 'Default' => ''),26 25 'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Datum zadání', 'Default' => '', 'Required' => true), 27 26 'TimeDue' => array('Type' => 'Date', 'Caption' => 'Termín', 'Default' => '', 'Null' => true), 28 27 'TimeClose' => array('Type' => 'Date', 'Caption' => 'Datum uzavření', 'Default' => '', 'Null' => true), 29 28 'Priority' => array('Type' => 'TPriority', 'Caption' => 'Důležitost', 'Default' => 1), 30 'Conclusion' => array('Type' => 'Text', 'Caption' => 'Vyhodnocení', 'Default' => ''),31 29 'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => '0'), 32 30 'Progress' => array('Type' => 'Integer', 'Caption' => 'Průběh', 'Default' => '0', 'Suffix' => '%'), 33 31 '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), 34 34 'AssignedTo' => array('Type' => 'TUser', 'Caption' => 'Přiřazeno', 'Default' => '', 'Null' => true), 35 35 'Work' => array('Type' => 'TWorkListTask', 'Caption' => 'Práce', 'Default' => ''), -
trunk/Modules/User/User.php
r755 r760 192 192 'Login' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''), 193 193 '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), 196 196 'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''), 197 197 'LastIpAddress' => array('Type' => 'IPv4Address', 'Caption' => 'Poslední IP adresa', 'Default' => '', 'ReadOnly' => true),
Note:
See TracChangeset
for help on using the changeset viewer.