hangup.html.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * The hangup of risk module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2020 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Yuchun Li <liyuchun@cnezsoft.com>
  8. * @package risk
  9. * @version $Id: hangup.html.php 4903 2020-09-04 09:32:59Z lyc $
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . "common/view/header.html.php";?>
  14. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  15. <style>body{height: 477px;}</style>
  16. <div id='mainContent' class='main-content'>
  17. <div class='main-header'>
  18. <h2>
  19. <span class='prefix label-id'><strong><?php echo $risk->id;?></strong></span>
  20. <?php echo "<span title='$risk->name'>" . $risk->name . '</span>';?>
  21. </h2>
  22. </div>
  23. <form class='load-indicator main-form' method='post' target='hiddenwin'>
  24. <table class='table table-form'>
  25. <tbody>
  26. <tr>
  27. <th class='w-100px'><?php echo $lang->risk->assignedTo;?></th>
  28. <td><?php echo html::select('assignedTo', $users, $risk->assignedTo, "class='form-control chosen'");?></td>
  29. <td></td>
  30. </tr>
  31. <tr>
  32. <th class='w-100px'><?php echo $lang->risk->hangupBy;?></th>
  33. <td><?php echo html::select('hangupBy', $users, $this->app->user->account, "class='form-control chosen'");?></td>
  34. <td></td>
  35. </tr>
  36. <tr>
  37. <th class='w-100px'><?php echo $lang->risk->hangupDate;?></th>
  38. <td><?php echo html::input('hangupDate', helper::today(), "class='form-control form-date'");?></td>
  39. </tr>
  40. <tr>
  41. <th><?php echo $lang->comment;?></th>
  42. <td colspan='2'><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
  43. </tr>
  44. <tr>
  45. <td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td>
  46. </tr>
  47. </tbody>
  48. </table>
  49. </form>
  50. </div>
  51. <?php include $app->getModuleRoot() . "common/view/footer.html.php";?>