|
@@ -221,6 +221,8 @@ public class ExportServiceImpl implements ExportService {
|
|
} else if (row.getChargeType() != null && (SporadicChargeTypeEnum.RECHARGE.getCode().equals(row.getChargeType()) ||
|
|
} else if (row.getChargeType() != null && (SporadicChargeTypeEnum.RECHARGE.getCode().equals(row.getChargeType()) ||
|
|
SporadicChargeTypeEnum.HIGH_ONLINE_ACTIVITY.getCode().equals(row.getChargeType()))) {
|
|
SporadicChargeTypeEnum.HIGH_ONLINE_ACTIVITY.getCode().equals(row.getChargeType()))) {
|
|
row.setRechargeFee(row.getActualAmount());
|
|
row.setRechargeFee(row.getActualAmount());
|
|
|
|
+ } else if (row.getChargeType() != null && SporadicChargeTypeEnum.CLOUD_TEACHER_BUY.getCode().equals(row.getChargeType())) {
|
|
|
|
+ row.setCloudTeacherFee(row.getActualAmount());
|
|
} else {
|
|
} else {
|
|
row.setOtherFee(row.getActualAmount());
|
|
row.setOtherFee(row.getActualAmount());
|
|
}
|
|
}
|
|
@@ -512,6 +514,8 @@ public class ExportServiceImpl implements ExportService {
|
|
} else if (row.getChargeType() != null && (SporadicChargeTypeEnum.RECHARGE.getCode().equals(row.getChargeType()) ||
|
|
} else if (row.getChargeType() != null && (SporadicChargeTypeEnum.RECHARGE.getCode().equals(row.getChargeType()) ||
|
|
SporadicChargeTypeEnum.HIGH_ONLINE_ACTIVITY.getCode().equals(row.getChargeType()))) {
|
|
SporadicChargeTypeEnum.HIGH_ONLINE_ACTIVITY.getCode().equals(row.getChargeType()))) {
|
|
row.setRechargeFee(row.getActualAmount());
|
|
row.setRechargeFee(row.getActualAmount());
|
|
|
|
+ } else if (row.getChargeType() != null && SporadicChargeTypeEnum.CLOUD_TEACHER_BUY.getCode().equals(row.getChargeType())) {
|
|
|
|
+ row.setCloudTeacherFee(row.getActualAmount());
|
|
} else {
|
|
} else {
|
|
row.setOtherFee(row.getActualAmount());
|
|
row.setOtherFee(row.getActualAmount());
|
|
}
|
|
}
|