|
@@ -5,13 +5,16 @@ import com.alibaba.fastjson.JSONObject;
|
|
|
import com.gree.mall.miniapp.bean.PayDetail;
|
|
|
import com.gree.mall.miniapp.bean.UmsMiniRepBean;
|
|
|
import com.gree.mall.miniapp.enums.UMSDiscountCodeEnum;
|
|
|
+import com.gree.mall.miniapp.enums.UMSGZDiscountCodeEnum;
|
|
|
import com.gree.mall.miniapp.enums.UMSNotGZDiscountCodeEnum;
|
|
|
import com.gree.mall.miniapp.exception.RemoteServiceException;
|
|
|
import com.gree.mall.miniapp.logic.AppletOrders;
|
|
|
import com.gree.mall.miniapp.plus.entity.AdminCompanyWechat;
|
|
|
+import com.gree.mall.miniapp.plus.entity.AdminWebsit;
|
|
|
import com.gree.mall.miniapp.plus.entity.OrderDetail;
|
|
|
import com.gree.mall.miniapp.plus.entity.OrderInfo;
|
|
|
import com.gree.mall.miniapp.plus.service.AdminCompanyWechatService;
|
|
|
+import com.gree.mall.miniapp.plus.service.AdminWebsitService;
|
|
|
import com.gree.mall.miniapp.utils.ArithUtils;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.codec.binary.Base64;
|
|
@@ -48,10 +51,14 @@ public class UMSLogic {
|
|
|
|
|
|
@Resource
|
|
|
AdminCompanyWechatService adminCompanyWechatService;
|
|
|
+ @Resource
|
|
|
+ AdminWebsitService adminWebsitService;
|
|
|
@Value("${ums.url}")
|
|
|
private String url;
|
|
|
@Value("${ums.payment.notifyUrl}")
|
|
|
private String notifyUrl;
|
|
|
+ @Value("${wechat.sub.appid}")
|
|
|
+ private String wechatSubAppid;
|
|
|
|
|
|
/**
|
|
|
* 云闪付 todo
|
|
@@ -59,10 +66,11 @@ public class UMSLogic {
|
|
|
* @param payment
|
|
|
* @param companyWechatId
|
|
|
* @param orderDetail
|
|
|
+ * @param ip
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
-/* public PayDetail payment(OrderInfo orderInfo, BigDecimal payment, String openid, String companyWechatId, OrderDetail orderDetail) throws Exception {
|
|
|
+ public PayDetail payment(OrderInfo orderInfo, BigDecimal payment, String openid, String companyWechatId, OrderDetail orderDetail, String ip) throws Exception {
|
|
|
if(payment.doubleValue() <= 0){
|
|
|
PayDetail payDetail = new PayDetail();
|
|
|
payDetail.setIsPay(false);
|
|
@@ -71,16 +79,28 @@ public class UMSLogic {
|
|
|
}
|
|
|
|
|
|
final AdminCompanyWechat company = adminCompanyWechatService.getById(companyWechatId);
|
|
|
+ final AdminWebsit websit = adminWebsitService.getById(orderInfo.getWebsitId());
|
|
|
JSONObject json = new JSONObject();
|
|
|
|
|
|
+ StringBuilder allAddress = new StringBuilder();
|
|
|
+ if (!orderInfo.getReceAddress().contains(orderInfo.getProvince())) {
|
|
|
+ allAddress.append(orderInfo.getProvince());
|
|
|
+ }
|
|
|
+ if (!orderInfo.getReceAddress().contains(orderInfo.getCity())) {
|
|
|
+ allAddress.append(orderInfo.getCity());
|
|
|
+ }
|
|
|
+ if (!orderInfo.getReceAddress().contains(orderInfo.getArea())) {
|
|
|
+ allAddress.append(orderInfo.getArea());
|
|
|
+ }
|
|
|
+ allAddress.append(orderInfo.getReceAddress());
|
|
|
+
|
|
|
json.put("requestTimestamp", DateFormatUtils.format(new Date(), "yyyy-MM-dd HH:mm:ss")); // 报文请求时间
|
|
|
- json.put("merOrderId", company.getUmsSysCode() + orderInfo.getOrderId()); // 银商分配的4位来源编号 + 商户订单号
|
|
|
- json.put("mid", company.getUmsMid()); // 商户号
|
|
|
- json.put("tid", company.getUmsTid()); // 终端号
|
|
|
+ json.put("merOrderId", websit.getYunSystem() + orderInfo.getOrderId()); // 银商分配的4位来源编号 + 商户订单号
|
|
|
+ json.put("mid", websit.getYunCompany()); // 商户号
|
|
|
+ json.put("tid", websit.getYunNumber()); // 终端号
|
|
|
json.put("instMid", "MINIDEFAULT");
|
|
|
json.put("totalAmount", (int) ArithUtils.mul(payment.doubleValue(), 100)); // 支付总金额
|
|
|
- json.put("attachedData", orderInfo.getOrderId());
|
|
|
- json.put("subAppId", company.getSubAppId()); // 微信子商户appId
|
|
|
+ json.put("subAppId", wechatSubAppid); // 微信子商户appId
|
|
|
json.put("subOpenId", openid); // 微信子商户openid
|
|
|
json.put("tradeType", "UP_WX_MINI"); // 交易类型
|
|
|
json.put("invokeScene", "03"); // 交易发起场景
|
|
@@ -90,28 +110,38 @@ public class UMSLogic {
|
|
|
json.put("certNo", Base64.encodeBase64String(orderInfo.getBuyerIdCard().getBytes(StandardCharsets.UTF_8))); // 实名认证证件号
|
|
|
json.put("certType", "IDENTITY_CARD"); // 实名认证证件类型
|
|
|
json.put("fixBuyer", "T"); // 是否需要实名认证 需要实名认证时置为T
|
|
|
- if (StringUtils.isNotBlank(company.getTaxNo())) {
|
|
|
- json.put("ylyxId", company.getTaxNo().substring(3)); // 二级商编
|
|
|
+ json.put("srcReserve", allAddress.toString()); // 请求系统预留字段
|
|
|
+ json.put("clientIp", ip); // 客户端IP 用户客户端的ip地址
|
|
|
+ if (StringUtils.isNotBlank(websit.getYunTax())) {
|
|
|
+ json.put("ylyxId", websit.getYunTax().substring(3)); // 二级商编
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(company.getCompanyName())) {
|
|
|
json.put("ylyxName", company.getCompanyName()); // 二级商名称
|
|
|
}
|
|
|
- if (StringUtils.isNotBlank(company.getShortCompanyName())) {
|
|
|
- json.put("ylyxMerAbbr", company.getShortCompanyName()); // 二级商简称
|
|
|
+ if (StringUtils.isNotBlank(websit.getYunName())) {
|
|
|
+ json.put("ylyxMerAbbr", websit.getYunName()); // 二级商简称
|
|
|
}
|
|
|
- json.put("srcReserve", company.getCompanyName());
|
|
|
+ JSONObject attachedDataJson = new JSONObject();
|
|
|
+ attachedDataJson.put("ISO2O", websit.getYunTwo().equals("YES") ? "Y" : "N");
|
|
|
+ attachedDataJson.put("SPcode", websit.getYunTwo().equals("YES") ? websit.getYunSpCode() : "");
|
|
|
+ attachedDataJson.put("d", orderInfo.getOrderId());
|
|
|
+ json.put("attachedData", attachedDataJson);
|
|
|
|
|
|
|
|
|
if (Objects.nonNull(orderDetail) && StringUtils.isNotBlank(orderDetail.getUmsDiscountCode()) && StringUtils.isNotBlank(orderDetail.getBarCode())) {
|
|
|
json.put("discountCode", orderDetail.getUmsDiscountCode());
|
|
|
- if (!company.getIsGz()) {
|
|
|
+ if (!websit.getYunTwo().equals("YES")) {
|
|
|
final String coverByCode = UMSNotGZDiscountCodeEnum.findCoverByCode(orderDetail.getUmsDiscountCode());
|
|
|
if (StringUtils.isNotBlank(coverByCode)) {
|
|
|
json.put("discountCode", coverByCode);
|
|
|
}
|
|
|
+ } else if (websit.getYunTwo().equals("YES")) {
|
|
|
+ final String coverByCode = UMSGZDiscountCodeEnum.findCoverByCode(orderDetail.getUmsDiscountCode());
|
|
|
+ if (StringUtils.isNotBlank(coverByCode)) {
|
|
|
+ json.put("discountCode", coverByCode);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-
|
|
|
JSONArray array = new JSONArray();
|
|
|
JSONObject goods = new JSONObject();
|
|
|
String goodsName = orderDetail.getGoodsName().replace("以旧换新", "")
|
|
@@ -122,7 +152,7 @@ public class UMSLogic {
|
|
|
.replace("【", "")
|
|
|
.replace("】", "")
|
|
|
.replaceAll(" ", "");
|
|
|
- goods.put("goodsCategory", UMSDiscountCodeEnum.findNameByCode(orderDetail.getUmsDiscountCode()));
|
|
|
+ goods.put("goodsCategory", UMSDiscountCodeEnum.findShortNameByCode(orderDetail.getUmsDiscountCode()));
|
|
|
goods.put("goodsId", orderDetail.getBarCode());
|
|
|
goods.put("quantity", orderDetail.getNum());
|
|
|
goods.put("goodsName", goodsName.length() > 120 ? goodsName.substring(0, 120) : goodsName);
|
|
@@ -133,7 +163,7 @@ public class UMSLogic {
|
|
|
}
|
|
|
|
|
|
//OPEN-BODY-SIG 方式
|
|
|
- String authorization = getOpenBodySig(company.getUmsAppid(), company.getUmsAppKey(), json.toString());
|
|
|
+ String authorization = getOpenBodySig(websit.getYunAppid(), websit.getYunAppkey(), json.toString());
|
|
|
// String authorization = AppletOrders.getOpenBodySig(company.getUmsAppid(), company.getUmsAppKey(), json.toString());
|
|
|
String send = send(url + "/v1/netpay/uac/mini-order", json.toString() , authorization);
|
|
|
final UmsMiniRepBean resultObj = JSONObject.parseObject(send, UmsMiniRepBean.class);
|
|
@@ -147,7 +177,7 @@ public class UMSLogic {
|
|
|
payDetail.setUmsMiniRep(resultObj);
|
|
|
log.info("payDetail:{}",JSONObject.toJSONString(payDetail));
|
|
|
return payDetail;
|
|
|
- }*/
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* open-body-sig方式获取到Authorization 的值
|