BUGFIX: Neuen Artikel anlegen verwendet alten Controller
authorMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Mon, 19 Dec 2016 13:31:52 +0000 (14:31 +0100)
committerMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Mon, 19 Dec 2016 13:31:52 +0000 (14:31 +0100)
Neuen Artikel anlegen springt in nicht mehr vorhandene Methode in ic.pl

Nun wird in neuen Part Controller gesprungen

templates/webpages/generic/new_item.html

index ef7799b..65e061a 100644 (file)
@@ -5,19 +5,21 @@
 
     <p>[% 'What type of item is this?' | $T8 %]</h4>
 
-    <form method="post" action="ic.pl">
+    <form method="post" action="controller.pl">
 
       <p>
 
-      <input class="radio" type="radio" name="part_type" value="part" checked>&nbsp;[% 'Part' | $T8 %]<br>
-      <input class="radio" type="radio" name="part_type" value="service">&nbsp;[% 'Service' | $T8 %]
+      <input class="radio" type="radio" name="part_type" value="part" checked>&nbsp;[% 'Part'       | $T8 %]<br>
+      <input class="radio" type="radio" name="part_type" value="assembly">    &nbsp;[% 'Assembly'   | $T8 %]<br>
+      <input class="radio" type="radio" name="part_type" value="service">     &nbsp;[% 'Service'    | $T8 %]<br>
+      <input class="radio" type="radio" name="part_type" value="assortment">  &nbsp;[% 'Assortment' | $T8 %]
       <p>
 
       [%- FOREACH var = HIDDENS %]
       <input type="hidden" name="[% HTML.escape(var.name) %]" value="[% HTML.escape(var.value) %]">
       [%- END %]
 
-      <input type="hidden" name="action" value="dispatcher">
+      <input type="hidden" name="action" value="Part/dispatch">
       <input class="submit" type="submit" name="action_add" value="[% 'Continue' | $T8 %]">
       <input id='back_button' type='button' class="submit" value="[% 'Back' | $T8 %]">
     </form>