53 lines
1,017 B
Java
53 lines
1,017 B
Java
package it.acxent.cart;
|
|
|
|
public interface CartItemIterface {
|
|
Object getItemId();
|
|
|
|
double getPrice();
|
|
|
|
double getPriceWVat();
|
|
|
|
boolean isSale();
|
|
|
|
boolean isRM();
|
|
|
|
double getDiscount();
|
|
|
|
double getCost();
|
|
|
|
String getCartItemDescriptionUrl();
|
|
|
|
String getCartItemDescription2(String paramString);
|
|
|
|
String getCartItemDescription3(String paramString);
|
|
|
|
String getCartItemDescriptionCC(String paramString);
|
|
|
|
long getCartItemUdm();
|
|
|
|
double getAvail();
|
|
|
|
double getIvaAliquota(long paramLong);
|
|
|
|
long getIvaItemId(long paramLong);
|
|
|
|
String getCartItemImage();
|
|
|
|
String getCartItemDescription(String paramString);
|
|
|
|
String getCartItemTag();
|
|
|
|
double getPrice(long paramLong);
|
|
|
|
double getPriceWVat(long paramLong);
|
|
|
|
void findByCartitemId(CartItemId paramCartItemId);
|
|
|
|
boolean isCostoSpedizionePreventivo(String paramString);
|
|
|
|
double getDeliveryCost(String paramString);
|
|
|
|
boolean isScontoTroppoAlto();
|
|
|
|
long getPercentileSpedizione();
|
|
}
|