Exemplo n.º 1
0
 public ActionResult DeleteDispatchedPlan(string dispatchBillId, string planId)
 {
     string strErrText;
     DispatchSystem dispatch = new DispatchSystem();
     if (dispatch.DeleteDispatchedPlan(long.Parse(dispatchBillId), long.Parse(planId), LoginAccountId, LoginStaffName, out strErrText))
     {
         return Json(string.Empty);
     }
     else
     {
         return Json(strErrText);
     }
 }