| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?php
- /**
- * The ajaxGetBurn view file of execution module of ZenTaoPMS.
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
- * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Shujie Tian<tianshujie@easycorp.ltd>
- * @package execution
- * @link https://www.zentao.net
- */
- namespace zin;
- jsVar('workHour', $lang->execution->workHour);
- div
- (
- setClass('pl-4 pr-2 py-3'),
- div
- (
- set::className('flex flex-nowrap justify-between mb-2'),
- div
- (
- setClass('panel-title nowrap overflow-hidden'),
- $execution->name . $lang->execution->burn,
- set::title($execution->name . $lang->execution->burn)
- ),
- common::hasPriv('execution', 'burn') && empty($execution->isTpl) ? btn
- (
- setClass('ghost text-gray'),
- set::url(createLink('execution', 'burn', "executionID={$execution->id}")),
- $lang->more
- ) : null
- ),
- common::hasPriv('execution', 'burn') ? echarts
- (
- set::grid(array('left' => '0', 'right' => '50px', 'bottom' => '0', 'containLabel' => true)),
- set::width('100%'),
- set::height('150%'),
- set::xAxis
- (
- array
- (
- 'type' => 'category',
- 'data' => $chartData['labels'],
- 'name' => $lang->execution->burnXUnit,
- 'boundaryGap' => false
- )
- ),
- set::yAxis
- (
- array
- (
- 'type' => 'value',
- 'name' => "({$lang->execution->workHour})",
- 'axisLine' => array('show' => true)
- )
- ),
- set::legend
- (
- array
- (
- 'selectedMode' => false,
- 'data' => array($lang->execution->charts->burn->graph->actuality, $lang->execution->charts->burn->graph->reference, $lang->execution->charts->burn->graph->delay)
- )
- ),
- set::tooltip
- (
- array
- (
- 'trigger' => 'axis',
- 'axisPointer' => array(
- 'type' => 'none'
- ),
- 'formatter' => "RAWJS<function(rowDatas){return window.randTipInfo(rowDatas);}>RAWJS"
- )
- ),
- set::series
- (
- array
- (
- array
- (
- 'data' => $chartData['baseLine'],
- 'type' => 'line',
- 'name' => $lang->execution->charts->burn->graph->reference,
- 'symbolSize' => 8,
- 'symbol' => 'circle',
- 'itemStyle' => array
- (
- 'normal' => array
- (
- 'color' => '#D8D8D8',
- 'lineStyle' => array
- (
- 'width' => 3,
- 'color' => '#F1F1F1'
- )
- ),
- 'emphasis' => array
- (
- 'color' => '#FFF',
- 'borderColor' => '#D8D8D8',
- 'borderWidth' => 2
- )
- ),
- 'emphasis' => array
- (
- 'lineStyle' => array
- (
- 'width' => 3,
- 'color' => '#F1F1F1'
- )
- )
- ),
- array
- (
- 'data' => $chartData['burnLine'],
- 'type' => 'line',
- 'name' => $lang->execution->charts->burn->graph->actuality,
- 'symbolSize' => 8,
- 'symbol' => 'circle',
- 'itemStyle' => array
- (
- 'normal' => array
- (
- 'color' => '#006AF1',
- 'lineStyle' => array
- (
- 'width' => 3,
- 'color' => '#2B7DFE'
- )
- ),
- 'emphasis' => array
- (
- 'color' => '#fff',
- 'borderColor' => '#006AF1',
- 'borderWidth' => 2
- )
- )
- ),
- !empty($chartData['delayLine']) ? array
- (
- 'data' => $chartData['delayLine'],
- 'type' => 'line',
- 'name' => $lang->execution->charts->burn->graph->delay,
- 'symbolSize' => 8,
- 'symbol' => 'circle',
- 'itemStyle' => array
- (
- 'normal' => array
- (
- 'color' => '#F00',
- 'lineStyle' => array
- (
- 'color' => '#F00'
- )
- ),
- 'emphasis' => array
- (
- 'color' => '#fff',
- 'borderColor' => '#F00',
- 'borderWidth' => 2
- )
- )
- ) : null
- )
- )
- ) : null
- );
- /* ====== Render page ====== */
- render();
|