buli
2023-06-05 e9b970ea36eea5dcf93fd5b965bf13d7010ce0ad
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
<apex:component access="global" controller="SmarmEmailAlertController">
    <apex:attribute name="targetId" assignTo="{!smarmId}" description="" type="Id" required="false" />
    <html>
    <head></head>
        <body>
            领导:您好!!
            <br/><br/>
            以下我对{!smarm.Review_Target__r.Alias}进行了指导和反馈。请您确认并审批一下
            <br/>
            {!$label.Url_Head_Standard}/{!smarm.Id}
            <br/><br/>
            整体反馈:<br/>
            {!smarm.FinalComment__c}
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName1__c))}">
                反馈1(1.pdf)<br/>
                {!smarm.Comment1__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName2__c))}">
                反馈2(2.pdf)<br/>
                {!smarm.Comment2__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName3__c))}">
                反馈3(3.pdf)<br/>
                {!smarm.Comment3__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName4__c))}">
                反馈4(4.pdf)<br/>
                {!smarm.Comment4__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName5__c))}">
                反馈5(5.pdf)<br/>
                {!smarm.Comment5__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName6__c))}">
                反馈6(6.pdf)<br/>
                {!smarm.Comment6__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName7__c))}">
                反馈7(7.pdf)<br/>
                {!smarm.Comment7__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName8__c))}">
                反馈8(8.pdf)<br/>
                {!smarm.Comment8__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName9__c))}">
                反馈9(9.pdf)<br/>
                {!smarm.Comment9__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName10__c))}">
                反馈10(10.pdf)<br/>
                {!smarm.Comment10__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName11__c))}">
                反馈11(11.pdf)<br/>
                {!smarm.Comment11__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName12__c))}">
                反馈12(12.pdf)<br/>
                {!smarm.Comment12__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName13__c))}">
                反馈13(13.pdf)<br/>
                {!smarm.Comment13__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName14__c))}">
                反馈14(14.pdf)<br/>
                {!smarm.Comment14__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName15__c))}">
                反馈15(15.pdf)<br/>
                {!smarm.Comment15__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName16__c))}">
                反馈16(16.pdf)<br/>
                {!smarm.Comment16__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName17__c))}">
                反馈17(17.pdf)<br/>
                {!smarm.Comment17__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName18__c))}">
                反馈18(18.pdf)<br/>
                {!smarm.Comment18__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName19__c))}">
                反馈19(19.pdf)<br/>
                {!smarm.Comment19__c}
            </apex:outputPanel>
            <br/><br/>
            <apex:outputPanel rendered="{!NOT(ISNULL(smarm.ReportName20__c))}">
                反馈20(20.pdf)<br/>
                {!smarm.Comment20__c}
            </apex:outputPanel>
        </body>
    </html>
</apex:component>