X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=templates%2Fwebpages%2Frequirement_spec%2Fshow.html;h=c627a1685d479daf0a1cd342a8d909cfcfed7380;hb=21834d2cfc47063cd0a730a20ff532d07d94def1;hp=f3e75e721f87396dfa54cbc2988cf8370cbd0950;hpb=a9cc182f3613fd21a698c9f40b8c5908d92c9da5;p=kivitendo-erp.git diff --git a/templates/webpages/requirement_spec/show.html b/templates/webpages/requirement_spec/show.html index f3e75e721..c627a1685 100644 --- a/templates/webpages/requirement_spec/show.html +++ b/templates/webpages/requirement_spec/show.html @@ -1,21 +1,30 @@ -[%- USE JSON -%][%- USE HTML %][%- USE L %][%- USE LxERP %][%- USE P -%] +[%- USE JSON -%][%- USE HTML %][%- USE L %][%- USE LxERP %][%- USE P -%][%- USE JavaScript -%] +[% SET sections = SELF.requirement_spec.sections_sorted || [] %] [%- INCLUDE 'common/flash.html' %] [%- INCLUDE 'requirement_spec/_header.html' %] -[%- L.hidden_tag('requirement_spec_id', SELF.requirement_spec.id) -%] +[%- L.hidden_tag('requirement_spec_id', SELF.requirement_spec.id, 'data-is-template'=(SELF.requirement_spec.is_template ? 1 : 0)) -%] -
+
-
-
+
+ [%- UNLESS SELF.requirement_spec.is_template %] +
[%- INCLUDE 'requirement_spec/_version.html' requirement_spec=SELF.requirement_spec -%] -
+
+ [%- END %]
@@ -46,7 +55,7 @@ $(function() { metadata: { type: "text-blocks-front" }, attr: { id: "tb-front", class: "text-block-context-menu" }, children: [ -[% FOREACH tb = SELF.requirement_spec.text_blocks_for_position(0) %] +[% FOREACH tb = SELF.requirement_spec.text_blocks_sorted(output_position=0) %] [% P.requirement_spec_text_block_jstree_data(tb).json %][% IF !loop.last %],[% END %] [% END %] ]}, @@ -55,7 +64,7 @@ $(function() { metadata: { type: "sections" }, attr: { id: "sections", class: "section-context-menu" }, children: [ -[% FOREACH section = SELF.requirement_spec.sections %] +[% FOREACH section = sections %] [% P.requirement_spec_item_jstree_data(section).json %][% IF !loop.last %],[% END %] [% END %] ]}, @@ -64,43 +73,35 @@ $(function() { metadata: { type: "text-blocks-back" }, attr: { id: "tb-back", class: "text-block-context-menu" }, children: [ -[% FOREACH tb = SELF.requirement_spec.text_blocks_for_position(1) %] +[% FOREACH tb = SELF.requirement_spec.text_blocks_sorted(output_position=1) %] [% P.requirement_spec_text_block_jstree_data(tb).json %][% IF !loop.last %],[% END %] [% END %] - ]}]; + ]} + ]; - $('#tree').jstree({ - core: { - animation: 0, - initially_open: [ "tb-front", "tb-back", "sections" -[%- FOREACH section = SELF.requirement_spec.sections -%] + var initially_open = ['tb-front', 'tb-back', 'sections' +[%- FOREACH section = sections -%] , "fb-[% section.id %]" [%- FOREACH function_block = section.children -%] , "fb-[% function_block.id -%]" [%- END -%] [%- END -%] - ]}, - json_data: { - data: tree_data - }, - crrm: { - move: { - check_move: requirement_spec_tree_check_move, - open_move: true - } - }, - themes: { - theme: "requirement-spec" - }, - plugins: [ "themes", "json_data", "ui", "crrm", "dnd" ] - }) - .bind("move_node.jstree", requirement_spec_tree_node_moved) - .bind("click.jstree", requirement_spec_tree_node_clicked); + ]; + + kivi.requirement_spec.initialize_requirement_spec({ + initially_open: initially_open + , tree_data: tree_data + , is_template: [% SELF.requirement_spec.is_template ? 'true' : 'false' %] + , html_template_exists: [% SELF.html_template ? 'true' : 'false' %] [% IF SELF.requirement_spec_item %] - $.jstree._reference("#tree").select_node('#fb-[% SELF.requirement_spec_item.id %]', true); + , initially_selected_node: '#fb-[% SELF.requirement_spec_item.id %]' [% END %] - - create_requirement_spec_context_menus(); + , time_based_units: { + [% FOREACH unit = SELF.time_based_units %] + [% UNLESS loop.first %], [% END %] "[% JavaScript.escape(unit.name) %]": true + [% END %] + } + }); }); -->