19626
2023-10-23 1727a4f4d02e429475608e60f142a63bc24127bc
force-app/main/default/classes/BidAnnounceIframeController.cls
@@ -20,12 +20,12 @@
        if (docList.size() > 0) {
            doc = docList[0];
        }
        if (bid.Web_URL__c != null) {
            // 中标通知书URL更新时间 と 最新Attachmentの時間と比較、新しいものを適用
            if (doc != null) {
                ContentVersion version = [select Id from ContentVersion where ContentDocumentId =: doc.Id];
                if (bid.Web_URL_ModifiedDate__c < doc.ContentModifiedDate) {
                    iframe = '/lightning/r/ContentDocument/' + doc.Id + '/view';
                    iframe = '/sfc/servlet.shepherd/version/renditionDownload?rendition=THUMB720BY480&versionId='+ version.Id;
                } else {
                    iframe = bid.Web_URL__c;
                }
@@ -37,7 +37,8 @@
        } else {
            // Attachmentを適用
            if (doc != null) {
                iframe = '/lightning/r/ContentDocument/' + doc.Id + '/view';
                ContentVersion version = [select Id from ContentVersion where ContentDocumentId =: doc.Id];
                iframe = '/sfc/servlet.shepherd/version/renditionDownload?rendition=THUMB720BY480&versionId='+ version.Id;
            }
        }
    }