| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * The mail file of overtime module of RanZhi.
- *
- * @copyright Copyright 2009-2018 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Tingting Dai <daitingting@xirangit.com>
- * @package overtime
- * @version $Id$
- * @link http://www.ranzhi.org
- */
- ?>
- <?php
- $app->loadConfig('mail');
- $domain = zget($this->config->mail, 'domain', common::getSysURL());
- $mailTitle = "{$lang->overtime->common}#{$overtime->id} ";
- $mailTitle .= html::a($domain . helper::createLink('my', 'review', "type=overtime", 'html') . "#app=oa", zget($users, $overtime->createdBy));
- $mailTitle .= formatTime($overtime->begin, DT_DATE1) . '~' . formatTime($overtime->end, DT_DATE1);
- ?>
- <?php include $app->getModuleRoot() . 'common/view/mail.header.html.php';?>
- <tr>
- <td>
- <table cellpadding='0' cellspacing='0' width='600' style='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 $mailTitle;?>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td style='padding: 10px; border: none;'>
- <fieldset style='border: 1px solid #e5e5e5'>
- <legend style='color: #114f8e'><?php echo $lang->overtime->common;?></legend>
- <div style='padding:5px;'>
- <p><?php echo $lang->overtime->createdBy . ':' . zget($users, $overtime->createdBy)?></p>
- <p><?php echo $lang->overtime->status . ':' . zget($lang->overtime->statusList, $overtime->status)?></p>
- <p><?php echo $lang->overtime->type . ':' . zget($lang->overtime->typeList, $overtime->type)?></p>
- <p><?php echo $lang->overtime->date . ':' . formatTime($overtime->begin . ' ' . $overtime->start, DT_DATETIME2) . '~' . formatTime($overtime->end . ' ' . $overtime->finish, DT_DATETIME2);?></p>
- <p><?php echo $lang->overtime->desc?></p>
- <p><?php echo $overtime->desc?></p>
- </div>
- </fieldset>
- </td>
- </tr>
- <?php include $app->getModuleRoot() . 'common/view/mail.footer.html.php';?>
|