X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fct.pl;h=5c76ae36f78748d9c2f2a4b056098dd5ae5056f7;hb=a295ff26c39f57d4b36a4115309e5a68b08fbee2;hp=d0510e8902a957c58d4ebcd7f0b904a8efe2cff8;hpb=b3673e83306a36c0582a08ea9eada300fe3987aa;p=kivitendo-erp.git diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index d0510e890..5c76ae36f 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -36,12 +36,20 @@ # $locale->text('Vendors') # $locale->text('Add Customer') # $locale->text('Add Vendor') +# $locale->text('Edit Customer') +# $locale->text('Edit Vendor') +# $locale->text('Customer saved!') +# $locale->text('Vendor saved!') +# $locale->text('Customer deleted!') +# $locale->text('Cannot delete customer!') +# $locale->text('Vendor deleted!') +# $locale->text('Cannot delete vendor!') -use CGI; use CGI::Ajax; use POSIX qw(strftime); use SL::CT; +use SL::CVar; use SL::ReportGenerator; require "bin/mozilla/common.pl"; @@ -54,10 +62,12 @@ require "bin/mozilla/reportgenerator.pl"; sub add { $lxdebug->enter_sub(); + $auth->assert('customer_vendor_edit'); + $form->{title} = "Add"; $form->{callback} = - "$form->{script}?action=add&db=$form->{db}&login=$form->{login}&password=$form->{password}" + "$form->{script}?action=add&db=$form->{db}" unless $form->{callback}; CT->populate_drop_down_boxes(\%myconfig, \%$form); @@ -71,179 +81,51 @@ sub add { sub search { $lxdebug->enter_sub(); - my $vc_business_type = $form->{db} eq "customer" ? - $locale->text("Customer type") : $locale->text("Vendor type"); + $auth->assert('customer_vendor_edit'); + + $form->{IS_CUSTOMER} = $form->{db} eq 'customer'; $form->get_lists("business_types" => "ALL_BUSINESS_TYPES"); - my (%labels, @values); - - my $business_types; - if (scalar(@{ $form->{ALL_BUSINESS_TYPES} }) != 0) { - push(@values, undef); - foreach my $item (@{ $form->{ALL_BUSINESS_TYPES} }) { - push(@values, $item->{id}); - $labels{$item->{id}} = $item->{description}; - } + $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0; - $business_types = - qq| - ${vc_business_type} - | - . NTI($cgi->popup_menu('-name' => 'business_id', '-values' => \@values, - '-labels' => \%labels)) - . qq| - -|; - } + $form->{CUSTOM_VARIABLES} = CVar->get_configs('module' => 'CT'); + ($form->{CUSTOM_VARIABLES_FILTER_CODE}, + $form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables' => $form->{CUSTOM_VARIABLES}, + 'include_prefix' => 'l_', + 'include_value' => 'Y'); - $label = ucfirst $form->{db}; - $form->{title} = $locale->text($label . "s"); - $form->{fokus} = 'Form.name'; + $form->{jsscript} = 1; + $form->{title} = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors'); + $form->{fokus} = 'Form.name'; - $form->header; + $form->header(); + print $form->parse_html_template('ct/search'); - print qq| - - -
{script} name="Form"> - -{db}> - - - - - - - - - - - - -
$form->{title}
- - - - - - - - - - - - - - - - - - $business_types - - - - - - - - - - - - -
| . $locale->text($label . ' Number') . qq|{db}number size=35>
| . $locale->text('Company Name') . qq|
| . $locale->text('Contact') . qq|
| . $locale->text('E-mail') . qq|
 | - . $locale->text('All') . qq| -  | - . $locale->text('Orphaned') . qq|
 | - . $locale->text('All') . qq| -  | - . $locale->text('Obsolete') . qq| -  | - . $locale->text('Not obsolete') . qq|
| . $locale->text('Include in Report') . qq| - - - - - - - - - - - - - - - - - - - - - - - -
| - . $locale->text('ID') . qq| | - . $locale->text($label . ' Number') . qq| | - . $locale->text('Company Name') . qq| | - . $locale->text('Address') . qq|
| - . $locale->text('Contact') . qq| | - . $locale->text('Phone') . qq| | - . $locale->text('Fax') . qq| | - . $locale->text('E-mail') . qq|
| - . $locale->text('Tax Number') . qq| | - . $locale->text('SIC') . qq| | - . $vc_business_type . qq|
| - . $locale->text('Invoices') . qq| | - . $locale->text('Orders') . qq| | - . $locale->text('Quotations') . qq|
-
-

