In the Facturv10Xml.php we only define the SpecifiedTradePaymentTerms:ram:Descriptions with a concatenation of sting and due date.
|
$node->appendChild($this->doc->createElement('ram:Description', $PaymentTerms)); |
In this Schema, we can also define the date as date string. I think we should add this also
<ram:SpecifiedTradePaymentTerms>
<ram:Description>Fällig am 15.05.2025</ram:Description>
<ram:DueDateDateTime>
<udt:DateTimeString format="102">20250815</udt:DateTimeString>
</ram:DueDateDateTime>
</ram:SpecifiedTradePaymentTerms>
In the Facturv10Xml.php we only define the
SpecifiedTradePaymentTerms:ram:Descriptionswith a concatenation of sting and due date.InvoicePlane-e-invoices/application/libraries/XMLtemplates/Facturxv10Xml.php
Line 141 in ad5e8f7
In this Schema, we can also define the date as date string. I think we should add this also