com.egzosn.pay.common.util.Util.conversionAmount()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(6.4k)|赞(0)|评价(0)|浏览(250)

本文整理了Java中com.egzosn.pay.common.util.Util.conversionAmount()方法的一些代码示例,展示了Util.conversionAmount()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.conversionAmount()方法的具体详情如下:
包路径:com.egzosn.pay.common.util.Util
类名称:Util
方法名:conversionAmount

Util.conversionAmount介绍

[英]元,两位小数
[中]元,两位小数

代码示例

代码示例来源:origin: egzosn/pay-java-parent

  1. /**
  2. * 返回创建的订单信息
  3. *
  4. * @param order 支付订单
  5. *
  6. * @return 订单信息
  7. * @see PayOrder 支付订单信息
  8. */
  9. @Override
  10. public Map<String, Object> orderInfo(PayOrder order) {
  11. Map<String, Object> params = new HashMap<>(7);
  12. params.put("payee_id", order.getAuthCode());
  13. params.put("amount", Util.conversionAmount(order.getPrice()));
  14. params.put("client_reference_id", order.getOutTradeNo());
  15. if (null == order.getCurType()) {
  16. order.setCurType(CurType.USD);
  17. }
  18. params.put("currency", order.getCurType());
  19. params.put("description", order.getSubject());
  20. return params;
  21. }

代码示例来源:origin: egzosn/pay-java-parent

  1. /**
  2. * 获取支付平台所需的订单信息
  3. *
  4. * @param order 支付订单
  5. * @return 订单信息
  6. * @see PayOrder 支付订单信息
  7. */
  8. @Override
  9. public JSONObject orderInfo(PayOrder order) {
  10. TreeMap<String, String> data = new TreeMap<>();
  11. data.put("access_token", getAccessToken());
  12. data.put("paymoney", Util.conversionAmount(order.getPrice()).toString());
  13. String apbNonce = SignUtils.randomStr();
  14. String sign = createSign(SignUtils.parameterText(data, "") + apbNonce, payConfigStorage.getInputCharset());
  15. data.put("PayMoney", data.remove("paymoney"));
  16. String params = SignUtils.parameterText(data) + "&apb_nonce=" + apbNonce + "&sign=" + sign;
  17. try {
  18. JSONObject json = execute(getUrl(order.getTransactionType())+ "?" + params, MethodType.GET, null);
  19. //友店比较特殊,需要在下完预订单后,自己存储 order_sn 对应 微信官方文档 out_trade_no
  20. order.setOutTradeNo(json.getString("order_sn"));
  21. return json;
  22. } catch (PayErrorException e) {
  23. throw e;
  24. }
  25. }

