Changeset 431 for trunk/form_classes.php
- Timestamp:
- Oct 11, 2012, 9:15:05 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r430 r431 2 2 3 3 $FormClasses = array( 4 'NetworkDomainAlias' => array( 5 'Title' => 'Alias domény', 6 'Table' => 'NetworkDomainAlias', 7 'Items' => array( 8 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 9 'Target' => array('Type' => 'String', 'Caption' => 'Cíl', 'Default' => ''), 10 'Comment' => array('Type' => 'String', 'Caption' => 'Komentář', 'Default' => ''), 11 ), 12 ), 4 13 'NetworkDevice' => array( 5 14 'Title' => 'Síťové zařízení', … … 82 91 'Quantity' => array('Type' => 'Integer', 'Caption' => 'Množství', 'Default' => '1'), 83 92 'Tax' => array('Type' => 'Integer', 'Caption' => 'Daň [%]', 'Default' => '19'), 93 ), 94 ), 95 'FinanceOperation' => array( 96 'Title' => 'Finanční operace', 97 'Table' => 'FinanceOperation', 98 'DefaultSortColumn' => 'Time', 99 'Items' => array( 100 'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas realizace', 'Default' => ''), 101 'Subject' => array('Type' => 'TSubject', 'Caption' => 'Zákazník', 'Default' => ''), 102 'Cash' => array('Type' => 'Boolean', 'Caption' => 'Hotově', 'Default' => ''), 103 'Taxable' => array('Type' => 'Boolean', 'Caption' => 'Zdanitelné', 'Default' => ''), 104 'Value' => array('Type' => 'Integer', 'Caption' => 'Částka', 'Default' => '0', 'Unit' => 'Kč'), 105 'BillCode' => array('Type' => 'String', 'Caption' => 'Označení', 'Default' => ''), 106 'Text' => array('Type' => 'String', 'Caption' => 'Popis', 'Default' => ''), 107 'Network' => array('Type' => 'Boolean', 'Caption' => 'Týkající sítě', 'Default' => ''), 108 'BankAccount' => array('Type' => 'TFinanceBankAccount', 'Caption' => 'Účet', 'Default' => ''), 109 'Treasury' => array('Type' => 'TFinanceTreasury', 'Caption' => 'Pokladna', 'Default' => ''), 84 110 ), 85 111 ), … … 309 335 'Filter' => '1', 310 336 ), 337 'TSubject' => array( 338 'Type' => 'Reference', 339 'Table' => 'Subject', 340 'Id' => 'Id', 341 'Name' => 'Name', 342 'Filter' => '1', 343 ), 344 'TFinanceTreasury' => array( 345 'Type' => 'Reference', 346 'Table' => 'FinanceTreasury', 347 'Id' => 'Id', 348 'Name' => 'Name', 349 'Filter' => '1', 350 ), 351 'TFinanceBankAccount' => array( 352 'Type' => 'Reference', 353 'Table' => 'FinanceBankAccount', 354 'Id' => 'Id', 355 'Name' => 'Comment', 356 'Filter' => '1', 357 ), 311 358 ); 312 359
Note:
See TracChangeset
for help on using the changeset viewer.