Index: trunk/grails-app/controllers/ManufacturerDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/ManufacturerDetailedController.groovy	(revision 372)
+++ trunk/grails-app/controllers/ManufacturerDetailedController.groovy	(revision 374)
@@ -15,4 +15,9 @@
 
     def show = {
+
+        // In the case of an actionSubmit button, rewrite action name from 'index'.
+        if(params._action_Show)
+        { params.action='show' }
+
         def manufacturerInstance = Manufacturer.get( params.id )
 
@@ -44,4 +49,9 @@
 
     def edit = {
+
+        // In the case of an actionSubmit button, rewrite action name from 'index'.
+        if(params._action_Edit)
+        { params.action='edit' }
+
         def manufacturerInstance = Manufacturer.get( params.id )
 
Index: trunk/grails-app/controllers/SupplierDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/SupplierDetailedController.groovy	(revision 372)
+++ trunk/grails-app/controllers/SupplierDetailedController.groovy	(revision 374)
@@ -15,4 +15,9 @@
 
     def show = {
+
+        // In the case of an actionSubmit button, rewrite action name from 'index'.
+        if(params._action_Show)
+        { params.action='show' }
+
         def supplierInstance = Supplier.get( params.id )
 
@@ -44,4 +49,9 @@
 
     def edit = {
+
+        // In the case of an actionSubmit button, rewrite action name from 'index'.
+        if(params._action_Edit)
+        { params.action='edit' }
+
         def supplierInstance = Supplier.get( params.id )
 
