예제 #1
0
        private void GetDetail(HttpContext context, string btn)
        {
            if (btn != "show")
            {
                context.Response.Write("{\"status\":\"0.2\",\"msg\":\"对不起,您没有操作权限!\"}");
                return;
            }
            try
            {
                int ID = RequestHelper.GetInt("ID", 0);

                SCZM.BLL.Base.base_ProcedureMachineNat bll = new SCZM.BLL.Base.base_ProcedureMachineNat();
                DataSet   ds = bll.GetDetail(ID);
                DataTable dt = ds.Tables[0];
                if (dt.Rows.Count == 0)
                {
                    context.Response.Write("{\"status\":\"0\",\"msg\":\"对不起,该条数据已被其他人删除!\"}");
                    return;
                }
                string        rowsStr = Utils.ToJson(dt);
                StringBuilder jsonStr = new StringBuilder();
                jsonStr.Append("{\"status\":\"1\",\"msg\":\"数据获取成功!\",\"info\":" + rowsStr);
                jsonStr.Append("}");
                context.Response.Write(jsonStr);
            }
            catch (Exception e)
            {
                context.Response.Write("{\"status\":\"0\",\"msg\":\"对不起,系统出错:" + Utils.HtmlEncode(e.Message) + "\"}");
            }
        }
예제 #2
0
        private void GetList(HttpContext context, string btn)
        {
            if (btn != "show")
            {
                context.Response.Write("{\"status\":\"0.2\",\"msg\":\"对不起,您没有操作权限!\"}");
                return;
            }
            try
            {
                StringBuilder strWhere = new StringBuilder();

                SCZM.BLL.Base.base_ProcedureMachineNat bll = new SCZM.BLL.Base.base_ProcedureMachineNat();
                DataTable     dt       = bll.GetList(strWhere.ToString()).Tables[0];
                StringBuilder jsonData = new StringBuilder();
                if (dt.Rows.Count > 0)
                {
                    for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        jsonData.Append("{\"ProcedureId\":" + dt.Rows[i]["ProcedureId"].ToString() + ",\"ProcedureName\":\"" + dt.Rows[i]["ProcedureName"].ToString() + "\",\"SupId\":" + dt.Rows[i]["SupId"].ToString() + ",\"ID\":\"" + dt.Rows[i]["ID"].ToString() + "\",\"MachineLevel10\":\"" + dt.Rows[i]["MachineLevel10"].ToString() + "\",\"MachineLevel10\":\"" + dt.Rows[i]["MachineLevel10"].ToString() + "\",\"MachineLevel20\":\"" + dt.Rows[i]["MachineLevel20"].ToString() + "\",\"MachineLevel30\":\"" + dt.Rows[i]["MachineLevel30"].ToString() + "\",\"MachineLevel40\":\"" + dt.Rows[i]["MachineLevel40"].ToString() + "\",\"MachineLevel50\":\"" + dt.Rows[i]["MachineLevel50"].ToString() + "\",\"NumType\":\"" + dt.Rows[i]["NumType"].ToString() + "\"");
                        if (dt.Rows[i]["SupId"].ToString() != "0")
                        {
                            jsonData.Append(",\"_parentId\":" + dt.Rows[i]["SupId"].ToString() + "");
                        }
                        if (dt.Select("SupId=" + dt.Rows[i]["ProcedureId"].ToString()).Length > 0 && dt.Rows[i]["SupId"].ToString() != "0")
                        {
                            jsonData.Append(",\"state\":\"closed\"");
                        }
                        jsonData.Append("},");
                    }
                    jsonData.Remove(jsonData.Length - 1, 1);
                }

                string        rowsStr = Utils.ToJson(dt);
                StringBuilder jsonStr = new StringBuilder();
                jsonStr.Append("{\"status\":\"1\",\"msg\":\"数据获取成功!\",\"info\":{\"total\":" + dt.Rows.Count + ",\"rows\":[" + jsonData.ToString() + "]}}");
                context.Response.Write(jsonStr);
            }
            catch (Exception e)
            {
                context.Response.Write("{\"status\":\"0\",\"msg\":\"对不起,系统出错:" + Utils.HtmlEncode(e.Message) + "\"}");
            }
        }
