X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Farap.pl;h=7952922f62735ea361d64c90fd841e61d59f1add;hb=3da2dca2e601b311b6e464ffff02bfe98a7024d1;hp=52057ebbab56f225ae2d6a6aa0f54fd83c240971;hpb=4dbb09950c9f5596646537c12d991c99086fe7c1;p=kivitendo-erp.git diff --git a/bin/mozilla/arap.pl b/bin/mozilla/arap.pl index 52057ebba..7952922f6 100644 --- a/bin/mozilla/arap.pl +++ b/bin/mozilla/arap.pl @@ -31,36 +31,39 @@ # # any custom scripts for this one -if (-f "$form->{path}/custom_arap.pl") { - eval { require "$form->{path}/custom_arap.pl"; }; +if (-f "bin/mozilla/custom_arap.pl") { + eval { require "bin/mozilla/custom_arap.pl"; }; } -if (-f "$form->{path}/$form->{login}_arap.pl") { - eval { require "$form->{path}/$form->{login}_arap.pl"; }; +if (-f "bin/mozilla/$form->{login}_arap.pl") { + eval { require "bin/mozilla/$form->{login}_arap.pl"; }; } - 1; -# end of main +require "bin/mozilla/common.pl"; + +# end of main sub check_name { $lxdebug->enter_sub(); my ($name) = @_; + $name = $name eq "customer" ? "customer" : "vendor"; + my ($new_name, $new_id) = split /--/, $form->{$name}; my $i = 0; - # if we use a selection if ($form->{"select$name"}) { if ($form->{"old$name"} ne $form->{$name}) { - # this is needed for is, ir and oe + # this is needed for is, ir and oe + $form->{update} = 0; # for credit calculations - $form->{oldinvtotal} = 0; + $form->{oldinvtotal} = 0; $form->{oldtotalpaid} = 0; - $form->{calctax} = 1; - + $form->{calctax} = 1; + $form->{"${name}_id"} = $new_id; IS->get_customer(\%myconfig, \%$form) if ($name eq 'customer'); @@ -74,35 +77,42 @@ sub check_name { # check name, combine name and id if ($form->{"old$name"} ne qq|$form->{$name}--$form->{"${name}_id"}|) { + # this is needed for is, ir and oe - + $form->{update} = 0; + # for credit calculations - $form->{oldinvtotal} = 0; + $form->{oldinvtotal} = 0; $form->{oldtotalpaid} = 0; - $form->{calctax} = 1; + $form->{calctax} = 1; # return one name or a list of names in $form->{name_list} if (($i = $form->get_name(\%myconfig, $name)) > 1) { - &select_name($name); - exit; + &select_name($name); + exit; } if ($i == 1) { - # we got one name - $form->{"${name}_id"} = $form->{name_list}[0]->{id}; - $form->{$name} = $form->{name_list}[0]->{name}; - $form->{"old$name"} = qq|$form->{$name}--$form->{"${name}_id"}|; - - IS->get_customer(\%myconfig, \%$form) if ($name eq 'customer'); - IR->get_vendor(\%myconfig, \%$form) if ($name eq 'vendor'); - + + # we got one name + $form->{"${name}_id"} = $form->{name_list}[0]->{id}; + $form->{$name} = $form->{name_list}[0]->{name}; + $form->{"old$name"} = qq|$form->{$name}--$form->{"${name}_id"}|; + + IS->get_customer(\%myconfig, \%$form) if ($name eq 'customer'); + IR->get_vendor(\%myconfig, \%$form) if ($name eq 'vendor'); + } else { - # name is not on file - $msg = ucfirst $name . " not on file or locked!"; - $form->error($locale->text($msg)); + + # name is not on file + # $locale->text('Customer not on file or locked!') + # $locale->text('Vendor not on file or locked!') + $msg = ucfirst $name . " not on file or locked!"; + $form->error($locale->text($msg)); } } } + $form->language_payment(\%myconfig); $lxdebug->leave_sub(); @@ -112,20 +122,20 @@ sub check_name { # $locale->text('Customer not on file!') # $locale->text('Vendor not on file!') - - sub select_name { $lxdebug->enter_sub(); my ($table) = @_; - + @column_index = qw(ndx name address); - $label = ucfirst $table; - $column_data{ndx} = qq| |; - $column_data{name} = qq||.$locale->text($label).qq||; - $column_data{address} = qq||.$locale->text('Address').qq||; - + $label = ucfirst $table; + $column_data{ndx} = qq| |; + $column_data{name} = + qq|| . $locale->text($label) . qq||; + $column_data{address} = + qq|| . $locale->text('Address') . qq||; + # list items with radio button on a form $form->header; @@ -147,7 +157,7 @@ sub select_name { |; map { print "\n$column_data{$_}" } @column_index; - + print qq| |; @@ -157,12 +167,15 @@ sub select_name { $checked = ($i++) ? "" : "checked"; $ref->{name} =~ s/\"/"/g; - - $column_data{ndx} = qq||; - $column_data{name} = qq|$ref->{name}|; - $column_data{address} = qq|$ref->{address} |; - - $j++; $j %= 2; + + $column_data{ndx} = + qq||; + $column_data{name} = + qq|$ref->{name}|; + $column_data{address} = qq|$ref->{address} |; + + $j++; + $j %= 2; print qq| |; @@ -176,7 +189,7 @@ sub select_name { |; } - + print qq| @@ -192,7 +205,7 @@ sub select_name { # delete variables map { delete $form->{$_} } qw(action name_list header); - + # save all other form variables foreach $key (keys %${form}) { $form->{$key} =~ s/\"/"/g; @@ -204,7 +217,8 @@ sub select_name {
- + @@ -214,26 +228,24 @@ sub select_name { $lxdebug->leave_sub(); } - - sub name_selected { $lxdebug->enter_sub(); - # replace the variable with the one checked # index for new item $i = $form->{ndx}; - - $form->{$form->{vc}} = $form->{"new_name_$i"}; + + $form->{ $form->{vc} } = $form->{"new_name_$i"}; $form->{"$form->{vc}_id"} = $form->{"new_id_$i"}; - $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|; + $form->{"old$form->{vc}"} = + qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|; # delete all the new_ variables for $i (1 .. $form->{lastndx}) { - map { delete $form->{"new_${_}_$i"} } (id, name); + map { delete $form->{"new_${_}_$i"} } qw(id name); } - + map { delete $form->{$_} } qw(ndx lastndx nextsub); IS->get_customer(\%myconfig, \%$form) if ($form->{vc} eq 'customer'); @@ -244,7 +256,6 @@ sub name_selected { $lxdebug->leave_sub(); } - sub add_transaction { $lxdebug->enter_sub(); @@ -252,47 +263,52 @@ sub add_transaction { delete $form->{script}; $form->{action} = "add"; - $form->{type} = "invoice" if $module =~ /(is|ir)/; + $form->{type} = "invoice" if $module =~ /(is|ir)/; - $form->{callback} = $form->escape($form->{callback},1); + $form->{callback} = $form->escape($form->{callback}, 1); map { $argv .= "$_=$form->{$_}&" } keys %$form; $form->{callback} = "$module.pl?$argv"; $form->redirect; - + $lxdebug->leave_sub(); } - - sub check_project { $lxdebug->enter_sub(); - for $i (1 .. $form->{rowcount}) { - $form->{"project_id_$i"} = "" unless $form->{"projectnumber_$i"}; - if ($form->{"projectnumber_$i"} ne $form->{"oldprojectnumber_$i"}) { - if ($form->{"projectnumber_$i"}) { - # get new project - $form->{projectnumber} = $form->{"projectnumber_$i"}; - if (($rows = PE->projects(\%myconfig, $form)) > 1) { - # check form->{project_list} how many there are - $form->{rownumber} = $i; - &select_project; - exit; - } - - if ($rows == 1) { - $form->{"project_id_$i"} = $form->{project_list}->[0]->{id}; - $form->{"projectnumber_$i"} = $form->{project_list}->[0]->{projectnumber}; - $form->{"oldprojectnumber_$i"} = $form->{project_list}->[0]->{projectnumber}; - } else { - # not on file - $form->error($locale->text('Project not on file!')); - } + my $suffix = $i ? "_$i" : ""; + my $prefix = $i ? "" : "global"; + $form->{"${prefix}project_id${suffix}"} = "" unless $form->{"${prefix}projectnumber$suffix"}; + if ($form->{"${prefix}projectnumber${suffix}"} ne $form->{"old${prefix}projectnumber${suffix}"}) { + if ($form->{"${prefix}projectnumber${suffix}"}) { + + # get new project + $form->{projectnumber} = $form->{"${prefix}projectnumber${suffix}"}; + if (($rows = PE->projects(\%myconfig, $form)) > 1) { + + # check form->{project_list} how many there are + $form->{rownumber} = $i; + &select_project($i ? undef : 1); + exit; + } + + if ($rows == 1) { + $form->{"${prefix}project_id${suffix}"} = + $form->{project_list}->[0]->{id}; + $form->{"${prefix}projectnumber${suffix}"} = + $form->{project_list}->[0]->{projectnumber}; + $form->{"old${prefix}projectnumber${suffix}"} = + $form->{project_list}->[0]->{projectnumber}; + } else { + + # not on file + $form->error($locale->text('Project not on file!')); + } } else { - $form->{"oldprojectnumber_$i"} = ""; + $form->{"old${prefix}projectnumber${suffix}"} = ""; } } } @@ -300,17 +316,18 @@ sub check_project { $lxdebug->leave_sub(); } - sub select_project { $lxdebug->enter_sub(); - + my ($is_global) = @_; + @column_index = qw(ndx projectnumber description); - $column_data{ndx} = qq| |; - $column_data{projectnumber} = qq||.$locale->text('Number').qq||; - $column_data{description} = qq||.$locale->text('Description').qq||; - + $column_data{ndx} = qq| |; + $column_data{projectnumber} = qq|| . $locale->text('Number') . qq||; + $column_data{description} = + qq|| . $locale->text('Description') . qq||; + # list items with radio button on a form $form->header; @@ -334,7 +351,7 @@ sub select_project { |; map { print "\n$column_data{$_}" } @column_index; - + print qq| |; @@ -344,12 +361,15 @@ sub select_project { $checked = ($i++) ? "" : "checked"; $ref->{name} =~ s/\"/"/g; - - $column_data{ndx} = qq||; - $column_data{projectnumber} = qq|$ref->{projectnumber}|; - $column_data{description} = qq|$ref->{description}|; - - $j++; $j %= 2; + + $column_data{ndx} = + qq||; + $column_data{projectnumber} = + qq|$ref->{projectnumber}|; + $column_data{description} = qq|$ref->{description}|; + + $j++; + $j %= 2; print qq| |; @@ -363,7 +383,7 @@ sub select_project { |; } - + print qq| @@ -378,8 +398,8 @@ sub select_project { |; # delete action variable - map { delete $form->{$_} } qw(action project_list header); - + map { delete $form->{$_} } qw(action project_list header update); + # save all other form variables foreach $key (keys %${form}) { $form->{$key} =~ s/\"/"/g; @@ -387,10 +407,12 @@ sub select_project { } print qq| +
- + @@ -400,29 +422,32 @@ sub select_project { $lxdebug->leave_sub(); } - sub project_selected { $lxdebug->enter_sub(); - # replace the variable with the one checked # index for new item $i = $form->{ndx}; - - $form->{"projectnumber_$form->{rownumber}"} = $form->{"new_projectnumber_$i"}; - $form->{"oldprojectnumber_$form->{rownumber}"} = $form->{"new_projectnumber_$i"}; - $form->{"project_id_$form->{rownumber}"} = $form->{"new_id_$i"}; + + my $prefix = $form->{"is_global"} ? "global" : ""; + my $suffix = $form->{"is_global"} ? "" : "_$form->{rownumber}"; + + $form->{"${prefix}projectnumber${suffix}"} = + $form->{"new_projectnumber_$i"}; + $form->{"old${prefix}projectnumber${suffix}"} = + $form->{"new_projectnumber_$i"}; + $form->{"${prefix}project_id${suffix}"} = $form->{"new_id_$i"}; # delete all the new_ variables for $i (1 .. $form->{lastndx}) { map { delete $form->{"new_${_}_$i"} } qw(id projectnumber description); } - - map { delete $form->{$_} } qw(ndx lastndx nextsub); + + map { delete $form->{$_} } qw(ndx lastndx nextsub is_global); if ($form->{update}) { - &{ $form->{update} }; + call_sub($form->{"update"}); } else { &update; } @@ -430,11 +455,10 @@ sub project_selected { $lxdebug->leave_sub(); } - -sub continue { &{ $form->{nextsub} } }; -sub gl_transaction { &add }; -sub ar_transaction { &add_transaction(ar) }; -sub ap_transaction { &add_transaction(ap) }; -sub sales_invoice { &add_transaction(is) }; -sub vendor_invoice { &add_transaction(ir) }; +sub continue { call_sub($form->{"nextsub"}); } +sub gl_transaction { &add } +sub ar_transaction { &add_transaction('ar') } +sub ap_transaction { &add_transaction('ap') } +sub sales_invoice { &add_transaction('is') } +sub vendor_invoice { &add_transaction('ir') }