Adobe Livecycle ES4:有条件地将xml子节点绑定到表

时间:2019-01-17 15:08:19

标签: adobe livecycle livecycle-designer

我目前有一组xml子节点,这些子节点使用CustomerInvoice.PriceAndTax.PriceComponents [*]的数据绑定绑定到一个表。

PriceComponent元素的结构为:

 <PriceComponents>
        <Description languageCode="EN">Value Added Tax (%)</Description>
        <Rate>
          <DecimalValue>13.5</DecimalValue>
          <MeasureUnitCode>P1</MeasureUnitCode>
        </Rate>
        <RateBaseQuantityTypeName languageCode="EN"> </RateBaseQuantityTypeName>
        <RateBaseMeasureUnitName languageCode="EN"> </RateBaseMeasureUnitName>
        <CalculationBasis>
          <BaseCode>1</BaseCode>
          <Amount currencyCode="EUR">1500.00</Amount>
        </CalculationBasis>
        <CalculationBasisBaseName languageCode="EN">Percentage (of one hundred)</CalculationBasisBaseName>
        <CalculationBasisQuantityMeasureUnitName languageCode="EN"> </CalculationBasisQuantityMeasureUnitName>
        <CalculationBasisQuantityTypeName languageCode="EN"> </CalculationBasisQuantityTypeName>
        <CalculatedAmount currencyCode="EUR">202.50</CalculatedAmount>
      </PriceComponents>

当前,这会将所有PriceComponent节点输出到表格中的表格,我希望它仅输出描述为增值税(%) 的节点。

在“对象选项板-绑定-数据绑定”属性中是否可以执行此操作?

1 个答案:

答案 0 :(得分:0)

我最终使用脚本解决了这个问题。

我在表格中添加了一个子表格,嵌套在重复行中。在这里,我添加了我要显示的CustomerInvoice.PriceAndTax.PriceComponents子节点中的字段,并添加了“描述”字段来检查其值。

表的结构

-- tblVATAnalysis    
      -- HeaderRow
         --- header fields ---    
      -- MainRow
      -- Row1
         -- colRate
         -- colSupplies
         -- colVATAmount
      -- HiddenRow
         -- lblDescription
         -- decRate
         -- decSupplies
         -- decVATAmount

然后我添加了以下脚本:

FormInvoiceRequest.bdyMain.frmSummaryData.tblVATAnalysis.MainRow.HiddenRow
    ::initialize - (FormCalc, client)

            var content = "";

            if(this.decRate.rawValue <> null & this.decRate.rawValue <> "")
            then    
                if(this.lblDescription.rawValue == "VAT (%)")
                then
                    content = this.decRate.rawValue;
                endif

                if(this.parent.parent.frmTaxAmount.decTaxAmount == 0)
                then
                    if(this.lblDescription.rawValue == "Total Item Net Value")
                    then
                        content = this.decRate.rawValue;
                    endif
                endif
            endif

            if(content <> "")
            then
                FormInvoiceRequest.bdyMain.frmSummaryData.tblVATAnalysis.MainRow.Row1
                .colRate.rawValue = content;
            else
                FormInvoiceRequest.bdyMain.frmSummaryData.tblVATAnalysis.MainRow.Row1
                .presence = "hidden";
            endif

如果行中包含增值税(%)的描述,则会填充一个名为content的变量,然后,如果内容中没有值,则该行将被隐藏。