|
|
@@ -320,16 +320,23 @@ namespace Learun.Application.TwoDevelopment.LogisticsManagement |
|
|
|
{ |
|
|
|
var entity = db.FindEntity<Purchase_TravelEntity>(x => x.ProcessId == processId); |
|
|
|
|
|
|
|
LogEntity logEntity = new LogEntity(); |
|
|
|
logEntity.F_CategoryId = 1; |
|
|
|
logEntity.F_OperateTypeId = ((int)OperationType.Other).ToString(); |
|
|
|
logEntity.F_OperateType = EnumAttribute.GetDescription(OperationType.Other); |
|
|
|
logEntity.F_OperateAccount = loginUserInfo.account; |
|
|
|
logEntity.F_OperateUserId = loginUserInfo.userId; |
|
|
|
logEntity.F_Module = Config.GetValue("SoftName"); |
|
|
|
logEntity.F_Description = "移动端"; |
|
|
|
logEntity.F_ExecuteResultJson = Newtonsoft.Json.JsonConvert.SerializeObject( entity); |
|
|
|
logEntity.WriteLog(); |
|
|
|
try |
|
|
|
{ |
|
|
|
LogEntity logEntity = new LogEntity(); |
|
|
|
logEntity.F_CategoryId = 1; |
|
|
|
logEntity.F_OperateTypeId = ((int)OperationType.Other).ToString(); |
|
|
|
logEntity.F_OperateType = EnumAttribute.GetDescription(OperationType.Other); |
|
|
|
logEntity.F_OperateAccount = loginUserInfo.account; |
|
|
|
logEntity.F_OperateUserId = loginUserInfo.userId; |
|
|
|
logEntity.F_Module = Config.GetValue("SoftName"); |
|
|
|
logEntity.F_Description = "移动端"; |
|
|
|
logEntity.F_ExecuteResultJson = Newtonsoft.Json.JsonConvert.SerializeObject(entity); |
|
|
|
logEntity.WriteLog(); |
|
|
|
} |
|
|
|
catch (Exception) |
|
|
|
{ |
|
|
|
|
|
|
|
} |
|
|
|
if (entity != null) |
|
|
|
{ |
|
|
|
//审核通过 |
|
|
|