| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| <trees xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xmlns="http://ofbiz.apache.org/Widget-Tree" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Tree http://ofbiz.apache.org/dtds/widget-tree.xsd"> |
| <tree name="TreeWorkEffort" root-node-name="node-root" entity-name="WorkEffort" |
| default-render-style="expand-collapse" default-wrap-style="treeWrapper"> |
| <node name="node-root" entity-name="WorkEffort" > |
| <entity-one entity-name="WorkEffort" value-field="workEffort"/> |
| <sub-node node-name="node-list"> |
| <entity-condition entity-name="WorkEffortAssoc"> |
| <condition-expr field-name="workEffortIdFrom" operator="equals" from-field="workEffortId"/> |
| </entity-condition> |
| </sub-node> |
| </node> |
| <node name="node-list" entry-name="workEffortAssoc" entity-name="WorkEffortAssoc" join-field-name="workEffortIdTo"> |
| <entity-one entity-name="WorkEffort" value-field="workEffort"> |
| <field-map field-name="workEffortId" from-field="workEffortAssoc.workEffortIdTo"/> |
| </entity-one> |
| <link target="EditWorkEffortAndAssoc" text="${workEffort.workEffortName} - ${workEffort.description} [${workEffort.workEffortId}]"> |
| <parameter param-name="workEffortIdTo" from-field="workEffortAssoc.workEffortIdTo"/> |
| <parameter param-name="workEffortIdFrom" from-field="workEffortAssoc.workEffortIdFrom"/> |
| <parameter param-name="workEffortAssocTypeId" from-field="workEffortAssoc.workEffortAssocTypeId"/> |
| <parameter param-name="fromDate" from-field="workEffortAssoc.fromDate"/> |
| </link> |
| <sub-node node-name="node-list"> |
| <entity-condition entity-name="WorkEffortAssoc"> |
| <condition-expr field-name="workEffortIdFrom" operator="equals" from-field="workEffortAssoc.workEffortIdTo"/> |
| </entity-condition> |
| </sub-node> |
| </node> |
| </tree> |
| |
| <!-- A read-only tree of child work efforts. Mainly used to check if iCalendar events and |
| tasks are being saved as work efforts. --> |
| <tree name="ICalendarTree" root-node-name="node-root" entity-name="WorkEffort" expand-collapse-request="ICalendarChildren?workEffortId=${workEffortId}" |
| default-render-style="expand-collapse" default-wrap-style="treeWrapper"> |
| <node name="node-root" entity-name="WorkEffort" > |
| <entity-one entity-name="WorkEffort" value-field="workEffort"/> |
| <sub-node node-name="node-list"> |
| <entity-condition entity-name="WorkEffortAssoc"> |
| <condition-expr field-name="workEffortIdFrom" operator="equals" from-field="workEffortId"/> |
| </entity-condition> |
| </sub-node> |
| </node> |
| <node name="node-list" entry-name="workEffortAssoc" entity-name="WorkEffortAssoc" join-field-name="workEffortIdTo"> |
| <entity-one entity-name="WorkEffort" value-field="workEffort"> |
| <field-map field-name="workEffortId" from-field="workEffortAssoc.workEffortIdTo"/> |
| </entity-one> |
| <label text="${workEffort.workEffortName} - ${workEffort.description} [${workEffort.workEffortId}]"/> |
| <sub-node node-name="node-list"> |
| <entity-condition entity-name="WorkEffortAssoc"> |
| <condition-expr field-name="workEffortIdFrom" operator="equals" from-field="workEffortAssoc.workEffortIdTo"/> |
| </entity-condition> |
| </sub-node> |
| </node> |
| </tree> |
| |
| </trees> |