|
|
|
Java GUI ขอแนวทางการแก้ปัญหา หน้าขายสินค้าหน่อยครับ (ไปไม่ถูกจริงๆ) |
|
|
|
|
|
|
|
แอดสินค้าจาก ปุ่ม เพิ่มสินค้าครับ Code ปุ่มครับ
Code (Java)
Object[] data = new Object[0];
DefaultTableModel std = new DefaultTableModel();
std = (DefaultTableModel) table2.getModel();
std.addRow(data);
int row = table.getSelectedRow();
int row1 = table2.getRowCount() - 1;
if (row == -1) {
JOptionPane.showMessageDialog(null, "กรูณาค้นสินค้าและเลือกสินค้าก่อน", "เลือกสินค้าก่อน", JOptionPane.ERROR_MESSAGE); //ดึงหมายเลขแถวที่ผู้ใช้เลือก
std.removeRow(row1);
count();
return;
} else {
String id = table.getValueAt(row, 0).toString();
String name = table.getValueAt(row, 1).toString();
String unit = table.getValueAt(row, 2).toString();
String price = table.getValueAt(row, 3).toString();
String amount = table.getValueAt(row, 4).toString();
table2.setValueAt(bill.getText(), row1, 0);
table2.setValueAt(count++, row1, 1);
table2.setValueAt(id, row1, 2);
table2.setValueAt(name, row1, 3);
table2.setValueAt(unit, row1, 4);
String unitbuy2 = JOptionPane.showInputDialog(this, "ใส่จำนวนที่ต้องการซื้อ", "กรอกจำนวนที่ต้องการซื้อ", JOptionPane.INFORMATION_MESSAGE);
if (unitbuy2 == null) {
JOptionPane.showMessageDialog(null, "กรุณากรอกจำนวน");
std.removeRow(row1);
count = 1;
return;
}
if (unitbuy2.matches("[0-9]+$")) {
} else {
JOptionPane.showMessageDialog(null, "กรุณากรอกเป็นตัวเลขเท่านั้น");
std.removeRow(row1);
count = 1;
return;
}
unitbuy1 = Integer.parseInt(unitbuy2);
int amount1 = Integer.parseInt(amount);
if (unitbuy1 > amount1) {
JOptionPane.showMessageDialog(null, "สินค้าไม่พอขาย");
std.removeRow(row1);
count--;
return;
}
int pricebuy = Integer.parseInt(price);
int sum = unitbuy1 * pricebuy;
table2.setValueAt(unitbuy1, row1, 5);
table2.setValueAt(sum, row1, 6);
String showtotal2 = table2.getValueAt(row1, 6).toString();
int sum1;
sum1 = Integer.parseInt(showtotal2);
total = total + sum1;
String show = String.valueOf(total);
showtotal1.setText(show);
tax = 0.07;
tax = total * tax;
DecimalFormat df = new DecimalFormat("0.00");
String taxshow = String.valueOf(df.format(tax));
showtax.setText(taxshow);
saletotal = total + tax;
String saletotalshow = String.valueOf(df.format(saletotal));
showtotalsale.setText(saletotalshow);
for (int row11 = -1; row11 < row1; ++row11) {
String check1 = table.getValueAt(row, 4).toString();
int check2 = Integer.parseInt(check1);
int sumcheck = check2 - unitbuy1;
int checkstore[] = {sumcheck};
for (int a = 0; a < checkstore.length; a++) {
System.out.println(checkstore[a]); // ค่าArray จะเอาไปตัดสต๊อคอ้ะครับ
}
System.out.println(row11);
System.out.println(row1);
ผมไม่เข้าใจ ค่ามันออกมาก 2 รอบครับ T_T
Tag : Java, JAVA
|
|
|
|
|
|
Date :
2015-04-29 22:22:54 |
By :
theerat56 |
View :
2574 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี Error ด้วยครับ พยายามดูอยู่ครับ ลองดู Debug ดูไหมครับ บรรทัดไหน
|
|
|
|
|
Date :
2015-04-30 07:29:34 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|