|
@@ -165,7 +165,7 @@ public class PurchaseOrderServiceImpl implements PurchaseOrderService {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
// 发送上传SAAS的消息队列消息
|
|
// 发送上传SAAS的消息队列消息
|
|
|
- rabbitSendService.sendMessage(RabbitMqConfig.QUEUE_SAAS_SALE_DOWN_NAME, "POST_SALE_ORDER", orderAll.getId());
|
|
|
|
|
|
|
+ rabbitSendService.sendMessage(RabbitMqConfig.QUEUE_SAAS_SALE_DOWN_NAME, RabbitMqConfig.POST_SALE_ORDER, orderAll.getId());
|
|
|
}
|
|
}
|
|
|
Set<OrderRedDotAll> redDotAllSet = new HashSet<>();
|
|
Set<OrderRedDotAll> redDotAllSet = new HashSet<>();
|
|
|
orderAlls.forEach(orderInfo -> {
|
|
orderAlls.forEach(orderInfo -> {
|
|
@@ -318,7 +318,7 @@ public class PurchaseOrderServiceImpl implements PurchaseOrderService {
|
|
|
// 如果新的结案状态与原有结案状态不一致
|
|
// 如果新的结案状态与原有结案状态不一致
|
|
|
if (!order.getEnd().equals(oldEndStatus)) {
|
|
if (!order.getEnd().equals(oldEndStatus)) {
|
|
|
// 生成上传采购订单结案状态到SAAS的消息队列消息
|
|
// 生成上传采购订单结案状态到SAAS的消息队列消息
|
|
|
- rabbitSendService.sendMessage(RabbitMqConfig.QUEUE_SAAS_SALE_DOWN_NAME, "POST_SALE_ORDER_END", orderId);
|
|
|
|
|
|
|
+ rabbitSendService.sendMessage(RabbitMqConfig.QUEUE_SAAS_SALE_DOWN_NAME, RabbitMqConfig.POST_SALE_ORDER_END, orderId);
|
|
|
}
|
|
}
|
|
|
return order;
|
|
return order;
|
|
|
}
|
|
}
|