|
@@ -67,7 +67,7 @@ namespace OASystem.API.Controllers
|
|
|
if (resultData.Code == 0)
|
|
|
{
|
|
|
#region 客户资料表操作记录
|
|
|
- await GeneralMethod.NewClientOperationRecord(dto.PortType,OperationEnum.NoOperation, dto.UserId, 0, "");
|
|
|
+ await GeneralMethod.NewClientOperationRecord(dto.PortType,OperationEnum.NoOperation, dto.OperationUserId, 0, "");
|
|
|
#endregion
|
|
|
|
|
|
jw = JsonView(true, "查询成功!", resultData.Data);
|
|
@@ -189,6 +189,10 @@ namespace OASystem.API.Controllers
|
|
|
var result = await _clientDataRepository.QuerySelectAndSingleData(dto);
|
|
|
if (result.Code == 0)
|
|
|
{
|
|
|
+ #region 客户资料表操作记录
|
|
|
+ await GeneralMethod.NewClientOperationRecord(dto.PortType, OperationEnum.Details, dto.UserId, dto.Id, "");
|
|
|
+ #endregion
|
|
|
+
|
|
|
jw = JsonView(true, result.Msg,result.Data);
|
|
|
}
|
|
|
else
|