X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fpe.pl;h=cae9bfc5db27b7af457fa1086457929c14519825;hb=91ab1ef646193de9359076a876a33a74d7691145;hp=8d2c07dc24548651ccab52b990c887dc0cab35e2;hpb=195883fdfd3b10f329036767f027baa6e7c402b9;p=kivitendo-erp.git diff --git a/bin/mozilla/pe.pl b/bin/mozilla/pe.pl index 8d2c07dc2..cae9bfc5d 100644 --- a/bin/mozilla/pe.pl +++ b/bin/mozilla/pe.pl @@ -34,6 +34,8 @@ use SL::PE; +require "bin/mozilla/common.pl"; + 1; # end of main @@ -45,18 +47,20 @@ sub 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}&login=$form->{login}&password=$form->{password}" 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(); } sub edit { $lxdebug->enter_sub(); - + # show history button + $form->{javascript} = qq||; + #/show hhistory button $form->{title} = "Edit"; if ($form->{type} eq 'project') { @@ -68,8 +72,8 @@ sub edit { 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(); } @@ -85,12 +89,22 @@ sub search { $number = qq| | . $locale->text('Number') . qq| - + | . $cgi->textfield('-name' => 'projectnumber', '-size' => 20) . qq| | . $locale->text('Description') . qq| - + | . $cgi->textfield('-name' => 'description', '-size' => 60) . qq| + +   + | . + $cgi->radio_group('-name' => 'active', '-default' => 'active', + '-values' => ['active', 'inactive', 'both'], + '-labels' => { 'active' => ' ' . $locale->text("Active"), + 'inactive' => ' ' . $locale->text("Inactive"), + 'both' => ' ' . $locale->text("Both") }) + . qq| + |; } @@ -159,7 +173,6 @@ sub search { -{path}> {login}> {password}> @@ -183,7 +196,8 @@ sub project_report { 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}"; + "$form->{script}?action=project_report&type=$form->{type}&login=$form->{login}&password=$form->{password}&status=$form->{status}&active=" . + E($form->{active}); $href = $callback; if ($form->{status} eq 'all') { @@ -205,7 +219,9 @@ sub project_report { "\n
" . $locale->text('Description') . " : $form->{description}"; } - @column_index = $form->sort_columns(qw(projectnumber description)); + @column_index = qw(projectnumber description); + + push(@column_index, "active") if ("both" eq $form->{active}); $column_header{projectnumber} = qq|| @@ -215,6 +231,8 @@ sub project_report { qq|| . $locale->text('Description') . qq||; + $column_header{active} = + qq|| . $locale->text('Active') . qq||; $form->{title} = $locale->text('Projects'); @@ -259,8 +277,12 @@ sub project_report { |; $column_data{projectnumber} = - 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}|; + qq|{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{projectnumber}|; $column_data{description} = qq|$ref->{description} |; + $column_data{active} = + qq|| . + ($ref->{active} ? $locale->text("Yes") : $locale->text("No")) . + qq||; map { print "$column_data{$_}\n" } @column_index; @@ -285,19 +307,12 @@ sub project_report { {type}> -{path}> {login}> {password}> |; + . $locale->text('Add') . qq|"> - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } - - print qq| @@ -317,12 +332,37 @@ sub form_project_header { $form->{description} =~ s/\"/"/g; + my $projectnumber = + $cgi->textfield('-name' => 'projectnumber', '-size' => 20, + '-default' => $form->{projectnumber}); + + my $description; if (($rows = $form->numtextrows($form->{description}, 60)) > 1) { $description = - qq||; + $cgi->textarea('-name' => 'description', '-rows' => $rows, '-cols' => 60, + '-style' => 'width: 100%', '-wrap' => 'soft', + '-default' => $form->{description}); } else { $description = - qq||; + $cgi->textfield('-name' => 'description', '-size' => 60, + '-default' => $form->{description}); + } + + my $active; + if ($form->{id}) { + $active = + qq| + +   + | . + $cgi->radio_group('-name' => 'active', + '-values' => [1, 0], + '-default' => $form->{active} * 1, + '-labels' => { 1 => $locale->text("Active"), + 0 => $locale->text("Inactive") }) + . qq| + +|; } $form->header; @@ -345,12 +385,13 @@ sub form_project_header { - + + $active
| . $locale->text('Number') . qq|$projectnumber
| . $locale->text('Description') . qq| $description
@@ -370,7 +411,6 @@ sub form_project_footer { -{path}> {login}> {password}> @@ -384,9 +424,15 @@ sub form_project_footer { . $locale->text('Delete') . qq|">|; } - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; + if ($form->{id}) { + # button for saving history + print qq| + {id} + . qq|); name=history id=history value=| + . $locale->text('history') + . qq|>|; + # /button for saving history } print qq| @@ -419,6 +465,13 @@ 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(); } @@ -437,11 +490,17 @@ sub delete { 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($form->dbconnect(\%myconfig)); + } + # /saving the history $lxdebug->leave_sub(); } -sub continue { &{ $form->{nextsub} } } +sub continue { call_sub($form->{"nextsub"}); } sub partsgroup_report { $lxdebug->enter_sub(); @@ -450,7 +509,7 @@ sub partsgroup_report { 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}"; + "$form->{script}?action=partsgroup_report&type=$form->{type}&login=$form->{login}&password=$form->{password}&status=$form->{status}"; if ($form->{status} eq 'all') { $option = $locale->text('All'); @@ -511,7 +570,7 @@ sub partsgroup_report { |; $column_data{partsgroup} = - 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->{partsgroup}|; + qq|{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{partsgroup}|; map { print "$column_data{$_}\n" } @column_index; print " @@ -535,19 +594,12 @@ sub partsgroup_report { {type}> -{path}> {login}> {password}> |; - - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } + . $locale->text('Add') . qq|"> - print qq| @@ -560,7 +612,7 @@ sub partsgroup_report { sub form_partsgroup_header { $lxdebug->enter_sub(); - $form->{title} = $locale->text("$form->{title} Pricegroup"); + $form->{title} = $locale->text("$form->{title} Group"); # $locale->text('Add Group') # $locale->text('Edit Group') @@ -586,7 +638,7 @@ sub form_partsgroup_header { - + @@ -609,7 +661,6 @@ sub form_partsgroup_footer { -{path}> {login}> {password}> @@ -623,11 +674,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| @@ -648,7 +702,7 @@ sub pricegroup_report { 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}"; + "$form->{script}?action=pricegroup_report&type=$form->{type}&login=$form->{login}&password=$form->{password}&status=$form->{status}"; if ($form->{status} eq 'all') { $option = $locale->text('All'); @@ -711,7 +765,7 @@ sub pricegroup_report { |; $column_data{pricegroup} = - qq||; + qq||; map { print "$column_data{$_}\n" } @column_index; @@ -736,19 +790,12 @@ sub pricegroup_report { {type}> -{path}> {login}> {password}> |; + . $locale->text('Add') . qq|"> - if ($form->{menubar}) { - require "$form->{path}/menu.pl"; - &menubar; - } - - print qq| @@ -764,7 +811,10 @@ sub pricegroup_report { sub form_pricegroup_header { $lxdebug->enter_sub(); - $form->{title} = $locale->text("$form->{title} Group"); + # $locale->text('Add Pricegroup') + # $locale->text('Edit Pricegroup') + + $form->{title} = $locale->text("$form->{title} Pricegroup"); $form->{pricegroup} =~ s/\"/"/g; @@ -811,7 +861,6 @@ sub form_pricegroup_footer { -{path}> {login}> {password}> @@ -825,11 +874,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|
| . $locale->text('Pricegroup') . qq|| . $locale->text('Group') . 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->{pricegroup}{script}?action=edit&type=$form->{type}&status=$form->{status}&id=$ref->{id}&login=$form->{login}&password=$form->{password}&callback=$callback>$ref->{pricegroup}