X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fct.pl;h=ec1ccbfbaeab7cad7be3b985b3379eba84c40b5f;hb=a38193700a542081a1962820889f19c07c31baaf;hp=845fc3ab4a0971e3a8683c27aaebeb9a90385671;hpb=96ca0b88b082cc24081889bcfc63cb2808049f68;p=kivitendo-erp.git diff --git a/bin/mozilla/ct.pl b/bin/mozilla/ct.pl index 845fc3ab4..ec1ccbfba 100644 --- a/bin/mozilla/ct.pl +++ b/bin/mozilla/ct.pl @@ -48,6 +48,7 @@ use POSIX qw(strftime); use SL::CT; +use SL::CTI; use SL::CVar; use SL::Request qw(flatten); use SL::DB::Business; @@ -75,7 +76,8 @@ sub search { $form->{IS_CUSTOMER} = $form->{db} eq 'customer'; - $form->get_lists("business_types" => "ALL_BUSINESS_TYPES"); + $form->get_lists("business_types" => "ALL_BUSINESS_TYPES", + "salesmen" => "ALL_SALESMEN"); $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0; $form->{CUSTOM_VARIABLES} = CVar->get_configs('module' => 'CT'); @@ -151,11 +153,24 @@ sub list_names { push @options, $label . " : " . $business->description; } } + if ($form->{salesman_id}) { + my $salesman = SL::DB::Manager::Employee->find_by(id => $form->{salesman_id}); + if ($salesman) { + push @options, $locale->text('Salesman') . " : " . $salesman->name; + } + } + + if ( $form->{insertdatefrom} or $form->{insertdateto} ) { + push @options, $locale->text('Insert Date'); + push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{insertdatefrom}, 1) if $form->{insertdatefrom}; + push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{insertdateto}, 1) if $form->{insertdateto}; + }; my @columns = ( - 'id', 'name', "$form->{db}number", 'contact', 'phone', 'discount', - 'fax', 'email', 'taxnumber', 'street', 'zipcode' , 'city', - 'business', 'invnumber', 'ordnumber', 'quonumber', 'salesman', 'country' + 'id', 'name', "$form->{db}number", 'contact', 'phone', 'discount', + 'fax', 'email', 'taxnumber', 'street', 'zipcode' , 'city', + 'business', 'payment', 'invnumber', 'ordnumber', 'quonumber', 'salesman', + 'country', 'insertdate', 'pricegroup' ); my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs }; @@ -184,6 +199,9 @@ sub list_names { 'country' => { 'text' => $locale->text('Country'), }, 'salesman' => { 'text' => $locale->text('Salesman'), }, 'discount' => { 'text' => $locale->text('Discount'), }, + 'payment' => { 'text' => $locale->text('Payment Terms'), }, + 'insertdate' => { 'text' => $locale->text('Insert Date'), }, + 'pricegroup' => { 'text' => $locale->text('Pricegroup'), }, %column_defs_cvars, ); @@ -191,7 +209,7 @@ sub list_names { my @hidden_variables = ( qw( db status obsolete name contact email cp_name addr_street addr_zipcode - addr_city addr_country business_id + addr_city addr_country business_id salesman_id insertdateto insertdatefrom ), "$form->{db}number", map({ "cvar_$_->{name}" } @searchable_custom_variables), map({'cvar_'. $_->{name} .'_qtyop'} grep({$_->{type} eq 'number'} @searchable_custom_variables)), @@ -266,6 +284,11 @@ sub list_names { my $column = $ref->{formtype} eq 'invoice' ? 'invnumber' : $ref->{formtype} eq 'order' ? 'ordnumber' : 'quonumber'; $row->{$column}->{data} = $ref->{$column}; + if (my $number = SL::CTI->sanitize_number(number => $ref->{phone})) { + $row->{phone}->{link} = SL::CTI->call_link(number => $number); + $row->{phone}->{link_class} = 'cti_call_action'; + } + $report->add_data($row); } @@ -390,6 +413,13 @@ sub list_contacts { $row->{$_}->{link} = 'mailto:' . E($ref->{$_}) if $ref->{$_}; } + for (qw(cp_phone1 cp_phone2 cp_mobile1)) { + next unless my $number = SL::CTI->sanitize_number(number => $ref->{$_}); + + $row->{$_}->{link} = SL::CTI->call_link(number => $number); + $row->{$_}->{link_class} = 'cti_call_action'; + } + $report->add_data($row); }