Pflichtenhefte: show & Bearbeiten in eigenen Tab
[kivitendo-erp.git] / js / requirement_spec.js
1 /* Functions used for the requirement specs */
2
3 // -----------------------------------------------------------------------------
4 // ------------------------------ basic settings -------------------------------
5 // -----------------------------------------------------------------------------
6
7 function basic_settings_customer_changed(customer_ctrl, value_ctrl) {
8   $.get(
9     'controller.pl?action=Customer/get_hourly_rate',
10     { id: $(customer_ctrl).val() },
11     function(data) { if (data.hourly_rate_formatted) $(value_ctrl).val(data.hourly_rate_formatted); }
12   );
13 }
14
15 // -----------------------------------------------------------------------------
16 // ------------------------------ the tree itself ------------------------------
17 // -----------------------------------------------------------------------------
18
19 function requirement_spec_tree_check_move(data) {
20   var dragged_type = data.o.data('type');
21   var dropped_type = data.r.data('type');
22
23   // console.debug("dragged " + dragged_type + " dropped " + dropped_type + " dir " + data.p);
24
25   if ((dragged_type == "sections") || (dragged_type == "text-blocks-front") || (dragged_type == "text-blocks-back"))
26     return false;
27
28   if (dragged_type == "text-block") {
29     if ((dropped_type == "text-blocks-front") || (dropped_type == "text-blocks-back"))
30       return (data.p == "inside") || (data.p == "last");
31     if (dropped_type == "text-block")
32       return (data.p == "before") || (data.p == "after");
33
34     return false;
35   }
36
37   if (dragged_type == "section") {
38     if (dropped_type == "sections")
39       return (data.p == "inside") || (data.p == "last");
40     if (dropped_type == "section")
41       return (data.p == "before") || (data.p == "after");
42
43     return false;
44   }
45
46   // dragged_type == (sub) function blocks
47   if ((dropped_type == "text-block") || (dropped_type == "text-blocks-front") || (dropped_type == "text-blocks-back"))
48     return false;
49
50   var dropped_depth = dropped_type == "sections" ? 0 : dropped_type == "section" ? 1 : data.r.parent().parent().data('type') != "function-block" ? 2 : 3;
51   if ((data.p == "inside") || (data.p == "last"))
52     dropped_depth++;
53
54   var dragged_depth = 1 + data.o.children('ul').size();
55
56   // console.debug("dropped_depth " + dropped_depth + " dragged_depth " + dragged_depth);
57
58   return (2 <= dropped_depth) && ((dragged_depth + dropped_depth) <= 4);
59 }
60
61 function requirement_spec_tree_node_moved(event) {
62   // console.debug("node moved");
63   var move_obj   = $.jstree._reference('#tree')._get_move();
64   var dragged    = move_obj.o;
65   var dropped    = move_obj.r;
66   var controller = dragged.data("type") == "text-block" ? "RequirementSpecTextBlock" : "RequirementSpecItem";
67   var data       = {
68     action:               controller + "/dragged_and_dropped",
69     requirement_spec_id:  $('#requirement_spec_id').val(),
70     id:                   dragged.data("id"),
71     dropped_id:           dropped.data("id"),
72     dropped_type:         dropped.data("type"),
73     position:             move_obj.p,
74     current_content_type: $('#current_content_type').val(),
75     current_content_id:   $('#current_content_id').val()
76   };
77   // console.debug("controller: " + controller);
78   // console.debug(data);
79
80   $.post("controller.pl", data, eval_json_result);
81
82   return true;
83 }
84
85 function requirement_spec_tree_node_clicked(event) {
86   var node = $.jstree._reference('#tree')._get_node(event.target);
87   var type = node ? node.data('type') : undefined;
88
89   if (!type)
90     return;
91
92   var url = 'controller.pl?action='
93   $.get('controller.pl', {
94     action:               (/^text-block/.test(type) ? 'RequirementSpecTextBlock' : 'RequirementSpecItem') + '/ajax_list.js',
95     requirement_spec_id:  $('#requirement_spec_id').val(),
96     current_content_type: $('#current_content_type').val(),
97     current_content_id:   $('#current_content_id').val(),
98     clicked_type:         type,
99     clicked_id:           node.data('id')
100   }, eval_json_result);
101 }
102
103 // -------------------------------------------------------------------------
104 // ------------------------------ text blocks ------------------------------
105 // -------------------------------------------------------------------------
106
107 function find_text_block_id(clicked_elt) {
108   // console.log("id: " + $(clicked_elt).attr('id'));
109   var id = $(clicked_elt).attr('id');
110   if (/^text-block-\d+$/.test(id)) {
111     // console.log("find_text_block_id: case 1: " + id.substr(11));
112     return id.substr(11) * 1;
113   }
114
115   id = $(clicked_elt).closest("[id*=text-block-]").attr('id')
116   if (/^text-block-\d+$/.test(id)) {
117     // console.log("find_text_block_id: case 2: " + id.substr(11));
118     return id.substr(11) * 1;
119   }
120
121   id = $(clicked_elt).closest("[id*=tb-]").attr('id')
122   if (/^tb-\d+$/.test(id)) {
123     // console.log("find_text_block_id: case 3: " + id.substr(3));
124     return id.substr(3) * 1;
125   }
126
127   // console.log("find_text_block_id: case undef");
128   return undefined;
129 }
130
131 function find_text_block_output_position(clicked_elt) {
132   var output_position = $(clicked_elt).closest('#text-block-list-container').find('#text_block_output_position').val();
133   if (output_position)
134     return output_position;
135
136   var type = $(clicked_elt).closest('#tb-back,#tb-front').data('type');
137   if (/^text-blocks-(front|back)/.test(type))
138     return type == "text-blocks-front" ? 0 : 1;
139
140   return undefined;
141 }
142
143 function disable_edit_text_block_commands(key, opt) {
144   return find_text_block_id(opt.$trigger) == undefined;
145 }
146
147 function standard_text_block_ajax_call(key, opt, other_data) {
148   var data = {
149     action:               "RequirementSpecTextBlock/ajax_" + key,
150     requirement_spec_id:  $('#requirement_spec_id').val(),
151     id:                   find_text_block_id(opt.$trigger),
152     output_position:      find_text_block_output_position(opt.$trigger),
153     current_content_type: $('#current_content_type').val(),
154     current_content_id:   $('#current_content_id').val()
155   };
156
157   $.post("controller.pl", $.extend(data, other_data || {}), eval_json_result);
158
159   return true;
160 }
161
162 function submit_edit_text_block_form(id_base) {
163   var id   = $('#' + id_base + '_id').val();
164   var url  = "controller.pl?" + $('#' + id_base + '_form').serialize();
165   var data = {
166     action:      'RequirementSpecTextBlock/ajax_' + (id ? 'update' : 'create'),
167     id:          id,
168     form_prefix: id_base
169   };
170   $.post(url, data, eval_json_result);
171   return true;
172 }
173
174 function cancel_edit_text_block_form(id_base) {
175   var id = $('#' + id_base + '_id').val();
176   $('#' + id_base + '_form').remove();
177   if (id)
178     $('#text-block-' + id).show();
179 }
180
181 // --------------------------------------------------------------------------------
182 // ------------------------------ sections and items ------------------------------
183 // --------------------------------------------------------------------------------
184
185 function find_item_id(clicked_elt) {
186   // console.log("clicked id: " + $(clicked_elt).attr('id'));
187   var id     = $(clicked_elt).attr('id');
188   var result = /^(function-block|function-block-content|sub-function-block|sub-function-block-content|section|section-header)-(\d+)$/.exec(id);
189   if (result) {
190     // console.log("find_item_id: case 1: " + result[2]);
191     return result[2];
192   }
193
194   id = $(clicked_elt).closest("[id*=fb-]").attr('id')
195   if (/^fb-\d+$/.test(id)) {
196     // console.log("find_item_id: case 2: " + id.substr(3));
197     return id.substr(3) * 1;
198   }
199
200   // console.log("find_item_id: case undef");
201   return undefined;
202 }
203
204 function standard_item_ajax_call(key, opt, other_data) {
205   var data = {
206     action:               "RequirementSpecItem/ajax_" + key,
207     requirement_spec_id:  $('#requirement_spec_id').val(),
208     id:                   find_item_id(opt.$trigger),
209     current_content_type: $('#current_content_type').val(),
210     current_content_id:   $('#current_content_id').val()
211   };
212
213   // console.log("I would normally POST the following now:");
214   // console.log(data);
215   $.post("controller.pl", $.extend(data, other_data || {}), eval_json_result);
216
217   return true;
218 }
219
220 function disable_edit_item_commands(key, opt) {
221   return find_item_id(opt.$trigger) == undefined;
222 }
223
224 function disable_add_function_block_command(key, opt) {
225   if (find_item_id(opt.$trigger))
226     return false;
227   return opt.$trigger.attr('id') != "section-list-empty";
228 }
229
230 function submit_edit_item_form(id_base) {
231   var id   = $('#' + id_base + '_id').val();
232   var url  = "controller.pl?" + $('#' + id_base + '_form').serialize();
233   var data = {
234     action:      'RequirementSpecItem/ajax_' + (id ? 'update' : 'create'),
235     id:          id,
236     form_prefix: id_base
237   };
238   $.post(url, data, eval_json_result);
239   return true;
240 }
241
242 function cancel_edit_item_form(form_id_base, options) {
243   $('#' + form_id_base + '_form').remove();
244   if (!options)
245     return;
246   if (options.to_show)
247     $(options.to_show).show();
248   if (options.to_hide_if_empty && (1 == $(options.to_hide_if_empty).children().size()))
249     $(options.to_hide_if_empty).hide();
250 }