Beispiel #1
0
        public ActionResult MyCustomPostBack(string type, JArray gridFields, JObject typeParams, int gridIndex, int gridPageSize)
        {
            var    Grid1     = UIHelper.Grid("Grid1");
            string sql       = string.Empty;
            var    ttbSearch = UIHelper.TwinTriggerBox("ttbSearchMessage");

            if (type == "trigger1")
            {
                ttbSearch.Text(String.Empty);
                ttbSearch.ShowTrigger1(false);
            }
            else if (type == "trigger2")
            {
                ttbSearch.ShowTrigger1(true);
                var triggerValue = typeParams.Value <string>("triggerValue");
                sql = " and FName like '%" + triggerValue + "%'";
            }
            sql = sql + getPowerConst("flow");
            Hashtable table = BASE_LIULIANGDal.SearchLL(gridIndex, gridPageSize, "a.FCreateDate", "DESC", sql);

            Grid1.DataSource(table["data"], gridFields);
            Grid1.RecordCount(Int32.Parse(table["total"].ToString()));

            return(UIHelper.Result());
        }
Beispiel #2
0
        public ActionResult Grid1_Delete(JArray selectedRows, JArray Grid1_fields, int gridIndex, int gridPageSize)
        {
            string values = "";

            for (int i = 0; i < selectedRows.Count; i++)
            {
                if (i != selectedRows.Count - 1)
                {
                    values += "'" + selectedRows[i] + "',";
                }
                else
                {
                    values += "'" + selectedRows[i] + "'";
                }
            }

            Hashtable hasData = new Hashtable();

            hasData["id"]        = values;
            hasData["FIsDelete"] = 1;
            hasData["FDelDate"]  = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ssss"));
            hasData["FDelUser"]  = GetIdentityName();
            BASE_LIULIANGDal.DeleteList(hasData);
            Bll.Map_MarkerBll.DeleteMarker(3, values);
            UpdateGrid(Grid1_fields, gridIndex, gridPageSize);
            return(UIHelper.Result());
        }
        /// <summary>
        /// 流量历史
        /// </summary>
        public void SearchLL_HisReport()
        {
            string strwhere = "";
            string _Name    = Request["Name"];
            string Start    = Request["StartDate"]; //开始日期
            string End      = Request["EndDate"];   //结束日期
            string _ID      = Request["ID"];
            int    year     = Convert.ToDateTime(Start).Year;

            if (_ID != "" && _ID != null)
            {
                strwhere = strwhere + " and a.id='" + _ID + "'";
            }
            if (_Name != "" && _Name != null)
            {
                strwhere = strwhere + " and (a.FName like '%" + _Name + "%' or a.FDTUCode like '%" + _Name + "%')";
            }
            strwhere = strwhere + " and b.TempTime between '" + Start + "' and '" + End + "'";
            strwhere = strwhere + getPowerConst("flow");

            int       pageIndex = Convert.ToInt32(Request["pageIndex"]);
            int       pageSize  = Convert.ToInt32(Request["pageSize"]);
            Hashtable result    = BASE_LIULIANGDal.SearchLL_HisReport(pageIndex, pageSize, "b.BASEID,TempTime", "desc", strwhere, year);
            string    json      = PluSoft.Utils.JSON.Encode(result);

            Response.Write(json);
        }
        /// <summary>
        /// 流量
        /// </summary>
        public void SearchLL_Report()
        {
            string strwhere = "";
            string _Name    = Request["Name"];
            string _State   = Request["State"];
            string _ID      = Request["ID"];

            if (_Name != "" && _Name != null)
            {
                strwhere = strwhere + " and (a.FName like '%" + _Name + "%' or a.FDTUCode like '%" + _Name + "%')";
            }

            if (_ID != "" && _ID != null)
            {
                strwhere = strwhere + " and a.id='" + _ID + "'";
            }

            switch (_State)
            {
            case "0": strwhere = strwhere + " and b.FOnLine='" + _State + "'"; break;                             //离线

            case "1": strwhere = strwhere + " and b.FOnLine='" + _State + "'"; break;                             //在线

            case "2": strwhere = strwhere + @" and isnull((select top 1 1 from Alarm_Timely _c 
                                              where _c.BaseID=a.id and FMarkerType=3 and FStatus=1),0)=1"; break; //报警
            }
            strwhere = strwhere + getPowerConst("flow");

            int       pageIndex = Convert.ToInt32(Request["pageIndex"]);
            int       pageSize  = Convert.ToInt32(Request["pageSize"]);
            Hashtable result    = BASE_LIULIANGDal.SearchLL_Report(pageIndex, pageSize, "FCreateDate", "desc", strwhere);
            string    json      = PluSoft.Utils.JSON.Encode(result);

            Response.Write(json);
        }
