start.html.php 957 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * The start view file of marketresearch module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2024 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  5. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  6. * @author Fangzhou Hu<hufangzhou@easycorp.ltd>
  7. * @package marketresearch
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader(set::title($lang->marketresearch->start), set::entityText($research->name), set::entityID($research->id));
  12. formPanel
  13. (
  14. formGroup
  15. (
  16. set::width('1/2'),
  17. set::label($lang->project->realBegan),
  18. set::name('realBegan'),
  19. set::control('date'),
  20. set::value(helper::today())
  21. ),
  22. formGroup
  23. (
  24. set::label($lang->comment),
  25. editor
  26. (
  27. set::name('comment'),
  28. set::rows('6')
  29. )
  30. )
  31. );
  32. hr();
  33. history();