Bill now displays Net, Tax, Discount and Gross Amounts

Stylings: The bill table rows are properly centred instead of aligned to top
This commit is contained in:
Amritanshu
2019-08-10 10:30:27 +05:30
parent ff8f4ffb16
commit 4fb8d9118e
4 changed files with 127 additions and 22 deletions

View File

@ -62,4 +62,20 @@ export class BillsComponent implements OnInit {
modifier(item: any): void {
this.bs.modifier(item);
}
netAmount(): number {
return this.bs.netAmount();
}
discountAmount(): number {
return this.bs.discountAmount();
}
taxAmount(): number {
return this.bs.taxAmount();
}
amount(): number {
return this.bs.amount();
}
}