public string GetCustomerOrderPayPage(string pRequest)
        {
            GetCustomerOrderPayInfoRD infoRd = new GetCustomerOrderPayInfoRD();

            try
            {
                ReqCustomer            entity = pRequest.DeserializeJSONTo <ReqCustomer>();
                CustomerOrderPayEntity orer   = new CustomerOrderPayEntity()
                {
                    OrderNo        = entity.Parameters.OrderNo,
                    OrderSource    = entity.Parameters.OrderSource,
                    PayTimeBegin   = entity.Parameters.PayTimeBegin,
                    PayTimeEnd     = entity.Parameters.PayTimeEnd,
                    OrderPayStatus = entity.Parameters.OrderPayStatus,
                    WithdrawalId   = entity.Parameters.WithdrawalId
                };
                var loggingSessionInfo     = new SessionManager().CurrentUserLoginInfo;
                CustomerOrderPayBLL server = new CustomerOrderPayBLL(loggingSessionInfo);
                DataSet             ds     = server.GetCustomerOrderPayPage(orer, (int)entity.Parameters.PageIndex, (int)entity.Parameters.PageSize);
                if (ds.Tables[1] != null && ds.Tables[1].Rows.Count > 0)
                {
                    infoRd.CustomerOrderList = DataTableToObject.ConvertToList <CustomerOrderPayInfo>(ds.Tables[1]);
                    infoRd.PageCount         = Convert.ToInt32(ds.Tables[0].Rows[0]["PageCount"]);
                    infoRd.RowsCount         = Convert.ToInt32(ds.Tables[0].Rows[0]["RowsCount"]);
                }
                else
                {
                    infoRd.CustomerOrderList = new List <CustomerOrderPayInfo>();
                    infoRd.PageCount         = 0;
                    infoRd.RowsCount         = 0;
                }
                var rsp = new SuccessResponse <IAPIResponseData>(infoRd);
                return(rsp.ToJSON());
            }
            catch (Exception)
            {
                var rsp = new SuccessResponse <IAPIResponseData>(infoRd);
                return(infoRd.ToJSON());
            }
        }
Пример #2
0
 public DataSet GetCustomerOrderPayPage(CustomerOrderPayEntity entity, int pageIndex, int pageSize)
 {
     return(this._currentDAO.GetCustomerOrderPayPage(entity, pageIndex, pageSize));
 }
Пример #3
0
 public void Update(CustomerOrderPayEntity pEntity, bool pIsUpdateNullField, IDbTransaction pTran)
 {
     _currentDAO.Update(pEntity, pIsUpdateNullField, pTran);
 }
Пример #4
0
 /// <summary>
 /// 更新
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 /// <param name="pTran">事务实例,可为null,如果为null,则不使用事务来更新</param>
 public void Update(CustomerOrderPayEntity pEntity, IDbTransaction pTran)
 {
     Update(pEntity, true, pTran);
 }
Пример #5
0
 /// <summary>
 /// 在事务内创建一个新实例
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 /// <param name="pTran">事务实例,可为null,如果为null,则不使用事务来更新</param>
 public void Create(CustomerOrderPayEntity pEntity, IDbTransaction pTran)
 {
     _currentDAO.Create(pEntity, pTran);
 }
Пример #6
0
 /// <summary>
 /// 创建一个新实例
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 public void Create(CustomerOrderPayEntity pEntity)
 {
     _currentDAO.Create(pEntity);
 }
Пример #7
0
 /// <summary>
 /// 分页根据实体条件查询实体
 /// </summary>
 /// <param name="pQueryEntity">以实体形式传入的参数</param>
 /// <param name="pOrderBys">排序组合</param>
 /// <returns>符合条件的实体集</returns>
 public PagedQueryResult <CustomerOrderPayEntity> PagedQueryByEntity(CustomerOrderPayEntity pQueryEntity, OrderBy[] pOrderBys, int pPageSize, int pCurrentPageIndex)
 {
     return(_currentDAO.PagedQueryByEntity(pQueryEntity, pOrderBys, pPageSize, pCurrentPageIndex));
 }
Пример #8
0
 /// <summary>
 /// 根据实体条件查询实体
 /// </summary>
 /// <param name="pQueryEntity">以实体形式传入的参数</param>
 /// <param name="pOrderBys">排序组合</param>
 /// <returns>符合条件的实体集</returns>
 public CustomerOrderPayEntity[] QueryByEntity(CustomerOrderPayEntity pQueryEntity, OrderBy[] pOrderBys)
 {
     return(_currentDAO.QueryByEntity(pQueryEntity, pOrderBys));
 }
Пример #9
0
 /// <summary>
 /// 删除
 /// </summary>
 /// <param name="pEntity"></param>
 public void Delete(CustomerOrderPayEntity pEntity)
 {
     _currentDAO.Delete(pEntity);
 }
Пример #10
0
 public void Update(CustomerOrderPayEntity pEntity, bool pIsUpdateNullField)
 {
     _currentDAO.Update(pEntity, pIsUpdateNullField);
 }
Пример #11
0
 /// <summary>
 /// 更新
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 public void Update(CustomerOrderPayEntity pEntity)
 {
     Update(pEntity, true);
 }