qinqi 3 лет назад
Родитель
Сommit
5d7f1e8acb
1 измененных файлов с 23 добавлено и 0 удалено
  1. 23 0
      WCF.Service/WCF.Services/PDAModuleService.cs

+ 23 - 0
WCF.Service/WCF.Services/PDAModuleService.cs

@@ -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