|
|
|
@ -3,12 +3,14 @@ package com.logpm.factory.oupai.receiver;
|
|
|
|
|
import cn.hutool.http.HttpRequest; |
|
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
|
|
|
|
import com.logpm.basicdata.entity.BasicdataTripartiteWarehouseEntity; |
|
|
|
|
import com.logpm.basicdata.feign.IBasicdataTripartiteWarehouseClient; |
|
|
|
|
import com.logpm.factory.oupai.entity.OpPushPackageSystemEntity; |
|
|
|
|
import com.logpm.factory.oupai.service.IOpPushPackageSystemService; |
|
|
|
|
import com.logpm.factory.oupai.entity.FactoryPackageEntity; |
|
|
|
|
import com.logpm.factory.oupai.service.IFactoryPackageService; |
|
|
|
|
import com.logpm.factory.pan.service.IPanFactoryDataService; |
|
|
|
|
import com.logpm.factory.props.OldSystemProperties; |
|
|
|
|
import com.logpm.oldproject.entity.WarehouseEntity; |
|
|
|
|
import com.logpm.oldproject.feign.IWarehouseClient; |
|
|
|
|
import com.rabbitmq.client.Channel; |
|
|
|
@ -44,7 +46,10 @@ public class OpOldReceivingDataHandler {
|
|
|
|
|
@Autowired |
|
|
|
|
private IWarehouseClient warehouseClient; |
|
|
|
|
@Autowired |
|
|
|
|
private IOpPushPackageSystemService opPushPackageSystemService; |
|
|
|
|
private OldSystemProperties oldSystemProperties; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private IFactoryPackageService factoryPackageService; |
|
|
|
|
|
|
|
|
|
@RabbitHandler |
|
|
|
|
public void opOldReceivingDataHandler(Map map, Message message, Channel channel) throws IOException { |
|
|
|
@ -55,11 +60,16 @@ public class OpOldReceivingDataHandler {
|
|
|
|
|
String orderPackageCode = object.getString("orderPackageCode"); |
|
|
|
|
String warehouseName = object.getString("warehouse_name"); |
|
|
|
|
|
|
|
|
|
OpPushPackageSystemEntity opPushPackageSystemEntity = new OpPushPackageSystemEntity(); |
|
|
|
|
opPushPackageSystemEntity.setWarehouseName(warehouseName); |
|
|
|
|
opPushPackageSystemEntity.setCode(orderPackageCode); |
|
|
|
|
opPushPackageSystemEntity.setPushStatus(0); |
|
|
|
|
opPushPackageSystemService.save(opPushPackageSystemEntity); |
|
|
|
|
|
|
|
|
|
QueryWrapper warehouseQueryWrapper = new QueryWrapper(); |
|
|
|
|
warehouseQueryWrapper.eq("code", orderPackageCode); |
|
|
|
|
|
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 查询包件数据 start >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"); |
|
|
|
|
FactoryPackageEntity packageEntity = factoryPackageService.getOne(warehouseQueryWrapper); |
|
|
|
|
|
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 查询包件数据 end >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> packageEntity {}", packageEntity); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//真正的处理需要的数据
|
|
|
|
|
try { |
|
|
|
|
// 保存数据
|
|
|
|
@ -69,15 +79,15 @@ public class OpOldReceivingDataHandler {
|
|
|
|
|
WarehouseEntity warehouseEntity = warehouseClient.findByCode(warehouse.getAssociationCode()); |
|
|
|
|
// 请求老系统的登录接口
|
|
|
|
|
|
|
|
|
|
String authCode = oldLogin("账号", "密码", warehouseEntity.getId()); |
|
|
|
|
String authCode = oldLogin(warehouseEntity.getId()); |
|
|
|
|
// 推送数据
|
|
|
|
|
if (StringUtil.isNotBlank(authCode)) { |
|
|
|
|
boolean isSuccess = sendPackageData(authCode, orderPackageCode, warehouseName); |
|
|
|
|
if (isSuccess) { |
|
|
|
|
// 请求成功 修改推送数据的状态 修改未1
|
|
|
|
|
opPushPackageSystemEntity.setPushStatus(1); |
|
|
|
|
packageEntity.setOldPushStatus(1); |
|
|
|
|
} else { |
|
|
|
|
opPushPackageSystemEntity.setPushStatus(2); |
|
|
|
|
packageEntity.setOldPushStatus(2); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -86,11 +96,12 @@ public class OpOldReceivingDataHandler {
|
|
|
|
|
log.error("##################opReceivingDataHandler: 处理欧派收货数据到新系统,orderPackageCode:{},warehouseName{}", |
|
|
|
|
orderPackageCode, warehouseName); |
|
|
|
|
log.error(e.getMessage()); |
|
|
|
|
opPushPackageSystemEntity.setPushStatus(2); |
|
|
|
|
packageEntity.setOldPushStatus(2); |
|
|
|
|
// opPushPackageSystemEntity.setPushStatus(2);
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
factoryPackageService.updateById(packageEntity); |
|
|
|
|
|
|
|
|
|
opPushPackageSystemService.updateById(opPushPackageSystemEntity); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private boolean sendPackageData(String authCode, String orderPackageCode, String warehouseName) { |
|
|
|
@ -105,29 +116,33 @@ public class OpOldReceivingDataHandler {
|
|
|
|
|
map.put("origin", "按件入库"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 登录老系统 |
|
|
|
|
* |
|
|
|
|
* @param name 账号 |
|
|
|
|
* @param pwd 密码 |
|
|
|
|
* @param warhouseId 仓库ID |
|
|
|
|
* @return 成功token |
|
|
|
|
*/ |
|
|
|
|
private String oldLogin(String name, String pwd, Integer warhouseId) { |
|
|
|
|
private String oldLogin(Integer warhouseId) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String url = ""; |
|
|
|
|
String body = HttpRequest.post(url).execute().body(); |
|
|
|
|
String url = oldSystemProperties.getUrl() + "api/fakeLogin"; |
|
|
|
|
|
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("pwd", oldSystemProperties.getPwd()); |
|
|
|
|
map.put("user_id", oldSystemProperties.getUserId()); |
|
|
|
|
map.put("warehouse_id", warhouseId); |
|
|
|
|
String body = HttpRequest.post(url).form(map).execute().body(); |
|
|
|
|
|
|
|
|
|
JSONObject authCode = JSON.parseObject(body); |
|
|
|
|
|
|
|
|
|
if ("200".equals(authCode.getString("code"))) { |
|
|
|
|
|
|
|
|
|
return authCode.getJSONObject("data").getString("token"); |
|
|
|
|
return authCode.getJSONObject("data").getJSONObject("token").getString("token"); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|