Пример #1
0
 public ActionResult BranchFollowStat(SearchBranchFollowStatModel searchModel)
 {
     return View("AllFollowFeedbackStat", new SearchBranchFollowStatModel()
     {
         SearchDate = DateTime.Now.Date
     });
 }
Пример #2
0
 public ActionResult BranchFollowStat(SearchBranchFollowStatModel searchModel)
 {
     return View("BranchFollowStat", new SearchBranchFollowStatModel()
     {
         SearchDate = DateTime.Now.Date,
         BranchId = searchModel.BranchId
     });
 }
Пример #3
0
 /// <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));
 }