Changeset 600
- Timestamp:
- Dec 7, 2013, 1:30:28 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/FormClasses.php
r592 r600 337 337 'Filter' => '1', 338 338 ), 339 'TNewsList' => array( 340 'Type' => 'ManyToOne', 341 'Table' => 'News', 342 'Id' => 'Id', 343 'Ref' => 'Category', 344 'Filter' => '1', 345 ), 339 346 'TTaskList' => array( 340 347 'Type' => 'ManyToOne', … … 377 384 'Id' => 'Id', 378 385 'Name' => 'Name', 386 'Filter' => '1', 387 ), 388 'TStockItem' => array( 389 'Type' => 'Reference', 390 'Table' => 'StockItem', 391 'Id' => 'Id', 392 'Name' => 'RegNumber', 379 393 'Filter' => '1', 380 394 ), -
trunk/Modules/FinanceBankAPI/FinanceBankAPI.php
r586 r600 49 49 'ConstantSymbol' => array('Type' => 'String', 'Caption' => 'Konstantní symbol', 'Default' => ''), 50 50 'SpecificSymbol' => array('Type' => 'String', 'Caption' => 'Specifický symbol', 'Default' => ''), 51 'Value' => array('Type' => 'Float', 'Caption' => 'Částka', 'Default' => '' ),51 'Value' => array('Type' => 'Float', 'Caption' => 'Částka', 'Default' => '', 'Suffix' => 'Kč'), 52 52 'Currency' => array('Type' => 'TCurrency', 'Caption' => 'Měna', 'Default' => ''), 53 53 'Description' => array('Type' => 'String', 'Caption' => 'Popis operace', 'Default' => ''), -
trunk/Modules/News/News.php
r586 r600 38 38 $this->System->RegisterPage('aktuality', 'PageNews'); 39 39 $this->System->FormManager->RegisterClass('News', array( 40 'Title' => ' Nová aktualita',40 'Title' => 'Aktualita', 41 41 'Table' => 'News', 42 42 'Items' => array( … … 61 61 'Sequence' => array('Type' => 'Integer', 'Caption' => 'Pořadí', 'Default' => ''), 62 62 'Group' => array('Type' => 'Integer', 'Caption' => 'Skupina', 'Default' => ''), 63 'News' => array('Type' => 'TNewsList', 'Caption' => 'Aktuality', 'Default' => ''), 63 64 ), 64 65 ));
Note:
See TracChangeset
for help on using the changeset viewer.