Ejemplo n.º 1
0
        public ActionResult DeleteGoodsType(string id)
        {
            //删除数据
            string   strErrText;
            DDSystem dd = new DDSystem();

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