customer properties free vat_indicator
This commit is contained in:
parent
34af930784
commit
2f92240ac0
@ -9,9 +9,12 @@ import java.util.Date;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.persistence.Basic;
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.EntityManager;
|
||||
import javax.persistence.EnumType;
|
||||
import javax.persistence.Enumerated;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
@ -73,6 +76,14 @@ public class Customer extends AbstractEntity implements Serializable {
|
||||
@Column(name = "shares_signed", columnDefinition = "integer")
|
||||
private int sharesSigned;
|
||||
|
||||
@Column(name = "free", nullable = false)
|
||||
private boolean free = false;
|
||||
|
||||
@Column(name = "indicator_vat", nullable = false)
|
||||
@Basic
|
||||
@Enumerated(EnumType.STRING)
|
||||
private IndicatorVAT indicatorVAT = IndicatorVAT.GROSS;
|
||||
|
||||
@Column(name = "uid_vat", columnDefinition = "character varying(20)", nullable = true)
|
||||
private String uidVAT;
|
||||
|
||||
@ -277,4 +288,20 @@ public class Customer extends AbstractEntity implements Serializable {
|
||||
public String getPassword() {
|
||||
return password;
|
||||
}
|
||||
|
||||
public boolean isFree() {
|
||||
return free;
|
||||
}
|
||||
|
||||
public void setFree(boolean free) {
|
||||
this.free = free;
|
||||
}
|
||||
|
||||
public IndicatorVAT getIndicatorVAT() {
|
||||
return indicatorVAT;
|
||||
}
|
||||
|
||||
public void setIndicatorVAT(IndicatorVAT indicatorVAT) {
|
||||
this.indicatorVAT = indicatorVAT;
|
||||
}
|
||||
}
|
||||
|
5
hsarback/src/de/hsadmin/mods/cust/IndicatorVAT.java
Normal file
5
hsarback/src/de/hsadmin/mods/cust/IndicatorVAT.java
Normal file
@ -0,0 +1,5 @@
|
||||
package de.hsadmin.mods.cust;
|
||||
|
||||
public enum IndicatorVAT {
|
||||
NET, GROSS
|
||||
}
|
Loading…
Reference in New Issue
Block a user