Advertisement
hasancse1991

order-param

Nov 29th, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.99 KB | None | 0 0
  1. orderInfo.put("biladdr", CheckoutStepTag.billingAddress.getEntityId() + "");
  2.         orderInfo.put("shipaddr", CheckoutStepTag.shippingAddress.getEntityId() + "");
  3.         orderInfo.put("shipmethod", CheckoutStepTag.shippingMethod.getCode());
  4.         orderInfo.put("paymentmethod", CheckoutStepTag.paymentMethod != null ? CheckoutStepTag.paymentMethod.getValue() : CheckoutStepTag.rewardValue);
  5.         orderInfo.put("sameship", CheckoutStepTag.sameShip ? "yes" : "no");
  6.         orderInfo.put("saveship", "yes");
  7.         orderInfo.put("savebill", "yes");
  8.         orderInfo.put("newship", CheckoutStepTag.newShip ? "yes" : "no");
  9.         orderInfo.put("newbill", CheckoutStepTag.newBill ? "yes" : "no");
  10.         orderInfo.put("cardvalue", cardValue);
  11.         orderInfo.put("bankvalue", bankName);
  12.         orderInfo.put("emivalue", emiValue);
  13.         orderInfo.put("credit", CheckoutStepTag.isReward ? "yes" : "no");
  14.         orderInfo.put("emipaymentmode", emiPay);
  15.         orderInfo.put("mobile", "1");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement