@RequestMapping(value = "/update/{id}", method = RequestMethod.GET) public String preUpdate(@PathVariable Long id, Map<String, Object> map) { BizTransRecord transRecord = transRecordService.get(id); if (null == transRecord) { return UPDATE; } map.put("id", transRecord.getId() + ""); map.put("investType", transRecord.getInvestType()); map.put( "investTypeName", InvestDirectionEnum.getInvestDirectionEnum(transRecord.getInvestType()).getName()); map.put("fee", getRealValue(transRecord.getFee())); map.put("gainsAndLosses", getRealValue(transRecord.getGainsAndLosses())); map.put("currIncome", getRealValue(transRecord.getCurrIncome())); map.put("currOutcome", getRealValue(transRecord.getCurrOutcome())); map.put("currValue", getRealValue(transRecord.getCurrValue())); map.put("lastDayValue", getRealValue(transRecord.getLastDayValue())); map.put("totalGainsAndLosses", transRecord.getTotalGainsAndLosses()); map.put("origionValue", getRealValue(transRecord.getOrigionValue())); map.put("status", transRecord.getStatus()); map.put("importDate", transRecord.getImportDate()); BizReviewLog log = reviewLogService.getBizReviewLog(transRecord.getId(), "TRANS_RECORD"); if (null != log) { map.put("failReason", log.getComment()); } return UPDATE; }
@RequestMapping( value = "/showReviewed/{id}", method = {RequestMethod.GET, RequestMethod.POST}) public String showReviewed(@PathVariable Long id, Page page, Map<String, Object> map) { BizTransRecord transRecord = transRecordService.get(id); if (null != transRecord) { long memberId = transRecord.getMemberId(); List<BizTransRecord> list = transRecordService.findTransRrcordByMemberAndTypeAndStatus( page, memberId, transRecord.getInvestType(), TransStatusEnum.S.getValue()); List<Map<String, String>> temp = new ArrayList<Map<String, String>>(); double divi = 1000000.0; for (BizTransRecord recordVO : list) { Map<String, String> tempMap = new HashMap<String, String>(); tempMap.put("id", recordVO.getId() + ""); tempMap.put( "investTypeStr", InvestDirectionEnum.getInvestDirectionEnum(recordVO.getInvestType()).getName()); tempMap.put("importDate", recordVO.getImportDate()); tempMap.put( "currIncomeWYuan", (null == recordVO.getCurrIncome() ? 0 : recordVO.getCurrIncome()) / divi + ""); tempMap.put( "currOutcomeWYuan", (null == recordVO.getCurrOutcome() ? 0 : recordVO.getCurrOutcome()) / divi + ""); tempMap.put("currValueWYuan", recordVO.getCurrValue() / divi + ""); tempMap.put( "lastDayValueWYuan", (null == recordVO.getLastDayValue() ? 0 : recordVO.getLastDayValue()) / divi + ""); tempMap.put("status", recordVO.getStatus()); String statusName = ""; if (StringUtils.equals(recordVO.getStatus(), "I")) { statusName = "审核中"; } else if (StringUtils.equals(recordVO.getStatus(), "S")) { statusName = "审核通过"; } else if (StringUtils.equals(recordVO.getStatus(), "F")) { BizReviewLog log = reviewLogService.getBizReviewLog(recordVO.getId(), "TRANS_RECORD"); if (null != log) { tempMap.put("failReason", log.getComment()); } statusName = "审核退回"; } else { statusName = "莫名其妙"; } tempMap.put("statusName", statusName); temp.add(tempMap); } map.put("page", page); map.put("data", temp); } return SHOW_REVIEWED; }
@RequestMapping( value = "/modifyLast/{id}", method = {RequestMethod.GET, RequestMethod.POST}) public String modifyLast(@PathVariable Long id, String type, Map<String, Object> map, Page page) { type = StringUtils.isBlank(type) ? InvestDirectionEnum.QI_HUO.getValue() : type; BizTransRecordVO vo; try { vo = transRecordService.findLastRecord(id, type); if (null != vo) { BizTransRecord transRecord = transRecordService.get(vo.getId()); map.put("id", transRecord.getId() + ""); map.put("investType", transRecord.getInvestType()); map.put( "investTypeName", InvestDirectionEnum.getInvestDirectionEnum(transRecord.getInvestType()).getName()); map.put("fee", getRealValue(transRecord.getFee())); map.put("gainsAndLosses", getRealValue(transRecord.getGainsAndLosses())); map.put("currIncome", getRealValue(transRecord.getCurrIncome())); map.put("currOutcome", getRealValue(transRecord.getCurrOutcome())); map.put("currValue", getRealValue(transRecord.getCurrValue())); map.put("lastDayValue", getRealValue(transRecord.getLastDayValue())); map.put("totalGainsAndLosses", transRecord.getTotalGainsAndLosses()); map.put("origionValue", getRealValue(transRecord.getOrigionValue())); map.put("status", transRecord.getStatus()); map.put("importDate", transRecord.getImportDate()); map.put("memberId", transRecord.getMemberId() + ""); } else { return null; } } catch (Exception e) { e.printStackTrace(); } return MODIFY_LAST; }
@Log(message = "删除了transRecord,ids:{0}。") @RequestMapping(value = "/delete", method = RequestMethod.POST) public @ResponseBody String deleteMany(Long[] ids) { evenName = "transRecord删除"; AjaxObject ajaxObject = new AjaxObject(evenName + "成功!"); String[] transRecordTypes = new String[ids.length]; for (int i = 0; i < ids.length; i++) { BizTransRecord transRecord = transRecordService.get(ids[i]); transRecordService.delete(transRecord.getId()); transRecordTypes[i] = transRecord.getId().toString(); } // 记录日志 LogUitl.putArgs( LogMessageObject.newWrite().setObjects(new Object[] {Arrays.toString(transRecordTypes)})); ajaxObject.setCallbackType(""); return ajaxObject.toString(); }