1

我正在使用 Orbeon 表单运行程序来执行一些 XForms 文档。我想管理一个条目列表来做一些时间跟踪。我正在使用 xforms:repeat 使用我的数据生成一个表,并使用 xforms:trigger 和 xforms:insert 来插入新条目。现在我想按日期对条目进行排序并按月份对条目进行分组,如下图所示:

分组表示例

对于每个月,我想计算总小时数。有人可以提示如何使用 XForms/Orbeon 构建它,是否有一个工作示例正在做类似的事情?

谢谢!

4

1 回答 1

1

这是一个执行一些类似分组以输出以下内容的示例:

  • 2011 年 5 月
    • 2011-05-10:荷马
    • 2011-05-09:丽莎
  • 2011 年 4 月
    • 2011-04-07:巴特
    • 2011-04-05:巴特
    • 2011-04-02:丽莎

它不完全是您在屏幕截图中的内容,但应该让您对如何进行此分组有一个足够好的了解。

<xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml"
      xmlns:xforms="http://www.w3.org/2002/xforms"
      xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
      xmlns:ev="http://www.w3.org/2001/xml-events"
      xmlns:xs="http://www.w3.org/2001/XMLSchema"
      xmlns:fr="http://orbeon.org/oxf/xml/form-runner">
    <xhtml:head>
        <xhtml:title>Timesheet</xhtml:title>
        <xforms:model>
            <xforms:instance>
                <instance>
                    <entry>
                        <start>2011-05-10</start>
                        <person>Homer</person>
                    </entry>
                    <entry>
                        <start>2011-05-09</start>
                        <person>Lisa</person>
                    </entry>
                    <entry>
                        <start>2011-04-07</start>
                        <person>Bart</person>
                    </entry>
                    <entry>
                        <start>2011-04-05</start>
                        <person>Bart</person>
                    </entry>
                    <entry>
                        <start>2011-04-02</start>
                        <person>Lisa</person>
                    </entry>
                </instance>
            </xforms:instance>
        </xforms:model>
        <xhtml:style type="text/css">
            .xforms-repeat-selected-item-1, .xforms-repeat-selected-item-2 { background: transparent }
        </xhtml:style>
    </xhtml:head>
    <xhtml:body>
        <xxforms:variable name="entries" select="entry"/>
        <xxforms:variable name="months" select="distinct-values($entries/start/substring(., 1, 7))"/>
        <xhtml:ul>
            <xforms:repeat nodeset="$months">
                <xxforms:variable name="current-month" select="."/>
                <xhtml:li>
                    <xforms:output value="format-date(xs:date(concat(., '-01')), '[MNn] [Y]')"/>
                    <xhtml:ul>
                        <xforms:repeat nodeset="$entries[substring(start, 1, 7) = $current-month]">
                            <xhtml:li>
                                <xforms:output ref="start"/>:
                                <xforms:output ref="person"/>
                            </xhtml:li>
                        </xforms:repeat>
                    </xhtml:ul>
                </xhtml:li>
            </xforms:repeat>
        </xhtml:ul>
    </xhtml:body>
</xhtml:html>
于 2011-05-11T02:21:10.817 回答