fix:任务拆解
This commit is contained in:
@@ -34,7 +34,7 @@ public class TaskEventProducer {
|
||||
message.setEventId(UUID.randomUUID().toString());
|
||||
}
|
||||
|
||||
String destination = TOPIC + ":" + message.getOwnerService();
|
||||
String destination = TOPIC + "_" + message.getOwnerService();
|
||||
try {
|
||||
rocketMQTemplate.syncSend(destination, message);
|
||||
log.info("MQ 发送成功, destination={}, taskId={}, eventType={}",
|
||||
|
||||
@@ -105,6 +105,7 @@ public class TransportTaskFeedbackServiceImpl implements TransportTaskFeedbackSe
|
||||
|
||||
/**
|
||||
* 处理取货完成(61):更新状态 + 同步 HTTP 回调 LMS/WMS
|
||||
* ownerService: 服务提供商
|
||||
*/
|
||||
private void handlePicked(TransportTaskDO task, AcsFeedbackReqDTO reqDTO) {
|
||||
if (!isAllowedFrom(task.getTaskStatus(), "60", "61")) {
|
||||
|
||||
Reference in New Issue
Block a user