问题修复
This commit is contained in:
parent
514e0f4fcc
commit
db5b90b0b4
|
|
@ -502,8 +502,8 @@ public class LeaseOutDetailsServiceImpl implements LeaseOutDetailsService {
|
|||
|
||||
|
||||
String endTime = currentLocalDate.getDayOfMonth() > 20
|
||||
? DateTimeHelper.getCurrentMonthCalEndDay(20)
|
||||
: DateTimeHelper.getPreMonthCalStartDay(20);
|
||||
? DateTimeHelper.getCurrentMonthCalEndDay(21)
|
||||
: DateTimeHelper.getPreMonthCalStartDay(21);
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -946,7 +946,7 @@ public class SltAgreementInfoController extends BaseController {
|
|||
// calcMonthlyService.calcMonthInfo(1);
|
||||
// } else {
|
||||
// int calDay = Integer.parseInt(settlementJobDay);
|
||||
calcMonthlyService.calcMonthInfo(20);
|
||||
calcMonthlyService.calcMonthInfo(21);
|
||||
// }
|
||||
|
||||
} catch (Exception e) {
|
||||
|
|
|
|||
|
|
@ -44,8 +44,8 @@ public class CalcMonthlyServiceImp implements CalcMonthlyService {
|
|||
endTime = DateTimeHelper.getCurrentMonthFirstDay();
|
||||
} else {
|
||||
month = DateTimeHelper.getCurrentMonth();
|
||||
startTime = DateTimeHelper.getPreMonthCalStartDay(20);
|
||||
endTime = DateTimeHelper.getCurrentMonthCalEndDay(21);
|
||||
startTime = DateTimeHelper.getPreMonthCalStartDay(day);
|
||||
endTime = DateTimeHelper.getCurrentMonthCalEndDay(day);
|
||||
}
|
||||
CalMonthlyBean record = new CalMonthlyBean();
|
||||
record.setMonth(month);
|
||||
|
|
|
|||
|
|
@ -391,7 +391,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</if>
|
||||
<if test="dictName != null and dictName != ''">
|
||||
and (mt.type_name like concat('%',#{dictName},'%') or
|
||||
mt1.type_name like concat('%',#{dictName},'%'))
|
||||
mt1.type_name like concat('%',#{dictName},'%') or
|
||||
mm.ma_code like concat('%',#{dictName},'%'))
|
||||
</if>
|
||||
order by status, pmi.id
|
||||
</select>
|
||||
|
|
|
|||
Loading…
Reference in New Issue