Merge pull request #471 from J-N-K/fixlegalorg

Fix LegalOrganisation schemeId
This commit is contained in:
Jochen Staerk
2024-09-20 13:24:02 +02:00
committed by GitHub

View File

@@ -18,7 +18,7 @@ public class LegalOrganisation implements IZUGFeRDLegalOrganisation {
}
public LegalOrganisation(String ID, String scheme) {
this.schemedID = new SchemedID(ID, scheme);
this.schemedID = new SchemedID(scheme, ID);
}
public LegalOrganisation(SchemedID schemedID, String tradingBusinessName) {