Beispiel #1
0
        //  /System/CreateExcelToClient/
        public FileStreamResult CreateExcelToClient()
        {
            int page = 0, rows = 0;
            bool isactiveIsNull=true;
            string systemName = Request.QueryString["systemName"] ?? "";
            string description = Request.QueryString["description"] ?? "";
            bool isactive=true;
            if(Request.QueryString["isactive"]!=null && Request.QueryString["isactive"]!="")
            {
                isactiveIsNull=false;
                isactive = bool.Parse(Request.QueryString["isactive"]);
            }
            THOK.Authority.DbModel.System system = new THOK.Authority.DbModel.System();
            system.SystemName = systemName;
            system.Description = description;
            system.Status = isactive;

            ExportParam ep = new ExportParam();
            ep.DT1 = SystemService.GetSystem(page, rows, system,isactiveIsNull);
            ep.HeadTitle1 = "系统信息";
            return PrintService.Print(ep);
        }
Beispiel #2
0
        //  /System/CreateExcelToClient/
        public FileStreamResult CreateExcelToClient()
        {
            int    page = 0, rows = 0;
            bool   isactiveIsNull = true;
            string systemName     = Request.QueryString["systemName"] ?? "";
            string description    = Request.QueryString["description"] ?? "";
            bool   isactive       = true;

            if (Request.QueryString["isactive"] != null && Request.QueryString["isactive"] != "")
            {
                isactiveIsNull = false;
                isactive       = bool.Parse(Request.QueryString["isactive"]);
            }
            THOK.Authority.DbModel.System system = new THOK.Authority.DbModel.System();
            system.SystemName  = systemName;
            system.Description = description;
            system.Status      = isactive;

            ExportParam ep = new ExportParam();

            ep.DT1        = SystemService.GetSystem(page, rows, system, isactiveIsNull);
            ep.HeadTitle1 = "系统信息";
            return(PrintService.Print(ep));
        }