-
-
Notifications
You must be signed in to change notification settings - Fork 171
Open
Description
In an attempt to fix a problem with SpecifiedTradePaymentTerms, I tried to implement my own version and found I could not get an HTML-linefeed (" ") in my output because of inconsistent translation:
If my code is:
result.AddTradePaymentTerms("line1\nline2", dueDate);
The result is:
<ram:SpecifiedTradePaymentTerms> <ram:Description>line1
line2</ram:Description>
If my code is:
result.AddTradePaymentTerms("line1 line2", dueDate);
The result is:
<ram:SpecifiedTradePaymentTerms> <ram:Description>line1&#10;line2</ram:Description>
In neither case could I get the desired:
<ram:SpecifiedTradePaymentTerms> <ram:Description>line1 line2</ram:Description>
Metadata
Metadata
Assignees
Labels
No labels