Changeset 600


Ignore:
Timestamp:
Dec 7, 2013, 1:30:28 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Zobrazení aktualit u skupin aktualit.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/FormClasses.php

    r592 r600  
    337337    'Filter' => '1',
    338338  ),
     339  'TNewsList' => array(
     340    'Type' => 'ManyToOne',
     341    'Table' => 'News',
     342    'Id' => 'Id',
     343    'Ref' => 'Category',
     344    'Filter' => '1',
     345  ),
    339346  'TTaskList' => array(
    340347    'Type' => 'ManyToOne',
     
    377384    'Id' => 'Id',
    378385    'Name' => 'Name',
     386    'Filter' => '1',
     387  ),
     388  'TStockItem' => array(
     389    'Type' => 'Reference',
     390    'Table' => 'StockItem',
     391    'Id' => 'Id',
     392    'Name' => 'RegNumber',
    379393    'Filter' => '1',
    380394  ),
  • trunk/Modules/FinanceBankAPI/FinanceBankAPI.php

    r586 r600  
    4949        'ConstantSymbol' => array('Type' => 'String', 'Caption' => 'Konstantní symbol', 'Default' => ''),
    5050        '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č'),
    5252        'Currency' => array('Type' => 'TCurrency', 'Caption' => 'Měna', 'Default' => ''),
    5353        'Description' => array('Type' => 'String', 'Caption' => 'Popis operace', 'Default' => ''),
  • trunk/Modules/News/News.php

    r586 r600  
    3838    $this->System->RegisterPage('aktuality', 'PageNews');
    3939    $this->System->FormManager->RegisterClass('News', array(
    40       'Title' => 'Nová aktualita',
     40      'Title' => 'Aktualita',
    4141      'Table' => 'News',
    4242      'Items' => array(
     
    6161        'Sequence' => array('Type' => 'Integer', 'Caption' => 'Pořadí', 'Default' => ''),
    6262        'Group' => array('Type' => 'Integer', 'Caption' => 'Skupina', 'Default' => ''),
     63        'News' => array('Type' => 'TNewsList', 'Caption' => 'Aktuality', 'Default' => ''),
    6364      ),
    6465    ));
Note: See TracChangeset for help on using the changeset viewer.