You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
265 lines
14 KiB
265 lines
14 KiB
package com.cweb.controller;
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.hai.common.exception.ErrorCode;
|
|
import com.hai.common.exception.ErrorHelp;
|
|
import com.hai.common.exception.SysCode;
|
|
import com.hai.common.pay.util.sdk.WXPayConstants;
|
|
import com.hai.common.utils.*;
|
|
import com.hai.config.CommonSysConst;
|
|
import com.hai.config.HuiLianTongConfig;
|
|
import com.hai.config.QianZhuConfig;
|
|
import com.hai.config.TuanYouConfig;
|
|
import com.hai.dao.HighGasOrderPushMapper;
|
|
import com.hai.entity.*;
|
|
import com.hai.model.HighMerchantModel;
|
|
import com.hai.model.HighMerchantStoreModel;
|
|
import com.hai.model.ResponseData;
|
|
import com.hai.service.*;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import javax.annotation.Resource;
|
|
import java.math.BigDecimal;
|
|
import java.util.*;
|
|
|
|
/**
|
|
* @Auther: 胡锐
|
|
* @Description:
|
|
* @Date: 2021/3/26 23:08
|
|
*/
|
|
@Controller
|
|
@RequestMapping(value = "/test")
|
|
@Api(value = "订单接口")
|
|
public class HighTestController {
|
|
|
|
private static Logger log = LoggerFactory.getLogger(HighTestController.class);
|
|
|
|
@Resource
|
|
private HighMerchantService highMerchantService;
|
|
|
|
@Resource
|
|
private HighMerchantStoreService highMerchantStoreService;
|
|
|
|
@Resource
|
|
private HighGasOilPriceService highGasOilPriceService;
|
|
|
|
@Resource
|
|
private HighOrderService highOrderService;
|
|
|
|
@Resource
|
|
private HighGasOrderPushMapper highGasOrderPushMapper;
|
|
|
|
@RequestMapping(value = "/initTYMerchantStore", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "初始化")
|
|
public ResponseData initTYMerchantStore(@RequestParam(name = "merchantId", required = true) Long merchantId) throws Exception {
|
|
|
|
HighMerchantModel merchant = highMerchantService.getMerchantById(merchantId);
|
|
if (merchant == null) {
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "未找到商户");
|
|
}
|
|
JSONObject jsonObjectP = TuanYouConfig.queryGasInfoListByPage(1, 1000);
|
|
JSONObject resultObjectP = jsonObjectP.getObject("result", JSONObject.class);
|
|
|
|
for (int i = 1; i <= resultObjectP.getInteger("totalPageNum").intValue();i++) {
|
|
JSONObject jsonObject = TuanYouConfig.queryGasInfoListByPage(i, 1000);
|
|
JSONObject resultObject = jsonObject.getObject("result", JSONObject.class);
|
|
JSONArray jsonArray = resultObject.getJSONArray("gasInfoList");
|
|
HighMerchantStore highMerchantStore;
|
|
HighGasOilPrice highGasOilPrice;
|
|
for (Object gasObject : jsonArray) {
|
|
JSONObject object = JSONObject.parseObject(JSONObject.toJSONString(gasObject));
|
|
HighMerchantStoreModel store = highMerchantStoreService.getMerchantStoreByKey(object.getString("gasId"));
|
|
if (store != null) {
|
|
store.setType(1);
|
|
store.setMerchantId(merchant.getId());
|
|
store.setCompanyId(merchant.getCompanyId());
|
|
store.setStoreKey(object.getString("gasId"));
|
|
store.setStoreName(object.getString("gasName"));
|
|
store.setStoreLogo(object.getString("gasLogoSmall"));
|
|
store.setRegionId(object.getLong("provinceCode"));
|
|
store.setRegionName(object.getString("provinceName"));
|
|
store.setAddress(object.getString("gasAddress"));
|
|
store.setLongitude(object.getString("gasAddressLongitude"));
|
|
store.setLatitude(object.getString("gasAddressLatitude"));
|
|
store.setStatus(object.getInteger("gasStatus"));
|
|
store.setOperatorId(0L);
|
|
store.setOperatorName("系统创建");
|
|
store.setUpdateTime(new Date());
|
|
store.setExt1(object.getString("gasSourceId"));
|
|
highMerchantStoreService.updateMerchantStoreDetail(store);
|
|
|
|
JSONArray oilPriceList = object.getJSONArray("oilPriceList");
|
|
for (Object oilPrice : oilPriceList) {
|
|
JSONObject oilPriceObject = JSONObject.parseObject(JSONObject.toJSONString(oilPrice));
|
|
// 查询门店油号
|
|
highGasOilPrice = highGasOilPriceService.getGasOilPriceByStoreAndOilNo(store.getId(), oilPriceObject.getInteger("oilNo"));
|
|
if (highGasOilPrice == null) {
|
|
highGasOilPrice = new HighGasOilPrice();
|
|
highGasOilPrice.setMerchantStoreId(store.getId());
|
|
highGasOilPrice.setOilNo(oilPriceObject.getInteger("oilNo"));
|
|
highGasOilPrice.setOilNoName(oilPriceObject.getString("oilNoName"));
|
|
highGasOilPrice.setPriceVip(oilPriceObject.getBigDecimal("priceVip"));
|
|
highGasOilPrice.setPriceGun(oilPriceObject.getBigDecimal("priceGun"));
|
|
highGasOilPrice.setPriceOfficial(oilPriceObject.getBigDecimal("priceOfficial"));
|
|
highGasOilPrice.setOilType(oilPriceObject.getInteger("oilType"));
|
|
highGasOilPrice.setOilTypeName(oilPriceObject.getString("oilTypeName"));
|
|
} else {
|
|
highGasOilPrice.setMerchantStoreId(store.getId());
|
|
highGasOilPrice.setOilNo(oilPriceObject.getInteger("oilNo"));
|
|
highGasOilPrice.setOilNoName(oilPriceObject.getString("oilNoName"));
|
|
highGasOilPrice.setPriceVip(oilPriceObject.getBigDecimal("priceVip"));
|
|
highGasOilPrice.setPriceGun(oilPriceObject.getBigDecimal("priceGun"));
|
|
highGasOilPrice.setPriceOfficial(oilPriceObject.getBigDecimal("priceOfficial"));
|
|
highGasOilPrice.setOilType(oilPriceObject.getInteger("oilType"));
|
|
highGasOilPrice.setOilTypeName(oilPriceObject.getString("oilTypeName"));
|
|
}
|
|
highGasOilPriceService.editGasOilPrice(highGasOilPrice);
|
|
}
|
|
} else {
|
|
highMerchantStore = new HighMerchantStore();
|
|
highMerchantStore.setType(1);
|
|
highMerchantStore.setMerchantId(merchant.getId());
|
|
highMerchantStore.setCompanyId(merchant.getCompanyId());
|
|
highMerchantStore.setStoreKey(object.getString("gasId"));
|
|
highMerchantStore.setStoreName(object.getString("gasName"));
|
|
highMerchantStore.setStoreLogo(object.getString("gasLogoSmall"));
|
|
highMerchantStore.setRegionId(object.getLong("provinceCode"));
|
|
highMerchantStore.setRegionName(object.getString("provinceName"));
|
|
highMerchantStore.setAddress(object.getString("gasAddress"));
|
|
highMerchantStore.setLongitude(object.getString("gasAddressLongitude"));
|
|
highMerchantStore.setLatitude(object.getString("gasAddressLatitude"));
|
|
highMerchantStore.setStatus(1);
|
|
highMerchantStore.setOperatorId(0L);
|
|
highMerchantStore.setOperatorName("系统创建");
|
|
highMerchantStore.setCreateTime(new Date());
|
|
highMerchantStore.setUpdateTime(new Date());
|
|
highMerchantStore.setExt1(object.getString("gasSourceId"));
|
|
HighMerchantStoreModel merchantStoreModel = new HighMerchantStoreModel();
|
|
BeanUtils.copyProperties(highMerchantStore, merchantStoreModel);
|
|
highMerchantStoreService.insertMerchantStore(merchantStoreModel);
|
|
|
|
JSONArray oilPriceList = object.getJSONArray("oilPriceList");
|
|
for (Object oilPrice : oilPriceList) {
|
|
JSONObject oilPriceObject = JSONObject.parseObject(JSONObject.toJSONString(oilPrice));
|
|
highGasOilPrice = new HighGasOilPrice();
|
|
highGasOilPrice.setMerchantStoreId(merchantStoreModel.getId());
|
|
highGasOilPrice.setOilNo(oilPriceObject.getInteger("oilNo"));
|
|
highGasOilPrice.setOilNoName(oilPriceObject.getString("oilNoName"));
|
|
highGasOilPrice.setPriceVip(oilPriceObject.getBigDecimal("priceVip"));
|
|
highGasOilPrice.setPriceGun(oilPriceObject.getBigDecimal("priceGun"));
|
|
highGasOilPrice.setPriceOfficial(oilPriceObject.getBigDecimal("priceOfficial"));
|
|
highGasOilPrice.setOilType(oilPriceObject.getInteger("oilType"));
|
|
highGasOilPrice.setOilTypeName(oilPriceObject.getString("oilTypeName"));
|
|
highGasOilPriceService.editGasOilPrice(highGasOilPrice);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return ResponseMsgUtil.success("初始化完成");
|
|
}
|
|
|
|
@RequestMapping(value = "/queryCompanyAccountInfo2JD", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "查询团油账户")
|
|
public ResponseData queryCompanyAccountInfo2JD() {
|
|
try {
|
|
/*HighOrder order = highOrderService.getOrderByOrderNo("HF2021091414532044405");
|
|
for (HighChildOrder highChildOrder : order.getHighChildOrderList()) {
|
|
HighMerchantStoreModel store = highMerchantStoreService.getMerchantStoreById(highChildOrder.getGoodsId());
|
|
// 推送团油订单
|
|
Map<String, Object> paramMap = new HashMap<>();
|
|
paramMap.put("gasId", store.getStoreKey());
|
|
paramMap.put("oilNo", highChildOrder.getGasOilNo());
|
|
paramMap.put("gunNo", highChildOrder.getGasGunNo());
|
|
BigDecimal priceGun = highChildOrder.getGasPriceGun();
|
|
BigDecimal priceVip = highChildOrder.getGasPriceVip();
|
|
paramMap.put("priceGun", priceGun); // 枪单价
|
|
paramMap.put("priceVip", priceVip); // 优惠价
|
|
paramMap.put("driverPhone", order.getMemPhone());
|
|
paramMap.put("thirdSerialNo", order.getOrderNo());
|
|
paramMap.put("refuelingAmount", highChildOrder.getTotalPrice());
|
|
|
|
// 油品类型 1:汽油:2:柴油;3:天然气
|
|
if (highChildOrder.getGasOilType() == 1) {
|
|
paramMap.put("accountNo", CommonSysConst.getSysConfig().getTuanYouGasolineAccount());
|
|
} else if (highChildOrder.getGasOilType() == 2) {
|
|
paramMap.put("accountNo", CommonSysConst.getSysConfig().getTuanYouDieselAccount());
|
|
}
|
|
JSONObject orderPushObject = TuanYouConfig.refuelingOrderPush(paramMap);
|
|
// 推送团油订单记录
|
|
HighGasOrderPush highGasOrderPush = new HighGasOrderPush();
|
|
highGasOrderPush.setCreateTime(new Date());
|
|
highGasOrderPush.setCode(orderPushObject.getString("code"));
|
|
highGasOrderPush.setRequestContent(JSONObject.toJSONString(paramMap));
|
|
highGasOrderPush.setReturnContent(orderPushObject.toJSONString());
|
|
highGasOrderPushMapper.insert(highGasOrderPush);
|
|
|
|
if (orderPushObject != null && orderPushObject.getString("code").equals("200")) {
|
|
highChildOrder.setGasOrderNo(orderPushObject.getJSONObject("result").getString("orderNo"));
|
|
}
|
|
}*/
|
|
return ResponseMsgUtil.success(TuanYouConfig.queryCompanyAccountInfo2JD());
|
|
} catch (Exception e) {
|
|
log.error("HighOrderController --> getOrderById() error!", e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
@RequestMapping(value = "/test2", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "获取汇联通Token")
|
|
public ResponseData test2() {
|
|
try {
|
|
return ResponseMsgUtil.success(HuiLianTongConfig.getToken());
|
|
} catch (Exception e) {
|
|
log.error("HighOrderController --> getOrderById() error!", e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
|
|
@RequestMapping(value = "/getCorpCouTypes", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "测试")
|
|
public ResponseData getCorpCouTypes(@RequestParam(name = "token", required = true) String token) {
|
|
try {
|
|
return ResponseMsgUtil.success(HuiLianTongConfig.getCorpCouTypes(token));
|
|
} catch (Exception e) {
|
|
log.error("HighOrderController --> getOrderById() error!", e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
|
|
@RequestMapping(value = "/getCouState", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "测试")
|
|
public ResponseData getCouState(@RequestParam(name = "token", required = true) String token,
|
|
@RequestParam(name = "couNo", required = true) String couNo) {
|
|
try {
|
|
return ResponseMsgUtil.success(HuiLianTongConfig.getCouState(token,couNo));
|
|
} catch (Exception e) {
|
|
log.error("HighOrderController --> getOrderById() error!", e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
|
|
@RequestMapping(value = "/couJointDist", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "测试")
|
|
public ResponseData couJointDist(@RequestParam(name = "token", required = true) String token) {
|
|
try {
|
|
return ResponseMsgUtil.success(HuiLianTongConfig.couJointDist(token,"20JY000251",2,"17726395120", "oArhO6XxKSvjI9wLP3cTK-iSG8yY"));
|
|
} catch (Exception e) {
|
|
log.error("HighOrderController --> getOrderById() error!", e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
|
|
}
|
|
|