X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fpe.pl;h=e003e07d2ba79df7c66295392f6e3501fcec18f3;hb=b2945bf61775161f9ce9be9bdbd106ad44247a14;hp=8d2c07dc24548651ccab52b990c887dc0cab35e2;hpb=195883fdfd3b10f329036767f027baa6e7c402b9;p=kivitendo-erp.git diff --git a/bin/mozilla/pe.pl b/bin/mozilla/pe.pl index 8d2c07dc2..e003e07d2 100644 --- a/bin/mozilla/pe.pl +++ b/bin/mozilla/pe.pl @@ -27,83 +27,84 @@ # 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 { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); + + $main::auth->assert('config'); + + 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}" + "$form->{script}?action=add&type=$form->{type}" unless $form->{callback}; - &{"form_$form->{type}_header"}; - &{"form_$form->{type}_footer"}; + call_sub("form_$form->{type}_header"); + call_sub("form_$form->{type}_footer"); - $lxdebug->leave_sub(); + $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||; + #/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); } - &{"form_$form->{type}_header"}; - &{"form_$form->{type}_footer"}; + call_sub("form_$form->{type}_header"); + call_sub("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'); - $number = qq| - - | . $locale->text('Number') . qq| - - - - | . $locale->text('Description') . qq| - - -|; + 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| - - | . $locale->text('Group') . qq| - - + + | . $locale->text('Group') . qq| + + |; } @@ -115,10 +116,10 @@ sub search { $form->{title} = $locale->text('Pricegroup'); $number = qq| - - | . $locale->text('Pricegroup') . qq| - - + + | . $locale->text('Pricegroup') . qq| + + |; } @@ -142,13 +143,11 @@ sub search { $number - - - - + + + +
 | - . $locale->text('All') . qq| -  | - . $locale->text('Orphaned') . qq|
 | . $locale->text('All') . qq| +  | . $locale->text('Orphaned') . qq|
@@ -159,10 +158,6 @@ sub search { -{path}> -{login}> -{password}> -
@@ -172,241 +167,18 @@ sub search { |; - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } -sub project_report { - $lxdebug->enter_sub(); - - 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}"; - $href = $callback; - - 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
" . $locale->text('Project') . " : $form->{projectnumber}"; - } - if ($form->{description}) { - $href .= "&description=" . $form->escape($form->{description}); - $callback .= "&description=$form->{description}"; - $option .= - "\n
" . $locale->text('Description') . " : $form->{description}"; - } - - @column_index = $form->sort_columns(qw(projectnumber description)); - - $column_header{projectnumber} = - qq|| - . $locale->text('Number') - . qq||; - $column_header{description} = - qq|| - . $locale->text('Description') - . qq||; - - $form->{title} = $locale->text('Projects'); - - $form->header; - - print qq| - - - - - - - - - - - - - - - - -
$form->{title}
$option
- - -|; - - map { print "$column_header{$_}\n" } @column_index; - - print qq| - -|; - - # escape callback - $form->{callback} = $callback .= "&sort=$form->{sort}"; - - # escape callback for href - $callback = $form->escape($callback); - - foreach $ref (@{ $form->{project_list} }) { - - $i++; - $i %= 2; - - print qq| - -|; - - $column_data{projectnumber} = - qq||; - $column_data{description} = qq||; - - map { print "$column_data{$_}\n" } @column_index; - - print " - -"; - } - - print qq| -
{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}$ref->{description} 
-

- -
-
{script}> - - - -{type}> - -{path}> -{login}> -{password}> - -|; - - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } - - print qq| -
- - - -|; - - $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') - - $form->{description} =~ s/\"/"/g; - - if (($rows = $form->numtextrows($form->{description}, 60)) > 1) { - $description = - qq||; - } else { - $description = - qq||; - } - - $form->header; - - print qq| - - -
{script}> - -{id}> - - - - - - - - - - - - - -
$form->{title}
- - - - - - - - - -
| . $locale->text('Number') . qq|
| . $locale->text('Description') . qq|$description
-

