/* * The MIT License * * Copyright 2012 Universidad de Montemorelos A. C. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package mx.edu.um.mateo.inventario.model; import java.io.Serializable; import java.math.BigDecimal; import java.util.Date; import java.util.Objects; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; import javax.validation.constraints.NotNull; import org.hibernate.validator.constraints.NotBlank; import org.springframework.format.annotation.DateTimeFormat; /** * * @author J. David Mendoza <jdmendoza@um.edu.mx> */ @Entity @Table(name = "xentradas") public class XEntrada implements Serializable { /** * */ private static final long serialVersionUID = -5076947523362358662L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(nullable = false, length = 64) private String folio; @NotBlank @Column(nullable = false, length = 64) private String factura; @NotNull @DateTimeFormat(pattern = "dd/MM/yyyy") @Temporal(TemporalType.DATE) @Column(name = "fecha_factura") private Date fechaFactura; @Column(length = 128) private String comentarios; @Column(scale = 2, precision = 8, name = "tipo_cambio") private BigDecimal tipoCambio; @Column(scale = 2, precision = 8, nullable = false) private BigDecimal iva = new BigDecimal("0"); @Column(scale = 2, precision = 8, nullable = false) private BigDecimal total = new BigDecimal("0"); private Boolean devolucion = false; @Column(name = "entrada_id", nullable = false) private Long entradaId; @Column(name = "estatus_id", nullable = false) private Long estatusId; @Column(name = "proveedor_id", nullable = false) private Long proveedorId; @Column(name = "almacen_id", nullable = false) private Long almacenId; @Temporal(TemporalType.TIMESTAMP) @Column(nullable = false, name = "date_created") private Date fechaCreacion; @Column(nullable = false, length = 64) private String creador; @Column(nullable = false, length = 64) private String actividad; public XEntrada() { } /** * @return the id */ public Long getId() { return id; } /** * @param id * the id to set */ public void setId(Long id) { this.id = id; } /** * @return the folio */ public String getFolio() { return folio; } /** * @param folio * the folio to set */ public void setFolio(String folio) { this.folio = folio; } /** * @return the factura */ public String getFactura() { return factura; } /** * @param factura * the factura to set */ public void setFactura(String factura) { this.factura = factura; } /** * @return the fechaFactura */ public Date getFechaFactura() { return fechaFactura; } /** * @param fechaFactura * the fechaFactura to set */ public void setFechaFactura(Date fechaFactura) { this.fechaFactura = fechaFactura; } /** * @return the comentarios */ public String getComentarios() { return comentarios; } /** * @param comentarios * the comentarios to set */ public void setComentarios(String comentarios) { this.comentarios = comentarios; } /** * @return the tipoCambio */ public BigDecimal getTipoCambio() { return tipoCambio; } /** * @param tipoCambio * the tipoCambio to set */ public void setTipoCambio(BigDecimal tipoCambio) { this.tipoCambio = tipoCambio; } /** * @return the iva */ public BigDecimal getIva() { return iva; } /** * @param iva * the iva to set */ public void setIva(BigDecimal iva) { this.iva = iva; } /** * @return the total */ public BigDecimal getTotal() { return total; } /** * @param total * the total to set */ public void setTotal(BigDecimal total) { this.total = total; } /** * @return the devolucion */ public Boolean getDevolucion() { return devolucion; } /** * @param devolucion * the devolucion to set */ public void setDevolucion(Boolean devolucion) { this.devolucion = devolucion; } /** * @return the entradaId */ public Long getEntradaId() { return entradaId; } /** * @param entradaId * the entradaId to set */ public void setEntradaId(Long entradaId) { this.entradaId = entradaId; } /** * @return the estatusId */ public Long getEstatusId() { return estatusId; } /** * @param estatusId * the estatusId to set */ public void setEstatusId(Long estatusId) { this.estatusId = estatusId; } /** * @return the proveedorId */ public Long getProveedorId() { return proveedorId; } /** * @param proveedorId * the proveedorId to set */ public void setProveedorId(Long proveedorId) { this.proveedorId = proveedorId; } /** * @return the almacenId */ public Long getAlmacenId() { return almacenId; } /** * @param almacenId * the almacenId to set */ public void setAlmacenId(Long almacenId) { this.almacenId = almacenId; } /** * @return the fechaCreacion */ public Date getFechaCreacion() { return fechaCreacion; } /** * @param fechaCreacion * the fechaCreacion to set */ public void setFechaCreacion(Date fechaCreacion) { this.fechaCreacion = fechaCreacion; } /** * @return the creador */ public String getCreador() { return creador; } /** * @param creador * the creador to set */ public void setCreador(String creador) { this.creador = creador; } /** * @return the actividad */ public String getActividad() { return actividad; } /** * @param actividad * the actividad to set */ public void setActividad(String actividad) { this.actividad = actividad; } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final XEntrada other = (XEntrada) obj; if (!Objects.equals(this.folio, other.folio)) { return false; } return true; } @Override public int hashCode() { int hash = 7; hash = 23 * hash + Objects.hashCode(this.getId()); hash = 23 * hash + Objects.hashCode(this.getFolio()); return hash; } @Override public String toString() { return "XEntrada{" + "folio=" + getFolio() + ", factura=" + getFactura() + ", total=" + getTotal() + '}'; } }