Commit 1977202b by Pankaj

Matrics Report : Resolved Errors

parent 6135109d
import { MatricsReport } from './matrics-report.model';
import { Component, OnDestroy, OnInit } from '@angular/core'; import { Component, OnDestroy, OnInit } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router'; import { ActivatedRoute, Router } from '@angular/router';
import { Subscription } from 'rxjs/Subscription'; import { Subscription } from 'rxjs/Subscription';
...@@ -15,6 +16,8 @@ import { MatricsReportService } from './matrics-report.service'; ...@@ -15,6 +16,8 @@ import { MatricsReportService } from './matrics-report.service';
export class MatricsReportComponent implements OnInit, OnDestroy { export class MatricsReportComponent implements OnInit, OnDestroy {
subscriptions: Array<Subscription> = []; subscriptions: Array<Subscription> = [];
report: MatricsReport;
bos: any[] = [];
coupons: any[] = []; coupons: any[] = [];
bosCols = [ bosCols = [
......
export class MatricsReport {
Date: Date;
To: Date;
Coupon: any;
ObjectID: any;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment