Scan pramuniaga di setiap barang yang discan
parent
03eed5ce84
commit
d0dcbf8795
@ -0,0 +1,169 @@
|
|||||||
|
/*
|
||||||
|
* To change this license header, choose License Headers in Project Properties.
|
||||||
|
* To change this template file, choose Tools | Templates
|
||||||
|
* and open the template in the editor.
|
||||||
|
*/
|
||||||
|
package id.amigogroup.posterminal.transaksi;
|
||||||
|
|
||||||
|
import javafx.beans.property.SimpleObjectProperty;
|
||||||
|
import javafx.beans.property.SimpleStringProperty;
|
||||||
|
import javafx.scene.control.Button;
|
||||||
|
import javafx.scene.control.ComboBox;
|
||||||
|
import javafx.scene.control.TextField;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author AGNES
|
||||||
|
*/
|
||||||
|
public class TabelBarangRetur {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private SimpleStringProperty tcKodeRetur;
|
||||||
|
private SimpleStringProperty tcNamaRetur;
|
||||||
|
private SimpleStringProperty tcUkurRetur;
|
||||||
|
private SimpleStringProperty tcJumlahRetur;
|
||||||
|
private SimpleStringProperty tcHargaRetur;
|
||||||
|
private SimpleStringProperty tcDisc1Retur;
|
||||||
|
private SimpleStringProperty tcDisc2Retur;
|
||||||
|
private SimpleStringProperty tcSubtotalRetur;
|
||||||
|
private SimpleObjectProperty<TextField>tcPramuniagaRetur;
|
||||||
|
|
||||||
|
public TabelBarangRetur(String tcKodeRetur, String tcNamaRetur, String tcUkurRetur, String tcJumlahRetur, String tcHargaRetur, String tcDisc1Retur,
|
||||||
|
String tcDisc2Retur, String tcSubtotalRetur, TextField tcPramuniagaRetur) {
|
||||||
|
this.tcKodeRetur = new SimpleStringProperty(tcKodeRetur);
|
||||||
|
this.tcNamaRetur = new SimpleStringProperty(tcNamaRetur);
|
||||||
|
this.tcUkurRetur = new SimpleStringProperty(tcUkurRetur);
|
||||||
|
this.tcJumlahRetur = new SimpleStringProperty(tcJumlahRetur);
|
||||||
|
this.tcHargaRetur = new SimpleStringProperty(tcHargaRetur);
|
||||||
|
this.tcDisc1Retur = new SimpleStringProperty(tcDisc1Retur);
|
||||||
|
this.tcDisc2Retur = new SimpleStringProperty(tcDisc2Retur);
|
||||||
|
this.tcSubtotalRetur = new SimpleStringProperty(tcSubtotalRetur);
|
||||||
|
this.tcPramuniagaRetur = new SimpleObjectProperty<TextField>(tcPramuniagaRetur);
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the tcKode
|
||||||
|
*/
|
||||||
|
public String getTcKodeRetur() {
|
||||||
|
return tcKodeRetur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcKode the tcKode to set
|
||||||
|
*/
|
||||||
|
public void setTcKodeRetur(String tcKodeRetur) {
|
||||||
|
this.tcKodeRetur.set(tcKodeRetur);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the tcNama
|
||||||
|
*/
|
||||||
|
public String getTcNamaRetur() {
|
||||||
|
return tcNamaRetur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcNama the tcNama to set
|
||||||
|
*/
|
||||||
|
public void setTcNamaRetur(String tcNamaRetur) {
|
||||||
|
this.tcNamaRetur.set(tcNamaRetur);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the tcUkur
|
||||||
|
*/
|
||||||
|
public String getTcUkurRetur() {
|
||||||
|
return tcUkurRetur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcUkur the tcUkur to set
|
||||||
|
*/
|
||||||
|
public void setTcUkurRetur(String tcUkurRetur) {
|
||||||
|
this.tcUkurRetur.set(tcUkurRetur);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the tcJumlah
|
||||||
|
*/
|
||||||
|
public String getTcJumlahRetur() {
|
||||||
|
return tcJumlahRetur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcJumlah the tcJumlah to set
|
||||||
|
*/
|
||||||
|
public void setTcJumlahRetur(String tcJumlahRetur) {
|
||||||
|
this.tcJumlahRetur.set(tcJumlahRetur);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the tcHarga
|
||||||
|
*/
|
||||||
|
public String getTcHargaRetur() {
|
||||||
|
return tcHargaRetur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcHarga the tcHarga to set
|
||||||
|
*/
|
||||||
|
public void setTcHargaRetur(String tcHargaRetur) {
|
||||||
|
this.tcHargaRetur.set(tcHargaRetur);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the tcDisc1
|
||||||
|
*/
|
||||||
|
public String getTcDisc1Retur() {
|
||||||
|
return tcDisc1Retur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcDisc1 the tcDisc1 to set
|
||||||
|
*/
|
||||||
|
public void setTcDisc1Retur(String tcDisc1Retur) {
|
||||||
|
this.tcDisc1Retur.set(tcDisc1Retur);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the tcDisc2
|
||||||
|
*/
|
||||||
|
public String getTcDisc2Retur() {
|
||||||
|
return tcDisc2Retur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcDisc2 the tcDisc2 to set
|
||||||
|
*/
|
||||||
|
public void setTcDisc2Retur(String tcDisc2Retur) {
|
||||||
|
this.tcDisc2Retur.set(tcDisc2Retur);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the tcSubtotal
|
||||||
|
*/
|
||||||
|
public String getTcSubtotalRetur() {
|
||||||
|
return tcSubtotalRetur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcSubtotal the tcSubtotal to set
|
||||||
|
*/
|
||||||
|
public void setTcSubtotalRetur(String tcSubtotalRetur) {
|
||||||
|
this.tcSubtotalRetur.set(tcSubtotalRetur);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return the tcPramuniaga
|
||||||
|
*/
|
||||||
|
public TextField getTcPramuniagaRetur() {
|
||||||
|
return tcPramuniagaRetur.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param tcPramuniaga the tcPramuniaga to set
|
||||||
|
*/
|
||||||
|
public void setTcPramuniagaRetur(TextField tcPramuniagaRetur) {
|
||||||
|
this.tcPramuniagaRetur.set(tcPramuniagaRetur);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue