|
@@ -2571,17 +2571,17 @@ public class OrderApplication : IOrderApplication, IScopeDependency
|
|
|
{
|
|
|
if (screen.Any())
|
|
|
{
|
|
|
- await _orderScreenRepository.RemoveRangeAsync(screen, true, cancellationToken);
|
|
|
+ await _orderScreenRepository.RemoveRangeAsync(screen, false, cancellationToken);
|
|
|
}
|
|
|
|
|
|
if (sendBackAudit.Any())
|
|
|
{
|
|
|
- await _orderSendBackAuditRepository.RemoveRangeAsync(sendBackAudit, true, cancellationToken);
|
|
|
+ await _orderSendBackAuditRepository.RemoveRangeAsync(sendBackAudit, false, cancellationToken);
|
|
|
}
|
|
|
|
|
|
if (orderDelay.Any())
|
|
|
{
|
|
|
- await _orderDelayRepository.RemoveRangeAsync(orderDelay, true, cancellationToken);
|
|
|
+ await _orderDelayRepository.RemoveRangeAsync(orderDelay, false, cancellationToken);
|
|
|
}
|
|
|
|
|
|
if (order.Workflow.IsInCountersign)
|