kivitendo/bin/mozilla/ct.pl @ 28457822
d319704a | Moritz Bunkus | #=====================================================================
|
||
# LX-Office ERP
|
||||
# Copyright (C) 2004
|
||||
# Based on SQL-Ledger Version 2.1.9
|
||||
# Web http://www.lx-office.org
|
||||
#
|
||||
#=====================================================================
|
||||
# SQL-Ledger Accounting
|
||||
# Copyright (c) 1998-2002
|
||||
#
|
||||
# Author: Dieter Simader
|
||||
# Email: dsimader@sql-ledger.org
|
||||
# Web: http://www.sql-ledger.org
|
||||
#
|
||||
# Contributors: Reed White <alta@alta-research.com>
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
f7b15d43 | Christian Wittmer | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||
# MA 02110-1335, USA.
|
||||
d319704a | Moritz Bunkus | #======================================================================
|
||
#
|
||||
# customer/vendor module
|
||||
#
|
||||
#======================================================================
|
||||
# $locale->text('Customers')
|
||||
# $locale->text('Vendors')
|
||||
# $locale->text('Add Customer')
|
||||
# $locale->text('Add Vendor')
|
||||
d66df20d | Sven Schöling | # $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!')
|
||||
d319704a | Moritz Bunkus | |||
b3673e83 | Moritz Bunkus | use POSIX qw(strftime);
|
||
use SL::CT;
|
||||
53d80f2a | Moritz Bunkus | use SL::CTI;
|
||
8688e71e | Moritz Bunkus | use SL::CVar;
|
||
4070dbf3 | Sven Schöling | use SL::Request qw(flatten);
|
||
864977c6 | Moritz Bunkus | use SL::DB::Business;
|
||
a9937c85 | Bernd Bleßmann | use SL::DB::Default;
|
||
03d3d025 | Bernd Bleßmann | use SL::DB::DeliveryTerm;
|
||
b3673e83 | Moritz Bunkus | use SL::ReportGenerator;
|
||
64c45e8f | Moritz Bunkus | use SL::Locale::String qw(t8);
|
||
95795aa0 | Thomas Heck | use SL::MoreCommon qw(uri_encode);
|
||
ba40069b | Moritz Bunkus | use SL::ZUGFeRD;
|
||
d319704a | Moritz Bunkus | |||
a751b16c | Moritz Bunkus | require "bin/mozilla/common.pl";
|
||
b3673e83 | Moritz Bunkus | require "bin/mozilla/reportgenerator.pl";
|
||
a751b16c | Moritz Bunkus | |||
3ae0915d | Sven Schöling | use strict;
|
||
d319704a | Moritz Bunkus | 1;
|
||
# end of main
|
||||
47b5e5c8 | Moritz Bunkus | sub _zugferd_settings {
|
||
return ([ -1, $::locale->text('Use settings from client configuration') ],
|
||||
ba40069b | Moritz Bunkus | @SL::ZUGFeRD::customer_settings);
|
||
47b5e5c8 | Moritz Bunkus | }
|
||
d319704a | Moritz Bunkus | sub search {
|
||
3ae0915d | Sven Schöling | $main::lxdebug->enter_sub();
|
||
my $form = $main::form;
|
||||
my $locale = $main::locale;
|
||||
8c7e4493 | Moritz Bunkus | |||
0925bc9f | Moritz Bunkus | $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
|
||
0c472ce6 | Moritz Bunkus | |||
b1c40d4d | Bernd Bleßmann | $form->get_lists("business_types" => "ALL_BUSINESS_TYPES",
|
||
"salesmen" => "ALL_SALESMEN");
|
||||
0925bc9f | Moritz Bunkus | $form->{SHOW_BUSINESS_TYPES} = scalar @{ $form->{ALL_BUSINESS_TYPES} } > 0;
|
||
8688e71e | Moritz Bunkus | $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');
|
||||
$form->{title} = $form->{IS_CUSTOMER} ? $locale->text('Customers') : $locale->text('Vendors');
|
||||
d319704a | Moritz Bunkus | |||
47b5e5c8 | Moritz Bunkus | $form->{ZUGFERD_SETTINGS} = [ _zugferd_settings() ];
|
||
64c45e8f | Moritz Bunkus | setup_ct_search_action_bar();
|
||
0925bc9f | Moritz Bunkus | $form->header();
|
||
9aaca433 | Moritz Bunkus | print $form->parse_html_template('ct/search');
|
||
0925bc9f | Moritz Bunkus | |||
3ae0915d | Sven Schöling | $main::lxdebug->leave_sub();
|
||
54e4131e | Moritz Bunkus | }
|
||
4070dbf3 | Sven Schöling | sub search_contact {
|
||
$::lxdebug->enter_sub;
|
||||
cc78d935 | Sven Schöling | $::form->{CUSTOM_VARIABLES} = CVar->get_configs('module' => 'Contacts');
|
||
($::form->{CUSTOM_VARIABLES_FILTER_CODE},
|
||||
$::form->{CUSTOM_VARIABLES_INCLUSION_CODE}) = CVar->render_search_options('variables' => $::form->{CUSTOM_VARIABLES},
|
||||
'include_prefix' => 'l.',
|
||||
'filter_prefix' => 'filter.',
|
||||
'include_value' => 'Y');
|
||||
4070dbf3 | Sven Schöling | |||
4c2604b3 | Sven Schöling | $::form->{title} = $::locale->text('Search contacts');
|
||
64c45e8f | Moritz Bunkus | |||
setup_ct_search_contact_action_bar();
|
||||
4070dbf3 | Sven Schöling | $::form->header;
|
||
print $::form->parse_html_template('ct/search_contact');
|
||||
$::lxdebug->leave_sub;
|
||||
}
|
||||
d319704a | Moritz Bunkus | sub list_names {
|
||
3ae0915d | Sven Schöling | $main::lxdebug->enter_sub();
|
||
d319704a | Moritz Bunkus | |||
3ae0915d | Sven Schöling | my $form = $main::form;
|
||
my %myconfig = %main::myconfig;
|
||||
my $locale = $main::locale;
|
||||
8c7e4493 | Moritz Bunkus | |||
b3673e83 | Moritz Bunkus | $form->{IS_CUSTOMER} = $form->{db} eq 'customer';
|
||
d319704a | Moritz Bunkus | |||
a2aca2e1 | Moritz Bunkus | report_generator_set_default_sort('name', 1);
|
||
b3673e83 | Moritz Bunkus | CT->search(\%myconfig, \%$form);
|
||
d319704a | Moritz Bunkus | |||
8688e71e | Moritz Bunkus | my $cvar_configs = CVar->get_configs('module' => 'CT');
|
||
b3673e83 | Moritz Bunkus | my @options;
|
||
d319704a | Moritz Bunkus | if ($form->{status} eq 'all') {
|
||
b3673e83 | Moritz Bunkus | push @options, $locale->text('All');
|
||
} elsif ($form->{status} eq 'orphaned') {
|
||||
push @options, $locale->text('Orphaned');
|
||||
d319704a | Moritz Bunkus | }
|
||
b3673e83 | Moritz Bunkus | |||
47b5e5c8 | Moritz Bunkus | my @zugferd_settings_list = _zugferd_settings();
|
||
my $zugferd_filter = $form->{create_zugferd_invoices} eq '' ? undef : $zugferd_settings_list[$form->{create_zugferd_invoices} + 1]->[1];
|
||||
2e8b803f | Bernd Bleßmann | 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};
|
||||
28457822 | Bernd Bleßmann | push @options, $locale->text('All phone numbers') . " : $form->{all_phonenumbers}" if $form->{all_phonenumbers};
|
||
2e8b803f | Bernd Bleßmann | push @options, $locale->text('Contact person (surname)') . " : $form->{cp_name}" if $form->{cp_name};
|
||
push @options, $locale->text('Billing/shipping address (city)') . " : $form->{addr_city}" if $form->{addr_city};
|
||||
push @options, $locale->text('Billing/shipping address (zipcode)') . " : $form->{addr_zipcode}" if $form->{addr_zipcode};
|
||||
push @options, $locale->text('Billing/shipping address (street)') . " : $form->{addr_street}" if $form->{addr_street};
|
||||
push @options, $locale->text('Billing/shipping address (country)') . " : $form->{addr_country}" if $form->{addr_country};
|
||||
push @options, $locale->text('Billing/shipping address (GLN)') . " : $form->{addr_gln}" if $form->{addr_gln};
|
||||
1c8c1067 | Geoffrey Richardson | push @options, $locale->text('Quick Search') . " : $form->{all}" if $form->{all};
|
||
ba40069b | Moritz Bunkus | push @options, $locale->text('Factur-X/ZUGFeRD settings') . " : $zugferd_filter" if $zugferd_filter;
|
||
d319704a | Moritz Bunkus | |||
864977c6 | Moritz Bunkus | if ($form->{business_id}) {
|
||
my $business = SL::DB::Manager::Business->find_by(id => $form->{business_id});
|
||||
if ($business) {
|
||||
my $label = $form->{IS_CUSTOMER} ? $::locale->text('Customer type') : $::locale->text('Vendor type');
|
||||
push @options, $label . " : " . $business->description;
|
||||
}
|
||||
}
|
||||
b1c40d4d | Bernd Bleßmann | 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;
|
||||
}
|
||||
}
|
||||
864977c6 | Moritz Bunkus | |||
8dc4cef2 | Bernd Bleßmann | 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};
|
||||
};
|
||||
b3673e83 | Moritz Bunkus | my @columns = (
|
||
564b5410 | Jan Büren | 'id', 'name', "$form->{db}number", 'contact', 'main_contact_person',
|
||
16fa1465 | Jan Büren | 'department_1', 'department_2', 'phone', 'discount',
|
||
a9325fe9 | Bernd Bleßmann | 'fax', 'email', 'taxnumber', 'street', 'zipcode' , 'city',
|
||
'business', 'payment', 'invnumber', 'ordnumber', 'quonumber', 'salesman',
|
||||
90dc2366 | Jan Büren | 'country', 'gln', 'insertdate', 'pricegroup', 'contact_origin', 'invoice_mail',
|
||
41a1b801 | Jan Büren | 'creditlimit', 'ustid', 'commercial_court', 'delivery_order_mail'
|
||
b3673e83 | Moritz Bunkus | );
|
||
8688e71e | Moritz Bunkus | my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs };
|
||
ea38a4b3 | Moritz Bunkus | my @searchable_custom_variables = grep { $_->{searchable} } @{ $cvar_configs };
|
||
8688e71e | Moritz Bunkus | my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables;
|
||
push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
|
||||
b3673e83 | Moritz Bunkus | my %column_defs = (
|
||
'id' => { 'text' => $locale->text('ID'), },
|
||||
bc9c4ed3 | Sven Schöling | "$form->{db}number" => { 'text' => $locale->text('Number'), },
|
||
6156d51e | Moritz Bunkus | 'name' => { 'text' => $form->{IS_CUSTOMER} ? $::locale->text('Customer Name') : $::locale->text('Vendor Name'), },
|
||
b3673e83 | Moritz Bunkus | 'contact' => { 'text' => $locale->text('Contact'), },
|
||
564b5410 | Jan Büren | 'main_contact_person' => { 'text' => $locale->text('Main Contact Person'), },
|
||
16fa1465 | Jan Büren | 'department_1' => { 'text' => $locale->text('Department') . " 1", },
|
||
'department_2' => { 'text' => $locale->text('Department') . " 2", },
|
||||
b3673e83 | Moritz Bunkus | 'phone' => { 'text' => $locale->text('Phone'), },
|
||
'fax' => { 'text' => $locale->text('Fax'), },
|
||||
'email' => { 'text' => $locale->text('E-mail'), },
|
||||
'cc' => { 'text' => $locale->text('Cc'), },
|
||||
'taxnumber' => { 'text' => $locale->text('Tax Number'), },
|
||||
'business' => { 'text' => $locale->text('Type of Business'), },
|
||||
'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'), },
|
||||
5a0593a6 | Moritz Bunkus | 'street' => { 'text' => $locale->text('Street'), },
|
||
'zipcode' => { 'text' => $locale->text('Zipcode'), },
|
||||
'city' => { 'text' => $locale->text('City'), },
|
||||
2def6461 | Geoffrey Richardson | 'country' => { 'text' => $locale->text('Country'), },
|
||
030cf0d5 | Bernd Bleßmann | 'gln' => { 'text' => $locale->text('GLN'), },
|
||
2def6461 | Geoffrey Richardson | 'salesman' => { 'text' => $locale->text('Salesman'), },
|
||
880122f8 | Bernd Bleßmann | 'discount' => { 'text' => $locale->text('Discount'), },
|
||
a9325fe9 | Bernd Bleßmann | 'payment' => { 'text' => $locale->text('Payment Terms'), },
|
||
8dc4cef2 | Bernd Bleßmann | 'insertdate' => { 'text' => $locale->text('Insert Date'), },
|
||
32e816b5 | Bernd Bleßmann | 'pricegroup' => { 'text' => $locale->text('Pricegroup'), },
|
||
0a076aab | Jan Büren | 'invoice_mail' => { 'text' => $locale->text('Email of the invoice recipient'), },
|
||
41a1b801 | Jan Büren | 'delivery_order_mail' => { 'text' => $locale->text('Email of the delivery order recipient'), },
|
||
0a076aab | Jan Büren | 'contact_origin' => { 'text' => $locale->text('Origin of personal data'), },
|
||
90dc2366 | Jan Büren | 'creditlimit' => { 'text' => $locale->text('Credit Limit'), },
|
||
'ustid' => { 'text' => $locale->text('VAT ID'), },
|
||||
'commercial_court' => { 'text' => $locale->text('Commercial court'), },
|
||||
ba40069b | Moritz Bunkus | create_zugferd_invoices => { text => $locale->text('Factur-X/ZUGFeRD settings'), },
|
||
8688e71e | Moritz Bunkus | %column_defs_cvars,
|
||
b3673e83 | Moritz Bunkus | );
|
||
map { $column_defs{$_}->{visible} = $form->{"l_$_"} eq 'Y' } @columns;
|
||||
daf751b5 | Sven Schöling | my @hidden_variables = ( qw(
|
||
db status obsolete name contact email cp_name addr_street addr_zipcode
|
||||
0669de99 | Sven Schöling | addr_city addr_country addr_gln business_id salesman_id insertdateto insertdatefrom all
|
||
28457822 | Bernd Bleßmann | all_phonenumbers
|
||
daf751b5 | Sven Schöling | ), "$form->{db}number",
|
||
map({ "cvar_$_->{name}" } @searchable_custom_variables),
|
||||
c9076c9e | Bernd Bleßmann | map({'cvar_'. $_->{name} .'_from'} grep({$_->{type} eq 'date'} @searchable_custom_variables)),
|
||
map({'cvar_'. $_->{name} .'_to'} grep({$_->{type} eq 'date'} @searchable_custom_variables)),
|
||||
b184cc2b | Thomas Heck | map({'cvar_'. $_->{name} .'_qtyop'} grep({$_->{type} eq 'number'} @searchable_custom_variables)),
|
||
daf751b5 | Sven Schöling | map({ "l_$_" } @columns),
|
||
);
|
||||
b3673e83 | Moritz Bunkus | my @hidden_nondefault = grep({ $form->{$_} } @hidden_variables);
|
||
ea38a4b3 | Moritz Bunkus | my $callback = build_std_url('action=list_names', grep { $form->{$_} } @hidden_nondefault);
|
||
a2aca2e1 | Moritz Bunkus | $form->{callback} = "$callback&sort=" . E($form->{sort}) . "&sortdir=" . E($form->{sortdir});
|
||
b3673e83 | Moritz Bunkus | |||
a2aca2e1 | Moritz Bunkus | foreach (@columns) {
|
||
my $sortdir = $form->{sort} eq $_ ? 1 - $form->{sortdir} : $form->{sortdir};
|
||||
$column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=${sortdir}";
|
||||
}
|
||||
b3673e83 | Moritz Bunkus | |||
my ($ordertype, $quotationtype, $attachment_basename);
|
||||
if ($form->{IS_CUSTOMER}) {
|
||||
$form->{title} = $locale->text('Customers');
|
||||
$ordertype = 'sales_order';
|
||||
$quotationtype = 'sales_quotation';
|
||||
$attachment_basename = $locale->text('customer_list');
|
||||
} else {
|
||||
$form->{title} = $locale->text('Vendors');
|
||||
$ordertype = 'purchase_order';
|
||||
$quotationtype = 'request_quotation';
|
||||
$attachment_basename = $locale->text('vendor_list');
|
||||
}
|
||||
d319704a | Moritz Bunkus | |||
b3673e83 | Moritz Bunkus | my $report = SL::ReportGenerator->new(\%myconfig, $form);
|
||
d319704a | Moritz Bunkus | |||
b3673e83 | Moritz Bunkus | $report->set_options('top_info_text' => join("\n", @options),
|
||
9aaca433 | Moritz Bunkus | 'raw_bottom_info_text' => $form->parse_html_template('ct/list_names_bottom'),
|
||
b3673e83 | Moritz Bunkus | 'output_format' => 'HTML',
|
||
'title' => $form->{title},
|
||||
'attachment_basename' => $attachment_basename . strftime('_%Y%m%d', localtime time),
|
||||
);
|
||||
$report->set_options_from_form();
|
||||
a873249c | Moritz Bunkus | $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
|
||
d319704a | Moritz Bunkus | |||
b3673e83 | Moritz Bunkus | $report->set_columns(%column_defs);
|
||
$report->set_column_order(@columns);
|
||||
d319704a | Moritz Bunkus | |||
19688fca | Moritz Bunkus | $report->set_export_options('list_names', @hidden_variables, qw(sort sortdir));
|
||
d319704a | Moritz Bunkus | |||
a2aca2e1 | Moritz Bunkus | $report->set_sort_indicator($form->{sort}, $form->{sortdir});
|
||
d319704a | Moritz Bunkus | |||
8688e71e | Moritz Bunkus | CVar->add_custom_variables_to_report('module' => 'CT',
|
||
'trans_id_field' => 'id',
|
||||
'configs' => $cvar_configs,
|
||||
'column_defs' => \%column_defs,
|
||||
'data' => $form->{CT});
|
||||
b3673e83 | Moritz Bunkus | my $previous_id;
|
||
d319704a | Moritz Bunkus | |||
b3673e83 | Moritz Bunkus | foreach my $ref (@{ $form->{CT} }) {
|
||
my $row = { map { $_ => { 'data' => '' } } @columns };
|
||||
d319704a | Moritz Bunkus | |||
b3673e83 | Moritz Bunkus | if ($ref->{id} ne $previous_id) {
|
||
$previous_id = $ref->{id};
|
||||
880122f8 | Bernd Bleßmann | $ref->{discount} = $form->format_amount(\%myconfig, $ref->{discount} * 100.0, 2);
|
||
90dc2366 | Jan Büren | $ref->{creditlimit} = $form->format_amount(\%myconfig, $ref->{creditlimit}, 2);
|
||
b3673e83 | Moritz Bunkus | map { $row->{$_}->{data} = $ref->{$_} } @columns;
|
||
d319704a | Moritz Bunkus | |||
c82a3685 | Thomas Heck | $row->{name}->{link} = build_std_url('script=controller.pl', 'action=CustomerVendor/edit', 'id=' . E($ref->{id}), 'callback', @hidden_nondefault);
|
||
b3673e83 | Moritz Bunkus | $row->{email}->{link} = 'mailto:' . E($ref->{email});
|
||
d319704a | Moritz Bunkus | }
|
||
b3673e83 | Moritz Bunkus | my $base_url = build_std_url("script=$ref->{module}.pl", 'action=edit', 'id=' . E($ref->{invid}), 'callback', @hidden_nondefault);
|
||
984f6322 | Bernd Bleßmann | if ($::instance_conf->get_feature_experimental_order) {
|
||
c3db1b36 | Bernd Bleßmann | if ('oe' eq $ref->{module}) {
|
||
$base_url = build_std_url("script=controller.pl", 'action=Order/edit', 'id=' . E($ref->{invid}), 'callback', @hidden_nondefault);
|
||||
}
|
||||
}
|
||||
b3673e83 | Moritz Bunkus | $row->{invnumber}->{link} = $base_url;
|
||
$row->{ordnumber}->{link} = $base_url . "&type=${ordertype}";
|
||||
$row->{quonumber}->{link} = $base_url . "&type=${quotationtype}";
|
||||
my $column = $ref->{formtype} eq 'invoice' ? 'invnumber' : $ref->{formtype} eq 'order' ? 'ordnumber' : 'quonumber';
|
||||
$row->{$column}->{data} = $ref->{$column};
|
||||
d319704a | Moritz Bunkus | |||
53d80f2a | Moritz Bunkus | 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';
|
||||
}
|
||||
b3673e83 | Moritz Bunkus | $report->add_data($row);
|
||
d319704a | Moritz Bunkus | }
|
||
64c45e8f | Moritz Bunkus | setup_ct_list_names_action_bar();
|
||
e7913c4c | Moritz Bunkus | $report->generate_with_headers();
|
||
d319704a | Moritz Bunkus | |||
3ae0915d | Sven Schöling | $main::lxdebug->leave_sub();
|
||
d319704a | Moritz Bunkus | }
|
||
4070dbf3 | Sven Schöling | sub list_contacts {
|
||
$::lxdebug->enter_sub;
|
||||
$::form->{sortdir} = 1 unless defined $::form->{sortdir};
|
||||
my @contacts = CT->search_contacts(
|
||||
search_term => $::form->{search_term},
|
||||
filter => $::form->{filter},
|
||||
);
|
||||
cc78d935 | Sven Schöling | my $cvar_configs = CVar->get_configs('module' => 'Contacts');
|
||
4070dbf3 | Sven Schöling | my @columns = qw(
|
||
428bc365 | Moritz Bunkus | cp_id vcname vcnumber cp_name cp_givenname cp_street cp_zipcode cp_city cp_phone1 cp_phone2 cp_privatphone
|
||
cp_mobile1 cp_mobile2 cp_fax cp_email cp_privatemail cp_abteilung cp_position cp_birthday cp_gender
|
||||
4070dbf3 | Sven Schöling | );
|
||
cc78d935 | Sven Schöling | my @includeable_custom_variables = grep { $_->{includeable} } @{ $cvar_configs };
|
||
my @searchable_custom_variables = grep { $_->{searchable} } @{ $cvar_configs };
|
||||
my %column_defs_cvars = map { +"cvar_$_->{name}" => { 'text' => $_->{description} } } @includeable_custom_variables;
|
||||
push @columns, map { "cvar_$_->{name}" } @includeable_custom_variables;
|
||||
4070dbf3 | Sven Schöling | my @visible_columns;
|
||
if ($::form->{l}) {
|
||||
@visible_columns = grep { $::form->{l}{$_} } @columns;
|
||||
push @visible_columns, qw(cp_phone1 cp_phone2) if $::form->{l}{cp_phone};
|
||||
push @visible_columns, qw(cp_mobile1 cp_mobile2) if $::form->{l}{cp_mobile};
|
||||
} else {
|
||||
@visible_columns = qw(vcname vcnumber cp_name cp_givenname cp_phone1 cp_phone2 cp_mobile1 cp_email);
|
||||
}
|
||||
my %column_defs = (
|
||||
'cp_id' => { 'text' => $::locale->text('ID'), },
|
||||
'vcname' => { 'text' => $::locale->text('Customer/Vendor'), },
|
||||
'vcnumber' => { 'text' => $::locale->text('Customer/Vendor Number'), },
|
||||
'cp_name' => { 'text' => $::locale->text('Name'), },
|
||||
'cp_givenname' => { 'text' => $::locale->text('Given Name'), },
|
||||
'cp_street' => { 'text' => $::locale->text('Street'), },
|
||||
87c46045 | Moritz Bunkus | 'cp_zipcode' => { 'text' => $::locale->text('Zipcode'), },
|
||
'cp_city' => { 'text' => $::locale->text('City'), },
|
||||
4070dbf3 | Sven Schöling | 'cp_phone1' => { 'text' => $::locale->text('Phone1'), },
|
||
'cp_phone2' => { 'text' => $::locale->text('Phone2'), },
|
||||
5861a3f8 | Sven Donath | 'cp_mobile1' => { 'text' => $::locale->text('Mobile1'), },
|
||
'cp_mobile2' => { 'text' => $::locale->text('Mobile2'), },
|
||||
4070dbf3 | Sven Schöling | 'cp_email' => { 'text' => $::locale->text('E-mail'), },
|
||
'cp_abteilung' => { 'text' => $::locale->text('Department'), },
|
||||
604765d5 | Moritz Bunkus | 'cp_position' => { 'text' => $::locale->text('Function/position'), },
|
||
4070dbf3 | Sven Schöling | 'cp_birthday' => { 'text' => $::locale->text('Birthday'), },
|
||
'cp_gender' => { 'text' => $::locale->text('Gender'), },
|
||||
428bc365 | Moritz Bunkus | 'cp_fax' => { 'text' => $::locale->text('Fax'), },
|
||
'cp_privatphone' => { 'text' => $::locale->text('Private Phone') },
|
||||
e9672965 | Moritz Bunkus | 'cp_privatemail' => { 'text' => $::locale->text('Private E-mail') },
|
||
cc78d935 | Sven Schöling | %column_defs_cvars,
|
||
4070dbf3 | Sven Schöling | );
|
||
map { $column_defs{$_}->{visible} = 1 } @visible_columns;
|
||||
my @hidden_variables = (qw(search_term filter l));
|
||||
my $hide_vars = { map { $_ => $::form->{$_} } @hidden_variables };
|
||||
my @hidden_nondefault = grep({ $::form->{$_} } @hidden_variables);
|
||||
my $callback = build_std_url('action=list_contacts', join '&', map { E($_->[0]) . '=' . E($_->[1]) } @{ flatten($hide_vars) });
|
||||
$::form->{callback} = "$callback&sort=" . E($::form->{sort});
|
||||
map { $column_defs{$_}->{link} = "${callback}&sort=${_}&sortdir=" . ($::form->{sort} eq $_ ? 1 - $::form->{sortdir} : $::form->{sortdir}) } @columns;
|
||||
$::form->{title} = $::locale->text('Contacts');
|
||||
my $report = SL::ReportGenerator->new(\%::myconfig, $::form);
|
||||
91a33368 | Sven Schöling | my @options;
|
||
push @options, $::locale->text('Search term') . ': ' . $::form->{search_term} if $::form->{search_term};
|
||||
for (qw(cp_name cp_givenname cp_title cp_email cp_abteilung cp_project)) {
|
||||
push @options, $column_defs{$_}{text} . ': ' . $::form->{filter}{$_} if $::form->{filter}{$_};
|
||||
}
|
||||
if ($::form->{filter}{status}) {
|
||||
push @options, $::locale->text('Status') . ': ' . (
|
||||
$::form->{filter}{status} =~ /active/ ? $::locale->text('Active') :
|
||||
$::form->{filter}{status} =~ /orphaned/ ? $::locale->text('Orphaned') :
|
||||
$::form->{filter}{status} =~ /all/ ? $::locale->text('All') : ''
|
||||
);
|
||||
}
|
||||
4070dbf3 | Sven Schöling | |||
$report->set_options('top_info_text' => join("\n", @options),
|
||||
'output_format' => 'HTML',
|
||||
'title' => $::form->{title},
|
||||
'attachment_basename' => $::locale->text('contact_list') . strftime('_%Y%m%d', localtime time),
|
||||
);
|
||||
$report->set_options_from_form;
|
||||
$report->set_columns(%column_defs);
|
||||
$report->set_column_order(@columns);
|
||||
$report->set_export_options('list_contacts', @hidden_variables);
|
||||
$report->set_sort_indicator($::form->{sort}, $::form->{sortdir});
|
||||
cc78d935 | Sven Schöling | CVar->add_custom_variables_to_report('module' => 'Contacts',
|
||
'trans_id_field' => 'cp_id',
|
||||
'configs' => $cvar_configs,
|
||||
'column_defs' => \%column_defs,
|
||||
'data' => \@contacts);
|
||||
4070dbf3 | Sven Schöling | foreach my $ref (@contacts) {
|
||
my $row = { map { $_ => { 'data' => $ref->{$_} } } @columns };
|
||||
3b88c1fe | Moritz Bunkus | $row->{vcname}->{link} = build_std_url('script=controller.pl', 'action=CustomerVendor/edit', 'id=' . E($ref->{vcid}), 'db=' . E($ref->{db}), 'callback', @hidden_nondefault);
|
||
4070dbf3 | Sven Schöling | $row->{vcnumber}->{link} = $row->{vcname}->{link};
|
||
428bc365 | Moritz Bunkus | |||
for (qw(cp_email cp_privatemail)) {
|
||||
$row->{$_}->{link} = 'mailto:' . E($ref->{$_}) if $ref->{$_};
|
||||
}
|
||||
4070dbf3 | Sven Schöling | |||
53d80f2a | Moritz Bunkus | 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';
|
||||
}
|
||||
4070dbf3 | Sven Schöling | $report->add_data($row);
|
||
}
|
||||
e7913c4c | Moritz Bunkus | $report->generate_with_headers();
|
||
4070dbf3 | Sven Schöling | |||
$::lxdebug->leave_sub;
|
||||
}
|
||||
64c45e8f | Moritz Bunkus | sub setup_ct_search_action_bar {
|
||
my %params = @_;
|
||||
for my $bar ($::request->layout->get('actionbar')) {
|
||||
$bar->add(
|
||||
action => [
|
||||
bd9607cd | Moritz Bunkus | t8('Search'),
|
||
64c45e8f | Moritz Bunkus | submit => [ '#form', { action => 'list_names' } ],
|
||
accesskey => 'enter',
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
sub setup_ct_list_names_action_bar {
|
||||
my %params = @_;
|
||||
for my $bar ($::request->layout->get('actionbar')) {
|
||||
$bar->add(
|
||||
action => [
|
||||
bd9607cd | Moritz Bunkus | t8('Add'),
|
||
64c45e8f | Moritz Bunkus | submit => [ '#new_form', { action => 'CustomerVendor/add' } ],
|
||
accesskey => 'enter',
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
sub setup_ct_search_contact_action_bar {
|
||||
my %params = @_;
|
||||
for my $bar ($::request->layout->get('actionbar')) {
|
||||
$bar->add(
|
||||
action => [
|
||||
bd9607cd | Moritz Bunkus | t8('Search'),
|
||
64c45e8f | Moritz Bunkus | submit => [ '#form', { action => 'list_contacts' } ],
|
||
accesskey => 'enter',
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
3ae0915d | Sven Schöling | sub continue { call_sub($main::form->{nextsub}); }
|