Entfernung von totem Code: Die Funktion menubar() gibt es schon lange nicht mehr.
[kivitendo-erp.git] / bin / mozilla / pe.pl
index 8327349..660e37a 100644 (file)
 #
 #======================================================================
 
-
 use SL::PE;
 
 1;
-# end of main
-
 
+# end of main
 
 sub add {
   $lxdebug->enter_sub();
@@ -46,15 +44,16 @@ sub add {
   $form->{title} = "Add";
 
   # construct callback
-  $form->{callback} = "$form->{script}?action=add&type=$form->{type}&path=$form->{path}&login=$form->{login}&password=$form->{password}" unless $form->{callback};
+  $form->{callback} =
+    "$form->{script}?action=add&type=$form->{type}&path=$form->{path}&login=$form->{login}&password=$form->{password}"
+    unless $form->{callback};
+
+  &{"form_$form->{type}_header"};
+  &{"form_$form->{type}_footer"};
 
-  &{ "form_$form->{type}_header" };
-  &{ "form_$form->{type}_footer" };
-  
   $lxdebug->leave_sub();
 }
 
-
 sub edit {
   $lxdebug->enter_sub();
 
@@ -66,48 +65,64 @@ sub edit {
   if ($form->{type} eq 'partsgroup') {
     PE->get_partsgroup(\%myconfig, \%$form);
   }
+  if ($form->{type} eq 'pricegroup') {
+    PE->get_pricegroup(\%myconfig, \%$form);
+  }
+  &{"form_$form->{type}_header"};
+  &{"form_$form->{type}_footer"};
 
-  &{ "form_$form->{type}_header" };
-  &{ "form_$form->{type}_footer" };
-  
   $lxdebug->leave_sub();
 }
 
-
 sub search {
   $lxdebug->enter_sub();
 
   if ($form->{type} eq 'project') {
-    $report = "project_report";
-    $sort = 'projectnumber';
+    $report        = "project_report";
+    $sort          = 'projectnumber';
     $form->{title} = $locale->text('Projects');
 
     $number = qq|
        <tr>
-         <th align=right width=1%>|.$locale->text('Number').qq|</th>
+         <th align=right width=1%>| . $locale->text('Number') . qq|</th>
          <td><input name=projectnumber size=20></td>
        </tr>
        <tr>
-         <th align=right>|.$locale->text('Description').qq|</th>
+         <th align=right>| . $locale->text('Description') . qq|</th>
          <td><input name=description size=60></td>
        </tr>
 |;
 
   }
   if ($form->{type} eq 'partsgroup') {
-    $report = "partsgroup_report";
-    $sort = 'partsgroup';
+    $report        = "partsgroup_report";
+    $sort          = 'partsgroup';
     $form->{title} = $locale->text('Groups');
-    
+
     $number = qq|
        <tr>
-         <th align=right width=1%>|.$locale->text('Group').qq|</th>
+         <th align=right width=1%>| . $locale->text('Group') . qq|</th>
          <td><input name=partsgroup size=20></td>
        </tr>
 |;
 
   }
 
+  # for pricesgroups
+  if ($form->{type} eq 'pricegroup') {
+    $report        = "pricegroup_report";
+    $sort          = 'pricegroup';
+    $form->{title} = $locale->text('Pricegroup');
+
+    $number = qq|
+       <tr>
+         <th align=right width=1%>| . $locale->text('Pricegroup') . qq|</th>
+         <td><input name=pricegroup size=20></td>
+       </tr>
+|;
+
+  }
+
   $form->header;
 
   print qq|
@@ -129,8 +144,10 @@ sub search {
         $number
        <tr>
          <td></td>
-         <td><input name=status class=radio type=radio value=all checked>&nbsp;|.$locale->text('All').qq|
-         <input name=status class=radio type=radio value=orphaned>&nbsp;|.$locale->text('Orphaned').qq|</td>
+         <td><input name=status class=radio type=radio value=all checked>&nbsp;|
+    . $locale->text('All') . qq|
+         <input name=status class=radio type=radio value=orphaned>&nbsp;|
+    . $locale->text('Orphaned') . qq|</td>
        </tr>
       </table>
     </td>
@@ -147,7 +164,8 @@ sub search {
 <input type=hidden name=password value=$form->{password}>
 
 <br>
-<input class=submit type=submit name=action value="|.$locale->text('Continue').qq|">
+<input class=submit type=submit name=action value="|
+    . $locale->text('Continue') . qq|">
 </form>
 
 </body>
@@ -157,17 +175,17 @@ sub search {
   $lxdebug->leave_sub();
 }
 
-
-
 sub project_report {
   $lxdebug->enter_sub();
 
-  map { $form->{$_} = $form->unescape($form->{$_}) } (projectnumber, description);
+  map { $form->{$_} = $form->unescape($form->{$_}) }
+    (projectnumber, description);
   PE->projects(\%myconfig, \%$form);
 
-  $callback = "$form->{script}?action=project_report&type=$form->{type}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}";
+  $callback =
+    "$form->{script}?action=project_report&type=$form->{type}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}";
   $href = $callback;
-  
+
   if ($form->{status} eq 'all') {
     $option = $locale->text('All');
   }
@@ -175,26 +193,33 @@ sub project_report {
     $option .= $locale->text('Orphaned');
   }
   if ($form->{projectnumber}) {
-    $href .= "&projectnumber=".$form->escape($form->{projectnumber});
+    $href     .= "&projectnumber=" . $form->escape($form->{projectnumber});
     $callback .= "&projectnumber=$form->{projectnumber}";
-    $option .= "\n<br>".$locale->text('Project')." : $form->{projectnumber}";
+    $option   .=
+      "\n<br>" . $locale->text('Project') . " : $form->{projectnumber}";
   }
   if ($form->{description}) {
-    $href .= "&description=".$form->escape($form->{description});
+    $href     .= "&description=" . $form->escape($form->{description});
     $callback .= "&description=$form->{description}";
-    $option .= "\n<br>".$locale->text('Description')." : $form->{description}";
+    $option   .=
+      "\n<br>" . $locale->text('Description') . " : $form->{description}";
   }
-    
 
   @column_index = $form->sort_columns(qw(projectnumber description));
 
-  $column_header{projectnumber} = qq|<th><a class=listheading href=$href&sort=projectnumber>|.$locale->text('Number').qq|</a></th>|;
-  $column_header{description} = qq|<th><a class=listheading href=$href&sort=description>|.$locale->text('Description').qq|</a></th>|;
+  $column_header{projectnumber} =
+      qq|<th><a class=listheading href=$href&sort=projectnumber>|
+    . $locale->text('Number')
+    . qq|</a></th>|;
+  $column_header{description} =
+      qq|<th><a class=listheading href=$href&sort=description>|
+    . $locale->text('Description')
+    . qq|</a></th>|;
 
   $form->{title} = $locale->text('Projects');
 
   $form->header;
+
   print qq|
 <body>
 
@@ -213,7 +238,7 @@ sub project_report {
 |;
 
   map { print "$column_header{$_}\n" } @column_index;
-  
+
   print qq|
         </tr>
 |;
@@ -223,25 +248,27 @@ sub project_report {
 
   # escape callback for href
   $callback = $form->escape($callback);
-  
+
   foreach $ref (@{ $form->{project_list} }) {
-    
-    $i++; $i %= 2;
-    
+
+    $i++;
+    $i %= 2;
+
     print qq|
         <tr valign=top class=listrow$i>
 |;
-    
-    $column_data{projectnumber} = qq|<td><a href=$form->{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{projectnumber}</td>|;
+
+    $column_data{projectnumber} =
+      qq|<td><a href=$form->{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{projectnumber}</td>|;
     $column_data{description} = qq|<td>$ref->{description}&nbsp;</td>|;
-    
+
     map { print "$column_data{$_}\n" } @column_index;
-    
+
     print "
         </tr>
 ";
   }
-  
+
   print qq|
       </table>
     </td>
@@ -262,16 +289,11 @@ sub project_report {
 <input type=hidden name=login value=$form->{login}>
 <input type=hidden name=password value=$form->{password}>
 
-<input class=submit type=submit name=action value="|.$locale->text('Add').qq|">|;
-
-  if ($form->{menubar}) {
-    require "$form->{path}/menu.pl";
-    &menubar;
-  }
+<input class=submit type=submit name=action value="|
+    . $locale->text('Add') . qq|">
 
-  print qq|
   </form>
-  
+
 </body>
 </html>
 |;
@@ -279,23 +301,24 @@ sub project_report {
   $lxdebug->leave_sub();
 }
 
-
 sub form_project_header {
   $lxdebug->enter_sub();
 
   $form->{title} = $locale->text("$form->{title} Project");
-  
-# $locale->text('Add Project')
-# $locale->text('Edit Project')
+
+  # $locale->text('Add Project')
+  # $locale->text('Edit Project')
 
   $form->{description} =~ s/\"/&quot;/g;
 
   if (($rows = $form->numtextrows($form->{description}, 60)) > 1) {
-    $description = qq|<textarea name="description" rows=$rows cols=60 style="width: 100%" wrap=soft>$form->{description}</textarea>|;
+    $description =
+      qq|<textarea name="description" rows=$rows cols=60 style="width: 100%" wrap=soft>$form->{description}</textarea>|;
   } else {
-    $description = qq|<input name=description size=60 value="$form->{description}">|;
+    $description =
+      qq|<input name=description size=60 value="$form->{description}">|;
   }
-  
+
   $form->header;
 
   print qq|
@@ -315,11 +338,11 @@ sub form_project_header {
     <td>
       <table>
        <tr>
-         <th align=right>|.$locale->text('Number').qq|</th>
+         <th align=right>| . $locale->text('Number') . qq|</th>
          <td><input name=projectnumber size=20 value="$form->{projectnumber}"></td>
        </tr>
        <tr>
-         <th align=right>|.$locale->text('Description').qq|</th>
+         <th align=right>| . $locale->text('Description') . qq|</th>
          <td>$description</td>
        </tr>
       </table>
@@ -334,7 +357,6 @@ sub form_project_header {
   $lxdebug->leave_sub();
 }
 
-
 sub form_project_footer {
   $lxdebug->enter_sub();
 
@@ -346,17 +368,14 @@ sub form_project_footer {
 <input type=hidden name=login value=$form->{login}>
 <input type=hidden name=password value=$form->{password}>
 
-<br><input type=submit class=submit name=action value="|.$locale->text('Save').qq|">
+<br><input type=submit class=submit name=action value="|
+    . $locale->text('Save') . qq|">
 |;
 
   if ($form->{id} && $form->{orphaned}) {
     print qq|
-<input type=submit class=submit name=action value="|.$locale->text('Delete').qq|">|;
-  }
-
-  if ($form->{menubar}) {
-    require "$form->{path}/menu.pl";
-    &menubar;
+<input type=submit class=submit name=action value="|
+      . $locale->text('Delete') . qq|">|;
   }
 
   print qq|
@@ -369,7 +388,6 @@ sub form_project_footer {
   $lxdebug->leave_sub();
 }
 
-
 sub save {
   $lxdebug->enter_sub();
 
@@ -384,28 +402,35 @@ sub save {
     $form->redirect($locale->text('Group saved!'));
   }
 
+  # choice pricegroup and save
+  if ($form->{type} eq 'pricegroup') {
+    $form->isblank("pricegroup", $locale->text('Pricegroup missing!'));
+    PE->save_pricegroup(\%myconfig, \%$form);
+    $form->redirect($locale->text('Pricegroup saved!'));
+  }
+
   $lxdebug->leave_sub();
 }
 
-
 sub delete {
   $lxdebug->enter_sub();
 
   PE->delete_tuple(\%myconfig, \%$form);
-  
-  if ($form->{type} eq 'project') { 
+
+  if ($form->{type} eq 'project') {
     $form->redirect($locale->text('Project deleted!'));
   }
   if ($form->{type} eq 'partsgroup') {
     $form->redirect($locale->text('Group deleted!'));
   }
+  if ($form->{type} eq 'pricegroup') {
+    $form->redirect($locale->text('Pricegroup deleted!'));
+  }
 
   $lxdebug->leave_sub();
 }
 
-
-sub continue { &{ $form->{nextsub} } };
-
+sub continue { &{ $form->{nextsub} } }
 
 sub partsgroup_report {
   $lxdebug->enter_sub();
@@ -413,8 +438,9 @@ sub partsgroup_report {
   map { $form->{$_} = $form->unescape($form->{$_}) } (partsgroup);
   PE->partsgroups(\%myconfig, \%$form);
 
-  $callback = "$form->{script}?action=partsgroup_report&type=$form->{type}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}";
-  
+  $callback =
+    "$form->{script}?action=partsgroup_report&type=$form->{type}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}";
+
   if ($form->{status} eq 'all') {
     $option = $locale->text('All');
   }
@@ -423,18 +449,18 @@ sub partsgroup_report {
   }
   if ($form->{partsgroup}) {
     $callback .= "&partsgroup=$form->{partsgroup}";
-    $option .= "\n<br>".$locale->text('Group')." : $form->{partsgroup}";
+    $option   .= "\n<br>" . $locale->text('Group') . " : $form->{partsgroup}";
   }
-   
 
   @column_index = $form->sort_columns(qw(partsgroup));
 
-  $column_header{partsgroup} = qq|<th class=listheading width=90%>|.$locale->text('Group').qq|</th>|;
+  $column_header{partsgroup} =
+    qq|<th class=listheading width=90%>| . $locale->text('Group') . qq|</th>|;
 
   $form->{title} = $locale->text('Groups');
 
   $form->header;
+
   print qq|
 <body>
 
@@ -453,7 +479,7 @@ sub partsgroup_report {
 |;
 
   map { print "$column_header{$_}\n" } @column_index;
-  
+
   print qq|
         </tr>
 |;
@@ -463,23 +489,25 @@ sub partsgroup_report {
 
   # escape callback for href
   $callback = $form->escape($callback);
-  
+
   foreach $ref (@{ $form->{item_list} }) {
-    
-    $i++; $i %= 2;
-    
+
+    $i++;
+    $i %= 2;
+
     print qq|
         <tr valign=top class=listrow$i>
 |;
-    
-    $column_data{partsgroup} = qq|<td><a href=$form->{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{partsgroup}</td>|;
+
+    $column_data{partsgroup} =
+      qq|<td><a href=$form->{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{partsgroup}</td>|;
     map { print "$column_data{$_}\n" } @column_index;
-    
+
     print "
         </tr>
 ";
   }
-  
+
   print qq|
       </table>
     </td>
@@ -500,14 +528,9 @@ sub partsgroup_report {
 <input type=hidden name=login value=$form->{login}>
 <input type=hidden name=password value=$form->{password}>
 
-<input class=submit type=submit name=action value="|.$locale->text('Add').qq|">|;
+<input class=submit type=submit name=action value="|
+    . $locale->text('Add') . qq|">
 
-  if ($form->{menubar}) {
-    require "$form->{path}/menu.pl";
-    &menubar;
-  }
-
-  print qq|
   </form>
 
 </body>
@@ -517,18 +540,16 @@ sub partsgroup_report {
   $lxdebug->leave_sub();
 }
 
-
 sub form_partsgroup_header {
   $lxdebug->enter_sub();
 
   $form->{title} = $locale->text("$form->{title} Group");
-  
-# $locale->text('Add Group')
-# $locale->text('Edit Group')
+
+  # $locale->text('Add Group')
+  # $locale->text('Edit Group')
 
   $form->{partsgroup} =~ s/\"/&quot;/g;
 
-  
   $form->header;
 
   print qq|
@@ -548,7 +569,7 @@ sub form_partsgroup_header {
     <td>
       <table width=100%>
        <tr>
-         <th align=right>|.$locale->text('Group').qq|</th>
+         <th align=right>| . $locale->text('Group') . qq|</th>
 
           <td><input name=partsgroup size=30 value="$form->{partsgroup}"></td>
        </tr>
@@ -564,7 +585,6 @@ sub form_partsgroup_header {
   $lxdebug->leave_sub();
 }
 
-
 sub form_partsgroup_footer {
   $lxdebug->enter_sub();
 
@@ -576,21 +596,132 @@ sub form_partsgroup_footer {
 <input type=hidden name=login value=$form->{login}>
 <input type=hidden name=password value=$form->{password}>
 
-<br><input type=submit class=submit name=action value="|.$locale->text('Save').qq|">
+<br><input type=submit class=submit name=action value="|
+    . $locale->text('Save') . qq|">
 |;
 
   if ($form->{id} && $form->{orphaned}) {
     print qq|
-<input type=submit class=submit name=action value="|.$locale->text('Delete').qq|">|;
+<input type=submit class=submit name=action value="|
+      . $locale->text('Delete') . qq|">|;
   }
 
-  if ($form->{menubar}) {
-    require "$form->{path}/menu.pl";
-    &menubar;
+  print qq|
+</form>
+
+</body>
+</html>
+|;
+
+  $lxdebug->leave_sub();
+}
+
+#################################
+# get pricesgroups and build up html-code
+#
+sub pricegroup_report {
+  $lxdebug->enter_sub();
+
+  map { $form->{$_} = $form->unescape($form->{$_}) } (pricegroup);
+  PE->pricegroups(\%myconfig, \%$form);
+
+  $callback =
+    "$form->{script}?action=pricegroup_report&type=$form->{type}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}";
+
+  if ($form->{status} eq 'all') {
+    $option = $locale->text('All');
+  }
+  if ($form->{status} eq 'orphaned') {
+    $option .= $locale->text('Orphaned');
   }
+  if ($form->{pricegroup}) {
+    $callback .= "&pricegroup=$form->{pricegroup}";
+    $option   .=
+      "\n<br>" . $locale->text('Pricegroup') . " : $form->{pricegroup}";
+  }
+
+  @column_index = $form->sort_columns(qw(pricegroup));
+
+  $column_header{pricegroup} =
+      qq|<th class=listheading width=90%>|
+    . $locale->text('Pricegroup')
+    . qq|</th>|;
+
+  $form->{title} = $locale->text('Pricegroup');
+
+  $form->header;
 
   print qq|
-</form>
+<body>
+
+<table width=100%>
+  <tr>
+    <th class=listtop>$form->{title}</th>
+  </tr>
+  <tr height="5"></tr>
+  <tr>
+    <td>$option</td>
+  </tr>
+  <tr>
+    <td>
+      <table width=100%>
+       <tr class=listheading>
+|;
+
+  map { print "$column_header{$_}\n" } @column_index;
+
+  print qq|
+        </tr>
+|;
+
+  # escape callback
+  $form->{callback} = $callback;
+
+  # escape callback for href
+  $callback = $form->escape($callback);
+
+  foreach $ref (@{ $form->{item_list} }) {
+
+    $i++;
+    $i %= 2;
+
+    print qq|
+        <tr valign=top class=listrow$i>
+|;
+    $column_data{pricegroup} =
+      qq|<td><a href=$form->{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&path=$form->{path}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{pricegroup}</td>|;
+
+    map { print "$column_data{$_}\n" } @column_index;
+
+    print "
+        </tr>
+";
+  }
+
+  print qq|
+      </table>
+    </td>
+  </tr>
+  <tr>
+    <td><hr size=3 noshade></td>
+  </tr>
+</table>
+
+<br>
+<form method=post action=$form->{script}>
+
+<input name=callback type=hidden value="$form->{callback}">
+
+<input type=hidden name=type value=$form->{type}>
+
+<input type=hidden name=path value=$form->{path}>
+<input type=hidden name=login value=$form->{login}>
+<input type=hidden name=password value=$form->{password}>
+
+<input class=submit type=submit name=action value="|
+    . $locale->text('Add') . qq|">
+
+  </form>
 
 </body>
 </html>
@@ -599,4 +730,82 @@ sub form_partsgroup_footer {
   $lxdebug->leave_sub();
 }
 
+#######################
+#build up pricegroup_header
+#
+sub form_pricegroup_header {
+  $lxdebug->enter_sub();
+
+  # $locale->text('Add Pricegroup')
+  # $locale->text('Edit Pricegroup')
+
+  $form->{title} = $locale->text("$form->{title} Pricegroup");
+
+  $form->{pricegroup} =~ s/\"/&quot;/g;
+
+  $form->header;
+
+  print qq|
+<body>
+
+<form method=post action=$form->{script}>
+
+<input type=hidden name=id value=$form->{id}>
+<input type=hidden name=type value=$form->{type}>
+
+<table width=100%>
+  <tr>
+    <th class=listtop>$form->{title}</th>
+  </tr>
+  <tr height="5"></tr>
+  <tr>
+    <td>
+      <table width=100%>
+       <tr>
+         <th align=right>| . $locale->text('Preisgruppe') . qq|</th>
+          <td><input name=pricegroup size=30 value="$form->{pricegroup}"></td>
+       </tr>
+      </table>
+    </td>
+  </tr>
+  <tr>
+    <td colspan=2><hr size=3 noshade></td>
+  </tr>
+</table>
+|;
+
+  $lxdebug->leave_sub();
+}
+######################
+#build up pricegroup_footer
+#
+sub form_pricegroup_footer {
+  $lxdebug->enter_sub();
+
+  print qq|
+
+<input name=callback type=hidden value="$form->{callback}">
+
+<input type=hidden name=path value=$form->{path}>
+<input type=hidden name=login value=$form->{login}>
+<input type=hidden name=password value=$form->{password}>
+
+<br><input type=submit class=submit name=action value="|
+    . $locale->text('Save') . qq|">
+|;
 
+  if ($form->{id} && $form->{orphaned}) {
+    print qq|
+<input type=submit class=submit name=action value="|
+      . $locale->text('Delete') . qq|">|;
+  }
+
+  print qq|
+</form>
+
+</body>
+</html>
+|;
+
+  $lxdebug->leave_sub();
+}