@@ -170,6 +170,10 @@ namespace Hotline.Application.Subscribers
{
order.Status = EOrderStatus.WaitForAccept;
}
+ if (dto.Result is 1)
+ order.ProvinceSendBack = true;
+ else
+ order.ProvinceSendBack = false;
await _orderRepository.UpdateAsync(order, cancellationToken);
//if (dto.Result is 1)
@@ -695,7 +695,13 @@ namespace Hotline.Share.Dtos.Order
/// 省撤单信息
/// </summary>
public string ProvinceRevokeString { get; set; }
-
+
+ /// <summary>
+ /// 省工单退回
+ /// </summary>
+ public bool? ProvinceSendBack { get; set; }
public class UpdateOrderDto : AddOrderDto
@@ -855,6 +855,12 @@ namespace Hotline.Orders
[SugarColumn(ColumnDescription = "工单标签")]
public string? TagNames { get; set; }
+ /// 省退回结果
+ [SugarColumn(ColumnDescription ="省退回结果")]
#endregion
#region 附件冗余