代码示例来源:origin: egzosn/pay-java-parent

  1. bizContent.put("subject", order.getSubject());
  2. bizContent.put("out_trade_no", order.getOutTradeNo());
  3. bizContent.put("total_amount", Util.conversionAmount(order.getPrice()).toString());
  4. switch ((AliTransactionType) order.getTransactionType()) {
  5. case PAGE:

代码示例来源:origin: egzosn/pay-java-parent

  1. orderInfo.put("total_fee", Util.conversionAmount(order.getPrice()).toString() );

代码示例来源:origin: egzosn/pay-java-parent

  1. /**
  2. * 转账
  3. *
  4. * @param order 转账订单
  5. * @return 对应的转账结果
  6. */
  7. @Override
  8. public Map<String, Object> transfer(TransferOrder order) {
  9. //获取公共参数
  10. Map<String, Object> parameters = getPublicParameters(AliTransactionType.TRANS);
  11. Map<String, Object> bizContent = new TreeMap<String, Object>();
  12. bizContent.put("out_biz_no", order.getOutNo());
  13. //默认 支付宝登录号,支持邮箱和手机号格式。
  14. bizContent.put("payee_type", "ALIPAY_LOGONID");
  15. if (null != order.getTransferType()) {
  16. bizContent.put("payee_type", order.getTransferType().getType());
  17. }
  18. bizContent.put("payee_account", order.getPayeeAccount());
  19. bizContent.put("amount", Util.conversionAmount(order.getAmount()));
  20. bizContent.put("payer_show_name", order.getPayerName());
  21. bizContent.put("payee_real_name", order.getPayeeName());
  22. bizContent.put("remark", order.getRemark());
  23. //设置请求参数的集合
  24. parameters.put(BIZ_CONTENT, JSON.toJSONString(bizContent));
  25. //设置签名
  26. setSign(parameters);
  27. return getHttpRequestTemplate().postForObject(getReqUrl() + "?" + UriVariables.getMapToParameters(parameters), null, JSONObject.class);
  28. }

代码示例来源:origin: egzosn/pay-java-parent

  1. /**
  2. * 申请退款接口
  3. *
  4. * @param refundOrder 退款订单信息
  5. * @return 返回支付方申请退款后的结果
  6. */
  7. @Override
  8. public Map<String, Object> refund(RefundOrder refundOrder) {
  9. //获取公共参数
  10. Map<String, Object> parameters = getPublicParameters(AliTransactionType.REFUND);
  11. Map<String, Object> bizContent = getBizContent(refundOrder.getTradeNo(), refundOrder.getOutTradeNo(), null);
  12. if (!StringUtils.isEmpty(refundOrder.getRefundNo())) {
  13. bizContent.put("out_request_no", refundOrder.getRefundNo());
  14. }
  15. bizContent.put("refund_amount", Util.conversionAmount(refundOrder.getRefundAmount()));
  16. //设置请求参数的集合
  17. parameters.put(BIZ_CONTENT, JSON.toJSONString(bizContent));
  18. //设置签名
  19. setSign(parameters);
  20. return requestTemplate.getForObject(getReqUrl() + "?" + UriVariables.getMapToParameters(parameters), JSONObject.class);
  21. }

代码示例来源:origin: egzosn/pay-java-parent

  1. /**
  2. * 申请退款接口
  3. *
  4. * @param refundOrder 退款订单信息
  5. * @return 返回支付方申请退款后的结果
  6. */
  7. @Override
  8. public Map<String, Object> refund(RefundOrder refundOrder) {
  9. JSONObject request = new JSONObject();
  10. if (null != refundOrder.getRefundAmount() && BigDecimal.ZERO.compareTo( refundOrder.getRefundAmount()) > 0){
  11. Amount amount = new Amount();
  12. amount.setCurrency(refundOrder.getCurType().name());
  13. amount.setTotal(Util.conversionAmount(refundOrder.getRefundAmount()).toString());
  14. request.put("amount", amount);
  15. request.put("description", refundOrder.getDescription());
  16. }
  17. HttpStringEntity httpEntity = new HttpStringEntity(request, ContentType.APPLICATION_JSON);
  18. httpEntity.setHeaders(authHeader());
  19. JSONObject resp = getHttpRequestTemplate().postForObject(getReqUrl(PayPalTransactionType.REFUND), httpEntity, JSONObject.class, refundOrder.getTradeNo());
  20. return resp;
  21. }
  22. /**

代码示例来源:origin: egzosn/pay-java-parent

  1. private String getOrderInfo(PayOrder order) {
  2. String orderInfo = "partner=\"" + this.payConfigStorage.getPid() + "\"";
  3. orderInfo = orderInfo + "&seller_id=\"" + this.payConfigStorage.getSeller() + "\"";
  4. orderInfo = orderInfo + "&out_trade_no=\"" + order.getOutTradeNo() + "\"";
  5. orderInfo = orderInfo + "&subject=\"" + order.getSubject() + "\"";
  6. orderInfo = orderInfo + "&body=\"" + order.getBody() + "\"";
  7. orderInfo = orderInfo + "&total_fee=\"" + Util.conversionAmount(order.getPrice()).toString() + "\"";
  8. orderInfo = orderInfo + "&notify_url=\"" + this.payConfigStorage.getNotifyUrl() + "\"";
  9. orderInfo = orderInfo + "&service=\"mobile.securitypay.pay\"";
  10. orderInfo = orderInfo + "&payment_type=\"1\"";
  11. orderInfo = orderInfo + "&_input_charset=\""+ payConfigStorage.getInputCharset()+"\"";
  12. orderInfo = orderInfo + "&it_b_pay=\"30m\"";
  13. orderInfo = orderInfo + "&return_url=\""+payConfigStorage.getReturnUrl()+"\"";
  14. return orderInfo;
  15. }

代码示例来源:origin: egzosn/pay-java-parent

  1. amount.setTotal(Util.conversionAmount(order.getPrice()).toString());

相关文章