private void ShowInfo(int Id)
        {
            VAN_OA.Model.ReportForms.TB_SupplierInfo model = supplierSer.GetModel(Id);

            this.txtTime.Text         = model.Time.ToString();
            this.txtSupplierName.Text = model.SupplierName;
            this.txtPhone.Text        = model.Phone;
            this.txtLikeMan.Text      = model.LikeMan;
            this.txtJob.Text          = model.Job;
            this.txtFoxOrEmail.Text   = model.FoxOrEmail;
            this.chkIfSave.Checked    = model.IfSave;
            this.txtQQMsn.Text        = model.QQMsn;

            this.txtSupplierId.Text        = model.SupplierId;
            this.txtSupplierAddress.Text   = model.SupplierAddress;
            this.txtSupplierHttp.Text      = model.SupplierHttp;
            this.txtSupplierShui.Text      = model.SupplierShui;
            this.txtSupplierGong.Text      = model.SupplierGong;
            this.txtSupplierBrandNo.Text   = model.SupplierBrandNo;
            this.txtSupplierBrandName.Text = model.SupplierBrandName;
            txtRemark.Text             = model.Remark;
            txtSupplierSimpleName.Text = model.SupplieSimpeName;
            txtMainRange.Text          = model.MainRange;
            txtZhuJi.Text = model.ZhuJi;
            lblProNo.Text = model.ProNo;
        }
        private void ShowInfo(int Id)
        {
            VAN_OA.Model.ReportForms.TB_SupplierInfo model = supplierSer.GetModel(Id);

            this.txtTime.Text         = model.Time.ToString();
            this.txtSupplierName.Text = model.SupplierName;
            this.txtPhone.Text        = model.Phone;
            this.txtLikeMan.Text      = model.LikeMan;
            this.txtJob.Text          = model.Job;
            this.txtFoxOrEmail.Text   = model.FoxOrEmail;
            this.chkIfSave.Checked    = model.IfSave;
            this.txtQQMsn.Text        = model.QQMsn;

            this.txtSupplierId.Text        = model.SupplierId;
            this.txtSupplierAddress.Text   = model.SupplierAddress;
            this.txtSupplierHttp.Text      = model.SupplierHttp;
            this.txtSupplierShui.Text      = model.SupplierShui;
            this.txtSupplierGong.Text      = model.SupplierGong;
            this.txtSupplierBrandNo.Text   = model.SupplierBrandNo;
            this.txtSupplierBrandName.Text = model.SupplierBrandName;
            txtSupplierSimpleName.Text     = model.SupplieSimpeName;
            txtRemark.Text      = model.Remark;
            lblProNo.Text       = model.ProNo;
            lblCreateTime.Text  = model.CreateTime.ToShortDateString().ToString();
            lblCreateUser.Text  = model.UserName;
            txtMainRange.Text   = model.MainRange;
            txtZhuJi.Text       = model.ZhuJi;
            cbIsUse.Checked     = model.IsUse;
            cbIsSpecial.Checked = model.IsSpecial;
            ddlProvince.Text    = model.Province;
            ddlPeculiarity.Text = model.Peculiarity;
            //if (!string.IsNullOrEmpty(model.Province))
            //{
            Province_CityService proList = new Province_CityService();
            var cityList = proList.CityList(model.Province);

            cityList.Insert(0, "");
            ddlCity.DataSource = cityList;
            ddlCity.DataBind();
            ddlCity.Text = model.City;
            //}
        }