|
@@ -152,7 +152,8 @@ public abstract class ExpireTimeLimitBase
|
|
|
EFlowDirection.CenterToOrg => GetOrderTimeLimitConfig(order.AcceptTypeCode),
|
|
|
EFlowDirection.OrgToCenter => GetOrderTimeLimitConfig(),
|
|
|
EFlowDirection.CenterToCenter => GetOrderTimeLimitConfig(order.AcceptTypeCode),
|
|
|
- _ => throw new ArgumentOutOfRangeException(nameof(flowDirection), flowDirection, null)
|
|
|
+ EFlowDirection.FiledToOrg => GetOrderTimeLimitConfig(order.AcceptTypeCode),
|
|
|
+ _ => throw new ArgumentOutOfRangeException(nameof(flowDirection), flowDirection, null)
|
|
|
};
|
|
|
|
|
|
return await CalcEndTime(beginTime, timeConfig, order.AcceptTypeCode);
|