cancel.html.php 857 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * The cancel view file of opportunity 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 Shujie Tian <tianshujie@chandao.com>
  7. * @package opportunity
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. modalHeader(set::title($lang->opportunity->cancel));
  12. formPanel
  13. (
  14. formGroup
  15. (
  16. set::label($lang->opportunity->cancelReason),
  17. set::width('1/2'),
  18. set::name('cancelReason'),
  19. set::items($lang->opportunity->cancelReasonList)
  20. ),
  21. formGroup
  22. (
  23. set::label($lang->comment),
  24. set::name('comment'),
  25. set::control('editor'),
  26. set::rows(6)
  27. )
  28. );