Example #1
0
        public List<OrderPaymentHncbQuery> QueryOrderHncb(OrderPaymentHncbQuery store, out int totalCount)
        {
            StringBuilder sb = new StringBuilder();
            try
            {
                sb.Append(@"SELECT bank,entday,(FROM_UNIXTIME(txtday) )as txtdate,sn,specific_currency,paid,type,outputbank,pay_type,e_date,note,vat_number ");
                sb.AppendFormat("  FROM    order_payment_hncb where paid <> 0 ");
                sb.AppendFormat(" AND order_id ='{0}'", store.order_id);
                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-->QueryOrderHncb " + ex.Message + sb.ToString(), ex);
            }

            return _access.getDataTableForObj<OrderPaymentHncbQuery>(sb.ToString());

        }
        /// <summary>
        /// 華南匯款資料
        /// </summary>
        /// <returns></returns>
        public HttpResponseBase GetOrderHncbList()
        {
            string json = string.Empty;

            OrderPaymentHncbQuery query = new OrderPaymentHncbQuery();
            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"].ToString());
            }
            try
            {
                List<OrderPaymentHncbQuery> store = new List<OrderPaymentHncbQuery>();
                _tbshow = new TabShowMgr(mySqlConnectionString);
                int totalCount = 0;
                store = _tbshow.QueryOrderHncb(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;
        }
Example #3
0
 public List<OrderPaymentHncbQuery> QueryOrderHncb(OrderPaymentHncbQuery store, out int totalCount)
 {
     try
     {
         return _tabshowdao.QueryOrderHncb(store, out totalCount);
     }
     catch (Exception ex)
     {
         throw new Exception("TabShowMgr-->QueryOrderHncb-->" + ex.Message, ex);
     }
 
 }