|
@@ -130,6 +130,9 @@ public class OrderController : BaseController
|
|
|
orderPublished.ArrangeTitle = dto.ArrangeTitle;
|
|
|
orderPublished.ArrangeContent = dto.ArrangeContent;
|
|
|
orderPublished.ArrangeOpinion = dto.ArrangeOpinion;
|
|
|
+ orderPublished.ProPublishState = dto.ProPublishState;
|
|
|
+ orderPublished.FeedBackPhone = dto.FeedBackPhone;
|
|
|
+ orderPublished.NoPubReason = dto.NoPubReason;
|
|
|
string id = await _orderPublishedRepository.AddAsync(orderPublished);
|
|
|
//新增回访信息
|
|
|
var visitedDetail = new List<OrderVisitedDetail>();
|
|
@@ -149,6 +152,18 @@ public class OrderController : BaseController
|
|
|
visitedDetail.Add(orgDetail);
|
|
|
}
|
|
|
await _mediator.Publish(new AddVisitNotify(visitedDetail), HttpContext.RequestAborted);
|
|
|
+
|
|
|
+ //TODO 中国政府网
|
|
|
+ if (order.SourceChannel == "ZGZFW")
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ //TODO 省政民互动
|
|
|
+ if (order.SourceChannel == "ZMHD")
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
@@ -167,7 +182,7 @@ public class OrderController : BaseController
|
|
|
if (order is null)
|
|
|
throw UserFriendlyException.SameMessage("未知工单,无法发布");
|
|
|
|
|
|
- var res = new PublishOrderPageBaseDto() { Source = order.Source, OrderTitle = order.Title, Content = order.Content, ActualOpinion = order.ActualOpinion };
|
|
|
+ var res = new PublishOrderPageBaseDto() { SourceChannel = order.SourceChannel, OrderTitle = order.Title, Content = order.Content, ActualOpinion = order.ActualOpinion };
|
|
|
var (idName,idNames) = await _workflowDomainService.GetNoVisiteOrgsAsync(order.WorkflowId, HttpContext.RequestAborted);
|
|
|
res.ActualHandleOrgName = idName;
|
|
|
res.idNames = idNames.ToList();
|