Exemple #1
0
        /// <summary>
        /// 生成数据集
        /// </summary>
        /// <param name="context"></param>
        /// <param name="msg"></param>
        /// <param name="P1"></param>
        /// <param name="P2"></param>
        /// <param name="UserInfo"></param>

        public void ADDBISETLIST(JObject context, Msg_Result msg, string P1, string P2, JH_Auth_UserB.UserInfo UserInfo)
        {
            int       ID             = Int32.Parse(P1);
            DBFactory db             = new BI_DB_SourceB().GetDB(ID);
            string    strTableName   = P2;
            string    strDataSetName = context.Request("DsetName") ?? "1";



            BI_DB_Set DS = new BI_DB_Set();

            DS.Name   = strDataSetName;
            DS.SID    = ID;
            DS.SName  = strTableName;
            DS.CRDate = DateTime.Now;
            DS.CRUser = UserInfo.User.UserName;
            DS.Type   = "SQL";
            DS.DSQL   = "SELECT  * FROM " + strTableName;
            new BI_DB_SetB().Insert(DS);



            DataTable dt = db.GetDBClient().SqlQueryable <Object>(CommonHelp.Filter("SELECT  * FROM " + strTableName)).ToDataTablePage(1, 1);

            List <BI_DB_Dim> ListDIM = new BI_DB_SetB().getCType(dt);

            ListDIM.ForEach(D => D.STID   = DS.ID);
            ListDIM.ForEach(D => D.CRDate = DateTime.Now);
            ListDIM.ForEach(D => D.CRUser = UserInfo.User.UserName);

            new BI_DB_DimB().Insert(ListDIM);
        }
Exemple #2
0
        /// <summary>
        /// 根据表解析数据字段
        /// </summary>
        /// <param name="context"></param>
        /// <param name="msg"></param>
        /// <param name="P1"></param>
        /// <param name="P2"></param>
        /// <param name="UserInfo"></param>
        public void GETFIELDDATA(JObject context, Msg_Result msg, string P1, string P2, JH_Auth_UserB.UserInfo UserInfo)
        {
            DBFactory        db      = new BI_DB_SourceB().GetDB(0);
            DataTable        dt      = db.GetDBClient().SqlQueryable <Object>(CommonHelp.Filter("SELECT  * FROM " + P1)).ToDataTablePage(1, 1);
            List <BI_DB_Dim> ListDIM = new BI_DB_SetB().getCType(dt);

            msg.Result = ListDIM;
        }
Exemple #3
0
        //获取数据集
        public void GETBIDBSETLIST(HttpContext context, Msg_Result msg, string P1, string P2, JH_Auth_UserB.UserInfo UserInfo)
        {
            string userName = UserInfo.User.UserName;
            string strWhere = " 1=1 ";

            int page      = 0;
            int pagecount = 8;

            int.TryParse(context.Request["p"] ?? "1", out page);
            int.TryParse(context.Request["pagecount"] ?? "8", out pagecount);//页数
            page = page == 0 ? 1 : page;
            int       total = 0;
            DataTable dt    = new BI_DB_SetB().GetDataPager(" BI_DB_Set T left join BI_DB_Source S on T.SID=S.ID ", " T.*,S.Name AS SJY,S.DBType ", pagecount, page, " T.CRDate desc ", strWhere, ref total);

            msg.Result  = dt;
            msg.Result1 = total;
            msg.Result2 = new BI_DB_SourceB().GetEntities(d => d.DBType == "SQLSERVER");
        }
Exemple #4
0
 public void JXSQL(JObject context, Msg_Result msg, string P1, string P2, JH_Auth_UserB.UserInfo UserInfo)
 {
     try
     {
         int       ID = int.Parse(P1);
         BI_DB_Set DS = new BI_DB_SetB().GetEntity(d => d.ID == ID);
         DBFactory db = new BI_DB_SourceB().GetDB(DS.SID.Value);
         DataTable dt = new DataTable();
         dt = db.GetSQL(CommonHelp.Filter(P2));
         List <BI_DB_Dim> ListDIM = new BI_DB_SetB().getCType(dt);
         ListDIM.ForEach(D => D.STID = ID);
         msg.Result  = ListDIM.Where(D => D.Dimension == "1");
         msg.Result1 = ListDIM.Where(D => D.Dimension == "2");
     }
     catch (Exception ex)
     {
         msg.ErrorMsg = ex.Message;
     }
 }
Exemple #5
0
 /// <summary>
 /// 仪表盘页面使用数据集数据
 /// </summary>
 /// <param name="context"></param>
 /// <param name="msg"></param>
 /// <param name="P1"></param>
 /// <param name="P2"></param>
 /// <param name="UserInfo"></param>
 public void GETYBDATASET(JObject context, Msg_Result msg, string P1, string P2, JH_Auth_UserB.UserInfo UserInfo)
 {
     try
     {
         DataTable dt = new BI_DB_SetB().GetDTByCommand("select *  from BI_DB_Set  ORDER BY  ID DESC");
         dt.Columns.Add("wd", Type.GetType("System.Object"));
         dt.Columns.Add("dl", Type.GetType("System.Object"));
         for (int i = 0; i < dt.Rows.Count; i++)
         {
             dt.Rows[i]["wd"] = new BI_DB_SetB().GetDTByCommand("select * from BI_DB_Dim WHERE STID='" + dt.Rows[i]["ID"].ToString() + "' AND Dimension='1' ORDER BY  ColumnName");
             dt.Rows[i]["dl"] = new BI_DB_SetB().GetDTByCommand("select * from BI_DB_Dim WHERE STID='" + dt.Rows[i]["ID"].ToString() + "' AND Dimension='2' ORDER BY  ColumnName");
         }
         msg.Result = dt;
     }
     catch (Exception ex)
     {
         msg.ErrorMsg = ex.Message;
     }
 }
