|
@@ -249,6 +249,9 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
continue;
|
|
|
}
|
|
|
String submitForm = oaInputDto.getModel();
|
|
|
+ if(Objects.isNull(formData.get(submitForm))){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
List<HashMap> hashMaps = JSONObject.parseArray(formData.get(submitForm).toString(), HashMap.class);
|
|
|
for (HashMap hashMap : hashMaps) {
|
|
|
FinancialExpenditure financialExpenditure = new FinancialExpenditure();
|