59 changed files with 1574 additions and 195 deletions
@ -0,0 +1,81 @@
|
||||
package com.logpm.factory.snm.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
@Data |
||||
@TableName("mt_factory_order") |
||||
@ApiModel(value = "MtFactoryOrder对象", description = "梦天工厂订单") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class MtFactoryOrder extends BaseEntity { |
||||
|
||||
@JsonProperty("总单编号") |
||||
@ApiModelProperty(value = "总单编号") |
||||
private String mainOrderCode; |
||||
|
||||
@JsonProperty("订单编号") |
||||
@ApiModelProperty(value = "订单编号") |
||||
private String orderCode; |
||||
|
||||
@JsonProperty("客户姓名") |
||||
@ApiModelProperty(value = "客户姓名") |
||||
private String customName; |
||||
|
||||
@JsonProperty("客户电话") |
||||
@ApiModelProperty(value = "客户电话") |
||||
private String customPhone; |
||||
|
||||
@JsonProperty("客户地址") |
||||
@ApiModelProperty(value = "客户地址") |
||||
private String customAddress; |
||||
|
||||
@JsonProperty("经销商编号") |
||||
@ApiModelProperty(value = "经销商编码") |
||||
private String dealerCode; |
||||
|
||||
@JsonProperty("经销商名称") |
||||
@ApiModelProperty(value = "经销商名称") |
||||
private String dealerName; |
||||
|
||||
@JsonProperty("专卖店编号") |
||||
@ApiModelProperty(value = "专卖店编号") |
||||
private String exclusiveCode; |
||||
|
||||
@JsonProperty("专卖店名称") |
||||
@ApiModelProperty(value = "专卖店名称") |
||||
private String exclusiveName; |
||||
|
||||
@JsonProperty("收货人") |
||||
@ApiModelProperty(value = "收货人") |
||||
private String consignee; |
||||
|
||||
@JsonProperty("收货人电话") |
||||
@ApiModelProperty(value = "收货人电话") |
||||
private String consigneePhone; |
||||
|
||||
@JsonProperty("收货地址") |
||||
@ApiModelProperty(value = "收货人地址") |
||||
private String consigneeAddress; |
||||
|
||||
@JsonProperty("出库方式") |
||||
@ApiModelProperty(value = "出库方式") |
||||
private String outboundType; |
||||
|
||||
@JsonProperty("品牌") |
||||
@ApiModelProperty(value = "品牌") |
||||
private String brand; |
||||
|
||||
@JsonProperty("生产单号") |
||||
@ApiModelProperty(value = "生产单号") |
||||
private String produceOrderCode; |
||||
|
||||
@JsonProperty("包件数") |
||||
@ApiModelProperty(value = "包件数") |
||||
private String quantity; |
||||
|
||||
} |
@ -0,0 +1,57 @@
|
||||
package com.logpm.factory.snm.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
@Data |
||||
@TableName("mt_factory_order_main") |
||||
@ApiModel(value = "MtFactoryOrderMain对象", description = "梦天工厂订单主对象") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class MtFactoryOrderMain extends BaseEntity { |
||||
|
||||
@JsonProperty("发货单编号") |
||||
@ApiModelProperty(value = "发货单编号") |
||||
private String invoiceOrderCode; |
||||
|
||||
@JsonProperty("中心仓编号") |
||||
@ApiModelProperty(value = "中心仓编号") |
||||
private String centerWarehouseCode; |
||||
|
||||
@JsonProperty("中心仓") |
||||
@ApiModelProperty(value = "中心仓") |
||||
private String centerWarehouseName; |
||||
|
||||
@JsonProperty("仓库类型") |
||||
@ApiModelProperty(value = "仓库类型") |
||||
private String warehouseType; |
||||
|
||||
@JsonProperty("送货车号") |
||||
@ApiModelProperty(value = "送货车号") |
||||
private String sendCarNumber; |
||||
|
||||
@JsonProperty("送货司机") |
||||
@ApiModelProperty(value = "送货车司机") |
||||
private String sendCarDriver; |
||||
|
||||
@JsonProperty("送货司机电话") |
||||
@ApiModelProperty(value = "送货车司机电话") |
||||
private String sendCarDriverPhone; |
||||
|
||||
@JsonProperty("确认发车人") |
||||
@ApiModelProperty(value = "确认发车人") |
||||
private String reallyMan; |
||||
|
||||
@JsonProperty("确认发车时间") |
||||
@ApiModelProperty(value = "确认发车时间") |
||||
private String reallyDate; |
||||
|
||||
@JsonProperty("备注") |
||||
@ApiModelProperty(value = "备注") |
||||
private String remark; |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
package com.logpm.factory.snm.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
@Data |
||||
@TableName("mt_package_info") |
||||
@ApiModel(value = "MtPackageInfo对象", description = "梦天工厂包件信息") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class MtPackageInfo extends BaseEntity { |
||||
|
||||
|
||||
@JsonProperty("出库人") |
||||
@ApiModelProperty(value = "出库人") |
||||
private String outboundMan; |
||||
|
||||
@JsonProperty("出库时间") |
||||
@ApiModelProperty(value = "出库时间") |
||||
private String outboundDate; |
||||
|
||||
@JsonProperty("包装编号") |
||||
@ApiModelProperty(value = "包装编号") |
||||
private String packageCode; |
||||
|
||||
@JsonProperty("包装类型") |
||||
@ApiModelProperty(value = "包装类型") |
||||
private String packageType; |
||||
|
||||
@JsonProperty("大类") |
||||
@ApiModelProperty(value = "大类") |
||||
private String bigType; |
||||
|
||||
@JsonProperty("小类") |
||||
@ApiModelProperty(value = "小类") |
||||
private String smallType; |
||||
|
||||
@JsonProperty("油漆颜色") |
||||
@ApiModelProperty(value = "油漆颜色") |
||||
private String color; |
||||
|
||||
@JsonProperty("型号") |
||||
@ApiModelProperty(value = "型号") |
||||
private String model; |
||||
|
||||
@JsonProperty("门扇尺寸") |
||||
@ApiModelProperty(value = "尺寸") |
||||
private String size; |
||||
|
||||
} |
@ -0,0 +1,155 @@
|
||||
package com.logpm.oldproject.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
@TableName("ht_order") |
||||
@ApiModel(value = "Order对象", description = "订单信息") |
||||
public class OrderEntity { |
||||
|
||||
@TableId( |
||||
value = "id", |
||||
type = IdType.AUTO |
||||
) |
||||
private Integer id; |
||||
|
||||
private Integer test; |
||||
|
||||
@ApiModelProperty(value = "订单号") |
||||
@TableField("number") |
||||
private String number; |
||||
|
||||
@ApiModelProperty(value = "服务号") |
||||
@TableField("servicenum") |
||||
private String servicenum; |
||||
|
||||
@ApiModelProperty(value = "仓库id") |
||||
@TableField("warehouse_id") |
||||
private Integer warehouseId; |
||||
|
||||
@ApiModelProperty(value = "货区id") |
||||
@TableField("cargo_id") |
||||
private Integer cargoId; |
||||
|
||||
@ApiModelProperty(value = "货架id") |
||||
@TableField("shelf_id") |
||||
private Integer shelfId; |
||||
|
||||
@ApiModelProperty(value = "货位id") |
||||
@TableField("location_id") |
||||
private String locationId; |
||||
|
||||
@ApiModelProperty(value = "订单来源") |
||||
@TableField("source") |
||||
private String source; |
||||
|
||||
@ApiModelProperty(value = "紧急程度:0=正常,1=加急") |
||||
@TableField("emergency") |
||||
private Integer emergency; |
||||
|
||||
@ApiModelProperty(value = "订单自编号") |
||||
@TableField("selfnumber") |
||||
private String selfnumber; |
||||
|
||||
@ApiModelProperty(value = "客户姓名") |
||||
@TableField("contact") |
||||
private String contact; |
||||
|
||||
@ApiModelProperty(value = "联系方式") |
||||
@TableField("phone") |
||||
private String phone; |
||||
|
||||
@ApiModelProperty(value = "收货地址") |
||||
@TableField("address") |
||||
private String address; |
||||
|
||||
@ApiModelProperty(value = "上门提货:0=否,1=是") |
||||
@TableField("door") |
||||
private Integer door; |
||||
|
||||
@ApiModelProperty(value = "总订单数量【未使用】") |
||||
@TableField("total") |
||||
private Integer total; |
||||
|
||||
@ApiModelProperty(value = "付款方式") |
||||
@TableField("payment") |
||||
private String payment; |
||||
|
||||
@ApiModelProperty(value = "入库状态") |
||||
@TableField("status") |
||||
private Integer status; |
||||
|
||||
@ApiModelProperty(value = "入库数量【未使用】") |
||||
@TableField("in_num") |
||||
private Integer inNum; |
||||
|
||||
@ApiModelProperty(value = "装车数量【未使用】") |
||||
@TableField("trans_num") |
||||
private Integer transNum; |
||||
|
||||
@ApiModelProperty(value = "分拣数量【未使用】") |
||||
@TableField("sorting") |
||||
private Integer sorting; |
||||
|
||||
@ApiModelProperty(value = "出库数量【未使用】") |
||||
@TableField("out_num") |
||||
private Integer outNum; |
||||
|
||||
@ApiModelProperty(value = "配送数量【未使用】") |
||||
@TableField("delive_num") |
||||
private Integer deliveNum; |
||||
|
||||
@ApiModelProperty(value = "签收数量【未使用】") |
||||
@TableField("sign_num") |
||||
private Integer signNum; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
@TableField("create_time") |
||||
private Date createTime; |
||||
|
||||
@ApiModelProperty(value = "修改时间") |
||||
@TableField("update_time") |
||||
private Date updateTime; |
||||
|
||||
@ApiModelProperty(value = "删除时间") |
||||
@TableField("delete_time") |
||||
private Integer deleteTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
@TableField("administrators_id") |
||||
private Integer administratorsId; |
||||
|
||||
@ApiModelProperty(value = "是否异常") |
||||
@TableField("abnormal") |
||||
private Integer abnormal; |
||||
|
||||
@ApiModelProperty(value = "寄件人") |
||||
@TableField("sender") |
||||
private String sender; |
||||
|
||||
@ApiModelProperty(value = "寄件人电话") |
||||
@TableField("sender_tel") |
||||
private String senderTel; |
||||
|
||||
@ApiModelProperty(value = "寄件人地址") |
||||
@TableField("sender_address") |
||||
private String senderAddress; |
||||
|
||||
@ApiModelProperty(value = "上架状态:0未上架,1已上架,2部分上架,3已下架") |
||||
@TableField("on_shelf_type") |
||||
private Integer onShelfType; |
||||
|
||||
@ApiModelProperty(value = "旧id") |
||||
@TableField("old_id") |
||||
private Integer oldId; |
||||
|
||||
|
||||
} |
@ -0,0 +1,43 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.oldproject.feign; |
||||
|
||||
import com.logpm.oldproject.entity.OrderEntity; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 订单 Feign接口类 |
||||
* |
||||
* @author zhy |
||||
* @since 2023-06-24 |
||||
*/ |
||||
@FeignClient( |
||||
value = "logpm-old-project" |
||||
) |
||||
public interface IOrderClient { |
||||
|
||||
String API_PREFIX = "/client"; |
||||
|
||||
@GetMapping(API_PREFIX + "/getOrderByOrderSelfNum") |
||||
List<OrderEntity> getOrderByOrderSelfNum(@RequestParam String orderSelfNum); |
||||
|
||||
|
||||
} |
@ -0,0 +1,67 @@
|
||||
package com.logpm.oldproject.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class DistributionParcelListEntityVO { |
||||
|
||||
@ApiModelProperty(value = "仓库") |
||||
private String warehouse; |
||||
/** |
||||
* 状态 |
||||
*/ |
||||
@ApiModelProperty(value = "状态") |
||||
private Integer conditions; |
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "包条码") |
||||
private String packetBarCode; |
||||
/** |
||||
* 货位信息 |
||||
*/ |
||||
@ApiModelProperty(value = "货位信息") |
||||
private String goodsAllocation; |
||||
/** |
||||
* 所在托盘 |
||||
*/ |
||||
@ApiModelProperty(value = "所在托盘") |
||||
private String pallet; |
||||
/** |
||||
* 一级品 |
||||
*/ |
||||
@ApiModelProperty(value = "一级品") |
||||
private String firsts; |
||||
/** |
||||
* 二级品 |
||||
*/ |
||||
@ApiModelProperty(value = "二级品") |
||||
private String second; |
||||
/** |
||||
* 三级品 |
||||
*/ |
||||
@ApiModelProperty(value = "三级品") |
||||
private String thirdProduct; |
||||
/** |
||||
* 物料 |
||||
*/ |
||||
@ApiModelProperty(value = "物料") |
||||
private String material; |
||||
/** |
||||
* 数量 |
||||
*/ |
||||
@ApiModelProperty(value = "数量") |
||||
private Integer quantity; |
||||
/** |
||||
* 车次号 |
||||
*/ |
||||
@ApiModelProperty(value = "车次号") |
||||
private String trainNumber; |
||||
/** |
||||
* 在库订单ID |
||||
*/ |
||||
@ApiModelProperty(value = "在库订单ID") |
||||
private String stockArticleId; |
||||
|
||||
} |
@ -1,53 +1,161 @@
|
||||
package com.logpm.factory.config; |
||||
|
||||
import com.alibaba.nacos.shaded.com.google.common.collect.Maps; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.common.constant.RabbitConstant; |
||||
import org.springframework.amqp.core.*; |
||||
import org.springframework.amqp.rabbit.connection.ConnectionFactory; |
||||
import org.springframework.amqp.rabbit.connection.CorrelationData; |
||||
import org.springframework.amqp.rabbit.core.RabbitTemplate; |
||||
import org.springframework.amqp.rabbit.retry.MessageRecoverer; |
||||
import org.springframework.amqp.rabbit.retry.RepublishMessageRecoverer; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
|
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* RabbitMQ配置,主要是配置队列,如果提前存在该队列,可以省略本配置类 |
||||
* |
||||
* @author yangkai.shen |
||||
*/ |
||||
//@Slf4j
|
||||
//@Configuration(proxyBeanMethods = false)
|
||||
@Slf4j |
||||
@Configuration |
||||
public class RabbitMqConfiguration { |
||||
|
||||
// @Bean
|
||||
// public RabbitTemplate rabbitTemplate() {
|
||||
// CachingConnectionFactory connectionFactory = new CachingConnectionFactory();
|
||||
// connectionFactory.setPublisherConfirms(true);
|
||||
// connectionFactory.setPublisherReturns(true);
|
||||
// RabbitTemplate rabbitTemplate = new RabbitTemplate(connectionFactory);
|
||||
// rabbitTemplate.setMandatory(true);
|
||||
// rabbitTemplate.setConfirmCallback((correlationData, ack, cause) -> log.info("消息发送成功:correlationData({}),ack({}),cause({})", correlationData, ack, cause));
|
||||
// rabbitTemplate.setReturnCallback((message, replyCode, replyText, exchange, routingKey) -> log.info("消息丢失:exchange({}),route({}),replyCode({}),replyText({}),message:{}", exchange, routingKey, replyCode, replyText, message));
|
||||
// return rabbitTemplate;
|
||||
// }
|
||||
@Bean |
||||
public RabbitTemplate createRabbitTemplate(ConnectionFactory connectionFactory){ |
||||
RabbitTemplate template = new RabbitTemplate(); |
||||
template.setConnectionFactory(connectionFactory); |
||||
template.setMandatory(true); |
||||
template.setConfirmCallback(new RabbitTemplate.ConfirmCallback() { |
||||
@Override |
||||
public void confirm(CorrelationData correlationData, boolean b, String s) { |
||||
System.out.println("确认回调-相关数据:"+correlationData); |
||||
System.out.println("确认回调-确认情况:"+b); |
||||
System.out.println("确认回调-原因:"+s); |
||||
// Long id = Long.parseLong(correlationData.getId());
|
||||
// UpdateWrapper<PanOrderStatusLog> updateWrapper = new UpdateWrapper<>();
|
||||
// if(b){
|
||||
// //修改处理日志为已处理
|
||||
// updateWrapper.set("status",0)
|
||||
// .eq("id",id);
|
||||
//
|
||||
// }else{
|
||||
// //修改处理日志为已处理
|
||||
// updateWrapper.set("status",2)
|
||||
// .eq("id",id);
|
||||
// }
|
||||
// panOrderStatusLogService.update(updateWrapper);
|
||||
} |
||||
}); |
||||
|
||||
template.setReturnsCallback(new RabbitTemplate.ReturnsCallback() { |
||||
@Override |
||||
public void returnedMessage(ReturnedMessage returnedMessage) { |
||||
System.out.println("返回回调-消息:"+returnedMessage.getMessage()); |
||||
System.out.println("返回回调-回应码:"+returnedMessage.getReplyCode()); |
||||
System.out.println("返回回调-回应信息:"+returnedMessage.getReplyText()); |
||||
System.out.println("返回回调-交换机:"+returnedMessage.getExchange()); |
||||
System.out.println("返回回调-路由键:"+returnedMessage.getRoutingKey()); |
||||
} |
||||
}); |
||||
return template; |
||||
} |
||||
|
||||
@Bean |
||||
public DirectExchange errorMessageExchange(){ |
||||
return new DirectExchange(RabbitConstant.ERROR_EXCHANGE); |
||||
} |
||||
@Bean |
||||
public Queue errorQueue(){ |
||||
return new Queue(RabbitConstant.ERROR_QUEUE, true); |
||||
} |
||||
@Bean |
||||
public Binding errorBinding(Queue errorQueue, DirectExchange errorMessageExchange){ |
||||
return BindingBuilder.bind(errorQueue).to(errorMessageExchange).with(RabbitConstant.ERROR_ROUTING); |
||||
} |
||||
|
||||
/** |
||||
* 消费失败队列 |
||||
* @param rabbitTemplate |
||||
* @return |
||||
*/ |
||||
@Bean |
||||
public MessageRecoverer republishMessageRecoverer(RabbitTemplate rabbitTemplate){ |
||||
return new RepublishMessageRecoverer(rabbitTemplate, RabbitConstant.ERROR_EXCHANGE, RabbitConstant.ERROR_ROUTING); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 延迟队列 |
||||
*/ |
||||
// @Bean
|
||||
// public Queue delayQueue() {
|
||||
// return new Queue(RabbitConstant.DIRECT_MODE_QUEUE_ONE, true);
|
||||
// }
|
||||
@Bean |
||||
public Queue orderStatusQueue() { |
||||
return new Queue(RabbitConstant.ORDER_STATUS_QUEUE, true); |
||||
} |
||||
|
||||
/** |
||||
* 延迟队列交换器, x-delayed-type 和 x-delayed-message 固定 |
||||
*/ |
||||
// @Bean
|
||||
// public CustomExchange delayExchange() {
|
||||
// Map<String, Object> args = Maps.newHashMap();
|
||||
// args.put("x-delayed-type", "direct");
|
||||
// return new CustomExchange("TestDirectExchange", "x-delayed-message", true, false, args);
|
||||
// }
|
||||
@Bean |
||||
public CustomExchange orderStatusExchange() { |
||||
Map<String, Object> args = Maps.newHashMap(); |
||||
args.put("x-delayed-type", "direct"); |
||||
return new CustomExchange(RabbitConstant.ORDER_STATUS_EXCHANGE, "x-delayed-message", true, false, args); |
||||
} |
||||
|
||||
/** |
||||
* 延迟队列绑定自定义交换器 |
||||
* |
||||
* @param delayQueue 队列 |
||||
* @param delayExchange 延迟交换器 |
||||
* @param orderStatusQueue 队列 |
||||
* @param orderStatusExchange 延迟交换器 |
||||
*/ |
||||
// @Bean
|
||||
// public Binding delayBinding(Queue delayQueue, CustomExchange delayExchange) {
|
||||
// return BindingBuilder.bind(delayQueue).to(delayExchange).with("TestDirectRouting").noargs();
|
||||
// }
|
||||
@Bean |
||||
public Binding orderStatusBinding(Queue orderStatusQueue, CustomExchange orderStatusExchange) { |
||||
return BindingBuilder.bind(orderStatusQueue).to(orderStatusExchange).with(RabbitConstant.ORDER_STATUS_ROUTING).noargs(); |
||||
} |
||||
|
||||
|
||||
@Bean |
||||
DirectExchange lonelyDirectExchange() { |
||||
return new DirectExchange("lonelyDirectExchange"); |
||||
} |
||||
|
||||
@Bean |
||||
public Queue openOrderQueue() { |
||||
return new Queue(RabbitConstant.OPEN_ORDER_QUEUE, true); |
||||
} |
||||
|
||||
@Bean |
||||
public CustomExchange openOrderExchange() { |
||||
Map<String, Object> args = Maps.newHashMap(); |
||||
args.put("x-delayed-type", "direct"); |
||||
return new CustomExchange(RabbitConstant.OPEN_ORDER_EXCHANGE, "x-delayed-message", true, false, args); |
||||
} |
||||
|
||||
@Bean |
||||
public Binding openOrderBinding(Queue openOrderQueue, CustomExchange openOrderExchange) { |
||||
return BindingBuilder.bind(openOrderQueue).to(openOrderExchange).with(RabbitConstant.OPEN_ORDER_ROUTING).noargs(); |
||||
} |
||||
|
||||
|
||||
@Bean |
||||
public Queue dealWithQueue() { |
||||
return new Queue(RabbitConstant.DEAL_WITH_QUEUE, true); |
||||
} |
||||
|
||||
@Bean |
||||
public CustomExchange dealWithExchange() { |
||||
Map<String, Object> args = Maps.newHashMap(); |
||||
args.put("x-delayed-type", "direct"); |
||||
return new CustomExchange(RabbitConstant.DEAL_WITH_EXCHANGE, "x-delayed-message", true, false, args); |
||||
} |
||||
|
||||
@Bean |
||||
public Binding dealWithBinding(Queue dealWithQueue, CustomExchange dealWithExchange) { |
||||
return BindingBuilder.bind(dealWithQueue).to(dealWithExchange).with(RabbitConstant.DEAL_WITH_ROUTING).noargs(); |
||||
} |
||||
|
||||
|
||||
} |
||||
|
@ -0,0 +1,124 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.factory.mt.controller; |
||||
|
||||
import com.alibaba.fastjson.JSONObject; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import com.logpm.factory.mt.dto.MtFactoryDataDTO; |
||||
import com.logpm.factory.snm.bean.Resp; |
||||
import com.logpm.factory.snm.entity.OrderStatusLog; |
||||
import com.logpm.factory.snm.service.IMtFactoryDataService; |
||||
import com.logpm.factory.snm.service.IOrderStatusLogService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.log4j.Log4j2; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.validation.annotation.Validated; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
import javax.servlet.http.HttpServletRequest; |
||||
|
||||
/** |
||||
* 梦天数据 控制器 |
||||
* |
||||
* @author zhy |
||||
* @since 2023-06-06 |
||||
*/ |
||||
@Log4j2 |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/factory/mt") |
||||
@Api(value = "工厂数据", tags = "工厂数据接口") |
||||
public class MtFactoryDataController extends BladeController { |
||||
|
||||
private final IOrderStatusLogService orderStatusLogService; |
||||
private final IMtFactoryDataService mtFactoryDataService; |
||||
|
||||
/** |
||||
* 工厂数据推送接口 |
||||
*/ |
||||
@ResponseBody |
||||
@PostMapping("/data") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "通常数据推送", notes = "传入factoryOrderDTO") |
||||
public R data(@Validated @RequestBody MtFactoryDataDTO mtFactoryDataDTO, HttpServletRequest request) { |
||||
log.info("############data: "); |
||||
String corpId = request.getHeader("corpId"); |
||||
|
||||
//先保存原始请求数据
|
||||
OrderStatusLog orderStatusLog = new OrderStatusLog(); |
||||
orderStatusLog.setArgs(JSONObject.toJSONString(mtFactoryDataDTO)); |
||||
orderStatusLog.setStatus(1); |
||||
orderStatusLog.setType(3); |
||||
orderStatusLog.setBrand("梦天"); |
||||
orderStatusLogService.save(orderStatusLog); |
||||
|
||||
//数据存入数据库
|
||||
boolean flag = mtFactoryDataService.dealWithData(mtFactoryDataDTO); |
||||
|
||||
|
||||
// //判断数据是否已存入
|
||||
// String orderNo = factoryOrderDTO.getOrderNo();
|
||||
// QueryWrapper<PanFactoryOrder> queryWrapper = new QueryWrapper<>();
|
||||
// queryWrapper.eq("order_no",orderNo);
|
||||
// PanFactoryOrder one = factoryOrderService.getOne(queryWrapper);
|
||||
// if(!Objects.isNull(one)){
|
||||
// log.warn("############data: 订单数据已存在 orderNo={}",orderNo);
|
||||
// return Resp.fail(400,"订单数据已存在");
|
||||
// }
|
||||
//
|
||||
// PanFactoryOrder factoryOrder = new PanFactoryOrder();
|
||||
// BeanUtil.copyProperties(factoryOrderDTO,factoryOrder);
|
||||
// factoryOrder.setCorpid(corpId);
|
||||
// //保存订单数据
|
||||
// factoryOrderService.save(factoryOrder);
|
||||
//
|
||||
// List<PanPackageInfoDTO> packageInfos = factoryOrderDTO.getORDER_ATTRIBUTES();
|
||||
//
|
||||
// for (PanPackageInfoDTO dto:packageInfos){
|
||||
// PanPackageInfo packageInfo = new PanPackageInfo();
|
||||
// BeanUtil.copyProperties(dto,packageInfo);
|
||||
// packageInfo.setOrderId(factoryOrder.getId());
|
||||
// //保存包件信息数据
|
||||
// //因为需要先保存包件明细需要包件的id
|
||||
// packageInfoService.save(packageInfo);
|
||||
//
|
||||
// //再存入包件明细
|
||||
// List<PanPackageList> PanPackagelist = new ArrayList<>();
|
||||
// List<PanPackageListDTO> order_attributes_line = dto.getORDER_ATTRIBUTES_LINE();
|
||||
// for (PanPackageListDTO panPackageListDTO:order_attributes_line){
|
||||
// PanPackageList panPackageList = new PanPackageList();
|
||||
// BeanUtil.copyProperties(panPackageListDTO,panPackageList);
|
||||
// panPackageList.setPackageId(packageInfo.getId());
|
||||
// PanPackagelist.add(panPackageList);
|
||||
// }
|
||||
// packageListService.saveBatch(PanPackagelist);
|
||||
// }
|
||||
//
|
||||
// //修改保存数据的状态
|
||||
// panOrderStatusLog.setStatus(0);
|
||||
// panOrderStatusLogService.saveOrUpdate(panOrderStatusLog);
|
||||
//
|
||||
// //开启异步线程处理数据
|
||||
// syncDataService.handlerPanDataToHt();
|
||||
|
||||
return Resp.fail(400,"fail"); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,18 @@
|
||||
package com.logpm.factory.mt.dto; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
import com.logpm.factory.snm.entity.MtFactoryOrderMain; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class MtFactoryDataDTO extends MtFactoryOrderMain { |
||||
|
||||
@JsonProperty("发货单明细") |
||||
private List<MtFactoryOrderDTO> orderList = new ArrayList<>(); |
||||
|
||||
} |
@ -0,0 +1,18 @@
|
||||
package com.logpm.factory.mt.dto; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
import com.logpm.factory.snm.entity.MtFactoryOrder; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class MtFactoryOrderDTO extends MtFactoryOrder { |
||||
|
||||
@JsonProperty("包装明细") |
||||
private List<MtPackageInfoDTO> packageInfos = new ArrayList<>(); |
||||
|
||||
} |
@ -0,0 +1,10 @@
|
||||
package com.logpm.factory.mt.dto; |
||||
|
||||
import com.logpm.factory.snm.entity.MtPackageInfo; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class MtPackageInfoDTO extends MtPackageInfo { |
||||
} |
@ -0,0 +1,70 @@
|
||||
package com.logpm.factory.receiver; |
||||
|
||||
import com.logpm.factory.snm.dto.OrderStatusDTO; |
||||
import com.logpm.factory.snm.service.IPanFactoryDataService; |
||||
import com.logpm.oldproject.feign.IAdvanceDetailClient; |
||||
import com.rabbitmq.client.Channel; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.common.constant.RabbitConstant; |
||||
import org.springblade.common.exception.CustomerException; |
||||
import org.springblade.core.tool.utils.StringUtil; |
||||
import org.springframework.amqp.core.Message; |
||||
import org.springframework.amqp.rabbit.annotation.RabbitHandler; |
||||
import org.springframework.amqp.rabbit.annotation.RabbitListener; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.io.IOException; |
||||
import java.util.Map; |
||||
|
||||
|
||||
/** |
||||
* 获取订单数据 处理器 |
||||
* |
||||
* @author yangkai.shen |
||||
*/ |
||||
@Slf4j |
||||
@RabbitListener(queues = RabbitConstant.DEAL_WITH_QUEUE) |
||||
@Component |
||||
public class DealWithDataHandler { |
||||
|
||||
@Autowired |
||||
private IAdvanceDetailClient advanceDetailClient; |
||||
@Autowired |
||||
private IPanFactoryDataService panFactoryDataService; |
||||
|
||||
private Integer retryCount = 1; |
||||
|
||||
@RabbitHandler |
||||
public void dealWithDataHandler(Map map, Message message, Channel channel) throws IOException { |
||||
// 如果手动ACK,消息会被监听消费,但是消息在队列中依旧存在,如果 未配置 acknowledge-mode 默认是会在消费完毕后自动ACK掉
|
||||
final long deliveryTag = message.getMessageProperties().getDeliveryTag(); |
||||
log.info("##################我进入这里了 retryCount={}",retryCount++); |
||||
OrderStatusDTO orderStatusDTO = (OrderStatusDTO) map.get("messageData"); |
||||
String status = orderStatusDTO.getStatus(); |
||||
String unitNo = orderStatusDTO.getUnitNo(); |
||||
if("4".equals(status)){ |
||||
//继续判断是否到达目的仓
|
||||
String currentWarehouseId = orderStatusDTO.getCurrentWarehouse();//当前仓Id
|
||||
//查询destinationWarehouse logiBillNo plantId数据
|
||||
Map<String,String> supplyData = advanceDetailClient.getSupplyData(unitNo); |
||||
String destinationWarehouseId = supplyData.get("destinationWarehouseId");//目的仓id
|
||||
if(StringUtil.isBlank(currentWarehouseId)||StringUtil.isBlank(destinationWarehouseId)){ |
||||
log.warn("##############dealWithDataHandler: 仓库数据有问题currentWarehouseId={} destinationWarehouseId={}",currentWarehouseId,destinationWarehouseId); |
||||
throw new CustomerException(405,"仓库数据有误"); |
||||
}else{ |
||||
if(!currentWarehouseId.equals(destinationWarehouseId)){ |
||||
log.info("##############dealWithDataHandler: 不用处理的状态 currentWarehouseId={} destinationWarehouseId={}",currentWarehouseId,destinationWarehouseId); |
||||
channel.basicAck(deliveryTag,false); |
||||
}else{ |
||||
//真正的处理需要的数据
|
||||
panFactoryDataService.handleDataToPlatform(unitNo); |
||||
} |
||||
} |
||||
|
||||
}else{ |
||||
log.info("##############dealWithDataHandler: 不用处理的状态 status={}",status); |
||||
channel.basicAck(deliveryTag,false); |
||||
} |
||||
} |
||||
} |
@ -1,30 +0,0 @@
|
||||
package com.logpm.factory.receiver; |
||||
|
||||
/** |
||||
* 直接队列1 处理器 |
||||
* |
||||
* @author yangkai.shen |
||||
*/ |
||||
//@Slf4j
|
||||
//@RabbitListener(queues = RabbitConstant.DIRECT_MODE_QUEUE_ONE)
|
||||
//@Component
|
||||
public class DirectQueueOneHandler { |
||||
|
||||
// @RabbitHandler
|
||||
// public void directHandlerManualAck(PanFactoryOrderDTO factoryOrderDTO, Message message, Channel channel) {
|
||||
// // 如果手动ACK,消息会被监听消费,但是消息在队列中依旧存在,如果 未配置 acknowledge-mode 默认是会在消费完毕后自动ACK掉
|
||||
// final long deliveryTag = message.getMessageProperties().getDeliveryTag();
|
||||
// try {
|
||||
// log.info("直接队列1,手动ACK,接收消息:{}", factoryOrderDTO);
|
||||
// //通知 MQ 消息已被成功消费,可以ACK了
|
||||
// channel.basicAck(deliveryTag, false);
|
||||
// } catch (IOException e) {
|
||||
// try {
|
||||
// // 处理失败,重新压入MQ
|
||||
// channel.basicRecover();
|
||||
// } catch (IOException e1) {
|
||||
// e1.printStackTrace();
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
} |
@ -0,0 +1,56 @@
|
||||
package com.logpm.factory.receiver; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; |
||||
import com.logpm.factory.snm.entity.OrderStatusLog; |
||||
import com.logpm.factory.snm.service.IOrderStatusLogService; |
||||
import com.rabbitmq.client.Channel; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.common.constant.RabbitConstant; |
||||
import org.springframework.amqp.core.Message; |
||||
import org.springframework.amqp.rabbit.annotation.RabbitHandler; |
||||
import org.springframework.amqp.rabbit.annotation.RabbitListener; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.io.IOException; |
||||
import java.util.Map; |
||||
|
||||
|
||||
/** |
||||
* 异常消息队列 处理器 |
||||
* |
||||
* @author zhy |
||||
*/ |
||||
@Slf4j |
||||
@RabbitListener(queues = RabbitConstant.ERROR_QUEUE) |
||||
@Component |
||||
public class ErrorQueueHandler { |
||||
|
||||
@Autowired |
||||
private IOrderStatusLogService orderStatusLogService; |
||||
|
||||
@RabbitHandler |
||||
public void orderStatusHandlerManualAck(Map map, Message message, Channel channel) { |
||||
// 如果手动ACK,消息会被监听消费,但是消息在队列中依旧存在,如果 未配置 acknowledge-mode 默认是会在消费完毕后自动ACK掉
|
||||
final long deliveryTag = message.getMessageProperties().getDeliveryTag(); |
||||
try { |
||||
Long logId = (Long) map.get("logId"); |
||||
UpdateWrapper<OrderStatusLog> updateWrapper = new UpdateWrapper<>(); |
||||
updateWrapper.set("status",2) |
||||
.eq("id",logId); |
||||
boolean updateFlag = orderStatusLogService.update(updateWrapper); |
||||
if(updateFlag){ |
||||
channel.basicAck(deliveryTag, false); |
||||
}else{ |
||||
channel.basicReject(deliveryTag,true); |
||||
} |
||||
} catch (IOException e) { |
||||
try { |
||||
// 处理失败,重新压入MQ
|
||||
channel.basicReject(deliveryTag,true); |
||||
} catch (IOException e1) { |
||||
e1.printStackTrace(); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,52 @@
|
||||
package com.logpm.factory.receiver; |
||||
|
||||
import com.logpm.factory.snm.dto.OrderInfoDTO; |
||||
import com.logpm.factory.snm.service.IPanFactoryDataService; |
||||
import com.rabbitmq.client.Channel; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.common.constant.RabbitConstant; |
||||
import org.springblade.common.exception.CustomerException; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.amqp.core.Message; |
||||
import org.springframework.amqp.rabbit.annotation.RabbitHandler; |
||||
import org.springframework.amqp.rabbit.annotation.RabbitListener; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.stereotype.Component; |
||||
|
||||
import java.io.IOException; |
||||
import java.util.Map; |
||||
|
||||
|
||||
/** |
||||
* 直接队列1 处理器 |
||||
* |
||||
* @author yangkai.shen |
||||
*/ |
||||
@Slf4j |
||||
@RabbitListener(queues = RabbitConstant.OPEN_ORDER_QUEUE) |
||||
@Component |
||||
public class OpenOrderHandler { |
||||
|
||||
@Autowired |
||||
private IPanFactoryDataService panFactoryDataService; |
||||
|
||||
private Integer retryCount = 1; |
||||
|
||||
@RabbitHandler |
||||
public void openOrderStatusHandler(Map map, Message message, Channel channel) throws IOException { |
||||
// 如果手动ACK,消息会被监听消费,但是消息在队列中依旧存在,如果 未配置 acknowledge-mode 默认是会在消费完毕后自动ACK掉
|
||||
final long deliveryTag = message.getMessageProperties().getDeliveryTag(); |
||||
String msg = new String(message.getBody()); |
||||
log.info("##################我进入这里了 retryCount={}",retryCount++); |
||||
OrderInfoDTO orderInfoDTO = (OrderInfoDTO) map.get("messageData"); |
||||
String orderNo = orderInfoDTO.getOrderNo(); |
||||
R r = panFactoryDataService.handleData(orderInfoDTO); |
||||
int code = r.getCode(); |
||||
if(code == 400 || code == 200){ |
||||
log.info("##################openOrderStatusHandler: 该条数据不用处理 orderNo={}",orderNo); |
||||
channel.basicAck(deliveryTag,true); |
||||
}else{ |
||||
throw new CustomerException(code,r.getMsg()); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.factory.snm.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.factory.snm.entity.MtFactoryOrderMain; |
||||
|
||||
public interface MtFactoryOrderMainMapper extends BaseMapper<MtFactoryOrderMain> { |
||||
} |
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.factory.snm.mapper.MtFactoryOrderMainMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<!-- <resultMap id="orderLogResultMap" type="com.logpm.factory.snm.entity.FactoryOrder">--> |
||||
<!-- <result column="id" property="id"/>--> |
||||
<!-- <result column="req_args" property="reqArgs"/>--> |
||||
<!-- <result column="res_body" property="resBody"/>--> |
||||
<!-- <result column="type" property="type"/>--> |
||||
<!-- <result column="create_user" property="createUser"/>--> |
||||
<!-- <result column="create_time" property="createTime"/>--> |
||||
<!-- <result column="update_user" property="updateUser"/>--> |
||||
<!-- <result column="update_time" property="updateTime"/>--> |
||||
<!-- <result column="status" property="status"/>--> |
||||
<!-- <result column="is_deleted" property="isDeleted"/>--> |
||||
<!-- <result column="create_dept" property="createDept"/>--> |
||||
<!-- </resultMap>--> |
||||
|
||||
</mapper> |
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.factory.snm.mapper.PanOrderStatusLogMapper"> |
||||
<mapper namespace="com.logpm.factory.snm.mapper.OrderStatusLogMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<!-- <resultMap id="orderLogResultMap" type="com.logpm.factory.snm.entity.FactoryOrder">--> |
@ -0,0 +1,12 @@
|
||||
package com.logpm.factory.snm.service; |
||||
|
||||
import com.logpm.factory.mt.dto.MtFactoryDataDTO; |
||||
|
||||
/** |
||||
* 工厂推送数据接口 |
||||
*/ |
||||
public interface IMtFactoryDataService { |
||||
|
||||
boolean dealWithData(MtFactoryDataDTO mtFactoryDataDTO); |
||||
|
||||
} |
@ -0,0 +1,8 @@
|
||||
package com.logpm.factory.snm.service; |
||||
|
||||
import com.logpm.factory.snm.entity.MtFactoryOrderMain; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IMtFactoryOrderMainService extends BaseService<MtFactoryOrderMain> { |
||||
|
||||
} |
@ -0,0 +1,8 @@
|
||||
package com.logpm.factory.snm.service; |
||||
|
||||
import com.logpm.factory.snm.entity.OrderStatusLog; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IOrderStatusLogService extends BaseService<OrderStatusLog> { |
||||
|
||||
} |
@ -1,8 +0,0 @@
|
||||
package com.logpm.factory.snm.service; |
||||
|
||||
import com.logpm.factory.snm.entity.PanOrderStatusLog; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IPanOrderStatusLogService extends BaseService<PanOrderStatusLog> { |
||||
|
||||
} |
@ -0,0 +1,39 @@
|
||||
package com.logpm.factory.snm.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||
import com.logpm.factory.mt.dto.MtFactoryDataDTO; |
||||
import com.logpm.factory.snm.entity.MtFactoryOrderMain; |
||||
import com.logpm.factory.snm.service.IMtFactoryDataService; |
||||
import com.logpm.factory.snm.service.IMtFactoryOrderMainService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springframework.stereotype.Service; |
||||
import org.springframework.transaction.annotation.Transactional; |
||||
|
||||
import java.util.Objects; |
||||
|
||||
@Slf4j |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class MtFactoryDataServiceImpl implements IMtFactoryDataService { |
||||
|
||||
private final IMtFactoryOrderMainService mtFactoryOrderMainService; |
||||
|
||||
@Transactional |
||||
@Override |
||||
public boolean dealWithData(MtFactoryDataDTO mtFactoryDataDTO) { |
||||
log.info("#############dealWithData: 处理梦天工厂数据 开始"); |
||||
String invoiceOrderCode = mtFactoryDataDTO.getInvoiceOrderCode();//发货单编码
|
||||
//先判断该发货单编码是否已经存在
|
||||
QueryWrapper<MtFactoryOrderMain> queryWrapper = new QueryWrapper<>(); |
||||
queryWrapper.eq("invoice_order_code",invoiceOrderCode); |
||||
MtFactoryOrderMain mtFactoryOrderMain = mtFactoryOrderMainService.getOne(queryWrapper); |
||||
if(Objects.isNull(mtFactoryOrderMain)){ |
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
return false; |
||||
} |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.factory.snm.service.impl; |
||||
|
||||
import com.logpm.factory.snm.entity.MtFactoryOrderMain; |
||||
import com.logpm.factory.snm.mapper.MtFactoryOrderMainMapper; |
||||
import com.logpm.factory.snm.service.IMtFactoryOrderMainService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@AllArgsConstructor |
||||
@Service |
||||
public class MtFactoryOrderMainServiceImpl extends BaseServiceImpl<MtFactoryOrderMainMapper, MtFactoryOrderMain> implements IMtFactoryOrderMainService { |
||||
|
||||
|
||||
} |
@ -0,0 +1,19 @@
|
||||
package com.logpm.factory.snm.service.impl; |
||||
|
||||
import com.logpm.factory.snm.entity.OrderStatusLog; |
||||
import com.logpm.factory.snm.mapper.OrderStatusLogMapper; |
||||
import com.logpm.factory.snm.service.IOrderStatusLogService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@AllArgsConstructor |
||||
@Service |
||||
public class OrderStatusLogServiceImpl extends BaseServiceImpl<OrderStatusLogMapper, OrderStatusLog> implements IOrderStatusLogService { |
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(OrderStatusLogServiceImpl.class); |
||||
|
||||
|
||||
} |
@ -1,19 +0,0 @@
|
||||
package com.logpm.factory.snm.service.impl; |
||||
|
||||
import com.logpm.factory.snm.entity.PanOrderStatusLog; |
||||
import com.logpm.factory.snm.mapper.PanOrderStatusLogMapper; |
||||
import com.logpm.factory.snm.service.IPanOrderStatusLogService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@AllArgsConstructor |
||||
@Service |
||||
public class PanOrderStatusLogServiceImpl extends BaseServiceImpl<PanOrderStatusLogMapper, PanOrderStatusLog> implements IPanOrderStatusLogService { |
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(PanOrderStatusLogServiceImpl.class); |
||||
|
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.oldproject.feign; |
||||
|
||||
import com.logpm.oldproject.entity.OrderEntity; |
||||
import com.logpm.oldproject.service.IOrderService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* order Feign实现类 |
||||
* |
||||
* @author zhy |
||||
* @since 2023-06-24 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class OrderClient implements IOrderClient { |
||||
|
||||
private IOrderService orderService; |
||||
|
||||
@Override |
||||
public List<OrderEntity> getOrderByOrderSelfNum(String orderSelfNum) { |
||||
return orderService.getOrderByOrderSelfNum(orderSelfNum); |
||||
} |
||||
} |
@ -0,0 +1,31 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.oldproject.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.oldproject.entity.OrderEntity; |
||||
|
||||
/** |
||||
* 订单 Mapper 接口 |
||||
* |
||||
* @author zhy |
||||
* @since 2023-06-24 |
||||
*/ |
||||
public interface OrderMapper extends BaseMapper<OrderEntity> { |
||||
|
||||
|
||||
} |
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.oldproject.mapper.OrderMapper"> |
||||
|
||||
|
||||
|
||||
</mapper> |
@ -0,0 +1,11 @@
|
||||
package com.logpm.oldproject.service; |
||||
|
||||
import com.logpm.oldproject.entity.OrderEntity; |
||||
|
||||
import java.util.List; |
||||
|
||||
public interface IOrderService { |
||||
|
||||
List<OrderEntity> getOrderByOrderSelfNum(String orderSelfNum); |
||||
|
||||
} |
@ -0,0 +1,25 @@
|
||||
package com.logpm.oldproject.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||
import com.logpm.oldproject.entity.OrderEntity; |
||||
import com.logpm.oldproject.mapper.OrderMapper; |
||||
import com.logpm.oldproject.service.IOrderService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Service |
||||
@AllArgsConstructor |
||||
public class OrderServiceImpl implements IOrderService { |
||||
|
||||
private OrderMapper orderMapper; |
||||
|
||||
@Override |
||||
public List<OrderEntity> getOrderByOrderSelfNum(String orderSelfNum) { |
||||
QueryWrapper<OrderEntity> queryWrapper = new QueryWrapper<>(); |
||||
queryWrapper.eq("selfnumber",orderSelfNum) |
||||
.orderByAsc("create_time"); |
||||
return orderMapper.selectList(queryWrapper); |
||||
} |
||||
} |
Loading…
Reference in new issue