Merge branch 'rb-wiederkehrende-rechnungen' into after-262
[kivitendo-erp.git] / bin / mozilla / pe.pl
index 8327349..532dcfa 100644 (file)
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 #======================================================================
 #
-# project administration
-# partsgroup administration
+# partsgroup, pricegroup administration
 #
 #======================================================================
 
-
 use SL::PE;
 
+require "bin/mozilla/common.pl";
+
+use strict;
+
 1;
+
 # end of main
 
+sub add {
+  $main::lxdebug->enter_sub();
 
+  $main::auth->assert('config');
 
-sub add {
-  $lxdebug->enter_sub();
+  my $form     = $main::form;
 
   $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}"
+    unless $form->{callback};
 
-  &{ "form_$form->{type}_header" };
-  &{ "form_$form->{type}_footer" };
-  
-  $lxdebug->leave_sub();
-}
+  call_sub("form_$form->{type}_header");
+  call_sub("form_$form->{type}_footer");
 
+  $main::lxdebug->leave_sub();
+}
 
 sub edit {
-  $lxdebug->enter_sub();
+  $main::lxdebug->enter_sub();
+
+  $main::auth->assert('config');
+
+  my $form     = $main::form;
+  my %myconfig = %main::myconfig;
 
+  # show history button
+  $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
+  #/show hhistory button
   $form->{title} = "Edit";
 
-  if ($form->{type} eq 'project') {
-    PE->get_project(\%myconfig, \%$form);
-  }
   if ($form->{type} eq 'partsgroup') {
     PE->get_partsgroup(\%myconfig, \%$form);
   }
+  if ($form->{type} eq 'pricegroup') {
+    PE->get_pricegroup(\%myconfig, \%$form);
+  }
+  call_sub("form_$form->{type}_header");
+  call_sub("form_$form->{type}_footer");
 
-  &{ "form_$form->{type}_header" };
-  &{ "form_$form->{type}_footer" };
-  
-  $lxdebug->leave_sub();
+  $main::lxdebug->leave_sub();
 }
 
