65 lines
2.1 KiB
XML
65 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
Licensed under European Union Public Licence (EUPL) version 1.2.
|
|
|
|
-->
|
|
<testSet xmlns="http://difi.no/xsd/vefa/validator/1.0" configuration="tc434-ubl">
|
|
<assert>
|
|
<scope>BR-29</scope>
|
|
</assert>
|
|
<test>
|
|
<assert>
|
|
<description>Verify that if a period has a start date and an end date, the end date is equal to, or later than the start date </description>
|
|
<success>BR-29</success>
|
|
</assert>
|
|
<CreditNote
|
|
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
|
|
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
|
|
xmlns="urn:oasis:names:specification:ubl:schema:xsd:CreditNote-2">
|
|
|
|
<cac:InvoicePeriod>
|
|
<cbc:StartDate>2013-06-01</cbc:StartDate>
|
|
<cbc:EndDate>2013-06-01</cbc:EndDate>
|
|
</cac:InvoicePeriod>
|
|
</CreditNote>
|
|
</test>
|
|
|
|
<test>
|
|
<assert>
|
|
<description>Verify that if a period has a start date and an end date, the end date is equal to, or later than the start date </description>
|
|
<success>BR-29</success>
|
|
</assert>
|
|
<CreditNote
|
|
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
|
|
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
|
|
xmlns="urn:oasis:names:specification:ubl:schema:xsd:CreditNote-2">
|
|
|
|
<cac:InvoicePeriod>
|
|
<cbc:StartDate>2013-06-01</cbc:StartDate>
|
|
<cbc:EndDate>2013-08-01</cbc:EndDate>
|
|
</cac:InvoicePeriod>
|
|
</CreditNote>
|
|
</test>
|
|
|
|
<test>
|
|
<assert>
|
|
<description>Trigger error if a period has a start date and an end date,and the end date is earlier than the start date</description>
|
|
<error>BR-29</error>
|
|
</assert>
|
|
<CreditNote
|
|
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2"
|
|
xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2"
|
|
xmlns="urn:oasis:names:specification:ubl:schema:xsd:CreditNote-2">
|
|
|
|
|
|
<cac:InvoicePeriod>
|
|
<cbc:StartDate>2013-06-01</cbc:StartDate>
|
|
<cbc:EndDate>2013-05-01</cbc:EndDate>
|
|
</cac:InvoicePeriod>
|
|
</CreditNote>
|
|
</test>
|
|
|
|
|
|
</testSet>
|