Git Repository Public Repository

RRRRHHHH_Code

URLs

Copy to Clipboard

Diff Revisions 998673 ... vs c92b61 ... for ruralHouses client/src/gui/listOfBookingRequestsGUI.java

Diff revisions: vs.
  @@ -81,7 +81,7 @@
81 81 };
82 82 scrollPane.setViewportView(table);
83 83 tableModel = new DefaultTableModel(null, new String[] {
84 - "Booking Number", "Is paid", "Booking Date","Name","E-mail", "Telephone" });
84 + "Booking Number", "Booking Date","Name","E-mail", "Telephone" });
85 85
86 86 // Maybe there is a better way to avoid interaction.
87 87 // table.setEnabled(false);
  @@ -123,21 +123,12 @@
123 123 btnDenyAddition.setBounds(390, 395, 169, 25);
124 124 contentPane.add(btnDenyAddition);
125 125
126 - JButton btnSetAsPaid = new JButton("Set as paid");
127 - btnSetAsPaid.setBounds(239, 395, 89, 23);
128 - btnSetAsPaid.addActionListener(new ActionListener() {
129 - public void actionPerformed(ActionEvent arg0) {
130 -
131 - }
132 - });
133 - contentPane.add(btnSetAsPaid);
134 126 Enumeration<Booking> en = this.bookings.elements();
135 127 Booking book;
136 128 while (en.hasMoreElements()) {
137 129 book = en.nextElement();
138 130 Vector<Object> row = new Vector<Object>();
139 131 row.add(book.getBookNumber());
140 - row.add(book.isPaid());
141 132 row.add(book.getBookDate());
142 133 row.add(book.getClient().getName());
143 134 row.add(book.getClient().getMailAccount());