Changeset 743 for trunk/Modules/Export/ExportOutput.php
- Timestamp:
- Jan 9, 2014, 2:44:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Export/ExportOutput.php
r740 r743 229 229 global $System; 230 230 $Output = ''; 231 $DbResult = $System->Database->query('SELECT * FROM `ExportTask`'.232 ' LEFT JOIN `Export` ON `Export`.`Id` = `ExportTask`.`Export` WHERE (`Export`.`OutputType` = 9 OR `Export`.`OutputType` = 10 ) AND `TimeFinish` IS NULL ORDER BY `Progress` DESC');// `Export`='.$Export->Id233 231 $Output .= 'Fronta zpracování exportů. Zobrazuje procenta dokončení: <br /><br />'; 234 while($Task = $DbResult->fetch_assoc()) { 232 233 235 234 $Output .= '<script src="http://code.jquery.com/jquery-latest.js"></script>'. 236 235 '<script>'. 237 236 '$(document).ready(function() {'. 238 237 'var refreshId = setInterval(function() {'. 239 '$("#progress '.$Task['Export'].'").load("'.$System->Link('/Modules/Export/Progress.php?RedirectId='.$_GET['ExportId'].'&ExportId='.$Task['Export']).'"); '.238 '$("#progress").load("'.$System->Link('/Modules/Export/Progress.php?RedirectId='.$_GET['ExportId']).'"); '. 240 239 '}, 1000);'. 241 240 '});'. 242 241 '</script>'; 243 $Export = '<a href="'.$System->Link('/export/?Action=View&ExportId='.$Task['Export']).'">'.$Task['Export'].'</a>'; 244 if ($_GET['ExportId'] == $Task['Export']) 245 $Export = ''.$Export.' (aktuální)'; 246 247 $Output .= ' <strong>Export '.$Export.': <div id="progress'.$Task['Export'].'">'.ProgressBar(300, $Task['Progress']).'</div></strong><br />'; 248 // if ($Task['Progress'] == 0) $Output .= '<br/><br/><strong>Soubor čeká na zpracování ve frontě.</strong><br/>'; 249 250 } 242 243 244 $Output .= ' <strong><div id="progress"></div></strong><br />'; 245 251 246 $DbResult = $System->Database->query('SELECT * FROM `ExportTask` LEFT JOIN `Export` ON `Export`.`Id` = `ExportTask`.`Export` WHERE '. 252 247 ' (`Export`.`OutputType` = 9 OR `Export`.`OutputType` = 10 ) AND `TimeFinish` IS NULL AND `TimeStart` < NOW()-10000');
Note:
See TracChangeset
for help on using the changeset viewer.