Ignore:
Timestamp:
Apr 1, 2013, 8:36:27 PM (12 years ago)
Author:
chronos
Message:
  • Opraveno: Negenerovat faktury pokud fakturovaná částka je nula.
  • Přidáno: Zobrazení akcí při prohlížení položek správy dat.
  • Přidáno: V tabulce Subjektů se nyní zobrazují související platby.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/IS/IS.php

    r502 r508  
    1414      return('Nemáte oprávnění');
    1515
    16     $DbResult = $this->Database->select('ISMenuItem', '*');
     16    $DbResult = $this->Database->select('ISMenuItem', '*', '1 ORDER BY Parent,Name');
    1717    while($DbRow = $DbResult->fetch_assoc())
    1818    {
     
    126126  function ShowView($Table, $Id)
    127127  {
     128    if($Table != '') $FormClass = $this->System->FormManager->Classes[$Table];
     129      else return($this->SystemMessage('Chyba', 'Tabulka nenalezena'));
     130   
    128131    $Form = new Form($this->System->FormManager);
    129132    $Form->SetClass($Table);
     
    140143    $Output .= '<li><a href="?a=add"><img alt="Přidat" title="Přidat" src="'.
    141144      $this->System->Link('/images/add.png').'"/>Přidat</a></li>';
     145    if(array_key_exists('ItemActions', $FormClass))
     146    {
     147      foreach($FormClass['ItemActions'] as $Action)
     148        $Output .= '<li><a href="'.$this->System->Link($Action['URL']).'&amp;id='.$Id.'"><img alt="'.$Action['Caption'].'" title="'.$Action['Caption'].'" src="'.
     149            $this->System->Link('/images/action.png').'"/>'.$Action['Caption'].'</a></li>';
     150    } 
    142151    $Output .= '</ul><br/>';
    143152   
Note: See TracChangeset for help on using the changeset viewer.