Changeset 445 for trunk/is/index.php


Ignore:
Timestamp:
Oct 15, 2012, 6:41:56 PM (12 years ago)
Author:
chronos
Message:
  • Přidáno: Tabulky pro správu úkolů. Úkoly jsou řazeny hierarchicky do skupin.
  • Opraveno: Zobrazení typu výčet a nastavení typu čas na aktuální pokud je hodnota prázdná.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/is/index.php

    r442 r445  
    100100        $Id = $this->Database->insert_id;
    101101        $_SESSION['Id'] = $Id;
    102         $this->Database->update($Table, 'Id='.$Id,
    103           array('UserCreate' => $this->System->Modules['User']->User['Id'],
    104           'TimeCreate' => 'NOW()'));
     102        //$this->Database->update($Table, 'Id='.$Id,
     103        //  array('UserCreate' => $this->System->Modules['User']->User['Id'],
     104        //  'TimeCreate' => 'NOW()'));
    105105        $Output .= $this->ShowView($Table, $Id);   
    106106      }
     
    139139    if((array_key_exists($Item['Type'], $FormTypes) and ($FormTypes[$Item['Type']]['Type'] == 'ManyToOne')))
    140140    {
    141       $Output .= '<div style="text-align: center;">'.$Form->Definition['Title'].'</div>';
    142       $Output .= $this->ShowList($FormTypes[$Item['Type']]['Table'], '`'.$FormTypes[$Item['Type']]['Ref'].'`='.$Id).'<br/>';
     141      $Output .= $this->ShowList($FormTypes[$Item['Type']]['Table'], '`'.$FormTypes[$Item['Type']]['Ref'].'`='.$Id, $Item['Caption']).'<br/>';
    143142    }   
    144143    return($Output);
    145144  }
    146145 
    147   function ShowList($Table, $Filter = '')
     146  function ShowList($Table, $Filter = '', $Title = '')
    148147  {   
    149148    global $Type, $FormTypes, $FormClasses;
     
    156155    $PageList = GetPageList($DbRow[0]);   
    157156
    158     $Output = $PageList['Output'];
     157    $Output = '<div style="text-align: center;">'.$FormClass['Title'].'</div>';
     158    $Output .= $PageList['Output'];
    159159    $Output .= '<table class="WideTable" style="font-size: small;">';
    160160   
Note: See TracChangeset for help on using the changeset viewer.