X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FRecordLinks.pm;h=eec3ce20ee36ec384e38376863bfb1f154050859;hb=d4925a8b60f04674885e30d9316dc0263f8b9a84;hp=152fe95f5e5512e5302faae1a3ae199a6c7f78dd;hpb=792c623f24a4c5985f9c67395f75444d34679f0d;p=kivitendo-erp.git diff --git a/SL/Controller/RecordLinks.pm b/SL/Controller/RecordLinks.pm index 152fe95f5..eec3ce20e 100644 --- a/SL/Controller/RecordLinks.pm +++ b/SL/Controller/RecordLinks.pm @@ -52,6 +52,7 @@ my @link_type_specifics = ( { title => t8('Email'), type => 'email_journal', model => 'EmailJournal', number => 'id', description => 'subject', description_title => t8('Subject'), }, { title => t8('AR Transaction'), type => 'ar_transaction', model => 'Invoice', number => 'invnumber', }, { title => t8('AP Transaction'), type => 'ap_transaction', model => 'PurchaseInvoice', number => 'invnumber', }, + { title => t8('Dunning'), type => 'dunning', model => 'Dunning', number => 'dunning_id', }, ); my @link_types = map { +{ %link_type_defaults, %{ $_ } } } @link_type_specifics;