|
|
@@ -263,6 +263,8 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
//设置操作人和时间
|
|
|
foreach (var item in visaSteps)
|
|
|
{
|
|
|
+ //默认确认完成
|
|
|
+ item.IsCompleted = true;
|
|
|
item.LastUpdateUserId = currUserId;
|
|
|
item.LastUpdateTime = DateTime.Now;
|
|
|
}
|
|
|
@@ -279,6 +281,8 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
//step=4 预计出签时间
|
|
|
visaSteps.FirstOrDefault(x => x.Step == 4).TypedValue = invertedInfo.IssueVisaDt;
|
|
|
|
|
|
+
|
|
|
+
|
|
|
var update = await _sqlSugar.Updateable(visaSteps)
|
|
|
.UpdateColumns(it => new { it.StoreVal, it.LastUpdateUserId,it.LastUpdateTime })
|
|
|
.ExecuteCommandAsync();
|