Correct datatype of invoice amount
This commit is contained in:
parent
9a501e9665
commit
2cd9ded783
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ export class PmtserviceComponent implements OnInit {
|
|||
this.activatedRoute.queryParams.subscribe((params) => {
|
||||
this.pmtData.ownerId = params["owner"];
|
||||
this.pmtData.invoice = params["invoiceNo"];
|
||||
this.pmtData.amount = params["amount"];
|
||||
this.pmtData.amount = +params["amount"];
|
||||
this.pmtData.currency = params["currency"];
|
||||
this.pmtData.shortcode = params["shortCode"];
|
||||
this.getInvoiceData( this.pmtData );
|
||||
|
|
Loading…
Reference in a new issue