예제 #1
0
        public ActionResult OpenQuotation(string code, string password)
        {
            var svQuo = new QuotationService();

            if (CheckIsAdmin())
            {
                if (password == "12344")
                {
                    svQuo.CloseBidProductByCode(code, false);
                }
            }
            return(Json(new { result = svQuo.IsResult }, JsonRequestBehavior.AllowGet));
        }