corrected setting country

This commit is contained in:
jstaerk
2024-11-17 11:15:08 +01:00
parent a115ccd611
commit 9f11aa4ab8

View File

@@ -700,7 +700,7 @@ public class TradeParty implements IZUGFeRDExportableTradeParty {
@Override @Override
public String getCountry() { public String getCountry() {
return taxScheme; return country;
} }
/*** /***
@@ -709,7 +709,7 @@ public class TradeParty implements IZUGFeRDExportableTradeParty {
* @return fluent setter * @return fluent setter
*/ */
public TradeParty setCountry(String country) { public TradeParty setCountry(String country) {
this.taxScheme = country; this.country = country;
return this; return this;
} }