/** * @param map * @return */ @RequestMapping( value = "/findTransRrcordByMemberAndTypeForWeek", method = {RequestMethod.GET, RequestMethod.POST}) public @ResponseBody String findTransRrcordByMemberAndTypeForWeek( Page page, Map<String, Object> map, HttpServletRequest request) { String memberNo = request.getParameter("memberNo"); // 获取大师信息 BizMember member = memberService.getBizMemberByMemberNo(memberNo); if (null == member) { return AjaxReturnInfo.returnErr("该大师不存在"); } List<BizTransRecordVO> recordVOS = transRecordService.findTransRrcordByMemberAndTypeAndStatusForWeek( page, member.getId(), "S"); List<Map<String, String>> temp = new ArrayList<Map<String, String>>(); double f = (100.0); for (BizTransRecordVO recordVO : recordVOS) { Map<String, String> tempMap = new HashMap<String, String>(); tempMap.put("id", recordVO.getId() + ""); tempMap.put( "investTypeStr", InvestDirectionEnum.getInvestDirectionEnum(recordVO.getInvestType()).getName()); tempMap.put( "origionValueWYuan", getRealNumWithTwo(recordVO.getOrigionValue() / f + "") + "元"); tempMap.put("currValueWYuan", getRealNumWithTwo(recordVO.getCurrValue() / f + "") + "元"); tempMap.put("importDate", recordVO.getImportDate()); temp.add(tempMap); } return PageUtils.toJsonString(page, temp); }
@RequestMapping( value = "/showLast", method = {RequestMethod.GET, RequestMethod.POST}) public String showLast(Page page, String keywords, Map<String, Object> map) { List<BizTransRecordVO> records = transRecordService.findTransRecordToReview(page); List<Map<String, String>> recordList = new ArrayList<Map<String, String>>(); if (!CollectionUtils.isEmpty(records)) { Map<Long, BizMember> cacheMap = new HashMap<Long, BizMember>(); for (BizTransRecordVO vo : records) { Map<String, String> tempMap = new HashMap<String, String>(); String name = "该用户已经被删除!"; String memberNo = "无"; String isVal = ""; if (!StringUtils.isBlank(vo.getMemberId())) { Long memberId = Long.parseLong(vo.getMemberId()); BizMember member = cacheMap.get(memberId) == null ? memberService.get(memberId) : cacheMap.get(memberId); name = member.getName(); memberNo = member.getMemberNo(); BizInvestion investion = investionService.findByMemberIdAndInvestDirection( Long.parseLong(vo.getMemberId()), vo.getInvestType()); if (null == investion) { isVal = "无"; } else { isVal = StringUtils.equals(investion.getIsValidated(), "1") ? "赛" : "无"; } } tempMap.put("id", vo.getId() + ""); tempMap.put( "investTypeStr", InvestDirectionEnum.getInvestDirectionEnum(vo.getInvestType()).getName()); tempMap.put("name", name); tempMap.put("memberNo", memberNo); tempMap.put("isVal", isVal); tempMap.put("origionValue", getRealString(vo.getOrigionValue()) + ""); tempMap.put("currValue", getRealString(vo.getCurrValue()) + ""); tempMap.put("lastDayValue", getRealString(vo.getLastDayValue()) + ""); tempMap.put("fee", getRealString(vo.getFee()) + ""); tempMap.put("gainsAndLosses", getRealString(vo.getGainsAndLosses()) + ""); tempMap.put("currIncome", getRealString(vo.getCurrIncome()) + ""); tempMap.put("currOutcome", getRealString(vo.getCurrOutcome()) + ""); recordList.add(tempMap); } } map.put("page", page); map.put("records", recordList); map.put("keywords", keywords); return SHOW_LAST; }
/** * 初期资金 * * @param type * @return */ @RequestMapping( value = "/findFristTransRecord", method = {RequestMethod.GET, RequestMethod.POST}) public @ResponseBody String findFristTransRecord(@RequestParam String type) { BizMember member = (BizMember) HttpReceiver.getHttpSession().getAttribute("member"); if (null == member) { AjaxReturnInfo.returnErr("请您先首页登录!"); } long memberId = member.getId(); Map<String, Object> paramMap = new HashMap<String, Object>(); BizTransRecordVO transRecord = transRecordService.findFirstTransRecord(memberId, type); if (transRecord != null) { paramMap.put( BizTransRecordConstant.EXISTENCE_OF_FIRST, BizTransRecordConstant.EXIST_OF_FIRST); paramMap.put( BizTransRecordConstant.ORIGION_VALUES, transRecord.getOrigionValue() == null ? 0.0 : transRecord.getOrigionValue() / 100.0); } else { paramMap.put( BizTransRecordConstant.EXISTENCE_OF_FIRST, BizTransRecordConstant.NOT_EXIST_OF_FIRST); } return AjaxReturnInfo.returnSuc(paramMap); }