Merge branch 'master' of https://gitlab.zcorp.cc/easycorp/zentaopms into importExport
This commit is contained in:
@@ -1409,7 +1409,7 @@ class executionModel extends model
|
||||
->andWhere('t2.deleted')->eq(0)
|
||||
->fetchPairs();
|
||||
|
||||
$products = $this->loadModel('product')->getProductPairsByProject($projectID);
|
||||
$products = $this->loadModel('product')->getProductPairsByProject($projectID, 'all', $executionProducts);
|
||||
|
||||
foreach($executions as $id => $execution)
|
||||
{
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
<td><?php echo html::password('password2', '', "class='form-control'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2' class='text-center form-actions'><?php echo html::submitButton() . html::backButton();?></td>
|
||||
<td colspan='2' class='text-center form-actions'><?php echo html::submitButton();?></td>
|
||||
</tr>
|
||||
</table>
|
||||
<?php if(!empty($this->app->user->modifyPasswordReason)):?>
|
||||
|
||||
@@ -798,7 +798,7 @@ class task extends control
|
||||
$execution = $this->execution->getByID($task->execution);
|
||||
$execLaneType = $this->session->execLaneType ? $this->session->execLaneType : 'all';
|
||||
$execGroupBy = $this->session->execGroupBy ? $this->session->execGroupBy : 'default';
|
||||
if(($this->app->tab == 'execution' or ($this->config->vision == 'lite' and $this->app->tab == 'project')) and $execution->type == 'kanban')
|
||||
if(($this->app->tab == 'execution' or ($this->config->vision == 'lite' and $this->app->tab == 'project' and $this->session->kanbanview == 'kanban')) and $execution->type == 'kanban')
|
||||
{
|
||||
$rdSearchValue = $this->session->rdSearchValue ? $this->session->rdSearchValue : '';
|
||||
$kanbanData = $this->loadModel('kanban')->getRDKanban($task->execution, $execLaneType, 'id_desc', 0, $execGroupBy, $rdSearchValue);
|
||||
|
||||
@@ -102,7 +102,7 @@ class myMisc extends misc
|
||||
|
||||
if($action == 'downloadPackage')
|
||||
{
|
||||
ini_set('memory_limit', '512M');
|
||||
ini_set('memory_limit', '1G');
|
||||
$account = $this->app->user->account;
|
||||
$clientDir = $this->app->wwwRoot . 'data/client/' . "$account/";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user