|
@@ -242,6 +242,7 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
if(hasFinancial != null){
|
|
|
return;
|
|
|
}
|
|
|
+ Date endTime = pWorkOrderInfo.getUpdateTime();
|
|
|
String realName = "";
|
|
|
if(pWorkOrderInfo.getCreator() != null){
|
|
|
SimpleUserDto simpleUser = teacherDao.getSimpleUser(pWorkOrderInfo.getCreator());
|
|
@@ -257,110 +258,157 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
if(pWorkOrderInfo.getProcess().equals(33) ||
|
|
|
pWorkOrderInfo.getProcess().equals(22) ||
|
|
|
pWorkOrderInfo.getProcess().equals(19) ||
|
|
|
- pWorkOrderInfo.getProcess().equals(28)){
|
|
|
+ pWorkOrderInfo.getProcess().equals(51) ||
|
|
|
+ pWorkOrderInfo.getProcess().equals(28)
|
|
|
+ ){
|
|
|
List<FinancialExpenditure> financialExpenditureList = new ArrayList<>();
|
|
|
+ Integer organId = null;
|
|
|
+ String note = "";
|
|
|
+ ExpenditureTypeEnum expenditureTypeEnum = ExpenditureTypeEnum.REFUND;
|
|
|
+ FeeProjectEnum feeProjectEnum = FeeProjectEnum.REFUND;
|
|
|
+ BigDecimal totalAmount = BigDecimal.ZERO;
|
|
|
+
|
|
|
for (OaInputDto oaInputDto : oaInputDtos) {
|
|
|
- if(!"子表单".equals(oaInputDto.getName())){
|
|
|
+ String submitForm = oaInputDto.getModel();
|
|
|
+ Object submitValue = formData.get(submitForm);
|
|
|
+ if (Objects.isNull(submitValue) || StringUtils.isEmpty(submitValue.toString())) {
|
|
|
continue;
|
|
|
}
|
|
|
+ if (StringUtils.equals("分部", oaInputDto.getName())) {
|
|
|
+ organId = Integer.parseInt(submitValue.toString());
|
|
|
+ }
|
|
|
+ if (StringUtils.equals("情况说明", oaInputDto.getName())) {
|
|
|
+ note = submitValue.toString();
|
|
|
+ }
|
|
|
+ if (oaInputDto.getName().contains("金额")) {
|
|
|
+ totalAmount = new BigDecimal(submitValue.toString());
|
|
|
+ }
|
|
|
+ if (StringUtils.equals("支出类型", oaInputDto.getName())) {
|
|
|
+ expenditureTypeEnum = ExpenditureTypeEnum.valueOfDesc(submitValue.toString());
|
|
|
+ }
|
|
|
+ if (StringUtils.equals("费用类别", oaInputDto.getName()) || StringUtils.equals("费用类型", oaInputDto.getName())) {
|
|
|
+ feeProjectEnum = FeeProjectEnum.valueOfDesc(submitValue.toString());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (OaInputDto oaInputDto : oaInputDtos) {
|
|
|
String submitForm = oaInputDto.getModel();
|
|
|
- if(Objects.isNull(formData.get(submitForm))){
|
|
|
+ Object submitValue = formData.get(submitForm);
|
|
|
+ if(Objects.isNull(submitValue)){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if(!StringUtils.equals("子表单",oaInputDto.getName()) && !StringUtils.equals("分摊明细",oaInputDto.getName())){
|
|
|
continue;
|
|
|
}
|
|
|
List<HashMap> hashMaps = JSONObject.parseArray(formData.get(submitForm).toString(), HashMap.class);
|
|
|
- nullUser: for (HashMap hashMap : hashMaps) {
|
|
|
- FinancialExpenditure financialExpenditure = new FinancialExpenditure();
|
|
|
- financialExpenditure.setBatchNo(pWorkOrderInfo.getId().toString());
|
|
|
- financialExpenditure.setFinancialProcessNo(pWorkOrderInfo.getId().toString());
|
|
|
- financialExpenditure.setApplyUser(realName);
|
|
|
- financialExpenditure.setApplyUserId(pWorkOrderInfo.getCreator());
|
|
|
- financialExpenditure.setProcessId(pWorkOrderInfo.getProcess());
|
|
|
- List<OaColumnDto> columns = oaInputDto.getColumns();
|
|
|
- if(columns != null && columns.size() > 0){
|
|
|
- for (OaColumnDto column : columns) {
|
|
|
- List<OaInputDto> columnList = column.getList();
|
|
|
- if(columnList != null && columnList.size() > 0){
|
|
|
- for (OaInputDto inputDto : columnList) {
|
|
|
- String name = inputDto.getName();
|
|
|
- if(name.contains("课程组编号")){
|
|
|
+ if(StringUtils.equals("分摊明细",oaInputDto.getName())){
|
|
|
+
|
|
|
+ nullAmount:
|
|
|
+ for (HashMap hashMap : hashMaps) {
|
|
|
+ List<OaColumnDto> columns = oaInputDto.getColumns();
|
|
|
+ if (columns != null && columns.size() > 0) {
|
|
|
+ FinancialExpenditure financialExpenditure = new FinancialExpenditure();
|
|
|
+ for (OaColumnDto column : columns) {
|
|
|
+ List<OaInputDto> columnList = column.getList();
|
|
|
+ if (columnList != null && columnList.size() > 0) {
|
|
|
+ for (OaInputDto inputDto : columnList) {
|
|
|
+ String name = inputDto.getName();
|
|
|
Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setVipGroupId(Long.parseLong(o.toString()));
|
|
|
- continue;
|
|
|
+ if (Objects.isNull(o) || StringUtils.isEmpty(o.toString())) {
|
|
|
+ continue nullAmount;
|
|
|
}
|
|
|
- }else if(name.contains("课程类型")){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setGroupType(o.toString());
|
|
|
- continue;
|
|
|
+ if (StringUtils.equals(name,"金额")) {
|
|
|
+ financialExpenditure.setCurrentAmount(new BigDecimal(Double.parseDouble(o.toString())));
|
|
|
+ } else if (StringUtils.equals(name,"日期")) {
|
|
|
+ financialExpenditure.setEffectiveTime(o.toString());
|
|
|
}
|
|
|
- }else if(name.contains("乐团编号")){
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ financialExpenditure.setFeeProject(feeProjectEnum);
|
|
|
+ financialExpenditure.setType(expenditureTypeEnum);
|
|
|
+ financialExpenditure.setAprovalTime(endTime);
|
|
|
+ financialExpenditure.setPaymentTime(endTime);
|
|
|
+ financialExpenditure.setAmount(totalAmount);
|
|
|
+ financialExpenditure.setCause(note);
|
|
|
+ financialExpenditure.setBatchNo(pWorkOrderInfo.getId().toString());
|
|
|
+ financialExpenditure.setFinancialProcessNo(pWorkOrderInfo.getId().toString());
|
|
|
+ financialExpenditure.setApplyUser(realName);
|
|
|
+ financialExpenditure.setApplyUserId(pWorkOrderInfo.getCreator());
|
|
|
+ financialExpenditure.setProcessId(pWorkOrderInfo.getProcess());
|
|
|
+ financialExpenditure.setOrganId(organId);
|
|
|
+ financialExpenditureList.add(financialExpenditure);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ nullUser:
|
|
|
+ for (HashMap hashMap : hashMaps) {
|
|
|
+ FinancialExpenditure financialExpenditure = new FinancialExpenditure();
|
|
|
+ financialExpenditure.setAprovalTime(endTime);
|
|
|
+ financialExpenditure.setBatchNo(pWorkOrderInfo.getId().toString());
|
|
|
+ financialExpenditure.setFinancialProcessNo(pWorkOrderInfo.getId().toString());
|
|
|
+ financialExpenditure.setApplyUser(realName);
|
|
|
+ financialExpenditure.setApplyUserId(pWorkOrderInfo.getCreator());
|
|
|
+ financialExpenditure.setProcessId(pWorkOrderInfo.getProcess());
|
|
|
+ financialExpenditure.setEffectiveTime(DateUtil.format(endTime,DateUtil.ISO_YEAR_MONTH_FORMAT));
|
|
|
+ financialExpenditure.setType(expenditureTypeEnum);
|
|
|
+ List<OaColumnDto> columns = oaInputDto.getColumns();
|
|
|
+ if (columns != null && columns.size() > 0) {
|
|
|
+ for (OaColumnDto column : columns) {
|
|
|
+ List<OaInputDto> columnList = column.getList();
|
|
|
+ if (columnList != null && columnList.size() > 0) {
|
|
|
+ for (OaInputDto inputDto : columnList) {
|
|
|
+ String name = inputDto.getName();
|
|
|
Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setMusicGroupId(o.toString());
|
|
|
+ if (Objects.isNull(o) || StringUtils.isEmpty(o.toString())) {
|
|
|
continue;
|
|
|
}
|
|
|
- }else if(name.contains("退费项目")){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
+ if (StringUtils.equals(name,"课程组编号")) {
|
|
|
+ financialExpenditure.setVipGroupId(Long.parseLong(o.toString()));
|
|
|
+ } else if (StringUtils.equals(name,"课程类型")) {
|
|
|
+ financialExpenditure.setGroupType(o.toString());
|
|
|
+ } else if (StringUtils.equals(name,"乐团编号")) {
|
|
|
+ financialExpenditure.setMusicGroupId(o.toString());
|
|
|
+ } else if (StringUtils.equals(name,"退费项目")) {
|
|
|
financialExpenditure.setReturnFeeType(o.toString());
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("学员编号")){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
+ } else if (StringUtils.equals(name,"学员编号")) {
|
|
|
financialExpenditure.setStudentId(Integer.parseInt(o.toString()));
|
|
|
- continue;
|
|
|
- }else {
|
|
|
- continue nullUser;
|
|
|
- }
|
|
|
- }else if(name.contains("分部")){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- int organId = Integer.parseInt(o.toString());
|
|
|
- Organization organization = organizationDao.get(organId);
|
|
|
- if(organization != null){
|
|
|
+ } else if (StringUtils.equals(name,"分部")) {
|
|
|
+ Organization organization = organizationDao.get(Integer.parseInt(o.toString()));
|
|
|
+ if (organization != null) {
|
|
|
financialExpenditure.setOrganId(organization.getId());
|
|
|
financialExpenditure.setOrganName(organization.getName());
|
|
|
}
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("金额") || name.contains("住宿费") || name.contains("出差补助") || name.contains("交通费")){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
+ } else if (StringUtils.equals(name,"金额") || StringUtils.equals(name,"住宿费") || StringUtils.equals(name,"出差补助") || StringUtils.equals(name,"交通费")) {
|
|
|
financialExpenditure.setAmount(financialExpenditure.getAmount().add(new BigDecimal(Double.parseDouble(o.toString()))));
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("情况说明") || name.contains("事由") ){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
+ financialExpenditure.setCurrentAmount(financialExpenditure.getAmount());
|
|
|
+ } else if (StringUtils.equals(name,"情况说明") || StringUtils.equals(name,"事由")) {
|
|
|
financialExpenditure.setCause(o.toString());
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("支出类型")){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
+ } else if (StringUtils.equals(name,"支出类型")) {
|
|
|
financialExpenditure.setType(ExpenditureTypeEnum.valueOfDesc(o.toString()));
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("费用类型")){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setFeeProject(FeeProjectEnum.valueOfDesc(o.toString()));
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("住宿费")){
|
|
|
- Object o = hashMap.get(inputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setFeeProject(FeeProjectEnum.valueOfDesc(o.toString()));
|
|
|
- continue;
|
|
|
+ } else if (StringUtils.equals(name,"费用类型") || StringUtils.equals(name,"费用类别")) {
|
|
|
+ FeeProjectEnum projectEnum = FeeProjectEnum.valueOfDesc(o.toString());
|
|
|
+ if(projectEnum == null){
|
|
|
+ projectEnum = feeProjectEnum;
|
|
|
+ }
|
|
|
+ financialExpenditure.setFeeProject(projectEnum);
|
|
|
+ }else if (StringUtils.equals(name,"日期") || StringUtils.equals(name,"费用发生日期")) {
|
|
|
+ financialExpenditure.setPaymentTime(DateUtil.stringToDate(o.toString(),DateUtil.DEFAULT_PATTERN));
|
|
|
+ } else if (StringUtils.equals(name,"费用分摊月份")) {
|
|
|
+ financialExpenditure.setEffectiveTime(o.toString());
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ if(financialExpenditure.getPaymentTime() == null){
|
|
|
+ financialExpenditure.setPaymentTime(endTime);
|
|
|
+ }
|
|
|
+ if(StringUtils.isEmpty(financialExpenditure.getEffectiveTime())){
|
|
|
+ financialExpenditure.setEffectiveTime(DateUtil.format(financialExpenditure.getPaymentTime(),DateUtil.ISO_YEAR_MONTH_FORMAT));
|
|
|
+ }
|
|
|
+ financialExpenditureList.add(financialExpenditure);
|
|
|
}
|
|
|
- financialExpenditureList.add(financialExpenditure);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -426,6 +474,10 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
}
|
|
|
if(CollectionUtils.isNotEmpty(financialExpenditures)){
|
|
|
for (FinancialExpenditure financialExpenditure : financialExpenditures) {
|
|
|
+ financialExpenditure.setAprovalTime(endTime);
|
|
|
+ financialExpenditure.setPaymentTime(endTime);
|
|
|
+ financialExpenditure.setType(expenditureTypeEnum);
|
|
|
+ financialExpenditure.setEffectiveTime(DateUtil.format(endTime,DateUtil.ISO_YEAR_MONTH_FORMAT));
|
|
|
financialExpenditure.setApplyUser(realName);
|
|
|
financialExpenditure.setType(ExpenditureTypeEnum.REFUND);
|
|
|
financialExpenditure.setFeeProject(FeeProjectEnum.REFUND);
|
|
@@ -441,11 +493,14 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
financialExpenditureDao.batchInsert(financialExpenditureList);
|
|
|
}else {
|
|
|
FinancialExpenditure financialExpenditure = new FinancialExpenditure();
|
|
|
+ financialExpenditure.setAprovalTime(endTime);
|
|
|
+ financialExpenditure.setPaymentTime(endTime);
|
|
|
financialExpenditure.setBatchNo(workOrderId.toString());
|
|
|
financialExpenditure.setFinancialProcessNo(workOrderId.toString());
|
|
|
financialExpenditure.setApplyUser(realName);
|
|
|
financialExpenditure.setApplyUserId(pWorkOrderInfo.getCreator());
|
|
|
financialExpenditure.setProcessId(pWorkOrderInfo.getProcess());
|
|
|
+ financialExpenditure.setEffectiveTime(DateUtil.format(endTime,DateUtil.ISO_YEAR_MONTH_FORMAT));
|
|
|
Integer organId = financialExpenditureDao.getDeptId(pWorkOrderInfo.getDeptId());
|
|
|
Organization organization = organizationDao.get(organId);
|
|
|
if(organization != null){
|
|
@@ -454,30 +509,19 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
}
|
|
|
for (OaInputDto oaInputDto : oaInputDtos) {
|
|
|
String name = oaInputDto.getName();
|
|
|
- if(name.contains("金额")){
|
|
|
- Object o = formData.get(oaInputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setAmount(new BigDecimal(Double.parseDouble(o.toString())));
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("情况说明")){
|
|
|
- Object o = formData.get(oaInputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setCause(o.toString());
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("支出类型")){
|
|
|
- Object o = formData.get(oaInputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setType(ExpenditureTypeEnum.valueOfDesc(o.toString()));
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(name.contains("费用类型")){
|
|
|
- Object o = formData.get(oaInputDto.getModel());
|
|
|
- if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
- financialExpenditure.setFeeProject(FeeProjectEnum.valueOfDesc(o.toString()));
|
|
|
- continue;
|
|
|
- }
|
|
|
+ Object o = formData.get(oaInputDto.getModel());
|
|
|
+ if(Objects.isNull(o) || StringUtils.isEmpty(o.toString())){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if(StringUtils.equals(name,"金额")){
|
|
|
+ financialExpenditure.setAmount(new BigDecimal(Double.parseDouble(o.toString())));
|
|
|
+ financialExpenditure.setCurrentAmount(financialExpenditure.getAmount());
|
|
|
+ }else if(StringUtils.equals(name,"情况说明")){
|
|
|
+ financialExpenditure.setCause(o.toString());
|
|
|
+ }else if(StringUtils.equals(name,"支出类型")){
|
|
|
+ financialExpenditure.setType(ExpenditureTypeEnum.valueOfDesc(o.toString()));
|
|
|
+ }else if(StringUtils.equals(name,"费用类型") || StringUtils.equals(name,"费用类别")){
|
|
|
+ financialExpenditure.setFeeProject(FeeProjectEnum.valueOfDesc(o.toString()));
|
|
|
}
|
|
|
}
|
|
|
financialExpenditureDao.insert(financialExpenditure);
|
|
@@ -498,6 +542,7 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
}
|
|
|
JSONObject formData = JSONObject.parseObject(data);
|
|
|
String formStructure = financialExpenditureDao.getTplInfo(tplInfoId);
|
|
|
+ Date now = new Date();
|
|
|
OaFormStructureDto oaFormStructureDto = JSONObject.parseObject(formStructure, OaFormStructureDto.class);
|
|
|
List<OaInputDto> oaInputDtos = oaFormStructureDto.getList();
|
|
|
List<FinancialExpenditure> financialExpenditureList = new ArrayList<>();
|
|
@@ -512,6 +557,9 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
List<HashMap> hashMaps = JSONObject.parseArray(formData.get(submitForm).toString(), HashMap.class);
|
|
|
nullUser: for (HashMap hashMap : hashMaps) {
|
|
|
FinancialExpenditure financialExpenditure = new FinancialExpenditure();
|
|
|
+ financialExpenditure.setAprovalTime(now);
|
|
|
+ financialExpenditure.setPaymentTime(now);
|
|
|
+ financialExpenditure.setEffectiveTime(DateUtil.format(now,DateUtil.ISO_YEAR_MONTH_FORMAT));
|
|
|
List<OaColumnDto> columns = oaInputDto.getColumns();
|
|
|
if(columns != null && columns.size() > 0){
|
|
|
for (OaColumnDto column : columns) {
|
|
@@ -519,25 +567,25 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
if(columnList != null && columnList.size() > 0){
|
|
|
for (OaInputDto inputDto : columnList) {
|
|
|
String name = inputDto.getName();
|
|
|
- if(name.contains("课程组编号")){
|
|
|
+ if(StringUtils.equals(name,"课程组编号")){
|
|
|
Object o = hashMap.get(inputDto.getModel());
|
|
|
if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
financialExpenditure.setVipGroupId(Long.parseLong(o.toString()));
|
|
|
continue;
|
|
|
}
|
|
|
- }else if(name.contains("课程类型")){
|
|
|
+ }else if(StringUtils.equals(name,"课程类型")){
|
|
|
Object o = hashMap.get(inputDto.getModel());
|
|
|
if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
financialExpenditure.setGroupType(o.toString());
|
|
|
continue;
|
|
|
}
|
|
|
- }else if(name.contains("乐团编号")){
|
|
|
+ }else if(StringUtils.equals(name,"乐团编号")){
|
|
|
Object o = hashMap.get(inputDto.getModel());
|
|
|
if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
financialExpenditure.setMusicGroupId(o.toString());
|
|
|
continue;
|
|
|
}
|
|
|
- }else if(name.contains("学员编号")){
|
|
|
+ }else if(StringUtils.equals(name,"学员编号")){
|
|
|
Object o = hashMap.get(inputDto.getModel());
|
|
|
if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
financialExpenditure.setStudentId(Integer.parseInt(o.toString()));
|
|
@@ -545,10 +593,11 @@ public class FinancialExpenditureServiceImpl extends BaseServiceImpl<Long, Finan
|
|
|
}else {
|
|
|
continue nullUser;
|
|
|
}
|
|
|
- }else if(name.contains("金额")){
|
|
|
+ }else if(StringUtils.equals(name,"金额")){
|
|
|
Object o = hashMap.get(inputDto.getModel());
|
|
|
if(Objects.nonNull(o) && StringUtils.isNotEmpty(o.toString())){
|
|
|
financialExpenditure.setAmount(new BigDecimal(Double.parseDouble(o.toString())));
|
|
|
+ financialExpenditure.setCurrentAmount(financialExpenditure.getAmount());
|
|
|
continue;
|
|
|
}
|
|
|
}
|