Changeset 644 for trunk/Application/FormClasses.php
- Timestamp:
- Mar 24, 2014, 7:40:03 PM (11 years ago)
- File:
-
- 1 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',
Note:
See TracChangeset
for help on using the changeset viewer.