buli
2023-07-18 df5aa8087c2c7328dc4188f05d762c8df1f0b07a
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
<aura:component
    controller="AgencyAccountCmp"
    implements="forceCommunity:availableForAllPageTypes"
    access="global"
>
    <aura:handler name="init" value="{!this}" action="{!c.doInit}" />
    <aura:attribute name="login" type="Boolean" default="false" />
    <aura:attribute name="accounts" type="List" />
    <aura:attribute name="hosStr" type="String" />
    <aura:attribute name="conStr" type="String" />
    <aura:attribute name="filedsmap" type="Map" />
    <aura:attribute name="awsdata" type="Map" />
    <aura:attribute name="temp_aws_id" type="String" />
    <aura:attribute name="staticResource" type="Map" />
 
    <ltng:require scripts="{! $Resource.jquery183minjs }" />
    <ltng:require
        scripts="{! $Resource.AWSService+'/AWSService.js' }"
        afterScriptsLoaded="{!c.scriptsLoaded}"
    />
    <aura:renderIf isTrue="{!v.login}">
        <!-- add by Deloitte-Link 2023-6-19 -->
        <div class="weeklyReportSpinner">
            <div class="slds-spinner_container">
                <div
                    class="slds-spinner--brand slds-spinner slds-spinner--medium"
                    role="alert"
                >
                    <span id="aa" class="slds-assistive-text">Loading</span>
                    <div class="slds-spinner__dot-a"></div>
                    <div class="slds-spinner__dot-b"></div>
                </div>
            </div>
        </div>
    </aura:renderIf>
    <form class="slds-form--inline">
        <div class="slds-form-element">
            <label class="slds-form-element__label"
                >{!v.filedsmap.Hospital_DC_Name__c}</label
            >
            <div class="slds-form-element__control">
                <ui:inputText class="slds-input" value="{!v.hosStr}" />
            </div>
        </div>
        <div class="slds-form-element">
            <label class="slds-form-element__label">{!v.filedsmap.Name}</label>
            <div class="slds-form-element__control">
                <ui:inputText class="slds-input" value="{!v.conStr}" />
            </div>
        </div>
        <div class="slds-form-element">
            <button
                type="button"
                class="slds-button slds-button--brand"
                onclick="{!c.searchContact}"
            >
                检索
            </button>
        </div>
        <div class="slds-form-element">
            <button
                type="button"
                class="slds-button slds-button--brand"
                onclick="{!c.clearContact}"
            >
                清除
            </button>
        </div>
    </form>
    <div class="contents_wrapper">
        <table class="slds-table slds-table--bordered slds-table--cell-buffer">
            <thead>
                <tr class="slds-text-title--caps">
                    <th scope="col">
                        <div class="slds-truncate" title="{!v.filedsmap.Name}">
                            {!v.filedsmap.Name}
                        </div>
                    </th>
                    <!-- 精琢科技  zxk  SWAG-C8F8TU start -->
                    <th scope="col" style="width: 5px">
                        <div
                            class="slds-truncate"
                            title="{!v.filedsmap.Hospital_Name__c}"
                        >
                            {!v.filedsmap.Hospital_Name__c}
                        </div>
                    </th>
                    <th scope="col" style="width: 150px">
                        <div
                            class="slds-truncate"
                            title="{!v.filedsmap.Department_Cateogy_F__c}"
                        >
                            {!v.filedsmap.Department_Cateogy_F__c}
                        </div>
                    </th>
                    <!-- 精琢科技  zxk  SWAG-C8F8TU end -->
                    <!-- <th scope="col">
            <div class="slds-truncate" title="{!v.filedsmap.Hospital_DC_Name__c}">{!v.filedsmap.Hospital_DC_Name__c}</div>
          </th> -->
                    <th scope="col" style="width: 150px">
                        <div
                            class="slds-truncate"
                            title="{!v.filedsmap.Type__c}"
                        >
                            {!v.filedsmap.Type__c}
                        </div>
                    </th>
                    <th scope="col" style="width: 150px">
                        <div
                            class="slds-truncate"
                            title="{!v.filedsmap.Doctor_Division1__c}"
                        >
                            {!v.filedsmap.Doctor_Division1__c}
                        </div>
                    </th>
                    <th scope="col">
                        <div
                            class="slds-truncate"
                            title="{!v.filedsmap.IsOlympusContact__c}"
                        >
                            {!v.filedsmap.IsOlympusContact__c}
                        </div>
                    </th>
                </tr>
            </thead>
            <tbody>
                <aura:iteration
                    items="{!v.accounts}"
                    var="item"
                    indexVar="index"
                >
                    <tr>
                        <th scope="row" data-label="Opportunity Name">
                            <aura:set
                                attribute="temp_aws_id"
                                value="{! item.AWS_Data_Id__c }"
                            />
 
                            <div class="slds-truncate">
                                <a
                                    href="{!'/partner/s/agency-contact/' + item.Id}"
                                    style="position: relative"
                                >
                                    <span class="encrypt">{!item.Name}</span>
                                    <span class="decrypt"
                                        >{!item.awsdata.name}</span
                                    >
                                </a>
                            </div>
                        </th>
                        <!-- 精琢科技  zxk  SWAG-C8F8TU start -->
                        <td data-label="Account Name">
                            <aura:renderIf
                                isTrue="{!item.IsOlympusContact__c == false}"
                            >
                                <div
                                    class="slds-truncate"
                                    title="{!item.Hospital_Name__c}"
                                >
                                    <a
                                        href="{!'/partner/s/agency-hospital-link/' + item.Agency_Hospital__c}"
                                        >{!item.Hospital_Name__c}</a
                                    >
                                </div>
                            </aura:renderIf>
                            <aura:renderIf isTrue="{!item.IsOlympusContact__c}">
                                <div
                                    class="slds-truncate"
                                    title="{!item.Hospital_Name__c}"
                                >
                                    {!item.Hospital_Name__c}
                                </div>
                            </aura:renderIf>
                        </td>
                        <td data-label="Account Name01">
                            <div
                                class="slds-truncate"
                                title="{!item.Department_Cateogy_F__c}"
                            >
                                {!item.Department_Cateogy_F__c}
                            </div>
                        </td>
                        <!-- 精琢科技  zxk  SWAG-C8F8TU end -->
 
                        <!--  <td data-label="Account Name">
              <aura:renderIf isTrue="{!item.IsOlympusContact__c == false}">
                <div class="slds-truncate" title="{!item.Hospital_DC_Name__c}"><a href="{!'/partner/s/agency-hospital-link/' + item.Agency_Hospital__c}">{!item.Hospital_DC_Name__c}</a></div>
            </aura:renderIf>
            <aura:renderIf isTrue="{!item.IsOlympusContact__c}">
                <div class="slds-truncate" title="{!item.Hospital_DC_Name__c}">{!item.Hospital_DC_Name__c}</div>
            </aura:renderIf>
          </td> -->
 
                        <td data-label="Close Date">
                            <div class="slds-truncate" title="{!item.Type__c}">
                                <span class="encrypt">{!item.Type__c}</span>
                                <span class="decrypt"
                                    >{!item.awsdata.type}</span
                                >
                            </div>
                        </td>
                        <td data-label="Stage">
                            <div
                                class="slds-truncate"
                                title="{!item.Doctor_Division1__c}"
                            >
                                <span class="encrypt"
                                    >{!item.Doctor_Division1__c}</span
                                >
                                <span class="decrypt"
                                    >{!item.awsdata.doctorDivision1}</span
                                >
                            </div>
                        </td>
                        <td data-label="IsOlympusContact__c">
                            <ui:outputCheckbox
                                value="{!item.IsOlympusContact__c}"
                            />
                        </td>
                    </tr>
                </aura:iteration>
            </tbody>
        </table>
    </div>
    <!-- <aura:renderIf isTrue="{!v.report_count > 0}">
            <aura:set attribute="else">
                <div class="no_data_area">
                    {!v.list_message}
                </div>
            </aura:set>
        </aura:renderIf> -->
</aura:component>