Пример #1
0
 protected string Zj(int id)
 {
     Model.card_type model = bllct.GetModel(id);
     if (model != null)
     {
         return(model.ct_name);
     }
     return("");
 }
Пример #2
0
 //获得证件类型
 public string GetzjName(int id)
 {
     BLL.card_type   fmtype = new BLL.card_type();
     Model.card_type model  = fmtype.GetModel(Convert.ToInt32(id.ToString()));
     return(model.ct_name);
 }
Пример #3
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);
        }