|
@@ -353,6 +353,7 @@ namespace DataSharing.Application.Receivers
|
|
|
//dataOrder.Source = dto.Source.ToString();
|
|
|
//dataOrder.CaseSource = dto.SourceChannel;
|
|
|
//dataOrder.CaseSourceCode = dto.SourceChannelCode;
|
|
|
+ dataOrder.HandleState = dto.Status >= EOrderStatus.Filed ? "办理完成" : "办理中";
|
|
|
await _dsOrderRepository.UpdateAsync(dataOrder, cancellationToken);
|
|
|
}
|
|
|
|
|
@@ -364,6 +365,7 @@ namespace DataSharing.Application.Receivers
|
|
|
orderSend.Source = dto.Source.ToString();
|
|
|
orderSend.CaseSource = dto.SourceChannel;
|
|
|
orderSend.CaseSourceCode = dto.SourceChannelCode;
|
|
|
+ orderSend.HandleState = dto.Status >= EOrderStatus.Filed ? "办理完成" : "办理中";
|
|
|
await _orderSendRepository.UpdateAsync(orderSend, cancellationToken);
|
|
|
}
|
|
|
}
|