| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <?php
- /**
- * The control file of company module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2012 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license business(商业软件)
- * @author Yangyang Shi <shiyangyang@cnezsoft.com>
- * @package company
- * @version $Id$
- * @link http://www.zentao.net
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/datepicker.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/datatable.fix.html.php';?>
- <?php js::set('maxCount', $config->maxCount);?>
- <?php if(common::checkNotCN()):?>
- <style>
- #sidebar .form-group .input-group-addon{width:93px;}
- #sidebar .form-group #userBox .input-group-addon{padding:5px 32px;}
- </style>
- <?php endif;?>
- <div id='mainMenu' class='clearfix'>
- <div class='btn-toolbar pull-left'>
- <?php
- foreach($lang->company->featureBar['calendar'] as $type => $name)
- {
- $activeClass = $type == $date ? ' btn-active-text' : '';
- echo html::a(inlink($type == 'calendar' ? 'calendar' : 'effort', $type == 'calendar' ? '' : "date=$type"), "<span class='text'>{$name}</span>", '', "class='btn btn-link{$activeClass}' id='{$type}Tab'");
- }
- ?>
- </div>
- <div class='btn-toolbar pull-right'><?php common::printIcon('effort', 'export', "userID=" . ($user ? $user->id : '') . "&orderBy=date_asc", '', 'button', '', '', 'export');?></div>
- </div>
- <div id="mainContent" class="main-row fade">
- <div class="side-col" id="sidebar">
- <div class="sidebar-toggle"><i class="icon icon-angle-left"></i></div>
- <div class='cell'>
- <form method='post' action='<?php echo $this->createLink('company', 'effort', "date=custom&orderBy=$orderBy")?>'>
- <div class='detail'>
- <div class='detail-content'>
- <div class='form-group'>
- <div class='input-group'>
- <span class='input-group-addon'><?php echo $lang->company->userType;?></span>
- <?php echo html::select('userType', $lang->company->userTypes, $userType, 'class="form-control chosen"');?>
- </div>
- </div>
- <div class='form-group'>
- <div class='input-group'>
- <span class='input-group-addon'><?php echo $lang->company->dept;?></span>
- <?php if(empty($mainDepts)) $mainDepts = array(0 => '/');?>
- <?php echo html::select('dept', $mainDepts, $dept, "class='form-control chosen' onchange='loadDeptUsers(this.value, \"account\")'");?>
- </div>
- </div>
- <div class='form-group'>
- <div class='input-group'>
- <span class='input-group-addon'><?php echo $lang->company->beginDate;?></span>
- <?php echo html::input('begin', $begin, 'class="form-control form-date"');?>
- </div>
- </div>
- <div class='form-group'>
- <div class='input-group'>
- <span class='input-group-addon'><?php echo $lang->company->endDate;?></span>
- <?php echo html::input('end', $end, 'class="form-control form-date"');?>
- </div>
- </div>
- <div class='form-group'>
- <div id='productIdBox' class='input-group'>
- <span class='input-group-addon'><?php echo $lang->company->product;?></span>
- <?php if($config->vision == 'lite'):?>
- <?php echo html::select('product', $products, $product, 'class="form-control chosen" onchange="loadProductExecutions(this.value)"');?>
- <?php else:?>
- <?php echo html::select('product', $products, $product, 'class="form-control chosen" onchange="loadProductProject(this.value)"');?>
- <?php endif;?>
- </div>
- </div>
- <?php if($config->vision != 'lite'):?>
- <div class='form-group'>
- <div id='projectIdBox' class='input-group'>
- <span class='input-group-addon'><?php echo $lang->company->project;?></span>
- <?php echo html::select('project', $projects, $project, 'class="form-control chosen" onchange="loadProductExecutions($(\'#product\').val(), this.value)"');?>
- </div>
- </div>
- <?php endif;?>
- <div class='form-group'>
- <div id='executionIdBox' class='input-group' style="width: 100%">
- <span class='input-group-addon'><?php echo $config->vision != 'lite' ? $lang->execution->common : $lang->company->execution;?></span>
- <?php echo html::select('execution', $executions, $execution, 'class="form-control chosen"');?>
- </div>
- </div>
- <div class='form-group'>
- <div id='userBox' class='input-group'>
- <span class='input-group-addon'><?php echo $lang->company->user;?></span>
- <?php echo html::select('user', $users, $account, 'class="form-control chosen"');?>
- </div>
- </div>
- <div class='form-group'><?php echo html::submitButton($lang->company->effort->view);?></div>
- </div>
- </div>
- </form>
- </div>
- </div>
- <div class="main-col">
- <?php
- $datatableId = $this->moduleName . ucfirst($this->methodName);
- $useDatatable = (isset($this->config->datatable->$datatableId->mode) and $this->config->datatable->$datatableId->mode == 'datatable');
- $vars = "date=$date&orderBy=%s&recTotal=$pager->recTotal&recPerPage=$pager->recPerPage";
- //if($useDatatable) include $app->getModuleRoot() . 'common/view/datatable.html.php';
- $customFields = $this->datatable->getOldSetting('company', '', true);
- $columns = 0;
- $customFields = json_encode($customFields);
- $customFields = json_decode($customFields);
- ?>
- <form class='main-table' data-ride='table' method='post' id='effortForm' action='<?php echo $this->createLink('effort', 'batchEdit', "from=browse&userID=" . ($user ? $user->id : ''))?>' <?php if($useDatatable) echo "style='overflow:hidden'"?>>
- <div class="table-responsive">
- <table class='table has-sort-head table-fixed <?php if($useDatatable) echo 'datatable';?>' id='effortList' data-checkable='false' data-custom-menu='true' data-checkbox-name='effortIDList[]'>
- <thead>
- <tr>
- <?php
- foreach($customFields as $field)
- {
- $field->show = true;
- $this->datatable->printHead($field, $orderBy, $vars, false);
- $columns ++;
- }
- ?>
- <th></th>
- </tr>
- </thead>
- <?php $times = 0?>
- <?php if($efforts):?>
- <tbody>
- <?php foreach($efforts as $effort):?>
- <tr data-id='<?php echo $effort->id;?>'>
- <?php
- $effort->consumed = helper::formatHours($effort->consumed);
- $effort->left = helper::formatHours($effort->left);
- $mode = $useDatatable ? 'datatable' : 'table';
- foreach($customFields as $field) $this->effort->printCell($field, $effort, $mode, $executions);
- ?>
- <td></td>
- </tr>
- <?php $times += $effort->consumed;?>
- <?php endforeach;?>
- </tbody>
- <?php endif;?>
- </table>
- </div>
- <?php if($efforts):?>
- <div class='table-footer'>
- <?php if($times):?>
- <span class='table-statistic' style='line-height:28px'><?php printf($lang->company->effort->timeStat, $times);?></span>
- <?php endif;?>
- <?php $pager->show('right', 'pagerjs');?>
- </div>
- <?php endif;?>
- </form>
- </div>
- </div>
- <script>
- $(function()
- {
- $('#<?php echo $date;?>').addClass('btn-active-text');
- <?php if($date == 'custom'): ?>
- $('#all').addClass('btn-active-text')
- <?php endif;?>
- <?php if((int)$date != 0):?>
- $('#date').css("font-weight", "bold");
- <?php endif;?>
- })
- </script>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|