implementation of item charges and allowance

This commit is contained in:
AlexanderSchmidt
2015-11-16 11:36:04 +01:00
parent b5cc1eee7f
commit 12ce806ac2
3 changed files with 22 additions and 1 deletions

View File

@@ -13,7 +13,8 @@ import java.math.BigDecimal;
public interface IZUGFeRDExportableItem {
IZUGFeRDExportableProduct getProduct();
IZUGFeRDAllowanceCharge[] getItemAllowances();
IZUGFeRDAllowanceCharge[] getItemCharges();
/**

View File

@@ -251,6 +251,16 @@ public class MustangReaderWriterEdgeTest extends TestCase implements IZUGFeRDExp
this.product = product;
}
@Override
public IZUGFeRDAllowanceCharge[] getItemAllowances() {
return null;
}
@Override
public IZUGFeRDAllowanceCharge[] getItemCharges() {
return null;
}
}
class Product implements IZUGFeRDExportableProduct

View File

@@ -253,6 +253,16 @@ public class MustangReaderWriterTest extends TestCase implements IZUGFeRDExporta
this.product = product;
}
@Override
public IZUGFeRDAllowanceCharge[] getItemAllowances() {
return null;
}
@Override
public IZUGFeRDAllowanceCharge[] getItemCharges() {
return null;
}
}
class Product implements IZUGFeRDExportableProduct