Beispiel #5
0
        private void UpdateGrid(JArray Grid1_fields, int gridIndex, int gridPageSize)
        {
            var Grid1 = UIHelper.Grid("Grid1");

            Hashtable table = BASE_LIULIANGDal.SearchLL(gridIndex, gridPageSize, "a.FCreateDate", "DESC", getPowerConst("flow"));

            Grid1.DataSource(table["data"], Grid1_fields);
            Grid1.RecordCount(Int32.Parse(table["total"].ToString()));
        }
Beispiel #6
0
        public ActionResult Index()
        {
            ViewBag.CoreFlowNew    = CheckPower("CoreFlowNew");
            ViewBag.CoreFlowDelete = CheckPower("CoreFlowDelete");
            ViewBag.CoreFlowEdit   = CheckPower("CoreFlowEdit");
            Hashtable table = BASE_LIULIANGDal.SearchLL(0, 20, "a.FCreateDate", "DESC", getPowerConst("flow"));

            ViewBag.Grid1DataSource  = table["data"];
            ViewBag.Grid1RecordCount = Int32.Parse(table["total"].ToString());
            return(View());
        }
        //导出流量历史
        public void ReportLL_His()
        {
            string strwhere = "";
            string _Name    = Request["Name"];
            string Start    = Request["StartDate"]; //开始日期
            string End      = Request["EndDate"];   //结束日期
            string _ID      = Request["ID"];
            int    year     = Convert.ToDateTime(Start).Year;

            if (_ID != "" && _ID != null)
            {
                strwhere = strwhere + " and a.id='" + _ID + "'";
            }
            if (_Name != "" && _Name != null)
            {
                strwhere = strwhere + " and (a.FName like '%" + _Name + "%' or a.FDTUCode like '%" + _Name + "%')";
            }
            strwhere = strwhere + " and b.TempTime between '" + Start + "' and '" + End + "'";
            strwhere = strwhere + getPowerConst("flow");
            DataTable dtresult = BASE_LIULIANGDal.SearchLL_HisReport(strwhere, year);

            try
            {
                List <LL_runLog> YaLiLog = ModelConvertHelper <LL_runLog> .ConvertToModel(dtresult).ToList();

                var excelExport = _excelExport.CreateWorkbook();
                excelExport.AddSheet(YaLiLog, "");
                string path = System.Web.HttpContext.Current.Server.MapPath("~/DownLoad");
                if (Directory.Exists(path))
                {
                    Directory.Delete(path, true);
                }
                if (!Directory.Exists(path))
                {
                    Directory.CreateDirectory(path);
                }
                string    pdfname  = "/流量日志" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".xlsx";
                string    pathFile = excelExport.SaveFile(path + pdfname);
                Hashtable result   = new Hashtable();
                result["msg"] = "ok";
                result["Url"] = "/DownLoad" + pdfname;
                string json = PluSoft.Utils.JSON.Encode(result);
                Response.Write(json);
            }
            catch (Exception)
            {
                Hashtable result = new Hashtable();
                result["msg"] = "error";
                string json = PluSoft.Utils.JSON.Encode(result);
                Response.Write(json);
            }
        }
Beispiel #8
0
        public ActionResult Grid1_PageIndexChanged(JArray Grid1_fields, int Grid1_pageIndex, int gridPageSize, string searchMessage)
        {
            var Grid1 = UIHelper.Grid("Grid1");

            string sql = string.Empty;

            if (!searchMessage.Equals(""))
            {
                sql = sql + " and FName like '%" + searchMessage + "%'";
            }
            sql = sql + getPowerConst("flow");
            Hashtable table = BASE_LIULIANGDal.SearchLL(Grid1_pageIndex, gridPageSize, "a.FCreateDate", "DESC", sql);

            Grid1.DataSource(table["data"], Grid1_fields);
            Grid1.RecordCount(Int32.Parse(table["total"].ToString()));

            return(UIHelper.Result());
        }
