Merge branch 'sprint/215_tianshujie_25128' into 'master'

Sprint/215 tianshujie 25128

See merge request easycorp/zentaopms!4483
This commit is contained in:
王怡栋
2022-07-12 09:21:23 +00:00
3 changed files with 4 additions and 3 deletions

View File

@@ -22,3 +22,4 @@
#copyKanbanModal .copyContentBox {display: inline-block;}
#copyKanbanModal .copyContentBox > .checkbox-primary {display: inline-block; margin-left: 10px; margin-top: -1px;}
#copyKanbanModal .copyContentBox > .checkbox-primary:first-child {margin-left: 20px;}
#copyContentbasicInfo {cursor: not-allowed;}

View File

@@ -1877,11 +1877,11 @@ class kanbanModel extends model
* Get can view objects.
*
* @param string $objectType kanbanspace|kanban
* @param string $param noclosed|private|cooperation|public|involved
* @param string $param all|noclosed|private|cooperation|public|involved
* @access public
* @return array
*/
public function getCanViewObjects($objectType = 'kanban', $param = '')
public function getCanViewObjects($objectType = 'kanban', $param = 'all')
{
$table = $this->config->objectTables[$objectType];
$objects = $this->dao->select('*')->from($table)

View File

@@ -60,7 +60,7 @@
<?php endif;?>
<tr>
<th class='columnWidth'><?php echo $lang->kanban->columnWidth;?></th>
<td><?php echo nl2br(html::radio('fluidBoard', $lang->kanbancolumn->fluidBoardList, isset($copyKanban->fluidBoard) ? isset($copyKanban->fluidBoard) : 0));?></td>
<td><?php echo nl2br(html::radio('fluidBoard', $lang->kanbancolumn->fluidBoardList, isset($copyKanban->fluidBoard) ? $copyKanban->fluidBoard : 0));?></td>
</tr>
<tr>
<th rowspan='2'><?php echo $lang->kanban->import?></th>