| <?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>Cost Services</description> |
| <vendor>OFBiz</vendor> |
| <version>1.0</version> |
| |
| <service name="createCostComponentCalc" default-entity-name="CostComponentCalc" engine="entity-auto" invoke="create" auth="true"> |
| <description>Create a CostComponentCalc</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="CREATE"/> |
| <auto-attributes include="nonpk" mode="IN" optional="true"/> |
| <auto-attributes include="pk" mode="OUT" optional="true"/> |
| </service> |
| |
| <service name="updateCostComponentCalc" default-entity-name="CostComponentCalc" engine="entity-auto" invoke="update" auth="true"> |
| <description>Update a CostComponentCalc</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="UPDATE"/> |
| <auto-attributes include="pk" mode="IN" optional="false"/> |
| <auto-attributes include="nonpk" mode="IN" optional="true"/> |
| </service> |
| |
| <service name="removeCostComponentCalc" default-entity-name="CostComponentCalc" engine="entity-auto" invoke="delete" auth="true"> |
| <description>Remove a CostComponentCalc</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="DELETE"/> |
| <auto-attributes include="pk" mode="IN" optional="false"/> |
| <auto-attributes include="nonpk" mode="IN" optional="true"/> |
| </service> |
| |
| <service name="createWorkEffortCostCalc" default-entity-name="WorkEffortCostCalc" engine="entity-auto" invoke="create" auth="true"> |
| <description>Create a WorkEffortCostCalc entry</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="CREATE"/> |
| <auto-attributes include="pk" mode="IN" optional="false"/> |
| <auto-attributes include="nonpk" mode="IN" optional="true"/> |
| <override name="fromDate" optional="true"/> |
| </service> |
| |
| <service name="removeWorkEffortCostCalc" default-entity-name="WorkEffortCostCalc" engine="entity-auto" invoke="delete" auth="true"> |
| <description>Remove a WorkEffortCostCalc entry</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="DELETE"/> |
| <auto-attributes include="pk" mode="IN" optional="false"/> |
| </service> |
| |
| <service name="createProductAverageCost" default-entity-name="ProductAverageCost" engine="entity-auto" invoke="create" auth="true"> |
| <description>Create Product Average Cost record</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="CREATE"/> |
| <auto-attributes include="pk" mode="IN" optional="false"/> |
| <auto-attributes include="nonpk" mode="IN" optional="true"/> |
| <override name="fromDate" optional="true"/> |
| <override name="averageCost" optional="false"/> |
| </service> |
| |
| <service name="updateProductAverageCost" default-entity-name="ProductAverageCost" engine="entity-auto" invoke="update" auth="true"> |
| <description>Update a Product Average Cost record</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="UPDATE"/> |
| <auto-attributes include="pk" mode="IN" optional="false"/> |
| <auto-attributes include="nonpk" mode="IN" optional="true"/> |
| </service> |
| |
| <service name="deleteProductAverageCost" default-entity-name="ProductAverageCost" engine="entity-auto" invoke="delete" auth="true"> |
| <description>Delete a Product Average Cost record</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="DELETE"/> |
| <auto-attributes include="pk" mode="IN" optional="false"/> |
| </service> |
| |
| <service name="updateProductAverageCostOnReceiveInventory" default-entity-name="ProductAverageCost" engine="simple" |
| location="component://product/minilang/product/cost/CostServices.xml" invoke="updateProductAverageCostOnReceiveInventory" auth="true"> |
| <description>Update a Product Average Cost record on receive inventory</description> |
| <permission-service service-name="acctgCostPermissionCheck" main-action="UPDATE"/> |
| <attribute name="facilityId" type="String" mode="IN" optional="false"/> |
| <attribute name="quantityAccepted" type="BigDecimal" mode="IN" optional="false"/> |
| <attribute name="productId" type="String" mode="IN" optional="false"/> |
| <attribute name="inventoryItemId" type="String" mode="IN" optional="false"/> |
| </service> |
| |
| <service name="getProductAverageCost" engine="simple" |
| location="component://product/minilang/product/cost/CostServices.xml" invoke="getProductAverageCost" auth="true"> |
| <description>Get Average cost of a product</description> |
| <attribute name="inventoryItem" type="org.apache.ofbiz.entity.GenericValue" mode="IN" optional="true"/> |
| <attribute name="unitCost" type="BigDecimal" mode="OUT" optional="false"/> |
| </service> |
| </services> |