Skip to content

Commit

Permalink
formating
Browse files Browse the repository at this point in the history
  • Loading branch information
JantBogard committed Nov 25, 2024
1 parent c34717a commit 4343b0c
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ public class InventoryWardBrowser extends ModalJFrame implements InventoryListen
private static final long serialVersionUID = 1L;
private static final int PAGE_SIZE = 50;
private final String[] pColums = {
MessageBundle.getMessage("angal.inventory.referenceshow.col").toUpperCase(),
MessageBundle.getMessage("angal.common.ward.col").toUpperCase(),
MessageBundle.getMessage("angal.common.date.col").toUpperCase(),
MessageBundle.getMessage("angal.inventory.status.col").toUpperCase(),
MessageBundle.getMessage("angal.common.user.col").toUpperCase()
MessageBundle.getMessage("angal.inventory.referenceshow.col").toUpperCase(),
MessageBundle.getMessage("angal.common.ward.col").toUpperCase(),
MessageBundle.getMessage("angal.common.date.col").toUpperCase(),
MessageBundle.getMessage("angal.inventory.status.col").toUpperCase(),
MessageBundle.getMessage("angal.common.user.col").toUpperCase()
};
private final int[] pColumwidth = { 150, 150, 100, 100, 150 };
private final MedicalInventoryManager medicalInventoryManager = Context.getApplicationContext().getBean(MedicalInventoryManager.class);
Expand Down Expand Up @@ -541,8 +541,8 @@ public InventoryBrowsingModel(int startIndex, int pageSize) {
String type = InventoryType.ward.toString();
try {
Page<MedicalInventory> medInventorypage = medicalInventoryManager.getMedicalInventoryByParamsPageable(dateFrom, dateTo, status, type,
startIndex,
pageSize);
startIndex,
pageSize);
inventoryList = medInventorypage.getContent();
} catch (OHServiceException e) {
OHServiceExceptionUtil.showMessages(e);
Expand Down

0 comments on commit 4343b0c

Please sign in to comment.