kivitendo/SL/Controller/CustomerVendor.pm @ 912e5eff
4cb3a908 | Thomas Heck | package SL::Controller::CustomerVendor;
|
||
use strict;
|
||||
use parent qw(SL::Controller::Base);
|
||||
d699d5d9 | Moritz Bunkus | use List::MoreUtils qw(any);
|
||
4cb3a908 | Thomas Heck | use SL::JSON;
|
||
use SL::DBUtils;
|
||||
use SL::Helper::Flash;
|
||||
3ea3a603 | Sven Schöling | use SL::Locale::String;
|
||
761f4a3f | Bernd Bleßmann | use SL::Util qw(trim);
|
||
f70c8fa4 | Bernd Bleßmann | use SL::VATIDNr;
|
||
ac7caac1 | Bernd Bleßmann | use SL::Webdav;
|
||
ba40069b | Moritz Bunkus | use SL::ZUGFeRD;
|
||
f16c5520 | Sven Schöling | use SL::Controller::Helper::GetModels;
|
||
9508e215 | Werner Hahn | use SL::Controller::Helper::ReportGenerator;
|
||
use SL::Controller::Helper::ParseFilter;
|
||||
4cb3a908 | Thomas Heck | |||
3a4d4d4f | Bernd Bleßmann | use SL::DB::AuthGroup;
|
||
4cb3a908 | Thomas Heck | use SL::DB::Customer;
|
||
use SL::DB::Vendor;
|
||||
use SL::DB::Business;
|
||||
cc6d7fec | Bernd Bleßmann | use SL::DB::ContactDepartment;
|
||
1dd6d84a | Bernd Bleßmann | use SL::DB::ContactTitle;
|
||
4cb3a908 | Thomas Heck | use SL::DB::Employee;
|
||
761f4a3f | Bernd Bleßmann | use SL::DB::Greeting;
|
||
4cb3a908 | Thomas Heck | use SL::DB::Language;
|
||
use SL::DB::TaxZone;
|
||||
use SL::DB::Note;
|
||||
use SL::DB::PaymentTerm;
|
||||
use SL::DB::Pricegroup;
|
||||
ffe54348 | Bernd Bleßmann | use SL::DB::Price;
|
||
4cb3a908 | Thomas Heck | use SL::DB::Contact;
|
||
use SL::DB::FollowUp;
|
||||
382890fe | Thomas Heck | use SL::DB::FollowUpLink;
|
||
689b97d0 | Thomas Heck | use SL::DB::History;
|
||
d63219af | Thomas Heck | use SL::DB::Currency;
|
||
9508e215 | Werner Hahn | use SL::DB::Invoice;
|
||
8e99e751 | Werner Hahn | use SL::DB::PurchaseInvoice;
|
||
use SL::DB::Order;
|
||||
9508e215 | Werner Hahn | |||
use Data::Dumper;
|
||||
4cb3a908 | Thomas Heck | |||
f16c5520 | Sven Schöling | use Rose::Object::MakeMethods::Generic (
|
||
3bb4190a | Moritz Bunkus | scalar => [ qw(user_has_edit_rights) ],
|
||
ba40069b | Moritz Bunkus | 'scalar --get_set_init' => [ qw(customer_models vendor_models zugferd_settings) ],
|
||
f16c5520 | Sven Schöling | );
|
||
4cb3a908 | Thomas Heck | # safety
|
||
__PACKAGE__->run_before(
|
||||
'_instantiate_args',
|
||||
only => [
|
||||
'save',
|
||||
'save_and_ap_transaction',
|
||||
'save_and_ar_transaction',
|
||||
'save_and_close',
|
||||
'save_and_invoice',
|
||||
'save_and_order',
|
||||
'save_and_quotation',
|
||||
'save_and_rfq',
|
||||
642c04d6 | Thomas Heck | 'delete',
|
||
4cb3a908 | Thomas Heck | 'delete_contact',
|
||
'delete_shipto',
|
||||
ce73964f | Moritz Bunkus | 'delete_additional_billing_address',
|
||
4cb3a908 | Thomas Heck | ]
|
||
);
|
||||
__PACKAGE__->run_before(
|
||||
'_load_customer_vendor',
|
||||
only => [
|
||||
'edit',
|
||||
f16c5520 | Sven Schöling | 'show',
|
||
4cb3a908 | Thomas Heck | 'update',
|
||
'ajaj_get_shipto',
|
||||
ce73964f | Moritz Bunkus | 'ajaj_get_additional_billing_address',
|
||
4cb3a908 | Thomas Heck | 'ajaj_get_contact',
|
||
ffe54348 | Bernd Bleßmann | 'ajax_list_prices',
|
||
4cb3a908 | Thomas Heck | ]
|
||
);
|
||||
826f6eb2 | Geoffrey Richardson | |||
# make sure this comes after _load_customer_vendor
|
||||
3bb4190a | Moritz Bunkus | __PACKAGE__->run_before('_check_auth');
|
||
826f6eb2 | Geoffrey Richardson | |||
4cb3a908 | Thomas Heck | __PACKAGE__->run_before(
|
||
'_create_customer_vendor',
|
||||
only => [
|
||||
e8b158e9 | Thomas Heck | 'add',
|
||
4cb3a908 | Thomas Heck | ]
|
||
);
|
||||
3ea3a603 | Sven Schöling | __PACKAGE__->run_before('normalize_name');
|
||
ce73964f | Moritz Bunkus | my @ADDITIONAL_BILLING_ADDRESS_COLUMNS = qw(name department_1 department_2 contact street zipcode city country gln email phone fax default_address);
|
||
3ea3a603 | Sven Schöling | |||
e8b158e9 | Thomas Heck | sub action_add {
|
||
4cb3a908 | Thomas Heck | my ($self) = @_;
|
||
$self->_pre_render();
|
||||
2350fb7f | Moritz Bunkus | |||
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);
|
||||
}
|
||||
abaf49cc | Sven Schöling | |||
4cb3a908 | Thomas Heck | $self->render(
|
||
'customer_vendor/form',
|
||||
title => ($self->is_vendor() ? $::locale->text('Add Vendor') : $::locale->text('Add Customer')),
|
||||
%{$self->{template_args}}
|
||||
);
|
||||
}
|
||||
sub action_edit {
|
||||
my ($self) = @_;
|
||||
$self->_pre_render();
|
||||
$self->render(
|
||||
'customer_vendor/form',
|
||||
title => ($self->is_vendor() ? $::locale->text('Edit Vendor') : $::locale->text('Edit Customer')),
|
||||
%{$self->{template_args}}
|
||||
);
|
||||
}
|
||||
f16c5520 | Sven Schöling | 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 });
|
||||
}
|
||||
}
|
||||
f70c8fa4 | Bernd Bleßmann | 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;
|
||||
}
|
||||
4cb3a908 | Thomas Heck | sub _save {
|
||
my ($self) = @_;
|
||||
454d4b8f | Bernd Bleßmann | 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}}
|
||||
);
|
||||
09479f02 | Moritz Bunkus | $::dispatcher->end_request;
|
||
454d4b8f | Bernd Bleßmann | }
|
||
761f4a3f | Bernd Bleßmann | $self->{cv}->greeting(trim $self->{cv}->greeting);
|
||
cc6d7fec | Bernd Bleßmann | my $save_greeting = $self->{cv}->greeting
|
||
1dd6d84a | Bernd Bleßmann | && $::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));
|
||||
cc6d7fec | Bernd Bleßmann | my $save_contact_title = $self->{contact}->cp_title
|
||
1dd6d84a | Bernd Bleßmann | && $::instance_conf->get_contact_titles_use_textfield
|
||
&& SL::DB::Manager::ContactTitle->get_all_count(where => [description => $self->{contact}->cp_title]) == 0;
|
||||
761f4a3f | Bernd Bleßmann | |||
cc6d7fec | Bernd Bleßmann | $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;
|
||||
e3ccd940 | Thomas Heck | my $db = $self->{cv}->db;
|
||
96670fe8 | Moritz Bunkus | $db->with_transaction(sub {
|
||
e3ccd940 | Thomas Heck | my $cvs_by_nr;
|
||
if ( $self->is_vendor() ) {
|
||||
if ( $self->{cv}->vendornumber ) {
|
||||
$cvs_by_nr = SL::DB::Manager::Vendor->get_all(query => [vendornumber => $self->{cv}->vendornumber]);
|
||||
}
|
||||
91f2c038 | Thomas Heck | } else {
|
||
e3ccd940 | Thomas Heck | if ( $self->{cv}->customernumber ) {
|
||
$cvs_by_nr = SL::DB::Manager::Customer->get_all(query => [customernumber => $self->{cv}->customernumber]);
|
||||
}
|
||||
4cb3a908 | Thomas Heck | }
|
||
e3ccd940 | Thomas Heck | foreach my $entry (@{$cvs_by_nr}) {
|
||
if( $entry->id != $self->{cv}->id ) {
|
||||
my $msg =
|
||||
$self->is_vendor() ? $::locale->text('This vendor number is already in use.') : $::locale->text('This customer number is already in use.');
|
||||
4cb3a908 | Thomas Heck | |||
e3ccd940 | Thomas Heck | $::form->error($msg);
|
||
}
|
||||
4cb3a908 | Thomas Heck | }
|
||
f70c8fa4 | Bernd Bleßmann | my $ustid_taxnumber_error = $self->_check_ustid_taxnumber_unique;
|
||
$::form->error($ustid_taxnumber_error) if $ustid_taxnumber_error;
|
||||
e3ccd940 | Thomas Heck | $self->{cv}->save(cascade => 1);
|
||
4cb3a908 | Thomas Heck | |||
761f4a3f | Bernd Bleßmann | SL::DB::Greeting->new(description => $self->{cv}->greeting)->save if $save_greeting;
|
||
e3ccd940 | Thomas Heck | $self->{contact}->cp_cv_id($self->{cv}->id);
|
||
if( $self->{contact}->cp_name ne '' || $self->{contact}->cp_givenname ne '' ) {
|
||||
cc6d7fec | Bernd Bleßmann | 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;
|
||||
1dd6d84a | Bernd Bleßmann | |||
dbb5abff | Moritz Bunkus | $self->{contact}->save(cascade => 1);
|
||
e3ccd940 | Thomas Heck | }
|
||
4cb3a908 | Thomas Heck | |||
e3ccd940 | Thomas Heck | if( $self->{note}->subject ne '' && $self->{note}->body ne '' ) {
|
||
96aa70a1 | Thomas Heck | |||
if ( !$self->{note_followup}->follow_up_date ) {
|
||||
$::form->error($::locale->text('Date missing!'));
|
||||
}
|
||||
51e60701 | Bernd Bleßmann | if (!$self->{note_followup}->{created_for_employees}) {
|
||
$::form->error($::locale->text('You must chose a user.'));
|
||||
}
|
||||
96aa70a1 | Thomas Heck | |||
e3ccd940 | Thomas Heck | $self->{note}->trans_id($self->{cv}->id);
|
||
$self->{note}->save();
|
||||
382890fe | Thomas Heck | |||
763add59 | Bernd Bleßmann | if (delete $self->{note_followup}->{not_done}) {
|
||
$self->{note_followup}->done->delete if $self->{note_followup}->done;
|
||||
}
|
||||
e3ccd940 | Thomas Heck | $self->{note_followup}->save();
|
||
4cb3a908 | Thomas Heck | |||
382890fe | Thomas Heck | $self->{note_followup_link}->follow_up_id($self->{note_followup}->id);
|
||
$self->{note_followup_link}->trans_id($self->{cv}->id);
|
||||
$self->{note_followup_link}->save();
|
||||
96aa70a1 | Thomas Heck | SL::Helper::Flash::flash_later('info', $::locale->text('Follow-Up saved.'));
|
||
e3ccd940 | Thomas Heck | }
|
||
4cb3a908 | Thomas Heck | |||
e3ccd940 | Thomas Heck | $self->{shipto}->trans_id($self->{cv}->id);
|
||
d699d5d9 | Moritz Bunkus | if(any { $self->{shipto}->$_ ne '' } qw(shiptoname shiptodepartment_1 shiptodepartment_2 shiptostreet shiptozipcode shiptocity shiptocountry shiptogln shiptocontact shiptophone shiptofax shiptoemail)) {
|
||
6ef4190e | Moritz Bunkus | $self->{shipto}->save(cascade => 1);
|
||
e3ccd940 | Thomas Heck | }
|
||
37367349 | Moritz Bunkus | if ($self->is_customer && any { $self->{additional_billing_address}->$_ ne '' } grep { $_ ne 'default_address' } @ADDITIONAL_BILLING_ADDRESS_COLUMNS) {
|
||
ce73964f | Moritz Bunkus | $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,
|
||||
]);
|
||||
}
|
||||
}
|
||||
e3ccd940 | Thomas Heck | my $snumbers = $self->is_vendor() ? 'vendornumber_'. $self->{cv}->vendornumber : 'customernumber_'. $self->{cv}->customernumber;
|
||
SL::DB::History->new(
|
||||
trans_id => $self->{cv}->id,
|
||||
snumbers => $snumbers,
|
||||
employee_id => SL::DB::Manager::Employee->current->id,
|
||||
addition => 'SAVED',
|
||||
)->save();
|
||||
30723c32 | Thomas Heck | |||
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');
|
||||
}
|
||||
}
|
||||
96670fe8 | Moritz Bunkus | |||
1;
|
||||
e3ccd940 | Thomas Heck | }) || die($db->error);
|
||
4cb3a908 | Thomas Heck | |||
}
|
||||
sub action_save {
|
||||
my ($self) = @_;
|
||||
454d4b8f | Bernd Bleßmann | $self->_save();
|
||
cc9fbc1c | Thomas Heck | |||
454d4b8f | Bernd Bleßmann | my @redirect_params = (
|
||
action => 'edit',
|
||||
id => $self->{cv}->id,
|
||||
db => ($self->is_vendor() ? 'vendor' : 'customer'),
|
||||
);
|
||||
cc9fbc1c | Thomas Heck | |||
454d4b8f | Bernd Bleßmann | if ( $self->{contact}->cp_id ) {
|
||
push(@redirect_params, contact_id => $self->{contact}->cp_id);
|
||||
}
|
||||
cc9fbc1c | Thomas Heck | |||
454d4b8f | Bernd Bleßmann | if ( $self->{shipto}->shipto_id ) {
|
||
push(@redirect_params, shipto_id => $self->{shipto}->shipto_id);
|
||||
3ea3a603 | Sven Schöling | }
|
||
454d4b8f | Bernd Bleßmann | |||
ce73964f | Moritz Bunkus | if ( $self->is_customer && $self->{additional_billing_address}->id ) {
|
||
push(@redirect_params, additional_billing_address_id => $self->{additional_billing_address}->id);
|
||||
}
|
||||
454d4b8f | Bernd Bleßmann | $self->redirect_to(@redirect_params);
|
||
4cb3a908 | Thomas Heck | }
|
||
sub action_save_and_close {
|
||||
my ($self) = @_;
|
||||
$self->_save();
|
||||
my $msg = $self->is_vendor() ? $::locale->text('Vendor saved') : $::locale->text('Customer saved');
|
||||
$::form->redirect($msg);
|
||||
}
|
||||
sub _transaction {
|
||||
my ($self, $script) = @_;
|
||||
e0f5deea | Martin Helmling | $::auth->assert('gl_transactions | ap_transactions | ar_transactions'.
|
||
'| invoice_edit | vendor_invoice_edit | ' .
|
||||
4cb3a908 | Thomas Heck | ' request_quotation_edit | sales_quotation_edit | sales_order_edit | purchase_order_edit');
|
||
$self->_save();
|
||||
my $name = $::form->escape($self->{cv}->name, 1);
|
||||
my $db = $self->is_vendor() ? 'vendor' : 'customer';
|
||||
34d35b6a | Bernd Bleßmann | my $action = 'add';
|
||
984f6322 | Bernd Bleßmann | if ($::instance_conf->get_feature_experimental_order && 'oe.pl' eq $script) {
|
||
34d35b6a | Bernd Bleßmann | $script = 'controller.pl';
|
||
$action = 'Order/' . $action;
|
||||
}
|
||||
4cb3a908 | Thomas Heck | |||
989f4a11 | Thomas Heck | my $url = $self->url_for(
|
||
controller => $script,
|
||||
34d35b6a | Bernd Bleßmann | action => $action,
|
||
989f4a11 | Thomas Heck | vc => $db,
|
||
$db .'_id' => $self->{cv}->id,
|
||||
$db => $name,
|
||||
type => $::form->{type},
|
||||
897668e9 | Moritz Bunkus | callback => $::form->{callback},
|
||
989f4a11 | Thomas Heck | );
|
||
4cb3a908 | Thomas Heck | |||
print $::form->redirect_header($url);
|
||||
}
|
||||
sub action_save_and_ar_transaction {
|
||||
my ($self) = @_;
|
||||
e0f5deea | Martin Helmling | $main::auth->assert('ar_transactions');
|
||
4cb3a908 | Thomas Heck | |||
$self->_transaction('ar.pl');
|
||||
}
|
||||
sub action_save_and_ap_transaction {
|
||||
my ($self) = @_;
|
||||
e0f5deea | Martin Helmling | $main::auth->assert('ap_transactions');
|
||
4cb3a908 | Thomas Heck | |||
$self->_transaction('ap.pl');
|
||||
}
|
||||
sub action_save_and_invoice {
|
||||
my ($self) = @_;
|
||||
if ( $self->is_vendor() ) {
|
||||
$::auth->assert('vendor_invoice_edit');
|
||||
} else {
|
||||
$::auth->assert('invoice_edit');
|
||||
}
|
||||
$::form->{type} = 'invoice';
|
||||
$self->_transaction($self->is_vendor() ? 'ir.pl' : 'is.pl');
|
||||
}
|
||||
sub action_save_and_order {
|
||||
my ($self) = @_;
|
||||
if ( $self->is_vendor() ) {
|
||||
$::auth->assert('purchase_order_edit');
|
||||
} else {
|
||||
$::auth->assert('sales_order_edit');
|
||||
}
|
||||
$::form->{type} = $self->is_vendor() ? 'purchase_order' : 'sales_order';
|
||||
$self->_transaction('oe.pl');
|
||||
}
|
||||
sub action_save_and_rfq {
|
||||
my ($self) = @_;
|
||||
$::auth->assert('request_quotation_edit');
|
||||
$::form->{type} = 'request_quotation';
|
||||
$self->_transaction('oe.pl');
|
||||
}
|
||||
sub action_save_and_quotation {
|
||||
my ($self) = @_;
|
||||
$::auth->assert('sales_quotation_edit');
|
||||
$::form->{type} = 'sales_quotation';
|
||||
$self->_transaction('oe.pl');
|
||||
}
|
||||
sub action_delete {
|
||||
my ($self) = @_;
|
||||
e3ccd940 | Thomas Heck | my $db = $self->{cv}->db;
|
||
4cb3a908 | Thomas Heck | if( !$self->is_orphaned() ) {
|
||
$self->action_edit();
|
||||
91f2c038 | Thomas Heck | } else {
|
||
4cb3a908 | Thomas Heck | |||
96670fe8 | Moritz Bunkus | $db->with_transaction(sub {
|
||
cf3e99d4 | Thomas Heck | $self->{cv}->delete(cascade => 1);
|
||
e3ccd940 | Thomas Heck | |||
my $snumbers = $self->is_vendor() ? 'vendornumber_'. $self->{cv}->vendornumber : 'customernumber_'. $self->{cv}->customernumber;
|
||||
SL::DB::History->new(
|
||||
trans_id => $self->{cv}->id,
|
||||
snumbers => $snumbers,
|
||||
employee_id => SL::DB::Manager::Employee->current->id,
|
||||
addition => 'DELETED',
|
||||
)->save();
|
||||
}) || die($db->error);
|
||||
4cb3a908 | Thomas Heck | |||
my $msg = $self->is_vendor() ? $::locale->text('Vendor deleted!') : $::locale->text('Customer deleted!');
|
||||
$::form->redirect($msg);
|
||||
}
|
||||
}
|
||||
sub action_delete_contact {
|
||||
my ($self) = @_;
|
||||
e3ccd940 | Thomas Heck | my $db = $self->{contact}->db;
|
||
4cb3a908 | Thomas Heck | if ( !$self->{contact}->cp_id ) {
|
||
SL::Helper::Flash::flash('error', $::locale->text('No contact selected to delete'));
|
||||
} else {
|
||||
e3ccd940 | Thomas Heck | |||
96670fe8 | Moritz Bunkus | $db->with_transaction(sub {
|
||
e3ccd940 | Thomas Heck | if ( $self->{contact}->used ) {
|
||
$self->{contact}->detach();
|
||||
$self->{contact}->save();
|
||||
SL::Helper::Flash::flash('info', $::locale->text('Contact is in use and was flagged invalid.'));
|
||||
} else {
|
||||
cf3e99d4 | Thomas Heck | $self->{contact}->delete(cascade => 1);
|
||
e3ccd940 | Thomas Heck | SL::Helper::Flash::flash('info', $::locale->text('Contact deleted.'));
|
||
}
|
||||
96670fe8 | Moritz Bunkus | |||
1;
|
||||
e3ccd940 | Thomas Heck | }) || die($db->error);
|
||
4cb3a908 | Thomas Heck | |||
83b3c64e | Moritz Bunkus | $self->{contact} = $self->_new_contact_object;
|
||
4cb3a908 | Thomas Heck | }
|
||
$self->action_edit();
|
||||
}
|
||||
sub action_delete_shipto {
|
||||
my ($self) = @_;
|
||||
e3ccd940 | Thomas Heck | my $db = $self->{shipto}->db;
|
||
4cb3a908 | Thomas Heck | if ( !$self->{shipto}->shipto_id ) {
|
||
SL::Helper::Flash::flash('error', $::locale->text('No shipto selected to delete'));
|
||||
} else {
|
||||
e3ccd940 | Thomas Heck | |||
96670fe8 | Moritz Bunkus | $db->with_transaction(sub {
|
||
e3ccd940 | Thomas Heck | if ( $self->{shipto}->used ) {
|
||
$self->{shipto}->detach();
|
||||
cf3e99d4 | Thomas Heck | $self->{shipto}->save(cascade => 1);
|
||
e3ccd940 | Thomas Heck | SL::Helper::Flash::flash('info', $::locale->text('Shipto is in use and was flagged invalid.'));
|
||
} else {
|
||||
cf3e99d4 | Thomas Heck | $self->{shipto}->delete(cascade => 1);
|
||
e3ccd940 | Thomas Heck | SL::Helper::Flash::flash('info', $::locale->text('Shipto deleted.'));
|
||
}
|
||||
96670fe8 | Moritz Bunkus | |||
1;
|
||||
e3ccd940 | Thomas Heck | }) || die($db->error);
|
||
4cb3a908 | Thomas Heck | |||
$self->{shipto} = SL::DB::Shipto->new();
|
||||
}
|
||||
$self->action_edit();
|
||||
}
|
||||
ce73964f | Moritz Bunkus | 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;
|
||||
}
|
||||
e03993be | Thomas Heck | |||
sub action_search {
|
||||
my ($self) = @_;
|
||||
a42d2de5 | Thomas Heck | my @url_params = (
|
||
controller => 'ct.pl',
|
||||
action => 'search',
|
||||
db => $self->is_vendor() ? 'vendor' : 'customer',
|
||||
);
|
||||
e03993be | Thomas Heck | |||
if ( $::form->{callback} ) {
|
||||
a42d2de5 | Thomas Heck | push(@url_params, callback => $::form->{callback});
|
||
e03993be | Thomas Heck | }
|
||
a42d2de5 | Thomas Heck | $self->redirect_to(@url_params);
|
||
e03993be | Thomas Heck | }
|
||
sub action_search_contact {
|
||||
my ($self) = @_;
|
||||
my $url = 'ct.pl?action=search_contact&db=customer';
|
||||
if ( $::form->{callback} ) {
|
||||
3c90061b | Sven Schöling | $url .= '&callback='. $::form->escape($::form->{callback});
|
||
e03993be | Thomas Heck | }
|
||
print $::form->redirect_header($url);
|
||||
}
|
||||
4cb3a908 | Thomas Heck | sub action_get_delivery {
|
||
my ($self) = @_;
|
||||
b638b6a1 | Bernd Bleßmann | $::auth->assert('sales_all_edit') if $self->is_customer();
|
||
$::auth->assert('purchase_all_edit') if $self->is_vendor();
|
||||
21243e6b | Thomas Heck | |||
4cb3a908 | Thomas Heck | my $dbh = $::form->get_standard_dbh();
|
||
my ($arap, $db, $qty_sign);
|
||||
if ( $self->is_vendor() ) {
|
||||
$arap = 'ap';
|
||||
$db = 'vendor';
|
||||
$qty_sign = ' * -1 AS qty';
|
||||
91f2c038 | Thomas Heck | } else {
|
||
4cb3a908 | Thomas Heck | $arap = 'ar';
|
||
$db = 'customer';
|
||||
$qty_sign = '';
|
||||
}
|
||||
4e35d4c0 | Thomas Heck | my $where = ' WHERE 1=1';
|
||
4cb3a908 | Thomas Heck | my @values;
|
||
if ( !$self->is_vendor() && $::form->{shipto_id} && $::form->{shipto_id} ne 'all' ) {
|
||||
4e35d4c0 | Thomas Heck | $where .= " AND ${arap}.shipto_id = ?";
|
||
4cb3a908 | Thomas Heck | push(@values, $::form->{shipto_id});
|
||
4e35d4c0 | Thomas Heck | } else {
|
||
$where .= " AND ${arap}.${db}_id = ?";
|
||||
push(@values, $::form->{id});
|
||||
4cb3a908 | Thomas Heck | }
|
||
if ( $::form->{delivery_from} ) {
|
||||
4e35d4c0 | Thomas Heck | $where .= " AND ${arap}.transdate >= ?";
|
||
4cb3a908 | Thomas Heck | push(@values, conv_date($::form->{delivery_from}));
|
||
}
|
||||
if ( $::form->{delivery_to} ) {
|
||||
4e35d4c0 | Thomas Heck | $where .= " AND ${arap}.transdate <= ?";
|
||
4cb3a908 | Thomas Heck | push(@values, conv_date($::form->{delivery_to}));
|
||
}
|
||||
my $query =
|
||||
"SELECT
|
||||
s.shiptoname,
|
||||
i.qty ${qty_sign},
|
||||
${arap}.id,
|
||||
${arap}.transdate,
|
||||
${arap}.invnumber,
|
||||
${arap}.ordnumber,
|
||||
i.description,
|
||||
i.unit,
|
||||
i.sellprice,
|
||||
oe.id AS oe_id,
|
||||
invoice
|
||||
FROM ${arap}
|
||||
LEFT JOIN shipto s
|
||||
ON ". ($arap eq 'ar' ? '(ar.shipto_id = s.shipto_id) ' : '(ap.id = s.trans_id) ') ."
|
||||
LEFT JOIN invoice i
|
||||
ON ${arap}.id = i.trans_id
|
||||
LEFT JOIN parts p
|
||||
ON p.id = i.parts_id
|
||||
LEFT JOIN oe
|
||||
31a84730 | Bernd Bleßmann | ON (oe.ordnumber = ${arap}.ordnumber AND NOT ${arap}.ordnumber = ''
|
||
3e0483ee | Geoffrey Richardson | AND ". ($arap eq 'ar' ? 'oe.customer_id IS NOT NULL' : 'oe.vendor_id IS NOT NULL') ." )
|
||
4cb3a908 | Thomas Heck | |||
${where}
|
||||
ORDER BY ${arap}.transdate DESC LIMIT 15";
|
||||
$self->{delivery} = selectall_hashref_query($::form, $dbh, $query, @values);
|
||||
$self->render('customer_vendor/get_delivery', { layout => 0 });
|
||||
}
|
||||
sub action_ajaj_get_shipto {
|
||||
my ($self) = @_;
|
||||
6ef4190e | Moritz Bunkus | my $data = {};
|
||
$data->{shipto} = {
|
||||
4cb3a908 | Thomas Heck | map(
|
||
{
|
||||
my $name = 'shipto'. $_;
|
||||
$name => $self->{shipto}->$name;
|
||||
}
|
||||
f7bab957 | Bernd Bleßmann | qw(_id name department_1 department_2 street zipcode city gln country contact phone fax email)
|
||
4cb3a908 | Thomas Heck | )
|
||
};
|
||||
6ef4190e | Moritz Bunkus | $data->{shipto_cvars} = $self->_prepare_cvar_configs_for_ajaj($self->{shipto}->cvars_by_config);
|
||
4cb3a908 | Thomas Heck | $self->render(\SL::JSON::to_json($data), { type => 'json', process => 0 });
|
||
}
|
||||
ce73964f | Moritz Bunkus | 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 });
|
||||
}
|
||||
4cb3a908 | Thomas Heck | sub action_ajaj_get_contact {
|
||
my ($self) = @_;
|
||||
my $data;
|
||||
$data->{contact} = {
|
||||
map(
|
||||
{
|
||||
my $name = 'cp_'. $_;
|
||||
if ( $_ eq 'birthday' && $self->{contact}->$name ) {
|
||||
$name => $self->{contact}->$name->to_lxoffice;
|
||||
91f2c038 | Thomas Heck | } else {
|
||
4cb3a908 | Thomas Heck | $name => $self->{contact}->$name;
|
||
}
|
||||
}
|
||||
qw(
|
||||
id gender abteilung title position givenname name email phone1 phone2 fax mobile1 mobile2
|
||||
564b5410 | Jan Büren | satphone satfax project street zipcode city privatphone privatemail birthday main
|
||
4cb3a908 | Thomas Heck | )
|
||
)
|
||||
};
|
||||
d0a22ba8 | Moritz Bunkus | $data->{contact_cvars} = $self->_prepare_cvar_configs_for_ajaj($self->{contact}->cvars_by_config);
|
||
4cb3a908 | Thomas Heck | |||
564b5410 | Jan Büren | # 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});
|
||||
4cb3a908 | Thomas Heck | $self->render(\SL::JSON::to_json($data), { type => 'json', process => 0 });
|
||
}
|
||||
f16c5520 | Sven Schöling | sub action_ajaj_autocomplete {
|
||
4cb3a908 | Thomas Heck | my ($self, %params) = @_;
|
||
f16c5520 | Sven Schöling | 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}";
|
||||
}
|
||||
4cb3a908 | Thomas Heck | |||
f16c5520 | Sven Schöling | # if someone types something, and hits enter, assume he entered the full name.
|
||
05f8844c | Geoffrey Richardson | # 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
|
||||
f16c5520 | Sven Schöling | # 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;
|
||||
}
|
||||
}
|
||||
afb8e146 | Moritz Bunkus | |||
f16c5520 | Sven Schöling | $matches //= $model->get;
|
||
my @hashes = map {
|
||||
+{
|
||||
7bc44f0f | Geoffrey Richardson | value => $_->displayable_name,
|
||
f16c5520 | Sven Schöling | 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 };
|
||||
4cb3a908 | Thomas Heck | |||
f16c5520 | Sven Schöling | $self->render(\ SL::JSON::to_json(\@hashes), { layout => 0, type => 'json', process => 0 });
|
||
}
|
||||
4cb3a908 | Thomas Heck | |||
f16c5520 | Sven Schöling | sub action_test_page {
|
||
$_[0]->render('customer_vendor/test_page');
|
||||
4cb3a908 | Thomas Heck | }
|
||
ffe54348 | Bernd Bleßmann | sub action_ajax_list_prices {
|
||
my ($self, %params) = @_;
|
||||
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 %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' },
|
||||
);
|
||||
$::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})
|
||||
);
|
||||
}
|
||||
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->report_generator_list_objects(report => $report, objects => $prices, layout => 0, header => 0);
|
||||
}
|
||||
4cb3a908 | Thomas Heck | sub is_vendor {
|
||
return $::form->{db} eq 'vendor';
|
||||
}
|
||||
sub is_customer {
|
||||
return $::form->{db} eq 'customer';
|
||||
}
|
||||
sub is_orphaned {
|
||||
my ($self) = @_;
|
||||
if ( defined($self->{_is_orphaned}) ) {
|
||||
return $self->{_is_orphaned};
|
||||
}
|
||||
my $arap = $self->is_vendor ? 'ap' : 'ar';
|
||||
8862bb1e | Bernd Bleßmann | my $num_args = 3;
|
||
4cb3a908 | Thomas Heck | |||
my $cv = $self->is_vendor ? 'vendor' : 'customer';
|
||||
my $query =
|
||||
'SELECT a.id
|
||||
FROM '. $arap .' AS a
|
||||
JOIN '. $cv .' ct ON (a.'. $cv .'_id = ct.id)
|
||||
WHERE ct.id = ?
|
||||
UNION
|
||||
SELECT a.id
|
||||
FROM oe a
|
||||
JOIN '. $cv .' ct ON (a.'. $cv .'_id = ct.id)
|
||||
8862bb1e | Bernd Bleßmann | WHERE ct.id = ?
|
||
UNION
|
||||
SELECT a.id
|
||||
FROM delivery_orders a
|
||||
JOIN '. $cv .' ct ON (a.'. $cv .'_id = ct.id)
|
||||
4cb3a908 | Thomas Heck | WHERE ct.id = ?';
|
||
if ( $self->is_vendor ) {
|
||||
$query .=
|
||||
' UNION
|
||||
SELECT 1 FROM makemodel mm WHERE mm.make = ?';
|
||||
$num_args++;
|
||||
}
|
||||
my ($dummy) = selectrow_query($::form, $::form->get_standard_dbh(), $query, (conv_i($self->{cv}->id)) x $num_args);
|
||||
return $self->{_is_orphaned} = !$dummy;
|
||||
}
|
||||
d0a22ba8 | Moritz Bunkus | 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);
|
||||
}
|
||||
}
|
||||
4cb3a908 | Thomas Heck | sub _instantiate_args {
|
||
my ($self) = @_;
|
||||
my $curr_employee = SL::DB::Manager::Employee->current;
|
||||
if ( $::form->{cv}->{id} ) {
|
||||
if ( $self->is_vendor() ) {
|
||||
$self->{cv} = SL::DB::Vendor->new(id => $::form->{cv}->{id})->load();
|
||||
91f2c038 | Thomas Heck | } else {
|
||
4cb3a908 | Thomas Heck | $self->{cv} = SL::DB::Customer->new(id => $::form->{cv}->{id})->load();
|
||
}
|
||||
91f2c038 | Thomas Heck | } else {
|
||
83b3c64e | Moritz Bunkus | $self->{cv} = $self->_new_customer_vendor_object;
|
||
4cb3a908 | Thomas Heck | }
|
||
$self->{cv}->assign_attributes(%{$::form->{cv}});
|
||||
ddbc0af5 | Thomas Heck | if ( $self->is_customer() && $::form->{cv}->{taxincluded_checked} eq '' ) {
|
||
$self->{cv}->taxincluded_checked(undef);
|
||||
}
|
||||
064d15bb | Moritz Bunkus | $self->{cv}->hourly_rate($::instance_conf->get_customer_hourly_rate) if $self->is_customer && !$self->{cv}->hourly_rate;
|
||
ddbc0af5 | Thomas Heck | |||
4cb3a908 | Thomas Heck | if ( $::form->{note}->{id} ) {
|
||
$self->{note} = SL::DB::Note->new(id => $::form->{note}->{id})->load();
|
||||
30723c32 | Thomas Heck | $self->{note_followup} = $self->{note}->follow_up;
|
||
$self->{note_followup_link} = $self->{note_followup}->follow_up_link;
|
||||
3eab069a | Bernd Bleßmann | |||
91f2c038 | Thomas Heck | } else {
|
||
4cb3a908 | Thomas Heck | $self->{note} = SL::DB::Note->new();
|
||
ac86ce08 | Thomas Heck | $self->{note_followup} = SL::DB::FollowUp->new();
|
||
$self->{note_followup_link} = SL::DB::FollowUpLink->new();
|
||||
4cb3a908 | Thomas Heck | }
|
||
ac86ce08 | Thomas Heck | |||
4cb3a908 | Thomas Heck | $self->{note}->assign_attributes(%{$::form->{note}});
|
||
$self->{note}->created_by($curr_employee->id);
|
||||
$self->{note}->trans_module('ct');
|
||||
$self->{note_followup}->assign_attributes(%{$::form->{note_followup}});
|
||||
$self->{note_followup}->note($self->{note});
|
||||
$self->{note_followup}->created_by($curr_employee->id);
|
||||
3eab069a | Bernd Bleßmann | if (delete $::form->{note_followup_done}) {
|
||
$self->{note_followup}->done(SL::DB::FollowUpDone->new) if !$self->{note_followup}->done;
|
||||
$self->{note_followup}->done->employee_id(SL::DB::Manager::Employee->current->id);
|
||||
763add59 | Bernd Bleßmann | } else {
|
||
$self->{note_followup}->{not_done} = 1;
|
||||
3eab069a | Bernd Bleßmann | }
|
||
ac86ce08 | Thomas Heck | $self->{note_followup_link}->trans_type($self->is_vendor() ? 'vendor' : 'customer');
|
||
$self->{note_followup_link}->trans_info($self->{cv}->name);
|
||||
382890fe | Thomas Heck | |||
4cb3a908 | Thomas Heck | if ( $::form->{shipto}->{shipto_id} ) {
|
||
$self->{shipto} = SL::DB::Shipto->new(shipto_id => $::form->{shipto}->{shipto_id})->load();
|
||||
91f2c038 | Thomas Heck | } else {
|
||
4cb3a908 | Thomas Heck | $self->{shipto} = SL::DB::Shipto->new();
|
||
}
|
||||
$self->{shipto}->assign_attributes(%{$::form->{shipto}});
|
||||
$self->{shipto}->module('CT');
|
||||
ce73964f | Moritz Bunkus | 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} });
|
||||
}
|
||||
4cb3a908 | Thomas Heck | if ( $::form->{contact}->{cp_id} ) {
|
||
$self->{contact} = SL::DB::Contact->new(cp_id => $::form->{contact}->{cp_id})->load();
|
||||
91f2c038 | Thomas Heck | } else {
|
||
83b3c64e | Moritz Bunkus | $self->{contact} = $self->_new_contact_object;
|
||
4cb3a908 | Thomas Heck | }
|
||
$self->{contact}->assign_attributes(%{$::form->{contact}});
|
||||
d0a22ba8 | Moritz Bunkus | $self->_copy_form_to_cvars(target => $self->{cv}, source => $::form->{cv_cvars});
|
||
$self->_copy_form_to_cvars(target => $self->{contact}, source => $::form->{contact_cvars});
|
||||
6ef4190e | Moritz Bunkus | $self->_copy_form_to_cvars(target => $self->{shipto}, source => $::form->{shipto_cvars});
|
||
4cb3a908 | Thomas Heck | }
|
||
sub _load_customer_vendor {
|
||||
my ($self) = @_;
|
||||
if ( $self->is_vendor() ) {
|
||||
$self->{cv} = SL::DB::Vendor->new(id => $::form->{id})->load();
|
||||
91f2c038 | Thomas Heck | } else {
|
||
4cb3a908 | Thomas Heck | $self->{cv} = SL::DB::Customer->new(id => $::form->{id})->load();
|
||
}
|
||||
ac86ce08 | Thomas Heck | if ( $::form->{note_id} ) {
|
||
$self->{note} = SL::DB::Note->new(id => $::form->{note_id})->load();
|
||||
30723c32 | Thomas Heck | $self->{note_followup} = $self->{note}->follow_up;
|
||
$self->{note_followup_link} = $self->{note_followup}->follow_up_link;
|
||||
ac86ce08 | Thomas Heck | } else {
|
||
$self->{note} = SL::DB::Note->new();
|
||||
$self->{note_followup} = SL::DB::FollowUp->new();
|
||||
$self->{note_followup_link} = SL::DB::FollowUpLink->new();
|
||||
}
|
||||
4cb3a908 | Thomas Heck | |||
if ( $::form->{shipto_id} ) {
|
||||
$self->{shipto} = SL::DB::Shipto->new(shipto_id => $::form->{shipto_id})->load();
|
||||
if ( $self->{shipto}->trans_id != $self->{cv}->id ) {
|
||||
die($::locale->text('Error'));
|
||||
}
|
||||
91f2c038 | Thomas Heck | } else {
|
||
4cb3a908 | Thomas Heck | $self->{shipto} = SL::DB::Shipto->new();
|
||
}
|
||||
ce73964f | Moritz Bunkus | 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;
|
||||
}
|
||||
}
|
||||
4cb3a908 | Thomas Heck | if ( $::form->{contact_id} ) {
|
||
$self->{contact} = SL::DB::Contact->new(cp_id => $::form->{contact_id})->load();
|
||||
if ( $self->{contact}->cp_cv_id != $self->{cv}->id ) {
|
||||
die($::locale->text('Error'));
|
||||
}
|
||||
91f2c038 | Thomas Heck | } else {
|
||
83b3c64e | Moritz Bunkus | $self->{contact} = $self->_new_contact_object;
|
||
4cb3a908 | Thomas Heck | }
|
||
}
|
||||
3bb4190a | Moritz Bunkus | sub _may_access_action {
|
||
my ($self, $action) = @_;
|
||||
6162711f | Geoffrey Richardson | |||
3bb4190a | Moritz Bunkus | 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;
|
||||
}
|
||||
}
|
||||
6162711f | Geoffrey Richardson | |||
4cb3a908 | Thomas Heck | sub _create_customer_vendor {
|
||
my ($self) = @_;
|
||||
83b3c64e | Moritz Bunkus | $self->{cv} = $self->_new_customer_vendor_object;
|
||
76005a6d | Thomas Heck | $self->{cv}->currency_id($::instance_conf->get_currency_id());
|
||
4cb3a908 | Thomas Heck | |||
$self->{note} = SL::DB::Note->new();
|
||||
$self->{note_followup} = SL::DB::FollowUp->new();
|
||||
$self->{shipto} = SL::DB::Shipto->new();
|
||||
ce73964f | Moritz Bunkus | $self->{additional_billing_address} = SL::DB::AdditionalBillingAddress->new if $self->is_customer;
|
||
4cb3a908 | Thomas Heck | |||
83b3c64e | Moritz Bunkus | $self->{contact} = $self->_new_contact_object;
|
||
4cb3a908 | Thomas Heck | }
|
||
sub _pre_render {
|
||||
my ($self) = @_;
|
||||
my $dbh = $::form->get_standard_dbh();
|
||||
my $query;
|
||||
$self->{all_business} = SL::DB::Manager::Business->get_all();
|
||||
3a4d4d4f | Bernd Bleßmann | $self->{all_employees} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
|
||
$self->{all_auth_groups} = SL::DB::Manager::AuthGroup->get_all_sorted;
|
||||
4cb3a908 | Thomas Heck | |||
761f4a3f | Bernd Bleßmann | $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));
|
||||
}
|
||||
1dd6d84a | Bernd Bleßmann | $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));
|
||||
}
|
||||
}
|
||||
4cb3a908 | Thomas Heck | |||
cc6d7fec | Bernd Bleßmann | $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));
|
||||
}
|
||||
}
|
||||
d63219af | Thomas Heck | $self->{all_currencies} = SL::DB::Manager::Currency->get_all();
|
||
4cb3a908 | Thomas Heck | |||
$self->{all_languages} = SL::DB::Manager::Language->get_all();
|
||||
3c67b164 | Geoffrey Richardson | $self->{all_taxzones} = SL::DB::Manager::TaxZone->get_all_sorted();
|
||
4cb3a908 | Thomas Heck | |||
3d4d1eee | Thomas Heck | if ( $::instance_conf->get_vertreter() ) {
|
||
$query =
|
||||
'SELECT id
|
||||
FROM business
|
||||
WHERE salesman';
|
||||
my $business_ids = [
|
||||
map(
|
||||
95c1acfe | Thomas Heck | { $_->{id}; }
|
||
3d4d1eee | Thomas Heck | selectall_hashref_query($::form, $dbh, $query)
|
||
)
|
||||
];
|
||||
if ( $business_ids->[0] ) {
|
||||
$self->{all_salesman_customers} = SL::DB::Manager::Customer->get_all(query => [business_id => $business_ids]);
|
||||
} else {
|
||||
$self->{all_salesman_customers} = [];
|
||||
}
|
||||
} else {
|
||||
$self->{all_salesmen} = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $self->{cv}->salesman_id, deleted => 0 ] ]);
|
||||
}
|
||||
4cb3a908 | Thomas Heck | |||
77807bf5 | Geoffrey Richardson | $self->{all_payment_terms} = SL::DB::Manager::PaymentTerm->get_all_sorted(where => [ or => [ id => $self->{cv}->payment_id,
|
||
obsolete => 0 ] ]);
|
||||
4cb3a908 | Thomas Heck | |||
03d3d025 | Bernd Bleßmann | $self->{all_delivery_terms} = SL::DB::Manager::DeliveryTerm->get_all();
|
||
4fbfbceb | Geoffrey Richardson | if ($self->{cv}->is_customer) {
|
||
$self->{all_pricegroups} = SL::DB::Manager::Pricegroup->get_all_sorted(query => [ or => [ id => $self->{cv}->pricegroup_id, obsolete => 0 ] ]);
|
||||
}
|
||||
4cb3a908 | Thomas Heck | |||
$self->{contacts} = $self->{cv}->contacts;
|
||||
$self->{contacts} ||= [];
|
||||
$self->{shiptos} = $self->{cv}->shipto;
|
||||
$self->{shiptos} ||= [];
|
||||
ce73964f | Moritz Bunkus | if ($self->is_customer) {
|
||
$self->{additional_billing_addresses} = $self->{cv}->additional_billing_addresses;
|
||||
$self->{additional_billing_addresses} ||= [];
|
||||
}
|
||||
30723c32 | Thomas Heck | $self->{notes} = SL::DB::Manager::Note->get_all(
|
||
query => [
|
||||
trans_id => $self->{cv}->id,
|
||||
trans_module => 'ct',
|
||||
],
|
||||
with_objects => ['follow_up'],
|
||||
);
|
||||
8e99e751 | Werner Hahn | |||
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',
|
||||
],
|
||||
);
|
||||
}
|
||||
ac7caac1 | Bernd Bleßmann | |||
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;
|
||||
}
|
||||
3d4d1eee | Thomas Heck | $self->{template_args} ||= {};
|
||
4cb3a908 | Thomas Heck | |||
e92b48eb | Bernd Bleßmann | $::request->{layout}->add_javascripts("$_.js") for qw (kivi.CustomerVendor kivi.File chart kivi.CustomerVendorTurnover ckeditor/ckeditor ckeditor/adapters/jquery follow_up);
|
||
abaf49cc | Sven Schöling | |||
cf7153b0 | Moritz Bunkus | $self->_setup_form_action_bar;
|
||
}
|
||||
sub _setup_form_action_bar {
|
||||
my ($self) = @_;
|
||||
3bb4190a | Moritz Bunkus | 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.");
|
||||
abaf49cc | Sven Schöling | for my $bar ($::request->layout->get('actionbar')) {
|
||
cf7153b0 | Moritz Bunkus | $bar->add(
|
||
combobox => [
|
||||
action => [
|
||||
t8('Save'),
|
||||
a6866e20 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/save" } ],
|
||
checks => [ 'check_taxzone_and_ustid' ],
|
||||
accesskey => 'enter',
|
||||
3bb4190a | Moritz Bunkus | disabled => $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ],
|
||
action => [
|
||||
t8('Save and Close'),
|
||||
c2aaf253 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/save_and_close" } ],
|
||
cf7153b0 | Moritz Bunkus | checks => [ 'check_taxzone_and_ustid' ],
|
||
3bb4190a | Moritz Bunkus | disabled => $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ],
|
||
], # end of combobox "Save"
|
||||
combobox => [
|
||||
action => [ t8('Workflow') ],
|
||||
(action => [
|
||||
t8('Save and AP Transaction'),
|
||||
c2aaf253 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/save_and_ap_transaction" } ],
|
||
cf7153b0 | Moritz Bunkus | checks => [ 'check_taxzone_and_ustid' ],
|
||
3bb4190a | Moritz Bunkus | disabled => $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ]) x !!$self->is_vendor,
|
||
(action => [
|
||||
t8('Save and AR Transaction'),
|
||||
c2aaf253 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/save_and_ar_transaction" } ],
|
||
cf7153b0 | Moritz Bunkus | checks => [ 'check_taxzone_and_ustid' ],
|
||
3bb4190a | Moritz Bunkus | disabled => $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ]) x !$self->is_vendor,
|
||
action => [
|
||||
t8('Save and Invoice'),
|
||||
c2aaf253 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/save_and_invoice" } ],
|
||
cf7153b0 | Moritz Bunkus | checks => [ 'check_taxzone_and_ustid' ],
|
||
3bb4190a | Moritz Bunkus | disabled => $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ],
|
||
action => [
|
||||
t8('Save and Order'),
|
||||
c2aaf253 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/save_and_order" } ],
|
||
cf7153b0 | Moritz Bunkus | checks => [ 'check_taxzone_and_ustid' ],
|
||
3bb4190a | Moritz Bunkus | disabled => $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ],
|
||
(action => [
|
||||
t8('Save and RFQ'),
|
||||
c2aaf253 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/save_and_rfq" } ],
|
||
cf7153b0 | Moritz Bunkus | checks => [ 'check_taxzone_and_ustid' ],
|
||
3bb4190a | Moritz Bunkus | disabled => $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ]) x !!$self->is_vendor,
|
||
(action => [
|
||||
t8('Save and Quotation'),
|
||||
c2aaf253 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/save_and_quotation" } ],
|
||
cf7153b0 | Moritz Bunkus | checks => [ 'check_taxzone_and_ustid' ],
|
||
3bb4190a | Moritz Bunkus | disabled => $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ]) x !$self->is_vendor,
|
||
], # end of combobox "Workflow"
|
||||
action => [
|
||||
t8('Delete'),
|
||||
c2aaf253 | Moritz Bunkus | submit => [ '#form', { action => "CustomerVendor/delete" } ],
|
||
cf7153b0 | Moritz Bunkus | 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.')
|
||||
3bb4190a | Moritz Bunkus | : $no_rights,
|
||
cf7153b0 | Moritz Bunkus | ],
|
||
'separator',
|
||||
action => [
|
||||
t8('History'),
|
||||
call => [ 'kivi.CustomerVendor.showHistoryWindow', $self->{cv}->id ],
|
||||
disabled => !$self->{cv}->id ? t8('This object has not been saved yet.') : undef,
|
||||
],
|
||||
);
|
||||
abaf49cc | Sven Schöling | }
|
||
4cb3a908 | Thomas Heck | }
|
||
d0a22ba8 | Moritz Bunkus | 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 }
|
||||
};
|
||||
}
|
||||
3ea3a603 | Sven Schöling | sub normalize_name {
|
||
my ($self) = @_;
|
||||
af2f24b8 | Jan Büren | # check if feature is enabled (select normalize_vc_names from defaults)
|
||
return unless ($::instance_conf->get_normalize_vc_names);
|
||||
3ea3a603 | Sven Schöling | return unless $self->{cv};
|
||
my $name = $self->{cv}->name;
|
||||
$name =~ s/\s+$//;
|
||||
$name =~ s/^\s+//;
|
||||
$name =~ s/\s+/ /g;
|
||||
$self->{cv}->name($name);
|
||||
}
|
||||
df601bd3 | Moritz Bunkus | 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;
|
||||
}
|
||||
f16c5520 | Sven Schöling | sub init_customer_models {
|
||
my ($self) = @_;
|
||||
SL::Controller::Helper::GetModels->new(
|
||||
controller => $self,
|
||||
model => 'Customer',
|
||||
sorted => {
|
||||
_default => {
|
||||
7bc44f0f | Geoffrey Richardson | by => 'customernumber',
|
||
f16c5520 | Sven Schöling | dir => 1,
|
||
},
|
||||
7bc44f0f | Geoffrey Richardson | customernumber => t8('Customer Number'),
|
||
f16c5520 | Sven Schöling | },
|
||
);
|
||||
}
|
||||
sub init_vendor_models {
|
||||
my ($self) = @_;
|
||||
SL::Controller::Helper::GetModels->new(
|
||||
controller => $self,
|
||||
model => 'Vendor',
|
||||
sorted => {
|
||||
_default => {
|
||||
7bc44f0f | Geoffrey Richardson | by => 'vendornumber',
|
||
f16c5520 | Sven Schöling | dir => 1,
|
||
},
|
||||
7bc44f0f | Geoffrey Richardson | vendornumber => t8('Vendor Number'),
|
||
f16c5520 | Sven Schöling | },
|
||
);
|
||||
}
|
||||
ba40069b | Moritz Bunkus | sub init_zugferd_settings {
|
||
return [
|
||||
[ -1, t8('Use settings from client configuration') ],
|
||||
@SL::ZUGFeRD::customer_settings,
|
||||
],
|
||||
}
|
||||
83b3c64e | Moritz Bunkus | sub _new_customer_vendor_object {
|
||
my ($self) = @_;
|
||||
my $class = 'SL::DB::' . ($self->is_vendor ? 'Vendor' : 'Customer');
|
||||
ce73964f | Moritz Bunkus | my $object = $class->new(
|
||
83b3c64e | Moritz Bunkus | contacts => [],
|
||
shipto => [],
|
||||
custom_variables => [],
|
||||
);
|
||||
ce73964f | Moritz Bunkus | |||
$object->additional_billing_addresses([]) if $self->is_customer;
|
||||
return $object;
|
||||
83b3c64e | Moritz Bunkus | }
|
||
sub _new_contact_object {
|
||||
my ($self) = @_;
|
||||
return SL::DB::Contact->new(custom_variables => []);
|
||||
}
|
||||
4cb3a908 | Thomas Heck | 1;
|