Ejemplo n.º 1
0
 public ActionResult SyntheticalSearchModifyData(SyntheticalSearchModifyViewModel model)
 {
     if (ModelState.IsValid)
     {
         //保存数据
         string strErrText;
         StatisticsSystem stat = new StatisticsSystem();
         if (stat.SyntheticalSearchModifyData(model.PlanId, model.ShipmentNo, model.DeliveryNo, model.PayerId, model.PayerName, model.ContractId, model.OriginalContractNo, LoginAccountId, LoginStaffName, out strErrText))
         {
             return Json(string.Empty);
         }
         else
         {
             return Json(strErrText);
         }
     }
     return View(model);
 }