Example #1
0
        public static string GetReportRelationName(string reportCode)
        {
            DBManagerFactory dbManagerFactory = new DBManagerFactory();
            IBasketFunctions ibasketFunctions = dbManagerFactory.GetDBManager();
            DataTable        dtReportInfo     = ibasketFunctions.GetReportRelationName(reportCode);
            string           sqlFrom          = string.Empty;

            if (dtReportInfo.Rows.Count > 0)
            {
                DataRow reportInfoRow = dtReportInfo.Rows[0];
                sqlFrom = reportInfoRow["sql_from"].ToString();
            }

            dtReportInfo.Dispose();

            return(sqlFrom);
        }
Example #2
0
        private static string PrepareJsonForNormalGrid(IBasketFunctions IBasket, string SQL_FROM, string SQL_WHERE, List <bool> partExistList)
        {
            try
            {
                DataTable     dt         = IBasket.GetReportData(SQL_FROM, SQL_WHERE);
                ArrayList     fieldList  = IBasket.GetFieldList(dt);
                StringBuilder sb         = new StringBuilder();
                int           rowCounter = 0;
                foreach (DataRow dr in dt.Rows)
                {
                    int counter = 0;
                    sb.Append("{");
                    foreach (string colName in fieldList)
                    {
                        if (counter != 0)
                        {
                            sb.AppendFormat(",{0}:'{1}'", colName, GetJSONFormat(dr[colName].ToString()));
                        }
                        else
                        {
                            sb.AppendFormat("{0}:'{1}'", colName, GetJSONFormat(dr[colName].ToString()));
                        }

                        counter++;
                    }

                    if (partExistList[rowCounter])
                    {
                        sb.AppendFormat(",parts :'exists'");
                    }

                    rowCounter++;
                    sb.Append("},");
                }

                return(sb.ToString().TrimEnd(new char[] { ',' }));
            }
            catch (Exception ex)
            {
                LogWriter.WriteLog(ex.Message + "    " + ex.StackTrace);
                throw new Exception(ex.Message);
            }

            return(string.Empty);
        }
Example #3
0
        public static string GetReportRecords(string REPORT_CODE, string SQL_FROM, string SQL_WHERE, List <bool> partExistList)
        {
            string reportData = string.Empty;

            try
            {
                DBManagerFactory dbManagerFactory = new DBManagerFactory();
                IBasketFunctions iBkFunctions     = dbManagerFactory.GetDBManager(REPORT_CODE);
                StringBuilder    stringBuilder    = new StringBuilder();
                stringBuilder.Append("[");

                string jsonData = PrepareJsonForNormalGrid(iBkFunctions, SQL_FROM, SQL_WHERE, partExistList);
                stringBuilder.Append(jsonData);
                stringBuilder.Append("]");
                reportData = stringBuilder.ToString();
            }
            catch (Exception ex)
            {
                LogWriter.WriteLog(ex.Message);
                reportData = ex.StackTrace;
            }

            return(reportData);
        }