|
@@ -394,6 +394,12 @@ public class OrderController : BaseController
|
|
|
//推省上
|
|
|
var publishPublishOrder = _mapper.Map<PublishPublishOrderDto>(orderPublish);
|
|
|
publishPublishOrder.Order = _mapper.Map<OrderDto>(order);
|
|
|
+ //查询实际办理附件
|
|
|
+ if (!string.IsNullOrEmpty(order.ActualHandleStepId))
|
|
|
+ {
|
|
|
+ var actualHandleStep = await _workflowStepRepository.GetAsync(order.ActualHandleStepId, HttpContext.RequestAborted);
|
|
|
+ publishPublishOrder.FileJsons = actualHandleStep?.FileJson;
|
|
|
+ }
|
|
|
await _capPublisher.PublishAsync(Hotline.Share.Mq.EventNames.HotlineOrderPublishOrder, publishPublishOrder);
|
|
|
|
|
|
var orderVisit = new OrderVisit();
|