Exemplo n.º 1
0
 public ResponseFormulaListSearch FormulaListSearch([FromBody] RequestFormulaListSearch request)
 {
     try
     {
         FormulaBLL bll = new FormulaBLL();
         return(bll.FormulaListSearch(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }
Exemplo n.º 2
0
        public ResponseFormulaListSearch FormulaListSearch(RequestFormulaListSearch request)
        {
            ResponseFormulaListSearch response = new ResponseFormulaListSearch();

            using (cnn = GetConnection())
            {
                var ts = cnn.BeginTransaction();
                try
                {
                    var user = this.UserInfoGetButAccount(request.Token, ts);
                    string where = string.Empty;


                    string sql = this.GetPageSql("A.* ",
                                                 @"  TKS_FAS_Formula A where ReportDetailTPLId=@ReportDetailTPLId",
                                                 " A.CreateDate desc  ",
                                                 request.PageSize,
                                                 request.PageIndex);

                    List <TKS_FAS_Formula> data = cnn.Query <TKS_FAS_Formula>(sql,
                                                                              new
                    {
                        ReportDetailTPLId = request.ReportDetailTPLId
                    }, ts).ToList();

                    string countSql = @"select count(1) from  TKS_FAS_Formula A where ReportDetailTPLId=@ReportDetailTPLId
                      ";

                    int total = int.Parse(cnn.ExecuteScalar(countSql, new
                    {
                        ReportDetailTPLId = request.ReportDetailTPLId
                    }, ts).ToString());

                    ts.Commit();
                    response.IsSuccess = true;
                    response.Message   = "加载完毕";
                    response.PageIndex = request.PageIndex;
                    response.Data      = data;
                    response.Total     = total;
                    return(response);
                }
                catch (Exception ex)
                {
                    ts.Rollback();
                    return(this.DealException(response, ex) as ResponseFormulaListSearch);
                }
            }
        }