|
@@ -306,29 +306,29 @@ namespace Hotline.Orders
|
|
|
public DateTime? FiledTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 办结时长(分钟)
|
|
|
+ /// 办结时长(秒)
|
|
|
/// 办结时间-交办时间
|
|
|
/// </summary>
|
|
|
public double? HandleDuration { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 办结工作日时长(分钟)
|
|
|
+ /// 办结工作日时长(秒)
|
|
|
/// </summary>
|
|
|
public double? HandleDurationWorkday { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 归档时长(分钟)
|
|
|
+ /// 归档时长(秒)
|
|
|
/// 归档时间-交办时间
|
|
|
/// </summary>
|
|
|
public double? FileDuration { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 归档工作时长(分钟)
|
|
|
+ /// 归档工作时长(秒)
|
|
|
/// </summary>
|
|
|
public double? FileDurationWorkday { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 全流程时长(分钟)
|
|
|
+ /// 全流程时长(秒)
|
|
|
/// 归档时间-创建时间
|
|
|
/// </summary>
|
|
|
public double? AllDuration { get; set; }
|
|
@@ -808,21 +808,21 @@ namespace Hotline.Orders
|
|
|
{
|
|
|
if (!ActualHandleTime.HasValue) return;
|
|
|
if (!CenterToOrgTime.HasValue) return;
|
|
|
- HandleDuration = Math.Round((ActualHandleTime - CenterToOrgTime).Value.TotalMinutes);
|
|
|
+ HandleDuration = Math.Round((ActualHandleTime - CenterToOrgTime).Value.TotalSeconds);
|
|
|
}
|
|
|
|
|
|
public void SetAllDuration()
|
|
|
{
|
|
|
if (!FiledTime.HasValue) return;
|
|
|
if (!StartTime.HasValue) return;
|
|
|
- AllDuration = Math.Round((FiledTime - StartTime).Value.TotalMinutes);
|
|
|
+ AllDuration = Math.Round((FiledTime - StartTime).Value.TotalSeconds);
|
|
|
}
|
|
|
|
|
|
public void SetFileDuration()
|
|
|
{
|
|
|
if (!FiledTime.HasValue) return;
|
|
|
if (!CenterToOrgTime.HasValue) return;
|
|
|
- FileDuration = Math.Round((FiledTime - CenterToOrgTime).Value.TotalMinutes);
|
|
|
+ FileDuration = Math.Round((FiledTime - CenterToOrgTime).Value.TotalSeconds);
|
|
|
}
|
|
|
|
|
|
/// <summary>
|