Commit 070d7026 by Lee Jaebin

#33449 詳細画面で、履歴の最初と最後のみ画像・動画が再生されない

parent 557a5afc
...@@ -1161,8 +1161,11 @@ public class OperationLogic extends AbstractLogic { ...@@ -1161,8 +1161,11 @@ public class OperationLogic extends AbstractLogic {
// 履歴なし:元のattachedFileSendFlg // 履歴なし:元のattachedFileSendFlg
// 履歴あり:true、ファイルに変更が無くてもzipファイル作成 // 履歴あり:true、ファイルに変更が無くてもzipファイル作成
// 履歴ありで、ローカルの添付ファイルが存在する場合、attachedFileSendFlgをtrueにセットする // 履歴ありで、ローカルの添付ファイルが存在する場合、attachedFileSendFlgをtrueにセットする
if (taskReportSendDto.taskReportSendId < lastTaskReportSendId if (taskReportSendDto.taskReportSendId == lastTaskReportSendId) {
|| (!StringUtil.isNullOrEmpty(taskReportDto.localAttachedFileName) && operationDto.enableReportHistory == Constant.EnableReportHistory.Enable)) { if (!StringUtil.isNullOrEmpty(taskReportDto.localAttachedFileName) && operationDto.enableReportHistory == Constant.EnableReportHistory.Enable) {
taskReportDto.attachedFileSendFlg = true;
}
} else {
taskReportDto.attachedFileSendFlg = true; taskReportDto.attachedFileSendFlg = true;
} }
...@@ -1175,7 +1178,7 @@ public class OperationLogic extends AbstractLogic { ...@@ -1175,7 +1178,7 @@ public class OperationLogic extends AbstractLogic {
if (zipFile != null) { if (zipFile != null) {
fileName = FileUtil.getFilenameWithoutExt(zipFile.getName()); fileName = FileUtil.getFilenameWithoutExt(zipFile.getName());
} }
taskReportDto.localAttachedFileName = fileName != null ? SecurityUtil.getMd5Hash(fileName) : null; taskReportDto.localAttachedFileName = fileName != null ? SecurityUtil.getMd5Hash(fileName) : taskReportDto.localAttachedFileName;
} }
try { try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment