From: G. Richardson Date: Mon, 10 Aug 2015 13:19:18 +0000 (+0200) Subject: Projektbericht - Sortierung nach Status und Typ repariert X-Git-Tag: release-3.3.0~26 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=6c0a112183a4624a482305997d22f435fe794ad7;p=kivitendo-erp.git Projektbericht - Sortierung nach Status und Typ repariert ist nach Umstellung auf Controller kaputt gegangen --- diff --git a/SL/Controller/Project.pm b/SL/Controller/Project.pm index 604978591..6cffe360e 100644 --- a/SL/Controller/Project.pm +++ b/SL/Controller/Project.pm @@ -246,12 +246,13 @@ sub init_models { by => 'projectnumber', dir => 1, }, - customer => t8('Customer'), - description => t8('Description'), - projectnumber => t8('Project Number'), - project_type => t8('Project Type'), + customer => t8('Customer'), + description => t8('Description'), + projectnumber => t8('Project Number'), + project_type => t8('Project Type'), + project_status => t8('Project Status'), }, - with_objects => [ 'customer' ], + with_objects => [ 'customer', 'project_status', 'project_type' ], ); }