コード例 #1
0
ファイル: TabShowDao.cs プロジェクト: lxh2014/gigade-net
        public List<OrderPaymentUnionPay> GetUnionPayList(OrderPaymentUnionPay store, out int totalCount)
        {
            StringBuilder sb = new StringBuilder();
            try
            {

                sb.Append(@"select union_id,respcode,transtype,respmsg,merabbr,merid,orderamount,ordercurrency,resptime,cupReserved");
                sb.AppendFormat(" FROM order_payment_union_pay where order_id='{0}'", store.order_id);
                sb.Append(" ORDER BY union_id ASC");
                totalCount = 0;
                if (store.IsPage)
                {
                    System.Data.DataTable _dt = _access.getDataTable(sb.ToString());
                    if (_dt != null && _dt.Rows.Count > 0)
                    {
                        totalCount = _dt.Rows.Count;
                    }
                    sb.AppendFormat(" limit {0},{1}", store.Start, store.Limit);

                }

            }
            catch (Exception ex)
            {

                throw new Exception("TabShowDao-->GetUnionPayList " + ex.Message + sb.ToString(), ex);
            }
            return _access.getDataTableForObj<OrderPaymentUnionPay>(sb.ToString());
        }
コード例 #2
0
        /// <summary>
        /// 銀聯UnionPayList
        /// </summary>
        /// <returns></returns>
        public HttpResponseBase GetUnionPayList()
        {
            string json = string.Empty;

            OrderPaymentUnionPay query = new OrderPaymentUnionPay();
            query.Start = Convert.ToInt32(Request.Params["start"] ?? "0");//用於分頁的變量
            query.Limit = Convert.ToInt32(Request.Params["limit"] ?? "25");//用於分頁的變量
            if (!string.IsNullOrEmpty(Request.Params["Order_Id"]))
            {
                query.order_id = uint.Parse(Request.Params["Order_Id"]);
            }

            try
            {
                List<OrderPaymentUnionPay> store = new List<OrderPaymentUnionPay>();
                _tbshow = new TabShowMgr(mySqlConnectionString);
                int totalCount = 0;
                store = _tbshow.GetUnionPayList(query, out  totalCount);
                IsoDateTimeConverter timeConverter = new IsoDateTimeConverter();
                //这里使用自定义日期格式,如果不使用的话,默认是ISO8601格式     
                timeConverter.DateTimeFormat = "yyyy-MM-dd HH:mm:ss";
                json = "{success:true,data:" + JsonConvert.SerializeObject(store, Formatting.Indented, timeConverter) + "}";//返回json數據
            }
            catch (Exception ex)
            {
                Log4NetCustom.LogMessage logMessage = new Log4NetCustom.LogMessage();
                logMessage.Content = string.Format("TargetSite:{0},Source:{1},Message:{2}", ex.TargetSite.Name, ex.Source, ex.Message);
                logMessage.MethodName = System.Reflection.MethodBase.GetCurrentMethod().Name;
                log.Error(logMessage);
                json = "{success:true,totalCount:0,data:[]}";
            }
            this.Response.Clear();
            this.Response.Write(json);
            this.Response.End();
            return this.Response;
        }
コード例 #3
0
ファイル: TabShowMgr.cs プロジェクト: lxh2014/gigade-net
        public List<OrderPaymentUnionPay> GetUnionPayList(OrderPaymentUnionPay store, out int totalCount)
        {
            try
            {
                return _tabshowdao.GetUnionPayList(store, out totalCount);
            }
            catch (Exception ex)
            {

                throw new Exception("TabShowMgr-->GetUnionPayList-->" + ex.Message, ex);
            }
        }