-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsite-overview.component.html
More file actions
239 lines (206 loc) · 7.62 KB
/
Copy pathsite-overview.component.html
File metadata and controls
239 lines (206 loc) · 7.62 KB
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
<app-site-registration-container [content]="content"
[hasActions]="hasActions"
[belowActions]="belowActions"
[refresh]="refresh">
<app-page-header>Overview</app-page-header>
</app-site-registration-container>
<ng-template #content>
<app-page-section *ngIf="organization?.hasClaim">
<app-page-subheader>
<ng-container appPageSubheaderTitle>
<mat-icon class="mr-2">front_hand</mat-icon>
Request for changing Signing Authority
</ng-container>
</app-page-subheader>
<mat-card>
<mat-card-content>
<app-page-subheader>
<ng-container appPageSubheaderTitle>Reason for Change</ng-container>
<ng-container appPageSubheaderSummary>
{{ orgClaim?.details }}
</ng-container>
</app-page-subheader>
<app-overview-section title="New Signing Authority"
(route)="onRoute($event)">
<app-bcsc-profile [user]="newSigningAuthority"></app-bcsc-profile>
<app-enrollee-property title="Email">
{{ newSigningAuthority?.email | default }}
</app-enrollee-property>
<app-enrollee-property title="Phone Number">
{{ newSigningAuthority?.phone | phone | default }}
</app-enrollee-property>
</app-overview-section>
<button mat-flat-button
color="primary"
(click)="onApproveOrgClaim()">Approve Change
</button>
</mat-card-content>
</mat-card>
</app-page-section>
<app-page-section>
<app-page-subheader>
<ng-container appPageSubheaderTitle>
<mat-icon class="mr-2">location_city</mat-icon>
Organization Information
</ng-container>
<button mat-icon-button
matTooltip="View Organization"
(click)="onRoute([organization.id, AdjudicationRoutes.SITE_REGISTRATION, site.id, AdjudicationRoutes.ORGANIZATION_INFORMATION])">
<mat-icon>navigate_next icon</mat-icon>
</button>
</app-page-subheader>
<mat-card>
<mat-card-content>
<app-overview-container [organization]="organization"
[showEditRedirect]="false"
[admin]="true"></app-overview-container>
</mat-card-content>
</mat-card>
</app-page-section>
<app-page-section>
<app-page-subheader>
<ng-container appPageSubheaderTitle>
<mat-icon class="mr-2">store</mat-icon>
Site Information
</ng-container>
<button mat-icon-button
matTooltip="View Site"
(click)="onRoute([organization.id, AdjudicationRoutes.SITE_REGISTRATION, site.id, AdjudicationRoutes.SITE_INFORMATION])">
<mat-icon>navigate_next icon</mat-icon>
</button>
</app-page-subheader>
<mat-card>
<mat-card-content>
<app-overview-container [site]="site"
[showEditRedirect]="false"
[admin]="true"></app-overview-container>
</mat-card-content>
</mat-card>
</app-page-section>
<app-page-section *ngIf="site?.remoteUsers?.length">
<app-page-subheader class="remote-users-header">
<ng-container appPageSubheaderTitle>
<mat-icon class="mr-2">account_circle</mat-icon>
Remote Practitioners
</ng-container>
<button mat-icon-button
matTooltip="Remote User Export (csv file)"
(click)="onExportRemoteUsers('csv')">
<mat-icon>description</mat-icon>
</button>
<button mat-icon-button
matTooltip="View Remote Practitioners"
(click)="onRoute([organization.id, AdjudicationRoutes.SITE_REGISTRATION, site.id, AdjudicationRoutes.SITE_REMOTE_USERS])">
<mat-icon>navigate_next icon</mat-icon>
</button>
</app-page-subheader>
<mat-card>
<mat-card-content>
<app-remote-user-review [remoteUsers]="site?.remoteUsers"></app-remote-user-review>
</mat-card-content>
</mat-card>
</app-page-section>
</ng-template>
<ng-template #belowActions>
<app-page-section class="mb-5">
<app-page-subheader2>
<ng-container appPageSubheader2Title>Enter Site ID</ng-container>
<ng-container appPageSubheader2Summary>
The Site ID will be sent to the Signing Authority, PharmaNet Administrator and the
vendor associated to this submission.
</ng-container>
</app-page-subheader2>
<form (ngSubmit)="saveSiteId()"
[formGroup]="form"
novalidate>
<div class="row">
<div class="col-sm-12 col-lg-9 col-xl-5 pb-2">
<mat-form-field class="w-100">
<input matInput
placeholder="Site ID"
formControlName="pec"
appToUppercase>
<mat-error *ngIf="pec.hasError('required')">
Required
</mat-error>
<mat-error *ngIf="pec.hasError('assignable')">
Site ID already used by another organization
</mat-error>
</mat-form-field>
</div>
<div class="col-sm-12">
<button mat-flat-button
color="primary">Save Site ID
</button>
</div>
</div>
</form>
</app-page-section>
<app-page-section class="mb-5">
<app-page-subheader2>
<ng-container appPageSubheader2Title>Edit Vendor</ng-container>
</app-page-subheader2>
<div class="row">
<div class="col-sm-12 mb-4">
{{ site?.siteVendors[0]?.vendorCode | configCode: 'vendors' | default }}
</div>
<div class="col-sm-12">
<button mat-flat-button
color="primary"
(click)="onEditVendor()">Edit
</button>
</div>
</div>
</app-page-section>
<app-page-section *ngIf="showSendNotification"
class="mb-5">
<app-page-subheader2>
<ng-container appPageSubheader2Title>PharmaCare Provider Enrolment</ng-container>
<ng-container appPageSubheader2Summary>
Send notification to provider enrolment team
</ng-container>
</app-page-subheader2>
<button *ngIf="!isNotificationSent; else notificationSent"
mat-flat-button
color="primary"
(click)="onSendNotification()">Send Notification
</button>
<ng-template #notificationSent>
<app-alert type="success"
icon="check_circle">
<ng-container #alertContent
class="alert-content">
Notification sent
</ng-container>
</app-alert>
</ng-template>
</app-page-section>
<app-page-section *ngIf="showLinkSection"
class="mb-5">
<app-page-subheader2>
<ng-container appPageSubheader2Title>Predecessor Site</ng-container>
</app-page-subheader2>
<div class="mb-4"
*ngIf="!predecessorSite; else predecessorSitePanel">
No predecessor site
</div>
<ng-template #predecessorSitePanel>
<app-enrollee-property title="Organization">
{{ predecessorSite.organization.name }}
</app-enrollee-property>
<app-enrollee-property title="Site">
{{ predecessorSite.site.doingBusinessAs }} ({{ predecessorSite.site.pec}})
</app-enrollee-property>
</ng-template>
<button mat-flat-button
color="primary"
(click)="onOpenSiteLink()">{{ predecessorSite ? 'Edit' : 'Add' }}
</button>
<button mat-flat-button
color="warn"
class="ml-2"
*ngIf="predecessorSite"
(click)="onDeleteSiteLink()">Remove
</button>
</app-page-section>
</ng-template>