Integrate AXO payment process

This commit is contained in:
Pedro Silva 2024-04-08 11:31:12 +01:00
parent 4e4f00acf5
commit 9391865217
No known key found for this signature in database
GPG key ID: E2EE20C0669D24B3
8 changed files with 109 additions and 22 deletions

View file

@ -109,6 +109,14 @@ class BillingView {
this.billingFormFields.setData(data);
}
inputValue(name) {
return this.billingFormFields.inputValue(name);
}
fullName() {
return `${this.inputValue('firstName')} ${this.inputValue('lastName')}`.trim();
}
}
export default BillingView;