Beispiel #9
0
        public ActionResult btnBasicEdit_Click()
        {
            try
            {
                if (ModelState.IsValid)
                {
                    if (BASE_LIULIANGDal.Exist(" and FDTUCode='" + Request["tbSelectedDTU"] + "' and FDTUCode<>'" + Request["tbOldDTU"] + "'").Rows.Count == 0)
                    {
                        int       FCustomerID = Convert.ToInt32(Request["tbxCustomerID"]);
                        Hashtable hasData     = new Hashtable();
                        hasData["id"]                 = Request["tbxID"];
                        hasData["FDTUCode"]           = Request["tbSelectedDTU"];
                        hasData["FName"]              = Request["tbxName"];
                        hasData["FCustomerID"]        = FCustomerID;
                        hasData["FLngLat"]            = Request["tbxLngLat"];
                        hasData["FMapAddress"]        = Request["tbSelectedAddress"];
                        hasData["FWell"]              = Request["hidFWell"];
                        hasData["FPipeline"]          = Request["hidFPipeline"];
                        hasData["FEnterValve"]        = Request["hidFEnterValve"];
                        hasData["FExitValve"]         = Request["hidFExitValve"];
                        hasData["FBrand"]             = Request["tbxFBrand"];
                        hasData["FMaterial"]          = Request["ddlFMaterial"];
                        hasData["FCaliber"]           = Request["ddlFCaliber"];
                        hasData["FEQuiType"]          = Request["ddlFEQuiType"];
                        hasData["FInstallMode"]       = Request["ddlFInstallMode"];
                        hasData["FCommunicationMode"] = Request["ddlFCommunicationMode"];
                        hasData["FReadMeterMode"]     = Request["ddlFReadMeterMode"];
                        hasData["FBuriedMode"]        = Request["ddlFBuriedMode"];
                        hasData["FEQuiState"]         = Request["ddlFEQuiState"];
                        hasData["FGroundHeigh"]       = Request["tbxFGroundHeigh"];
                        hasData["FNote"]              = Request["tbxFNote"];
                        hasData["FBYCycle"]           = Request["tbxFBYCycle"];
                        hasData["FGHCycle"]           = Request["tbxFGHCycle"];
                        hasData["FSchemeID"]          = Request["tbxFSchemeID"];
                        hasData["FUpdUser"]           = GetIdentityName();
                        hasData["FUpdDate"]           = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
                        BASE_LIULIANGDal.Update(hasData);


                        Hashtable hasData1 = new Hashtable();
                        hasData1["FDTUCode"] = Request["tbSelectedDTU"];
                        hasData1["BASEID"]   = Request["tbxID"];
                        DATA_LIULIANGDal.Update(hasData1);

                        if (FCustomerID > 0)
                        {
                            if (Request["tbxFMarkerID"].ToString() != "")
                            {
                                string[]  lnglat = Request["tbxLngLat"].Split(',');
                                Hashtable has1   = new Hashtable();
                                has1["ID"]         = Request["tbxFMarkerID"];
                                has1["FName"]      = Request["tbxName"];
                                has1["FMapTempID"] = Request["tbxFMapTempID"];
                                Bll.Map_MarkerBll.UpdateMarker(has1);
                                Hashtable has2 = new Hashtable();
                                has2["FMarkerID"] = Request["tbxFMarkerID"];
                                has2["FMarker"]   = "[{\"lng\":" + lnglat[0] + ",\"lat\":" + lnglat[1] + "}]";
                                Bll.Map_MarkerBll.UpdateMarkerProperty(has2);
                            }
                        }

                        ShowNotify("成功!");
                        // 关闭本窗体(触发窗体的关闭事件)
                        PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
                        return(UIHelper.Result());
                    }
                    else
                    {
                        ShowNotify("流量编号重复,请更换!");
                    }
                }
            }
            catch
            {
                ShowNotify("失败!");
            }
            return(UIHelper.Result());
        }
