Exemplo n.º 1
0
 public ActionResult Create(MdoelOrgCompanyCreate model, FormCollection collection)
 {
     try
     {
         model.Save();
         return Content(WebTools.ScriptCloseEmbeddedFrameDialog(DialogOption.GetDefaultInstance()));
     }
     catch
     {
         //操作失败!
         Error = CNDreams.Resources.Properties.Resources.M00002E;
         model.RetriveData();
         return View(model);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// 创建 修改 查看 企业
 /// </summary>
 public ActionResult Create(MdoelOrgCompanyCreate model)
 {
     ViewBag.PageState = model.PageState;
     model.RetriveData();
     return View(model);
 }
Exemplo n.º 3
0
        /// <summary>
        /// 验证税务登记证号是否已经存在
        /// </summary>
        public ActionResult RemoteCheckTaxRegisterNo(MdoelOrgCompanyCreate model)
        {
            if (!string.IsNullOrEmpty(Request.Params["UTOrgCompanyEntity.IsNeedTaxRegisterNoValidate"]) && Request.Params["UTOrgCompanyEntity.IsNeedTaxRegisterNoValidate"] == "false")
                return Json(true, JsonRequestBehavior.AllowGet);

            if (model.UTOrgCompanyEntity.ID != Guid.Empty)
                return bizUTOrgCompany.CountBy(x => x.ID != model.UTOrgCompanyEntity.ID && x.TaxRegNO == model.UTOrgCompanyEntity.TaxRegNO) > 0 ? Json(false, JsonRequestBehavior.AllowGet) : Json(true, JsonRequestBehavior.AllowGet);
            else
                return bizUTOrgCompany.CountBy(x => x.TaxRegNO == model.UTOrgCompanyEntity.TaxRegNO) > 0 ? Json(false, JsonRequestBehavior.AllowGet) : Json(true, JsonRequestBehavior.AllowGet);
        }