-
 sub search {
-  $lxdebug->enter_sub();
+  $main::lxdebug->enter_sub();
 
-  if ($form->{type} eq 'project') {
-    $report = "project_report";
-    $sort = 'projectnumber';
-    $form->{title} = $locale->text('Projects');
+  $main::auth->assert('config');
+
+  my $form     = $main::form;
+  my $locale   = $main::locale;
+
+  my ($report, $sort, $number);
+  if ($form->{type} eq 'partsgroup') {
+    $report        = "partsgroup_report";
+    $sort          = 'partsgroup';
+    $form->{title} = $locale->text('Groups');
 
     $number = qq|
-       <tr>
-         <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>
-         <td><input name=description size=60></td>
-       </tr>
+  <tr>
+    <th align=right width=1%>| . $locale->text('Group') . qq|</th>
+    <td><input name=partsgroup size=20></td>
+  </tr>
 |;
 
   }
-  if ($form->{type} eq 'partsgroup') {
-    $report = "partsgroup_report";
-    $sort = 'partsgroup';
-    $form->{title} = $locale->text('Groups');
-    
+
+  # 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('Group').qq|</th>
-         <td><input name=partsgroup size=20></td>
-       </tr>
+  <tr>
+    <th align=right width=1%>| . $locale->text('Pricegroup') . qq|</th>
+    <td><input name=pricegroup size=20></td>
+  </tr>
 |;
 
   }
@@ -127,11 +143,11 @@ sub search {
     <td>
       <table width=100%>
         $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>
-       </tr>
+        <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>
+        </tr>
       </table>
     </td>
   </tr>
@@ -142,59 +158,115 @@ sub search {
 
 <input type=hidden name=nextsub value=$report>
 
-<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 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>
 </html>
 |;
 
-  $lxdebug->leave_sub();
+  $main::lxdebug->leave_sub();
+}
+
+sub save {
+  $main::lxdebug->enter_sub();
+
+  $main::auth->assert('config');
+
+  my $form     = $main::form;
+  my %myconfig = %main::myconfig;
+  my $locale   = $main::locale;
+
+  if ($form->{type} eq 'partsgroup') {
+    $form->isblank("partsgroup", $locale->text('Group missing!'));
+    PE->save_partsgroup(\%myconfig, \%$form);
+    $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!'));
+  }
+  # saving the history
+  if(!exists $form->{addition} && $form->{id} ne "") {
+    $form->{snumbers} = qq|projectnumber_| . $form->{projectnumber};
+    $form->{addition} = "SAVED";
+    $form->save_history;
+  }
+  # /saving the history
+
+  $main::lxdebug->leave_sub();
 }
 
+sub delete {
+  $main::lxdebug->enter_sub();
+
+  $main::auth->assert('config');
+
+  my $form     = $main::form;
+  my %myconfig = %main::myconfig;
+  my $locale   = $main::locale;
+
+  PE->delete_tuple(\%myconfig, \%$form);
+
+  if ($form->{type} eq 'partsgroup') {
+    $form->redirect($locale->text('Group deleted!'));
+  }
+  if ($form->{type} eq 'pricegroup') {
+    $form->redirect($locale->text('Pricegroup deleted!'));
+  }
+  # saving the history
+  if(!exists $form->{addition}) {
+    $form->{snumbers} = qq|projectnumber_| . $form->{projectnumber};
+    $form->{addition} = "DELETED";
+    $form->save_history;
+  }
+  # /saving the history
+  $main::lxdebug->leave_sub();
+}
+
+sub continue { call_sub($main::form->{"nextsub"}); }
+
+sub partsgroup_report {
+  $main::lxdebug->enter_sub();
+
+  $main::auth->assert('config');
 
+  my $form     = $main::form;
+  my %myconfig = %main::myconfig;
+  my $locale   = $main::locale;
 
-sub project_report {
-  $lxdebug->enter_sub();
+  map { $form->{$_} = $form->unescape($form->{$_}) } qw(partsgroup);
+  PE->partsgroups(\%myconfig, \%$form);
 
-  map { $form->{$_} = $form->unescape($form->{$_}) } (projectnumber, description);
-  PE->projects(\%myconfig, \%$form);
+  my $callback =
+    "$form->{script}?action=partsgroup_report&type=$form->{type}&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;
-  
+  my ($option);
   if ($form->{status} eq 'all') {
     $option = $locale->text('All');
   }
   if ($form->{status} eq 'orphaned') {
     $option .= $locale->text('Orphaned');
   }
-  if ($form->{projectnumber}) {
-    $href .= "&projectnumber=".$form->escape($form->{projectnumber});
-    $callback .= "&projectnumber=$form->{projectnumber}";
-    $option .= "\n<br>".$locale->text('Project')." : $form->{projectnumber}";
-  }
-  if ($form->{description}) {
-    $href .= "&description=".$form->escape($form->{description});
-    $callback .= "&description=$form->{description}";
-    $option .= "\n<br>".$locale->text('Description')." : $form->{description}";
+  if ($form->{partsgroup}) {
+    $callback .= "&partsgroup=$form->{partsgroup}";
+    $option   .= "\n<br>" . $locale->text('Group') . " : $form->{partsgroup}";
   }
-    
 
-  @column_index = $form->sort_columns(qw(projectnumber description));
+  my @column_index = $form->sort_columns(qw(partsgroup));
+  my %column_header;
+  $column_header{partsgroup} =
+    qq|<th class=listheading width=90%>| . $locale->text('Group') . qq|</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->{title} = $locale->text('Groups');
 
   $form->header;
+
   print qq|
 <body>
 
@@ -209,39 +281,40 @@ sub project_report {
   <tr>
     <td>
       <table width=100%>
-       <tr class=listheading>
+        <tr class=listheading>
 |;
 
   map { print "$column_header{$_}\n" } @column_index;
-  
+
   print qq|
         </tr>
 |;
 
   # escape callback
-  $form->{callback} = $callback .= "&sort=$form->{sort}";
+  $form->{callback} = $callback;
 
   # escape callback for href
   $callback = $form->escape($callback);
-  
-  foreach $ref (@{ $form->{project_list} }) {
-    
-    $i++; $i %= 2;
-    
+
+  my ($i, %column_data);
+  foreach my $ref (@{ $form->{item_list} }) {
+
+    $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{description} = qq|<td>$ref->{description}&nbsp;</td>|;
-    
+
+    $column_data{partsgroup} =
+      qq|<td><a href=$form->{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&callback=$callback>$ref->{partsgroup}</td>|;
     map { print "$column_data{$_}\n" } @column_index;
-    
+
     print "
         </tr>
 ";
   }
-  
+
   print qq|
       </table>
     </td>
@@ -258,44 +331,33 @@ sub project_report {
 
 <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|">|;
-
-  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>
 |;
 
-  $lxdebug->leave_sub();
+  $main::lxdebug->leave_sub();
 }
 
+sub form_partsgroup_header {
+  $main::lxdebug->enter_sub();
 
-sub form_project_header {
-  $lxdebug->enter_sub();
+  $main::auth->assert('config');
 
-  $form->{title} = $locale->text("$form->{title} Project");
-  
-# $locale->text('Add Project')
-# $locale->text('Edit Project')
+  my $form     = $main::form;
+  my $locale   = $main::locale;
 
-  $form->{description} =~ s/\"/&quot;/g;
+  $form->{title} = $locale->text("$form->{title} Group");
+
+  # $locale->text('Add Group')
+  # $locale->text('Edit Group')
+
+  $form->{partsgroup} =~ 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>|;
-  } else {
-    $description = qq|<input name=description size=60 value="$form->{description}">|;
-  }
-  
   $form->header;
 
   print qq|
@@ -304,7 +366,7 @@ sub form_project_header {
 <form method=post action=$form->{script}>
 
 <input type=hidden name=id value=$form->{id}>
-<input type=hidden name=type value=project>
+<input type=hidden name=type value=$form->{type}>
 
 <table width=100%>
   <tr>
@@ -313,15 +375,11 @@ sub form_project_header {
   <tr height="5"></tr>
   <tr>
     <td>
-      <table>
-       <tr>
-         <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>
-         <td>$description</td>
-       </tr>
+      <table width=100%>
+        <tr>
+          <th align=right>| . $locale->text('Group') . qq|</th>
+          <td><input name=partsgroup size=30 value="$form->{partsgroup}"></td>
+        </tr>
       </table>
     </td>
   </tr>
@@ -331,34 +389,39 @@ sub form_project_header {
 </table>
 |;
 
-  $lxdebug->leave_sub();
+  $main::lxdebug->leave_sub();
 }
 
+sub form_partsgroup_footer {
+  $main::lxdebug->enter_sub();
 
-sub form_project_footer {
-  $lxdebug->enter_sub();
+  $main::auth->assert('config');
+
+  my $form     = $main::form;
+  my $locale   = $main::locale;
 
   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|">
+<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|">|;
   }
 
+# button for saving history
+print qq|
+    <input type=button onclick=set_history_window(|
+    . $form->{id}
+    . qq|); name=history id=history value=|
+    . $locale->text('history')
+    . qq|>|;
+# /button for saving history
   print qq|
 </form>
 
@@ -366,75 +429,51 @@ sub form_project_footer {
 </html>
 |;
 
-  $lxdebug->leave_sub();
-}
-
-
-sub save {
-  $lxdebug->enter_sub();
-
-  if ($form->{type} eq 'project') {
-    $form->isblank("projectnumber", $locale->text('Project Number missing!'));
-    PE->save_project(\%myconfig, \%$form);
-    $form->redirect($locale->text('Project saved!'));
-  }
-  if ($form->{type} eq 'partsgroup') {
-    $form->isblank("partsgroup", $locale->text('Group missing!'));
-    PE->save_partsgroup(\%myconfig, \%$form);
-    $form->redirect($locale->text('Group saved!'));
-  }
-
-  $lxdebug->leave_sub();
+  $main::lxdebug->leave_sub();
 }
 
+#################################
+# get pricesgroups and build up html-code
+#
+sub pricegroup_report {
+  $main::lxdebug->enter_sub();
 
-sub delete {
-  $lxdebug->enter_sub();
-
-  PE->delete_tuple(\%myconfig, \%$form);
-  
-  if ($form->{type} eq 'project') { 
-    $form->redirect($locale->text('Project deleted!'));
-  }
-  if ($form->{type} eq 'partsgroup') {
-    $form->redirect($locale->text('Group deleted!'));
-  }
-
-  $lxdebug->leave_sub();
-}
-
+  $main::auth->assert('config');
 
-sub continue { &{ $form->{nextsub} } };
+  my $form     = $main::form;
+  my %myconfig = %main::myconfig;
+  my $locale   = $main::locale;
 
+  map { $form->{$_} = $form->unescape($form->{$_}) } qw(pricegroup);
+  PE->pricegroups(\%myconfig, \%$form);
 
-sub partsgroup_report {
-  $lxdebug->enter_sub();
-
-  map { $form->{$_} = $form->unescape($form->{$_}) } (partsgroup);
-  PE->partsgroups(\%myconfig, \%$form);
+  my $callback =
+    "$form->{script}?action=pricegroup_report&type=$form->{type}&status=$form->{status}";
 
-  $callback = "$form->{script}?action=partsgroup_report&type=$form->{type}&path=$form->{path}&login=$form->{login}&password=$form->{password}&status=$form->{status}";
-  
+  my $option;
   if ($form->{status} eq 'all') {
     $option = $locale->text('All');
   }
   if ($form->{status} eq 'orphaned') {
     $option .= $locale->text('Orphaned');
   }
-  if ($form->{partsgroup}) {
-    $callback .= "&partsgroup=$form->{partsgroup}";
-    $option .= "\n<br>".$locale->text('Group')." : $form->{partsgroup}";
+  if ($form->{pricegroup}) {
+    $callback .= "&pricegroup=$form->{pricegroup}";
+    $option   .=
+      "\n<br>" . $locale->text('Pricegroup') . " : $form->{pricegroup}";
   }
-   
 
-  @column_index = $form->sort_columns(qw(partsgroup));
+  my @column_index = $form->sort_columns(qw(pricegroup));
+  my %column_header;
+  $column_header{pricegroup} =
+      qq|<th class=listheading width=90%>|
+    . $locale->text('Pricegroup')
+    . qq|</th>|;
 
-  $column_header{partsgroup} = qq|<th class=listheading width=90%>|.$locale->text('Group').qq|</th>|;
-
-  $form->{title} = $locale->text('Groups');
+  $form->{title} = $locale->text('Pricegroup');
 
   $form->header;
+
   print qq|
 <body>
 
@@ -449,11 +488,11 @@ sub partsgroup_report {
   <tr>
     <td>
       <table width=100%>
-       <tr class=listheading>
+        <tr class=listheading>
 |;
 
   map { print "$column_header{$_}\n" } @column_index;
-  
+
   print qq|
         </tr>
 |;
@@ -463,23 +502,26 @@ sub partsgroup_report {
 
   # escape callback for href
   $callback = $form->escape($callback);
-  
-  foreach $ref (@{ $form->{item_list} }) {
-    
-    $i++; $i %= 2;
-    
+
+  my ($i, %column_data);
+  foreach my $ref (@{ $form->{item_list} }) {
+
+    $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{pricegroup} =
+      qq|<td><a href=$form->{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&callback=$callback>$ref->{pricegroup}</td>|;
+
     map { print "$column_data{$_}\n" } @column_index;
-    
+
     print "
         </tr>
 ";
   }
-  
+
   print qq|
       </table>
     </td>
@@ -496,39 +538,36 @@ sub partsgroup_report {
 
 <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|">
 
-<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>
 </html>
 |;
 
-  $lxdebug->leave_sub();
+  $main::lxdebug->leave_sub();
 }
 
+#######################
+#build up pricegroup_header
+#
+sub form_pricegroup_header {
+  $main::lxdebug->enter_sub();
 
-sub form_partsgroup_header {
-  $lxdebug->enter_sub();
+  $main::auth->assert('config');
 
-  $form->{title} = $locale->text("$form->{title} Group");
-  
-# $locale->text('Add Group')
-# $locale->text('Edit Group')
+  my $form     = $main::form;
+  my $locale   = $main::locale;
 
-  $form->{partsgroup} =~ s/\"/&quot;/g;
+  # $locale->text('Add Pricegroup')
+  # $locale->text('Edit Pricegroup')
+
+  $form->{title} = $locale->text("$form->{title} Pricegroup");
+
+  $form->{pricegroup} =~ s/\"/&quot;/g;
 
-  
   $form->header;
 
   print qq|
@@ -547,11 +586,10 @@ sub form_partsgroup_header {
   <tr>
     <td>
       <table width=100%>
-       <tr>
-         <th align=right>|.$locale->text('Group').qq|</th>
-
-          <td><input name=partsgroup size=30 value="$form->{partsgroup}"></td>
-       </tr>
+        <tr>
+          <th align=right>| . $locale->text('Preisgruppe') . qq|</th>
+          <td><input name=pricegroup size=30 value="$form->{pricegroup}"></td>
+        </tr>
       </table>
     </td>
   </tr>
@@ -561,34 +599,41 @@ sub form_partsgroup_header {
 </table>
 |;
 
-  $lxdebug->leave_sub();
+  $main::lxdebug->leave_sub();
 }
+######################
+#build up pricegroup_footer
+#
+sub form_pricegroup_footer {
+  $main::lxdebug->enter_sub();
 
+  $main::auth->assert('config');
 
-sub form_partsgroup_footer {
-  $lxdebug->enter_sub();
+  my $form     = $main::form;
+  my $locale   = $main::locale;
 
   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|">
+<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|">|;
   }
 
+# button for saving history
+print qq|
+    <input type=button onclick=set_history_window(|
+    . $form->{id}
+    . qq|); name=history id=history value=|
+    . $locale->text('history')
+    . qq|>|;
+# /button for saving history
   print qq|
 </form>
 
@@ -596,7 +641,5 @@ sub form_partsgroup_footer {
 </html>
 |;
 
-  $lxdebug->leave_sub();
+  $main::lxdebug->leave_sub();
 }
-
-