修改了出库是否作废
This commit is contained in:
@@ -161,9 +161,9 @@ namespace WMS.Web.Core.Dto.OutStockTask
|
|||||||
/// 是否作废
|
/// 是否作废
|
||||||
///</summary>
|
///</summary>
|
||||||
[Column("是否作废")]
|
[Column("是否作废")]
|
||||||
public bool IsRepeal { get; set; }
|
// public bool IsRepeal { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public string IsRepeal { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -375,7 +375,8 @@ namespace WMS.Web.Repositories
|
|||||||
AccruedQty = s.detail.AccruedQty,
|
AccruedQty = s.detail.AccruedQty,
|
||||||
RealityQty = s.detail.RealityQty,
|
RealityQty = s.detail.RealityQty,
|
||||||
CreateTime = s.order.CreateTime.DateToStringSeconds(),
|
CreateTime = s.order.CreateTime.DateToStringSeconds(),
|
||||||
IsRepeal = s.detail.IsRepeal ?? false,
|
// IsRepeal = s.detail.IsRepeal ?? false,
|
||||||
|
IsRepeal = (bool)s.detail.IsRepeal ? "是" : "否",
|
||||||
OperateTime = s.order.OperateTime.DateToStringSeconds(),
|
OperateTime = s.order.OperateTime.DateToStringSeconds(),
|
||||||
Operator = _singleDataService.GetSingleData(SingleAction.Staffs, companyId, s.order.OperatorId ?? 0),
|
Operator = _singleDataService.GetSingleData(SingleAction.Staffs, companyId, s.order.OperatorId ?? 0),
|
||||||
OutStockTime = s.order.OutStockTime.DateToStringSeconds(),
|
OutStockTime = s.order.OutStockTime.DateToStringSeconds(),
|
||||||
|
|||||||
Reference in New Issue
Block a user