Save Bill Works

This commit is contained in:
Amritanshu
2019-07-13 21:32:18 +05:30
parent bcad4cdae3
commit 7d06a2f961
43 changed files with 660 additions and 349 deletions

View File

@ -77,7 +77,7 @@ export class GuestBookDetailComponent implements OnInit, AfterViewInit {
this.item.company = formModel.company;
this.item.name = formModel.name;
this.item.phone = formModel.phone;
this.item.pax = parseInt(formModel.pax);
this.item.pax = parseInt(formModel.pax, 10);
this.item.address = formModel.address;
return this.item;
}