Fungsi Mengambil data transaksi dari tabel nota tunai
parent
367c5bdd20
commit
e6be4cbbce
@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* 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.pencarian;
|
||||||
|
|
||||||
|
import id.amigogroup.posterminal.model.Barang;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author ronal
|
||||||
|
*/
|
||||||
|
public class BarangCache {
|
||||||
|
private static BarangCache instance;
|
||||||
|
private Map<String, Barang> daftarBarang;
|
||||||
|
|
||||||
|
private BarangCache(){
|
||||||
|
daftarBarang = new HashMap<>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static BarangCache getInstance(){
|
||||||
|
if(instance == null) instance = new BarangCache();
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Map<String, Barang> getDaftarBarang(){
|
||||||
|
return daftarBarang;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,169 +1,166 @@
|
|||||||
/*
|
/*
|
||||||
* To change this license header, choose License Headers in Project Properties.
|
* To change this license header, choose License Headers in Project Properties.
|
||||||
* To change this template file, choose Tools | Templates
|
* To change this template file, choose Tools | Templates
|
||||||
* and open the template in the editor.
|
* and open the template in the editor.
|
||||||
*/
|
*/
|
||||||
package id.amigogroup.posterminal.transaksi;
|
package id.amigogroup.posterminal.transaksi;
|
||||||
|
|
||||||
import javafx.beans.property.SimpleObjectProperty;
|
import javafx.beans.property.SimpleObjectProperty;
|
||||||
import javafx.beans.property.SimpleStringProperty;
|
import javafx.beans.property.SimpleStringProperty;
|
||||||
import javafx.scene.control.Button;
|
import javafx.scene.control.Button;
|
||||||
import javafx.scene.control.ComboBox;
|
import javafx.scene.control.ComboBox;
|
||||||
import javafx.scene.control.TextField;
|
import javafx.scene.control.TextField;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author AGNES
|
* @author AGNES
|
||||||
*/
|
*/
|
||||||
public class TabelBarangRetur {
|
public class TabelBarangRetur {
|
||||||
|
private SimpleStringProperty tcKodeRetur;
|
||||||
|
private SimpleStringProperty tcNamaRetur;
|
||||||
|
private SimpleStringProperty tcUkurRetur;
|
||||||
private SimpleStringProperty tcKodeRetur;
|
private SimpleStringProperty tcJumlahRetur;
|
||||||
private SimpleStringProperty tcNamaRetur;
|
private SimpleStringProperty tcHargaRetur;
|
||||||
private SimpleStringProperty tcUkurRetur;
|
private SimpleStringProperty tcDisc1Retur;
|
||||||
private SimpleStringProperty tcJumlahRetur;
|
private SimpleStringProperty tcDisc2Retur;
|
||||||
private SimpleStringProperty tcHargaRetur;
|
private SimpleStringProperty tcSubtotalRetur;
|
||||||
private SimpleStringProperty tcDisc1Retur;
|
private SimpleObjectProperty<TextField>tcPramuniagaRetur;
|
||||||
private SimpleStringProperty tcDisc2Retur;
|
|
||||||
private SimpleStringProperty tcSubtotalRetur;
|
public TabelBarangRetur(String tcKodeRetur, String tcNamaRetur, String tcUkurRetur, String tcJumlahRetur, String tcHargaRetur, String tcDisc1Retur,
|
||||||
private SimpleObjectProperty<TextField>tcPramuniagaRetur;
|
String tcDisc2Retur, String tcSubtotalRetur, TextField tcPramuniagaRetur) {
|
||||||
|
this.tcKodeRetur = new SimpleStringProperty(tcKodeRetur);
|
||||||
public TabelBarangRetur(String tcKodeRetur, String tcNamaRetur, String tcUkurRetur, String tcJumlahRetur, String tcHargaRetur, String tcDisc1Retur,
|
this.tcNamaRetur = new SimpleStringProperty(tcNamaRetur);
|
||||||
String tcDisc2Retur, String tcSubtotalRetur, TextField tcPramuniagaRetur) {
|
this.tcUkurRetur = new SimpleStringProperty(tcUkurRetur);
|
||||||
this.tcKodeRetur = new SimpleStringProperty(tcKodeRetur);
|
this.tcJumlahRetur = new SimpleStringProperty(tcJumlahRetur);
|
||||||
this.tcNamaRetur = new SimpleStringProperty(tcNamaRetur);
|
this.tcHargaRetur = new SimpleStringProperty(tcHargaRetur);
|
||||||
this.tcUkurRetur = new SimpleStringProperty(tcUkurRetur);
|
this.tcDisc1Retur = new SimpleStringProperty(tcDisc1Retur);
|
||||||
this.tcJumlahRetur = new SimpleStringProperty(tcJumlahRetur);
|
this.tcDisc2Retur = new SimpleStringProperty(tcDisc2Retur);
|
||||||
this.tcHargaRetur = new SimpleStringProperty(tcHargaRetur);
|
this.tcSubtotalRetur = new SimpleStringProperty(tcSubtotalRetur);
|
||||||
this.tcDisc1Retur = new SimpleStringProperty(tcDisc1Retur);
|
this.tcPramuniagaRetur = new SimpleObjectProperty<TextField>(tcPramuniagaRetur);
|
||||||
this.tcDisc2Retur = new SimpleStringProperty(tcDisc2Retur);
|
}
|
||||||
this.tcSubtotalRetur = new SimpleStringProperty(tcSubtotalRetur);
|
/**
|
||||||
this.tcPramuniagaRetur = new SimpleObjectProperty<TextField>(tcPramuniagaRetur);
|
* @return the tcKode
|
||||||
}
|
*/
|
||||||
/**
|
public String getTcKodeRetur() {
|
||||||
* @return the tcKode
|
return tcKodeRetur.get();
|
||||||
*/
|
}
|
||||||
public String getTcKodeRetur() {
|
|
||||||
return tcKodeRetur.get();
|
/**
|
||||||
}
|
* @param tcKode the tcKode to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcKodeRetur(String tcKodeRetur) {
|
||||||
* @param tcKode the tcKode to set
|
this.tcKodeRetur.set(tcKodeRetur);
|
||||||
*/
|
}
|
||||||
public void setTcKodeRetur(String tcKodeRetur) {
|
|
||||||
this.tcKodeRetur.set(tcKodeRetur);
|
/**
|
||||||
}
|
* @return the tcNama
|
||||||
|
*/
|
||||||
/**
|
public String getTcNamaRetur() {
|
||||||
* @return the tcNama
|
return tcNamaRetur.get();
|
||||||
*/
|
}
|
||||||
public String getTcNamaRetur() {
|
|
||||||
return tcNamaRetur.get();
|
/**
|
||||||
}
|
* @param tcNama the tcNama to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcNamaRetur(String tcNamaRetur) {
|
||||||
* @param tcNama the tcNama to set
|
this.tcNamaRetur.set(tcNamaRetur);
|
||||||
*/
|
}
|
||||||
public void setTcNamaRetur(String tcNamaRetur) {
|
|
||||||
this.tcNamaRetur.set(tcNamaRetur);
|
/**
|
||||||
}
|
* @return the tcUkur
|
||||||
|
*/
|
||||||
/**
|
public String getTcUkurRetur() {
|
||||||
* @return the tcUkur
|
return tcUkurRetur.get();
|
||||||
*/
|
}
|
||||||
public String getTcUkurRetur() {
|
|
||||||
return tcUkurRetur.get();
|
/**
|
||||||
}
|
* @param tcUkur the tcUkur to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcUkurRetur(String tcUkurRetur) {
|
||||||
* @param tcUkur the tcUkur to set
|
this.tcUkurRetur.set(tcUkurRetur);
|
||||||
*/
|
}
|
||||||
public void setTcUkurRetur(String tcUkurRetur) {
|
|
||||||
this.tcUkurRetur.set(tcUkurRetur);
|
/**
|
||||||
}
|
* @return the tcJumlah
|
||||||
|
*/
|
||||||
/**
|
public String getTcJumlahRetur() {
|
||||||
* @return the tcJumlah
|
return tcJumlahRetur.get();
|
||||||
*/
|
}
|
||||||
public String getTcJumlahRetur() {
|
|
||||||
return tcJumlahRetur.get();
|
/**
|
||||||
}
|
* @param tcJumlah the tcJumlah to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcJumlahRetur(String tcJumlahRetur) {
|
||||||
* @param tcJumlah the tcJumlah to set
|
this.tcJumlahRetur.set(tcJumlahRetur);
|
||||||
*/
|
}
|
||||||
public void setTcJumlahRetur(String tcJumlahRetur) {
|
|
||||||
this.tcJumlahRetur.set(tcJumlahRetur);
|
/**
|
||||||
}
|
* @return the tcHarga
|
||||||
|
*/
|
||||||
/**
|
public String getTcHargaRetur() {
|
||||||
* @return the tcHarga
|
return tcHargaRetur.get();
|
||||||
*/
|
}
|
||||||
public String getTcHargaRetur() {
|
|
||||||
return tcHargaRetur.get();
|
/**
|
||||||
}
|
* @param tcHarga the tcHarga to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcHargaRetur(String tcHargaRetur) {
|
||||||
* @param tcHarga the tcHarga to set
|
this.tcHargaRetur.set(tcHargaRetur);
|
||||||
*/
|
}
|
||||||
public void setTcHargaRetur(String tcHargaRetur) {
|
|
||||||
this.tcHargaRetur.set(tcHargaRetur);
|
/**
|
||||||
}
|
* @return the tcDisc1
|
||||||
|
*/
|
||||||
/**
|
public String getTcDisc1Retur() {
|
||||||
* @return the tcDisc1
|
return tcDisc1Retur.get();
|
||||||
*/
|
}
|
||||||
public String getTcDisc1Retur() {
|
|
||||||
return tcDisc1Retur.get();
|
/**
|
||||||
}
|
* @param tcDisc1 the tcDisc1 to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcDisc1Retur(String tcDisc1Retur) {
|
||||||
* @param tcDisc1 the tcDisc1 to set
|
this.tcDisc1Retur.set(tcDisc1Retur);
|
||||||
*/
|
}
|
||||||
public void setTcDisc1Retur(String tcDisc1Retur) {
|
|
||||||
this.tcDisc1Retur.set(tcDisc1Retur);
|
/**
|
||||||
}
|
* @return the tcDisc2
|
||||||
|
*/
|
||||||
/**
|
public String getTcDisc2Retur() {
|
||||||
* @return the tcDisc2
|
return tcDisc2Retur.get();
|
||||||
*/
|
}
|
||||||
public String getTcDisc2Retur() {
|
|
||||||
return tcDisc2Retur.get();
|
/**
|
||||||
}
|
* @param tcDisc2 the tcDisc2 to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcDisc2Retur(String tcDisc2Retur) {
|
||||||
* @param tcDisc2 the tcDisc2 to set
|
this.tcDisc2Retur.set(tcDisc2Retur);
|
||||||
*/
|
}
|
||||||
public void setTcDisc2Retur(String tcDisc2Retur) {
|
|
||||||
this.tcDisc2Retur.set(tcDisc2Retur);
|
/**
|
||||||
}
|
* @return the tcSubtotal
|
||||||
|
*/
|
||||||
/**
|
public String getTcSubtotalRetur() {
|
||||||
* @return the tcSubtotal
|
return tcSubtotalRetur.get();
|
||||||
*/
|
}
|
||||||
public String getTcSubtotalRetur() {
|
|
||||||
return tcSubtotalRetur.get();
|
/**
|
||||||
}
|
* @param tcSubtotal the tcSubtotal to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcSubtotalRetur(String tcSubtotalRetur) {
|
||||||
* @param tcSubtotal the tcSubtotal to set
|
this.tcSubtotalRetur.set(tcSubtotalRetur);
|
||||||
*/
|
}
|
||||||
public void setTcSubtotalRetur(String tcSubtotalRetur) {
|
|
||||||
this.tcSubtotalRetur.set(tcSubtotalRetur);
|
/**
|
||||||
}
|
* @return the tcPramuniaga
|
||||||
|
*/
|
||||||
/**
|
public TextField getTcPramuniagaRetur() {
|
||||||
* @return the tcPramuniaga
|
return tcPramuniagaRetur.get();
|
||||||
*/
|
}
|
||||||
public TextField getTcPramuniagaRetur() {
|
|
||||||
return tcPramuniagaRetur.get();
|
/**
|
||||||
}
|
* @param tcPramuniaga the tcPramuniaga to set
|
||||||
|
*/
|
||||||
/**
|
public void setTcPramuniagaRetur(TextField tcPramuniagaRetur) {
|
||||||
* @param tcPramuniaga the tcPramuniaga to set
|
this.tcPramuniagaRetur.set(tcPramuniagaRetur);
|
||||||
*/
|
}
|
||||||
public void setTcPramuniagaRetur(TextField tcPramuniagaRetur) {
|
}
|
||||||
this.tcPramuniagaRetur.set(tcPramuniagaRetur);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@ -1,187 +1,184 @@
|
|||||||
/*
|
/*
|
||||||
* To change this license header, choose License Headers in Project Properties.
|
* To change this license header, choose License Headers in Project Properties.
|
||||||
* To change this template file, choose Tools | Templates
|
* To change this template file, choose Tools | Templates
|
||||||
* and open the template in the editor.
|
* and open the template in the editor.
|
||||||
*/
|
*/
|
||||||
package id.amigogroup.posterminal.transaksi;
|
package id.amigogroup.posterminal.transaksi;
|
||||||
|
|
||||||
import javafx.beans.property.SimpleObjectProperty;
|
import javafx.beans.property.SimpleObjectProperty;
|
||||||
import javafx.beans.property.SimpleStringProperty;
|
import javafx.beans.property.SimpleStringProperty;
|
||||||
import javafx.scene.control.Button;
|
import javafx.scene.control.Button;
|
||||||
import javafx.scene.control.ComboBox;
|
import javafx.scene.control.ComboBox;
|
||||||
import javafx.scene.control.TextField;
|
import javafx.scene.control.TextField;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author AGNES
|
* @author AGNES
|
||||||
*/
|
*/
|
||||||
public class TabelBarangTunai {
|
public class TabelBarangTunai {
|
||||||
|
private SimpleStringProperty kode;
|
||||||
|
private SimpleStringProperty nama;
|
||||||
|
private SimpleStringProperty ukur;
|
||||||
private SimpleStringProperty tcKode;
|
private SimpleStringProperty jumlah;
|
||||||
private SimpleStringProperty tcNama;
|
private SimpleStringProperty harga;
|
||||||
private SimpleStringProperty tcUkur;
|
private SimpleStringProperty disc1;
|
||||||
private SimpleStringProperty tcJumlah;
|
private SimpleStringProperty disc2;
|
||||||
private SimpleStringProperty tcHarga;
|
private SimpleObjectProperty<ComboBox> cbxPromo;
|
||||||
private SimpleStringProperty tcDisc1;
|
private SimpleStringProperty subTotal;
|
||||||
private SimpleStringProperty tcDisc2;
|
private SimpleObjectProperty<TextField> fldPramuniaga;
|
||||||
private SimpleObjectProperty<ComboBox> tcPromo;
|
|
||||||
private SimpleStringProperty tcSubtotal;
|
public TabelBarangTunai(String kode, String nama, String ukur, String jumlah, String harga, String disc1,
|
||||||
private SimpleObjectProperty<TextField>tcPramuniaga;
|
String disc2, ComboBox cbxPromo, String subTotal, TextField fldPramuniaga) {
|
||||||
|
this.kode = new SimpleStringProperty(kode);
|
||||||
public TabelBarangTunai(String tcKode, String tcNama, String tcUkur, String tcJumlah, String tcHarga, String tcDisc1,
|
this.nama = new SimpleStringProperty(nama);
|
||||||
String tcDisc2, ComboBox tcPromo, String tcSubtotal, TextField tcPramuniaga) {
|
this.ukur = new SimpleStringProperty(ukur);
|
||||||
this.tcKode = new SimpleStringProperty(tcKode);
|
this.jumlah = new SimpleStringProperty(jumlah);
|
||||||
this.tcNama = new SimpleStringProperty(tcNama);
|
this.harga = new SimpleStringProperty(harga);
|
||||||
this.tcUkur = new SimpleStringProperty(tcUkur);
|
this.disc1 = new SimpleStringProperty(disc1);
|
||||||
this.tcJumlah = new SimpleStringProperty(tcJumlah);
|
this.disc2 = new SimpleStringProperty(disc2);
|
||||||
this.tcHarga = new SimpleStringProperty(tcHarga);
|
this.cbxPromo = new SimpleObjectProperty<ComboBox>(cbxPromo);
|
||||||
this.tcDisc1 = new SimpleStringProperty(tcDisc1);
|
this.subTotal = new SimpleStringProperty(subTotal);
|
||||||
this.tcDisc2 = new SimpleStringProperty(tcDisc2);
|
this.fldPramuniaga = new SimpleObjectProperty<TextField>(fldPramuniaga);
|
||||||
this.tcPromo = new SimpleObjectProperty<ComboBox>(tcPromo);
|
}
|
||||||
this.tcSubtotal = new SimpleStringProperty(tcSubtotal);
|
|
||||||
this.tcPramuniaga = new SimpleObjectProperty<TextField>(tcPramuniaga);
|
|
||||||
}
|
/**
|
||||||
|
* @return the kode
|
||||||
|
*/
|
||||||
/**
|
public String getKode() {
|
||||||
* @return the tcKode
|
return kode.get();
|
||||||
*/
|
}
|
||||||
public String getTcKode() {
|
|
||||||
return tcKode.get();
|
/**
|
||||||
}
|
* @param kode the kode to set
|
||||||
|
*/
|
||||||
/**
|
public void setKode(String kode) {
|
||||||
* @param tcKode the tcKode to set
|
this.kode.set(kode);
|
||||||
*/
|
}
|
||||||
public void setTcKode(String tcKode) {
|
|
||||||
this.tcKode.set(tcKode);
|
/**
|
||||||
}
|
* @return the tcNama
|
||||||
|
*/
|
||||||
/**
|
public String getNama() {
|
||||||
* @return the tcNama
|
return nama.get();
|
||||||
*/
|
}
|
||||||
public String getTcNama() {
|
|
||||||
return tcNama.get();
|
/**
|
||||||
}
|
* @param nama the tcNama to set
|
||||||
|
*/
|
||||||
/**
|
public void setNama(String nama) {
|
||||||
* @param tcNama the tcNama to set
|
this.nama.set(nama);
|
||||||
*/
|
}
|
||||||
public void setTcNama(String tcNama) {
|
|
||||||
this.tcNama.set(tcNama);
|
/**
|
||||||
}
|
* @return the tcUkur
|
||||||
|
*/
|
||||||
/**
|
public String getUkur() {
|
||||||
* @return the tcUkur
|
return ukur.get();
|
||||||
*/
|
}
|
||||||
public String getTcUkur() {
|
|
||||||
return tcUkur.get();
|
/**
|
||||||
}
|
* @param ukur the tcUkur to set
|
||||||
|
*/
|
||||||
/**
|
public void setUkur(String ukur) {
|
||||||
* @param tcUkur the tcUkur to set
|
this.ukur.set(ukur);
|
||||||
*/
|
}
|
||||||
public void setTcUkur(String tcUkur) {
|
|
||||||
this.tcUkur.set(tcUkur);
|
/**
|
||||||
}
|
* @return the tcJumlah
|
||||||
|
*/
|
||||||
/**
|
public String getJumlah() {
|
||||||
* @return the tcJumlah
|
return jumlah.get();
|
||||||
*/
|
}
|
||||||
public String getTcJumlah() {
|
|
||||||
return tcJumlah.get();
|
/**
|
||||||
}
|
* @param jumlah the tcJumlah to set
|
||||||
|
*/
|
||||||
/**
|
public void setJumlah(String jumlah) {
|
||||||
* @param tcJumlah the tcJumlah to set
|
this.jumlah.set(jumlah);
|
||||||
*/
|
}
|
||||||
public void setTcJumlah(String tcJumlah) {
|
|
||||||
this.tcJumlah.set(tcJumlah);
|
/**
|
||||||
}
|
* @return the tcHarga
|
||||||
|
*/
|
||||||
/**
|
public String getHarga() {
|
||||||
* @return the tcHarga
|
return harga.get();
|
||||||
*/
|
}
|
||||||
public String getTcHarga() {
|
|
||||||
return tcHarga.get();
|
/**
|
||||||
}
|
* @param harga the tcHarga to set
|
||||||
|
*/
|
||||||
/**
|
public void setHarga(String harga) {
|
||||||
* @param tcHarga the tcHarga to set
|
this.harga.set(harga);
|
||||||
*/
|
}
|
||||||
public void setTcHarga(String tcHarga) {
|
|
||||||
this.tcHarga.set(tcHarga);
|
/**
|
||||||
}
|
* @return the tcDisc1
|
||||||
|
*/
|
||||||
/**
|
public String getDisc1() {
|
||||||
* @return the tcDisc1
|
return disc1.get();
|
||||||
*/
|
}
|
||||||
public String getTcDisc1() {
|
|
||||||
return tcDisc1.get();
|
/**
|
||||||
}
|
* @param disc1 the tcDisc1 to set
|
||||||
|
*/
|
||||||
/**
|
public void setDisc1(String disc1) {
|
||||||
* @param tcDisc1 the tcDisc1 to set
|
this.disc1.set(disc1);
|
||||||
*/
|
}
|
||||||
public void setTcDisc1(String tcDisc1) {
|
|
||||||
this.tcDisc1.set(tcDisc1);
|
/**
|
||||||
}
|
* @return the tcDisc2
|
||||||
|
*/
|
||||||
/**
|
public String getDisc2() {
|
||||||
* @return the tcDisc2
|
return disc2.get();
|
||||||
*/
|
}
|
||||||
public String getTcDisc2() {
|
|
||||||
return tcDisc2.get();
|
/**
|
||||||
}
|
* @param disc2 the tcDisc2 to set
|
||||||
|
*/
|
||||||
/**
|
public void setDisc2(String disc2) {
|
||||||
* @param tcDisc2 the tcDisc2 to set
|
this.disc2.set(disc2);
|
||||||
*/
|
}
|
||||||
public void setTcDisc2(String tcDisc2) {
|
|
||||||
this.tcDisc2.set(tcDisc2);
|
/**
|
||||||
}
|
* @return the tcPromo
|
||||||
|
*/
|
||||||
/**
|
public ComboBox getCbxPromo() {
|
||||||
* @return the tcPromo
|
return cbxPromo.get();
|
||||||
*/
|
}
|
||||||
public ComboBox getTcPromo() {
|
|
||||||
return tcPromo.get();
|
/**
|
||||||
}
|
* @param cbxPromo the tcPromo to set
|
||||||
|
*/
|
||||||
/**
|
public void setCbxPromo(ComboBox cbxPromo) {
|
||||||
* @param tcPromo the tcPromo to set
|
this.cbxPromo.set(cbxPromo);
|
||||||
*/
|
}
|
||||||
public void setTcPromo(ComboBox tcPromo) {
|
|
||||||
this.tcPromo.set(tcPromo);
|
/**
|
||||||
}
|
* @return the tcSubtotal
|
||||||
|
*/
|
||||||
/**
|
public String getSubTotal() {
|
||||||
* @return the tcSubtotal
|
return subTotal.get();
|
||||||
*/
|
}
|
||||||
public String getTcSubtotal() {
|
|
||||||
return tcSubtotal.get();
|
/**
|
||||||
}
|
* @param subTotal the tcSubtotal to set
|
||||||
|
*/
|
||||||
/**
|
public void setSubTotal(String subTotal) {
|
||||||
* @param tcSubtotal the tcSubtotal to set
|
this.subTotal.set(subTotal);
|
||||||
*/
|
}
|
||||||
public void setTcSubtotal(String tcSubtotal) {
|
|
||||||
this.tcSubtotal.set(tcSubtotal);
|
/**
|
||||||
}
|
* @return the tcPramuniaga
|
||||||
|
*/
|
||||||
/**
|
public TextField getFldPramuniaga() {
|
||||||
* @return the tcPramuniaga
|
return fldPramuniaga.get();
|
||||||
*/
|
}
|
||||||
public TextField getTcPramuniaga() {
|
|
||||||
return tcPramuniaga.get();
|
/**
|
||||||
}
|
* @param fldPramuniaga the tcPramuniaga to set
|
||||||
|
*/
|
||||||
/**
|
public void setFldPramuniaga(TextField fldPramuniaga) {
|
||||||
* @param tcPramuniaga the tcPramuniaga to set
|
this.fldPramuniaga.set(fldPramuniaga);
|
||||||
*/
|
}
|
||||||
public void setTcPramuniaga(TextField tcPramuniaga) {
|
}
|
||||||
this.tcPramuniaga.set(tcPramuniaga);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
Loading…
Reference in New Issue