implementation of item charges and allowance
This commit is contained in:
@@ -13,7 +13,8 @@ import java.math.BigDecimal;
|
|||||||
public interface IZUGFeRDExportableItem {
|
public interface IZUGFeRDExportableItem {
|
||||||
|
|
||||||
IZUGFeRDExportableProduct getProduct();
|
IZUGFeRDExportableProduct getProduct();
|
||||||
|
IZUGFeRDAllowanceCharge[] getItemAllowances();
|
||||||
|
IZUGFeRDAllowanceCharge[] getItemCharges();
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -251,6 +251,16 @@ public class MustangReaderWriterEdgeTest extends TestCase implements IZUGFeRDExp
|
|||||||
this.product = product;
|
this.product = product;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IZUGFeRDAllowanceCharge[] getItemAllowances() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IZUGFeRDAllowanceCharge[] getItemCharges() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class Product implements IZUGFeRDExportableProduct
|
class Product implements IZUGFeRDExportableProduct
|
||||||
|
|||||||
@@ -253,6 +253,16 @@ public class MustangReaderWriterTest extends TestCase implements IZUGFeRDExporta
|
|||||||
this.product = product;
|
this.product = product;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IZUGFeRDAllowanceCharge[] getItemAllowances() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IZUGFeRDAllowanceCharge[] getItemCharges() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class Product implements IZUGFeRDExportableProduct
|
class Product implements IZUGFeRDExportableProduct
|
||||||
|
|||||||
Reference in New Issue
Block a user