|
|
@@ -987,6 +987,8 @@ public class GoodsController {
|
|
|
@RequestMapping(value = "/kindProductsCount/export", method = RequestMethod.GET)
|
|
|
public ModelAndView exportKindProductsCount(@DateTimeFormat(pattern = "yyyy-MM-dd") Date startTime, @DateTimeFormat(pattern = "yyyy-MM-dd") Date endTime, HttpServletRequest request,
|
|
|
@RequestParam(required = false, value = "isAjax", defaultValue = "false") Boolean isAjax) {
|
|
|
+ long l = System.currentTimeMillis();
|
|
|
+ System.out.println("");
|
|
|
HttpSession session = request.getSession();
|
|
|
ModelAndView modelAndView = AjaxUtil.checkIsAjax(session, isAjax);
|
|
|
if (!modelAndView.isEmpty()) {
|
|
|
@@ -1006,6 +1008,8 @@ public class GoodsController {
|
|
|
modelAndView.addObject("title", "品类产品数列表");
|
|
|
modelAndView.setView(new JxlsExcelView("classpath:jxls-tpl/trade/kindHierarchical", "优软商城--品类产品数列表"));
|
|
|
session.setAttribute("loading", false);
|
|
|
- return modelAndView;
|
|
|
+ long l1 = System.currentTimeMillis();
|
|
|
+ System.out.println("消耗的时间是多少?" + (l1 - l));
|
|
|
+ return modelAndView;
|
|
|
}
|
|
|
}
|