|
@@ -787,7 +787,7 @@ public class WmPayOffController {
|
|
public R<?> financialReview(@RequestBody WmScorePackageSettleInput input) {
|
|
public R<?> financialReview(@RequestBody WmScorePackageSettleInput input) {
|
|
log.info("财务复核参数:{}", input);
|
|
log.info("财务复核参数:{}", input);
|
|
|
|
|
|
- if (StringUtils.isEmpty(input.getId()) || null == input.getSubjectLocation() || null == input.getInvoiceCategory()) {
|
|
|
|
|
|
+ if (StringUtils.isEmpty(input.getId()) || null == input.getSubjectLocation() || null == input.getInvoiceCategory() || null == input.getReviewStatus()) {
|
|
return R.failed("必填参数为空");
|
|
return R.failed("必填参数为空");
|
|
}
|
|
}
|
|
|
|
|
|
@@ -826,7 +826,7 @@ public class WmPayOffController {
|
|
List<Map<String, String>> msgList = new ArrayList<>();
|
|
List<Map<String, String>> msgList = new ArrayList<>();
|
|
|
|
|
|
for (WmScorePackageSettleInput input : inputList) {
|
|
for (WmScorePackageSettleInput input : inputList) {
|
|
- if (StringUtils.isEmpty(input.getId()) || null == input.getSubjectLocation() || null == input.getInvoiceCategory()) {
|
|
|
|
|
|
+ if (StringUtils.isEmpty(input.getId()) || null == input.getSubjectLocation() || null == input.getInvoiceCategory() || null == input.getReviewStatus()) {
|
|
return R.failed("必填参数为空");
|
|
return R.failed("必填参数为空");
|
|
}
|
|
}
|
|
|
|
|