diff --git a/src/app/accounts/addcredit/addcredit.page.html b/src/app/accounts/addcredit/addcredit.page.html
index 8c5b62a..aed14e8 100644
--- a/src/app/accounts/addcredit/addcredit.page.html
+++ b/src/app/accounts/addcredit/addcredit.page.html
@@ -62,7 +62,7 @@
- Continue
+ Continue
@@ -72,19 +72,19 @@
- Amount({{currency_code}})
+ Amount({{currency_code}}) :
- Fee
+ Fee :
- Total
+ Total :
@@ -94,12 +94,9 @@
-
-
+
{{item.description}} **** **** **** {{item.digits}}
-
-
@@ -110,7 +107,7 @@
- Continue
+ Continue
diff --git a/src/app/accounts/addcredit/addcredit.page.ts b/src/app/accounts/addcredit/addcredit.page.ts
index 6c16763..7ac17a7 100644
--- a/src/app/accounts/addcredit/addcredit.page.ts
+++ b/src/app/accounts/addcredit/addcredit.page.ts
@@ -80,6 +80,13 @@ export class AddcreditPage implements OnInit {
}
+ contineAddCredit(processor){
+
+
+
+
+ }
+
amount:number =0;
fee:number = 0;
@@ -88,6 +95,7 @@ export class AddcreditPage implements OnInit {
total_display: string;
recipient:string ='';
recipient_name:string ='';
+ payment_card:string = '';
feeReturn: any;
refreshFee(){
@@ -113,7 +121,10 @@ export class AddcreditPage implements OnInit {
this.total = this.fee+this.amount; // this.feeReturn.total_amount*0.01;
var numt = new Number(this.total);
this.total_display= numt.toFixed(2);
- if (this.total > 100){
+ if (this.total > 100 && this.processor==3030 ){
+ this.isDisabled=false;
+ }
+ if (this.total > 5 && this.processor==5000 && this.payment_card !="" ){
this.isDisabled=false;
}
// }