|
@@ -92,18 +92,18 @@ namespace Hotline.Share.Dtos.Order
|
|
|
/// <summary>
|
|
|
/// 工单标签(自贡)
|
|
|
/// </summary>
|
|
|
- public string? OrderTag => OrderTags != null && OrderTags.Any()? string.Join(",", OrderTags.Select(x => x.DicDataName)) : string.Empty;
|
|
|
+ public string? OrderTag => OrderTags != null && OrderTags.Any() ? string.Join(",", OrderTags.Select(x => x.DicDataName)) : string.Empty;
|
|
|
|
|
|
public string? OrderTagCode { get; set; }
|
|
|
|
|
|
public List<SystemDicDataOutDto>? OrderTags { get; set; }
|
|
|
|
|
|
- #region 流程信息
|
|
|
+ #region 流程信息
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// 工单开始时间(受理/接办时间=流程开启时间)
|
|
|
- /// </summary>
|
|
|
- public DateTime? StartTime { get; set; }
|
|
|
+ /// <summary>
|
|
|
+ /// 工单开始时间(受理/接办时间=流程开启时间)
|
|
|
+ /// </summary>
|
|
|
+ public DateTime? StartTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 交办时间(中心交部门办理时间)
|
|
@@ -661,7 +661,7 @@ namespace Hotline.Share.Dtos.Order
|
|
|
{
|
|
|
try
|
|
|
{
|
|
|
- if (Status >= EOrderStatus.Filed && FiledTime != null)
|
|
|
+ if (Status >= EOrderStatus.Filed && FiledTime != null && ExpiredTime != null)
|
|
|
{
|
|
|
return Math.Round((ExpiredTime.Value - FiledTime.Value).TotalDays, 1) + "天";
|
|
|
}
|
|
@@ -1153,13 +1153,13 @@ namespace Hotline.Share.Dtos.Order
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
- // /// <summary>
|
|
|
- // /// 工单标签(自贡)
|
|
|
- // /// </summary>
|
|
|
- // public string? OrderTag => OrderTags != null && OrderTags.Any() ? string.Join(",", OrderTags.Select(x => x.DicDataName)) : string.Empty;
|
|
|
+ // /// <summary>
|
|
|
+ // /// 工单标签(自贡)
|
|
|
+ // /// </summary>
|
|
|
+ // public string? OrderTag => OrderTags != null && OrderTags.Any() ? string.Join(",", OrderTags.Select(x => x.DicDataName)) : string.Empty;
|
|
|
|
|
|
|
|
|
- //public string? OrderTagCode { get; set; }
|
|
|
+ //public string? OrderTagCode { get; set; }
|
|
|
|
|
|
#region 热点
|
|
|
|
|
@@ -1440,9 +1440,9 @@ namespace Hotline.Share.Dtos.Order
|
|
|
/// <summary>
|
|
|
/// 工单标签
|
|
|
/// </summary>
|
|
|
- public List<string>? Tags { get; set; }
|
|
|
+ public List<string>? Tags { get; set; }
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
public record CanLinkCallRecordOrderDto : PagedKeywordRequest
|
|
|
{
|