Example #1
0
        public ActionResult MoveDownPriceApproveStep(string id)
        {
            //修改数据
            string     strErrText;
            FlowSystem flow = new FlowSystem();

            if (flow.MoveDownApproveStep(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText))
            {
                return(Json(string.Empty));
            }
            else
            {
                return(Json(strErrText));
            }
        }