Cambios
This commit is contained in:
parent
601d36fde5
commit
e5b5f93087
|
@ -1,4 +1,4 @@
|
|||
#Thu, 14 Mar 2024 23:03:37 -0600
|
||||
#Thu, 14 Mar 2024 23:18:06 -0600
|
||||
|
||||
|
||||
C\:\\Users\\juanl\\Documents\\SalaDeConciertos=
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -91,8 +91,8 @@ public class ControladorBoleto implements ActionListener{
|
|||
registro.setLocationRelativeTo(null);
|
||||
registro.setVisible(true);
|
||||
ventana.dispose();
|
||||
}
|
||||
if(e.getSource()== ventana.getBtnSeleccionarAsiento()){
|
||||
}else{
|
||||
if(e.getSource()== ventana.getBtnSeleccionarAsiento()){
|
||||
if(ventana.getLabelNumeroAsiento().getText().isEmpty()){
|
||||
JOptionPane.showMessageDialog(null, "Error. Selecciona Un Asiento Libre");
|
||||
}
|
||||
|
@ -107,6 +107,7 @@ public class ControladorBoleto implements ActionListener{
|
|||
ventana.getLabelNumeroAsiento().setText("");
|
||||
ventana.getLabelCostoAsiento().setText("");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -28,6 +28,8 @@ public class seleccionarBoleto extends javax.swing.JFrame {
|
|||
this.user = user;
|
||||
initComponents();
|
||||
ControladorBoleto controlador = new ControladorBoleto(this);
|
||||
BtnRegreso.addActionListener(controlador);
|
||||
btnSeleccionarAsiento.addActionListener(controlador);
|
||||
}
|
||||
|
||||
public JButton getBtnSeleccionarAsiento() {
|
||||
|
|
Loading…
Reference in New Issue