|
|
@@ -11923,6 +11923,29 @@ namespace Dongke.IBOSS.PRD.WCF.Services
|
|
|
return actionResult;
|
|
|
}
|
|
|
|
|
|
+ //查询用户
|
|
|
+ if (action == "CheckProcedureUser")
|
|
|
+ {
|
|
|
+ string userCode1 = data["UserCode"] + "";
|
|
|
+
|
|
|
+ ServiceResultEntity sre = Service.PCModuleService.FinishedCheckLogic.CheckProcedureUser(userCode1, sUserInfo);
|
|
|
+
|
|
|
+
|
|
|
+ if (Convert.ToInt32(sre.Result) < 0)
|
|
|
+ {
|
|
|
+ actionResult.Status = (int)Constant.PDAResult.Fail;
|
|
|
+ actionResult.Result = sre.OtherStatus;
|
|
|
+ actionResult.Message = sre.Message;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ actionResult.Result = JsonHelper.ToJson(sre.Data);
|
|
|
+ actionResult.Status = (int)Constant.PDAResult.Success;
|
|
|
+ actionResult.Message = sre.Message;
|
|
|
+ }
|
|
|
+ return actionResult;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
#endregion
|
|
|
|