1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.student.r2.core.fee.model; |
18 | |
|
19 | |
import org.kuali.student.common.entity.KSEntityConstants; |
20 | |
import org.kuali.student.r2.common.dto.AttributeInfo; |
21 | |
import org.kuali.student.r2.common.dto.RichTextInfo; |
22 | |
import org.kuali.student.r2.common.entity.MetaEntity; |
23 | |
import org.kuali.student.r2.core.fee.dto.EnrollmentFeeInfo; |
24 | |
import org.kuali.student.r2.core.fee.infc.EnrollmentFee; |
25 | |
import org.kuali.student.r2.common.infc.Attribute; |
26 | |
|
27 | |
import javax.persistence.*; |
28 | |
import java.util.ArrayList; |
29 | |
import java.util.List; |
30 | |
import org.kuali.student.r2.core.fee.dto.EnrollmentFeeAmountInfo; |
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
@Entity |
38 | |
@Table(name = "KSEN_ENROLLMENT_FEE") |
39 | |
public class EnrollmentFeeEntity extends MetaEntity { |
40 | |
|
41 | |
@Column(name = "CURRENCY_TYPE") |
42 | |
private String currencyType; |
43 | |
|
44 | |
@Column(name = "CURRENCY_QUANTITY") |
45 | |
private Integer currencyQuantity; |
46 | |
|
47 | |
@Column(name = "ORG_ID") |
48 | |
private String orgId; |
49 | |
|
50 | |
@Column(name = "REF_OBJECT_URI") |
51 | |
private String refObjectURI; |
52 | |
|
53 | |
@Column(name = "REF_OBJECT_ID") |
54 | |
private String refObjectId; |
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | |
@Column(name = "ENRL_FEE_TYPE") |
60 | |
private String enrollFeeType; |
61 | |
|
62 | |
@Column(name = "ENRL_FEE_STATE") |
63 | |
private String enrollFeeState; |
64 | |
|
65 | |
@Column(name = "DESCR_PLAIN", length = KSEntityConstants.EXTRA_LONG_TEXT_LENGTH) |
66 | |
private String plain; |
67 | |
|
68 | |
@Column(name = "DESCR_FORMATTED", length = KSEntityConstants.EXTRA_LONG_TEXT_LENGTH) |
69 | |
private String formatted; |
70 | |
|
71 | 0 | @OneToMany(cascade = CascadeType.ALL, mappedBy = "owner") |
72 | |
private List<EnrollmentFeeAttributeEntity> attributes = new ArrayList<EnrollmentFeeAttributeEntity>(); |
73 | |
|
74 | 0 | public EnrollmentFeeEntity() { |
75 | 0 | } |
76 | |
|
77 | |
public EnrollmentFeeEntity(EnrollmentFee fee) { |
78 | 0 | super(fee); |
79 | 0 | this.setId(fee.getId()); |
80 | 0 | this.setEnrollFeeType(fee.getTypeKey()); |
81 | 0 | this.fromDto(fee); |
82 | 0 | } |
83 | |
|
84 | |
public void fromDto(EnrollmentFee fee) { |
85 | 0 | this.setEnrollFeeState(fee.getStateKey()); |
86 | 0 | this.setCurrencyType(fee.getAmount().getCurrencyTypeKey()); |
87 | 0 | this.setCurrencyQuantity(fee.getAmount().getCurrencyQuantity()); |
88 | 0 | this.setOrgId(fee.getOrgId()); |
89 | 0 | this.setRefObjectURI(fee.getRefObjectURI()); |
90 | 0 | this.setRefObjectId(fee.getRefObjectId()); |
91 | |
|
92 | 0 | if (fee.getDescr() != null) { |
93 | 0 | this.setPlain(fee.getDescr().getPlain()); |
94 | 0 | this.setFormatted(fee.getDescr().getFormatted()); |
95 | |
} |
96 | 0 | this.setAttributes(new ArrayList<EnrollmentFeeAttributeEntity>()); |
97 | 0 | for (Attribute att : fee.getAttributes()) { |
98 | 0 | EnrollmentFeeAttributeEntity attEntity = new EnrollmentFeeAttributeEntity(att, this); |
99 | 0 | this.getAttributes().add(attEntity); |
100 | 0 | } |
101 | 0 | } |
102 | |
|
103 | |
public EnrollmentFeeInfo toDto() { |
104 | 0 | EnrollmentFeeInfo feeInfo = new EnrollmentFeeInfo(); |
105 | |
|
106 | 0 | feeInfo.setId(getId()); |
107 | 0 | feeInfo.setStateKey(getEnrollFeeState()); |
108 | 0 | feeInfo.setTypeKey(getEnrollFeeType()); |
109 | |
|
110 | 0 | String plain = getPlain(); |
111 | 0 | String formatted = getFormatted(); |
112 | |
|
113 | 0 | if((plain != null && !"".equals(plain)) || (formatted != null && !"".equals(formatted)) ){ |
114 | 0 | RichTextInfo descr = new RichTextInfo(plain, formatted); |
115 | 0 | feeInfo.setDescr(descr); |
116 | |
} |
117 | |
|
118 | 0 | if (getCurrencyType() != null) { |
119 | 0 | EnrollmentFeeAmountInfo amtInfo = new EnrollmentFeeAmountInfo(); |
120 | 0 | amtInfo.setCurrencyQuantity(getCurrencyQuantity()); |
121 | 0 | amtInfo.setCurrencyTypeKey(getCurrencyType()); |
122 | 0 | feeInfo.setAmount(amtInfo); |
123 | |
} |
124 | 0 | feeInfo.setOrgId(getOrgId()); |
125 | 0 | feeInfo.setRefObjectURI(getRefObjectURI()); |
126 | 0 | feeInfo.setRefObjectId(getRefObjectId()); |
127 | |
|
128 | 0 | feeInfo.setMeta(super.toDTO()); |
129 | |
|
130 | 0 | for (EnrollmentFeeAttributeEntity att: getAttributes()) { |
131 | 0 | AttributeInfo attInfo = att.toDto(); |
132 | 0 | feeInfo.getAttributes().add(attInfo); |
133 | 0 | } |
134 | 0 | return feeInfo; |
135 | |
} |
136 | |
|
137 | |
public String getCurrencyType() { |
138 | 0 | return currencyType; |
139 | |
} |
140 | |
|
141 | |
public void setCurrencyType(String currencyType) { |
142 | 0 | this.currencyType = currencyType; |
143 | 0 | } |
144 | |
|
145 | |
public Integer getCurrencyQuantity() { |
146 | 0 | return currencyQuantity; |
147 | |
} |
148 | |
|
149 | |
public void setCurrencyQuantity(Integer currencyQuantity) { |
150 | 0 | this.currencyQuantity = currencyQuantity; |
151 | 0 | } |
152 | |
|
153 | |
public String getOrgId() { |
154 | 0 | return orgId; |
155 | |
} |
156 | |
|
157 | |
public void setOrgId(String orgId) { |
158 | 0 | this.orgId = orgId; |
159 | 0 | } |
160 | |
|
161 | |
public String getRefObjectURI() { |
162 | 0 | return refObjectURI; |
163 | |
} |
164 | |
|
165 | |
public void setRefObjectURI(String refObjectURI) { |
166 | 0 | this.refObjectURI = refObjectURI; |
167 | 0 | } |
168 | |
|
169 | |
public String getRefObjectId() { |
170 | 0 | return refObjectId; |
171 | |
} |
172 | |
|
173 | |
public void setRefObjectId(String refObjectId) { |
174 | 0 | this.refObjectId = refObjectId; |
175 | 0 | } |
176 | |
|
177 | |
public String getEnrollFeeType() { |
178 | 0 | return enrollFeeType; |
179 | |
} |
180 | |
|
181 | |
public void setEnrollFeeType(String enrollFeeType) { |
182 | 0 | this.enrollFeeType = enrollFeeType; |
183 | 0 | } |
184 | |
|
185 | |
public String getEnrollFeeState() { |
186 | 0 | return enrollFeeState; |
187 | |
} |
188 | |
|
189 | |
public void setEnrollFeeState(String enrollFeeState) { |
190 | 0 | this.enrollFeeState = enrollFeeState; |
191 | 0 | } |
192 | |
|
193 | |
public String getPlain() { |
194 | 0 | return plain; |
195 | |
} |
196 | |
|
197 | |
public void setPlain(String plain) { |
198 | 0 | this.plain = plain; |
199 | 0 | } |
200 | |
|
201 | |
public String getFormatted() { |
202 | 0 | return formatted; |
203 | |
} |
204 | |
|
205 | |
public void setFormatted(String formatted) { |
206 | 0 | this.formatted = formatted; |
207 | 0 | } |
208 | |
|
209 | |
public List<EnrollmentFeeAttributeEntity> getAttributes() { |
210 | 0 | return attributes; |
211 | |
} |
212 | |
|
213 | |
public void setAttributes(List<EnrollmentFeeAttributeEntity> attributes) { |
214 | 0 | this.attributes = attributes; |
215 | 0 | } |
216 | |
|
217 | |
|
218 | |
|
219 | |
} |