X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FCustomerVendor.pm;h=f9e2515786c1e3b5de937ca154291d5105cb6344;hb=549f187d3a2b1d15f96c4556714666ed954447bb;hp=46270bc7da272585748526aadb50306ea5c07533;hpb=dcf47a5679795c959e663f7f6b6dd78eb786b1b7;p=kivitendo-erp.git diff --git a/SL/Controller/CustomerVendor.pm b/SL/Controller/CustomerVendor.pm index 46270bc7d..f9e251578 100644 --- a/SL/Controller/CustomerVendor.pm +++ b/SL/Controller/CustomerVendor.pm @@ -3,32 +3,50 @@ package SL::Controller::CustomerVendor; use strict; use parent qw(SL::Controller::Base); +use List::MoreUtils qw(any); + use SL::JSON; use SL::DBUtils; use SL::Helper::Flash; +use SL::Locale::String; +use SL::Util qw(trim); +use SL::VATIDNr; +use SL::Webdav; +use SL::ZUGFeRD; +use SL::Controller::Helper::GetModels; +use SL::Controller::Helper::ReportGenerator; +use SL::Controller::Helper::ParseFilter; use SL::DB::Customer; use SL::DB::Vendor; use SL::DB::Business; +use SL::DB::ContactDepartment; +use SL::DB::ContactTitle; use SL::DB::Employee; +use SL::DB::Greeting; use SL::DB::Language; use SL::DB::TaxZone; use SL::DB::Note; use SL::DB::PaymentTerm; use SL::DB::Pricegroup; +use SL::DB::Price; use SL::DB::Contact; use SL::DB::FollowUp; use SL::DB::FollowUpLink; use SL::DB::History; use SL::DB::Currency; +use SL::DB::Invoice; +use SL::DB::PurchaseInvoice; +use SL::DB::Order; -# safety -__PACKAGE__->run_before( - sub { - $::auth->assert('customer_vendor_edit'); - } +use Data::Dumper; + +use Rose::Object::MakeMethods::Generic ( + scalar => [ qw(user_has_edit_rights) ], + 'scalar --get_set_init' => [ qw(customer_models vendor_models zugferd_settings) ], ); +# safety __PACKAGE__->run_before( '_instantiate_args', only => [ @@ -43,6 +61,7 @@ __PACKAGE__->run_before( 'delete', 'delete_contact', 'delete_shipto', + 'delete_additional_billing_address', ] ); @@ -50,11 +69,18 @@ __PACKAGE__->run_before( '_load_customer_vendor', only => [ 'edit', + 'show', 'update', 'ajaj_get_shipto', + 'ajaj_get_additional_billing_address', 'ajaj_get_contact', + 'ajax_list_prices', ] ); + +# make sure this comes after _load_customer_vendor +__PACKAGE__->run_before('_check_auth'); + __PACKAGE__->run_before( '_create_customer_vendor', only => [ @@ -62,10 +88,20 @@ __PACKAGE__->run_before( ] ); +__PACKAGE__->run_before('normalize_name'); + +my @ADDITIONAL_BILLING_ADDRESS_COLUMNS = qw(name department_1 department_2 contact street zipcode city country gln email phone fax default_address); + sub action_add { my ($self) = @_; $self->_pre_render(); + + if ($self->{cv}->is_customer) { + $self->{cv}->assign_attributes(hourly_rate => $::instance_conf->get_customer_hourly_rate); + $self->{cv}->salesman_id(SL::DB::Manager::Employee->current->id) if !$::auth->assert('customer_vendor_all_edit', 1); + } + $self->render( 'customer_vendor/form', title => ($self->is_vendor() ? $::locale->text('Add Vendor') : $::locale->text('Add Customer')), @@ -84,12 +120,111 @@ sub action_edit { ); } +sub action_show { + my ($self) = @_; + + if ($::request->type eq 'json') { + my $cv_hash; + if (!$self->{cv}) { + # TODO error + } else { + $cv_hash = $self->{cv}->as_tree; + $cv_hash->{cvars} = $self->{cv}->cvar_as_hashref; + } + + $self->render(\ SL::JSON::to_json($cv_hash), { layout => 0, type => 'json', process => 0 }); + } +} + +sub _check_ustid_taxnumber_unique { + my ($self) = @_; + + my %cfg; + if ($self->is_vendor()) { + %cfg = (should_check => $::instance_conf->get_vendor_ustid_taxnummer_unique, + manager_class => 'SL::DB::Manager::Vendor', + err_ustid => t8('A vendor with the same VAT ID already exists.'), + err_taxnumber => t8('A vendor with the same taxnumber already exists.'), + ); + + } elsif ($self->is_customer()) { + %cfg = (should_check => $::instance_conf->get_customer_ustid_taxnummer_unique, + manager_class => 'SL::DB::Manager::Customer', + err_ustid => t8('A customer with the same VAT ID already exists.'), + err_taxnumber => t8('A customer with the same taxnumber already exists.'), + ); + + } else { + return; + } + + my @errors; + + if ($cfg{should_check}) { + my $do_clean_taxnumber = sub { my $n = $_[0]; $n //= ''; $n =~ s{[[:space:].-]+}{}g; return $n}; + + my $clean_ustid = SL::VATIDNr->clean($self->{cv}->ustid); + my $clean_taxnumber = $do_clean_taxnumber->($self->{cv}->taxnumber); + + if (!($clean_ustid || $clean_taxnumber)) { + return t8('VAT ID and/or taxnumber must be given.'); + + } else { + my $clean_number = $clean_ustid; + if ($clean_number) { + my $entries = $cfg{manager_class}->get_all(query => ['!id' => $self->{cv}->id, '!ustid' => undef, '!ustid' => ''], select => ['ustid'], distinct => 1); + if (any { $clean_number eq SL::VATIDNr->clean($_->ustid) } @$entries) { + push @errors, $cfg{err_ustid}; + } + } + + $clean_number = $clean_taxnumber; + if ($clean_number) { + my $entries = $cfg{manager_class}->get_all(query => ['!id' => $self->{cv}->id, '!taxnumber' => undef, '!taxnumber' => ''], select => ['taxnumber'], distinct => 1); + if (any { $clean_number eq $do_clean_taxnumber->($_->taxnumber) } @$entries) { + push @errors, $cfg{err_taxnumber}; + } + } + } + } + + return join "\n", @errors if @errors; + return; +} + sub _save { my ($self) = @_; + my @errors = $self->{cv}->validate; + if (@errors) { + flash('error', @errors); + $self->_pre_render(); + $self->render( + 'customer_vendor/form', + title => ($self->is_vendor() ? t8('Edit Vendor') : t8('Edit Customer')), + %{$self->{template_args}} + ); + $::dispatcher->end_request; + } + + $self->{cv}->greeting(trim $self->{cv}->greeting); + my $save_greeting = $self->{cv}->greeting + && $::instance_conf->get_vc_greetings_use_textfield + && SL::DB::Manager::Greeting->get_all_count(where => [description => $self->{cv}->greeting]) == 0; + + $self->{contact}->cp_title(trim($self->{contact}->cp_title)); + my $save_contact_title = $self->{contact}->cp_title + && $::instance_conf->get_contact_titles_use_textfield + && SL::DB::Manager::ContactTitle->get_all_count(where => [description => $self->{contact}->cp_title]) == 0; + + $self->{contact}->cp_abteilung(trim($self->{contact}->cp_abteilung)); + my $save_contact_department = $self->{contact}->cp_abteilung + && $::instance_conf->get_contact_departments_use_textfield + && SL::DB::Manager::ContactDepartment->get_all_count(where => [description => $self->{contact}->cp_abteilung]) == 0; + my $db = $self->{cv}->db; - $db->do_transaction(sub { + $db->with_transaction(sub { my $cvs_by_nr; if ( $self->is_vendor() ) { if ( $self->{cv}->vendornumber ) { @@ -110,11 +245,19 @@ sub _save { } } + my $ustid_taxnumber_error = $self->_check_ustid_taxnumber_unique; + $::form->error($ustid_taxnumber_error) if $ustid_taxnumber_error; + $self->{cv}->save(cascade => 1); + SL::DB::Greeting->new(description => $self->{cv}->greeting)->save if $save_greeting; + $self->{contact}->cp_cv_id($self->{cv}->id); if( $self->{contact}->cp_name ne '' || $self->{contact}->cp_givenname ne '' ) { - $self->{contact}->save(); + SL::DB::ContactTitle ->new(description => $self->{contact}->cp_title) ->save if $save_contact_title; + SL::DB::ContactDepartment->new(description => $self->{contact}->cp_abteilung)->save if $save_contact_department; + + $self->{contact}->save(cascade => 1); } if( $self->{note}->subject ne '' && $self->{note}->body ne '' ) { @@ -136,8 +279,23 @@ sub _save { } $self->{shipto}->trans_id($self->{cv}->id); - if( $self->{shipto}->shiptoname ne '' ) { - $self->{shipto}->save(); + if(any { $self->{shipto}->$_ ne '' } qw(shiptoname shiptodepartment_1 shiptodepartment_2 shiptostreet shiptozipcode shiptocity shiptocountry shiptogln shiptocontact shiptophone shiptofax shiptoemail)) { + $self->{shipto}->save(cascade => 1); + } + + if ($self->is_customer && any { $self->{additional_billing_address}->$_ ne '' } grep { $_ ne 'default_address' } @ADDITIONAL_BILLING_ADDRESS_COLUMNS) { + $self->{additional_billing_address}->customer_id($self->{cv}->id); + $self->{additional_billing_address}->save(cascade => 1); + + # Make sure only one address per customer has "default address" set. + if ($self->{additional_billing_address}->default_address) { + SL::DB::Manager::AdditionalBillingAddress->update_all( + set => { default_address => 0, }, + where => [ + customer_id => $self->{cv}->id, + '!id' => $self->{additional_billing_address}->id, + ]); + } } my $snumbers = $self->is_vendor() ? 'vendornumber_'. $self->{cv}->vendornumber : 'customernumber_'. $self->{cv}->customernumber; @@ -147,6 +305,21 @@ sub _save { employee_id => SL::DB::Manager::Employee->current->id, addition => 'SAVED', )->save(); + + if ( $::form->{delete_notes} ) { + foreach my $note_id (@{ $::form->{delete_notes} }) { + my $note = SL::DB::Note->new(id => $note_id)->load(); + if ( $note->follow_up ) { + if ( $note->follow_up->follow_up_link ) { + $note->follow_up->follow_up_link->delete(cascade => 'delete'); + } + $note->follow_up->delete(cascade => 'delete'); + } + $note->delete(cascade => 'delete'); + } + } + + 1; }) || die($db->error); } @@ -170,6 +343,10 @@ sub action_save { push(@redirect_params, shipto_id => $self->{shipto}->shipto_id); } + if ( $self->is_customer && $self->{additional_billing_address}->id ) { + push(@redirect_params, additional_billing_address_id => $self->{additional_billing_address}->id); + } + $self->redirect_to(@redirect_params); } @@ -185,23 +362,29 @@ sub action_save_and_close { sub _transaction { my ($self, $script) = @_; - $::auth->assert('general_ledger | invoice_edit | vendor_invoice_edit | ' . + $::auth->assert('gl_transactions | ap_transactions | ar_transactions'. + '| invoice_edit | vendor_invoice_edit | ' . ' request_quotation_edit | sales_quotation_edit | sales_order_edit | purchase_order_edit'); $self->_save(); - my $callback = $::form->escape($::form->{callback}, 1); my $name = $::form->escape($self->{cv}->name, 1); my $db = $self->is_vendor() ? 'vendor' : 'customer'; + my $action = 'add'; + + if ($::instance_conf->get_feature_experimental_order && 'oe.pl' eq $script) { + $script = 'controller.pl'; + $action = 'Order/' . $action; + } my $url = $self->url_for( controller => $script, - action => 'add', + action => $action, vc => $db, $db .'_id' => $self->{cv}->id, $db => $name, type => $::form->{type}, - callback => $callback, + callback => $::form->{callback}, ); print $::form->redirect_header($url); @@ -210,7 +393,7 @@ sub _transaction { sub action_save_and_ar_transaction { my ($self) = @_; - $main::auth->assert('general_ledger'); + $main::auth->assert('ar_transactions'); $self->_transaction('ar.pl'); } @@ -218,7 +401,7 @@ sub action_save_and_ar_transaction { sub action_save_and_ap_transaction { my ($self) = @_; - $main::auth->assert('general_ledger'); + $main::auth->assert('ap_transactions'); $self->_transaction('ap.pl'); } @@ -276,7 +459,7 @@ sub action_delete { $self->action_edit(); } else { - $db->do_transaction(sub { + $db->with_transaction(sub { $self->{cv}->delete(cascade => 1); my $snumbers = $self->is_vendor() ? 'vendornumber_'. $self->{cv}->vendornumber : 'customernumber_'. $self->{cv}->customernumber; @@ -304,7 +487,7 @@ sub action_delete_contact { SL::Helper::Flash::flash('error', $::locale->text('No contact selected to delete')); } else { - $db->do_transaction(sub { + $db->with_transaction(sub { if ( $self->{contact}->used ) { $self->{contact}->detach(); $self->{contact}->save(); @@ -313,9 +496,11 @@ sub action_delete_contact { $self->{contact}->delete(cascade => 1); SL::Helper::Flash::flash('info', $::locale->text('Contact deleted.')); } + + 1; }) || die($db->error); - $self->{contact} = SL::DB::Contact->new(); + $self->{contact} = $self->_new_contact_object; } $self->action_edit(); @@ -330,7 +515,7 @@ sub action_delete_shipto { SL::Helper::Flash::flash('error', $::locale->text('No shipto selected to delete')); } else { - $db->do_transaction(sub { + $db->with_transaction(sub { if ( $self->{shipto}->used ) { $self->{shipto}->detach(); $self->{shipto}->save(cascade => 1); @@ -339,6 +524,8 @@ sub action_delete_shipto { $self->{shipto}->delete(cascade => 1); SL::Helper::Flash::flash('info', $::locale->text('Shipto deleted.')); } + + 1; }) || die($db->error); $self->{shipto} = SL::DB::Shipto->new(); @@ -347,6 +534,32 @@ sub action_delete_shipto { $self->action_edit(); } +sub action_delete_additional_billing_address { + my ($self) = @_; + + my $db = $self->{additional_billing_address}->db; + + if ( !$self->{additional_billing_address}->id ) { + SL::Helper::Flash::flash('error', $::locale->text('No address selected to delete')); + } else { + $db->with_transaction(sub { + if ( $self->{additional_billing_address}->used ) { + $self->{additional_billing_address}->detach; + $self->{additional_billing_address}->save(cascade => 1); + SL::Helper::Flash::flash('info', $::locale->text('Address is in use and was flagged invalid.')); + } else { + $self->{additional_billing_address}->delete(cascade => 1); + SL::Helper::Flash::flash('info', $::locale->text('Address deleted.')); + } + + 1; + }) || die($db->error); + + $self->{additional_billing_address} = SL::DB::AdditionalBillingAddress->new; + } + + $self->action_edit; +} sub action_search { my ($self) = @_; @@ -377,10 +590,12 @@ sub action_search_contact { print $::form->redirect_header($url); } - sub action_get_delivery { my ($self) = @_; + $::auth->assert('sales_all_edit') if $self->is_customer(); + $::auth->assert('purchase_all_edit') if $self->is_vendor(); + my $dbh = $::form->get_standard_dbh(); my ($arap, $db, $qty_sign); @@ -394,21 +609,24 @@ sub action_get_delivery { $qty_sign = ''; } - my $where = ' WHERE 1=1 '; + my $where = ' WHERE 1=1'; my @values; if ( !$self->is_vendor() && $::form->{shipto_id} && $::form->{shipto_id} ne 'all' ) { - $where .= "AND ${arap}.shipto_id = ?"; + $where .= " AND ${arap}.shipto_id = ?"; push(@values, $::form->{shipto_id}); + } else { + $where .= " AND ${arap}.${db}_id = ?"; + push(@values, $::form->{id}); } if ( $::form->{delivery_from} ) { - $where .= "AND ${arap}.transdate >= ?"; + $where .= " AND ${arap}.transdate >= ?"; push(@values, conv_date($::form->{delivery_from})); } if ( $::form->{delivery_to} ) { - $where .= "AND ${arap}.transdate <= ?"; + $where .= " AND ${arap}.transdate <= ?"; push(@values, conv_date($::form->{delivery_to})); } @@ -437,7 +655,8 @@ sub action_get_delivery { ON p.id = i.parts_id LEFT JOIN oe - ON (oe.ordnumber = ${arap}.ordnumber AND NOT ${arap}.ordnumber = '') + ON (oe.ordnumber = ${arap}.ordnumber AND NOT ${arap}.ordnumber = '' + AND ". ($arap eq 'ar' ? 'oe.customer_id IS NOT NULL' : 'oe.vendor_id IS NOT NULL') ." ) ${where} ORDER BY ${arap}.transdate DESC LIMIT 15"; @@ -450,16 +669,31 @@ sub action_get_delivery { sub action_ajaj_get_shipto { my ($self) = @_; - my $data = { + my $data = {}; + $data->{shipto} = { map( { my $name = 'shipto'. $_; $name => $self->{shipto}->$name; } - qw(_id name department_1 department_2 street zipcode city country contact phone fax email) + qw(_id name department_1 department_2 street zipcode city gln country contact phone fax email) ) }; + $data->{shipto_cvars} = $self->_prepare_cvar_configs_for_ajaj($self->{shipto}->cvars_by_config); + + $self->render(\SL::JSON::to_json($data), { type => 'json', process => 0 }); +} + +sub action_ajaj_get_additional_billing_address { + my ($self) = @_; + + my $data = { + additional_billing_address => { + map { ($_ => $self->{additional_billing_address}->$_) } ('id', @ADDITIONAL_BILLING_ADDRESS_COLUMNS) + }, + }; + $self->render(\SL::JSON::to_json($data), { type => 'json', process => 0 }); } @@ -481,62 +715,133 @@ sub action_ajaj_get_contact { } qw( id gender abteilung title position givenname name email phone1 phone2 fax mobile1 mobile2 - satphone satfax project street zipcode city privatphone privatemail birthday + satphone satfax project street zipcode city privatphone privatemail birthday main ) ) }; - $data->{contact_cvars} = { - map( - { - if ( $_->config->type eq 'number' ) { - $_->config->name => $::form->format_amount(\%::myconfig, $_->value, -2); - } else { - $_->config->name => $_->value; - } - } - grep( - { $_->is_valid; } - @{$self->{contact}->cvars_by_config} - ) - ) - }; + $data->{contact_cvars} = $self->_prepare_cvar_configs_for_ajaj($self->{contact}->cvars_by_config); + + # avoid two or more main_cp + my $has_main_cp = grep { $_->cp_main == 1 } @{ $self->{cv}->contacts }; + $data->{contact}->{disable_cp_main} = 1 if ($has_main_cp && !$data->{contact}->{cp_main}); $self->render(\SL::JSON::to_json($data), { type => 'json', process => 0 }); } -sub action_ajaj_customer_autocomplete { +sub action_ajaj_autocomplete { + my ($self, %params) = @_; + + my ($model, $manager, $number, $matches); + + # first see if this is customer or vendor picking + if ($::form->{type} eq 'customer') { + $model = $self->customer_models; + $manager = 'SL::DB::Manager::Customer'; + $number = 'customernumber'; + } elsif ($::form->{type} eq 'vendor') { + $model = $self->vendor_models; + $manager = 'SL::DB::Manager::Vendor'; + $number = 'vendornumber'; + } else { + die "unknown type $::form->{type}"; + } + + # if someone types something, and hits enter, assume he entered the full name. + # if something matches, treat that as the sole match + # unfortunately get_models can't do more than one per package atm, so we do it + # the oldfashioned way. + if ($::form->{prefer_exact}) { + my $exact_matches; + if (1 == scalar @{ $exact_matches = $manager->get_all( + query => [ + obsolete => 0, + or => [ + name => { ilike => $::form->{filter}{'all:substr:multi::ilike'} }, + $number => { ilike => $::form->{filter}{'all:substr:multi::ilike'} }, + ] + ], + limit => 2, + ) }) { + $matches = $exact_matches; + } + } + + $matches //= $model->get; + + my @hashes = map { + +{ + value => $_->displayable_name, + label => $_->displayable_name, + id => $_->id, + $number => $_->$number, + name => $_->name, + type => $::form->{type}, + cvars => { map { ($_->config->name => { value => $_->value_as_text, is_valid => $_->is_valid }) } @{ $_->cvars_by_config } }, + } + } @{ $matches }; + + $self->render(\ SL::JSON::to_json(\@hashes), { layout => 0, type => 'json', process => 0 }); +} + +sub action_test_page { + $_[0]->render('customer_vendor/test_page'); +} + +sub action_ajax_list_prices { my ($self, %params) = @_; - my $limit = $::form->{limit} || 20; - my $type = $::form->{type} || {}; - my $query = { ilike => '%'. $::form->{term} .'%' }; + my $report = SL::ReportGenerator->new(\%::myconfig, $::form); + my @columns = qw(partnumber description price); + my @visible = qw(partnumber description price); + my @sortable = qw(partnumber description price); - my @filter; - push( - @filter, - $::form->{column} ? ($::form->{column} => $query) : (or => [ customernumber => $query, name => $query ]) + my %column_defs = ( + partnumber => { text => $::locale->text('Part Number'), sub => sub { $_[0]->parts->partnumber } }, + description => { text => $::locale->text('Part Description'), sub => sub { $_[0]->parts->description } }, + price => { text => $::locale->text('Price'), sub => sub { $::form->format_amount(\%::myconfig, $_[0]->price, 2) }, align => 'right' }, ); - my $customers = SL::DB::Manager::Customer->get_all(query => [ @filter ], limit => $limit); - my $value_col = $::form->{column} || 'name'; + $::form->{sort_by} ||= 'partnumber'; + $::form->{sort_dir} //= 1; + + for my $col (@sortable) { + $column_defs{$col}{link} = $self->url_for( + action => 'ajax_list_prices', + callback => $::form->{callback}, + db => $::form->{db}, + id => $self->{cv}->id, + sort_by => $col, + sort_dir => ($::form->{sort_by} eq $col ? 1 - $::form->{sort_dir} : $::form->{sort_dir}) + ); + } - my $data = [ - map( - { - { - value => $_->can($value_col)->($_), - label => $_->displayable_name, - id => $_->id, - customernumber => $_->customernumber, - name => $_->name, - } - } - @{$customers} - ) - ]; + map { $column_defs{$_}{visible} = 1 } @visible; + + my $pricegroup; + $pricegroup = $self->{cv}->pricegroup->pricegroup if $self->{cv}->pricegroup; + + $report->set_columns(%column_defs); + $report->set_column_order(@columns); + $report->set_options(allow_pdf_export => 0, allow_csv_export => 0); + $report->set_sort_indicator($::form->{sort_by}, $::form->{sort_dir}); + $report->set_export_options(@{ $params{report_generator_export_options} || [] }); + $report->set_options( + %{ $params{report_generator_options} || {} }, + output_format => 'HTML', + top_info_text => $::locale->text('Pricegroup') . ': ' . $pricegroup, + title => $::locale->text('Price List'), + ); + + my $sort_param = $::form->{sort_by} eq 'price' ? 'price' : + $::form->{sort_by} eq 'description' ? 'parts.description' : + 'parts.partnumber'; + $sort_param .= ' ' . ($::form->{sort_dir} ? 'ASC' : 'DESC'); + my $prices = SL::DB::Manager::Price->get_all(where => [ pricegroup_id => $self->{cv}->pricegroup_id ], + sort_by => $sort_param, + with_objects => 'parts'); - $self->render(\SL::JSON::to_json($data), { layout => 0, type => 'json' }); + $self->report_generator_list_objects(report => $report, objects => $prices, layout => 0, header => 0); } sub is_vendor { @@ -555,7 +860,7 @@ sub is_orphaned { } my $arap = $self->is_vendor ? 'ap' : 'ar'; - my $num_args = 2; + my $num_args = 3; my $cv = $self->is_vendor ? 'vendor' : 'customer'; @@ -570,6 +875,13 @@ sub is_orphaned { SELECT a.id FROM oe a JOIN '. $cv .' ct ON (a.'. $cv .'_id = ct.id) + WHERE ct.id = ? + + UNION + + SELECT a.id + FROM delivery_orders a + JOIN '. $cv .' ct ON (a.'. $cv .'_id = ct.id) WHERE ct.id = ?'; @@ -585,6 +897,17 @@ sub is_orphaned { return $self->{_is_orphaned} = !$dummy; } +sub _copy_form_to_cvars { + my ($self, %params) = @_; + + foreach my $cvar (@{ $params{target}->cvars_by_config }) { + my $value = $params{source}->{$cvar->config->name}; + $value = $::form->parse_amount(\%::myconfig, $value) if $cvar->config->type eq 'number'; + + $cvar->value($value); + } +} + sub _instantiate_args { my ($self) = @_; @@ -597,11 +920,7 @@ sub _instantiate_args { $self->{cv} = SL::DB::Customer->new(id => $::form->{cv}->{id})->load(); } } else { - if ( $self->is_vendor() ) { - $self->{cv} = SL::DB::Vendor->new(); - } else { - $self->{cv} = SL::DB::Customer->new(); - } + $self->{cv} = $self->_new_customer_vendor_object; } $self->{cv}->assign_attributes(%{$::form->{cv}}); @@ -609,30 +928,12 @@ sub _instantiate_args { $self->{cv}->taxincluded_checked(undef); } - - foreach my $cvar (@{$self->{cv}->cvars_by_config()}) { - my $value = $::form->{cv_cvars}->{$cvar->config->name}; - - if ( $cvar->config->type eq 'number' ) { - $value = $::form->parse_amount(\%::myconfig, $value); - } - - $cvar->value($value); - } + $self->{cv}->hourly_rate($::instance_conf->get_customer_hourly_rate) if $self->is_customer && !$self->{cv}->hourly_rate; if ( $::form->{note}->{id} ) { $self->{note} = SL::DB::Note->new(id => $::form->{note}->{id})->load(); - - $self->{note_followup_link} = SL::DB::Manager::FollowUpLink->get_all( - query => [ - 'follow_up.note_id' => $self->{note}->id, - trans_id => $self->{cv}->id, - trans_type => ($self->is_vendor() ? 'vendor' : 'customer'), - ], - with_objects => ['follow_up'], - )->[0]; - - $self->{note_followup} = $self->{note_followup_link}->follow_up; + $self->{note_followup} = $self->{note}->follow_up; + $self->{note_followup_link} = $self->{note_followup}->follow_up_link; } else { $self->{note} = SL::DB::Note->new(); $self->{note_followup} = SL::DB::FollowUp->new(); @@ -658,22 +959,25 @@ sub _instantiate_args { $self->{shipto}->assign_attributes(%{$::form->{shipto}}); $self->{shipto}->module('CT'); + if ($self->is_customer) { + if ( $::form->{additional_billing_address}->{id} ) { + $self->{additional_billing_address} = SL::DB::AdditionalBillingAddress->new(id => $::form->{additional_billing_address}->{id})->load; + } else { + $self->{additional_billing_address} = SL::DB::AdditionalBillingAddress->new; + } + $self->{additional_billing_address}->assign_attributes(%{ $::form->{additional_billing_address} }); + } + if ( $::form->{contact}->{cp_id} ) { $self->{contact} = SL::DB::Contact->new(cp_id => $::form->{contact}->{cp_id})->load(); } else { - $self->{contact} = SL::DB::Contact->new(); + $self->{contact} = $self->_new_contact_object; } $self->{contact}->assign_attributes(%{$::form->{contact}}); - foreach my $cvar (@{$self->{contact}->cvars_by_config()}) { - my $value = $::form->{contact_cvars}->{$cvar->config->name}; - - if ( $cvar->config->type eq 'number' ) { - $value = $::form->parse_amount(\%::myconfig, $value); - } - - $cvar->value($value); - } + $self->_copy_form_to_cvars(target => $self->{cv}, source => $::form->{cv_cvars}); + $self->_copy_form_to_cvars(target => $self->{contact}, source => $::form->{contact_cvars}); + $self->_copy_form_to_cvars(target => $self->{shipto}, source => $::form->{shipto_cvars}); } sub _load_customer_vendor { @@ -687,17 +991,8 @@ sub _load_customer_vendor { if ( $::form->{note_id} ) { $self->{note} = SL::DB::Note->new(id => $::form->{note_id})->load(); - - $self->{note_followup_link} = SL::DB::Manager::FollowUpLink->get_all( - query => [ - 'follow_up.note_id' => $self->{note}->id, - trans_id => $self->{cv}->id, - trans_type => ($self->is_vendor() ? 'vendor' : 'customer'), - ], - with_objects => ['follow_up'], - )->[0]; - - $self->{note_followup} = $self->{note_followup_link}->follow_up; + $self->{note_followup} = $self->{note}->follow_up; + $self->{note_followup_link} = $self->{note_followup}->follow_up_link; } else { $self->{note} = SL::DB::Note->new(); $self->{note_followup} = SL::DB::FollowUp->new(); @@ -714,6 +1009,16 @@ sub _load_customer_vendor { $self->{shipto} = SL::DB::Shipto->new(); } + if ($self->is_customer) { + if ( $::form->{additional_billing_address_id} ) { + $self->{additional_billing_address} = SL::DB::AdditionalBillingAddress->new(id => $::form->{additional_billing_address_id})->load; + die($::locale->text('Error')) if $self->{additional_billing_address}->customer_id != $self->{cv}->id; + + } else { + $self->{additional_billing_address} = SL::DB::AdditionalBillingAddress->new; + } + } + if ( $::form->{contact_id} ) { $self->{contact} = SL::DB::Contact->new(cp_id => $::form->{contact_id})->load(); @@ -721,18 +1026,40 @@ sub _load_customer_vendor { die($::locale->text('Error')); } } else { - $self->{contact} = SL::DB::Contact->new(); + $self->{contact} = $self->_new_contact_object; + } +} + +sub _may_access_action { + my ($self, $action) = @_; + + my $is_new = !$self->{cv} || !$self->{cv}->id; + my $is_own_customer = !$is_new + && $self->{cv}->is_customer + && (SL::DB::Manager::Employee->current->id == $self->{cv}->salesman_id); + my $has_edit_rights = $::auth->assert('customer_vendor_all_edit', 1); + $has_edit_rights ||= $::auth->assert('customer_vendor_edit', 1) && ($is_new || $is_own_customer); + my $needs_edit_rights = $action =~ m{^(?:add|save|delete|update)}; + + $self->user_has_edit_rights($has_edit_rights); + + return 1 if $has_edit_rights; + return 0 if $needs_edit_rights; + return 1; +} + +sub _check_auth { + my ($self, $action) = @_; + + if (!$self->_may_access_action($action)) { + $::auth->deny_access; } } sub _create_customer_vendor { my ($self) = @_; - if ( $self->is_vendor() ) { - $self->{cv} = SL::DB::Vendor->new(); - } else { - $self->{cv} = SL::DB::Customer->new(); - } + $self->{cv} = $self->_new_customer_vendor_object; $self->{cv}->currency_id($::instance_conf->get_currency_id()); $self->{note} = SL::DB::Note->new(); @@ -740,8 +1067,9 @@ sub _create_customer_vendor { $self->{note_followup} = SL::DB::FollowUp->new(); $self->{shipto} = SL::DB::Shipto->new(); + $self->{additional_billing_address} = SL::DB::AdditionalBillingAddress->new if $self->is_customer; - $self->{contact} = SL::DB::Contact->new(); + $self->{contact} = $self->_new_contact_object; } sub _pre_render { @@ -755,39 +1083,30 @@ sub _pre_render { $self->{all_employees} = SL::DB::Manager::Employee->get_all(query => [ deleted => 0 ]); - $query = - 'SELECT DISTINCT(greeting) - FROM customer - WHERE greeting IS NOT NULL AND greeting != \'\' - UNION - SELECT DISTINCT(greeting) - FROM vendor - WHERE greeting IS NOT NULL AND greeting != \'\' - ORDER BY greeting'; - $self->{all_greetings} = [ - map( - { $_->{greeting}; } - selectall_hashref_query($::form, $dbh, $query) - ) - ]; - - $query = - 'SELECT DISTINCT(cp_title) AS title - FROM contacts - WHERE cp_title IS NOT NULL AND cp_title != \'\' - ORDER BY cp_title'; - $self->{all_titles} = [ - map( - { $_->{title}; } - selectall_hashref_query($::form, $dbh, $query) - ) - ]; + $self->{all_greetings} = SL::DB::Manager::Greeting->get_all_sorted(); + if ($self->{cv}->id && $self->{cv}->greeting && !grep {$self->{cv}->greeting eq $_->description} @{$self->{all_greetings}}) { + unshift @{$self->{all_greetings}}, (SL::DB::Greeting->new(description => $self->{cv}->greeting)); + } + + $self->{all_contact_titles} = SL::DB::Manager::ContactTitle->get_all_sorted(); + foreach my $contact (@{ $self->{cv}->contacts }) { + if ($contact->cp_title && !grep {$contact->cp_title eq $_->description} @{$self->{all_contact_titles}}) { + unshift @{$self->{all_contact_titles}}, (SL::DB::ContactTitle->new(description => $contact->cp_title)); + } + } + + $self->{all_contact_departments} = SL::DB::Manager::ContactDepartment->get_all_sorted(); + foreach my $contact (@{ $self->{cv}->contacts }) { + if ($contact->cp_abteilung && !grep {$contact->cp_abteilung eq $_->description} @{$self->{all_contact_departments}}) { + unshift @{$self->{all_contact_departments}}, (SL::DB::ContactDepartment->new(description => $contact->cp_abteilung)); + } + } $self->{all_currencies} = SL::DB::Manager::Currency->get_all(); $self->{all_languages} = SL::DB::Manager::Language->get_all(); - $self->{all_taxzones} = SL::DB::Manager::TaxZone->get_all(); + $self->{all_taxzones} = SL::DB::Manager::TaxZone->get_all_sorted(); if ( $::instance_conf->get_vertreter() ) { $query = @@ -810,21 +1129,14 @@ sub _pre_render { $self->{all_salesmen} = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $self->{cv}->salesman_id, deleted => 0 ] ]); } - $self->{all_payment_terms} = SL::DB::Manager::PaymentTerm->get_all(); + $self->{all_payment_terms} = SL::DB::Manager::PaymentTerm->get_all_sorted(where => [ or => [ id => $self->{cv}->payment_id, + obsolete => 0 ] ]); - $self->{all_pricegroups} = SL::DB::Manager::Pricegroup->get_all(); + $self->{all_delivery_terms} = SL::DB::Manager::DeliveryTerm->get_all(); - $query = - 'SELECT DISTINCT(cp_abteilung) AS department - FROM contacts - WHERE cp_abteilung IS NOT NULL AND cp_abteilung != \'\' - ORDER BY cp_abteilung'; - $self->{all_departments} = [ - map( - { $_->{department}; } - selectall_hashref_query($::form, $dbh, $query) - ) - ]; + if ($self->{cv}->is_customer) { + $self->{all_pricegroups} = SL::DB::Manager::Pricegroup->get_all_sorted(query => [ or => [ id => $self->{cv}->pricegroup_id, obsolete => 0 ] ]); + } $self->{contacts} = $self->{cv}->contacts; $self->{contacts} ||= []; @@ -832,10 +1144,271 @@ sub _pre_render { $self->{shiptos} = $self->{cv}->shipto; $self->{shiptos} ||= []; + if ($self->is_customer) { + $self->{additional_billing_addresses} = $self->{cv}->additional_billing_addresses; + $self->{additional_billing_addresses} ||= []; + } + + $self->{notes} = SL::DB::Manager::Note->get_all( + query => [ + trans_id => $self->{cv}->id, + trans_module => 'ct', + ], + with_objects => ['follow_up'], + ); + + if ( $self->is_vendor()) { + $self->{open_items} = SL::DB::Manager::PurchaseInvoice->get_all_count( + query => [ + vendor_id => $self->{cv}->id, + paid => {lt_sql => 'amount'}, + ], + ); + } else { + $self->{open_items} = SL::DB::Manager::Invoice->get_all_count( + query => [ + customer_id => $self->{cv}->id, + paid => {lt_sql => 'amount'}, + ], + ); + } + + if ( $self->is_vendor() ) { + $self->{open_orders} = SL::DB::Manager::Order->get_all_count( + query => [ + vendor_id => $self->{cv}->id, + closed => 'F', + ], + ); + } else { + $self->{open_orders} = SL::DB::Manager::Order->get_all_count( + query => [ + customer_id => $self->{cv}->id, + closed => 'F', + ], + ); + } + + if ($self->{cv}->number && $::instance_conf->get_webdav) { + my $webdav = SL::Webdav->new( + type => $self->is_customer ? 'customer' + : $self->is_vendor ? 'vendor' + : undef, + number => $self->{cv}->number, + ); + my @all_objects = $webdav->get_all_objects; + @{ $self->{template_args}->{WEBDAV} } = map { { name => $_->filename, + type => t8('File'), + link => File::Spec->catfile($_->full_filedescriptor), + } } @all_objects; + } + $self->{template_args} ||= {}; - $::request->{layout}->add_javascripts('autocomplete_customer.js'); - $::request->{layout}->add_javascripts('kivi.CustomerVendor.js'); + $::request->{layout}->add_javascripts("$_.js") for qw (kivi.CustomerVendor kivi.File kivi.CustomerVendorTurnover ckeditor/ckeditor ckeditor/adapters/jquery); + + $self->_setup_form_action_bar; +} + +sub _setup_form_action_bar { + my ($self) = @_; + + my $no_rights = $self->user_has_edit_rights ? undef + : $self->{cv}->is_customer ? t8("You don't have the rights to edit this customer.") + : t8("You don't have the rights to edit this vendor."); + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + combobox => [ + action => [ + t8('Save'), + submit => [ '#form', { action => "CustomerVendor/save" } ], + checks => [ 'check_taxzone_and_ustid' ], + accesskey => 'enter', + disabled => $no_rights, + ], + action => [ + t8('Save and Close'), + submit => [ '#form', { action => "CustomerVendor/save_and_close" } ], + checks => [ 'check_taxzone_and_ustid' ], + disabled => $no_rights, + ], + ], # end of combobox "Save" + + combobox => [ + action => [ t8('Workflow') ], + (action => [ + t8('Save and AP Transaction'), + submit => [ '#form', { action => "CustomerVendor/save_and_ap_transaction" } ], + checks => [ 'check_taxzone_and_ustid' ], + disabled => $no_rights, + ]) x !!$self->is_vendor, + (action => [ + t8('Save and AR Transaction'), + submit => [ '#form', { action => "CustomerVendor/save_and_ar_transaction" } ], + checks => [ 'check_taxzone_and_ustid' ], + disabled => $no_rights, + ]) x !$self->is_vendor, + action => [ + t8('Save and Invoice'), + submit => [ '#form', { action => "CustomerVendor/save_and_invoice" } ], + checks => [ 'check_taxzone_and_ustid' ], + disabled => $no_rights, + ], + action => [ + t8('Save and Order'), + submit => [ '#form', { action => "CustomerVendor/save_and_order" } ], + checks => [ 'check_taxzone_and_ustid' ], + disabled => $no_rights, + ], + (action => [ + t8('Save and RFQ'), + submit => [ '#form', { action => "CustomerVendor/save_and_rfq" } ], + checks => [ 'check_taxzone_and_ustid' ], + disabled => $no_rights, + ]) x !!$self->is_vendor, + (action => [ + t8('Save and Quotation'), + submit => [ '#form', { action => "CustomerVendor/save_and_quotation" } ], + checks => [ 'check_taxzone_and_ustid' ], + disabled => $no_rights, + ]) x !$self->is_vendor, + ], # end of combobox "Workflow" + + action => [ + t8('Delete'), + submit => [ '#form', { action => "CustomerVendor/delete" } ], + confirm => t8('Do you really want to delete this object?'), + disabled => !$self->{cv}->id ? t8('This object has not been saved yet.') + : !$self->is_orphaned ? t8('This object has already been used.') + : $no_rights, + ], + + 'separator', + + action => [ + t8('History'), + call => [ 'kivi.CustomerVendor.showHistoryWindow', $self->{cv}->id ], + disabled => !$self->{cv}->id ? t8('This object has not been saved yet.') : undef, + ], + ); + } +} + +sub _prepare_cvar_configs_for_ajaj { + my ($self, $cvars) = @_; + + return { + map { + my $cvar = $_; + my $result = { type => $cvar->config->type }; + + if ($cvar->config->type eq 'number') { + $result->{value} = $::form->format_amount(\%::myconfig, $cvar->value, -2); + + } elsif ($result->{type} eq 'date') { + $result->{value} = $cvar->value ? $cvar->value->to_kivitendo : undef; + + } elsif ($result->{type} =~ m{customer|vendor|part}) { + my $object = $cvar->value; + my $method = $result->{type} eq 'part' ? 'description' : 'name'; + + $result->{id} = int($cvar->number_value) || undef; + $result->{value} = $object ? $object->$method // '' : ''; + + } else { + $result->{value} = $cvar->value; + } + + ( $cvar->config->name => $result ) + + } grep { $_->is_valid } @{ $cvars } + }; +} + +sub normalize_name { + my ($self) = @_; + + # check if feature is enabled (select normalize_vc_names from defaults) + return unless ($::instance_conf->get_normalize_vc_names); + + return unless $self->{cv}; + my $name = $self->{cv}->name; + $name =~ s/\s+$//; + $name =~ s/^\s+//; + $name =~ s/\s+/ /g; + $self->{cv}->name($name); +} + +sub home_address_for_google_maps { + my ($self) = @_; + + my $address = $::instance_conf->get_address // ''; + $address =~ s{^\s+|\s+$|\r+}{}g; + $address =~ s{\n+}{,}g; + $address =~ s{\s+}{ }g; + + return $address; +} + +sub init_customer_models { + my ($self) = @_; + + SL::Controller::Helper::GetModels->new( + controller => $self, + model => 'Customer', + sorted => { + _default => { + by => 'customernumber', + dir => 1, + }, + customernumber => t8('Customer Number'), + }, + ); +} + +sub init_vendor_models { + my ($self) = @_; + + SL::Controller::Helper::GetModels->new( + controller => $self, + model => 'Vendor', + sorted => { + _default => { + by => 'vendornumber', + dir => 1, + }, + vendornumber => t8('Vendor Number'), + }, + ); +} + +sub init_zugferd_settings { + return [ + [ -1, t8('Use settings from client configuration') ], + @SL::ZUGFeRD::customer_settings, + ], +} + +sub _new_customer_vendor_object { + my ($self) = @_; + + my $class = 'SL::DB::' . ($self->is_vendor ? 'Vendor' : 'Customer'); + my $object = $class->new( + contacts => [], + shipto => [], + custom_variables => [], + ); + + $object->additional_billing_addresses([]) if $self->is_customer; + + return $object; +} + +sub _new_contact_object { + my ($self) = @_; + + return SL::DB::Contact->new(custom_variables => []); } 1;