From: Sven Schöling Date: Wed, 18 Apr 2012 13:20:49 +0000 (+0200) Subject: SellPriceInformation: richtige Nummer anzeigen X-Git-Tag: release-3.0.0beta1~343^2~13 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=9b3ad8d9289143e82eb21179990dce211954d1ad;p=kivitendo-erp.git SellPriceInformation: richtige Nummer anzeigen --- diff --git a/SL/Controller/SellPriceInformation.pm b/SL/Controller/SellPriceInformation.pm index d82f66707..522f10125 100644 --- a/SL/Controller/SellPriceInformation.pm +++ b/SL/Controller/SellPriceInformation.pm @@ -68,7 +68,7 @@ sub column_defs { transdate => { text => $::locale->text('Date'), sub => sub { $_[0]->order->transdate_as_date }}, ordnumber => { text => $::locale->text('Number'), - sub => sub { $_[0]->order->ordnumber }, + sub => sub { $_[0]->order->number }, obj_link => sub { $self->link_to($_[0]->order) }}, customer => { text => $::locale->text('Customer'), sub => sub { $_[0]->order->customer->name },