- - - -{login}> -{password}> - -
- -
- - - -|; $lxdebug->leave_sub(); } sub list_names { $lxdebug->enter_sub(); + $auth->assert('customer_vendor_edit'); + $form->{IS_CUSTOMER} = $form->{db} eq 'customer'; CT->search(\%myconfig, \%$form); + my $cvar_configs = CVar->get_configs('module' => 'CT'); + my @options; if ($form->{status} eq 'all') { push @options, $locale->text('All'); - } elsif ($form->{status} eq 'orphaned') { push @options, $locale->text('Orphaned'); } - if ($form->{name}) { - push @options, $locale->text('Name') . " : $form->{name}"; - } - if ($form->{contact}) { - push @options, $locale->text('Contact') . " : $form->{contact}"; - } - if ($form->{"$form->{db}number"}) { - push @options, $locale->text('Number') . qq| : $form->{"$form->{db}number"}|; - } - if ($form->{email}) { - push @options, $locale->text('E-mail') . " : $form->{email}"; - } + push @options, $locale->text('Name') . " : $form->{name}" if $form->{name}; + push @options, $locale->text('Contact') . " : $form->{contact}" if $form->{contact}; + push @options, $locale->text('Number') . qq| : $form->{"$form->{db}number"}| if $form->{"$form->{db}number"}; + push @options, $locale->text('E-mail') . " : $form->{email}" if $form->{email}; my @columns = ( 'id', 'name', "$form->{db}number", 'address', 'contact', 'phone', @@ -251,6 +133,11 @@ sub list_names { 'ordnumber', 'quonumber' ); + my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs }; + my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables; + + push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables; + my %column_defs = ( 'id' => { 'text' => $locale->text('ID'), }, "$form->{db}number" => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Customer Number') : $locale->text('Vendor Number'), }, @@ -267,6 +154,7 @@ sub list_names { 'invnumber' => { 'text' => $locale->text('Invoice'), }, 'ordnumber' => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Sales Order') : $locale->text('Purchase Order'), }, 'quonumber' => { 'text' => $form->{IS_CUSTOMER} ? $locale->text('Quotation') : $locale->text('Request for Quotation'), }, + %column_defs_cvars, ); map { $column_defs{$_}->{visible} = $form->{"l_$_"} eq 'Y' } @columns; @@ -295,7 +183,7 @@ sub list_names { my $report = SL::ReportGenerator->new(\%myconfig, $form); $report->set_options('top_info_text' => join("\n", @options), - 'raw_bottom_info_text' => $form->parse_html_template2('ct/list_names_bottom'), + 'raw_bottom_info_text' => $form->parse_html_template('ct/list_names_bottom'), 'output_format' => 'HTML', 'title' => $form->{title}, 'attachment_basename' => $attachment_basename . strftime('_%Y%m%d', localtime time), @@ -309,6 +197,12 @@ sub list_names { $report->set_sort_indicator($form->{sort}, 1); + CVar->add_custom_variables_to_report('module' => 'CT', + 'trans_id_field' => 'id', + 'configs' => $cvar_configs, + 'column_defs' => \%column_defs, + 'data' => $form->{CT}); + my $previous_id; foreach my $ref (@{ $form->{CT} }) { @@ -340,13 +234,12 @@ sub list_names { sub edit { $lxdebug->enter_sub(); + $auth->assert('customer_vendor_edit'); + # show history button $form->{javascript} = qq||; #/show hhistory button - # $locale->text('Edit Customer') - # $locale->text('Edit Vendor') - CT->get_tuple(\%myconfig, \%$form); CT->populate_drop_down_boxes(\%myconfig, \%$form); @@ -367,573 +260,41 @@ sub edit { sub form_header { $lxdebug->enter_sub(); - $form->get_lists("employees" => "ALL_SALESMEN", - "taxzones" => "ALL_TAXZONES"); - - $form->{taxincluded} = ($form->{taxincluded}) ? "checked" : ""; - $form->{creditlimit} = - $form->format_amount(\%myconfig, $form->{creditlimit}, 0); - $form->{discount} = $form->format_amount(\%myconfig, $form->{discount}); - - if ($myconfig{role} eq 'admin') { - $bcc = qq| - - | . $locale->text('Bcc') . qq| - - -|; - } - $form->{obsolete} = "checked" if $form->{obsolete}; - - $lang = qq||; - foreach $item (@{ $form->{languages} }) { - if ($form->{language_id} eq $item->{id}) { - $lang .= qq||; - } else { - $lang .= qq||; - } - } - - $payment = qq||; - foreach $item (@{ $form->{payment_terms} }) { - if ($form->{payment_id} eq $item->{id}) { - $payment .= qq||; - } else { - $payment .= qq||; - } - } - - if (!$form->{id}) { - if ($form->{db} eq "customer") { - $form->{taxzone_id} = 0; - } else { - $form->{taxzone_id} = 0; - } - } - - %labels = (); - @values = (); - foreach my $item (@{ $form->{"ALL_TAXZONES"} }) { - push(@values, $item->{"id"}); - $labels{$item->{"id"}} = $item->{"description"}; - } - - $taxzone = qq| - | . $locale->text('Steuersatz') . qq| - | . - NTI($cgi->popup_menu('-name' => 'taxzone_id', '-default' => $form->{"taxzone_id"}, - '-values' => \@values, '-labels' => \%labels)) . qq| - -|; - - $get_contact_url = - "$form->{script}?login=$form->{login}&password=$form->{password}&action=get_contact"; - - my $pjx = new CGI::Ajax( 'get_contact' => $get_contact_url ); - $form->{selectcontact} = ""; - if (@{ $form->{CONTACTS} }) { - foreach $item (@{ $form->{CONTACTS} }) { - if ($item->{cp_id} == $form->{cp_id}) { - $form->{selectcontact} .= - qq|\n|; - } else { - $form->{selectcontact} .= - qq|\n|; - } - - } - } - push(@ { $form->{AJAX} }, $pjx); - $ansprechpartner = qq| - - | . $locale->text('Ansprechpartner') . qq| - - - |; - $get_shipto_url = - "$form->{script}?login=$form->{login}&password=$form->{password}&action=get_shipto"; - - my $pjy = new CGI::Ajax( 'get_shipto' => $get_shipto_url ); - $form->{selectshipto} = ""; - $form->{selectshipto} .= ""; - if (@{ $form->{SHIPTO} }) { - foreach $item (@{ $form->{SHIPTO} }) { - if ($item->{shipto_id} == $form->{shipto_id}) { - $form->{selectshipto} .= - "