assignto.html.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /**
  3. * The assignto 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: assignto.html.php 4903 2021-05-27 09:32:59Z tsj $
  10. * @link https://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="center-block">
  17. <div class='main-header'>
  18. <h2>
  19. <span class='prefix label-id'><strong><?php echo $opportunity->id;?></strong></span>
  20. <?php echo "<span title='$opportunity->name'>" . $opportunity->name . '</span>';?>
  21. </h2>
  22. </div>
  23. <form method='post' enctype='multipart/form-data' target='hiddenwin'>
  24. <table class='table table-form'>
  25. <tbody>
  26. <tr>
  27. <th class='w-100px'><?php echo $lang->opportunity->assignedTo;?></th>
  28. <td><?php echo html::select('assignedTo', $users, $opportunity->assignedTo, "class='form-control chosen'");?></td>
  29. <td></td>
  30. </tr>
  31. <tr>
  32. <th><?php echo $lang->comment;?></th>
  33. <td colspan='2'><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
  34. </tr>
  35. <tr>
  36. <td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td>
  37. </tr>
  38. </tbody>
  39. </table>
  40. </form>
  41. </div>
  42. </div>
  43. <?php include $app->getModuleRoot() . "common/view/footer.html.php";?>