Commit a1f25cd5 by Lee Jaebin

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

parent 5f03a193
......@@ -1159,8 +1159,10 @@ public class OperationLogic extends AbstractLogic {
for (TaskReportSendDto taskReportSendDto : taskReportSendDtoList) {
// 履歴なし:元のattachedFileSendFlg
// 履歴更新:true、ファイルに変更が無くてもzipファイル作成
if (taskReportSendDto.taskReportSendId < lastTaskReportSendId) {
// 履歴あり:true、ファイルに変更が無くてもzipファイル作成
// 履歴ありで、ローカルの添付ファイルが存在する場合、attachedFileSendFlgをtrueにセットする
if (taskReportSendDto.taskReportSendId < lastTaskReportSendId
|| (!StringUtil.isNullOrEmpty(taskReportDto.localAttachedFileName) && operationDto.enableReportHistory == Constant.EnableReportHistory.Enable)) {
taskReportDto.attachedFileSendFlg = true;
}
......
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