1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
public without sharing class eSignHospitalPageController {
    //Get Account Records
     @AuraEnabled
     public static eSignWrapper geteSigns(String DNName){
         // 最多只显示200条明细数据
         List<eSignFormLineItem__c> eSignFormLineItems = 
             [SELECT Id, OTCode__c, Name,
             Asset_Model_No__c ,
             productName__c,
             Count_Text__c,
             GoodStatus__c,
             agencyConfirmResult__c,
             agencyGoodStatus__c,
             HPConfirmResult__c,
             HPGoodStatus__c 
             ,
             CaseNumber__c
             FROM eSignFormLineItem__c
             where eSignForm__r.DNNameNo0__c =: DNName
             order by CaseNumber__c asc
             ];
         eSignForm__c eSignForm  = 
             [SELECT Id, Name, supplier__c,
              supplierNo__c, ContractNO__c, shippingUnit__c,
              shippingAddress__c, DNNameNo0__c, contactName__c,
              contactNumber__c, DeliveryDate__c, endUserName__c,
              totalNumber__c, transportMode__c, totalWeight__c,
              Hospital_Name__c,account_Name__c,agencySignUpDate__c
              //CHAN-BWCBL8 精琢技术 wql 20201225 start 
              ,HPSignUpStatus__c,HPReject__c,HPDenyReason__c,HPRejectDate__c 
              //CHAN-BWCBL8 精琢技术 wql 20201225 end 
                 //GoodDetails__c, weight__c,
                 FROM eSignForm__c
                 where DNNameNo0__c =: DNName];
         eSignWrapper eSignWrapper = new eSignWrapper();
         eSignWrapper.eSignFormLineItems = loadeSignFormEntry(eSignFormLineItems, '医院收货', eSignForm.ID );
 
         List<Decimal> caseList = new List<Decimal>();
         //存放 id,签收单明细
         Map<String,eSignFormLineItem__c> eSignFormLineItemMap = new Map<String,eSignFormLineItem__c>();
         //定义一个变量 去判断箱号是否相同
         Decimal str ;
         for(eSignFormLineItem__c efli : eSignFormLineItems){
             
             if(str ==null){
                 str = efli.CaseNumber__c;
                 caseList.add(efli.CaseNumber__c);
                 eSignFormLineItemMap.put(efli.id,efli);
             }else{
                 if(!caseList.contains(efli.CaseNumber__c)){
                     caseList.add(efli.CaseNumber__c);
                     eSignFormLineItemMap.put(efli.id,efli);
                 }
             }
             
 
         }
         //外层遍历所有的
         for(eSignFormLineItem__c eflitem : eSignFormLineItems){
             //eSignFormLineItemMap是需要显示的
             if(eSignFormLineItemMap.containsKey(eflitem.id)){
                 eflitem.isBlockButton__c = 'block';
             }else{
                 eflitem.isBlockButton__c = 'none';
             }
             
         }
 
         eSignWrapper.eSignFormLineItems =eSignFormLineItems;
         eSignWrapper.eSignForm = loadeSignForm(eSignForm,'医院收货',eSignForm.ID);
         return eSignWrapper;
     }
         
 
     @AuraEnabled
     public static saveeSignFormEntryResult saveeSignFormEntry(
         list<eSignFormLineItem__c> eSignFormLineItems, eSignForm__c eSignForm
         , string entryType, boolean IsSubmit,boolean IsHPSubmit,boolean IsHPScan,Date agencyScanDayBack,
         Date agencySignUpDateBack,Date agencyConfirmDateBack,String HPWorkflowEmailBack){
             saveeSignFormEntryResult tempResult = new saveeSignFormEntryResult();
         try{
             eSignFormEntry__c tempeSignFormEntry = new eSignFormEntry__c();
             tempeSignFormEntry.Name = eSignForm.Name + '-' + entryType;
             tempeSignFormEntry.entryType__c = entryType;
             // tempeSignFormEntry.IsSubmit__c = IsSubmit;
             tempeSignFormEntry.IsHPScan__c = IsHPScan;
             tempeSignFormEntry.IsHPSubmit__c = IsHPSubmit;
             tempeSignFormEntry.eSignForm__c = eSignForm.ID;
 
             List<eSignFormEntry__c> lastESignFormEntryList = [select id,agencyScanDayBack__c,agencySignUpDateBack__c,agencyConfirmDateBack__c,
             HPScanDayBack__c,HPSignUpDateBack__c,entryType__c,AgencyWorkflowEmailBack__c,HPWorkflowEmailBack__c,agencyAutoSignUpStatus__c,agencyReject__c,HPReject__c,IsAgencyScan__c,IsHPScan__c,IsHandled__c,IsSubmit__c    
                 from eSignFormEntry__c
                 where eSignForm__c = :eSignForm.ID
                 order by createddate desc limit 1];
 
             if(lastESignFormEntryList.size()>0){
                 //经销商扫描日
                 tempeSignFormEntry.agencyScanDayBack__c = lastESignFormEntryList[0].agencyScanDayBack__c;
                 //经销商签收日
                 tempeSignFormEntry.agencySignUpDateBack__c = lastESignFormEntryList[0].agencySignUpDateBack__c;
                 //经销商确认日
                 tempeSignFormEntry.agencyConfirmDateBack__c = lastESignFormEntryList[0].agencyConfirmDateBack__c;
                 //经销商邮箱
                 tempeSignFormEntry.AgencyWorkflowEmailBack__c = lastESignFormEntryList[0].AgencyWorkflowEmailBack__c;
                 //医院扫描日
                 tempeSignFormEntry.HPScanDayBack__c =  lastESignFormEntryList[0].HPScanDayBack__c;
                 //医院签收日
                 tempeSignFormEntry.HPSignUpDateBack__c =  lastESignFormEntryList[0].HPSignUpDateBack__c;
                 //如果上一条经销商已处理,但是签收单被驳回了,那么医院签收的中间表就不应该有这两个经销商的勾
                 //其它情况都应该带着
                 if(lastESignFormEntryList[0].IsHandled__c && lastESignFormEntryList[0].agencyAutoSignUpStatus__c == '不批准'){
                     tempeSignFormEntry.IsSubmit__c = false;
                     tempeSignFormEntry.IsAgencyScan__c = false;
                 }else{
                     tempeSignFormEntry.IsSubmit__c = lastESignFormEntryList[0].IsSubmit__c;
                     tempeSignFormEntry.IsAgencyScan__c = lastESignFormEntryList[0].IsAgencyScan__c;
                 }
 
                 
             }
                 //医院扫描日
                 tempeSignFormEntry.HPScanDayBack__c =  Date.today();
                 //医院邮箱
                 tempeSignFormEntry.HPWorkflowEmailBack__c = HPWorkflowEmailBack;
                 //医院签收日
                 if(IsHPSubmit){
                     tempeSignFormEntry.HPSignUpDateBack__c =  Date.today();
                 }
 
             
             
 
             insert tempeSignFormEntry;
             list<eSignFormLineItemEntry__c> eSignFormLineItemEntryList = 
                 new list<eSignFormLineItemEntry__c>();
             for(eSignFormLineItem__c tempeSignFormLineItem : eSignFormLineItems){
                 eSignFormLineItemEntry__c tempeSignFormLineItemEntry = 
                     new eSignFormLineItemEntry__c();
                 tempeSignFormLineItemEntry.eSignFormEntry__c =  tempeSignFormEntry.id;
                 tempeSignFormLineItemEntry.Name =  tempeSignFormLineItem.Name;
                 tempeSignFormLineItemEntry.eSignFormLineItem__c =  tempeSignFormLineItem.id;
 
                 tempeSignFormLineItemEntry.HPGoodStatus__c =  tempeSignFormLineItem.HPGoodStatus__c;
                 //更新之前的经销商的操作流程信息 货物情况(经销商)、处理意见(经销商)、确认结果(经销商)
                 tempeSignFormLineItemEntry.agencyGoodStatus__c = tempeSignFormLineItem.agencyGoodStatus__c;
                 tempeSignFormLineItemEntry.agencyConfirmResult__c = tempeSignFormLineItem.agencyConfirmResult__c;
                 //如果医院货物情况为完好,默认赋值为同意
                 if(tempeSignFormLineItem.HPGoodStatus__c == '完好'){
                     tempeSignFormLineItemEntry.HPConfirmResult__c = '同意';
                 }
                 eSignFormLineItemEntryList.add(tempeSignFormLineItemEntry);
             }
             if(eSignFormLineItemEntryList.size() > 0 ){
                 insert eSignFormLineItemEntryList;
             }
             tempResult.isSuccess = true;
             tempResult.result = tempeSignFormEntry.id;
         }catch(Exception e){
             tempResult.result = e.getMessage();
         }
         
         return tempResult;
     }
 
     public static List<eSignFormLineItem__c> loadeSignFormEntry(
         List<eSignFormLineItem__c> eSignFormLineItems, string entryType, string eSignFormID ){
         list<eSignFormEntry__c> tempeSignFormEntryList =
             [select id
                 from eSignFormEntry__c
                 where eSignForm__c = :eSignFormID
                 // and  entryType__c =: entryType
                 order by createddate desc limit 1
             ];
         if( tempeSignFormEntryList.size() == 0){
             for( eSignFormLineItem__c tempEsignItem: eSignFormLineItems){
                 
                 if(tempEsignItem.HPGoodStatus__c == null){
                     tempEsignItem.HPGoodStatus__c = '完好';
                 }
             }
             return eSignFormLineItems;
         }
         list<eSignFormLineItemEntry__c> eSignFormLineItemEntryList =
          [select id ,GoodStatus__c,HPGoodStatus__c,eSignFormLineItem__c,HPConfirmResult__c,agencyGoodStatus__c,agencyConfirmResult__c,CaseNumber__c 
             from eSignFormLineItemEntry__c
             where eSignFormEntry__c =: tempeSignFormEntryList[0].id
          ];
         map<ID, eSignFormLineItemEntry__c> eSignFormLineItemEntryMap =
         new map<ID, eSignFormLineItemEntry__c>();
         for( eSignFormLineItemEntry__c tempESignEntryItem : eSignFormLineItemEntryList){
             eSignFormLineItemEntryMap.put(tempESignEntryItem.eSignFormLineItem__c, tempESignEntryItem);
         }
         for( eSignFormLineItem__c tempEsignItem: eSignFormLineItems){
             eSignFormLineItemEntry__c tempESignEntryItem =
                 eSignFormLineItemEntryMap.get(tempEsignItem.id);
             tempEsignItem.agencyGoodStatus__c =  tempESignEntryItem.agencyGoodStatus__c;
             tempEsignItem.agencyConfirmResult__c =tempESignEntryItem.agencyConfirmResult__c;
             //如果经销商货物情况为完好,默认赋值为同意
             // tempEsignItem.CaseNumber__c = tempESignEntryItem.CaseNumber__c;
             if(tempESignEntryItem.HPGoodStatus__c != null){
             tempEsignItem.HPGoodStatus__c = tempESignEntryItem.HPGoodStatus__c;
             }else{
             tempEsignItem.HPGoodStatus__c = '完好';
             }
         }
 
         return eSignFormLineItems;
     }
     //获取上一次的录入表 主要为了获取邮箱
     public static eSignForm__c loadESignForm(eSignForm__c eSignForm,string entryType,string eSignFormID ){
         list<eSignFormEntry__c> tempeSignFormEntryList =
             [select id,AgencyWorkflowEmailBack__c,HPWorkflowEmailBack__c
                 from eSignFormEntry__c
                 where eSignForm__c = :eSignFormID
                 and  entryType__c =: entryType
                 order by createddate desc limit 1
             ];
         if( tempeSignFormEntryList.size() > 0){
             eSignForm.HPWorkflowEmail__c= tempeSignFormEntryList[0].HPWorkflowEmailBack__c;
         }
 
         return eSignForm;
     }
     public class saveeSignFormEntryResult{
         @AuraEnabled
         public Boolean isSuccess;
         @AuraEnabled
         public string result;
         public saveeSignFormEntryResult(){
             isSuccess = false;
             result = '';
         }
     }
     public class eSignWrapper{
         @AuraEnabled
         public List<eSignFormLineItem__c> eSignFormLineItems;
 
         @AuraEnabled
         public eSignForm__c eSignForm;
         public eSignWrapper(){
             eSignFormLineItems = new List<eSignFormLineItem__c>();
             eSignForm = new eSignForm__c();
         }
 
     }
     //文件上传
     @AuraEnabled
     public static Id saveChunk(Id parentId, String fileName, String base64Data, String contentType, String fileId) {
         // check if fileId id ''(Always blank in first chunk), then call the saveTheFile method,
         //  which is save the check data and return the attachemnt Id after insert, 
         //  next time (in else) we are call the appentTOFile() method
         //   for update the attachment with reamins chunks   
        System.debug('base64Data = ' + base64Data);
         if (fileId == '') {
             fileId = saveTheFile(parentId, fileName, base64Data, contentType);
         } else {
            fileId = appendToFile(parentId, fileId, base64Data);
         }
  
         return Id.valueOf(fileId);
     }
  
     public static Id saveTheFile(Id parentId, String fileName, String base64Data, String contentType) {
        base64Data = EncodingUtil.urlDecode(base64Data, 'UTF-8');
        // 20231103   Lightning文件修改 Start
        // Attachment oAttachment = new Attachment();
        // oAttachment.parentId = parentId;
 
        // oAttachment.Body = EncodingUtil.base64Decode(base64Data);
        // oAttachment.Name = fileName;
        // oAttachment.ContentType = contentType;
 
        // insert oAttachment;
        ContentVersion version = new ContentVersion();
        version.Title = fileName;
        version.VersionData = EncodingUtil.base64Decode(base64Data);
        version.ContentLocation = 's';
        version.PathOnClient = fileName + '.' + contentType;
        version.FirstPublishLocationId = parentId;
        version.Description = parentId;
        insert version;
        version = [select ContentDocumentId from ContentVersion where Id =: version.Id limit 1];
        System.debug('version.ContentDocumentId = ' + version.ContentDocumentId);
        // ContentDocumentLink link = new ContentDocumentLink();
        // link.LinkedEntityId = parentId;
        // link.ContentDocumentId = version.ContentDocumentId;
        // link.ShareType = 'I';
        // link.Visibility = 'AllUsers';
        // insert link;
 
        BatchIF_Log__c iflog = new BatchIF_Log__c();
        iflog.Type__c = 'ContentDocumentLink';
        iflog.Log__c = 'first id: ' + parentId + '; version.ContentDocumentId: ' + version.ContentDocumentId + '; eSignHospitalPageController';
        insert iflog;
        return version.ContentDocumentId;
        // return link.ContentDocumentId;
        // 20231103   Lightning文件修改 End
    }
 
    private static Id appendToFile(Id parentId, Id fileId, String base64Data) {
        base64Data = EncodingUtil.urlDecode(base64Data, 'UTF-8');
        // 20231103   Lightning文件修改 Start
        // Attachment a = [
        //     SELECT Id, Body
        //     FROM Attachment
        //     WHERE Id =: fileId
        // ];
        ContentVersion oldVersion = [select Id,VersionData,ContentDocumentId, Title from ContentVersion where ContentDocumentId =: fileId];
        // List<ContentDocumentLink> oldContentDocumentLink = [select Id,LinkedEntityId from ContentDocumentLink where ContentDocumentId =: fileId];
        // String linkId = '';
        // String key = Schema.getGlobalDescribe().get('eSignFormEntry__c').getDescribe().getKeyPrefix();
        // for (ContentDocumentLink conDocuLink : oldContentDocumentLink) {
        //     String lId = conDocuLink.LinkedEntityId;
        //     if (lId.startsWith(key)) {
        //         linkId = conDocuLink.LinkedEntityId;
        //     }
        // }
 
        // String existingBody = EncodingUtil.base64Encode(a.Body);
        String existingBody = EncodingUtil.base64Encode(oldVersion.VersionData);
 
        // verison.VersionData = EncodingUtil.base64Decode(existingBody + base64Data);
        ContentVersion version = new ContentVersion();
        version.Title = oldVersion.Title;
        version.VersionData = EncodingUtil.base64Decode(existingBody + base64Data);
        version.ContentLocation = 's';
        version.PathOnClient = oldVersion.Title;
        version.FirstPublishLocationId = parentId;
        version.Description = parentId;
        insert version;
        System.debug('version.Id = ' + version.Id);
        version = [select ContentDocumentId from ContentVersion where Id =: version.Id limit 1];
        System.debug('version.ContentDocumentId = ' + version.ContentDocumentId);
        // if (String.isNotBlank(linkId)) {
        // ContentDocumentLink link = new ContentDocumentLink();
        // link.ContentDocumentId = version.ContentDocumentId;
        // link.LinkedEntityId = parentId;
        // link.ShareType = 'I';
        // link.Visibility = 'AllUsers';
        // insert link;
        // }
        BatchIF_Log__c iflog = new BatchIF_Log__c();
        iflog.Type__c = 'ContentDocumentLink';
        iflog.Log__c = 'id: ' + parentId + '; version.ContentDocumentId: ' + version.ContentDocumentId + '; eSignHospitalPageController';
        insert iflog;
        ContentDocument con = new ContentDocument();
        con.Id = oldVersion.ContentDocumentId;
        if (!Test.isRunningTest()) {
            delete con;
        }
 
        return version.ContentDocumentId;
        // update verison;
        // 20231103   Lightning文件修改 End
    }
    
    //文件删除功能  精琢技术 thh 2021-09-26 start
    @AuraEnabled
    public static void deleteChunk(Id AttachmentId) {
        // 20231103   Lightning文件修改 Start
        // Attachment attachment = new Attachment();
        // attachment.id = AttachmentId;
 
        // delete attachment;
        ContentDocument con =  new ContentDocument();
        con.Id = AttachmentId;
        delete con;
        // 20231103   Lightning文件修改 End
    }
    //文件删除功能  精琢技术 thh 2021-09-26 end
 }