20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/oddb/html/view/list.rb', line 20
def sort_link(thkey, matrix, component)
sortlink = HtmlGrid::Link.new(thkey, @model, @session, self)
args = [ query_key, model.query ]
args.concat query_args
args.push('sortvalue', component.to_s)
sortlink.href = @lookandfeel._event_url(@session.event, args)
sortlink.css_class = css_head_map[matrix]
sortlink.css_id = thkey
titlekey = thkey.sub(/^th/, "tt")
if(title = @lookandfeel.lookup(titlekey))
link = HtmlGrid::Link.new(titlekey, @model, @session, self)
sortlink.dojo_title = link
case titlekey
when "tt_active_agents"
link.value = @lookandfeel.lookup(:tt_active_agents_link)
link.href = "ftp://ftp.dimdi.de/pub/amg/darform_011006.txt"
sortlink.dojo_title = [ title, link ]
when "tt_atc"
link.href = "http://www.whocc.no/atcddd/atcsystem.html"
when "tt_company"
link.href = "https://www.gkv-spitzenverband.de/Befreiungsliste_Arzneimittel_Versicherte.gkvnet"
when "tt_price_festbetrag"
link.href = "http://www.dimdi.de/static/de/amg/fbag/index.htm"
when "tt_price_public", "tt_price_difference"
link.href = "ftp://ftp.dimdi.de/pub/amg/satzbeschr_010108.pdf"
when "tt_price_exfactory"
link.href = "http://wiki.oddb.org/uploads/Main/Aenderung_der_AMPVo_per_1.1.2004_-_632.pdf"
else
sortlink.dojo_title = title
end
end
sortlink
end
|