Beispiel #1
0
        public string Retive_Rep_007(Report_param <T> condition)
        {
            var result  = string.Empty;
            var oReport = new cReport();

            try
            {
                var    ds      = oReport.SP_REP_007(condition.Report_criteria);
                string strPath = "~/reports/Rep_007.rpt";
                result = Retive_Rep_Data(condition, strPath, ds);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                oReport.Dispose();
            }
            return(result);
        }