Files
barker/bookie/src/app/sales/running-tables/running-tables.component.ts
tanshu d677cfb1ea Blacked and isorted the python files
Prettied and eslinted the typescript/html files
2020-10-11 10:56:29 +05:30

35 lines
944 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, NavigationExtras, Router } from '@angular/router';
import { Table } from '../../core/table';
@Component({
selector: 'app-running-tables',
templateUrl: './running-tables.component.html',
styleUrls: ['./running-tables.component.css'],
})
export class RunningTablesComponent implements OnInit {
list: Table[];
constructor(private router: Router, private route: ActivatedRoute) {}
ngOnInit() {
this.route.data.subscribe((data: { list: Table[] }) => {
this.list = data.list;
});
}
navigateToBill(table: Table): void {
const qp = { table: table.id };
if (table.voucherId) {
qp.voucher = table.voucherId;
}
const navigationExtras: NavigationExtras = {
queryParams: qp,
queryParamsHandling: 'merge',
preserveFragment: true,
};
this.router.navigate(['/sales', 'bill'], navigationExtras);
}
}