Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision bd92ddf5

Von Tamino Steinert vor fast 3 Jahren hinzugefügt

  • ID bd92ddf5c4116b692cea6eac24fa6fd386ce92a8
  • Vorgänger 34c8fa59
  • Nachfolger 95a9f8b9

Reclamation: Controller and Templates created

also for ReclamationReason
Changes in SL/DB/Shipto.pm, SL/DB/Helper/TransNumberGenerator.pm,
SL/Controller/File.pm and SL/Webdav.pm for Reclamation
Links in menus added for:
- Reclamation/add
- Reclamation/list
- ReclamationReason/list

Unterschiede anzeigen:

SL/Controller/File.pm
'sales_quotation' => { gen => 1, gltype => '', dir =>'SalesQuotation', model => 'Order', right => 'import_ar' },
'sales_order' => { gen => 5, gltype => '', dir =>'SalesOrder', model => 'Order', right => 'import_ar' },
'sales_delivery_order' => { gen => 1, gltype => '', dir =>'SalesDeliveryOrder', model => 'DeliveryOrder', right => 'import_ar' },
'sales_reclamation' => { gen => 5, gltype => '', dir =>'SalesReclamation', model => 'Reclamation', right => 'import_ar' },
'invoice' => { gen => 1, gltype => 'ar', dir =>'SalesInvoice', model => 'Invoice', right => 'import_ar' },
'invoice_for_advance_payment' => { gen => 1, gltype => 'ar', dir =>'SalesInvoice', model => 'Invoice', right => 'import_ar' },
'final_invoice' => { gen => 1, gltype => 'ar', dir =>'SalesInvoice', model => 'Invoice', right => 'import_ar' },
......
'request_quotation' => { gen => 7, gltype => '', dir =>'RequestForQuotation', model => 'Order', right => 'import_ap' },
'purchase_order' => { gen => 7, gltype => '', dir =>'PurchaseOrder', model => 'Order', right => 'import_ap' },
'purchase_delivery_order' => { gen => 7, gltype => '', dir =>'PurchaseDeliveryOrder',model => 'DeliveryOrder', right => 'import_ap' },
'purchase_reclamation' => { gen => 7, gltype => '', dir =>'PurchaseReclamation', model => 'Reclamation', right => 'import_ap' },
'purchase_invoice' => { gen => 6, gltype => 'ap', dir =>'PurchaseInvoice', model => 'PurchaseInvoice',right => 'import_ap' },
'vendor' => { gen => 0, gltype => '', dir =>'Vendor', model => 'Vendor', right => 'xx' },
'customer' => { gen => 1, gltype => '', dir =>'Customer', model => 'Customer', right => 'xx' },
SL/Controller/Reclamation.pm
package SL::Controller::Reclamation;
use strict;
use parent qw(SL::Controller::Base);
use SL::Helper::Flash qw(flash_later);
use SL::Presenter::Tag qw(select_tag hidden_tag div_tag);
use SL::Locale::String qw(t8);
use SL::SessionFile::Random;
use SL::PriceSource;
use SL::ReportGenerator;
use SL::Controller::Helper::ReportGenerator;
use SL::Webdav;
use SL::File;
use SL::MIME;
use SL::Util qw(trim);
use SL::YAML;
use SL::DB::History;
use SL::DB::Reclamation;
use SL::DB::ReclamationItem;
use SL::DB::Default;
use SL::DB::Printer;
use SL::DB::Language;
use SL::DB::RecordLink;
use SL::DB::Shipto;
use SL::DB::Translation;
use SL::Helper::CreatePDF qw(:all);
use SL::Helper::PrintOptions;
use SL::Helper::ShippedQty;
use SL::Helper::UserPreferences::PositionsScrollbar;
use SL::Helper::UserPreferences::UpdatePositions;
use SL::Controller::Helper::GetModels;
use List::Util qw(first sum0);
use List::UtilsBy qw(sort_by uniq_by);
use List::MoreUtils qw(any none pairwise first_index);
use English qw(-no_match_vars);
use File::Spec;
use Cwd;
use Sort::Naturally;
# for _link_to_records
use SL::DB::Order;
use SL::DB::OrderItem;
use SL::DB::DeliveryOrder;
use SL::DB::DeliveryOrderItem;
use SL::DB::Invoice;
use SL::DB::PurchaseInvoice;
use SL::DB::InvoiceItem;
use Rose::Object::MakeMethods::Generic
(
scalar => [ qw(item_ids_to_delete is_custom_shipto_to_delete) ],
'scalar --get_set_init' => [qw(
all_price_factors cv models p part_picker_classification_ids reclamation
search_cvpartnumber show_update_button type valid_types
)],
);
# safety
__PACKAGE__->run_before('check_auth');
__PACKAGE__->run_before('recalc',
only => [qw(
save save_as_new print preview_pdf send_email
save_and_show_email_dialog
workflow_save_and_sales_or_purchase_reclamation
)]);
__PACKAGE__->run_before('get_unalterable_data',
only => [qw(
save save_as_new print preview_pdf send_email
save_and_show_email_dialog
workflow_save_and_sales_or_purchase_reclamation
)]);
#
# actions
#
# add a new reclamation
sub action_add {
my ($self) = @_;
$self->reclamation->transdate(DateTime->now_local());
$self->pre_render();
$self->render(
'reclamation/form',
title => $self->get_title_for('add'),
%{$self->{template_args}},
);
}
# edit an existing reclamation
sub action_edit {
my ($self) = @_;
unless ($::form->{id}) {
$self->js->flash('error', t8("Can't edit unsaved reclamation. No 'id' was given."));
return $self->js->render();
}
$self->load_reclamation;
$self->recalc();
$self->pre_render();
$self->render(
'reclamation/form',
title => $self->get_title_for('edit'),
%{$self->{template_args}},
);
}
# delete the reclamation
sub action_delete {
my ($self) = @_;
my $errors = $self->delete();
if (scalar @{ $errors }) {
$self->js->flash('error', $_) foreach @{ $errors };
return $self->js->render();
}
flash_later('info', t8('The reclamation has been deleted'));
my @redirect_params = (
action => 'add',
type => $self->type,
);
$self->redirect_to(@redirect_params);
}
# save the reclamation
sub action_save {
my ($self) = @_;
my $errors = $self->save();
if (scalar @{ $errors }) {
$self->js->flash('error', $_) foreach @{ $errors };
return $self->js->render();
}
flash_later('info', t8('The reclamation has been saved'));
my @redirect_params = (
action => 'edit',
type => $self->type,
id => $self->reclamation->id,
);
$self->redirect_to(@redirect_params);
}
sub action_list {
my ($self) = @_;
$self->_setup_search_action_bar;
$self->prepare_report;
$self->report_generator_list_objects(report => $self->{report}, objects => $self->models->get);
}
# save the reclamation as new document an open it for edit
sub action_save_as_new {
my ($self) = @_;
my $reclamation = $self->reclamation;
if (!$reclamation->id) {
$self->js->flash('error', t8('This object has not been saved yet.'));
return $self->js->render();
}
# load reclamation from db to check if values changed
my $saved_reclamation = SL::DB::Reclamation->new(id => $reclamation->id)->load;
my %new_attrs;
# If it has been changed manually then use it as-is, otherwise change.
$new_attrs{record_number} = (trim($reclamation->record_number) eq $saved_reclamation->record_number)
? ''
: trim($reclamation->record_number);
$new_attrs{transdate} = ($reclamation->transdate == $saved_reclamation->transdate)
? DateTime->today_local
: $reclamation->transdate;
if ($reclamation->reqdate == $saved_reclamation->reqdate) {
$new_attrs{reqdate} = '';
} else {
$new_attrs{reqdate} = $reclamation->reqdate;
}
# Update employee
$new_attrs{employee} = SL::DB::Manager::Employee->current;
# Create new record from current one
$self->reclamation(
SL::DB::Reclamation->new_from(
$reclamation,
destination_type => $reclamation->type,
attributes => \%new_attrs,
no_linked_records => 1,
)
);
# save
$self->action_save();
}
# print the reclamation
#
# This is called if "print" is pressed in the print dialog.
# If PDF creation was requested and succeeded, the pdf is offered for download
# via send_file (which uses ajax in this case).
sub action_print {
my ($self) = @_;
$self->save_with_render_error();
$self->js_reset_reclamation_and_item_ids_after_save;
my $format = $::form->{print_options}->{format};
my $media = $::form->{print_options}->{media};
my $formname = $::form->{print_options}->{formname};
my $copies = $::form->{print_options}->{copies};
my $groupitems = $::form->{print_options}->{groupitems};
my $printer_id = $::form->{print_options}->{printer_id};
# only pdf and opendocument by now
if (none { $format eq $_ } qw(pdf opendocument opendocument_pdf)) {
return $self->js->flash('error', t8('Format \'#1\' is not supported yet/anymore.', $format))->render;
}
# only screen or printer by now
if (none { $media eq $_ } qw(screen printer)) {
return $self->js->flash('error', t8('Media \'#1\' is not supported yet/anymore.', $media))->render;
}
# create a form for generate_attachment_filename
my $form = Form->new;
$form->{record_number} = $self->reclamation->record_number;
$form->{type} = $self->type;
$form->{format} = $format;
$form->{formname} = $formname;
$form->{language} = '_' . $self->reclamation->language->template_code if $self->reclamation->language;
my $pdf_filename = $form->generate_attachment_filename();
my $pdf;
my @errors = generate_pdf($self->reclamation, \$pdf, {
format => $format,
formname => $formname,
language => $self->reclamation->language,
printer_id => $printer_id,
groupitems => $groupitems,
});
if (scalar @errors) {
return $self->js->flash('error', t8('Conversion to PDF failed: #1', $errors[0]))->render;
}
if ($media eq 'screen') { # screen/download
$self->js->flash('info', t8('The PDF has been created'));
$self->send_file(
\$pdf,
type => SL::MIME->mime_type_from_ext($pdf_filename),
name => $pdf_filename,
js_no_render => 1,
);
} elsif ($media eq 'printer') { # printer
my $printer_id = $::form->{print_options}->{printer_id};
SL::DB::Printer->new(id => $printer_id)->load->print_document(
copies => $copies,
content => $pdf,
);
$self->js->flash('info', t8('The PDF has been printed'));
}
my @warnings = store_pdf_to_webdav_and_filemanagement($self->reclamation, $pdf, $pdf_filename);
if (scalar @warnings) {
$self->js->flash('warning', $_) for @warnings;
}
$self->save_history('PRINTED');
$self->js
->run('kivi.ActionBar.setEnabled', '#save_and_email_action')
->render;
}
sub action_preview_pdf {
my ($self) = @_;
$self->save_with_render_error();
$self->js_reset_reclamation_and_item_ids_after_save;
my $format = 'pdf';
my $media = 'screen';
my $formname = $self->type;
# only pdf
# create a form for generate_attachment_filename
my $form = Form->new;
$form->{record_number} = $self->reclamation->record_number;
$form->{type} = $self->type;
$form->{format} = $format;
$form->{formname} = $formname;
$form->{language} = '_' . $self->reclamation->language->template_code if $self->reclamation->language;
my $pdf_filename = $form->generate_attachment_filename();
my $pdf;
my @errors = generate_pdf($self->reclamation, \$pdf, {
format => $format,
formname => $formname,
language => $self->reclamation->language,
});
if (scalar @errors) {
return $self->js->flash('error', t8('Conversion to PDF failed: #1', $errors[0]))->render;
}
$self->save_history('PREVIEWED');
$self->js->flash('info', t8('The PDF has been previewed'));
# screen/download
$self->send_file(
\$pdf,
type => SL::MIME->mime_type_from_ext($pdf_filename),
name => $pdf_filename,
js_no_render => 0,
);
}
# open the email dialog
sub action_save_and_show_email_dialog {
my ($self) = @_;
$self->save_with_render_error();
unless ($self->reclamation->customervendor) {
return $self->js->flash('error',
$self->cv eq 'customer' ?
t8('Cannot send E-mail without customer given')
: t8('Cannot send E-mail without vendor given'))
->render($self);
}
my $form = Form->new;
$form->{record_number} = $self->reclamation->record_number;
$form->{cv_record_number} = $self->reclamation->cv_record_number;
$form->{formname} = $self->type;
$form->{type} = $self->type;
$form->{language} = '_' . $self->reclamation->language->template_code if $self->reclamation->language;
$form->{language_id} = $self->reclamation->language->id if $self->reclamation->language;
$form->{format} = 'pdf';
$form->{cp_id} = $self->reclamation->contact->cp_id if $self->reclamation->contact;
my $email_form;
$email_form->{to} = $self->reclamation->contact->cp_email if $self->reclamation->contact;
$email_form->{to} ||= $self->reclamation->customervendor->email;
$email_form->{cc} = $self->reclamation->customervendor->cc;
$email_form->{bcc} = join ', ', grep $_, $self->reclamation->customervendor->bcc, SL::DB::Default->get->global_bcc;
# TODO: get addresses from shipto, if any
$email_form->{subject} = $form->generate_email_subject();
$email_form->{attachment_filename} = $form->generate_attachment_filename();
$email_form->{message} = $form->generate_email_body();
$email_form->{js_send_function} = 'kivi.Reclamation.send_email()';
my %files = $self->get_files_for_email_dialog();
$self->{all_employees} = SL::DB::Manager::Employee->get_all(query => [ deleted => 0 ]);
my $dialog_html = $self->render('common/_send_email_dialog', { output => 0 },
email_form => $email_form,
show_bcc => $::auth->assert('email_bcc', 'may fail'),
FILES => \%files,
is_customer => $self->cv eq 'customer',
ALL_EMPLOYEES => $self->{all_employees},
);
$self->js
->run('kivi.Reclamation.show_email_dialog', $dialog_html)
->reinit_widgets
->render($self);
}
# send email
#
# TODO: handling error messages: flash is not displayed in dialog, but in the main form
sub action_send_email {
my ($self) = @_;
my $errors = $self->save();
if (scalar @{ $errors }) {
$self->js->run('kivi.Reclamation.close_email_dialog');
$self->js->flash('error', $_) foreach @{ $errors };
return $self->js->render();
}
$self->js_reset_reclamation_and_item_ids_after_save;
# move $::form->{email_form} to $::form
my $email_form = delete $::form->{email_form};
my %field_names = (to => 'email');
$::form->{ $field_names{$_} // $_ } = $email_form->{$_} for keys %{ $email_form };
# for Form::cleanup which may be called in Form::send_email
$::form->{cwd} = getcwd();
$::form->{tmpdir} = $::lx_office_conf{paths}->{userspath};
$::form->{$_} = $::form->{print_options}->{$_} for keys %{$::form->{print_options}};
$::form->{media} = 'email';
if (($::form->{attachment_policy} // '') !~ m{^(?:old_file|no_file)$}) {
my $pdf;
my @errors = generate_pdf($self->reclamation, \$pdf, {
media => $::form->{media},
format => $::form->{print_options}->{format},
formname => $::form->{print_options}->{formname},
language => $self->reclamation->language,
printer_id => $::form->{print_options}->{printer_id},
groupitems => $::form->{print_options}->{groupitems}
});
if (scalar @errors) {
return $self->js->flash('error', t8('Conversion to PDF failed: #1', $errors[0]))->render($self);
}
my @warnings = store_pdf_to_webdav_and_filemanagement($self->reclamation, $pdf, $::form->{attachment_filename});
if (scalar @warnings) {
flash_later('warning', $_) for @warnings;
}
my $sfile = SL::SessionFile::Random->new(mode => "w");
$sfile->fh->print($pdf);
$sfile->fh->close;
$::form->{tmpfile} = $sfile->file_name;
$::form->{tmpdir} = $sfile->get_path; # for Form::cleanup which may be called in Form::send_email
}
$::form->{id} = $self->reclamation->id; # this is used in SL::Mailer to create a linked record to the mail
$::form->send_email(\%::myconfig, 'pdf');
# internal notes
my $intnotes = $self->reclamation->intnotes;
$intnotes .= "\n\n" if $self->reclamation->intnotes;
$intnotes .= t8('[email]') . "\n";
$intnotes .= t8('Date') . ": " . $::locale->format_date_object(
DateTime->now_local,
precision => 'seconds') . "\n";
$intnotes .= t8('To (email)') . ": " . $::form->{email} . "\n";
$intnotes .= t8('Cc') . ": " . $::form->{cc} . "\n" if $::form->{cc};
$intnotes .= t8('Bcc') . ": " . $::form->{bcc} . "\n" if $::form->{bcc};
$intnotes .= t8('Subject') . ": " . $::form->{subject} . "\n\n";
$intnotes .= t8('Message') . ": " . $::form->{message};
$self->reclamation->update_attributes(intnotes => $intnotes);
$self->save_history('MAILED');
flash_later('info', t8('The email has been sent.'));
my @redirect_params = (
action => 'edit',
type => $self->type,
id => $self->reclamation->id,
);
$self->redirect_to(@redirect_params);
}
# workflow from purchase to sales reclamation
sub action_save_and_sales_reclamation {
$_[0]->workflow_save_and_sales_or_purchase_reclamation();
}
# workflow from sales to purchase reclamation
sub action_save_and_purchase_reclamation {
$_[0]->workflow_save_and_sales_or_purchase_reclamation();
}
# set form elements in respect to a changed customer or vendor
#
# This action is called on an change of the customer/vendor picker.
sub action_customer_vendor_changed {
my ($self) = @_;
$self->setup_reclamation_from_cv($self->reclamation);
$self->recalc();
my $cv_method = $self->cv;
if ( $self->reclamation->customervendor->contacts
&& scalar @{ $self->reclamation->customervendor->contacts } > 0) {
$self->js->show('#cp_row');
} else {
$self->js->hide('#cp_row');
}
if ($self->reclamation->customervendor->shipto
&& scalar @{ $self->reclamation->customervendor->shipto } > 0) {
$self->js->show('#shipto_selection');
} else {
$self->js->hide('#shipto_selection');
}
$self->js->val( '#reclamation_salesman_id', $self->reclamation->salesman_id) if $self->reclamation->is_sales;
$self->js
->replaceWith('#reclamation_cp_id', $self->build_contact_select)
->replaceWith('#reclamation_shipto_id', $self->build_shipto_select)
->replaceWith('#shipto_inputs ', $self->build_shipto_inputs)
->replaceWith('#business_info_row', $self->build_business_info_row)
->val( '#reclamation_taxzone_id', $self->reclamation->taxzone_id)
->val( '#reclamation_taxincluded', $self->reclamation->taxincluded)
->val( '#reclamation_currency_id', $self->reclamation->currency_id)
->val( '#reclamation_payment_id', $self->reclamation->payment_id)
->val( '#reclamation_delivery_term_id', $self->reclamation->delivery_term_id)
->val( '#reclamation_intnotes', $self->reclamation->intnotes)
->val( '#reclamation_language_id', $self->reclamation->customervendor->language_id)
->focus( '#reclamation_' . $self->cv . '_id')
->run('kivi.Reclamation.update_exchangerate');
$self->js_redisplay_amounts_and_taxes;
$self->js_redisplay_cvpartnumbers;
$self->js->render();
}
# open the dialog for customer/vendor details
sub action_show_customer_vendor_details_dialog {
my ($self) = @_;
my $is_sales = ($self->cv eq 'customer');
my $cv;
if ($is_sales) {
$cv = SL::DB::Customer->new(id => $::form->{cv_id})->load;
} else {
$cv = SL::DB::Vendor->new(id => $::form->{cv_id})->load;
}
my %details = map { $_ => $cv->$_ } @{$cv->meta->columns};
$details{discount_as_percent} = $cv->discount_as_percent;
$details{creditlimt} = $cv->creditlimit_as_number;
$details{business} = $cv->business->description if $cv->business;
$details{language} = $cv->language_obj->description if $cv->language_obj;
$details{delivery_terms} = $cv->delivery_term->description if $cv->delivery_term;
$details{payment_terms} = $cv->payment->description if $cv->payment;
$details{pricegroup} = $cv->pricegroup->pricegroup if !$is_sales && $cv->pricegroup;
foreach my $entry (@{ $cv->shipto }) {
push @{ $details{SHIPTO} }, { map { $_ => $entry->$_ } @{$entry->meta->columns} };
}
foreach my $entry (@{ $cv->contacts }) {
push @{ $details{CONTACTS} }, { map { $_ => $entry->$_ } @{$entry->meta->columns} };
}
$_[0]->render('common/show_vc_details', { layout => 0 },
is_customer => !$is_sales,
%details);
}
# called if a unit in an existing item row is changed
sub action_unit_changed {
my ($self) = @_;
my $idx = first_index { $_ eq $::form->{item_id} } @{ $::form->{reclamationitem_ids} };
my $item = $self->reclamation->items_sorted->[$idx];
my $old_unit_obj = SL::DB::Unit->new(name => $::form->{old_unit})->load;
$item->sellprice($item->unit_obj->convert_to($item->sellprice, $old_unit_obj));
$self->recalc();
$self->js
->run('kivi.Reclamation.update_sellprice', $::form->{item_id}, $item->sellprice_as_number);
$self->js_redisplay_line_values;
$self->js_redisplay_amounts_and_taxes;
$self->js->render();
}
# add an item row for a new item entered in the input row
sub action_add_item {
my ($self) = @_;
delete $::form->{add_item}->{create_part_type};
my $form_attr = $::form->{add_item};
unless ($form_attr->{parts_id}) {
$self->js->flash('error', t8("No part was selected."));
return $self->js->render();
}
my $item = new_item($self->reclamation, $form_attr);
$self->reclamation->add_items($item);
$self->recalc();
$self->get_item_cvpartnumber($item);
my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
my $row_as_html = $self->p->render('reclamation/tabs/basic_data/_row',
ITEM => $item,
ID => $item_id,
SELF => $self,
);
if ($::form->{insert_before_item_id}) {
$self->js
->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
} else {
$self->js
->append('#row_table_id', $row_as_html);
}
if ( $item->part->is_assortment ) {
$form_attr->{qty_as_number} = 1 unless $form_attr->{qty_as_number};
foreach my $assortment_item ( @{$item->part->assortment_items} ) {
my $attr = { parts_id => $assortment_item->parts_id,
qty => $assortment_item->qty * $::form->parse_amount(\%::myconfig, $form_attr->{qty_as_number}), # TODO $form_attr->{unit}
unit => $assortment_item->unit,
description => $assortment_item->part->description,
};
my $item = new_item($self->reclamation, $attr);
# set discount to 100% if item isn't supposed to be charged, overwriting any customer discount
$item->discount(1) unless $assortment_item->charge;
$self->reclamation->add_items( $item );
$self->recalc();
$self->get_item_cvpartnumber($item);
my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
my $row_as_html = $self->p->render('reclamation/tabs/basic_data/_row',
ITEM => $item,
ID => $item_id,
SELF => $self,
);
if ($::form->{insert_before_item_id}) {
$self->js
->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
} else {
$self->js
->append('#row_table_id', $row_as_html);
}
};
};
$self->js
->val('.add_item_input', '')
->run('kivi.Reclamation.init_row_handlers')
->run('kivi.Reclamation.renumber_positions')
->focus('#add_item_parts_id_name');
$self->js->run('kivi.Reclamation.row_table_scroll_down') if !$::form->{insert_before_item_id};
$self->js_redisplay_amounts_and_taxes;
$self->js->render();
}
# add item rows for multiple items at once
sub action_add_multi_items {
my ($self) = @_;
my @form_attr = grep { $_->{qty_as_number} } @{ $::form->{add_items} };
unless (scalar(@form_attr)) {
$self->js->flash('error', t8("No part was selected."));
return $self->js->render();
}
my @items;
foreach my $attr (@form_attr) {
my $item = new_item($self->reclamation, $attr);
push @items, $item;
if ( $item->part->is_assortment ) {
foreach my $assortment_item ( @{$item->part->assortment_items} ) {
my $attr = { parts_id => $assortment_item->parts_id,
qty => $assortment_item->qty * $item->qty, # TODO $form_attr->{unit}
unit => $assortment_item->unit,
description => $assortment_item->part->description,
};
my $item = new_item($self->reclamation, $attr);
# set discount to 100% if item isn't supposed to be charged, overwriting any customer discount
$item->discount(1) unless $assortment_item->charge;
push @items, $item;
}
}
}
$self->reclamation->add_items(@items);
$self->recalc();
foreach my $item (@items) {
$self->get_item_cvpartnumber($item);
my $item_id = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
my $row_as_html = $self->p->render('reclamation/tabs/basic_data/_row',
ITEM => $item,
ID => $item_id,
SELF => $self,
);
if ($::form->{insert_before_item_id}) {
$self->js
->before ('.row_entry:has(#item_' . $::form->{insert_before_item_id} . ')', $row_as_html);
} else {
$self->js
->append('#row_table_id', $row_as_html);
}
}
$self->js
->run('kivi.Part.close_picker_dialogs')
->run('kivi.Reclamation.init_row_handlers')
->run('kivi.Reclamation.renumber_positions')
->focus('#add_item_parts_id_name');
$self->js->run('kivi.Reclamation.row_table_scroll_down') if !$::form->{insert_before_item_id};
$self->js_redisplay_amounts_and_taxes;
$self->js->render();
}
# recalculate all linetotals, amounts and taxes and redisplay them
sub action_recalc_amounts_and_taxes {
my ($self) = @_;
$self->recalc();
$self->js_redisplay_line_values;
$self->js_redisplay_amounts_and_taxes;
$self->js->render();
}
sub action_update_exchangerate {
my ($self) = @_;
my $data = {
is_standard => $self->reclamation->currency_id == $::instance_conf->get_currency_id,
currency_name => $self->reclamation->currency->name,
exchangerate => $self->reclamation->daily_exchangerate_as_null_number,
};
$self->render(\SL::JSON::to_json($data), { type => 'json', process => 0 });
}
# redisplay item rows if they are sorted by an attribute
sub action_reorder_items {
my ($self) = @_;
my %sort_keys = (
partnumber => sub { $_[0]->part->partnumber },
description => sub { $_[0]->description },
reason => sub { $_[0]->reason eq undef ? "" : $_[0]->reason->name },
reason_description_ext => sub { $_[0]->reason_description_ext },
reason_description_int => sub { $_[0]->reason_description_int },
shipped_qty => sub { $_[0]->shipped_qty },
qty => sub { $_[0]->qty },
sellprice => sub { $_[0]->sellprice },
discount => sub { $_[0]->discount },
cvpartnumber => sub { $_[0]->{cvpartnumber} },
);
$self->get_item_cvpartnumber($_) for @{$self->reclamation->items_sorted};
if ($::form->{order_by} eq 'shipped_qty') {
# Calculate shipped qtys here to prevent calling calculate for every item
# via the items method. Do not use write_to_objects to prevent
# reclamation->delivered to be set, because this should be the value from
# db, which can be set manually or is set when linked delivery orders are
# saved.
SL::Helper::ShippedQty->new->calculate($self->reclamation)->write_to(\@{$self->reclamation->items});
}
my $method = $sort_keys{$::form->{order_by}};
my @to_sort = map { { old_pos => $_->position, order_by => $method->($_) } } @{ $self->reclamation->items_sorted };
if ($::form->{sort_dir}) {
if ( $::form->{order_by} =~ m/qty|sellprice|discount/ ){
@to_sort = sort { $a->{order_by} <=> $b->{order_by} } @to_sort;
} else {
@to_sort = sort { $a->{order_by} cmp $b->{order_by} } @to_sort;
}
} else {
if ( $::form->{order_by} =~ m/qty|sellprice|discount/ ){
@to_sort = sort { $b->{order_by} <=> $a->{order_by} } @to_sort;
} else {
@to_sort = sort { $b->{order_by} cmp $a->{order_by} } @to_sort;
}
}
$self->js
->run('kivi.Reclamation.redisplay_items', \@to_sort)
->render;
}
# show the popup to choose a price/discount source
sub action_price_popup {
my ($self) = @_;
my $idx = first_index { $_ eq $::form->{item_id} } @{ $::form->{reclamation_items_ids} };
my $item = $self->reclamation->items_sorted->[$idx];
if ($item->is_linked_to_record) {
$self->js->flash('error', t8("Can't change price of a linked item"));
return $self->js->render();
}
$self->render_price_dialog($item);
}
# save the reclamation in a session variable and redirect to the part controller
sub action_create_part {
my ($self) = @_;
my $previousform = $::auth->save_form_in_session(non_scalars => 1);
my $callback = $self->url_for(
action => 'return_from_create_part',
type => $self->type, # type is needed for check_auth on return
previousform => $previousform,
);
flash_later('info', t8('You are adding a new part while you are editing another document. You will be redirected to your document when saving the new part or aborting this form.'));
my @redirect_params = (
controller => 'Part',
action => 'add',
part_type => $::form->{add_item}->{create_part_type},
callback => $callback,
show_abort => 1,
);
$self->redirect_to(@redirect_params);
}
sub action_return_from_create_part {
my ($self) = @_;
$self->{created_part} = SL::DB::Part->new(id => delete $::form->{new_parts_id})->load if $::form->{new_parts_id};
$::auth->restore_form_from_session(delete $::form->{previousform});
# set item ids to new fake id, to identify them as new items
foreach my $item (@{$self->reclamation->items_sorted}) {
$item->{new_fake_id} = join('_', 'new', Time::HiRes::gettimeofday(), int rand 1000000000000);
}
$self->recalc();
$self->get_unalterable_data();
$self->pre_render();
# trigger rendering values for second row/longdescription as hidden, because
# they are loaded only on demand. So we need to keep the values from the
# source.
$_->{render_second_row} = 1 for @{ $self->reclamation->items_sorted };
$_->{render_longdescription} = 1 for @{ $self->reclamation->items_sorted };
$self->render(
'reclamation/form',
title => $self->get_title_for('edit'),
%{$self->{template_args}}
);
}
# load the second row for one or more items
#
# This action gets the html code for all items second rows by rendering a template for
# the second row and sets the html code via client js.
sub action_load_second_rows {
my ($self) = @_;
foreach my $item_id (@{ $::form->{reclamation_items_ids} }) {
my $idx = first_index { $_ eq $item_id } @{ $::form->{reclamation_items_ids} };
my $item = $self->reclamation->items_sorted->[$idx];
$self->js_load_second_row($item, $item_id, 0);
}
$self->js->run('kivi.Reclamation.init_row_handlers') if $self->reclamation->is_sales; # for lastcosts change-callback
$self->js->render();
}
# update description, notes and sellprice from master data
sub action_update_row_from_master_data {
my ($self) = @_;
foreach my $item_id (@{ $::form->{item_ids} }) {
my $idx = first_index { $_ eq $item_id } @{ $::form->{reclamationitem_ids} };
my $item = $self->reclamation->items_sorted->[$idx];
if ($item->is_linked_to_record) {
$self->js->flash_later('error', t8("Can't change data of a linked item. Part: " . $item->part->partnumber));
next;
}
my $texts = get_part_texts($item->part, $self->reclamation->language_id);
$item->description($texts->{description});
$item->longdescription($texts->{longdescription});
my $price_source = SL::PriceSource->new(record_item => $item, record => $self->reclamation);
my $price_src;
if ($item->part->is_assortment) {
# add assortment items with price 0, as the components carry the price
$price_src = $price_source->price_from_source("");
$price_src->price(0);
} else {
$price_src = $price_source->best_price
? $price_source->best_price
: $price_source->price_from_source("");
$price_src->price($::form->round_amount($price_src->price / $self->reclamation->exchangerate, 5)) if $self->reclamation->exchangerate;
$price_src->price(0) if !$price_source->best_price;
}
$item->sellprice($price_src->price);
$item->active_price_source($price_src);
$self->js
->run('kivi.Reclamation.update_sellprice', $item_id, $item->sellprice_as_number)
->html('.row_entry:has(#item_' . $item_id
. ') [name = "partnumber"] a', $item->part->partnumber)
->val ('.row_entry:has(#item_' . $item_id
. ') [name = "reclamation.reclamation_items[].description"]',
$item->description)
->val ('.row_entry:has(#item_' . $item_id
. ') [name = "reclamation.reclamation_items[].longdescription"]',
$item->longdescription);
if ($self->search_cvpartnumber) {
$self->get_item_cvpartnumber($item);
$self->js->html('.row_entry:has(#item_' . $item_id
. ') [name = "cvpartnumber"]', $item->{cvpartnumber});
}
}
$self->recalc();
$self->js_redisplay_line_values;
$self->js_redisplay_amounts_and_taxes;
$self->js->render();
}
sub js_load_second_row {
my ($self, $item, $item_id, $do_parse) = @_;
if ($do_parse) {
# Parse values from form (they are formated while rendering (template)).
# Workaround to pre-parse number-cvars (parse_custom_variable_values does
# not parse number values). This parsing is not necessary at all, if we
# assure that the second row/cvars are only loaded once.
foreach my $var (@{ $item->cvars_by_config }) {
if ($var->config->type eq 'number' && exists($var->{__unparsed_value})) {
$var->unparsed_value($::form->parse_amount(\%::myconfig, $var->{__unparsed_value}));
}
}
$item->parse_custom_variable_values;
}
my $row_as_html = $self->p->render('reclamation/tabs/basic_data/_second_row', ITEM => $item, TYPE => $self->type);
$self->js
->html('#second_row_' . $item_id, $row_as_html)
->data('#second_row_' . $item_id, 'loaded', 1);
}
sub js_redisplay_line_values {
my ($self) = @_;
my @data = map {[
$::form->format_amount(\%::myconfig, $_->{linetotal}, 2, 0),
]} @{ $self->reclamation->items_sorted };
$self->js
->run('kivi.Reclamation.redisplay_line_values', $self->reclamation->is_sales, \@data);
}
sub js_redisplay_amounts_and_taxes {
my ($self) = @_;
if (scalar @{ $self->reclamation->taxes }) {
$self->js->show('#taxincluded_row_id');
} else {
$self->js->hide('#taxincluded_row_id');
}
if ($self->reclamation->taxincluded) {
$self->js->hide('#subtotal_row_id');
} else {
$self->js->show('#subtotal_row_id');
}
$self->js
->html('#netamount_id', $::form->format_amount(\%::myconfig, $self->reclamation->netamount, -2))
->html('#amount_id', $::form->format_amount(\%::myconfig, $self->reclamation->amount, -2))
->remove('.tax_row')
->insertBefore($self->build_tax_rows, '#amount_row_id');
}
sub js_redisplay_cvpartnumbers {
my ($self) = @_;
$self->get_item_cvpartnumber($_) for @{$self->reclamation->items_sorted};
my @data = map {[$_->{cvpartnumber}]} @{ $self->reclamation->items_sorted };
$self->js
->run('kivi.Reclamation.redisplay_cvpartnumbers', \@data);
}
sub js_reset_reclamation_and_item_ids_after_save {
my ($self) = @_;
$self->js
->val('#id', $self->reclamation->id)
->val('#converted_from_record_type_ref', '')
->val('#converted_from_record_id', '')
->val('#reclamation_record_number', $self->reclamation->record_number);
my $idx = 0;
foreach my $form_item_id (@{ $::form->{reclamationitem_ids} }) {
next if !$self->reclamation->items_sorted->[$idx]->id;
next if $form_item_id !~ m{^new};
$self->js
->val ('[name="reclamationitem_ids[+]"][value="' . $form_item_id . '"]',
$self->reclamation->items_sorted->[$idx]->id)
->val ('#item_' . $form_item_id,
$self->reclamation->items_sorted->[$idx]->id)
->attr('#item_' . $form_item_id, "id",
'item_' . $self->reclamation->items_sorted->[$idx]->id);
} continue {
$idx++;
}
$self->js->val('[name="converted_from_record_item_type_refs[+]"]', '');
$self->js->val('[name="converted_from_record_item_ids[+]"]', '');
}
#
# helpers
#
sub init_valid_types {
[ sales_reclamation_type(), purchase_reclamation_type() ];
}
sub init_type {
my ($self) = @_;
if (none { $::form->{type} eq $_ } @{$self->valid_types}) {
die "Not a valid type for reclamation";
}
$self->type($::form->{type});
}
sub init_cv {
my ($self) = @_;
my $cv = (any { $self->type eq $_ } (sales_reclamation_type())) ? 'customer'
: (any { $self->type eq $_ } (purchase_reclamation_type())) ? 'vendor'
: die "Not a valid type for reclamation";
return $cv;
}
sub init_search_cvpartnumber {
my ($self) = @_;
my $user_prefs = SL::Helper::UserPreferences::PartPickerSearch->new();
my $search_cvpartnumber;
$search_cvpartnumber = !!$user_prefs->get_sales_search_customer_partnumber() if $self->cv eq 'customer';
$search_cvpartnumber = !!$user_prefs->get_purchase_search_makemodel() if $self->cv eq 'vendor';
return $search_cvpartnumber;
}
sub init_show_update_button {
my ($self) = @_;
!!SL::Helper::UserPreferences::UpdatePositions->new()->get_show_update_button();
}
sub init_models {
my ($self) = @_;
SL::Controller::Helper::GetModels->new(
controller => $self,
sorted => {
_default => {
by => 'record_number',
dir => 0,
},
id => t8('ID'),
record_number => t8('Reclamation Number'),
employee_id => t8('Employee'),
salesman_id => t8('Salesman'),
customer_id => t8('Customer'),
vendor_id => t8('Vendor'),
contact_id => t8('Contact'),
language_id => t8('Language'),
department_id => t8('Department'),
globalproject_id => t8('Project Number'),
cv_record_number => ($self->type eq 'sales_reclamation' ? t8('Customer Record Number') : t8('Vendor Record Number')),
transaction_description => t8('Description'),
notes => t8('Notes'),
intnotes => t8('Internal Notes'),
shippingpoint => t8('Shipping Point'),
shipvia => t8('Ship via'),
shipto_id => t8('Shipping Address'),
amount => t8('Total'),
netamount => t8('Subtotal'),
delivery_term_id => t8('Delivery Terms'),
payment_id => t8('Payment Terms'),
currency_id => t8('Currency'),
exchangerate => t8('Exchangerate'),
taxincluded => t8('Tax Included'),
taxzone_id => t8('Tax zone'),
tax_point => t8('Tax point'),
reqdate => t8('Due Date'),
transdate => t8('Booking Date'),
itime => t8('Creation Time'),
mtime => t8('Last modification Time'),
delivered => t8('Delivered'),
closed => t8('Closed'),
},
query => [
SL::DB::Manager::Reclamation->type_filter($self->type),
(salesman_id => SL::DB::Manager::Employee->current->id) x ($self->reclamation->is_sales && !$::auth->assert('sales_all_edit', 1)),
(employee_id => SL::DB::Manager::Employee->current->id) x ($self->reclamation->is_sales && !$::auth->assert('sales_all_edit', 1)),
(employee_id => SL::DB::Manager::Employee->current->id) x (!$self->reclamation->is_sales && !$::auth->assert('purchase_all_edit', 1)),
],
);
}
sub init_p {
SL::Presenter->get;
}
sub init_reclamation {
$_[0]->make_reclamation;
}
sub init_all_price_factors {
SL::DB::Manager::PriceFactor->get_all;
}
sub init_part_picker_classification_ids {
my ($self) = @_;
my $attribute = 'used_for_' . ($self->type eq sales_reclamation_type() ? 'sale' : 'purchase');
return [ map { $_->id } @{ SL::DB::Manager::PartClassification->get_all(where => [ $attribute => 1 ]) } ];
}
sub check_auth {
my ($self) = @_;
my $right_for = { map { $_ => $_.'_edit' } @{$self->valid_types} };
my $right = $right_for->{ $self->type };
$right ||= 'DOES_NOT_EXIST';
$::auth->assert($right);
}
# build the selection box for contacts
#
# Needed, if customer/vendor changed.
sub build_contact_select {
my ($self) = @_;
select_tag('reclamation.contact_id', [ $self->reclamation->customervendor->contacts ],
value_key => 'cp_id',
title_key => 'full_name_dep',
default => $self->reclamation->contact_id,
with_empty => 1,
style => 'width: 300px',
);
}
# build the selection box for shiptos
#
# Needed, if customer/vendor changed.
sub build_shipto_select {
my ($self) = @_;
select_tag('reclamation.shipto_id',
[ {displayable_id => t8("No/individual shipping address"),
shipto_id => '',
},
$self->reclamation->customervendor->shipto
],
value_key => 'shipto_id',
title_key => 'displayable_id',
default => $self->reclamation->shipto_id,
with_empty => 0,
style => 'width: 300px',
);
}
# build the inputs for the cusom shipto dialog
#
# Needed, if customer/vendor changed.
sub build_shipto_inputs {
my ($self) = @_;
my $content = $self->p->render('common/_ship_to_dialog',
cv_obj => $self->reclamation->customervendor,
cs_obj => $self->reclamation->custom_shipto,
cvars => $self->reclamation->custom_shipto->cvars_by_config,
id_selector => '#reclamation_shipto_id');
div_tag($content, id => 'shipto_inputs');
}
# render the info line for business
#
# Needed, if customer/vendor changed.
sub build_business_info_row
{
$_[0]->p->render('reclamation/tabs/basic_data/_business_info_row', SELF => $_[0]);
}
# build the rows for displaying taxes
#
# Called if amounts where recalculated and redisplayed.
sub build_tax_rows {
my ($self) = @_;
my $rows_as_html;
foreach my $tax (sort { $a->{tax}->rate cmp $b->{tax}->rate } @{ $self->reclamation->taxes }) {
$rows_as_html .= $self->p->render(
'reclamation/tabs/basic_data/_tax_row',
TAX => $tax,
TAXINCLUDED => $self->reclamation->taxincluded,
);
}
return $rows_as_html;
}
sub render_price_dialog {
my ($self, $record_item) = @_;
my $price_source = SL::PriceSource->new(
record_item => $record_item,
record => $self->reclamation,
);
$self->js
->run(
'kivi.io.price_chooser_dialog',
t8('Available Prices'),
$self->render(
'reclamation/tabs/basic_data/_price_sources_dialog',
{ output => 0 },
price_source => $price_source,
),
)
->reinit_widgets;
# if (@errors) {
# $self->js->text('#dialog_flash_error_content', join ' ', @errors);
# $self->js->show('#dialog_flash_error');
# }
$self->js->render;
}
sub load_reclamation {
my ($self) = @_;
return if !$::form->{id};
$self->reclamation(SL::DB::Reclamation->new(id => $::form->{id})->load);
# Add an empty custom shipto to the reclamation, so that the dialog can render
# the cvar inputs. You need a custom shipto object to call cvars_by_config to
# get the cvars.
if (!$self->reclamation->custom_shipto) {
$self->reclamation->custom_shipto(SL::DB::Shipto->new(module => 'RC', custom_variables => []));
}
return $self->reclamation;
}
# load or create a new reclamation object
#
# And assign changes from the form to this object.
# If the reclamation is loaded from db, check if items are deleted in the form,
# remove them form the object and collect them for removing from db on saving.
# Then create/update items from form (via make_item) and add them.
sub make_reclamation {
my ($self) = @_;
# add_items adds items to an reclamation with no items for saving, but they
# cannot be retrieved via items until the reclamation is saved. Adding empty
# items to new reclamation here solves this problem.
my $reclamation;
if ($::form->{id}) {
$reclamation = SL::DB::Reclamation->new(id => $::form->{id})->load();
} else {
$reclamation = SL::DB::Reclamation->new(
reclamation_items => [],
currency_id => $::instance_conf->get_currency_id(),
);
my $cv_id_method = $self->cv . '_id';
if ($::form->{$cv_id_method}) {
$reclamation->$cv_id_method($::form->{$cv_id_method});
$self->setup_reclamation_from_cv($reclamation);
}
}
my $form_reclamation_items = delete $::form->{reclamation}->{reclamation_items};
$reclamation->assign_attributes(%{$::form->{reclamation}});
$self->setup_custom_shipto_from_form($reclamation, $::form);
# remove deleted items
$self->item_ids_to_delete([]);
foreach my $idx (reverse 0..$#{$reclamation->reclamation_items}) {
my $item = $reclamation->reclamation_items->[$idx];
if (none { $item->id == $_->{id} } @{$form_reclamation_items}) {
splice @{$reclamation->reclamation_items}, $idx, 1;
push @{$self->item_ids_to_delete}, $item->id;
}
}
my @items;
my $pos = 1;
foreach my $form_attr (@{$form_reclamation_items}) {
my $item = make_item($reclamation, $form_attr);
$item->position($pos);
push @items, $item;
$pos++;
}
$reclamation->add_items(grep {!$_->id} @items);
return $reclamation;
}
# create or update items from form
#
# Make item objects from form values. For items already existing read from db.
# Create a new item else. And assign attributes.
sub make_item {
my ($record, $attr) = @_;
my $item;
$item = first { $_->id == $attr->{id} } @{$record->items} if $attr->{id};
my $is_new = !$item;
# add_custom_variables adds cvars to an reclamation_item with no cvars for
# saving, but they cannot be retrieved via custom_variables until the
# reclamation/reclamation_item is saved. Adding empty custom_variables to new
# reclamationitem here solves this problem.
$item ||= SL::DB::ReclamationItem->new(custom_variables => []);
$item->assign_attributes(%$attr);
if ($is_new) {
my $texts = get_part_texts($item->part, $record->language_id);
$item->longdescription($texts->{longdescription}) if !defined $attr->{longdescription};
$item->project_id($record->globalproject_id) if !defined $attr->{project_id};
$item->lastcost($record->is_sales ? $item->part->lastcost : 0) if !defined $attr->{lastcost_as_number};
}
return $item;
}
# create a new item
#
# This is used to add one item
sub new_item {
my ($record, $attr) = @_;
my $item = SL::DB::ReclamationItem->new;
# Remove attributes where the user left or set the inputs empty.
# So these attributes will be undefined and we can distinguish them
# from zero later on.
for (qw(qty_as_number sellprice_as_number discount_as_percent)) {
delete $attr->{$_} if $attr->{$_} eq '';
}
$item->assign_attributes(%$attr);
my $part = SL::DB::Part->new(id => $attr->{parts_id})->load;
my $price_source = SL::PriceSource->new(record_item => $item, record => $record);
$item->unit($part->unit) if !$item->unit;
my $price_src;
if ( $part->is_assortment ) {
# add assortment items with price 0, as the components carry the price
$price_src = $price_source->price_from_source("");
$price_src->price(0);
} elsif (defined $item->sellprice) {
$price_src = $price_source->price_from_source("");
$price_src->price($item->sellprice);
} else {
$price_src = $price_source->best_price
? $price_source->best_price
: $price_source->price_from_source("");
if ($record->exchangerate) {
$price_src->price($::form->round_amount($price_src->price / $record->exchangerate, 5));
}
$price_src->price(0) if !$price_source->best_price;
}
my $discount_src;
if (defined $item->discount) {
$discount_src = $price_source->discount_from_source("");
$discount_src->discount($item->discount);
} else {
$discount_src = $price_source->best_discount
? $price_source->best_discount
: $price_source->discount_from_source("");
$discount_src->discount(0) if !$price_source->best_discount;
}
my %new_attr;
$new_attr{part} = $part;
$new_attr{description} = $part->description if ! $item->description;
$new_attr{qty} = 1.0 if ! $item->qty;
$new_attr{price_factor_id} = $part->price_factor_id if ! $item->price_factor_id;
$new_attr{sellprice} = $price_src->price;
$new_attr{discount} = $discount_src->discount;
$new_attr{active_price_source} = $price_src;
$new_attr{active_discount_source} = $discount_src;
$new_attr{longdescription} = $part->notes if ! defined $attr->{longdescription};
$new_attr{project_id} = $record->globalproject_id;
$new_attr{lastcost} = $record->is_sales ? $part->lastcost : 0;
# add_custom_variables adds cvars to an reclamationitem with no cvars for saving, but
# they cannot be retrieved via custom_variables until the reclamation/reclamationitem is
# saved. Adding empty custom_variables to new reclamationitem here solves this problem.
$new_attr{custom_variables} = [];
my $texts = get_part_texts($part, $record->language_id,
description => $new_attr{description},
longdescription => $new_attr{longdescription},
);
$item->assign_attributes(%new_attr, %{ $texts });
$item->reclamation($record);
return $item;
}
sub setup_reclamation_from_cv {
my ($self, $reclamation) = @_;
$reclamation->$_($reclamation->customervendor->$_) for (qw(taxzone_id payment_id delivery_term_id currency_id));
$reclamation->intnotes($reclamation->customervendor->notes);
if ($reclamation->is_sales ) {
$reclamation->salesman_id($reclamation->customer->salesman_id || SL::DB::Manager::Employee->current->id);
$reclamation->taxincluded(
defined($reclamation->customervendor->taxincluded_checked)
? $reclamation->customervendor->taxincluded_checked
: $::myconfig{taxincluded_checked}
... Dieser Diff wurde abgeschnitten, weil er die maximale Anzahl anzuzeigender Zeilen überschreitet.

Auch abrufbar als: Unified diff