}
}
private boolean hasPaymentFees(final EventType candidacyEnrolmentEventType) {
final PhdProgramServiceAgreementTemplate serviceAgreementTemplate = getPhdProgram().getServiceAgreementTemplate();
for (final PostingRule postingRule : serviceAgreementTemplate.getAllPostingRulesFor(candidacyEnrolmentEventType)) {
if (postingRule.isActive()) {
if (postingRule instanceof PhdProgramCandidacyPR) {
final PhdProgramCandidacyPR phdProgramCandidacyPR = (PhdProgramCandidacyPR) postingRule;
if (phdProgramCandidacyPR.getFixedAmount().isPositive()) {
return true;