| Line 203... |
Line 203... |
| 203 |
"<br>For more information <a href='/static/recharge-faq'>click here</a>"};
|
203 |
"<br>For more information <a href='/static/recharge-faq'>click here</a>"};
|
| 204 |
} else {
|
204 |
} else {
|
| 205 |
DataLogger.logData(EventType.RECHARGE_SUCCESSFUL, getSessionId(), userinfo.getUserId(), userinfo.getEmail(),
|
205 |
DataLogger.logData(EventType.RECHARGE_SUCCESSFUL, getSessionId(), userinfo.getUserId(), userinfo.getEmail(),
|
| 206 |
Long.toString(rechargeOrder.getOperatorId()), Long.toString(rechargeOrder.getTotalAmount()), Long.toString(rechargeOrder.getWalletAmount()),
|
206 |
Long.toString(rechargeOrder.getOperatorId()), Long.toString(rechargeOrder.getTotalAmount()), Long.toString(rechargeOrder.getWalletAmount()),
|
| 207 |
rechargeOrder.getRechargeType().toString());
|
207 |
rechargeOrder.getRechargeType().toString());
|
| - |
|
208 |
|
| - |
|
209 |
String fbUrl = "";
|
| - |
|
210 |
String giftMessage = "Congratulations! Your device is successfully recharged.";
|
| - |
|
211 |
if(rechargeOrder.getTotalAmount()>=100){
|
| - |
|
212 |
if(rechargeOrder.getTotalAmount()>=500){
|
| 208 |
return new String[] {"", "SUCCESS", "Congratulations your device is successfully recharged."};
|
213 |
fbUrl = "http://www.facebook.com/dialog/feed?app_id=291830044248933&link=www.saholic.com/static/win-100%-cashback?afid=6666&picture=http://s1074.beta.photobucket.com/user/amathur2k/media/logo_saholic.png.html&name=I just won a Rs.500 Coupon Code&caption=at%20Saholic.com&description=One Click Hassle Free Recharges&redirect_uri=http://saholic.com/?shared=1";
|
| - |
|
214 |
giftMessage = "Congratulations! Your device is successfully recharged and you have won Gift Coupons worth Rs.500 which you can use to shop for Mobiles, Laptops, Cameras, Accessories. Please help us Spread the word by Sharing on Facebook <a href='" + fbUrl + "'><img width='155' height='35' src='/images/Post-On-Facebook.jpg'></a>";
|
| - |
|
215 |
}else{
|
| - |
|
216 |
fbUrl = "http://www.facebook.com/dialog/feed?app_id=291830044248933&link=www.saholic.com/static/win-100%-cashback?afid=6666&picture=http://s1074.beta.photobucket.com/user/amathur2k/media/logo_saholic.png.html&name=I just won a Rs." + + rechargeOrder.getTotalAmount()+" Coupon Code&caption=at%20Saholic.com&description=One Click Hassle Free Recharges&redirect_uri=http://saholic.com/?shared=1";
|
| - |
|
217 |
giftMessage = "Congratulations! Your device is successfully recharged and you have won Gift Coupons worth Rs." + rechargeOrder.getTotalAmount() + " which you can use to shop for Mobiles, Laptops, Cameras, Accessories. Please help us Spread the word by Sharing on Facebook <a href='" + fbUrl + "'><img width='155' height='35' src='/images/Post-On-Facebook.jpg'></a>";
|
| - |
|
218 |
}
|
| - |
|
219 |
}
|
| - |
|
220 |
return new String[] {"", "SUCCESS", giftMessage + "<>"};
|
| 209 |
}
|
221 |
}
|
| 210 |
}
|
222 |
}
|
| 211 |
}
|
223 |
}
|
| 212 |
|
224 |
|