修改报表中还药时间为字符
This commit is contained in:
parent
2c4267d100
commit
f18655cc80
|
@ -49,7 +49,7 @@ namespace DM_Weight.Models
|
|||
/// 还药时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "ReturnTime")]
|
||||
public DateTime ReturnTime { get; set; }
|
||||
public string ReturnTime { get; set; }
|
||||
/// <summary>
|
||||
/// 还药者
|
||||
/// </summary>
|
||||
|
|
|
@ -558,7 +558,7 @@ namespace DM_Weight.ViewModels
|
|||
//还药信息
|
||||
rejectionReport.InfactNum = cs.BaseQuantity - oi._OrderDetail.Quantity;
|
||||
rejectionReport.EmptyNum = oi._OrderDetail.Quantity;
|
||||
rejectionReport.ReturnTime = DateTime.Now;
|
||||
rejectionReport.ReturnTime = DateTime.Now.ToString();
|
||||
rejectionReport.ReturnUser = rejectionReport.SendUser;
|
||||
rejectionReport.ReturnReceiveUser = rejectionReport.ReceiveUser;// SendMachineRecord.Operator.ToString();
|
||||
rejectionReport.DrugId = oi._OrderDetail.DrugId;
|
||||
|
|
Loading…
Reference in New Issue