|
|
|
@ -1,13 +1,27 @@
|
|
|
|
|
package com.logpm.factorydata.mengtian.service.impl; |
|
|
|
|
|
|
|
|
|
import cn.hutool.core.convert.Convert; |
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
|
|
import cn.hutool.http.HttpRequest; |
|
|
|
|
import cn.hutool.http.HttpResponse; |
|
|
|
|
import cn.hutool.http.HttpUtil; |
|
|
|
|
import cn.hutool.json.JSONObject; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.logpm.factorydata.mengtian.entity.FactoryNodePushEntity; |
|
|
|
|
import com.logpm.factorydata.mengtian.mapper.FactoryNodePushMapper; |
|
|
|
|
import com.logpm.factorydata.mengtian.service.FactoryNodePushService; |
|
|
|
|
import com.logpm.factorydata.mengtian.util.QueryUtil; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.mp.support.Condition; |
|
|
|
|
import org.springblade.core.mp.support.Query; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 装箱包信息 业务实现类 |
|
|
|
|
* |
|
|
|
@ -19,4 +33,38 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
@AllArgsConstructor |
|
|
|
|
public class FactoryNodePushServiceImpl extends BaseServiceImpl<FactoryNodePushMapper, FactoryNodePushEntity> implements FactoryNodePushService { |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<FactoryNodePushEntity> pageNodePush(FactoryNodePushEntity vo, Query query) { |
|
|
|
|
IPage<FactoryNodePushEntity> page = Condition.getPage(query); |
|
|
|
|
QueryWrapper<FactoryNodePushEntity> queryWrapper = QueryUtil.buildQueryWrapper(vo, FactoryNodePushEntity.class); |
|
|
|
|
List<FactoryNodePushEntity> deliveryTrainPage = baseMapper.pageNodePush(page, queryWrapper); |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Boolean cancel(String id) { |
|
|
|
|
return baseMapper.cancel(id); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Boolean rePush(String id) { |
|
|
|
|
FactoryNodePushEntity factoryNodePushEntity = baseMapper.selectById(id); |
|
|
|
|
if(ObjectUtil.isNotEmpty(factoryNodePushEntity)){ |
|
|
|
|
log.info("重新推送工厂:{}", JSONUtil.toJsonStr(factoryNodePushEntity)); |
|
|
|
|
HttpRequest post = HttpUtil.createPost(factoryNodePushEntity.getSendUrl()); |
|
|
|
|
post.header("ClientId", "mt.ht"); |
|
|
|
|
post.header("OperationCode", factoryNodePushEntity.getOperationCode()); |
|
|
|
|
post.body(factoryNodePushEntity.getContent()); |
|
|
|
|
HttpResponse execute = post.execute(); |
|
|
|
|
String resBody = execute.body(); |
|
|
|
|
log.info("重新推送工厂结果:{}", resBody); |
|
|
|
|
JSONObject entries = JSONUtil.parseObj(resBody); |
|
|
|
|
int resultCode = entries.getInt("Result"); |
|
|
|
|
// 存入日志表
|
|
|
|
|
factoryNodePushEntity.setSendStatus(Convert.toStr(resultCode)); |
|
|
|
|
baseMapper.updateById(factoryNodePushEntity); |
|
|
|
|
return Boolean.TRUE; |
|
|
|
|
} |
|
|
|
|
return Boolean.FALSE; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|