|
|
@@ -117,6 +117,14 @@ public class MobileAppThirdPartyHelper implements AppManagerFunction {
|
|
|
}else {
|
|
|
appmanresponse = InitializerBean.callUssd("displayinvoices", postpaidinvoicesdata).toString();
|
|
|
}
|
|
|
+ }else if(method.equals("ebillingobj")) {
|
|
|
+ String[] ebillingparam = (mparam + "|" + refid).split("\\|");
|
|
|
+ appmanresponse = InitializerBean.callUssd("ebillingobj", ebillingparam).toString();
|
|
|
+ if(!appmanresponse.startsWith("-1")) {
|
|
|
+ String payee = InitializerBean.callUssd("ebillingpayee", appmanresponse).toString();
|
|
|
+ String amount = InitializerBean.callUssd("ebillingamount", appmanresponse).toString();
|
|
|
+ appmanresponse = payee.toUpperCase() + "~" + amount;
|
|
|
+ }
|
|
|
}else if(method.equals("ussd")) {
|
|
|
if(isfinal) {
|
|
|
mparam = mparam + "*" + password + "#";
|