From e5d70ebcb6b7c240378ac5b1a04f12716e15ab33 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 23 May 2016 12:51:03 +0200 Subject: [PATCH] Projektliste: Kundenname bei PDF-/CSV-Export richtig ausgeben MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Der Controller-Helfer für den ReportGenerator muss aus Objekten Werte machen können. Wie das geschieht, wird über die Spaltendefinition festgelegt. Für Nicht-HTML-Anzeige wird entweder eine zur Verfügung gestellte Unterfunktion benutzt, oder aber auf dem Objekt wird der Spaltenname als Funktion aufgerufen. Für die Spalte »customer« wird bei einem Projekt also das SL::DB::Customer-Objekt genutzt, wenn keine manuelle Sub angegeben wurde. Fixt #166. --- SL/Controller/Project.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SL/Controller/Project.pm b/SL/Controller/Project.pm index fc72036ee..9a75836fe 100644 --- a/SL/Controller/Project.pm +++ b/SL/Controller/Project.pm @@ -263,7 +263,8 @@ sub prepare_report { description => { obj_link => sub { $self->url_for(action => 'edit', id => $_[0]->id, callback => $callback) } }, project_type => { sub => sub { $_[0]->project_type->description } }, project_status => { sub => sub { $_[0]->project_status->description }, text => t8('Status') }, - customer => { raw_data => sub { $_[0]->customer_id ? $self->presenter->customer($_[0]->customer, display => 'table-cell', callback => $callback) : '' } }, + customer => { sub => sub { !$_[0]->customer_id ? '' : $_[0]->customer->name }, + raw_data => sub { !$_[0]->customer_id ? '' : $self->presenter->customer($_[0]->customer, display => 'table-cell', callback => $callback) } }, active => { sub => sub { $_[0]->active ? $::locale->text('Active') : $::locale->text('Inactive') }, text => $::locale->text('Active') }, valid => { sub => sub { $_[0]->valid ? $::locale->text('Valid') : $::locale->text('Invalid') }, -- 2.20.1