Exemple #6
0
        /// <summary>
        /// 获取仪表盘数据接口
        /// </summary>
        /// <param name="context"></param>
        /// <param name="msg"></param>
        /// <param name="P1"></param>
        /// <param name="P2"></param>
        /// <param name="UserInfo"></param>
        public void GETYBDATA(JObject context, Msg_Result msg, string P1, string P2, JH_Auth_UserB.UserInfo UserInfo)
        {
            try
            {
                JObject wigdata = JObject.Parse(P1);



                string datatype = (string)wigdata["datatype"]; //数据来源类型0:SQL,1:API
                if (datatype == "0")                           //SQL取数据
                {
                    string strWigdetType  = (string)wigdata["component"];
                    string strDateSetName = (string)wigdata["datasetname"];
                    string filtervalsql   = (string)wigdata["filtervalsql"] ?? "";
                    string ordersql       = (string)wigdata["order"] ?? "";


                    string    strPageCount = context.Request("pagecount") ?? "10";
                    string    strquerydata = context.Request("querydata") ?? "";                 //查询条件数据
                    string    isglquery    = (string)wigdata["isglquery"] == "True" ? "Y" : "N"; //关联查询条件数据
                    string    strWhere     = "";
                    BI_DB_Set DS           = new BI_DB_SetB().GetEntities(d => d.Name == strDateSetName).FirstOrDefault();
                    DBFactory db           = new BI_DB_SourceB().GetDB(DS.SID.Value);



                    //默认过滤
                    if (filtervalsql != "")
                    {
                        strWhere = " AND " + filtervalsql;
                    }

                    ///有查询字段数据并且关联查询组件时生成查询条件
                    if (strquerydata != "" && isglquery == "Y")
                    {
                        JArray categories = JArray.Parse(strquerydata);
                        foreach (JObject item in categories)
                        {
                            string FiledName  = (string)item["glfiled"];
                            string ColumnType = (string)item["ColumnType"];
                            string eltype     = (string)item["component"];
                            if (eltype == "qjInput")
                            {
                                string strValue = (string)item["value"];
                                if (!string.IsNullOrEmpty(strValue))
                                {
                                    string strSQL = string.Format(" AND {0} LIKE ('%{1}%')", FiledName.Replace(',', '+'), strValue);
                                    strWhere = strWhere + strSQL;
                                }
                            }
                            if (eltype == "qjSeluser" || eltype == "qjSelbranch")
                            {
                                string strValue = (string)item["value"];
                                if (!string.IsNullOrEmpty(strValue))
                                {
                                    string strSQL = string.Format(" AND {0} IN ('{1}')", FiledName.Replace(',', '+'), strValue.ToFormatLike());
                                    strWhere = strWhere + strSQL;
                                }
                            }
                            if (eltype == "qjMonth" || eltype == "qjDate")
                            {
                                if (item["value"] != null && item["value"].ToString() != "")
                                {
                                    string strval = item["value"].ToString();
                                    string sDate  = strval.Split(',')[0].ToString();
                                    string eDate  = strval.Split(',')[1].ToString();
                                    string strSQL = string.Format(" AND {0} BETWEEN '{1} 00:00' AND '{2} 23:59' ", FiledName, sDate, eDate);
                                    strWhere = strWhere + strSQL;
                                }
                            }
                        }
                    }
                    //if (strWigdetType == "qjTable")
                    //{
                    //    string strTablefiled = "";
                    //    JArray categoriestab = (JArray)wigdata["tabfiledlist"];//查询字段
                    //    foreach (JObject item in categoriestab)
                    //    {
                    //        string FiledName = (string)item["colid"];
                    //        string FiledJSType = (string)item["caltype"] ?? "";

                    //        strTablefiled = strTablefiled + FiledName + ",";

                    //    }

                    //    msg.Result = db.GetYBData(DS, strWD, strDL, strTablefiled, strPageCount, strWhere);

                    //}
                    if (strWigdetType == "qjChartPie" || strWigdetType == "qjKBan" || strWigdetType == "qjTable" || strWigdetType == "qjChartBar")
                    {
                        JArray wdlist = (JArray)wigdata["wdlist"];
                        JArray dllist = (JArray)wigdata["dllist"];
                        string strWD  = "";
                        foreach (JObject item in wdlist)
                        {
                            strWD = strWD + (string)item["colid"] + ",";
                        }
                        strWD = strWD.TrimEnd(',');

                        string strDL = "";
                        foreach (JObject item in dllist)
                        {
                            strDL = strDL + " " + (string)item["caltype"] + "(" + (string)item["colid"] + ") AS " + (string)item["colid"] + ",";
                        }
                        strDL = strDL.TrimEnd(',');



                        msg.Result = db.GetYBData(DS, strWD, strDL, strPageCount, strWhere, ordersql);
                    }
                }
                else//API取数据
                {
                    string strAPIUrl = (string)wigdata["apiurl"] + "&szhlcode=" + UserInfo.User.pccode;
                    string str       = CommonHelp.GetAPIData(strAPIUrl);
                    msg.Result = str;
                }
            }
            catch (Exception ex)
            {
                msg.ErrorMsg = ex.Message;
            }
        }