|
|
@@ -1946,6 +1946,7 @@ public class InsPlyIncomeServiceImpl extends ServiceImpl<InsPlyIncomeMapper, Ins
|
|
|
*/
|
|
|
|
|
|
@Override
|
|
|
+
|
|
|
public List<InsPlyIncome> totalBxAmount(InsPlyIncomeVo insPlyIncomeVo) {
|
|
|
HashMap<String, Object> params = new HashMap<>();
|
|
|
params = this.saveParams(insPlyIncomeVo, params);
|
|
|
@@ -2610,10 +2611,15 @@ public class InsPlyIncomeServiceImpl extends ServiceImpl<InsPlyIncomeMapper, Ins
|
|
|
InsPlyIncome totalledAmount = baseMapper.ptTotalAmount(params); //总金额
|
|
|
return totalledAmount;
|
|
|
}
|
|
|
-
|
|
|
+// -> 2024
|
|
|
@Override
|
|
|
public HttpResult<List<HashMap<String, Object>>> otherTimeDetail(InsPlyIncomeVo insPlyIncomeVo) {
|
|
|
HashMap<String, Object> params = new HashMap<>();
|
|
|
+ if(StringUtils.isNotEmpty(insPlyIncomeVo.getYeartsStart())){
|
|
|
+ params.put("year", insPlyIncomeVo.getYeartsStart());
|
|
|
+ params.put("yearAdd", String.valueOf((Integer.valueOf(insPlyIncomeVo.getYeartsStart())+1)));
|
|
|
+
|
|
|
+ }
|
|
|
this.saveParams(insPlyIncomeVo, params);
|
|
|
List<HashMap<String, Object>> resultMap = baseMapper.otherTimeDetail(params);
|
|
|
|