[OFBiz] SVN: r6596 - trunk/applications/manufacturing/webapp/manufacturing/WEB-INF

jacopo@svn.ofbiz.org jacopo at svn.ofbiz.org
Fri Jan 27 04:17:39 CST 2006


Author: jacopo
Date: 2006-01-27 04:17:32 -0600 (Fri, 27 Jan 2006)
New Revision: 6596

Modified:
   trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/controller.xml
Log:
Added a few request/view definitions (still not active).

Modified: trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/controller.xml
===================================================================
--- trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/controller.xml	2006-01-27 00:39:35 UTC (rev 6595)
+++ trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/controller.xml	2006-01-27 10:17:32 UTC (rev 6596)
@@ -247,6 +247,14 @@
         <security https="true" auth="true"/>
         <response name="success" type="view" value="ListRoutingTaskRoutings"/>
     </request-map>
+    <request-map uri="ListRoutingTaskProducts">
+        <security https="true" auth="true"/>
+        <response name="success" type="view" value="ListRoutingTaskProducts"/>
+    </request-map>
+    <request-map uri="EditRoutingTaskProduct">
+        <security https="true" auth="true"/>
+        <response name="success" type="view" value="EditRoutingTaskProduct"/>
+    </request-map>
     <request-map uri="CreateRoutingTask">
         <security https="true" auth="true"/>
         <event type="service" invoke="createWorkEffort"/>
@@ -332,6 +340,18 @@
         <response name="success" type="view" value="EditRoutingProductLink"/>
         <response name="error" type="view" value="EditRoutingProductLink"/>
     </request-map>
+    <request-map uri="addRoutingTaskProduct">
+        <security https="true" auth="true"/>
+        <event type="service" invoke="createWorkEffortGoodStandard"/>
+        <response name="success" type="view" value="EditRoutingTaskProduct"/>
+        <response name="error" type="view" value="EditRoutingTaskProduct"/>
+    </request-map>
+    <request-map uri="updateRoutingTaskProduct">
+        <security https="true" auth="true"/>
+        <event type="service" invoke="updateWorkEffortGoodStandard"/>
+        <response name="success" type="view" value="EditRoutingTaskProduct"/>
+        <response name="error" type="view" value="EditRoutingTaskProduct"/>
+    </request-map>
     <!-- BOM request mappings -->
     <request-map uri="BomSimulation">
         <security https="true" auth="true"/>
@@ -450,6 +470,12 @@
         <response name="success" type="view" value="EditRoutingProductLink"/>
         <response name="error" type="view" value="EditRoutingProductLink"/>
     </request-map>
+    <request-map uri="removeRoutingTaskProduct">
+        <security https="true" auth="true"/>
+        <event type="service" invoke="removeWorkEffortGoodStandard"/>
+        <response name="success" type="view" value="ListRoutingTaskProducts"/>
+        <response name="error" type="view" value="ListRoutingTaskProducts"/>
+    </request-map>
     <request-map uri="deleteProductionRunRoutingTask">
         <security https="true" auth="true"/>
         <event type="service" invoke="deleteWorkEffort"/>
@@ -487,6 +513,18 @@
         <response name="success" type="view" value="ProductionRunDeclaration"/>
         <response name="error" type="view" value="ProductionRunDeclaration"/>
     </request-map>
+    <request-map uri="createProductionRunTaskProduct">
+        <security https="true" auth="true"/>
+        <event type="service" invoke="productionRunTaskProduce"/>
+        <response name="success" type="view" value="ProductionRunDeclaration"/>
+        <response name="error" type="view" value="ProductionRunDeclaration"/>
+    </request-map>
+    <request-map uri="productionRunTaskReturnMaterials">
+        <security https="true" auth="true"/>
+        <event type="service-multi" invoke="productionRunTaskReturnMaterial"/>
+        <response name="success" type="view" value="ProductionRunDeclaration"/>
+        <response name="error" type="view" value="ProductionRunDeclaration"/>
+    </request-map>
     <request-map uri="quickRunProductionRunTask">
         <security https="true" auth="true"/>
         <event type="service" invoke="quickRunProductionRunTask"/>
@@ -606,6 +644,8 @@
     <view-map name="FindRoutingTask" page="component://manufacturing/widget/manufacturing/RoutingScreens.xml#FindRoutingTask" type="screen"/>
     <view-map name="EditRoutingTask" page="component://manufacturing/widget/manufacturing/RoutingScreens.xml#EditRoutingTask" type="screen"/>
     <view-map name="ListRoutingTaskRoutings" page="component://manufacturing/widget/manufacturing/RoutingScreens.xml#ListRoutingTaskRoutings" type="screen"/>
+    <view-map name="ListRoutingTaskProducts" page="component://manufacturing/widget/manufacturing/RoutingScreens.xml#ListRoutingTaskProducts" type="screen"/>
+    <view-map name="EditRoutingTaskProduct" page="component://manufacturing/widget/manufacturing/RoutingScreens.xml#EditRoutingTaskProduct" type="screen"/>
     <view-map name="FindRouting" page="component://manufacturing/widget/manufacturing/RoutingScreens.xml#FindRouting" type="screen"/>
     <view-map name="EditRouting" page="component://manufacturing/widget/manufacturing/RoutingScreens.xml#EditRouting" type="screen"/>
     <view-map name="EditRoutingTaskAssoc" page="component://manufacturing/widget/manufacturing/RoutingScreens.xml#EditRoutingTaskAssoc" type="screen"/>



More information about the Svn mailing list