Changeset 644
- Timestamp:
- Mar 24, 2014, 7:40:03 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/FormClasses.php
r641 r644 142 142 'Category' => array('Type' => 'TServiceCategory', 'Caption' => 'Skupina', 'Default' => '', 'Null' => true), 143 143 'Price' => array('Type' => 'Integer', 'Caption' => 'Cena', 'Default' => '0', 'Suffix' => 'Kč'), 144 'CustomerCount' => array('Type' => 'Integer', 'Caption' => 'Počet zákazníků', 'Default' => ''), 144 'VAT' => array('Type' => 'TFinanceVAT', 'Caption' => 'Sazba DPH', 'Default' => '0', 'Suffix' => ''), 145 'CustomerCount' => array('Type' => 'Integer', 'Caption' => 'Počet zákazníků', 'Default' => '', 'ReadOnly' => true), 145 146 'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => ''), 146 147 'InternetSpeedMin' => array('Type' => 'Integer', 'Caption' => 'Min. rychlost internetu', 'Default' => '0', 'Suffix' => 'kbit/s'), … … 153 154 'Action' => array('Type' => 'TActionEnum', 'Caption' => 'Změna období', 'Default' => '', 'Null' => true), 154 155 'ReplaceId' => array('Type' => 'TService', 'Caption' => 'Cílová položka', 'Default' => '', 'Null' => true), 156 'CustomerRel' => array('Type' => 'TServiceCustomerRelListService', 'Caption' => 'Placení zákazníky', 'Default' => ''), 155 157 ), 156 158 ), … … 163 165 ), 164 166 ), 165 'NewNetworkDeviceHistory' => array(166 'Title' => 'Vložit záznam historie zařízení',167 'Table' => 'NetworkDeviceHistory',168 'Items' => array(169 'Device' => array('Type' => 'TNetworkDevice', 'Caption' => 'Zařízení', 'Default' => 0),170 'Time' => array('Type' => 'Time', 'Caption' => 'Čas', 'Default' => 'Now'),171 'Action' => array('Type' => 'TNetworkDeviceAction', 'Caption' => 'Akce', 'Default' => 0),172 'Notice' => array('Type' => 'String', 'Caption' => 'Poznámka', 'Default' => ''),173 ),174 ),175 167 'ServiceCategory' => array( 176 168 'Title' => 'Kategorie služeb', … … 183 175 ); 184 176 185 $FormManager->FormTypes = array( 177 $FormManager->FormTypes = array 178 ( 186 179 'TServiceCategory' => array( 187 180 'Type' => 'Reference', … … 247 240 'Filter' => '1', 248 241 ), 242 'TFinanceVAT' => array( 243 'Type' => 'Reference', 244 'Table' => 'FinanceVAT', 245 'Id' => 'Id', 246 'Name' => 'Name', 247 'Filter' => '1', 248 ), 249 249 'TModule' => array( 250 250 'Type' => 'Reference', … … 649 649 'Filter' => '1', 650 650 ), 651 'TServiceCustomerRelListService' => array( 652 'Type' => 'ManyToOne', 653 'Table' => 'ServiceCustomerRel', 654 'Id' => 'Id', 655 'Ref' => 'Service', 656 'Filter' => '1', 657 ), 651 658 'TCustomerStockItem' => array( 652 659 'Type' => 'ManyToOne', -
trunk/Application/Version.php
r639 r644 1 1 <?php 2 2 3 $Revision = 64 0; // Subversion revision3 $Revision = 644; // Subversion revision 4 4 $DatabaseRevision = 633; // SQL structure revision 5 $ReleaseTime = strtotime('2014-03- 16');5 $ReleaseTime = strtotime('2014-03-24'); -
trunk/Common/Setup/Updates.php
r633 r644 55 55 { 56 56 $Manager->Execute("INSERT INTO `ISMenuItem` (`Id` ,`Name` ,`Parent` ,`Table` ,`IconName`) ". 57 "VALUES (NULL , 'Sí tové služby', '1', 'NetworkConfiguration', '');");57 "VALUES (NULL , 'Síťové služby', '1', 'NetworkConfiguration', '');"); 58 58 $Manager->Execute("INSERT INTO `ISMenuItem` (`Id` ,`Name` ,`Parent` ,`Table` ,`IconName`) ". 59 59 "VALUES (NULL , 'Fronta e-mailů', '23', 'EmailQueue', '');"); -
trunk/Modules/NetworkConfig/NetworkConfig.php
r586 r644 25 25 { 26 26 $this->System->FormManager->RegisterClass('NetworkConfiguration', array( 27 'Title' => 'Restart sí tových služeb',27 'Title' => 'Restart síťových služeb', 28 28 'Table' => 'NetworkConfiguration', 29 29 'Items' => array( … … 41 41 )); 42 42 $this->System->FormManager->RegisterClass('NetworkConfigurationLog', array( 43 'Title' => 'Záznam restartu sí tových služeb',43 'Title' => 'Záznam restartu síťových služeb', 44 44 'Table' => 'NetworkConfiguration', 45 45 'Items' => array(
Note:
See TracChangeset
for help on using the changeset viewer.