Advertisement
minafaw3

validate_activity

Nov 15th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.80 KB | None | 0 0
  1. package validate.com.merchant;
  2.  
  3. import android.content.Context;
  4. import android.content.DialogInterface;
  5. import android.content.Intent;
  6. import android.content.res.Configuration;
  7. import android.os.Bundle;
  8. import android.support.v7.app.AlertDialog;
  9. import android.support.v7.app.AppCompatActivity;
  10. import android.support.v7.widget.Toolbar;
  11. import android.util.Log;
  12. import android.view.LayoutInflater;
  13. import android.view.Menu;
  14. import android.view.MenuItem;
  15. import android.view.View;
  16. import android.view.inputmethod.InputMethodManager;
  17. import android.widget.Button;
  18. import android.widget.EditText;
  19. import android.widget.ListView;
  20. import android.widget.TextView;
  21. import android.widget.Toast;
  22.  
  23. import com.validate.R;
  24.  
  25. import org.json.JSONObject;
  26.  
  27. import java.text.DecimalFormat;
  28. import java.text.SimpleDateFormat;
  29. import java.util.ArrayList;
  30. import java.util.Date;
  31. import java.util.List;
  32.  
  33. import validate.com.Util.Utils;
  34. import validate.com.WebService_API.API;
  35. import validate.com.WebService_API.AppConstants;
  36. import validate.com.WebService_API.ConnectionExecutor;
  37. import validate.com.WebService_API.ConnectionExecutor.onHttpRequestListener;
  38. import validate.com.WebService_API.JsonParser;
  39. import validate.com.Util.MoneyTextWatcher;
  40. import validate.com.Adapters.validation_items_adapter;
  41. import validate.com.Model.VoucherItem;
  42. import validate.com.Model.validateItem;
  43.  
  44. /**
  45. * Created by Mina on 13/06/2015.
  46. */
  47. public class validate_activity extends AppCompatActivity implements View.OnClickListener {
  48.  
  49. private Button Cancel, validate_btn;
  50. private Toolbar toolbar;
  51. private EditText et_validate;
  52. private API api;
  53. private VoucherItem _VoucherItem;
  54. private TextView balance_tv, expiry_tv, tvVoucherCode, tvPurchaseValue, tvPurchaseDate;
  55. private ListView validation_ListView;
  56. private List<validateItem> validation_items = new ArrayList<>();
  57. private JsonParser parser;
  58. private validation_items_adapter adapter;
  59. private boolean isConfirmedON = false;
  60.  
  61. @Override
  62. protected void onCreate(Bundle savedInstanceState) {
  63. super.onCreate(savedInstanceState);
  64. setContentView(R.layout.validate_class);
  65. validation_ListView = (ListView) findViewById(R.id.validationList);
  66. LayoutInflater inflater = this.getLayoutInflater();
  67. parser = new JsonParser();
  68. api = new API(validate_activity.this);
  69. Intent i = getIntent();
  70. if (getIntent().hasExtra(AppConstants.TAG_SEND_VALIDATIONS)) {
  71. Bundle bundle = getIntent().getExtras();
  72. if (bundle != null)
  73. validation_items = (ArrayList<validateItem>) bundle.getSerializable(AppConstants.TAG_SEND_VALIDATIONS);
  74. else
  75. Log.e("null", "null");
  76. }
  77. _VoucherItem = (VoucherItem) i.getParcelableExtra(AppConstants.TAG_SEND_VOUCHER);
  78.  
  79. toolbar = (Toolbar) findViewById(R.id.my_toolbar2);
  80. setSupportActionBar(toolbar);
  81. getSupportActionBar().setDisplayHomeAsUpEnabled(true);
  82. getSupportActionBar().setHomeButtonEnabled(true);
  83. toolbar.setNavigationIcon(R.drawable.back_icon);
  84.  
  85. toolbar.setNavigationOnClickListener(new View.OnClickListener() {
  86. @Override
  87. public void onClick(View v) {
  88. onBackPressed();
  89. }
  90. });
  91. Cancel = (Button) findViewById(R.id.cancel_btn);
  92. validate_btn = (Button) findViewById(R.id.validate_btn);
  93. et_validate = (EditText) findViewById(R.id.voucher_tv);
  94. et_validate.setRawInputType(Configuration.KEYBOARD_12KEY);
  95. et_validate.setOnFocusChangeListener(new View.OnFocusChangeListener() {
  96. @Override
  97. public void onFocusChange(View v, boolean hasFocus) {
  98. if (!hasFocus) {
  99. hideKeyboard(v);
  100. }
  101. }
  102. });
  103.  
  104. et_validate.addTextChangedListener(new MoneyTextWatcher(et_validate, "#,###"));
  105. balance_tv = (TextView) findViewById(R.id.balance_textView);
  106. expiry_tv = (TextView) findViewById(R.id.expiry_textView);
  107. tvVoucherCode = (TextView) findViewById(R.id.tvVoucherCode);
  108. tvPurchaseValue = (TextView) findViewById(R.id.purchase_value__tv);
  109. tvPurchaseDate = (TextView) findViewById(R.id.purchase_Date__tv);
  110.  
  111. if (_VoucherItem != null) {
  112. tvVoucherCode.setText(Reformatting_String(_VoucherItem.getCode()));
  113. balance_tv.setText("Balance:$" + format_balance(_VoucherItem.getBalance()));
  114. expiry_tv.setText("Expiry Date: " + Reformatting_Date(_VoucherItem.getExpiry_date()));
  115. tvPurchaseValue.setText("Purchase Value:$ " + _VoucherItem.getValue());
  116. tvPurchaseDate.setText("Purchase Date: " + Reformatting_Date(_VoucherItem.getLast_validation_date()));
  117. }
  118. if (validation_items.size() > 0) {
  119. adapter = new validation_items_adapter(this, validation_items);
  120. validation_ListView.setAdapter(adapter);
  121. }
  122. Cancel.setOnClickListener(this);
  123. validate_btn.setOnClickListener(this);
  124. }
  125.  
  126. @Override
  127. public void onClick(View v) {
  128. switch (v.getId()) {
  129. case R.id.cancel_btn:
  130. finish();
  131. break;
  132. case R.id.validate_btn:
  133. String value = et_validate.getText().toString().replace("$", "");
  134. if (isConfirmedON) {
  135. showAlertDialog(this, "Confirm", "This will validate $" + value, true, value);
  136. } else {
  137. validate_voucher(_VoucherItem.getId(), value);
  138. }
  139. break;
  140. }
  141. }
  142.  
  143. private void validate_voucher(String giftvoucher_id, String value) {
  144. if (api.isNetworkConnected(getApplicationContext())) {
  145. Utils.ShowLoader(validate_activity.this);
  146. try {
  147. String token = api.getSetting(AppConstants.TAG_TOKEN);
  148. api.validate_voucher_api(giftvoucher_id, value, validate_callback, true, token);
  149. } catch (Exception e) {
  150. e.getMessage();
  151. }
  152. } else {
  153. Toast.makeText(getApplicationContext(), getApplicationContext().getString(R.string.no_internet), Toast.LENGTH_LONG).show();
  154. }
  155. }
  156.  
  157. private boolean check_number() {
  158. String value = et_validate.getText().toString();
  159. boolean check = false;
  160. if (value != null) {
  161. try {
  162. Float.parseFloat(value);
  163. check = true;
  164. } catch (NumberFormatException ex) {
  165. check = false;
  166. }
  167. }
  168. return check;
  169.  
  170. }
  171. onHttpRequestListener validate_callback = new onHttpRequestListener() {
  172. @Override
  173. public void onHttpResult(ConnectionExecutor.HTTPResponse response, String send_data) {
  174. Utils.HideLoader();
  175. if (response.response == ConnectionExecutor.ResponseType.SUCCESS) {
  176. try {
  177. JSONObject jsonObject = (JSONObject) response.data;
  178. JsonParser jsonParser = new JsonParser();
  179. validateItem item = new validateItem();
  180. item = jsonParser.get_validate_response(jsonObject);
  181. if (item != null) {
  182. if (item.getLog().equals(AppConstants.TAG_VALID)) {
  183. Utils.showAlertDialog(validate_activity.this, "Success", "voucher valid and validate Successfully ", true, false);
  184. } else if (item.getLog().equals(AppConstants.TAG_VALIDATED)) {
  185. Utils.showAlertDialog(validate_activity.this, "Success", "Voucher validated ", true, false);
  186. }
  187. _VoucherItem.setBalance(item.getBalance());
  188. balance_tv.setText("Voucher value " + item.getBalance());
  189. validation_items.add(item);
  190. adapter.notifyDataSetChanged();
  191. }
  192.  
  193.  
  194. } catch (Exception e) {
  195. e.printStackTrace();
  196. }
  197. } else {
  198. if ((response.value).equals(AppConstants.ERROR_AUTHENTICATE)) {
  199. Utils.showAlertDialog(validate_activity.this, "Action Required", "Your token expired , please re-login", false, true);
  200. } else {
  201. showAlertwithcutomview(response.value);
  202. }
  203.  
  204. }
  205. }
  206. };
  207.  
  208. public void hideKeyboard(View view) {
  209. InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
  210. imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
  211. }
  212.  
  213.  
  214. public void showAlertDialog(final Context context, String title, String message, Boolean status, final String value) {
  215.  
  216. final AlertDialog alertDialog = new AlertDialog.Builder(context).create();
  217.  
  218. // setting Dialog title
  219. alertDialog.setTitle(title);
  220.  
  221. // setting Dialog message
  222. alertDialog.setMessage(message);
  223.  
  224. // setting alert icon
  225. if (status != null) {
  226. alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);
  227. }
  228.  
  229. alertDialog.setButton(DialogInterface.BUTTON_POSITIVE, "OK", new DialogInterface.OnClickListener() {
  230. @Override
  231. public void onClick(DialogInterface dialog, int which) {
  232. validate_voucher(_VoucherItem.getId(), value);
  233. }
  234. });
  235.  
  236. alertDialog.setButton(DialogInterface.BUTTON_NEGATIVE, "Cancel", new DialogInterface.OnClickListener() {
  237. @Override
  238. public void onClick(DialogInterface dialog, int which) {
  239. alertDialog.dismiss();
  240. }
  241. });
  242.  
  243. alertDialog.show();
  244.  
  245. }
  246.  
  247. private String Reformatting_String(String passed) {
  248. StringBuilder builder = new StringBuilder(12);
  249. builder.append(passed.substring(0, 3) + "-" + passed.substring(3, 6) + "-" + passed.substring(6, 9));
  250. return builder.toString();
  251. }
  252.  
  253. private String Reformatting_Date(String date) {
  254. String InputPattern = "yyyy-MM-dd HH:mm:ss";
  255. String OutputPattern = "dd-MM-yyyy";
  256. SimpleDateFormat oldFormate = new SimpleDateFormat(InputPattern);
  257. SimpleDateFormat newFormate = new SimpleDateFormat(OutputPattern);
  258.  
  259. Date olddate = null;
  260. String str = null;
  261.  
  262. try {
  263. olddate = oldFormate.parse(date);
  264. str = newFormate.format(olddate);
  265. } catch (Exception e) {
  266. e.printStackTrace();
  267. }
  268.  
  269. return str;
  270. }
  271.  
  272. @Override
  273. public boolean onPrepareOptionsMenu(Menu menu) {
  274. MenuItem confirm_item = menu.findItem(R.id.confirm_transactions);
  275. confirm_item.setChecked(isConfirmedON);
  276. return true;
  277. }
  278.  
  279. @Override
  280. public boolean onCreateOptionsMenu(Menu menu) {
  281. // Inflate the menu; this adds items to the action bar if it is present.
  282. getMenuInflater().inflate(R.menu.menu_validate, menu);
  283. return true;
  284. }
  285.  
  286. @Override
  287. public boolean onOptionsItemSelected(MenuItem item) {
  288.  
  289. switch (item.getItemId()) {
  290. case R.id.confirm_transactions:
  291.  
  292. if (isConfirmedON) {
  293. isConfirmedON = false;
  294. item.setTitle("Confirm OFF");
  295.  
  296. } else {
  297. isConfirmedON = true;
  298. item.setTitle("Confirm ON");
  299. }
  300. item.setChecked(isConfirmedON);
  301. return true;
  302.  
  303. default:
  304. return false;
  305. }
  306.  
  307. }
  308.  
  309. private void showAlertwithcutomview(String passed_msg) {
  310. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  311. LayoutInflater inflater = this.getLayoutInflater();
  312.  
  313. final View dialogview = inflater.inflate(R.layout.alertdialog_error, null);
  314. builder.setView(dialogview);
  315.  
  316. TextView msg = (TextView) dialogview.findViewById(R.id.message);
  317. if (passed_msg != null) {
  318. msg.setText(passed_msg);
  319. }
  320.  
  321. Button back = (Button) findViewById(R.id.back_button);
  322. back.setOnClickListener(new View.OnClickListener() {
  323. @Override
  324. public void onClick(View v) {
  325. finish();
  326. }
  327. });
  328. finish();
  329. AlertDialog alertDialog = builder.create();
  330. alertDialog.show();
  331.  
  332. }
  333.  
  334. private String format_balance(String old_balance) {
  335. DecimalFormat precision = new DecimalFormat("0.00");
  336. return precision.format(Double.parseDouble(old_balance));
  337. }
  338.  
  339. @Override
  340. protected void onPause() {
  341. super.onPause();
  342. Utils.HideLoader();
  343. }
  344. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement