Ignore:
Timestamp:
Mar 25, 2014, 7:09:47 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Podpora pro virtuální tabulky.
  • Přidáno: Roční přehledy roků a subjektů.
  • Přidáno: Evidence zaměstnanců a mezd v nabídce v IS.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Form/Form.php

    r639 r647  
    162162    }
    163163    $Columns = implode(',', $Columns);
    164     $DbResult = $this->Database->query('SELECT '.$Columns.' FROM `'.$this->Definition['Table'].'` AS `T` WHERE `T`.`Id`='.$Id);
     164    if(array_key_exists('SQL', $this->Definition))
     165      $SourceTable = '('.$this->Definition['SQL'].') AS `TX`';
     166      else $SourceTable = '`'.$this->Definition['Table'].'` AS `TX`';
     167    $DbResult = $this->Database->query('SELECT '.$Columns.' FROM '.$SourceTable.' WHERE `TX`.`Id`='.$Id);
    165168    $DbRow = $DbResult->fetch_array();
    166169    foreach($this->Definition['Items'] as $Index => $Item)
Note: See TracChangeset for help on using the changeset viewer.