review.html.php 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * The review view file of overtime module of RanZhi.
  4. *
  5. * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Tingting Dai <daitingting@xirangit.com>
  8. * @package overtime
  9. * @version $Id$
  10. * @link http://www.ranzhi.org
  11. */
  12. ?>
  13. <?php include '../../common/view/header.modal.html.php';?>
  14. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  15. <form method='post' id='ajaxForm' action='<?php echo inlink('review', "id={$id}&status=reject")?>'>
  16. <table class='table table-form'>
  17. <tr>
  18. <th class='w-80px text-middle'><?php echo $lang->overtime->rejectReason;?></th>
  19. <td><?php echo html::textarea("comment", '', "class='form-control'");?></td>
  20. <td></td>
  21. </tr>
  22. <tr>
  23. <th></th>
  24. <td><?php echo baseHTML::submitButton();?></td>
  25. <td></td>
  26. </tr>
  27. </table>
  28. </form>
  29. <?php include '../../common/view/footer.modal.html.php';?>