|
@@ -354,7 +354,7 @@ namespace Hotline.Api.Controllers.DataSharing
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 服务工单交办补充诉求接口
|
|
|
+ /// 服务工单交办补充诉求接口---已完成-----1
|
|
|
/// </summary>
|
|
|
/// <param name="receiveSupplyCaseInfo">交办补充诉求对象</param>
|
|
|
/// <returns></returns>
|
|
@@ -378,6 +378,7 @@ namespace Hotline.Api.Controllers.DataSharing
|
|
|
|
|
|
if (!string.IsNullOrEmpty(id))
|
|
|
{
|
|
|
+ //向业务系统推送消息
|
|
|
var dataOrder = await _dataOrderRepository.GetAsync(p => p.ProvinceNo == dto.CaseSerial, HttpContext.RequestAborted);
|
|
|
if (dataOrder != null)
|
|
|
{
|
|
@@ -386,12 +387,11 @@ namespace Hotline.Api.Controllers.DataSharing
|
|
|
{
|
|
|
Opinion = dto.SupplyContent,
|
|
|
OrderId = dataOrder.OrderId,
|
|
|
- FileJson = listFiles
|
|
|
+ Files = listFiles
|
|
|
};
|
|
|
await _mediator.Send(new AddOrderComplementAsyncNotify { OrderComplementDto = complementDto }, HttpContext.RequestAborted);
|
|
|
}
|
|
|
- //向业务系统推送消息
|
|
|
- //await _capPublisher.PublishAsync(Sharing.Share.Mq.EventNames.SharingOrderSupplements, _mapper.Map<SupplementsDto>(dto), cancellationToken: HttpContext.RequestAborted);
|
|
|
+
|
|
|
return OpenResponse.Ok(Reponse.Success("您已成功提交数据!"));
|
|
|
|
|
|
}
|