Exemple #1
0
        public ActionResult CustomerAgreeDeliverPlan(string id)
        {
            string strErrText;
            PlanSystem plan = new PlanSystem();
            bool bSuccess = plan.CustomerAgreeDeliverPlan(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText);

            var ret = new
            {
                Success = bSuccess,
                Message = strErrText
            };
            return Json(ret);
        }