130 lines
2.6 KiB
Java
130 lines
2.6 KiB
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.ManyToOne;
|
|
import javax.persistence.OneToMany;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
import org.hibernate.validator.constraints.NotEmpty;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
public class RequestBarangDariRuanganDetailVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Nama Barang")
|
|
@ManyToOne
|
|
private ProdukVO produk;
|
|
|
|
@Caption(value = "Asal Produk Barang")
|
|
@ManyToOne
|
|
private AsalProdukVO asalProduk;
|
|
|
|
@Caption(value = "Stok")
|
|
private Double stok;
|
|
|
|
@Caption(value = "Nama Konfirmasi")
|
|
private String namaKonfirmasi;
|
|
|
|
@OneToMany
|
|
@Caption(value = "Satuan")
|
|
private SatuanStandarVO satuanStandar;
|
|
|
|
@Caption(value = "Keterangan")
|
|
private String keterangan;
|
|
|
|
@Caption(value="Qty Produk")
|
|
private Double qtyProduk;
|
|
|
|
@Caption(value="Qty Order")
|
|
private Double qtyOrder;
|
|
|
|
@Caption(value="Qty Produk Konfirmasi")
|
|
private Double qtyProdukKonfirmasi;
|
|
|
|
@Caption(value="Qty Produk Terima")
|
|
private Double qtyProdukTerima;
|
|
|
|
public ProdukVO getProduk() {
|
|
return produk;
|
|
}
|
|
|
|
public void setProduk(ProdukVO produk) {
|
|
this.produk = produk;
|
|
}
|
|
|
|
public AsalProdukVO getAsalProduk() {
|
|
return asalProduk;
|
|
}
|
|
|
|
public void setAsalProduk(AsalProdukVO asalProduk) {
|
|
this.asalProduk = asalProduk;
|
|
}
|
|
|
|
public Double getStok() {
|
|
return stok;
|
|
}
|
|
|
|
public void setStok(Double stok) {
|
|
this.stok = stok;
|
|
}
|
|
|
|
public String getNamaKonfirmasi() {
|
|
return namaKonfirmasi;
|
|
}
|
|
|
|
public void setNamaKonfirmasi(String namaKonfirmasi) {
|
|
this.namaKonfirmasi = namaKonfirmasi;
|
|
}
|
|
|
|
public SatuanStandarVO getSatuanStandar() {
|
|
return satuanStandar;
|
|
}
|
|
|
|
public void setSatuanStandar(SatuanStandarVO satuanStandar) {
|
|
this.satuanStandar = satuanStandar;
|
|
}
|
|
|
|
public String getKeterangan() {
|
|
return keterangan;
|
|
}
|
|
|
|
public void setKeterangan(String keterangan) {
|
|
this.keterangan = keterangan;
|
|
}
|
|
|
|
public Double getQtyProduk() {
|
|
return qtyProduk;
|
|
}
|
|
|
|
public void setQtyProduk(Double qtyProduk) {
|
|
this.qtyProduk = qtyProduk;
|
|
}
|
|
|
|
public Double getQtyOrder() {
|
|
return qtyOrder;
|
|
}
|
|
|
|
public void setQtyOrder(Double qtyOrder) {
|
|
this.qtyOrder = qtyOrder;
|
|
}
|
|
|
|
public Double getQtyProdukKonfirmasi() {
|
|
return qtyProdukKonfirmasi;
|
|
}
|
|
|
|
public void setQtyProdukKonfirmasi(Double qtyProdukKonfirmasi) {
|
|
this.qtyProdukKonfirmasi = qtyProdukKonfirmasi;
|
|
}
|
|
|
|
public Double getQtyProdukTerima() {
|
|
return qtyProdukTerima;
|
|
}
|
|
|
|
public void setQtyProdukTerima(Double qtyProdukTerima) {
|
|
this.qtyProdukTerima = qtyProdukTerima;
|
|
}
|
|
|
|
|
|
}
|