34 lines
857 B
Java
34 lines
857 B
Java
|
|
package it.acxent.contab;
|
||
|
|
|
||
|
|
import it.acxent.anag._AnagAdapter;
|
||
|
|
import it.acxent.db.ApplParmFull;
|
||
|
|
|
||
|
|
public class _ContabAdapter extends _AnagAdapter {
|
||
|
|
public static final long SF_BOZZA = 0L;
|
||
|
|
|
||
|
|
public static final long SF_EMESSA = 1L;
|
||
|
|
|
||
|
|
public static final long SF_REG_IVA = 2L;
|
||
|
|
|
||
|
|
public static final long CONTATORE_VENDITE = 1L;
|
||
|
|
|
||
|
|
public static final long CONTATORE_ACQUISTI = 2L;
|
||
|
|
|
||
|
|
public _ContabAdapter() {}
|
||
|
|
|
||
|
|
public _ContabAdapter(ApplParmFull newApplParmFull) {
|
||
|
|
super(newApplParmFull);
|
||
|
|
}
|
||
|
|
|
||
|
|
protected String getFooterDocumento(int l_numb) {
|
||
|
|
return getParm("FOOT_DOC" + l_numb).getTesto();
|
||
|
|
}
|
||
|
|
|
||
|
|
protected String getHeaderDoocumento(int l_numb) {
|
||
|
|
return getParm("HEAD_DOC" + l_numb).getTesto();
|
||
|
|
}
|
||
|
|
|
||
|
|
protected boolean isDescScontrinoFull() {
|
||
|
|
return (getParm("DESC_SCONTRINO_FULL").getNumeroInt() == 1);
|
||
|
|
}
|
||
|
|
}
|