예제 #3
0
        private void DelData(HttpContext context, string btn)
        {
            if (btn != "btnDel")
            {
                context.Response.Write("{\"status\":\"0.2\",\"msg\":\"对不起,您没有操作权限!\"}");
                return;
            }
            string IDStr = RequestHelper.GetString("IDStr");

            if (IDStr == "")
            {
                context.Response.Write("{\"status\":\"0\",\"msg\":\"请选择需要删除的记录!\"}");
                return;
            }
            Model.System.sys_LoginUser             loginUserModel = BaseWeb.GetLoginInfo();
            SCZM.BLL.Base.base_ProcedureMachineNat bll            = new SCZM.BLL.Base.base_ProcedureMachineNat();
            string operaMessage = "";
            string status       = "0";
            string operaAction  = "";
            string operaMemo    = "";

            try
            {
                if (bll.DeleteList(PageValidate.SafeLongFilter(IDStr, 0), out operaMessage))
                {
                    status      = "1";
                    operaAction = Enums.ActionEnum.Delete.ToString();
                    operaMemo   = "删除奖励核算:" + IDStr;
                    //写入操作日志
                    BaseWeb.AddOpera(loginUserModel, int.Parse(RequestHelper.GetQueryString("MenuId")), operaAction, operaMemo);
                }
                context.Response.Write("{\"status\":\"" + status + "\",\"msg\":\"" + operaMessage + "\"}");
                return;
            }
            catch (Exception e)
            {
                context.Response.Write("{\"status\":\"0\",\"msg\":\"对不起,系统出错:" + Utils.HtmlEncode(e.Message) + "\"}");
            }
        }
예제 #4
0
        private void SaveData(HttpContext context, string btn)
        {
            if (btn != "btnSave")
            {
                context.Response.Write("{\"status\":\"0.2\",\"msg\":\"对不起,您没有操作权限!\"}");
                return;
            }
            string ID             = RequestHelper.GetString("ID");
            string ProcedureId    = RequestHelper.GetString("ProcedureId");
            string MachineLevel10 = RequestHelper.GetString("MachineLevel10");
            string MachineLevel20 = RequestHelper.GetString("MachineLevel20");
            string MachineLevel30 = RequestHelper.GetString("MachineLevel30");
            string MachineLevel40 = RequestHelper.GetString("MachineLevel40");
            string MachineLevel50 = RequestHelper.GetString("MachineLevel50");
            string NumType        = RequestHelper.GetString("NumType");

            Model.System.sys_LoginUser loginUserModel      = BaseWeb.GetLoginInfo();
            SCZM.Model.Base.base_ProcedureMachineNat model = new SCZM.Model.Base.base_ProcedureMachineNat();
            SCZM.BLL.Base.base_ProcedureMachineNat   bll   = new SCZM.BLL.Base.base_ProcedureMachineNat();
            model.ID             = Utils.StrToInt(ID, 0);
            model.ProcedureId    = Utils.StrToInt(ProcedureId, 0);
            model.MachineLevel10 = Utils.StrToDecimal(MachineLevel10, 0);
            model.MachineLevel20 = Utils.StrToDecimal(MachineLevel20, 0);
            model.MachineLevel30 = Utils.StrToDecimal(MachineLevel30, 0);
            model.MachineLevel40 = Utils.StrToDecimal(MachineLevel40, 0);
            model.MachineLevel50 = Utils.StrToDecimal(MachineLevel50, 0);
            model.NumType        = Utils.StrToInt(NumType, 0);
            model.OperaId        = loginUserModel.ID;
            model.OperaName      = loginUserModel.PerName;
            model.OperaTime      = DateTime.Now;

            string operaMessage = "";
            string status       = "0";
            string operaAction  = "";
            string operaMemo    = "";

            try
            {
                if (ID == "")
                {
                    model.ID = bll.Add(model, out operaMessage);
                    if (model.ID > 0)
                    {
                        status      = "1";
                        operaAction = Enums.ActionEnum.Add.ToString();
                        operaMemo   = "新增奖励核算:" + model.ID;
                    }
                }
                else
                {
                    if (bll.Update(model, out operaMessage))
                    {
                        status      = "1";
                        operaAction = Enums.ActionEnum.Edit.ToString();
                        operaMemo   = "修改奖励核算:" + model.ID;
                    }
                }
                if (status == "1")
                {
                    //写入操作日志
                    BaseWeb.AddOpera(loginUserModel, int.Parse(RequestHelper.GetQueryString("MenuId")), operaAction, operaMemo);
                }
                context.Response.Write("{\"status\":\"" + status + "\",\"msg\":\"" + operaMessage + "\"}");
                return;
            }
            catch (Exception e)
            {
                context.Response.Write("{\"status\":\"0\",\"msg\":\"对不起,系统出错:" + Utils.HtmlEncode(e.Message) + "\"}");
                return;
            }
        }