-|; - - $lxdebug->leave_sub(); -} - -sub form_project_footer { - $lxdebug->enter_sub(); - - print qq| - - - -{path}> -{login}> -{password}> - -
-|; - - if ($form->{id} && $form->{orphaned}) { - print qq| -|; - } - - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } - - print qq| -
+sub save { + $main::lxdebug->enter_sub(); - - -|; + $main::auth->assert('config'); - $lxdebug->leave_sub(); -} + my $form = $main::form; + my %myconfig = %main::myconfig; + my $locale = $main::locale; -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); @@ -419,39 +191,62 @@ sub save { 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($form->dbconnect(\%myconfig)); + } + # /saving the history - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } sub delete { - $lxdebug->enter_sub(); + $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 '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(); + # saving the history + if(!exists $form->{addition}) { + $form->{snumbers} = qq|projectnumber_| . $form->{projectnumber}; + $form->{addition} = "DELETED"; + $form->save_history($form->dbconnect(\%myconfig)); + } + # /saving the history + $main::lxdebug->leave_sub(); } -sub continue { &{ $form->{nextsub} } } +sub continue { call_sub($main::form->{"nextsub"}); } sub partsgroup_report { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); + + $main::auth->assert('config'); - map { $form->{$_} = $form->unescape($form->{$_}) } (partsgroup); + my $form = $main::form; + my %myconfig = %main::myconfig; + my $locale = $main::locale; + + map { $form->{$_} = $form->unescape($form->{$_}) } qw(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}"; + my $callback = + "$form->{script}?action=partsgroup_report&type=$form->{type}&status=$form->{status}"; + my ($option); if ($form->{status} eq 'all') { $option = $locale->text('All'); } @@ -463,8 +258,8 @@ sub partsgroup_report { $option .= "\n
" . $locale->text('Group') . " : $form->{partsgroup}"; } - @column_index = $form->sort_columns(qw(partsgroup)); - + my @column_index = $form->sort_columns(qw(partsgroup)); + my %column_header; $column_header{partsgroup} = qq|| . $locale->text('Group') . qq||; @@ -486,7 +281,7 @@ sub partsgroup_report { - + |; map { print "$column_header{$_}\n" } @column_index; @@ -501,7 +296,8 @@ sub partsgroup_report { # escape callback for href $callback = $form->escape($callback); - foreach $ref (@{ $form->{item_list} }) { + my ($i, %column_data); + foreach my $ref (@{ $form->{item_list} }) { $i++; $i %= 2; @@ -511,7 +307,7 @@ sub partsgroup_report { |; $column_data{partsgroup} = - qq||; + qq||; map { print "$column_data{$_}\n" } @column_index; print " @@ -535,32 +331,27 @@ sub partsgroup_report { {type}> -{path}> -{login}> -{password}> - |; + . $locale->text('Add') . qq|"> - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } - - print qq| |; - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } sub form_partsgroup_header { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); - $form->{title} = $locale->text("$form->{title} Pricegroup"); + $main::auth->assert('config'); + + my $form = $main::form; + my $locale = $main::locale; + + $form->{title} = $locale->text("$form->{title} Group"); # $locale->text('Add Group') # $locale->text('Edit Group') @@ -585,11 +376,10 @@ sub form_partsgroup_header { @@ -599,20 +389,21 @@ sub form_partsgroup_header {
{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}{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&callback=$callback>$ref->{partsgroup}
- - - + + - +
| . $locale->text('Pricegroup') . qq|
| . $locale->text('Group') . qq|
|; - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } sub form_partsgroup_footer { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); + + $main::auth->assert('config'); + + my $form = $main::form; + my $locale = $main::locale; print qq| -{path}> -{login}> -{password}> -
|; @@ -623,11 +414,14 @@ sub form_partsgroup_footer { . $locale->text('Delete') . qq|">|; } - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } - +# button for saving history +print qq| + {id} + . qq|); name=history id=history value=| + . $locale->text('history') + . qq|>|; +# /button for saving history print qq| @@ -635,21 +429,28 @@ sub form_partsgroup_footer { |; - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } ################################# # get pricesgroups and build up html-code # sub pricegroup_report { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); + + $main::auth->assert('config'); + + my $form = $main::form; + my %myconfig = %main::myconfig; + my $locale = $main::locale; - map { $form->{$_} = $form->unescape($form->{$_}) } (pricegroup); + map { $form->{$_} = $form->unescape($form->{$_}) } qw(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}"; + my $callback = + "$form->{script}?action=pricegroup_report&type=$form->{type}&status=$form->{status}"; + my $option; if ($form->{status} eq 'all') { $option = $locale->text('All'); } @@ -662,8 +463,8 @@ sub pricegroup_report { "\n
" . $locale->text('Pricegroup') . " : $form->{pricegroup}"; } - @column_index = $form->sort_columns(qw(pricegroup)); - + my @column_index = $form->sort_columns(qw(pricegroup)); + my %column_header; $column_header{pricegroup} = qq|| . $locale->text('Pricegroup') @@ -687,7 +488,7 @@ sub pricegroup_report { - + |; map { print "$column_header{$_}\n" } @column_index; @@ -702,7 +503,8 @@ sub pricegroup_report { # escape callback for href $callback = $form->escape($callback); - foreach $ref (@{ $form->{item_list} }) { + my ($i, %column_data); + foreach my $ref (@{ $form->{item_list} }) { $i++; $i %= 2; @@ -711,7 +513,7 @@ sub pricegroup_report { |; $column_data{pricegroup} = - qq||; + qq||; map { print "$column_data{$_}\n" } @column_index; @@ -736,35 +538,33 @@ sub pricegroup_report { {type}> -{path}> -{login}> -{password}> - |; - - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } + . $locale->text('Add') . qq|"> - print qq| |; - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } ####################### #build up pricegroup_header # sub form_pricegroup_header { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); - $form->{title} = $locale->text("$form->{title} Group"); + $main::auth->assert('config'); + + my $form = $main::form; + my $locale = $main::locale; + + # $locale->text('Add Pricegroup') + # $locale->text('Edit Pricegroup') + + $form->{title} = $locale->text("$form->{title} Pricegroup"); $form->{pricegroup} =~ s/\"/"/g; @@ -786,10 +586,10 @@ sub form_pricegroup_header { @@ -799,22 +599,23 @@ sub form_pricegroup_header {
{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}{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&callback=$callback>$ref->{pricegroup}
- - + + - +
| . $locale->text('Preisgruppe') . qq|
| . $locale->text('Preisgruppe') . qq|
|; - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } ###################### #build up pricegroup_footer # sub form_pricegroup_footer { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); + + $main::auth->assert('config'); + + my $form = $main::form; + my $locale = $main::locale; print qq| -{path}> -{login}> -{password}> -
|; @@ -825,11 +626,14 @@ sub form_pricegroup_footer { . $locale->text('Delete') . qq|">|; } - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } - +# button for saving history +print qq| + {id} + . qq|); name=history id=history value=| + . $locale->text('history') + . qq|>|; +# /button for saving history print qq| @@ -837,5 +641,5 @@ sub form_pricegroup_footer { |; - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); }