zentaopms/module/report/view/dailyreminder.html.php
2023-05-16 10:47:08 +08:00

124 lines
6.4 KiB
PHP
Executable File

<?php $url = $this->report->getSysURL();?>
<?php include '../../common/view/mail.header.html.php';?>
<tr>
<td>
<table cellpadding='0' cellspacing='0' style='width: 100%; border: none; border-collapse: collapse;'>
<tr>
<td style='padding: 10px; background-color: #F8FAFE; border: none; font-size: 14px; font-weight: 500; border-bottom: 1px solid #e5e5e5;'><?php echo date('Y-m-d') ?></td>
<td style='width: 40px; text-align: right; background-color: #F8FAFE; border: none; vertical-align: top; padding: 10px; border-bottom: 1px solid #e5e5e5;'><?php echo html::a($url . $config->webRoot, $url . $config->webRoot, 'target="_blank"');?></td>
</tr>
</table>
</td>
</tr>
<?php if(isset($mail->bugs)):?>
<tr>
<td style='padding: 10px; border: none;'>
<h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->bug, count($mail->bugs)), ',') ?></h5>
<table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
<tr>
<th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
<th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->bugTitle;?></th>
<th style='width: 100px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->deadline;?></th>
</tr>
<?php foreach($mail->bugs as $bug):?>
<tr>
<td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $bug->id;?></td>
<td style='padding: 5px; border: 1px solid #e5e5e5;'>
<?php
$link = $this->createLink('bug', 'view', "bugID=$bug->id");
if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
echo html::a($url . $link, $bug->title);
?>
</td>
<td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php if(!helper::isZeroDate($bug->deadline)) echo $bug->deadline;?></td>
</tr>
<?php endforeach;?>
</table>
</td>
</tr>
<?php endif;?>
<?php if(isset($mail->tasks)):?>
<tr>
<td style='padding: 10px; border: none;'>
<h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->task, count($mail->tasks)), ',') ?></h5>
<table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
<tr>
<th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
<th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->taskName;?></th>
<th style='width: 100px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->deadline;?></th>
</tr>
<?php foreach($mail->tasks as $task):?>
<tr>
<td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $task->id;?></td>
<td style='padding: 5px; border: 1px solid #e5e5e5;'>
<?php
$link = $this->createLink('task', 'view', "taskID=$task->id");
if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
echo html::a($url . $link, $task->name);
?>
</td>
<td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php if(!helper::isZeroDate($task->deadline)) echo $task->deadline;?></td>
</tr>
<?php endforeach;?>
</table>
</td>
</tr>
<?php endif;?>
<?php if(isset($mail->todos)):?>
<tr>
<td style='padding: 10px; border: none;'>
<h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->todo, count($mail->todos)), ',') ?></h5>
<table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
<tr>
<th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
<th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->todoName;?></th>
</tr>
<?php foreach($mail->todos as $todo):?>
<tr>
<td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $todo->id;?></td>
<td style='padding: 5px; border: 1px solid #e5e5e5;'>
<?php
$link = $this->createLink('todo', 'view', "todoID=$todo->id");
if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
echo html::a($url . $link, $todo->name);
?>
</td>
</tr>
<?php endforeach;?>
</table>
</td>
</tr>
<?php endif;?>
<?php if(isset($mail->testTasks)):?>
<tr>
<td style='padding: 10px; border: none;'>
<h5 style='margin: 8px 0; font-size: 14px;'><?php echo rtrim(sprintf($lang->report->mailTitle->testTask, count($mail->testTasks)), ',') ?></h5>
<table cellpadding='0' cellspacing='0' style='width: 100%; border: 1px solid #e5e5e5; margin-bottom: 15px; border-collapse: collapse; font-size: 13px;'>
<tr>
<th style='width: 50px; border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->idAB;?></th>
<th style='border: 1px solid #e5e5e5; background-color: #f5f5f5; padding: 5px;'><?php echo $lang->report->testTaskName;?></th>
</tr>
<?php foreach($mail->testTasks as $testTask):?>
<tr>
<td style='padding: 5px; text-align: center; border: 1px solid #e5e5e5;'><?php echo $testTask->id;?></td>
<td style='padding: 5px; border: 1px solid #e5e5e5;'>
<?php
$link = $this->createLink('testtask', 'view', "testtask=$testTask->id");
if($config->requestType == 'GET' and strpos($link, 'ztcli') !== false) $link = str_replace($this->server->php_self, $config->webRoot, $link);
echo html::a($url . $link, $testTask->name);
?>
</td>
</tr>
<?php endforeach;?>
</table>
</td>
</tr>
<?php endif;?>
<?php include '../../common/view/mail.footer.html.php';?>