Update DrukujBilet.java
This commit is contained in:
parent
a9ad9f24d1
commit
85f3bf2b04
@ -45,9 +45,6 @@ public class DrukujBilet extends StolowkaZPM {
|
||||
DefaultTableModel defaultTableModel = new DefaultTableModel();
|
||||
|
||||
public static void oknoDrukujBilet() {
|
||||
|
||||
//callClass.enterName();
|
||||
|
||||
EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
try {
|
||||
@ -83,7 +80,7 @@ public class DrukujBilet extends StolowkaZPM {
|
||||
protected int min;
|
||||
protected int godz;
|
||||
protected String dataIczas;
|
||||
protected int IDuzytkownikaPrint;
|
||||
//protected static int IDuzytkownika1;
|
||||
|
||||
public void zegar() {
|
||||
Thread zegar = new Thread() {
|
||||
@ -118,11 +115,17 @@ public class DrukujBilet extends StolowkaZPM {
|
||||
public DrukujBilet() throws SQLException {
|
||||
initialize();
|
||||
zegar();
|
||||
//setName();
|
||||
}
|
||||
|
||||
public void printName(int recivediDuzytkownikaSet) {
|
||||
IDuzytkownikaPrint = recivediDuzytkownikaSet;
|
||||
/*
|
||||
public int setName() {
|
||||
return StolowkaZPM.IDuzytkownika;
|
||||
}
|
||||
public void setName(int IDuzytkownika1) {
|
||||
StolowkaZPM.IDuzytkownika = IDuzytkownika1;
|
||||
}
|
||||
*/
|
||||
|
||||
private void initialize() throws SQLException {
|
||||
|
||||
@ -442,12 +445,12 @@ public class DrukujBilet extends StolowkaZPM {
|
||||
try {
|
||||
String query="INSERT INTO bilety(KtoZabralID, DataCzas, KosztBiletu, CzyZaplacony) VALUES (?,?,?,?)";
|
||||
PreparedStatement pst = conn.prepareStatement(query);
|
||||
pst.setInt(1, IDuzytkownikaPrint);
|
||||
pst.setInt(1, StolowkaZPM.IDuzytkownika);
|
||||
pst.setString(2, dataIczas);
|
||||
pst.setInt(3, sumaKoszt);
|
||||
pst.setString(4, "nie");
|
||||
pst.execute();
|
||||
JOptionPane.showMessageDialog(null, " ** "+IDuzytkownikaPrint+" ** "+dataIczas+" ** "+sumaKoszt+" ** "+"nie");
|
||||
JOptionPane.showMessageDialog(null, " ** "+StolowkaZPM.IDuzytkownika+" ** "+dataIczas+" ** "+sumaKoszt+" ** "+"nie");
|
||||
rs.close();
|
||||
pst.close();
|
||||
MenuStolowkaZPM.setVisible(false);
|
||||
|
Loading…
Reference in New Issue
Block a user