-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ancy Riju
authored and
Ancy Riju
committed
Mar 15, 2024
1 parent
4b830f0
commit ba67398
Showing
79 changed files
with
13,698 additions
and
850 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/* .full-width { | ||
height: stretch; | ||
} */ |
2 changes: 1 addition & 1 deletion
2
src/app/app-modules/nurse-doctor/dashboard/dashboard.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/app/app-modules/nurse-doctor/dashboard/dashboard.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
90 changes: 90 additions & 0 deletions
90
src/app/app-modules/nurse-doctor/doctor-tm-future-worklist/tm-future-worklist.component.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
.input-full-width { | ||
width: 100%; | ||
} | ||
|
||
mat-pagination { | ||
text-align: right; | ||
} | ||
|
||
mat-input-container { | ||
width: 60%; | ||
} | ||
|
||
mat-card { | ||
min-height: 400px; | ||
padding: 15px; | ||
} | ||
|
||
:host /deep/ .pagination { | ||
margin: 0; | ||
} | ||
|
||
@media (max-width: 481px) { | ||
mat-input-container { | ||
width: 100%; | ||
} | ||
#caseSheetButton { | ||
width: 100%; | ||
} | ||
} | ||
|
||
ul { | ||
list-style: none; | ||
padding: 0px; | ||
} | ||
|
||
ul li { | ||
display: inline-block; | ||
padding: 0 8px; | ||
} | ||
|
||
ul li div, | ||
ul li p { | ||
display: inline-block; | ||
} | ||
|
||
ul li div { | ||
height: 15px; | ||
width: 15px; | ||
} | ||
|
||
.marker-s-f-t-c { | ||
background: #0b69b2; | ||
} | ||
|
||
.action { | ||
text-align: center; | ||
} | ||
|
||
.visitStatus { | ||
position: relative; | ||
text-align: center; | ||
} | ||
|
||
.norecord { | ||
text-align: center; | ||
} | ||
|
||
.no-padding { | ||
padding: 0 !important; | ||
} | ||
|
||
.centered { | ||
justify-content: center; | ||
display: flex; | ||
} | ||
|
||
.visitStatus.s-f-t-c::before { | ||
content: ""; | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
bottom: 1px; | ||
width: 4px; | ||
background: #0b69b2; | ||
} | ||
|
||
.totalCount, | ||
.description { | ||
padding-top: 15px; | ||
} |
281 changes: 281 additions & 0 deletions
281
src/app/app-modules/nurse-doctor/doctor-tm-future-worklist/tm-future-worklist.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,281 @@ | ||
<div class="container-fluid"> | ||
<div class="row m-t-10"> | ||
<div class="col-xs-8 col-sm-6 col-md-4"> | ||
<div class="sw"> | ||
<input | ||
type="search" | ||
class="search" | ||
autocomplete="off" | ||
placeholder="{{ current_language_set?.common?.inTableSearch }}" | ||
name="filterTerm" | ||
[(ngModel)]="filterTerm" | ||
(keyup)="filterBeneficiaryList(filterTerm)" | ||
/> | ||
<button class="go" (click)="filterBeneficiaryList(filterTerm)"> | ||
<span class="material-icons">search</span> | ||
</button> | ||
</div> | ||
</div> | ||
<div class="col-xs-4 col-sm-6 col-md-8"> | ||
<button | ||
mat-raised-button | ||
id="caseSheetButton" | ||
style="display: none" | ||
[disabled]="true" | ||
class="btn btn-link pull-right" | ||
> | ||
{{ current_language_set?.bendetails?.emergencyCaseSheet }} | ||
</button> | ||
<button | ||
mat-raised-button | ||
class="pull-right mat_blue" | ||
color="primary" | ||
id="refresh" | ||
(click)="loadWorklist()" | ||
> | ||
{{ current_language_set?.common?.refresh }} | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div class="row m-t-10 m-b-40"> | ||
<div class="col-sm-12"> | ||
<mat-card> | ||
<section class="table-responsive" style="padding-bottom: 30px"> | ||
<div class="mat-elevation-z8 responsiveTable"> | ||
<table | ||
mat-table | ||
[dataSource]="dataSource" | ||
aria-describedby="EmergencyCaseSheetTbl" | ||
> | ||
<ng-container matColumnDef="sno"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.coreComponents?.sno }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
[ngClass]="{ | ||
visitStatus: true, | ||
's-f-t-c ': element.statusCode === 1 | ||
}" | ||
> | ||
{{ element.sno }} | ||
</td> | ||
</ng-container> | ||
<ng-container matColumnDef="beneficiaryID"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.bendetails?.beneficiaryID }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
(click)="getBeneficiryStatus(element)" | ||
> | ||
{{ element?.beneficiaryID }} | ||
</td> | ||
</ng-container> | ||
<ng-container matColumnDef="beneficiaryName"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.bendetails?.beneficiaryName }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
(click)="getBeneficiryStatus(element)" | ||
> | ||
{{ element?.benName | titlecase }} | ||
</td> | ||
</ng-container> | ||
<ng-container matColumnDef="gender"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.bendetails?.gender }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
(click)="getBeneficiryStatus(element)" | ||
> | ||
{{ element.genderName | titlecase }} | ||
</td> | ||
</ng-container> | ||
<ng-container matColumnDef="age"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.bendetails?.age }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
(click)="getBeneficiryStatus(element)" | ||
> | ||
{{ element.age }} | ||
</td> | ||
</ng-container> | ||
<ng-container matColumnDef="visitCategory"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.bendetails?.visitCategory }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
(click)="getBeneficiryStatus(element)" | ||
> | ||
<span style="color: #a6a6a6" | ||
>{{ element.VisitCategory }} | ||
</span> | ||
/ | ||
<span style="color: #a6a6a6">{{ element.benVisitNo }}</span> | ||
</td> | ||
</ng-container> | ||
<ng-container matColumnDef="district"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.bendetails?.district }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
(click)="getBeneficiryStatus(element)" | ||
> | ||
{{ element.districtName | titlecase }} / | ||
{{ element.villageName | titlecase }} | ||
</td> | ||
</ng-container> | ||
<ng-container matColumnDef="tcDate"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.bendetails?.tcDate }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
(click)="getBeneficiryStatus(element)" | ||
> | ||
{{ element.tCRequestDate }} | ||
</td> | ||
</ng-container> | ||
<ng-container matColumnDef="image"> | ||
<th | ||
mat-header-cell | ||
style="border-bottom: none" | ||
*matHeaderCellDef | ||
mat-sort-header | ||
> | ||
{{ current_language_set?.bendetails?.image }} | ||
</th> | ||
<td | ||
mat-cell | ||
*matCellDef="let element" | ||
(click)="patientImageView(element.beneficiaryRegID)" | ||
matTooltip="{{ current_language_set?.tc?.image }}" | ||
> | ||
<img | ||
src="assets/images/Avatar-Profile_30X30.png " | ||
alt="profile" | ||
/> | ||
</td> | ||
</ng-container> | ||
|
||
<td colspan="2"> | ||
<div class="totalCount" *ngIf="dataSource.data.length > 0"> | ||
{{ current_language_set?.common?.totalCount }} : | ||
{{ dataSource.data.length }} | ||
</div> | ||
</td> | ||
<!-- <td> | ||
<button | ||
mat-raised-button | ||
(click)="cancelTCRequest(element)" | ||
matTooltip="{{ current_language_set?.tc?.cancelTc }}" | ||
color="warn" | ||
[disabled]="element.specialist_flag !== 1" | ||
> | ||
{{ current_language_set?.common?.cancel }} | ||
</button> | ||
</td> | ||
<td> | ||
<button | ||
mat-raised-button | ||
(click)="reSchedule(element)" | ||
matTooltip="{{ current_language_set?.tc?.reschedule }}" | ||
color="primary" | ||
[disabled]="element.specialist_flag !== 4" | ||
> | ||
{{ current_language_set?.tc?.schedule }} | ||
</button> | ||
</td> --> | ||
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> | ||
<tr mat-row *matRowDef="let row; columns: displayedColumns"></tr> | ||
</table> | ||
</div> | ||
<div | ||
class="pull-center" | ||
style="margin-top: 35px; text-align: center" | ||
[hidden]="dataSource.data.length > 0" | ||
> | ||
<strong>{{ current_language_set?.noRecordsFound }}</strong> | ||
</div> | ||
<div class="col-12 row"> | ||
<div class="col-6"> | ||
<ul class="description" *ngIf="dataSource.data.length > 0"> | ||
<li> | ||
<div class="marker-s-f-t-c"></div> | ||
<p>{{ current_language_set?.common?.scheduledTC }}</p> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="col-6"> | ||
<mat-paginator | ||
style="display: unset !important" | ||
[pageSizeOptions]="[5, 10, 20]" | ||
[hidden]="dataSource.data.length === 0" | ||
[pageSize]="5" | ||
showFirstLastButtons | ||
aria-label="Select patient in tmFutureWorklist" | ||
> | ||
</mat-paginator> | ||
</div> | ||
</div> | ||
</section> | ||
</mat-card> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.