| <?xml version="1.0" encoding="ISO-8859-1"?> |
| <!-- |
| 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. |
| --> |
| |
| <forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xmlns="http://ofbiz.apache.org/Widget-Form" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form http://ofbiz.apache.org/dtds/widget-form.xsd"> |
| <form name="EntitySyncStatus" type="list" list-name="entitySyncList" target="" |
| paginate-target="EntitySyncStatus" view-size="20" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> |
| <actions> |
| <entity-condition entity-name="EntitySync" list="entitySyncList" use-cache="false"> |
| <!-- No conditions, is a find all --> |
| <order-by field-name="runStatusId"/> |
| <order-by field-name="entitySyncId"/> |
| </entity-condition> |
| </actions> |
| <auto-fields-entity entity-name="EntitySync" default-field-type="display"/> |
| |
| <field name="runStatusId"> |
| <display-entity entity-name="StatusItem" key-field-name="statusId"/> |
| </field> |
| |
| <field use-when=""ESR_RUNNING".equals(runStatusId)" name="resetStatus" title=" " widget-style="smallSubmit"> |
| <hyperlink description="${uiLabelMap.WebtoolsSyncResetRunStatus}" target="resetEntitySyncStatusToNotStarted" also-hidden="false"> |
| <parameter param-name="entitySyncId"/> |
| </hyperlink> |
| </field> |
| <field use-when=""ESR_NOT_STARTED".equals(runStatusId) || "ESR_COMPLETE".equals(runStatusId)" name="runOfflineSync" title=" " widget-style="smallSubmit"> |
| <hyperlink description="${uiLabelMap.WebtoolsSyncRunOffline}" target="runOfflineEntitySync" also-hidden="false"> |
| <parameter param-name="entitySyncId"/> |
| </hyperlink> |
| </field> |
| <field use-when=""ESR_PENDING".equals(runStatusId)" name="acceptOffline" title=" " widget-style="smallSubmit"> |
| <hyperlink description="${uiLabelMap.WebtoolsSyncAcceptOffline}" target="updateOfflineEntitySync" also-hidden="false"> |
| <parameter param-name="entitySyncId"/> |
| <parameter param-name="updateType" value="ACCEPT"/> |
| </hyperlink> |
| </field> |
| <field use-when=""ESR_PENDING".equals(runStatusId)" name="rejectOffline" title=" " widget-style="smallSubmit"> |
| <hyperlink description="${uiLabelMap.WebtoolsSyncRejectOffline}" target="updateOfflineEntitySync" also-hidden="false"> |
| <parameter param-name="entitySyncId"/> |
| <parameter param-name="updateType" value="REJECT"/> |
| </hyperlink> |
| </field> |
| </form> |
| |
| <form name="EntitySyncLoadOffline" type="single" target="loadOfflineEntitySyncData" title="" |
| header-row-style="header-row" default-table-style="basic-table"> |
| <auto-fields-service service-name="loadOfflineEntitySyncData"/> |
| <field name="submitButton" title="${uiLabelMap.CommonSubmit}"><submit button-type="button"/></field> |
| </form> |
| </forms> |