|
|
@@ -123,7 +123,8 @@ public class MobileAppThirdPartyHelper implements AppManagerFunction {
|
|
|
if(!appmanresponse.startsWith("-1")) {
|
|
|
String payee = InitializerBean.callUssd("ebillingpayee", appmanresponse).toString();
|
|
|
String amount = InitializerBean.callUssd("ebillingamount", appmanresponse).toString();
|
|
|
- appmanresponse = payee.toUpperCase() + "~" + amount;
|
|
|
+ String description = InitializerBean.callUssd("ebillingdesc", appmanresponse).toString();
|
|
|
+ appmanresponse = payee.toUpperCase() + "~" + amount + "~" + description.replaceAll("~", " ");
|
|
|
}
|
|
|
}else if(method.equals("ussd")) {
|
|
|
if(isfinal) {
|