|
@@ -581,14 +581,14 @@ public abstract class SnapshotApplicationBase
|
|
|
{
|
|
|
foreach (var file in dto.ReplyFileList)
|
|
|
{
|
|
|
- await _fileDomainService.GetNetworkFileAsync(file,orderSnapshot.Id, token);
|
|
|
+ await _fileDomainService.GetNetworkFileAsync(file, orderSnapshot.Id, token);
|
|
|
}
|
|
|
}
|
|
|
await _orderSnapshotRepository.UpdateAsync(orderSnapshot);
|
|
|
// 网格员办结
|
|
|
if (orderSnapshot.ReplyResultType == EGuiderSystemReplyType.Field)
|
|
|
{
|
|
|
- await _publisher.PublishAsync(new GuiderSystemFieldNotification(orderSnapshot.Id), token);
|
|
|
+ await _publisher.PublishAsync(new GuiderSystemFieldNotification(orderSnapshot.Id, dto.Adapt<CommunityInfo>()), token);
|
|
|
}
|
|
|
// 网格员超时未回复退回
|
|
|
if (orderSnapshot.ReplyResultType == EGuiderSystemReplyType.Returned)
|
|
@@ -626,6 +626,16 @@ public abstract class SnapshotApplicationBase
|
|
|
await _thirdAccountRepository.UpdateAsync(third, cancellationToken);
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 同步社区信息
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="entity"></param>
|
|
|
+ /// <param name="cancellationToken"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task SyncCommunityInfoAsync(CommunityInfo entity, CancellationToken cancellationToken)
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
#region 从业人员
|
|
|
|
|
|
/// <summary>
|