private void flag() { Set<Transaction.FraudStatus> permittedFlags = EnumSet.allOf(Transaction.FraudStatus.class); if (controller.getCurrentUser().getRole() != User.Role.AUDITOR) { permittedFlags.remove(Transaction.FraudStatus.REVERSED); } Transaction.FraudStatus status = (Transaction.FraudStatus) JOptionPane.showInputDialog( this, "Flag as:", "Flag", JOptionPane.QUESTION_MESSAGE, null, permittedFlags.toArray(), Transaction.FraudStatus.NOT_FLAGGED); if (status == null) { return; } try { Transaction transaction = account.getHistory().get(historyTable.getSelectedRow()); transaction.setFraudStatus(status, account); update(); } catch (InvalidInputException iix) { controller.handleException(this, iix); } catch (InsufficientFundsException ifx) { controller.handleException(this, ifx); } }
private void transfer() { String amountStr = JOptionPane.showInputDialog( this, "Input an amount to transfer:", "Transfer", JOptionPane.QUESTION_MESSAGE); if (amountStr == null) { return; } try { BigDecimal amount = FORMATTER.stringToValue(amountStr); Set<Account> accounts = new HashSet<Account>(controller.getCurrentUser().getAccounts()); Iterator<Account> iterator = accounts.iterator(); while (iterator.hasNext()) { Account account = iterator.next(); if (account.getType().isLoan() && account.getBalance().negate().compareTo(amount) < 0) { iterator.remove(); } } if (!accounts.isEmpty()) { Account account = (Account) JOptionPane.showInputDialog( this, "Choose an account:", "Transfer", JOptionPane.QUESTION_MESSAGE, null, accounts.toArray(), accounts.iterator().next()); if (account != null) { this.account.withdraw(amount); account.deposit(amount); controller.updateBankDisplay(); } } else { JOptionPane.showMessageDialog( this, "No accounts can accept that balance.", "Transfer failed", JOptionPane.ERROR_MESSAGE); return; } } catch (ParseException px) { controller.handleException(this, px); } catch (InvalidInputException iix) { controller.handleException(this, iix); } catch (InsufficientFundsException ifx) { controller.handleException(this, ifx); } }
private void initComponents() { setLayout(new BorderLayout()); JPanel sidePanel = new JPanel(new BorderLayout()); sidePanel.add(infoPanel, BorderLayout.NORTH); sidePanel.add(new JSeparator(), BorderLayout.CENTER); JPanel buttonPanel = new JPanel(new GridLayout(3, 1)); JButton spendButton = new JButton("Spend"); spendButton.setVisible( !account.isClosed() && controller.getCurrentUser() == accountOwner && (account.getType() == Account.Type.CHECKING || account.getType() == Account.Type.LINE_OF_CREDIT)); spendButton.addActionListener( new ActionListener() { @Override public void actionPerformed(ActionEvent e) { spend(); } }); buttonPanel.add(spendButton); JButton transferButton = new JButton("Transfer"); transferButton.setVisible( !account.isClosed() && controller.getCurrentUser() == accountOwner && !account.getType().isLoan()); transferButton.addActionListener( new ActionListener() { @Override public void actionPerformed(ActionEvent e) { transfer(); } }); buttonPanel.add(transferButton); final JButton flagButton = new JButton("Flag transaction"); flagButton.setEnabled(false); flagButton.addActionListener( new ActionListener() { @Override public void actionPerformed(ActionEvent e) { flag(); } }); buttonPanel.add(flagButton); sidePanel.add(buttonPanel, BorderLayout.SOUTH); add(sidePanel, BorderLayout.WEST); historyTable = new JTable(); historyTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); historyTable .getSelectionModel() .addListSelectionListener( new ListSelectionListener() { @Override public void valueChanged(ListSelectionEvent e) { flagButton.setEnabled(false); if (!account.isClosed() && historyTable.getSelectedRow() >= 0) { Transaction transaction = account.getHistory().get(historyTable.getSelectedRow()); if (Bank.getInstance().getCurrentMonth() - transaction.getTimestamp() < 2 && transaction.getFraudStatus() != Transaction.FraudStatus.REVERSED) { flagButton.setEnabled(true); } } } }); JScrollPane tablePane = new JScrollPane(historyTable); add(tablePane, BorderLayout.CENTER); }