www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -0,0 +1,70 @@
|
|||
package it.acxent.contab;
|
||||
|
||||
import it.acxent.db.ApplParmFull;
|
||||
import it.acxent.db.CRAdapter;
|
||||
|
||||
public class DocFiglioPadreCR extends CRAdapter {
|
||||
private long id_docFiglioPadre;
|
||||
|
||||
private long id_documentoPadre;
|
||||
|
||||
private long id_documentoFiglio;
|
||||
|
||||
private Documento documentoPadre;
|
||||
|
||||
private Documento documentoFiglio;
|
||||
|
||||
public DocFiglioPadreCR(ApplParmFull newApplParmFull) {
|
||||
super(newApplParmFull);
|
||||
}
|
||||
|
||||
public DocFiglioPadreCR() {}
|
||||
|
||||
public void setId_docFiglioPadre(long newId_documentoPF) {
|
||||
this.id_docFiglioPadre = newId_documentoPF;
|
||||
}
|
||||
|
||||
public void setId_documentoPadre(long newId_documentoPadre) {
|
||||
this.id_documentoPadre = newId_documentoPadre;
|
||||
setDocumentoPadre(null);
|
||||
}
|
||||
|
||||
public void setId_documentoFiglio(long newId_documentoFiglio) {
|
||||
this.id_documentoFiglio = newId_documentoFiglio;
|
||||
setDocumentoFiglio(null);
|
||||
}
|
||||
|
||||
public long getId_docFiglioPadre() {
|
||||
return this.id_docFiglioPadre;
|
||||
}
|
||||
|
||||
public long getId_documentoPadre() {
|
||||
return this.id_documentoPadre;
|
||||
}
|
||||
|
||||
public long getId_documentoFiglio() {
|
||||
return this.id_documentoFiglio;
|
||||
}
|
||||
|
||||
public void setDocumentoPadre(Documento newDocumentoPadre) {
|
||||
this.documentoPadre = newDocumentoPadre;
|
||||
}
|
||||
|
||||
public Documento getDocumentoPadre() {
|
||||
this.documentoPadre = (Documento)getSecondaryObject(this.documentoPadre, Documento.class,
|
||||
|
||||
getId_documentoPadre());
|
||||
return this.documentoPadre;
|
||||
}
|
||||
|
||||
public void setDocumentoFiglio(Documento newDocumentoFiglio) {
|
||||
this.documentoFiglio = newDocumentoFiglio;
|
||||
}
|
||||
|
||||
public Documento getDocumentoFiglio() {
|
||||
this.documentoFiglio = (Documento)getSecondaryObject(this.documentoFiglio, Documento.class,
|
||||
|
||||
getId_documentoFiglio());
|
||||
return this.documentoFiglio;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue