return;
}
if (selectedButton.equals(B_MUSTERI)) {
if (bireyselMusteriControl()) {
BireyselMusteri bm = new BireyselMusteri();
bm.setKod(0);
bm.setAd(cTextFieldAd.getText().toUpperCase());
bm.setSoyad(cTextFieldSoyad.getText().toUpperCase());
if (bMusteriTelNo != null) {
bm.setTelNo(bMusteriTelNo.toString());
} else {
bm.setTelNo("-");
}
if (bMusteriMail.length() > 0) {
bm.setMail(bMusteriMail);
} else {
bm.setMail("-");
}
if (bMusteriAdres.length() > 0) {
bm.setAdres(bMusteriAdres);
} else {
bm.setAdres("-");
}
if (bMusteriTCNo.length() > 0) {
bm.setTcNo(bMusteriTCNo);
} else {
bm.setTcNo("-");
}
bm.setBaslamaTarihi(jDateChooserMusteriTarih.getDate());
boolean check = HibernateManager.getInstance().save(bm);
if (check) {
AutoClosingMessageDialog.showAutoClosingMessageDialog(
"Bireysel müşteri sisteme eklenmiştir.", 2);
geriButtonClicked();