|
|
|
@ -12,6 +12,7 @@ import com.logpm.oldproject.entity.AdvanceDetailEntity;
|
|
|
|
|
import com.logpm.oldproject.feign.IAdvanceClient; |
|
|
|
|
import com.logpm.oldproject.feign.IAdvanceDetailClient; |
|
|
|
|
import com.rabbitmq.client.Channel; |
|
|
|
|
import lombok.Data; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.common.constant.RabbitConstant; |
|
|
|
|
import org.springblade.core.tool.api.R; |
|
|
|
@ -60,12 +61,16 @@ public class UnloadCarComHandler {
|
|
|
|
|
4.查询包间对应的梦天发给我们的批次号 |
|
|
|
|
*/ |
|
|
|
|
UnloadCarDTO unloadCarDTO = (UnloadCarDTO) map.get("messageData"); |
|
|
|
|
log.info("##################unloadCarComDataHandler:消费内容{}",unloadCarDTO); |
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
2.通过车次查询来系统中车次绑定的运单 |
|
|
|
|
3.通过运单查询货物上的包件 |
|
|
|
|
4.需要过滤出来 只要梦天的 |
|
|
|
|
*/ |
|
|
|
|
List<AdvanceDetailEntity> carNumList = advanceDetailClient.getByCarNum(unloadCarDTO.getUnloadCarNum()); |
|
|
|
|
log.info("##################unloadCarComDataHandler carNumList:{}",carNumList); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 安装品类进行分组 |
|
|
|
@ -109,13 +114,13 @@ public class UnloadCarComHandler {
|
|
|
|
|
} |
|
|
|
|
if (isPush) { |
|
|
|
|
try { |
|
|
|
|
Date data = new SimpleDateFormat().parse(unloadCarDTO.getCompleteDate()); |
|
|
|
|
R r = mtFactoryDataService.sendUnloadCarNum(unloadCarDTO.getUnloadCarNum(), data); |
|
|
|
|
|
|
|
|
|
R r = mtFactoryDataService.sendUnloadCarNum(unloadCarDTO.getUnloadCarNum(), unloadCarDTO.getCompleteDate()); |
|
|
|
|
if(r.isSuccess()){ |
|
|
|
|
// 更新订单状态
|
|
|
|
|
UpdateChainWrapper<MtFactoryOrderMain> updateChainWrapper =new UpdateChainWrapper<MtFactoryOrderMain>(MtFactoryOrderMain.class); |
|
|
|
|
updateChainWrapper.set("push_status","1"); |
|
|
|
|
updateChainWrapper.set("push_time",data); |
|
|
|
|
updateChainWrapper.set("push_time",new Date()); |
|
|
|
|
updateChainWrapper.eq("invoice_order_code",unloadCarDTO.getUnloadCarNum()); |
|
|
|
|
mtFactoryOrderMainService.update(updateChainWrapper); |
|
|
|
|
} |
|
|
|
@ -130,6 +135,9 @@ public class UnloadCarComHandler {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}else { |
|
|
|
|
log.info("##################{} 车次 没有匹配需要推送的数据", unloadCarDTO.getUnloadCarNum()); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|