|
|
@ -62,6 +62,10 @@ public class ReportSetService extends MybatisBaseService<ReportSetMapper, Report |
|
|
|
// reportSet.setLoanDis(reportSetVo.isSelected() ? 1 : 0);
|
|
|
|
reportSet.setLoanDis(1); |
|
|
|
break; |
|
|
|
case "loanDiss": |
|
|
|
// reportSet.setLoanDis(reportSetVo.isSelected() ? 1 : 0);
|
|
|
|
reportSet.setLoanDiss(1); |
|
|
|
break; |
|
|
|
default: |
|
|
|
break; |
|
|
|
} |
|
|
@ -115,9 +119,14 @@ public class ReportSetService extends MybatisBaseService<ReportSetMapper, Report |
|
|
|
list.add(reportSetVo); |
|
|
|
reportSetVo = new ReportSetVo(); |
|
|
|
reportSetVo.setDictKey("loanDis"); |
|
|
|
reportSetVo.setDictValue("金融未放款"); |
|
|
|
reportSetVo.setDictValue("金融未放款(已出库)"); |
|
|
|
reportSetVo.setSelected(reportSet.getLoanDis() == 1); |
|
|
|
list.add(reportSetVo); |
|
|
|
reportSetVo = new ReportSetVo(); |
|
|
|
reportSetVo.setDictKey("loanDiss"); |
|
|
|
reportSetVo.setDictValue("金融未放款(已过终审)"); |
|
|
|
reportSetVo.setSelected(reportSet.getLoanDiss() == 1); |
|
|
|
list.add(reportSetVo); |
|
|
|
} else { |
|
|
|
ReportSetVo reportSetVo = new ReportSetVo(); |
|
|
|
reportSetVo.setDictKey("stock"); |
|
|
@ -156,7 +165,12 @@ public class ReportSetService extends MybatisBaseService<ReportSetMapper, Report |
|
|
|
list.add(reportSetVo); |
|
|
|
reportSetVo = new ReportSetVo(); |
|
|
|
reportSetVo.setDictKey("loanDis"); |
|
|
|
reportSetVo.setDictValue("金融未放款"); |
|
|
|
reportSetVo.setDictValue("金融未放款(已出库)"); |
|
|
|
reportSetVo.setSelected(false); |
|
|
|
list.add(reportSetVo); |
|
|
|
reportSetVo = new ReportSetVo(); |
|
|
|
reportSetVo.setDictKey("loanDiss"); |
|
|
|
reportSetVo.setDictValue("金融未放款(已过终审)"); |
|
|
|
reportSetVo.setSelected(false); |
|
|
|
list.add(reportSetVo); |
|
|
|
} |
|
|
|