hangup.html.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * The hangup of opportunity module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2021 禅道软件(青岛)有限公司(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 Shujie Tian <tianshujie@easycorp.ltd>
  8. * @package opportunity
  9. * @version $Id: hangup.html.php 4903 2021-05-27 14:45:59Z tsj $
  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. <div id='mainContent' class='main-content'>
  16. <div class='main-header'>
  17. <h2>
  18. <span class='prefix label-id'><strong><?php echo $opportunity->id;?></strong></span>
  19. <?php echo "<span title='$opportunity->name'>" . $opportunity->name . '</span>';?>
  20. </h2>
  21. </div>
  22. <form class='load-indicator main-form' method='post' target='hiddenwin'>
  23. <table class='table table-form'>
  24. <tbody>
  25. <tr>
  26. <th class='w-100px'><?php echo $lang->opportunity->assignedTo;?></th>
  27. <td><?php echo html::select('assignedTo', $users, $opportunity->assignedTo, "class='form-control chosen'");?></td>
  28. <td></td>
  29. </tr>
  30. <tr>
  31. <th><?php echo $lang->comment;?></th>
  32. <td colspan='2'><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
  33. </tr>
  34. <tr>
  35. <td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td>
  36. </tr>
  37. </tbody>
  38. </table>
  39. </form>
  40. </div>
  41. <?php include $app->getModuleRoot() . "common/view/footer.html.php";?>