Merge branch 'master' of github.com:easysoft/zentaopms

This commit is contained in:
wangyidong
2019-03-22 15:26:24 +08:00
15 changed files with 36 additions and 26 deletions
+1 -7
View File
@@ -103,18 +103,12 @@
<td><span id="storyIdBox"><?php echo html::select('story', $stories, $task->story, "class='form-control chosen'");?></span></td>
</tr>
<?php endif;?>
<?php if($task->parent == 0 and empty($task->team)):?>
<?php if($task->parent >= 0 and empty($task->team)):?>
<tr>
<th><?php echo $lang->task->parent;?></th>
<td><?php echo html::select('parent', $tasks, $task->parent, "class='form-control chosen'");?></td>
</tr>
<?php endif;?>
<?php if($task->parent > 0):?>
<tr>
<th><?php echo $lang->task->unlinkParent;?></th>
<td><?php echo html::checkbox('unlinkParent', '');?></td>
</tr>
<?php endif;?>
<tr>
<th><?php echo $lang->task->assignedTo;?></th>
<td><span id="assignedToIdBox"><?php echo html::select('assignedTo', $members, $task->assignedTo, "class='form-control chosen'");?></span></td>
+1 -1
View File
@@ -247,7 +247,7 @@
</tr>
<?php endif;?>
<tr>
<th><?php echo empty($task->team) ? $lang->task->assignTo : $lang->task->transferTo;?></th>
<th><?php echo $lang->task->assignedTo;?></th>
<td><?php echo $task->assignedTo ? $task->assignedToRealName . $lang->at . $task->assignedDate : $lang->noData;?></td>
</tr>
<tr>