Changeset 480 for trunk/form_classes.php
- Timestamp:
- Feb 5, 2013, 10:25:54 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 9 9 .buildpath 10 10 .settings 11 nbproject
-
- Property svn:ignore
-
trunk/form_classes.php
r479 r480 62 62 ), 63 63 ), 64 'ServiceCustomerRel' => array( 65 'Title' => 'Vztahy služba - zákazník', 66 'Table' => 'ServiceCustomerRel', 67 'Items' => array( 68 'Service' => array('Type' => 'TService', 'Caption' => 'Služba', 'Default' => ''), 69 'Customer' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => ''), 70 'Period' => array('Type' => 'Integer', 'Caption' => 'Období', 'Default' => ''), 71 ), 72 ), 64 73 'Work' => array( 65 74 'Title' => 'Práce', … … 266 275 'Price' => array('Type' => 'Integer', 'Caption' => 'Cena', 'Default' => '0', 'Suffix' => 'Kč'), 267 276 'CustomerCount' => array('Type' => 'Integer', 'Caption' => 'Počet zákazníků', 'Default' => ''), 268 'ReplaceId' => array('Type' => 'TService', 'Caption' => 'Nahradit', 'Default' => '', 'Null' => true),269 277 'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => ''), 270 278 'InternetSpeedMin' => array('Type' => 'Integer', 'Caption' => 'Min. rychlost internetu', 'Default' => '0', 'Suffix' => 'kbit/s'), … … 275 283 'Storage' => array('Type' => 'Integer', 'Caption' => 'Úložiště', 'Default' => '0', 'Suffix' => 'GB'), 276 284 'CPUCount' => array('Type' => 'Integer', 'Caption' => 'Počet jader', 'Default' => '0', 'Suffix' => ''), 285 'ReplaceId' => array('Type' => 'TService', 'Caption' => 'Nahradit', 'Default' => '', 'Null' => true), 277 286 ), 278 287 ), … … 296 305 'Devices' => array('Type' => 'TDeviceList', 'Caption' => 'Registrovaná zařízení', 'Default' => ''), 297 306 'UserRel' => array('Type' => 'TUserCustomerRelListCustomer', 'Caption' => 'Přiřazení uživatelé', 'Default' => ''), 307 'ServiceRel' => array('Type' => 'TServiceCustomerRelListCustomer', 'Caption' => 'Placené služby', 'Default' => ''), 298 308 ), 299 309 ), … … 637 647 ), 638 648 ), 649 'ServiceCategory' => array( 650 'Title' => 'Kategorie služeb', 651 'Table' => 'ServiceCategory', 652 'Items' => array( 653 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 654 'Items' => array('Type' => 'TServiceListServiceCategory', 'Caption' => 'Služby', 'Default' => ''), 655 ), 656 ), 639 657 ); 640 658 … … 946 964 'Filter' => '1', 947 965 ), 966 'TServiceCustomerRelListCustomer' => array( 967 'Type' => 'ManyToOne', 968 'Table' => 'ServiceCustomerRel', 969 'Id' => 'Id', 970 'Ref' => 'Customer', 971 'Filter' => '1', 972 ), 948 973 'TPermissionUserAssignmentListUser' => array( 949 974 'Type' => 'ManyToOne', … … 972 997 'Id' => 'Id', 973 998 'Ref' => 'AssignedGroup', 999 'Filter' => '1', 1000 ), 1001 'TServiceListServiceCategory' => array( 1002 'Type' => 'ManyToOne', 1003 'Table' => 'Service', 1004 'Id' => 'Id', 1005 'Ref' => 'Category', 974 1006 'Filter' => '1', 975 1007 ),
Note:
See TracChangeset
for help on using the changeset viewer.