* Add view.html.php for gantt setting.

This commit is contained in:
tanghucheng
2022-10-25 16:35:26 +08:00
parent e06a98bd09
commit dc2745f5ba
2 changed files with 44 additions and 8 deletions
-8
View File
@@ -64,14 +64,6 @@ class programplan extends control
$products = $this->loadModel('product')->getProducts($projectID);
$this->lang->modulePageNav = $this->product->select($products, $this->productID, 'programplan', 'browse', $type, 0, 0, '', false);
$this->lang->TRActions = "<button class='btn btn-link' data-toggle='dropdown'><i class='icon icon-export muted'></i> <span class='text'>" . $this->lang->export . "</span> <span class='caret'></span></button>";
$this->lang->TRActions .= "<ul class='dropdown-menu' id='exportActionMenu'>";
$this->lang->TRActions .= "<li><a href='javascript:exportGantt()'>" . $this->lang->execution->gantt->exportImg . "</a></li>";
$this->lang->TRActions .= "<li><a href='javascript:exportGantt(" . '"pdf"' . ")'>" . $this->lang->execution->gantt->exportPDF . "</a></li>";
$this->lang->TRActions .= "</ul>";
if(common::hasPriv('programplan', 'create')) $this->lang->TRActions .= html::a($this->createLink('programplan', 'create', "projectID=$projectID"), "<i class='icon icon-sm icon-plus'></i> " . $this->lang->programplan->create, '', "class='btn btn-primary'");
$selectCustom = 0; // Display date and task settings.
$dateDetails = 1; // Gantt chart detail date display.
if($type == 'gantt')
@@ -0,0 +1,44 @@
<?php
/**
* The setting file of programplan gantt of ZenTaoPMS.
*
* @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
* @author Hucheng Tang <liumengyi@easycorp.ltd>
* @package programplan
* @version $Id: ajaxcustom.html.php 935 2022-10-25 16:15:24Z $
* @link https://www.zentao.net
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php include '../../common/view/kindeditor.html.php';?>
<style>
.checkbox-primary{display: inline-block;width:100px;}
</style>
<div id='mainContent' class='main-content'>
<div class='main-header'>
<h2><?php echo $lang->programplan->settingGantt;?></h2>
</div>
<form class='form-indicator main-form form-ajax' method='post' enctype='multipart/form-data' id='dataform'>
<table class='table table-form'>
<tr>
<th><?php echo $lang->execution->gantt->format;?></th>
<td><?php echo html::radio('zooming', $lang->execution->gantt->zooming, $zooming ? $zooming : 'day');?></td>
</tr>
<tr>
<th><?php echo $lang->programplan->viewSetting;?></th>
<td><?php echo html::checkbox('stageCustom', $lang->programplan->stageCustom, $stageCustom);?></td>
</tr>
<tr>
<th><?php echo $lang->customField;?></th>
<td><?php echo html::checkbox('ganttFields', $customFields, $showFields);?></td>
</tr>
<tr>
<td colspan='2' class='text-center form-actions'>
<?php echo html::submitButton();?>
</td>
</tr>
</table>
</form>
</div>
<?php include '../../common/view/footer.html.php';?>