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