From 07390e2fcb4adf27c928335bf27ae7939c5a80ad Mon Sep 17 00:00:00 2001
From: buli <137736985@qq.com>
Date: 星期二, 23 五月 2023 11:28:12 +0800
Subject: [PATCH] bakcup20230523
---
force-app/main/default/classes/eSignFormAttachmentController.cls | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/force-app/main/default/classes/eSignFormAttachmentController.cls b/force-app/main/default/classes/eSignFormAttachmentController.cls
index c6b6093..0c63ce9 100644
--- a/force-app/main/default/classes/eSignFormAttachmentController.cls
+++ b/force-app/main/default/classes/eSignFormAttachmentController.cls
@@ -36,14 +36,11 @@
}
List<ContentVersion> acc = [SELECT Id,Title,VersionData, ContentDocumentId,FileType
FROM ContentVersion WHERE ContentDocumentId IN : fileIDs];
- Map<ID, String> identifierMap = new Map<ID, String>();
- // for (ContentVersion docLink : acc) {
- // identifierMap.put(docLink.ContentDocumentId, docLink.Title+docLink.FileType);
- // }
+
// String soql = 'SELECT Name,id,parentId,ContentType from Attachment where parentId = :parentId order by createddate desc';
// List<Attachment> acc = Database.query(soql);
- //Map<String,String> identifierMap = new Map<String,String>();
+ Map<String,String> identifierMap = new Map<String,String>();
if(acc != null && acc.size() > 0){
for(Integer i = 0;i<acc.size();i++){
if(acc[i].Title.substring(0,1)=='A'){
--
Gitblit v1.9.1