X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FRecordLinks.pm;h=49661cbe030b4a60f33cc0ca9cf39b63a5b6a85f;hb=d6fed9b55a11dca1cfd9cd6f43940a945533d318;hp=c5d30c72f09b405a4746be95816667362076583f;hpb=2065624062cd59d7d21a6e1f39ae433a9668301e;p=kivitendo-erp.git diff --git a/SL/Controller/RecordLinks.pm b/SL/Controller/RecordLinks.pm index c5d30c72f..49661cbe0 100644 --- a/SL/Controller/RecordLinks.pm +++ b/SL/Controller/RecordLinks.pm @@ -55,6 +55,7 @@ my @link_type_specifics = ( { 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', }, + { title => t8('GL Transaction'), type => 'gl_transaction', model => 'GLTransaction', number => 'reference', }, ); my @link_types = map { +{ %link_type_defaults, %{ $_ } } } @link_type_specifics;