OP-TED / eForms-SDK

eForms is the notification standard for public procurement procedures in the EU. The eForms SDK is a collection of resources providing the foundation for building eForms applications.
Creative Commons Attribution 4.0 International
59 stars 30 forks source link

PDF visualisation question (labels without data) #1032

Open tompeeszter opened 1 month ago

tompeeszter commented 1 month ago

We have noticed the following issue.

In the TED xml we don't send the following fields but the labels appear on the TED pdf. The fileds are:

Example: XML AWARDING TERMS:

<cac:AwardingTerms>
        <cac:AwardingCriterion>
          <cac:SubordinateAwardingCriterion>
            <ext:UBLExtensions>
              <ext:UBLExtension>
                <ext:ExtensionContent>
                  <efext:EformsExtension>
                    <efac:AwardCriterionParameter>
                      <efbc:ParameterCode listName="number-weight">poi-exa</efbc:ParameterCode>
                      <efbc:ParameterNumeric>100</efbc:ParameterNumeric>
                    </efac:AwardCriterionParameter>
                  </efext:EformsExtension>
                </ext:ExtensionContent>
              </ext:UBLExtension>
            </ext:UBLExtensions>
            <cbc:AwardingCriterionTypeCode listName="award-criterion-type">quality</cbc:AwardingCriterionTypeCode>
            <cbc:Description languageID="HUN">Súly teszt</cbc:Description>
          </cac:SubordinateAwardingCriterion>
          <cac:SubordinateAwardingCriterion>
            <ext:UBLExtensions>
              <ext:UBLExtension>
                <ext:ExtensionContent>
                  <efext:EformsExtension>
                    <efac:AwardCriterionParameter>
                      <efbc:ParameterCode listName="number-fixed">fix-tot</efbc:ParameterCode>
                      <efbc:ParameterNumeric>100</efbc:ParameterNumeric>
                    </efac:AwardCriterionParameter>
                  </efext:EformsExtension>
                </ext:ExtensionContent>
              </ext:UBLExtension>
            </ext:UBLExtensions>
            <cbc:AwardingCriterionTypeCode listName="award-criterion-type">price</cbc:AwardingCriterionTypeCode>
            <cbc:Description languageID="HUN">Rögzített teszt</cbc:Description>
          </cac:SubordinateAwardingCriterion>
        </cac:AwardingCriterion>
      </cac:AwardingTerms>

PDF:

image

XML - PLACE OF PERFORMANCE:

      <cac:RealizedLocation>
        <cac:Address>
          <cbc:StreetName>123456</cbc:StreetName>
          <cbc:CityName>Valami</cbc:CityName>
          <cbc:PostalZone>3456</cbc:PostalZone>
          <cac:Country>
            <cbc:IdentificationCode listName="country">AGO</cbc:IdentificationCode>
          </cac:Country>
        </cac:Address>
      </cac:RealizedLocation>

PDF: image

Could you please check whether is it OK or not? We use SDK 1.11.1. We did't noticed it while using SDK 1.7.

Thanks in advance!