public ActionResult BranchFollowStat(SearchBranchFollowStatModel searchModel) { return View("AllFollowFeedbackStat", new SearchBranchFollowStatModel() { SearchDate = DateTime.Now.Date }); }
public ActionResult BranchFollowStat(SearchBranchFollowStatModel searchModel) { return View("BranchFollowStat", new SearchBranchFollowStatModel() { SearchDate = DateTime.Now.Date, BranchId = searchModel.BranchId }); }
/// <summary> /// 作者:Kylin /// 时间:2015.1.21 /// 描述:FU评分统计 /// </summary> /// <param name="searchModel"></param> /// <returns></returns> public ActionResult SearchBranchFollowStat(SearchBranchFollowStatModel searchModel) { searchModel.SearchDate = searchModel.SearchDate ?? new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1); return PartialView("_AllFollowFeedbackStatList", ReportBLL.GetAreaFollowFeedbackStat(searchModel.BranchId, searchModel.SearchDate.Value)); }