Skip to content

Commit e2842de

Browse files
FINERACT-2431: Fix typo in populateSharedAccountsWorkbook (#5293)
1 parent 7ee0f7f commit e2842de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fineract-provider/src/main/java/org/apache/fineract/infrastructure/bulkimport/service/BulkImportWorkbookPopulatorServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public Response getTemplate(String entityType, Long officeId, Long staffId, fina
201201
} else if (entityType.trim().equalsIgnoreCase(GlobalEntityType.STAFF.toString())) {
202202
populator = populateStaffWorkbook(officeId);
203203
} else if (entityType.trim().equalsIgnoreCase(GlobalEntityType.SHARE_ACCOUNTS.toString())) {
204-
populator = populateSharedAcountsWorkbook(officeId);
204+
populator = populateSharedAccountsWorkbook(officeId);
205205
} else if (entityType.trim().equalsIgnoreCase(GlobalEntityType.SAVINGS_ACCOUNT.toString())) {
206206
populator = populateSavingsAccountWorkbook(officeId, staffId);
207207
} else if (entityType.trim().equalsIgnoreCase(GlobalEntityType.SAVINGS_TRANSACTIONS.toString())) {
@@ -510,7 +510,7 @@ private WorkbookPopulator populateStaffWorkbook(Long officeId) {
510510
return new StaffWorkbookPopulator(new OfficeSheetPopulator(offices));
511511
}
512512

513-
private WorkbookPopulator populateSharedAcountsWorkbook(Long officeId) {
513+
private WorkbookPopulator populateSharedAccountsWorkbook(Long officeId) {
514514
this.context.authenticatedUser().validateHasReadPermission(TemplatePopulateImportConstants.CLIENT_ENTITY_TYPE);
515515
this.context.authenticatedUser().validateHasReadPermission(TemplatePopulateImportConstants.SHARED_ACCOUNT_ENTITY_TYPE);
516516
List<ShareProductData> shareProductDataList = fetchSharedProducts();

0 commit comments

Comments
 (0)