nc.html.php 814 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * The nc view file of auditplan module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Yuting Wang <wangyuting@easycorp.ltd>
  7. * @package auditplan
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. unset($config->auditplan->nc->dtable->fieldList['type']);
  12. unset($config->auditplan->nc->dtable->fieldList['resolvedDate']);
  13. $ncs = initTableData($ncs, $config->auditplan->nc->dtable->fieldList, $this->auditplan);
  14. modalHeader(set::title($title));
  15. dtable
  16. (
  17. set::data($ncs),
  18. set::cols(array_values($config->auditplan->nc->dtable->fieldList)),
  19. set::userMap($users)
  20. );