This commit is contained in:
@@ -469,14 +469,14 @@ namespace AyaNova.PlugIn.V8
|
|||||||
if (!progress.KeepGoing) return;
|
if (!progress.KeepGoing) return;
|
||||||
User c = User.GetItem(i.ID);
|
User c = User.GetItem(i.ID);
|
||||||
var newId = Map[c.ID];
|
var newId = Map[c.ID];
|
||||||
var creator = Map[c.Creator];
|
var creator = SafeGetUserMap(c.Creator);
|
||||||
var modifier = Map[c.Modifier];
|
var modifier = SafeGetUserMap(c.Modifier);
|
||||||
|
|
||||||
await util.EventLog((int)util.AyaType.User, newId, creator, modifier, c.Created, c.Modified);
|
await util.EventLog(util.AyaType.User, newId, creator, modifier, c.Created, c.Modified);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion clients
|
#endregion users
|
||||||
|
|
||||||
#region clients
|
#region clients
|
||||||
private async System.Threading.Tasks.Task ExportClients(ProgressForm progress)
|
private async System.Threading.Tasks.Task ExportClients(ProgressForm progress)
|
||||||
@@ -540,7 +540,7 @@ namespace AyaNova.PlugIn.V8
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Event log fixup
|
//Event log fixup
|
||||||
await util.EventLog((int)util.AyaType.Customer, RavenId, SafeGetUserMap(c.Creator), SafeGetUserMap(c.Modifier), c.Created, c.Modified);
|
await util.EventLog(util.AyaType.Customer, RavenId, SafeGetUserMap(c.Creator), SafeGetUserMap(c.Modifier), c.Created, c.Modified);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user