Merge branch 'dev'
This commit is contained in:
commit
dbc8759760
|
@ -384,6 +384,15 @@ public class TAbilityApplicationController {
|
|||
AtomicReference<Boolean> doneReminders = new AtomicReference<>(Boolean.FALSE); // 是否已执行过催办
|
||||
AtomicReference<Integer> nextRemindersDays = new AtomicReference<>(0); // 下次催办多少天后
|
||||
|
||||
final Optional<Task> nowTaskRoot = taskService.createTaskQuery()
|
||||
.processInstanceId(tAbilityApplicationDTOList.get(0).getInstanceId())
|
||||
.orderByTaskCreateTime()
|
||||
.desc()
|
||||
.active()
|
||||
.list()
|
||||
.stream()
|
||||
.findFirst(); // 尝试获取当前task
|
||||
|
||||
taskHandleDetailInfo = taskHandleDetailInfo.stream().map(index_ -> { // 补充审核人部门名称
|
||||
if (StringUtils.isNumeric(index_.getAssignee())) {
|
||||
SysUserDTO userDTO = sysUserService.get(Long.valueOf(index_.getAssignee()));
|
||||
|
@ -399,6 +408,7 @@ public class TAbilityApplicationController {
|
|||
*/
|
||||
Optional<Task> nowTask = taskService.createTaskQuery()
|
||||
.processInstanceId(index_.getProcessInstanceId())
|
||||
.taskId(index_.getTaskId()) // 每个任务
|
||||
.orderByTaskCreateTime()
|
||||
.desc()
|
||||
.active()
|
||||
|
@ -413,16 +423,20 @@ public class TAbilityApplicationController {
|
|||
long between = ChronoUnit.DAYS.between(taskCreateDate, LocalDate.now());
|
||||
if (between <= interval) {
|
||||
logger.info("该任务未到允许催办的日期");
|
||||
index_.setAllowReminders(Boolean.FALSE); // 不允许催办
|
||||
index_.setDoneReminders(Boolean.FALSE); // 不存在催办记录
|
||||
index_.setNextRemindersDays((int) (interval - between)); // 距离下次催办天数为
|
||||
if (nowTask.get().getId().equals(nowTaskRoot.get().getId())) {
|
||||
index_.setAllowReminders(Boolean.FALSE); // 不允许催办
|
||||
index_.setDoneReminders(Boolean.FALSE); // 不存在催办记录
|
||||
index_.setNextRemindersDays((int) (interval - between)); // 距离下次催办天数为
|
||||
}
|
||||
allowReminders.set(Boolean.FALSE);
|
||||
doneReminders.set(Boolean.FALSE);
|
||||
nextRemindersDays.set((int) (interval - between));
|
||||
} else {
|
||||
allowReminders.set(Boolean.TRUE);
|
||||
doneReminders.set(Boolean.FALSE);
|
||||
nextRemindersDays.set(0);
|
||||
if (nowTask.get().getId().equals(nowTaskRoot.get().getId())) {
|
||||
allowReminders.set(Boolean.TRUE);
|
||||
doneReminders.set(Boolean.FALSE);
|
||||
nextRemindersDays.set(0);
|
||||
}
|
||||
index_.setAllowReminders(Boolean.TRUE); // 允许催办
|
||||
index_.setDoneReminders(Boolean.FALSE); // 不存在催办记录
|
||||
index_.setNextRemindersDays(0); // 距离下次催办天数为0
|
||||
|
@ -430,25 +444,26 @@ public class TAbilityApplicationController {
|
|||
} else { // 进行过催办
|
||||
long between = ChronoUnit.DAYS.between(localDate, LocalDate.now()); // 上次催办距离今天已过天数
|
||||
if (between <= interval) { // 间隔天数小于限制天数
|
||||
allowReminders.set(Boolean.FALSE);
|
||||
doneReminders.set(Boolean.TRUE);
|
||||
nextRemindersDays.set((int) (interval - between));
|
||||
if (nowTask.get().getId().equals(nowTaskRoot.get().getId())) {
|
||||
allowReminders.set(Boolean.FALSE);
|
||||
doneReminders.set(Boolean.TRUE);
|
||||
nextRemindersDays.set((int) (interval - between));
|
||||
}
|
||||
index_.setAllowReminders(Boolean.FALSE); // 不允许催办
|
||||
index_.setDoneReminders(Boolean.TRUE); // 存在催办记录
|
||||
index_.setNextRemindersDays((int) (interval - between)); // 距离下次催办天数
|
||||
} else {
|
||||
allowReminders.set(Boolean.TRUE);
|
||||
doneReminders.set(Boolean.TRUE);
|
||||
nextRemindersDays.set(0);
|
||||
if (nowTask.get().getId().equals(nowTaskRoot.get().getId())) {
|
||||
allowReminders.set(Boolean.TRUE);
|
||||
doneReminders.set(Boolean.TRUE);
|
||||
nextRemindersDays.set(0);
|
||||
}
|
||||
index_.setAllowReminders(Boolean.TRUE); // 不允许催办
|
||||
index_.setDoneReminders(Boolean.TRUE); // 存在催办记录
|
||||
index_.setNextRemindersDays(0); // 距离下次催办天数为0
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// allowReminders.set(Boolean.FALSE);
|
||||
// doneReminders.set(Boolean.FALSE);
|
||||
// nextRemindersDays.set(0);
|
||||
index_.setAllowReminders(Boolean.FALSE);
|
||||
index_.setDoneReminders(Boolean.FALSE);
|
||||
index_.setNextRemindersDays(0);
|
||||
|
|
|
@ -80,4 +80,8 @@ public interface TAbilityApplicationDao extends BaseDao<TAbilityApplicationEntit
|
|||
List<Map> getProvideDistrictFundStatement();
|
||||
|
||||
List<Map> getApplyDistrictFundStatement();
|
||||
|
||||
Long getApplyPriceCount();
|
||||
|
||||
Long getResourceFundStatementTotal();
|
||||
}
|
|
@ -234,13 +234,9 @@ public class TAbilityApplicationServiceImpl extends CrudServiceImpl<TAbilityAppl
|
|||
@Override
|
||||
public Object getResourceFundStatement(Map<String, Object> params) {
|
||||
List<Map> list = abilityApplicationDao.getResourceFundStatement();
|
||||
BigDecimal total = BigDecimal.ZERO;
|
||||
for (Map map : list) {
|
||||
total = total.add((BigDecimal) map.get("applyPrice"));
|
||||
}
|
||||
Map<String, Object> resultMap = new HashMap<>();
|
||||
resultMap.put("list", list);
|
||||
resultMap.put("total", total);
|
||||
resultMap.put("total", abilityApplicationDao.getResourceFundStatementTotal());
|
||||
return resultMap;
|
||||
}
|
||||
|
||||
|
@ -292,12 +288,10 @@ public class TAbilityApplicationServiceImpl extends CrudServiceImpl<TAbilityAppl
|
|||
|
||||
@Override
|
||||
public Object getApplyPriceCount() {
|
||||
Map<String, Object> map = new HashMap<>();
|
||||
map.put("applyResult", "通过");
|
||||
Long sum = abilityApplicationDao.getFundStatementSum(map);
|
||||
BigDecimal result = new BigDecimal(sum).divide(new BigDecimal(10000));
|
||||
result = result.setScale(1, BigDecimal.ROUND_HALF_UP);
|
||||
return result ;
|
||||
|
||||
Long sum = 0L;
|
||||
sum = sum + abilityApplicationDao.getApplyPriceCount();
|
||||
return sum ;
|
||||
}
|
||||
|
||||
}
|
|
@ -365,6 +365,9 @@
|
|||
LEFT JOIN ( SELECT data_resource_id, attr_type, attr_value FROM tb_data_attr tda WHERE del_flag = 0 AND attr_type = '组件类型' ) attr ON tdr.id = attr.data_resource_id
|
||||
WHERE
|
||||
1 = 1
|
||||
AND tdr.del_flag = 0
|
||||
AND taa.del_flag = 0
|
||||
AND (taa.camera_list IS NULL OR taa.camera_list = '')
|
||||
<choose>
|
||||
<when test="params.applyResult == null or params.applyResult == ''">
|
||||
AND taa.approve_status IN ( '审核中', '通过' )
|
||||
|
@ -453,6 +456,9 @@
|
|||
LEFT JOIN ( SELECT data_resource_id, attr_type, attr_value FROM tb_data_attr tda WHERE del_flag = 0 AND attr_type = '组件类型' ) attr ON tdr.id = attr.data_resource_id
|
||||
WHERE
|
||||
1 = 1
|
||||
AND tdr.del_flag = 0
|
||||
AND taa.del_flag = 0
|
||||
AND (taa.camera_list IS NULL OR taa.camera_list = '')
|
||||
<choose>
|
||||
<when test="params.applyResult == null or params.applyResult == ''">
|
||||
AND taa.approve_status IN ( '审核中', '通过' )
|
||||
|
@ -539,6 +545,9 @@
|
|||
LEFT JOIN ( SELECT data_resource_id, attr_type, attr_value FROM tb_data_attr tda WHERE del_flag = 0 AND attr_type = '组件类型' ) attr ON tdr.id = attr.data_resource_id
|
||||
WHERE
|
||||
1 = 1
|
||||
AND tdr.del_flag = 0
|
||||
AND taa.del_flag = 0
|
||||
AND (taa.camera_list IS NULL OR taa.camera_list = '')
|
||||
<choose>
|
||||
<when test="params.applyResult == null or params.applyResult == ''">
|
||||
AND taa.approve_status IN ( '审核中', '通过' )
|
||||
|
@ -627,6 +636,9 @@
|
|||
LEFT JOIN ( SELECT data_resource_id, attr_type, attr_value FROM tb_data_attr tda WHERE del_flag = 0 AND attr_type = '组件类型' ) attr ON tdr.id = attr.data_resource_id
|
||||
WHERE
|
||||
1 = 1
|
||||
AND tdr.del_flag = 0
|
||||
AND taa.del_flag = 0
|
||||
AND (taa.camera_list IS NULL OR taa.camera_list = '')
|
||||
<choose>
|
||||
<when test="params.applyResult == null or params.applyResult == ''">
|
||||
AND taa.approve_status IN ( '审核中', '通过' )
|
||||
|
@ -702,7 +714,7 @@
|
|||
SELECT
|
||||
districtId,
|
||||
districtName,
|
||||
SUM(applyPrice) AS "applyPrice"
|
||||
SUM( applyPrice ) AS "applyPrice"
|
||||
FROM
|
||||
(
|
||||
SELECT
|
||||
|
@ -715,21 +727,24 @@
|
|||
FROM
|
||||
( SELECT id, NAME, sort FROM sys_region WHERE tree_level = 3 AND 9 >= sort ) srg
|
||||
LEFT JOIN sys_dept sd ON sd.district = srg.id
|
||||
LEFT JOIN tb_data_resource tdr ON tdr.dept_id = sd.id
|
||||
LEFT JOIN sys_user su ON su.dept_id = sd.id
|
||||
LEFT JOIN (
|
||||
SELECT
|
||||
resource_id,
|
||||
SUM( apply_price ) AS "apply_price"
|
||||
user_id,
|
||||
SUM( apply_price ) AS "apply_price",
|
||||
COUNT( id ) AS "applyCount"
|
||||
FROM
|
||||
t_ability_application taa
|
||||
WHERE
|
||||
taa.del_flag = 0
|
||||
AND taa.approve_status = '通过'
|
||||
GROUP BY
|
||||
resource_id
|
||||
) taa ON taa.resource_id = tdr.id
|
||||
user_id
|
||||
) taa ON taa.user_id = su.id
|
||||
GROUP BY
|
||||
srg.id UNION ALL
|
||||
srg.id
|
||||
|
||||
UNION ALL
|
||||
SELECT
|
||||
tmb.district AS "districtId",
|
||||
srg.NAME AS "districtName",
|
||||
|
@ -851,18 +866,16 @@
|
|||
SELECT
|
||||
sd.id AS "deptId",
|
||||
sd.NAME AS "deptName",
|
||||
COUNT( tdr.id ) AS "resourceCount",
|
||||
sum( taa.applyCount ) AS "resourceCount",
|
||||
CONVERT (
|
||||
IFNULL( SUM( taa.price ), 0 ) / 10000,
|
||||
DECIMAL ( 15, 1 )) AS "applyPrice"
|
||||
FROM
|
||||
sys_dept sd
|
||||
LEFT JOIN tb_data_resource tdr ON tdr.dept_id = sd.id
|
||||
LEFT JOIN (
|
||||
(
|
||||
SELECT
|
||||
resource_id,
|
||||
SUM( apply_price ) AS "price",
|
||||
COUNT( resource_id ) AS "applyCount"
|
||||
COUNT( id ) AS "applyCount"
|
||||
FROM
|
||||
t_ability_application taa
|
||||
WHERE
|
||||
|
@ -870,7 +883,9 @@
|
|||
AND taa.approve_status = '通过'
|
||||
GROUP BY
|
||||
resource_id
|
||||
) taa ON taa.resource_id = tdr.id
|
||||
) taa
|
||||
LEFT JOIN tb_data_resource tdr ON tdr.id = taa.resource_id
|
||||
LEFT JOIN sys_dept sd ON tdr.dept_id = sd.id
|
||||
WHERE
|
||||
tdr.del_flag = 0
|
||||
AND sd.type = 2
|
||||
|
@ -879,16 +894,14 @@
|
|||
SELECT
|
||||
1067246875800000066 AS "deptId",
|
||||
'青岛市大数据发展管理局' AS "deptName",
|
||||
( SELECT COUNT( id ) FROM t_meetingroom ) AS "resourceCount",
|
||||
COUNT( tmb.id ) AS "resourceCount",
|
||||
CONVERT (
|
||||
IFNULL( SUM( tmb.apply_price ), 0 ) / 10000,
|
||||
DECIMAL ( 15, 1 )) AS "applyPrice"
|
||||
FROM
|
||||
t_meetingroom tm
|
||||
LEFT JOIN t_meetingroom_book tmb ON tmb.room_id = tm.id
|
||||
t_meetingroom_book tmb
|
||||
WHERE
|
||||
tm.del_flag = 0
|
||||
AND tmb.state = 2
|
||||
tmb.state = 2
|
||||
) temp
|
||||
GROUP BY
|
||||
deptId,
|
||||
|
@ -924,6 +937,7 @@
|
|||
WHERE
|
||||
taa.del_flag = 0
|
||||
AND taa.approve_status = '通过'
|
||||
AND ( taa.camera_list IS NULL OR camera_list = '' )
|
||||
GROUP BY
|
||||
user_id
|
||||
) taa
|
||||
|
@ -950,7 +964,8 @@
|
|||
tmb.dept
|
||||
) temp
|
||||
GROUP BY
|
||||
deptName, deptId
|
||||
deptName,
|
||||
deptId
|
||||
ORDER BY
|
||||
SUM( applyPrice ) DESC
|
||||
LIMIT 10
|
||||
|
@ -958,20 +973,20 @@
|
|||
|
||||
<select id="getProvideDistrictFundStatement" resultType="java.util.Map">
|
||||
SELECT
|
||||
srg.id AS "districtId ",
|
||||
srg.NAME AS "districtName",
|
||||
IFNULL(SUM(taa.applyCount), 0) AS "applyCount",
|
||||
convert(IFNULL( SUM( taa.apply_price ), 0 ) / 10000, decimal(15,1)) AS "applyPrice",
|
||||
srg.sort
|
||||
srg.id AS "districtId ",
|
||||
srg.NAME AS "districtName",
|
||||
IFNULL(SUM(taa.applyCount), 0) AS "applyCount",
|
||||
convert(IFNULL( SUM( taa.apply_price ), 0 ) / 10000, decimal(15,1)) AS "applyPrice",
|
||||
srg.sort
|
||||
FROM
|
||||
( SELECT id, NAME, sort FROM sys_region WHERE tree_level = 3 AND 9 >= sort ) srg
|
||||
LEFT JOIN sys_dept sd ON sd.district = srg.id
|
||||
LEFT JOIN sys_user su ON su.dept_id = sd.id
|
||||
LEFT JOIN (SELECT user_id, SUM(apply_price) AS "apply_price", COUNT(id) AS "applyCount" FROM t_ability_application taa WHERE
|
||||
taa.del_flag = 0
|
||||
AND taa.approve_status = '通过' GROUP BY user_id ) taa ON taa.user_id = su.id
|
||||
( SELECT id, NAME, sort FROM sys_region WHERE tree_level = 3 AND 9 >= sort ) srg
|
||||
LEFT JOIN sys_dept sd ON sd.district = srg.id
|
||||
LEFT JOIN tb_data_resource tdr ON tdr.dept_id = sd.id
|
||||
LEFT JOIN (SELECT resource_id, SUM(apply_price) AS "apply_price", COUNT(id) AS "applyCount" FROM t_ability_application taa WHERE
|
||||
taa.del_flag = 0
|
||||
AND taa.approve_status = '通过' AND (taa.camera_list IS NULL OR taa.camera_list = '') GROUP BY resource_id ) taa ON taa.resource_id = tdr.id
|
||||
GROUP BY
|
||||
srg.id
|
||||
srg.id
|
||||
ORDER BY srg.sort
|
||||
</select>
|
||||
|
||||
|
@ -979,8 +994,8 @@
|
|||
SELECT
|
||||
districtId,
|
||||
districtName,
|
||||
SUM( applyCount ) AS "applyCount",
|
||||
SUM( applyPrice ) AS "applyPrice"
|
||||
SUM( applyCount ) AS "applyCount",
|
||||
SUM( applyPrice ) AS "applyPrice"
|
||||
FROM
|
||||
(
|
||||
SELECT
|
||||
|
@ -994,10 +1009,10 @@
|
|||
FROM
|
||||
( SELECT id, NAME, sort FROM sys_region WHERE tree_level = 3 AND 9 >= sort ) srg
|
||||
LEFT JOIN sys_dept sd ON sd.district = srg.id
|
||||
LEFT JOIN tb_data_resource tdr ON tdr.dept_id = sd.id
|
||||
LEFT JOIN sys_user su ON su.dept_id = sd.id
|
||||
LEFT JOIN (
|
||||
SELECT
|
||||
resource_id,
|
||||
user_id,
|
||||
SUM( apply_price ) AS "apply_price",
|
||||
COUNT( id ) AS "applyCount"
|
||||
FROM
|
||||
|
@ -1006,10 +1021,12 @@
|
|||
taa.del_flag = 0
|
||||
AND taa.approve_status = '通过'
|
||||
GROUP BY
|
||||
resource_id
|
||||
) taa ON taa.resource_id = tdr.id
|
||||
user_id
|
||||
) taa ON taa.user_id = su.id
|
||||
GROUP BY
|
||||
srg.id UNION ALL
|
||||
srg.id
|
||||
|
||||
UNION ALL
|
||||
SELECT
|
||||
tmb.district AS "districtId",
|
||||
srg.NAME AS "districtName",
|
||||
|
@ -1051,5 +1068,55 @@
|
|||
temp.sort
|
||||
</select>
|
||||
|
||||
<select id="getApplyPriceCount" resultType="java.lang.Long">
|
||||
SELECT CONVERT
|
||||
(
|
||||
SUM( temp.applyPrice ) / 10000,
|
||||
DECIMAL ( 15, 1 ))
|
||||
FROM
|
||||
(
|
||||
SELECT
|
||||
taa.apply_price AS "applyPrice"
|
||||
FROM
|
||||
t_ability_application taa
|
||||
WHERE
|
||||
1 = 1
|
||||
AND taa.approve_status = '通过' UNION ALL
|
||||
SELECT
|
||||
tmb.apply_price AS "applyPrice"
|
||||
FROM
|
||||
t_meetingroom_book tmb
|
||||
WHERE
|
||||
tmb.state = 2
|
||||
) temp
|
||||
</select>
|
||||
|
||||
<select id="getResourceFundStatementTotal" resultType="java.lang.Long">
|
||||
SELECT SUM(applyPrice) FROM (
|
||||
SELECT
|
||||
CONVERT (
|
||||
taa.price / 10000,
|
||||
DECIMAL ( 15, 1 )) AS "applyPrice"
|
||||
FROM
|
||||
(
|
||||
SELECT
|
||||
resource_id,
|
||||
SUM( apply_price ) AS "price",
|
||||
COUNT( resource_id ) AS "applyCount"
|
||||
FROM
|
||||
t_ability_application taa
|
||||
WHERE
|
||||
taa.del_flag = 0
|
||||
AND taa.approve_status = '通过'
|
||||
GROUP BY
|
||||
resource_id
|
||||
) taa
|
||||
LEFT JOIN tb_data_resource tdr ON taa.resource_id = tdr.id
|
||||
LEFT JOIN sys_dept sd ON tdr.dept_id = sd.id
|
||||
WHERE
|
||||
tdr.del_flag = 0
|
||||
AND tdr.type = '应用资源' ) tmp
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue