Revision b8c7ffdf
Von Bernd Bleßmann vor mehr als 4 Jahren hinzugefügt
SL/Controller/SimpleSystemSetting.pm | ||
---|---|---|
56 | 56 |
], |
57 | 57 |
}, |
58 | 58 |
|
59 |
contact_title => { |
|
60 |
class => 'ContactTitle', |
|
61 |
auth => 'config', |
|
62 |
titles => { |
|
63 |
list => t8('Contact Titles'), |
|
64 |
add => t8('Add title'), |
|
65 |
edit => t8('Edit title'), |
|
66 |
}, |
|
67 |
}, |
|
68 |
|
|
59 | 69 |
department => { |
60 | 70 |
class => 'Department', |
61 | 71 |
titles => { |
SL/DB/Manager/ContactTitle.pm | ||
---|---|---|
7 | 7 |
|
8 | 8 |
use parent qw(SL::DB::Helper::Manager); |
9 | 9 |
|
10 |
use SL::DB::Helper::Sorted; |
|
11 |
|
|
10 | 12 |
sub object_class { 'SL::DB::ContactTitle' } |
11 | 13 |
|
12 | 14 |
__PACKAGE__->make_manager_methods; |
13 | 15 |
|
16 |
sub _sort_spec { |
|
17 |
return ( default => [ 'description', 1 ], |
|
18 |
columns => { SIMPLE => 'ALL', |
|
19 |
map { ( $_ => "lower(contact_titles.$_)" ) } qw(description) |
|
20 |
}); |
|
21 |
} |
|
22 |
|
|
14 | 23 |
1; |
locale/de/all | ||
---|---|---|
236 | 236 |
'Add sub function block' => 'Unterfunktionsblock hinzufügen', |
237 | 237 |
'Add taxzone' => 'Steuerzone hinzufügen', |
238 | 238 |
'Add text block' => 'Textblock erfassen', |
239 |
'Add title' => 'Titel hinzufügen', |
|
239 | 240 |
'Add unit' => 'Einheit hinzufügen', |
240 | 241 |
'Added sections and function blocks: #1' => 'Hinzugefügte Abschnitte und Funktionsblöcke: #1', |
241 | 242 |
'Added text blocks: #1' => 'Hinzugefügte Textblöcke: #1', |
... | ... | |
669 | 670 |
'Contact Person' => 'Ansprechperson', |
670 | 671 |
'Contact Person (database ID)' => 'Ansprechperson (Datenbank-ID)', |
671 | 672 |
'Contact Person (name)' => 'Ansprechperson (Name)', |
673 |
'Contact Titles' => 'Titel von Ansprechpersonen', |
|
672 | 674 |
'Contact deleted.' => 'Ansprechperson gelöscht.', |
673 | 675 |
'Contact is in use and was flagged invalid.' => 'Die Ansprechperson ist noch in Verwendung und wurde deshalb nur als ungültig markiert.', |
674 | 676 |
'Contact person (surname)' => 'Ansprechperson (Nachname)', |
... | ... | |
1244 | 1246 |
'Edit the request_quotation' => 'Bearbeiten der Preisanfrage', |
1245 | 1247 |
'Edit the sales_order' => 'Bearbeiten des Auftrags', |
1246 | 1248 |
'Edit the sales_quotation' => 'Bearbeiten des Angebots', |
1249 |
'Edit title' => 'Titiel bearbeiten', |
|
1247 | 1250 |
'Edit units' => 'Einheiten bearbeiten', |
1248 | 1251 |
'Edit user signature' => 'Benutzersignatur bearbeiten', |
1249 | 1252 |
'Editable' => 'Bearbeitbar', |
locale/en/all | ||
---|---|---|
236 | 236 |
'Add sub function block' => '', |
237 | 237 |
'Add taxzone' => '', |
238 | 238 |
'Add text block' => '', |
239 |
'Add title' => '', |
|
239 | 240 |
'Add unit' => '', |
240 | 241 |
'Added sections and function blocks: #1' => '', |
241 | 242 |
'Added text blocks: #1' => '', |
... | ... | |
669 | 670 |
'Contact Person' => '', |
670 | 671 |
'Contact Person (database ID)' => '', |
671 | 672 |
'Contact Person (name)' => '', |
673 |
'Contact Titles' => '', |
|
672 | 674 |
'Contact deleted.' => '', |
673 | 675 |
'Contact is in use and was flagged invalid.' => '', |
674 | 676 |
'Contact person (surname)' => '', |
... | ... | |
1244 | 1246 |
'Edit the request_quotation' => '', |
1245 | 1247 |
'Edit the sales_order' => '', |
1246 | 1248 |
'Edit the sales_quotation' => '', |
1249 |
'Edit title' => '', |
|
1247 | 1250 |
'Edit units' => '', |
1248 | 1251 |
'Edit user signature' => '', |
1249 | 1252 |
'Editable' => '', |
menus/user/00-erp.yaml | ||
---|---|---|
1182 | 1182 |
params: |
1183 | 1183 |
action: SimpleSystemSetting/list |
1184 | 1184 |
type: business |
1185 |
- parent: system |
|
1186 |
id: system_contact_titles |
|
1187 |
name: Contact Titles |
|
1188 |
order: 1420 |
|
1189 |
params: |
|
1190 |
action: SimpleSystemSetting/list |
|
1191 |
type: contact_title |
|
1185 | 1192 |
- parent: system |
1186 | 1193 |
id: system_project_types |
1187 | 1194 |
name: Project Types |
Auch abrufbar als: Unified diff
Titel von Ansprechpersonen: SimpleSettings-Controller zum Editieren