示例#1
0
        public ActionResult DetailEvaluation()
        {
            if (string.IsNullOrEmpty((string)Session["DealerCode"]))
            {
                return(RedirectToAction("Login", "Home"));
            }
            DataTable dt         = new DataTable();
            string    dealerCode = Session["DealerCode"].ToString();
            List <UCS_EvaluationVM> Select_PriceOfferNegociation = new List <UCS_EvaluationVM>();

            Select_PriceOfferNegociation = DetailEvaluationMethods.Get_PriceOfferNegociationData(dealerCode);
            ViewBag.Evaluation           = Select_PriceOfferNegociation;
            List <SelectListItem> ddlDFReasonDesc = new List <SelectListItem>();

            ddlDFReasonDesc         = GeneralMethods.GetDataFromSPWithDealerCode("Select_DetailEvaluation_Deal", dealerCode);
            ViewBag.ddlDFReasonDesc = ddlDFReasonDesc;
            return(View());
        }