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:
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user