Skip to content

Commit

Permalink
jar v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
eugen committed Jun 5, 2019
1 parent d088b50 commit 96ca7c8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion de.klst.jardesc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jardesc>
<jar path="e-invoice/de.klst.x-factur-0.0.2.jar"/>
<jar path="e-invoice/de.klst.x-factur-0.0.3.jar"/>
<options buildIfNeeded="true" compress="true" descriptionLocation="/e-invoice/de.klst.jardesc" exportErrors="false" exportWarnings="true" includeDirectoryEntries="false" overwrite="false" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
<storedRefactorings deprecationInfo="true" structuralOnly="false"/>
<selectedProjects/>
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/klst/ubl/Invoice.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,12 @@
import com.klst.untdid.codelist.DocumentNameCode;
import com.klst.untdid.codelist.PaymentMeansCode;

import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.AddressType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.CustomerPartyType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.DeliveryType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.FinancialAccountType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.InvoiceLineType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.MonetaryTotalType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.OrderReferenceType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.PartyType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.PaymentMeansType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.PaymentTermsType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.SupplierPartyType;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/klst/ubl/Party.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void addPartyTaxScheme(String companyId) {
// wg copy ctor
void addTaxSchemes(List<Map<Object,String>> partyTaxSchemes) {
partyTaxSchemes.forEach(partyTaxScheme -> {
String taxScheme = partyTaxScheme==null ? null : partyTaxScheme.get(TaxSchemeType.class); // wird immer weggeworfen???????
// String taxScheme = partyTaxScheme==null ? null : partyTaxScheme.get(TaxSchemeType.class); // wird immer weggeworfen???????
String companyId = partyTaxScheme==null ? null : partyTaxScheme.get(CompanyIDType.class);
addPartyTaxScheme(companyId);
});
Expand Down

0 comments on commit 96ca7c8

Please sign in to comment.