Example #1
0
        // 大客户数据分析-汇总
        public static string LoadCustomerTotal(ref string a_strErr)
        {
            DataTable dtCustomer = new DataTable();

            dtCustomer = FlowDAPro.LoadCustomerTotal(ref a_strErr);

            if (dtCustomer == null)
            {
                return("");
            }
            if (dtCustomer.Rows.Count == 0)
            {
                return("");
            }

            string strCustomer = GFun.Dt2Json("CustomerTotal", dtCustomer);

            return(strCustomer);
        }
Example #2
0
 public static UIDataTable LoadRepalceAnaly(string where)
 {
     return(FlowDAPro.LoadRepalceAnaly(where));
 }
Example #3
0
 // 检测对比图-加载检测表列表
 public static UIDataTable LoadDetecList(int a_intPageSize, int a_intPageIndex, string where)
 {
     return(FlowDAPro.LoadDetecList(a_intPageSize, a_intPageIndex, where));
 }
Example #4
0
 // 获取表格数据
 public static DataSet getMeterImg(string arr)
 {
     return(FlowDAPro.getMeterImg(arr));
 }
Example #5
0
 // 重复性和示值报告-查询
 public static DataTable GetRepeatValue(string where)
 {
     return(FlowDAPro.GetRepeatValue(where));
 }