first implementation of header allowances

This commit is contained in:
AlexanderSchmidt
2015-11-10 13:59:56 +01:00
parent 74b08e0a2f
commit f3956f2249
4 changed files with 58 additions and 1 deletions

View File

@@ -149,6 +149,21 @@ public class MustangReaderWriterEdgeTest extends TestCase implements IZUGFeRDExp
return "Zahlbar ohne Abzug bis zum " + germanDateFormat.format(getDueDate()); return "Zahlbar ohne Abzug bis zum " + germanDateFormat.format(getDueDate());
} }
@Override
public IZUGFeRDAllowanceCharge[] getZFAllowances() {
return null;
}
@Override
public IZUGFeRDAllowanceCharge[] getZFCharges() {
return null;
}
@Override
public IZUGFeRDAllowanceCharge[] getZFLogisticsServiceCharges() {
return null;
}
class Contact implements IZUGFeRDExportableContact class Contact implements IZUGFeRDExportableContact
{ {

View File

@@ -148,6 +148,24 @@ public class MustangReaderWriterTest extends TestCase implements IZUGFeRDExporta
return "Zahlbar ohne Abzug bis zum " + germanDateFormat.format(getDueDate()); return "Zahlbar ohne Abzug bis zum " + germanDateFormat.format(getDueDate());
} }
@Override
public IZUGFeRDAllowanceCharge[] getZFAllowances() {
return null;
//throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public IZUGFeRDAllowanceCharge[] getZFCharges() {
return null;
//throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public IZUGFeRDAllowanceCharge[] getZFLogisticsServiceCharges() {
return null;
//throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
class Contact implements IZUGFeRDExportableContact class Contact implements IZUGFeRDExportableContact
{ {

24
nbactions.xml Normal file
View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-Generate mvn-repo</actionName>
<displayName>Generate mvn-repo</displayName>
<goals>
<goal>site:deploy</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-mvn-repo</actionName>
<displayName>mvn-repo</displayName>
<goals>
<goal>site</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-deploy</actionName>
<displayName>deploy</displayName>
<goals>
<goal>deploy</goal>
</goals>
</action>
</actions>

View File

@@ -3,7 +3,7 @@
<parent> <parent>
<groupId>com.github.rayman2200</groupId> <groupId>com.github.rayman2200</groupId>
<artifactId>mustang-sample-project</artifactId> <artifactId>mustang-sample-project</artifactId>
<version>1.2.1-SNAPSHOT</version> <version>1.3.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>pdfa3-samples</artifactId> <artifactId>pdfa3-samples</artifactId>