| 7 | |
| 8 | // Impuestos aplicables al concepto |
| 9 | public class ItemTax { |
| 10 | private String taxCode; |
| 11 | private String taxTypeCode; |
| 12 | @JsonSerialize(using = BigDecimalSerializer.class) |
| 13 | private BigDecimal taxRate; |
| 14 | private String taxFlagCode; |
| 15 | |
| 16 | public String getTaxCode() { |
| 17 | return taxCode; |
| 18 | } |
| 19 | public void setTaxCode(String taxCode) { |
| 20 | this.taxCode = taxCode; |
| 21 | } |
| 22 | public String getTaxTypeCode() { |
| 23 | return taxTypeCode; |
| 24 | } |
| 25 | public void setTaxTypeCode(String taxTypeCode) { |
| 26 | this.taxTypeCode = taxTypeCode; |
| 27 | } |
| 28 | public BigDecimal getTaxRate() { |
| 29 | return taxRate; |
| 30 | } |
| 31 | |
| 32 | public void setTaxRate(BigDecimal taxRate) { |
| 33 | this.taxRate = taxRate; |
| 34 | } |
| 35 | public String getTaxFlagCode() { |
| 36 | return taxFlagCode; |
| 37 | } |
| 38 | public void setTaxFlagCode(String taxFlagCode) { |
| 39 | this.taxFlagCode = taxFlagCode; |
| 40 | } |
| 41 | } |
nothing calls this directly
no outgoing calls
no test coverage detected