X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fis.pl;h=e94bb386e11dc1f8fd65baf04aeb870b6910a8ab;hb=599030d5e26bcef0f9850ddbbedba106ded70ebb;hp=85e03c15070bd30892beec50b8deff10bea0ed33;hpb=615121a5115247f50140fb7f892fa2b43947e20a;p=kivitendo-erp.git diff --git a/bin/mozilla/is.pl b/bin/mozilla/is.pl index 85e03c150..e94bb386e 100644 --- a/bin/mozilla/is.pl +++ b/bin/mozilla/is.pl @@ -35,8 +35,8 @@ use SL::IS; use SL::PE; use Data::Dumper; -require "$form->{path}/io.pl"; -require "$form->{path}/arap.pl"; +require "bin/mozilla/io.pl"; +require "bin/mozilla/arap.pl"; require "bin/mozilla/drafts.pl"; 1; @@ -61,7 +61,7 @@ sub add { $form->{callback} = - "$form->{script}?action=add&type=$form->{type}&login=$form->{login}&path=$form->{path}&password=$form->{password}" + "$form->{script}?action=add&type=$form->{type}&login=$form->{login}&password=$form->{password}" unless $form->{callback}; $form{jsscript} = "date"; @@ -121,6 +121,7 @@ sub invoice_links { if ($form->{all_customer}) { unless ($form->{customer_id}) { $form->{customer_id} = $form->{all_customer}->[0]->{id}; + $form->{salesman_id} = $form->{all_customer}->[0]->{salesman_id}; } } @@ -166,19 +167,11 @@ sub invoice_links { $form->{shipto_id} = $shipto_id; } - # currencies - @curr = split(/:/, $form->{currencies}); - chomp $curr[0]; - $form->{defaultcurrency} = $curr[0]; - - map { $form->{selectcurrency} .= "\n" } (@{ $form->{all_departments} }); } $form->{employee} = "$form->{employee}--$form->{employee_id}"; - # sales staff - if ($form->{all_employees}) { - $form->{selectemployee} = ""; - map { $form->{selectemployee} .= "\n"; } if ($key eq "AR_paid") { @@ -327,38 +314,11 @@ sub form_header { } my $set_duedate_url = - "$form->{script}?login=$form->{login}&path=$form->{path}&password=$form->{password}&action=set_duedate"; + "$form->{script}?login=$form->{login}&password=$form->{password}&action=set_duedate"; my $pjx = new CGI::Ajax( 'set_duedate' => $set_duedate_url ); push(@ { $form->{AJAX} }, $pjx); - if (@{ $form->{TAXZONE} }) { - $form->{selecttaxzone} = ""; - foreach $item (@{ $form->{TAXZONE} }) { - if ($item->{id} == $form->{taxzone_id}) { - $form->{selecttaxzone} .= - ""; - } else { - $form->{selecttaxzone} .= - ""; - } - - } - } else { - $form->{selecttaxzone} =~ s/ selected//g; - if ($form->{taxzone_id} ne "") { - $form->{selecttaxzone} =~ s/value=$form->{taxzone_id}/value=$form->{taxzone_id} selected/; - } - } - - $taxzone = qq| - - | . $locale->text('Steuersatz') . qq| - - - |; - my @old_project_ids = ($form->{"globalproject_id"}); map({ push(@old_project_ids, $form->{"project_id_$_"}) if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"})); @@ -367,9 +327,14 @@ sub form_header { "shipto" => "ALL_SHIPTO", "projects" => { "key" => "ALL_PROJECTS", "all" => 0, - "old_id" => \@old_project_ids }); - - my (%labels, @values); + "old_id" => \@old_project_ids }, + "employees" => "ALL_SALESMEN", + "taxzones" => "ALL_TAXZONES", + "currencies" => "ALL_CURRENCIES", + "customers" => "ALL_CUSTOMERS"); + + my %labels; + my @values = (undef); foreach my $item (@{ $form->{"ALL_CONTACTS"} }) { push(@values, $item->{"cp_id"}); $labels{$item->{"cp_id"}} = $item->{"cp_name"} . @@ -379,6 +344,40 @@ sub form_header { NTI($cgi->popup_menu('-name' => 'cp_id', '-values' => \@values, '-labels' => \%labels, '-default' => $form->{"cp_id"})); + %labels = (); + @values = (); + foreach my $item (@{ $form->{"ALL_SALESMEN"} }) { + push(@values, $item->{"id"}); + $labels{$item->{"id"}} = $item->{"name"}; + } + + my $employees = qq| + + | . $locale->text('Employee') . qq| + | . + NTI($cgi->popup_menu('-name' => 'employee', '-default' => $form->{"employee_id"}, + '-values' => \@values, '-labels' => \%labels)) . qq| + + |; + + + %labels = (); + @values = (); + foreach my $item (@{ $form->{"ALL_CUSTOMERS"} }) { + push(@values, $item->{name}.qq|--|.$item->{"id"}); + $labels{$item->{"id"}} = $item->{name}.qq|--|.$item->{"id"}; + } + + my $customers = qq| + | . $locale->text('Customer') . qq| + | . + (($myconfig{vclimit} == 1 ) + ? qq|| + : (NTI($cgi->popup_menu('-name' => 'customer', '-default' => $form->{oldcustomer}, + '-onChange' => 'document.getElementById(\'update_button\').click();', + '-values' => \@values, '-labels' => \%labels)))) . qq| + |; + %labels = (); @values = (""); foreach my $item (@{ $form->{"ALL_SHIPTO"} }) { @@ -394,6 +393,23 @@ sub form_header { '-labels' => \%labels, '-default' => $form->{"shipto_id"})) . qq||; + %labels = (); + @values = (); + foreach my $item (@{ $form->{"ALL_CURRENCIES"} }) { + push(@values, $item); + $labels{$item} = $item; + } + + $form->{currency} = $form->{defaultcurrency} unless $form->{currency}; + my $currencies = qq| + + | . $locale->text('Currency') . qq| + | . + NTI($cgi->popup_menu('-name' => 'currency', '-default' => $form->{"currency"}, + '-values' => \@values, '-labels' => \%labels)) . qq| + + |; + %labels = (); @values = (""); foreach my $item (@{ $form->{"ALL_PROJECTS"} }) { @@ -405,6 +421,50 @@ sub form_header { '-labels' => \%labels, '-default' => $form->{"globalproject_id"})); + %labels = (); + @values = (""); + foreach my $item (@{ $form->{ALL_SALESMEN} }) { + push(@values, $item->{id}); + $labels{$item->{id}} = $item->{name} ne "" ? $item->{name} : $item->{login}; + } + + $salesman = + qq| + | . $locale->text('Salesman') . qq| + | . + NTI($cgi->popup_menu('-name' => 'salesman_id', '-default' => $form->{salesman_id}, + '-values' => \@values, '-labels' => \%labels)) + . qq| + |; + + %labels = (); + @values = (); + foreach my $item (@{ $form->{"ALL_TAXZONES"} }) { + push(@values, $item->{"id"}); + $labels{$item->{"id"}} = $item->{"description"}; + } + + if (!$form->{"id"}) { + $taxzone = qq| + + | . $locale->text('Steuersatz') . qq| + | . + NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"}, + '-values' => \@values, '-labels' => \%labels)) . qq| + + |; + + } else { + $taxzone = qq| + + | . $locale->text('Steuersatz') . qq| + + + | . H($labels{$form->{"taxzone_id"}}) . qq| + + |; + } + # set option selected foreach $item (qw(AR customer currency department employee)) { $form->{"select$item"} =~ s/ selected//; @@ -414,6 +474,9 @@ sub form_header { #quote customer Bug 133 $form->{selectcustomer} = $form->quote($form->{selectcustomer}); + + #substitute \n and \r to \s (bug 543) + $form->{selectcustomer} =~ s/[\n\r]/ /g; if (($form->{creditlimit} != 0) && ($form->{creditremaining} < 0) && !$form->{update}) { $creditwarning = 1; @@ -433,30 +496,25 @@ sub form_header { if ($form->{currency} ne $form->{defaultcurrency}) { if ($form->{forex}) { $exchangerate .= - qq|| + qq|| . $locale->text('Exchangerate') - . qq|$form->{exchangerate}{exchangerate}>|; + . qq|$form->{exchangerate}|; } else { $exchangerate .= - qq|| + qq|| . $locale->text('Exchangerate') - . qq|{exchangerate}>|; + . qq||; } } $exchangerate .= qq| -{forex}> + |; - $customer = - ($form->{selectcustomer}) - ? qq|\n| - : qq||; - $department = qq| | . $locale->text('Department') . qq| - - + + | if $form->{selectdepartment}; @@ -466,9 +524,9 @@ sub form_header { if ($form->{business}) { $business = qq| - | . $locale->text('Business') . qq| + | . $locale->text('Business') . qq| $form->{business} - | . $locale->text('Trade Discount') . qq| + | . $locale->text('Trade Discount') . qq| | . $form->format_amount(\%myconfig, $form->{tradediscount} * 100) . qq| % @@ -479,12 +537,12 @@ sub form_header { if ($form->{max_dunning_level}) { $dunning = qq| - + - + - + @@ -505,11 +563,10 @@ sub form_header { # with JavaScript Calendar $button1 = qq| - - - |; - + + |; + #write Trigger $jsscript = Form->write_trigger(\%myconfig, "1", @@ -519,28 +576,28 @@ sub form_header { # without JavaScript Calendar $button1 = - qq||; + qq||; $button2 = - qq||; + qq||; } } else { if ($form->{jsscript}) { # with JavaScript Calendar $button1 = qq| - - + + |; $button2 = qq| - - + + |; $button3 = qq| - - + + |; #write Trigger @@ -555,9 +612,9 @@ sub form_header { # without JavaScript Calendar $button1 = - qq||; + qq||; $button2 = - qq||; + qq||; } } if ($form->{resubmit} && ($form->{format} eq "html")) { @@ -566,9 +623,10 @@ sub form_header { } elsif ($form->{resubmit}) { $onload = qq|document.invoice.submit()|; } else { - $onload = "fokus()"; + $onload = "focus()"; } - + $onload .= qq|;setupDateFormat('|. $myconfig{dateformat} .qq|', '|. $locale->text("Falsches Datumsformat!") .qq|')|; + $onload .= qq|;setupPoints('|. $myconfig{numberformat} .qq|', '|. $locale->text("wrongformat") .qq|')|; $credittext = $locale->text('Credit Limit exceeded!!!'); if ($creditwarning) { $onload = qq|alert('$credittext')|; @@ -592,69 +650,45 @@ sub form_header { -{script}> - - -{id}> -{action}> - -{type}> -{media}> -{format}> - - - - - - -{vc}> - -{discount}> -{creditlimit}> -{creditremaining}> - -{tradediscount}> -{business}> + +| ; +map({print $cgi->hidden("-name" => $_ , "-value" => $form->{$_});} + qw(id action type media format queued printed emailed title vc discount + creditlimit creditremaining tradediscount business closedto locked shipped storno storno_id)) ; +print ($form->{saved_message} ? qq|

$form->{saved_message}

| : "") ; +print qq| -{closedto}> -{locked}> + -{shipped}> - -{storno}> -{storno_id}> - -| . ($form->{saved_message} ? qq|

$form->{saved_message}

| : "") . qq| - -
| . $locale->text('Max. Dunning Level') . qq|:| . $locale->text('Max. Dunning Level') . qq|: $form->{max_dunning_level}| . $locale->text('Dunning Amount') . qq|:| . $locale->text('Dunning Amount') . qq|: | . $form->format_amount(\%myconfig, $form->{dunning_amount},2) . qq|{invdate}>text('button') . qq|>{invdate}>{duedate}>{invdate}>text('button') . qq|>{duedate}>text('button') . qq|>{deliverydate}>text('button') . qq|>{invdate}>{duedate}>{duedate} onBlur=\"check_right_date_format(this)\">
- - +
$form->{title}
+ +
$form->{title}
- - +
+
- - - {customer_klass}> - {customer_id}> - - - + -
| . $locale->text('Customer') . qq|$customer| + $customers + + + + + | . $locale->text('Contact Person') . qq|$contact$contact
+ - + @@ -665,29 +699,31 @@ sub form_header { $business $dunning - - - + + + $taxzone $department - - - - {defaultcurrency}> - {fxgain_accno}> - {fxloss_accno}> + $currencies + + $exchangerate - - - + + - - - |; + + + + + + + |; # # -
| . $locale->text('Credit Limit') . qq| $form->{creditlimit} | . $locale->text('Remaining') . qq| $form->{creditremaining}
| . $locale->text('Record in') . qq|| . $locale->text('Record in') . qq|
| . $locale->text('Currency') . qq|
| . $locale->text('Shipping Point') . qq|
| . $locale->text('Shipping Point') . qq| | . + $cgi->textfield("-name" => "shippingpoint", "-size" => 35, "-value" => $form->{shippingpoint}) . + qq|
| . $locale->text('Ship via') . qq|
| . $locale->text('Ship via') . qq|
| . $locale->text('Transaction description') . qq|| . $cgi->textfield("-name" => "transaction_description", "-size" => 35, "-value" => $form->{transaction_description}) . qq|
# @@ -710,62 +746,59 @@ sub form_header { # print qq|
+ - - - - - - |; + $employees + $salesman +|; if ($form->{type} eq "credit_note") { print qq| - - + + - + $button1 |; } else { print qq| - - + + - + $button1 - + $button2 - + $button3 |; } print qq| - - + + - + - - + + - + - - + + @@ -781,37 +814,21 @@ print qq| - +| . $jsscript - +. qq| - - - - - - - - - - - - - - - - - - - -|; - - foreach $item (split / /, $form->{taxaccounts}) { - print qq| - - - -|; +| ; +map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } + qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact shiptophone shiptofax shiptoemail shiptodepartment_1 shiptodepartment_2)); +print qq| |; +map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } + qw(message email subject cc bcc taxaccounts)); +print qq||; + + foreach $item (split(/ /, $form->{taxaccounts})) { + map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } + ("${item}_rate", "${item}_description", "${item}_taxnumber")); } $lxdebug->leave_sub(); } @@ -829,16 +846,16 @@ sub form_footer { } $rows = ($rows > $introws) ? $rows : $introws; $notes = - qq||; + qq||; $intnotes = - qq||; - - $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : ""; + qq||; + + $form->{taxincluded} = ($form->{taxincluded} ? "checked" : ""); $taxincluded = ""; if ($form->{taxaccounts}) { $taxincluded = qq| - {taxincluded}> | + {taxincluded}> | . $locale->text('Tax Included') . qq|

|; } @@ -856,9 +873,9 @@ sub form_footer { $tax .= qq|
- - + |; } @@ -869,8 +886,8 @@ sub form_footer { $subtotal = qq| - - + + |; @@ -896,13 +913,13 @@ sub form_footer { $tax .= qq| - - + - - + + |; } @@ -917,31 +934,31 @@ sub form_footer { print qq|
| . $locale->text('Employee') . qq|
| . $locale->text('Credit Note Number') . qq|| . $locale->text('Credit Note Number') . qq|
| . $locale->text('Credit Note Date') . qq|| . $locale->text('Credit Note Date') . qq|
| . $locale->text('Invoice Number') . qq|| . $locale->text('Invoice Number') . qq|
| . $locale->text('Invoice Date') . qq|| . $locale->text('Invoice Date') . qq|
| . $locale->text('Due Date') . qq|| . $locale->text('Due Date') . qq|
| . $locale->text('Delivery Date') . qq|| . $locale->text('Delivery Date') . qq|
| . $locale->text('Order Number') . qq|| . $locale->text('Order Number') . qq|
| . $locale->text('Order Date') . qq|
| . $locale->text('Quotation Number') . qq|| . $locale->text('Quotation Number') . qq|
| . $locale->text('Quotation Date') . qq|
| . $locale->text('Customer Order Number') . qq|| . $locale->text('Customer Order Number') . qq|
| . $locale->text('Project Number') . qq|
$form->{"${item}_description"} | + $form->{"${item}_description"} | . $form->{"${item}_rate"} * 100 .qq|%$form->{"${item}_total"}$form->{"${item}_total"}
| . $locale->text('Subtotal') . qq|$form->{invsubtotal}| . $locale->text('Subtotal') . qq|$form->{invsubtotal}
Enthaltene $form->{"${item}_description"} | + Enthaltene $form->{"${item}_description"} | . $form->{"${item}_rate"} * 100 .qq|%$form->{"${item}_total"}$form->{"${item}_total"}
Nettobetrag$form->{"${item}_netto"}Nettobetrag$form->{"${item}_netto"}
- - +
+ - @@ -953,20 +970,20 @@ sub form_footer { if ($webdav) { $webdav_list = qq| - + - + -
- - - + + + - + -
| . $locale->text('Notes') . qq|| . $locale->text('Internal Notes') . qq|| . $locale->text('Payment Terms') . qq|| . $locale->text('Notes') . qq|| . $locale->text('Internal Notes') . qq|| . $locale->text('Payment Terms') . qq|
$notes $intnotes
+ $taxincluded - +
$subtotal $tax - - + +
| . $locale->text('Total') . qq|$form->{invtotal}| . $locale->text('Total') . qq|$form->{invtotal}


Dokumente im Webdav-RepositoryDokumente im Webdav-Repository
- - +
DateinameWebdavlink
+ + |; foreach $file (keys %{ $form->{WEBDAV} }) { $webdav_list .= qq| - - + + |; } @@ -981,9 +998,9 @@ if ($form->{type} eq "credit_note") { print qq|
DateinameWebdavlink
$file$form->{WEBDAV}{$file}$file$form->{WEBDAV}{$file}
- - -
| + + + |; @@ -991,9 +1008,9 @@ if ($form->{type} eq "credit_note") { print qq|
| . $locale->text('Payments') . qq|
- - - - + @@ -1105,31 +1115,31 @@ if ($form->{type} eq "credit_note") { my $show_storno = !$form->{storno} && !IS->has_storno(\%myconfig, $form, "ar"); print qq| - - - - |; - print qq| | if ($show_storno); - print qq| |; - print qq| |; if ($form->{id} && !($form->{type} eq "credit_note")) { print qq| - |; } if ($form->{radier}) { print qq| - |; } @@ -1137,24 +1147,24 @@ if ($form->{type} eq "credit_note") { if ($invdate > $closedto) { print qq| - |; } } else { if ($invdate > $closedto) { - print qq| - - - - - | . NTI($cgi->submit('-name' => 'action', '-value' => $locale->text('Save draft'), '-class' => 'submit')); @@ -1176,17 +1186,13 @@ if ($form->{type} eq "credit_note") { print $form->write_trigger(\%myconfig, scalar(@triggers) / 3, @triggers) . qq| -{rowcount}> - - -| + +| . +$cgi->hidden("-name" => "callback", "-value" => $form->{callback}) . $cgi->hidden('-name' => 'draft_id', '-default' => [$form->{draft_id}]) -. $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}]) -. qq| -{path}> -{login}> -{password}> - +. $cgi->hidden('-name' => 'draft_description', '-default' => [$form->{draft_description}]); +map({ print $cgi->hidden("-name" => $_ , "-value" => $form->{$_});} qw(login password)); +print qq| @@ -1206,10 +1212,19 @@ sub update { $form->{print_and_post} = 0; } + + if($form->{taxincluded}) { + $taxincluded = "checked"; + } $form->{update} = 1; &check_name(customer); + if(!$form->{taxincluded}) { + $form->{taxincluded} = $taxincluded; + } + + $form->{exchangerate} = $exchangerate if ( $form->{forex} = ( @@ -1457,6 +1472,7 @@ sub post { remove_draft() if $form->{remove_draft}; if(!exists $form->{addition}) { + $form->{snumbers} = qq|invnumber_| . $form->{invnumber}; $form->{addition} = $print_post ? "PRINTED AND POSTED" : $form->{storno} ? "STORNO" : "POSTED"; @@ -1506,7 +1522,7 @@ sub storno { } map({ my $key = $_; delete($form->{$key}) - unless (grep({ $key eq $_ } qw(path login password id type))); } + unless (grep({ $key eq $_ } qw(login password id type))); } keys(%{ $form })); &invoice_links; @@ -1546,7 +1562,7 @@ sub delete { print qq| -{script}> + |; # delete action variable @@ -1554,11 +1570,11 @@ sub delete { foreach $key (keys %$form) { $form->{$key} =~ s/\"/"/g; - print qq|\n|; + print qq|\n|; } print qq| -

| . $locale->text('Confirm!') . qq|

+

| . $locale->text('Confirm!') . qq|

| . $locale->text('Are you sure you want to delete Invoice Number') @@ -1566,7 +1582,7 @@ sub delete {

- |; @@ -1633,6 +1649,7 @@ sub yes { if (IS->delete_invoice(\%myconfig, \%$form, $spool)) { # saving the history if(!exists $form->{addition}) { + $form->{snumbers} = qq|invnumber_| . $form->{invnumber}; $form->{addition} = "DELETED"; $form->save_history($form->dbconnect(\%myconfig)); } @@ -1647,14 +1664,20 @@ sub yes { sub e_mail { $lxdebug->enter_sub(); - $form->{postasnew} = 1; - $print_post = 1; + if (!$form->{id}) { + $print_post = 1; - map { delete $form->{$_} } qw(printed emailed queued); + my $saved_form = save_form(); - &post; + post(); + + my %saved_vars; + map({ $saved_vars{$_} = $form->{$_}; } qw(id invnumber)); + restore_form($saved_form); + map({ $form->{$_} = $saved_vars{$_}; } qw(id invnumber)); + } - &edit_e_mail; + edit_e_mail(); $lxdebug->leave_sub(); }

| + + + |; @@ -1044,30 +1061,26 @@ if ($form->{type} eq "credit_note") { $exchangerate = qq| |; if ($form->{currency} ne $form->{defaultcurrency}) { if ($form->{"forex_$i"}) { - $exchangerate = - qq|{"exchangerate_$i"}>$form->{"exchangerate_$i"}|; + $exchangerate = qq|$form->{"exchangerate_$i"}|; } else { - $exchangerate = - qq|{"exchangerate_$i"}>|; + $exchangerate = qq||; } } - $exchangerate .= qq| -{"forex_$i"}> -|; + $exchangerate .= qq||; $column_data{"paid_$i"} = - qq||; - $column_data{"exchangerate_$i"} = qq||; + qq||; + $column_data{"exchangerate_$i"} = qq||; $column_data{"AR_paid_$i"} = - qq||; + qq||; $column_data{"datepaid_$i"} = - qq||; $column_data{"source_$i"} = - qq||; + qq||; $column_data{"memo_$i"} = - qq||; + qq||; map { print qq|$column_data{"${_}_$i"}\n| } @column_index; print " @@ -1075,22 +1088,19 @@ if ($form->{type} eq "credit_note") { push(@triggers, "datepaid_$i", "BL", "trigger_datepaid_$i"); } - print qq| -{paidaccounts}> - -{oldinvtotal}> - + map({ print($cgi->hidden("-name" => $_, "-value" => $form->{$_})); } qw(paidaccounts selectAR_paid oldinvtotal)); + print qq|
| . $locale->text('Incoming Payments') . qq|
{"paid_$i"}>$exchangerate$exchangerate{"datepaid_$i"}> + qq|


|; - &print_options; + print_options(); print qq|