Beispiel #10
0
        public ActionResult btnBasicCreate_Click()
        {
            try
            {
                if (ModelState.IsValid)
                {
                    if (BASE_LIULIANGDal.Exist(" and FDTUCode='" + Request["tbSelectedDTU"] + "'").Rows.Count == 0)
                    {
                        string    guid        = Guid.NewGuid().ToString();
                        string    flowid      = Guid.NewGuid().ToString();
                        int       FCustomerID = Convert.ToInt32(Request["tbxCustomerID"]);
                        Hashtable hasData     = new Hashtable();
                        hasData["id"]                 = flowid;
                        hasData["FDTUCode"]           = Request["tbSelectedDTU"];
                        hasData["FName"]              = Request["tbxName"];
                        hasData["FCustomerID"]        = FCustomerID;
                        hasData["FLngLat"]            = Request["tbxLngLat"];
                        hasData["FMapAddress"]        = Request["tbSelectedAddress"];
                        hasData["FWell"]              = Request["hidFWell"];
                        hasData["FPipeline"]          = Request["hidFPipeline"];
                        hasData["FEnterValve"]        = Request["hidFEnterValve"];
                        hasData["FExitValve"]         = Request["hidFExitValve"];
                        hasData["FBrand"]             = Request["tbxFBrand"];
                        hasData["FMaterial"]          = Request["ddlFMaterial"];
                        hasData["FCaliber"]           = Request["ddlFCaliber"];
                        hasData["FEQuiType"]          = Request["ddlFEQuiType"];
                        hasData["FInstallMode"]       = Request["ddlFInstallMode"];
                        hasData["FCommunicationMode"] = Request["ddlFCommunicationMode"];
                        hasData["FReadMeterMode"]     = Request["ddlFReadMeterMode"];
                        hasData["FBuriedMode"]        = Request["ddlFBuriedMode"];
                        hasData["FEQuiState"]         = Request["ddlFEQuiState"];
                        hasData["FGroundHeigh"]       = Request["tbxFGroundHeigh"];
                        hasData["FBYCycle"]           = Request["tbxFBYCycle"];
                        hasData["FGHCycle"]           = Request["tbxFGHCycle"];
                        hasData["FNote"]              = Request["tbxFNote"];
                        hasData["FSchemeID"]          = Request["tbxFSchemeID"];
                        hasData["FCreateUser"]        = GetIdentityName();
                        hasData["FIsDelete"]          = 0;
                        hasData["FMarkerID"]          = guid;
                        BASE_LIULIANGDal.Insert(hasData);

                        Hashtable hasData1 = new Hashtable();
                        hasData1["id"]       = Guid.NewGuid();
                        hasData1["FDTUCode"] = Request["tbSelectedDTU"];
                        hasData1["BASEID"]   = flowid;
                        DATA_LIULIANGDal.Insert(hasData1);

                        if (FCustomerID > 0)
                        {
                            string[]  lnglat = Request["tbxLngLat"].Split(',');
                            Hashtable has1   = new Hashtable();
                            Hashtable has2   = new Hashtable();
                            has1["ID"]         = guid;
                            has1["FName"]      = Request["tbxName"];
                            has1["FMapTempID"] = Request["tbxFMapTempID"];
                            has2["FMarkerID"]  = guid;
                            int maxid = Convert.ToInt32(Dal.DBUtil.SelectDataTable("select isnull(max(ID),0) as maxId from Map_MarkerProperty").Rows[0]["maxId"].ToString()) + 1;
                            has2["FAliasName"] = "Marker" + maxid.ToString();
                            has2["FType"]      = "3";
                            has2["FMarker"]    = "[{\"lng\":" + lnglat[0] + ",\"lat\":" + lnglat[1] + "}]";
                            has2["FMID"]       = flowid;
                            Bll.Map_MarkerBll.InsertMarker(has1);
                            Bll.Map_MarkerBll.InsertMarkerProperty(has2);
                        }

                        ShowNotify("成功!");
                        string url = Url.Action("Flow_Diagram", "Flow", new { type = "edit", flowId = flowid });
                        // 关闭本窗体(触发窗体的关闭事件)'
                        PageContext.RegisterStartupScript("parent.updateLabelResult('" + url + "');");
                    }
                    else
                    {
                        ShowNotify("流量编号重复,请更换!");
                    }
                }
            }
            catch
            {
                ShowNotify("失败!");
            }
            return(UIHelper.Result());
        }