70 lines
1.4 KiB
Java
70 lines
1.4 KiB
Java
package it.acxent.art;
|
|
|
|
import it.acxent.anag.Clifor;
|
|
import java.sql.Date;
|
|
|
|
public interface ArticoloInterface2 {
|
|
public static final long TIPO_ARTICOLO = 0L;
|
|
|
|
public static final long TIPO_ARTICOLO_VARIANTE = 1L;
|
|
|
|
double getAbbuonoPrezzoPubblico();
|
|
|
|
Date getDataCambiamentoPrezzo();
|
|
|
|
Date getDataScadenzaOfferta();
|
|
|
|
String getDescrizione();
|
|
|
|
String getDescrizione(String paramString);
|
|
|
|
String getDescrizioneUrl();
|
|
|
|
String getDescrizioneVetrina();
|
|
|
|
String getDescrizioneVetrina(String paramString);
|
|
|
|
long getId();
|
|
|
|
long getId_articolo();
|
|
|
|
long getId_articoloVariante();
|
|
|
|
long getId_tipo();
|
|
|
|
long getId_tipoPadre();
|
|
|
|
String getImgFileName(int paramInt);
|
|
|
|
double getPercSconto();
|
|
|
|
double getPercSconto(Clifor paramClifor);
|
|
|
|
double getPrezzoOfferta();
|
|
|
|
double getPrezzoOffertaIva();
|
|
|
|
double getPrezzoPubblico();
|
|
|
|
double getPrezzoPubblicoFinale(Clifor paramClifor);
|
|
|
|
double getPrezzoPubblicoIva();
|
|
|
|
double getPrezzoPubblicoFinaleIva(Clifor paramClifor);
|
|
|
|
double getPrezzoPubblicoIvaAbbuono();
|
|
|
|
double getPrezzoPubblicoIvaAbbuono(Clifor paramClifor);
|
|
|
|
double getPrezzoPubblicoScontato();
|
|
|
|
double getPrezzoPubblicoScontato(Clifor paramClifor);
|
|
|
|
double getPrezzoPubblicoScontatoIva();
|
|
|
|
double getPrezzoPubblicoScontatoIva(Clifor paramClifor);
|
|
|
|
long getTipoArticoloVetrina();
|
|
|
|
boolean isOffertaValida();
|
|
}
|