You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Providing a document name seem to be (no longer) valid.
After activating the commented out name, errors are generated within the mustangproject validator tests, warnings when uploading the generated document to a test site:
I found out, that "Name" only? exists in the factur-x EXTENDED Spezifications.
When exporting with the EXTENDED Profile, like
zugFeRD2PullProvider.setProfile(Profiles.getByName("EXTENDED"));
then there should be no validation error/warning.
So i think the follwoing could by right?
if (profile == Profiles.getByName("EXTENDED") && trans.getDocumentName() != null) {
xml += "ram:Name"+trans.getDocumentName()+"</ram:Name>";
}
Invoice invoice = new Invoice();
invoice.setDocumentName("RECHNUNG");
XML generation inside of ZUGFeRD2PullProvider: Line 385
should be like:
best regards
franz
The text was updated successfully, but these errors were encountered: