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

This commit is contained in:
z
2020-08-04 14:02:28 +08:00
5 changed files with 25 additions and 7 deletions
+18
View File
@@ -521,7 +521,25 @@
2744 添加用户页面和修改密码页面存在密码明文传输
2748 禅道翻译功能,翻译日语时, 当翻译结果与原文一致时,无法保存。
2754 翻译功能,新手教程中,创建账号,创建产品与创建需求,对照翻译时,复制到所翻译语言中的变量没有作用
2756 测试单新关联的用例无法执行
2757 创建项目关联产品计划会把未关联产品的需求关联到项目中
2758 开始、完成任务时添加的备注无法在历史记录中显示
2760 批量创建用户时密码无法使用
2761 路线图名称显示优化
2762 后台-二次开-发数据库 喧喧相关表显示异常
2763 关闭测试单页面报错
2764 批量创建任务及任务编辑页面没有检查起止日期是否合法
2765 添加链接文档访问报错
2767 翻译功能限制打开无效
2768 我的地盘待办和组织用户待办状态正好相反
2769 产品-需求编辑页面无法修改需求所处阶段
2771 免密登录未进行时间戳的校验
2772 未关闭的产品列表下展示的当前项目名称有误
2773 产品同步到bug中的模块无法设置模块负责人
2774 通过免密登录禅道不会记录登录系统的动态
2776 测试报告导出后用例的链接错误
2778 11.6.3版本上传.csv批量用例导入,提示没有数据错误
2781 后台的数据备份显示大小错误
2019-09-24 11.6.3
修复的Bug:
+1 -1
View File
@@ -19,7 +19,7 @@ if(!$selfCall) die(include('./todolist.html.php'));
.block-todoes .todoes-input .form-control:-ms-input-placeholder {font-size: 12px; line-height: 20px;color: #a4a8b6;}
.block-todoes .todoes-input .form-control::placeholder {font-size: 12px; line-height: 20px; color: #a4a8b6;}
.block-todoes .todoes {padding: 0 10px 10px 10px; margin: 0 -20px; max-height: 350px; overflow: auto; overflow-x:hidden}
.block-todoes .todoes > li {position: relative; padding: 5px 10px 5px 35px; list-style: none; white-space:nowrap; overflow: auto; overflow-x:hidden;}
.block-todoes .todoes > li {position: relative; padding: 5px 10px 5px 35px; list-style: none; white-space:nowrap; overflow: auto; overflow-x:hidden; width: 410px;}
.block-todoes .todoes > li:hover {background-color: #e9f2fb;}
.block-todoes .todo-title {padding: 5px 15px 5px 5px;}
.block-todoes .todo-pri {margin: 0 5px;}
+1 -1
View File
@@ -2534,7 +2534,7 @@ class bugModel extends model
if($bug->assignedTo == $account) $class .= ' red';
}
if($id == 'deadline' && isset($bug->delay)) $class .= ' delayed';
if(strpos(',project,story,plan,task,openedBuild,', ",{$id},") !== false) $class .= ' text-ellipsis';
if(strpos(',type,project,story,plan,task,openedBuild,', ",{$id},") !== false) $class .= ' text-ellipsis';
echo "<td class='" . $class . "' $title>";
if(isset($this->config->bizVersion)) $this->loadModel('flow')->printFlowCell('bug', $bug, $id);
+4 -4
View File
@@ -32,10 +32,10 @@ $lang->my->taskMenu->closedByMe = '由我关闭';
$lang->my->taskMenu->canceledByMe = '由我取消';
$lang->my->storyMenu = new stdclass();
$lang->my->storyMenu->assignedToMe = '指派给我';
$lang->my->storyMenu->openedByMe = '由我创建';
$lang->my->storyMenu->reviewedByMe = '由我评审';
$lang->my->storyMenu->closedByMe = '由我关闭';
$lang->my->storyMenu->assignedToMe = '指给我';
$lang->my->storyMenu->openedByMe = '我创建';
$lang->my->storyMenu->reviewedByMe = '我评审';
$lang->my->storyMenu->closedByMe = '我关闭';
$lang->my->home = new stdclass();
$lang->my->home->latest = '最新动态';
+1 -1
View File
@@ -58,7 +58,7 @@
<th class='w-100px<?php echo zget($visibleFields, 'status', ' hidden') . zget($requiredFields, 'status', '', ' required');?>'><?php echo $lang->task->status;?></th>
<th class='w-70px<?php echo zget($visibleFields, 'pri', ' hidden') . zget($requiredFields, 'pri', '', ' required');?>'><?php echo $lang->task->pri;?></th>
<th class='w-70px<?php echo zget($visibleFields, 'estimate', ' hidden') . zget($requiredFields, 'estimate', '', ' required');?>'><?php echo $lang->task->estimateAB;?></th>
<th class='w-70px<?php echo zget($visibleFields, 'record', ' hidden') . zget($requiredFields, 'record', '', ' required');?>'><?php echo $lang->task->consumedThisTime?></th>
<th class='w-70px<?php echo zget($visibleFields, 'record', ' hidden') . zget($requiredFields, 'record', '', ' required');?>'><?php echo $lang->task->consumed;?></th>
<th class='w-70px<?php echo zget($visibleFields, 'left', ' hidden') . zget($requiredFields, 'left', '', ' required');?>'><?php echo $lang->task->leftAB?></th>
<th class='w-90px<?php echo zget($visibleFields, 'estStarted', ' hidden') . zget($requiredFields, 'estStarted', '', ' required');?>'><?php echo $lang->task->estStarted?></th>
<th class='w-90px<?php echo zget($visibleFields, 'deadline', ' hidden') . zget($requiredFields, 'deadline', '', ' required');?>'><?php echo $lang->task->deadline?></th>