| <?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. |
| --> |
| <services xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/services.xsd"> |
| <description>Web Pos Manager Services</description> |
| <vendor>OFBiz</vendor> |
| <version>1.0</version> |
| |
| <service name="openTerminal" engine="simple" auth="false" |
| location="component://webpos/minilang/ManagerEvents.xml" invoke="openTerminal"> |
| <description>Open Terminal</description> |
| <attribute name="startingDrawerAmount" type="String" mode="IN" optional="false"/> |
| </service> |
| |
| <service name="closeTerminal" engine="simple" auth="false" |
| location="component://webpos/minilang/ManagerEvents.xml" invoke="closeTerminal"> |
| <description>Close Terminal</description> |
| <attribute name="endingDrawerCashAmount" type="String" mode="IN" optional="false"/> |
| <attribute name="endingDrawerCheckAmount" type="String" mode="IN" optional="false"/> |
| <attribute name="endingDrawerCcAmount" type="String" mode="IN" optional="false"/> |
| <attribute name="endingDrawerGcAmount" type="String" mode="IN" optional="false"/> |
| <attribute name="endingDrawerOtherAmount" type="String" mode="IN" optional="false"/> |
| </service> |
| |
| <service name="voidOrder" engine="simple" auth="false" |
| location="component://webpos/minilang/ManagerEvents.xml" invoke="voidOrder"> |
| <description>Void Order</description> |
| <attribute name="orderId" type="String" mode="IN" optional="false"/> |
| </service> |
| |
| <service name="shutdown" engine="simple" auth="false" |
| location="component://webpos/minilang/ManagerEvents.xml" invoke="shutdown"> |
| <description>Shutdown</description> |
| </service> |
| |
| <service name="paidOutAndIn" engine="simple" auth="false" |
| location="component://webpos/minilang/ManagerEvents.xml" invoke="paidOutAndIn"> |
| <description>Paid Out and In</description> |
| <attribute name="type" type="String" mode="IN" optional="false"/> |
| <attribute name="amountInOut" type="String" mode="IN" optional="false"/> |
| <attribute name="reasonIn" type="String" mode="IN" optional="false"/> |
| <attribute name="reasonOut" type="String" mode="IN" optional="false"/> |
| <attribute name="reasonCommentInOut" type="String" mode="IN" optional="false"/> |
| </service> |
| |
| <service name="modifyPrice" engine="simple" auth="false" |
| location="component://webpos/minilang/ManagerEvents.xml" invoke="modifyPrice"> |
| <description>Modify Price</description> |
| <attribute name="cartLineIdx" type="Integer" mode="IN" optional="false"/> |
| <attribute name="price" type="String" mode="IN" optional="false"/> |
| </service> |
| </services> |