Exemple #1
0
 public ActionResult CustomerDisagreeDeliverPlan(string id, string disagreeopinion)
 {
     string strErrText;
     PlanSystem plan = new PlanSystem();
     if (plan.CustomerDisagreeDeliverPlan(long.Parse(id), disagreeopinion, LoginAccountId, LoginStaffName, out strErrText))
     {
         return Json(string.Empty);
     }
     else
     {
         return Json(strErrText);
     }
 }