private void btnHitungActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
harga = Integer.parseInt(txtSatuan.getText());
jumlahBeli = Integer.parseInt(txtJumlah.getText());
Subtotal = harga * jumlahBeli;
if(jumlahBeli>=3){
diskon=Subtotal*0.2;
}else{
diskon=0;
}
txtDiskon.setText(" "+diskon);
totalBayar = Subtotal - diskon;
txtBayar.setText(" "+totalBayar);
}