121 lines
2.5 KiB
Java
121 lines
2.5 KiB
Java
package it.acxent.fattele;
|
|
|
|
import it.acxent.db.ApplParmFull;
|
|
import it.acxent.db.ResParm;
|
|
import it.acxent.util.Vectumerator;
|
|
import java.sql.Date;
|
|
import java.sql.Timestamp;
|
|
|
|
public interface FatturaElettronicaInterface {
|
|
boolean isFatturaElettronicaGenerabile();
|
|
|
|
ResParm setFEAggiornaTmstFileXml();
|
|
|
|
String getDocBase();
|
|
|
|
String getPathTmp();
|
|
|
|
ApplParmFull getApFull();
|
|
|
|
String getFEParmSfx();
|
|
|
|
String getFECodiceDestinatario();
|
|
|
|
FEDatiAnagraficiInterface getFEDatiAnagraficiCessionario();
|
|
|
|
String getFEPecDestinatario();
|
|
|
|
String getFEProgressivo();
|
|
|
|
String getFEDivisa();
|
|
|
|
String getFENumeroDocumento();
|
|
|
|
double getFEImportoTotaleDocumento();
|
|
|
|
double getFEArrotondamento();
|
|
|
|
String getFECausale();
|
|
|
|
boolean isFEArt73();
|
|
|
|
Vectumerator<FEScontoMaggiorazioneInterface> getFEScontoMaggiorazione();
|
|
|
|
Vectumerator<FEDatiPagamento> getFEDatiPagamento();
|
|
|
|
String getFETipoDocumento();
|
|
|
|
String getFEDatiOrdineAcquistoRifNumLinea();
|
|
|
|
String getFEDatiOrdineAcquistoNumItem();
|
|
|
|
String getFEDatiOrdineAcquistoCodCommessaConv();
|
|
|
|
String getFEDatiOrdineAcquistoCodiceCUP();
|
|
|
|
String getFEDatiOrdineAcquistoCodiceCIG();
|
|
|
|
String getFEDatiOrdineAcquistoIdDocumento();
|
|
|
|
Date getFEDatiOrdineAcquistoData();
|
|
|
|
String getFEDatiSALRiferimentoFase();
|
|
|
|
Vectumerator<FEDatiDDT> getFEDatiDDT();
|
|
|
|
FESedeInterface getFESedeCessonario();
|
|
|
|
FESedeInterface getFEStabileOrg();
|
|
|
|
String getFERappFiscaleIdPaese();
|
|
|
|
String getFERappFiscalepartitaIva();
|
|
|
|
String getFERappFiscaleCodiceFiscale();
|
|
|
|
String getFERappFiscaleDenominazione();
|
|
|
|
String getFERappFiscaleNome();
|
|
|
|
String getFERappFiscaleCognome();
|
|
|
|
String getFERappFiscaleTitolo();
|
|
|
|
String getFERappFiscaleCodEORI();
|
|
|
|
boolean isPubblicaAmministrazione();
|
|
|
|
Date getFeDataDocumento();
|
|
|
|
FEDatiRitenutaInterface getFeDatiRitenuta();
|
|
|
|
FEDatiTrasportoInterface getFEDatiTrasporto();
|
|
|
|
Vectumerator<FEDettaglioLineeInterface> getFEDettaglioLinee();
|
|
|
|
Vectumerator<FEDettaglioLineeInterface> getFEDettaglioLineeAltre();
|
|
|
|
Vectumerator<FEDatiRiepilogoInterface> getFEDatiRiepilogo();
|
|
|
|
FEAllegatiInterface getFEAllegatiInterface();
|
|
|
|
String getFeBolloVirtuale();
|
|
|
|
double getFEImportoBollo();
|
|
|
|
String getFEProgressivoFile();
|
|
|
|
String getFELinkXml(String paramString);
|
|
|
|
Timestamp getTmstFileXml();
|
|
|
|
Timestamp getTmstInvioXml();
|
|
|
|
String getFERiferimentoTipoDato();
|
|
|
|
String getFERiferimentoTesto();
|
|
|
|
double getFERiferimentoNumero();
|
|
|
|
Date getFERiferimentoData();
|
|
}
|