/// <summary>
        /// 更新支付方式整行
        /// </summary>
        private void Uptr()
        {
            int    id     = Convert.ToInt32(context.Request.QueryString["id"]);
            string txt    = context.Request.QueryString["txt"];
            int    sort   = Convert.ToInt32(context.Request.QueryString["sort"]);
            string remark = context.Request.QueryString["remark"];

            Model.meth_pay modelmp = new Model.meth_pay();
            if (id != 0)
            {
                modelmp.meth_pay_id = id;
            }
            modelmp.meth_sort     = sort;
            modelmp.remark        = remark;
            modelmp.meth_pay_name = txt;
            if (id == 0)
            {
                int rel = bllmp.Add(modelmp);
                if (rel > 0)
                {
                    context.Response.Write(rel);
                    context.Response.End();
                }
            }
            else if (!bllmp.Update(modelmp))
            {
                context.Response.Write("err");
            }
        }
Beispiel #2
0
        /// <summary>
        /// 添加其他资料
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void btnSave_Click(object sender, EventArgs e)
        {
            int Result = 0;

            Model.guest_source  fm     = new Model.guest_source();
            Model.meth_pay      fpay   = new Model.meth_pay();
            Model.card_type     fmtype = new Model.card_type();
            Model.hourse_scheme fmsc   = new Model.hourse_scheme();
            Model.comm_unit     fmcom  = new Model.comm_unit();
            Model.room_feature  fmture = new Model.room_feature();
            if (txt_type.Value == "0")
            {
                fm.gs_name = txt_name.Value;
                Result     = fmgeust.Add(fm);
            }
            if (txt_type.Value == "1")
            {
                fmcom.unit_name = txt_name.Value;
                Result          = fmunit.Add(fmcom);
            }
            if (txt_type.Value == "2")
            {
                fmture.room_feature_name = txt_name.Value;
                Result = fmfea.Add(fmture);
            }
            if (txt_type.Value == "3")
            {
                fpay.meth_pay_name = txt_name.Value;
                Result             = fmmety.Add(fpay);
            }
            if (txt_type.Value == "4")
            {
                fmtype.ct_name = txt_name.Value;
                Result         = fmcdtype.Add(fmtype);
            }
            if (txt_type.Value == "5")
            {
                fmsc.hs_name = txt_name.Value;
                Result       = fmroom.Add(fmsc);
            }
            if (txt_type.Value == "6")
            {
            }
            if (txt_type.Value == "7")
            {
                BLL.customerState   bllcs = new BLL.customerState();
                Model.customerState model = new Model.customerState();
                model.csName = txt_name.Value;
                Result       = bllcs.Add(model);
            }
            if (txt_type.Value == "8")
            {
                BLL.customerType   bllcs = new BLL.customerType();
                Model.customerType model = new Model.customerType();
                model.ctName = txt_name.Value;
                Result       = bllcs.Add(model);
            }
            if (txt_type.Value == "9")
            {
                BLL.cIndustry   bllcs = new BLL.cIndustry();
                Model.cIndustry model = new Model.cIndustry();
                model.csName = txt_name.Value;
                Result       = bllcs.Add(model);
            }
            if (txt_type.Value == "10")
            {
                BLL.cpType   bllcs = new BLL.cpType();
                Model.cpType model = new Model.cpType();
                model.ptName = txt_name.Value;
                Result       = bllcs.Add(model);
            }
            if (txt_type.Value == "11")
            {
                BLL.csysType   bllcs = new BLL.csysType();
                Model.csysType model = new Model.csysType();
                model.stName = txt_name.Value;
                Result       = bllcs.Add(model);
            }
            if (txt_type.Value == "12")
            {
                BLL.cDepartment   bllcs = new BLL.cDepartment();
                Model.cDepartment model = new Model.cDepartment();
                model.cDName = txt_name.Value;
                Result       = bllcs.Add(model);
            }
            if (txt_type.Value == "13")
            {
                BLL.cPost   bllcs = new BLL.cPost();
                Model.cPost model = new Model.cPost();
                model.cpName = txt_name.Value;
                Result       = bllcs.Add(model);
            }
            if (txt_type.Value == "14")
            {
                BLL.cCall   bllcs = new BLL.cCall();
                Model.cCall model = new Model.cCall();
                model.callName = txt_name.Value;
                Result         = bllcs.Add(model);
            }
            if (Result > 0)
            {
                txt_name.Value = "";
                ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "click", "alert('保存成功');", true);
            }
            else
            {
                ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "click", "alert('保存失败');", true);
            }
            btnSercher_Click(null, null);
        }