package com.yeshi.fanli.service.impl.user;
|
|
import java.text.SimpleDateFormat;
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
|
import javax.annotation.Resource;
|
|
import org.springframework.stereotype.Service;
|
import org.yeshi.utils.DateUtil;
|
|
import com.yeshi.fanli.dao.mybatis.ExtractAuditRecordMapper;
|
import com.yeshi.fanli.entity.bus.user.ExtractAuditRecord;
|
import com.yeshi.fanli.service.inter.user.ExtractAuditRecordService;
|
|
@Service
|
public class ExtractAuditRecordServiceImpl implements ExtractAuditRecordService {
|
|
@Resource
|
private ExtractAuditRecordMapper extractAuditRecordMapper;
|
|
@Override
|
public List<ExtractAuditRecord> getList(int pageIndex, int pageSize, String key, String startTime, String endTime) {
|
return extractAuditRecordMapper.getList((pageIndex - 1) * pageSize, pageSize, key, startTime, endTime);
|
}
|
|
@Override
|
public int getCount(String key, String startTime, String endTime) {
|
return extractAuditRecordMapper.getCount(key, startTime, endTime);
|
}
|
|
@Override
|
public List<ExtractAuditRecord> getMyAuditedAllList(int pageIndex, int pageSize, String key, Integer state,
|
Long adminId) {
|
return extractAuditRecordMapper.getMyAuditedAllList((pageIndex - 1) * pageSize, pageSize, key, state, adminId);
|
}
|
|
@Override
|
public int getMyAuditedAllCount(String key, Integer state, Long adminId) {
|
return extractAuditRecordMapper.getMyAuditedAllCount(key, state, adminId);
|
}
|
|
@Override
|
public List<ExtractAuditRecord> getMyAuditedTimeSlotList(int pageIndex, int pageSize, String key, Integer state,
|
Long adminId, Integer days) {
|
return extractAuditRecordMapper.getMyAuditedTimeSlotList((pageIndex - 1) * pageSize, pageSize, key, state,
|
adminId, days);
|
}
|
|
@Override
|
public int getMyAuditedTimeSlotCount(String key, Integer state, Long adminId, Integer days) {
|
return extractAuditRecordMapper.getMyAuditedTimeSlotCount(key, state, adminId, days);
|
}
|
|
@Override
|
public int getMyAuditedCountWeek(Long adminId) {
|
return extractAuditRecordMapper.getMyAuditedCountWeek(adminId);
|
}
|
|
@Override
|
public int getMyAuditedCountMonth(Long adminId) {
|
return extractAuditRecordMapper.getMyAuditedCountMonth(adminId);
|
}
|
|
@Override
|
public int getMyAuditedCountToday(Long adminId) {
|
return extractAuditRecordMapper.getMyAuditedCountToday(adminId);
|
}
|
|
@Override
|
public List<ExtractAuditRecord> getByUidList(int pageIndex, int pageSize, Long uid) {
|
return extractAuditRecordMapper.getByUidList((pageIndex - 1) * pageSize, pageSize, uid);
|
}
|
|
@Override
|
public int getByUidCount(Long key) {
|
return extractAuditRecordMapper.getByUidCount(key);
|
}
|
|
@Override
|
public List<ExtractAuditRecord> getListbyExtractId(Long extractId) {
|
return extractAuditRecordMapper.getListbyExtractId(extractId);
|
}
|
|
@Override
|
public List<ExtractAuditRecord> getbyExtractId(Long extractId) {
|
return extractAuditRecordMapper.getbyExtractId(extractId);
|
}
|
|
@Override
|
public List<Map<String, Object>> countAuditTotal(Integer state, Integer type, String years, String startTime,
|
String endTime) throws Exception{
|
List<Map<String, Object>> list = extractAuditRecordMapper.countAuditTotal(state, type, years, startTime, endTime);
|
|
if (list == null || list.size() == 0) {
|
return list = new ArrayList<Map<String, Object>>();
|
}
|
|
switch (type){
|
case 1: // 按天处理
|
return dayFactory(startTime, endTime, list);
|
case 2: // 按月处理
|
return monthFactory(list);
|
case 3:
|
return yearFactory(list);
|
default:
|
return null;
|
}
|
}
|
|
@Override
|
public List<Map<String, Object>> countExtractMoney(Integer state, Integer type, String years, String startTime,
|
String endTime) throws Exception{
|
List<Map<String, Object>> list = extractAuditRecordMapper.countExtractMoney(state, type, years, startTime, endTime);
|
|
if (list == null || list.size() == 0) {
|
return list = new ArrayList<Map<String, Object>>();
|
}
|
|
switch (type){
|
case 1: // 按天处理
|
return dayFactory(startTime, endTime, list);
|
case 2: // 按月处理
|
return monthFactory(list);
|
case 3:
|
return yearFactory(list);
|
default:
|
return null;
|
}
|
}
|
|
@Override
|
public List<Map<String, Object>> countExtractApplyNumber(Integer state, Integer type, String years, String startTime,
|
String endTime) throws Exception{
|
List<Map<String, Object>> list = extractAuditRecordMapper.countExtractApplyNumber(state, type, years, startTime, endTime);
|
|
if (list == null || list.size() == 0) {
|
return list = new ArrayList<Map<String, Object>>();
|
}
|
|
switch (type){
|
case 1: // 按天处理
|
return dayFactory(startTime, endTime, list);
|
case 2: // 按月处理
|
return monthFactory(list);
|
case 3:
|
return yearFactory(list);
|
default:
|
return null;
|
}
|
}
|
|
|
|
public List<Map<String, Object>> dayFactory(String startTime, String endTime, List<Map<String, Object>> list) throws Exception {
|
|
List<Map<String, Object>> listObject = new ArrayList<Map<String, Object>>();
|
|
if (startTime.equals(endTime)) {
|
|
Map<String, Object> map = list.get(0);
|
Object total = map.get("total");
|
if (total == null) {
|
map.put("total", 0);
|
}
|
listObject.add(map);
|
return listObject;
|
}
|
|
String plusDay = "";
|
for (int i = 0; i < 1000; i++) {
|
if (i == 0) {
|
plusDay = startTime;
|
} else {
|
plusDay = DateUtil.plusDay(i, startTime);
|
}
|
|
Map<String, Object> mapObject = new HashMap<String, Object>();
|
Object total = null;
|
|
for (int j = 0; j < list.size(); j++) {
|
Map<String, Object> map = list.get(j);
|
Object createDate = map.get("showDate");
|
String month = createDate.toString();
|
if (plusDay.equalsIgnoreCase(month)) {
|
total = map.get("total");
|
break;
|
}
|
}
|
|
if (total == null) {
|
total = 0;
|
}
|
mapObject.put("total", total);
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy/MM/dd");
|
Date parseDate = sdf.parse(plusDay.toString());
|
|
mapObject.put("showDate", sdf2.format(parseDate));
|
|
listObject.add(mapObject);
|
|
if (plusDay.equals(endTime)) {
|
break; // 时间结束
|
}
|
}
|
|
return listObject;
|
}
|
|
public List<Map<String, Object>> monthFactory(List<Map<String, Object>> list) {
|
|
List<Map<String, Object>> listObject = new ArrayList<Map<String, Object>>();
|
// 12 个月处理
|
for (int i = 1; i <= 12; i++) {
|
Map<String, Object> mapObject = new HashMap<String, Object>();
|
Object total = null;
|
|
for (int j = 0; j < list.size(); j++) {
|
Map<String, Object> map = list.get(j);
|
Object createDate = map.get("showDate");
|
String month = createDate.toString();
|
if ((i + "").equalsIgnoreCase(month) || i == Integer.parseInt(month)) {
|
total = map.get("total");
|
break;
|
}
|
}
|
|
if (total == null) {
|
total = 0;
|
}
|
mapObject.put("total", total);
|
|
mapObject.put("showDate", i + "月");
|
|
listObject.add(mapObject);
|
}
|
return listObject;
|
}
|
|
public List<Map<String, Object>> yearFactory(List<Map<String, Object>> list) {
|
|
List<Map<String, Object>> listObject = new ArrayList<Map<String, Object>>();
|
|
for (int i = 0; i < list.size(); i++) {
|
Map<String, Object> map = list.get(i);
|
Object total = map.get("total");
|
|
if (total == null) {
|
total = 0;
|
}
|
map.put("total", total);
|
|
listObject.add(map);
|
}
|
|
return listObject;
|
}
|
|
}
|