Changeset 436 for trunk/form_classes.php
- Timestamp:
- Oct 12, 2012, 11:37:49 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r435 r436 2 2 3 3 $FormClasses = array( 4 'Product' => array( 5 'Title' => 'Zboží', 6 'Table' => 'Product', 7 'DefaultSortColumn' => 'Name', 8 'Items' => array( 9 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 10 'Price' => array('Type' => 'Integer', 'Caption' => 'Cena', 'Default' => '0'), 11 'Count' => array('Type' => 'Integer', 'Caption' => 'Počet', 'Default' => ''), 12 'Date' => array('Type' => 'Date', 'Caption' => 'Datum', 'Default' => ''), 13 'Segment' => array('Type' => 'TNetworkSegment', 'Caption' => 'Úsek', 'Default' => ''), 14 'Used' => array('Type' => 'Boolean', 'Caption' => 'Použito', 'Default' => '0'), 15 'Info' => array('Type' => 'Text', 'Caption' => 'Informace', 'Default' => ''), 16 'User' => array('Type' => 'TMember', 'Caption' => 'Uživatel', 'Default' => ''), 17 'Consumption' => array('Type' => 'Integer', 'Caption' => 'Spotřeba', 'Default' => ''), 18 'DeviceId' => array('Type' => 'String', 'Caption' => 'Označení', 'Default' => ''), 19 'DeprecatedPrice' => array('Type' => 'Float', 'Caption' => 'Odpisová cena', 'Default' => ''), 20 'StockCard' => array('Type' => 'TStockCard', 'Caption' => 'Zboží', 'Default' => ''), 21 ), 22 ), 23 'Stock' => array( 24 'Title' => 'Sklady', 25 'Table' => 'Stock', 26 'DefaultSortColumn' => 'Name', 27 'Items' => array( 28 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 29 ), 30 ), 4 31 'FinanceBillingPeriod' => array( 5 32 'Title' => 'Platební období', … … 504 531 'Filter' => '1', 505 532 ), 533 'TStockCard' => array( 534 'Type' => 'Reference', 535 'Table' => 'StockCard', 536 'Id' => 'Id', 537 'Name' => 'Name', 538 'Filter' => '1', 539 ), 506 540 ); 507 541
Note:
See TracChangeset
for help on using the changeset viewer.