diff --git a/ng-seed/src/app/app.routing.ts b/ng-seed/src/app/app.routing.ts
index d44d5cf..c03f17e 100644
--- a/ng-seed/src/app/app.routing.ts
+++ b/ng-seed/src/app/app.routing.ts
@@ -48,6 +48,10 @@ export const AppRoutes: Routes = [{
{
path: 'consultant-list',
loadChildren: () => import('./appoinment/front-desk/front-desk.module').then(m => m.FrontDeskModule)
+ },
+ {
+ path: 'mail-log',
+ loadChildren: () => import('./appoinment/mail/mail.module').then(m => m.MailModule)
}
diff --git a/ng-seed/src/app/appoinment/appoinment.module.ts b/ng-seed/src/app/appoinment/appoinment.module.ts
index 09e851e..2f00f51 100644
--- a/ng-seed/src/app/appoinment/appoinment.module.ts
+++ b/ng-seed/src/app/appoinment/appoinment.module.ts
@@ -2,7 +2,7 @@ import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AppoinmentRoutingModule } from './appoinment-routing.module';
import { DemoMaterialModule } from 'app/shared/demo.module';
-import { NgScrollbarModule } from 'ngx-scrollbar';
+import { NgScrollbarModule } from 'ngx-scrollbar';
@NgModule({
declarations: [
diff --git a/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.html b/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.html
new file mode 100644
index 0000000..80c7378
--- /dev/null
+++ b/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.html
@@ -0,0 +1,62 @@
+
Mail Details
+
+ Filter
+
+
+
+
+
+
+
+
+
+
+
+ | Report |
+ {{element.report}} |
+
+
+
+ Subject |
+ {{element.subject}} |
+
+
+
+ Recipients |
+ {{element.recipients}} |
+
+
+
+ Content Page |
+ {{element.content}} |
+
+
+
+ Status |
+ {{element.status}} |
+
+
+
+ Time Sent |
+ {{element.time}} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.scss b/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.scss
new file mode 100644
index 0000000..0d941a6
--- /dev/null
+++ b/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.scss
@@ -0,0 +1,18 @@
+.scrollHV {
+ height: calc(100vh - 0px);
+}
+.fullscreen{
+ position: absolute !important;
+ height: auto !important;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+}
+.my-table{
+ width: 100%;
+}
+.font-color{
+ font-weight: 600;
+ font-size: 14px;
+}
diff --git a/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.spec.ts b/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.spec.ts
new file mode 100644
index 0000000..c9e3f86
--- /dev/null
+++ b/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { MailLogComponent } from './mail-log.component';
+
+describe('MailLogComponent', () => {
+ let component: MailLogComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ MailLogComponent ]
+ })
+ .compileComponents();
+ });
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(MailLogComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.ts b/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.ts
new file mode 100644
index 0000000..2b8556b
--- /dev/null
+++ b/ng-seed/src/app/appoinment/mail/mail-log/mail-log.component.ts
@@ -0,0 +1,55 @@
+import { Component, OnInit, ViewChild } from '@angular/core';
+import { MatPaginator, PageEvent } from '@angular/material/paginator';
+import { MatSort } from '@angular/material/sort';
+import { MatTable } from '@angular/material/table';
+
+export interface PeriodicElement {
+ report: string;
+ subject: string;
+ recipients: string;
+ content: string;
+ status: string;
+ time: string;
+
+}
+const ELEMENT_DATA: PeriodicElement[] = [
+ {report: 'May 2020', subject: 'Monthly Report - May 2020', recipients: 'Test-Email', content: 'Monthly Report - May 2020', status: 'Sent', time: '6/7/2020 14:20'},
+ {report: 'June 2021', subject: 'Monthly Report - May 2020', recipients: 'Test-Email', content: 'Monthly Report - May 2020', status: 'Sent', time: '8/7/2020 14:20'},
+ {report: 'July 2020', subject: 'Monthly Report - May 2020', recipients: 'Test-Email', content: 'Monthly Report - May 2020', status: 'Not Sent', time: '10/7/2020 14:20'},
+ {report: 'August 2021', subject: 'Monthly Report - May 2020', recipients: 'Test-Email', content: 'Monthly Report - May 2020', status: 'Sent', time: '13/7/2020 14:20'}
+];
+
+@Component({
+ selector: 'app-mail-log',
+ templateUrl: './mail-log.component.html',
+ styleUrls: ['./mail-log.component.scss']
+})
+export class MailLogComponent implements OnInit {
+
+ displayedColumns: string[] = ['report', 'subject', 'recipients', 'content', 'status', 'time'];
+ dataSource = ELEMENT_DATA;
+ length = 5;
+ pageIndex = 0;
+ pageSize = 5;
+ pageEvent: PageEvent;
+ customersList: any[] = [];
+ isLoading = true
+ recordStatus: boolean;
+ @ViewChild(MatPaginator) paginator: MatPaginator;
+ @ViewChild(MatSort) sort: MatSort;
+ @ViewChild(MatTable,{static:true}) table: MatTable
+ constructor() { }
+
+ pageChange(e) {
+ console.log(e);
+ }
+ ngOnInit(): void {
+ this.recordStatus=false;
+ }
+ applyFilter(filterValue: string) {
+ filterValue = filterValue.trim();
+ filterValue = filterValue.toLowerCase();
+ // this.customersListSource.filter = filterValue;
+ }
+
+}
diff --git a/ng-seed/src/app/appoinment/mail/mail-routing.module.ts b/ng-seed/src/app/appoinment/mail/mail-routing.module.ts
new file mode 100644
index 0000000..969ae0a
--- /dev/null
+++ b/ng-seed/src/app/appoinment/mail/mail-routing.module.ts
@@ -0,0 +1,16 @@
+import { NgModule } from '@angular/core';
+import { RouterModule, Routes } from '@angular/router';
+import { MailLogComponent } from './mail-log/mail-log.component';
+
+const routes: Routes = [
+ {
+ path: '',
+ component: MailLogComponent
+ }
+];
+
+@NgModule({
+ imports: [RouterModule.forChild(routes)],
+ exports: [RouterModule]
+})
+export class MailRoutingModule { }
diff --git a/ng-seed/src/app/appoinment/mail/mail.module.ts b/ng-seed/src/app/appoinment/mail/mail.module.ts
new file mode 100644
index 0000000..b791b87
--- /dev/null
+++ b/ng-seed/src/app/appoinment/mail/mail.module.ts
@@ -0,0 +1,23 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+import { MailRoutingModule } from './mail-routing.module';
+import { MailLogComponent } from './mail-log/mail-log.component';
+import { SharedModule } from 'app/shared/shared.module';
+import { DemoMaterialModule } from 'app/shared/demo.module';
+import { NgScrollbarModule } from 'ngx-scrollbar';
+
+
+@NgModule({
+ declarations: [
+ MailLogComponent
+ ],
+ imports: [
+ CommonModule,
+ MailRoutingModule,
+ SharedModule,
+ DemoMaterialModule,
+ NgScrollbarModule
+ ]
+})
+export class MailModule { }
diff --git a/ng-seed/src/app/end-user/slot-booking/slot-booking-details.component.html b/ng-seed/src/app/end-user/slot-booking/slot-booking-details.component.html
index 4013e1b..021b4e5 100644
--- a/ng-seed/src/app/end-user/slot-booking/slot-booking-details.component.html
+++ b/ng-seed/src/app/end-user/slot-booking/slot-booking-details.component.html
@@ -59,33 +59,6 @@
-
-
-
Teero would like to schedule an interview with you! Pick a time & date.
-
-
-
Business
-
{{busName}}
-
Practitioner
-
Dr. {{doctor}}
-
Service
-
{{servicesName.servicesName}} ({{serviceMapdetails[0].duration.length>0 ? serviceMapdetails[0].duration[0].durationNew:serviceMapdetails[0].service[0].duration
- }} Mins)
-
-
Date :
-
{{date | date:'longDate'}}
-
Time :
-
{{slotTime | date:'shortTime'}}
-
Amount :
-
₹ {{ serviceMapdetails[0].duration.length>0 ? serviceMapdetails[0].duration[0].fees:serviceMapdetails[0].service[0].fees}}
-
-
-
-
-->
-
-
-
+
+
+
+
Teero would like to schedule an interview with you! Pick a time & date.
+
+
+
+
Practitioner
+
Dr. {{doctor}}
+
Service
+
{{servicesName.servicesName}} ({{serviceMapdetails[0].duration.length>0 ? serviceMapdetails[0].duration[0].durationNew:serviceMapdetails[0].service[0].duration
+ }} Mins)
+
+
Date :
+
{{date | date:'longDate'}}
+
Time :
+
{{slotTime | date:'shortTime'}}
+
Amount :
+
₹ {{ serviceMapdetails[0].duration.length>0 ? serviceMapdetails[0].duration[0].fees:serviceMapdetails[0].service[0].fees}}
+
+
+
+
+
diff --git a/ng-seed/src/app/shared/menu-items/menu-items.ts b/ng-seed/src/app/shared/menu-items/menu-items.ts
index e82b45f..e585ff7 100644
--- a/ng-seed/src/app/shared/menu-items/menu-items.ts
+++ b/ng-seed/src/app/shared/menu-items/menu-items.ts
@@ -83,6 +83,15 @@ const MENUITEMS : Menu[] = [
// // {state: 'add-user-list', name: 'Add Users '},
// ]
},
+ {
+ state: 'mail-log',
+ name: 'Mail',
+ type: 'link',
+ icon: 'directions_walk',
+ // children: [
+ // {state: 'customers-list', name: 'Customers List'},
+ // ]
+ },
{
state: 'services',
name: 'Services List',