Pflichtenheftitems: RETURN in Zeitschätzungs-Input via AJAX submitten gefixt
[kivitendo-erp.git] / js / requirement_spec.js
1 /* Functions used for the requirement specs */
2
3 namespace("kivi.requirement_spec", function(ns) {
4
5 // -----------------------------------------------------------------------------
6 // ------------------------------ basic settings -------------------------------
7 // -----------------------------------------------------------------------------
8
9 ns.basic_settings_customer_changed = function(customer_ctrl, value_ctrl) {
10   $.get(
11     'controller.pl?action=Customer/get_hourly_rate',
12     { id: $(customer_ctrl).val() },
13     function(data) { if (data.hourly_rate_formatted) $(value_ctrl).val(data.hourly_rate_formatted); }
14   );
15 };
16
17 // -----------------------------------------------------------------------------
18 // ------------------------------ the tree itself ------------------------------
19 // -----------------------------------------------------------------------------
20
21 ns.tree_check_move = function(data) {
22   var dragged_type = data.o.data('type');
23   var dropped_type = data.r.data('type');
24
25   // console.debug("dragged " + dragged_type + " dropped " + dropped_type + " dir " + data.p);
26
27   if ((dragged_type == "sections") || (dragged_type == "text-blocks-front") || (dragged_type == "text-blocks-back"))
28     return false;
29
30   if (dragged_type == "text-block") {
31     if ((dropped_type == "text-blocks-front") || (dropped_type == "text-blocks-back"))
32       return (data.p == "inside") || (data.p == "last");
33     if (dropped_type == "text-block")
34       return (data.p == "before") || (data.p == "after");
35
36     return false;
37   }
38
39   if (dragged_type == "section") {
40     if (dropped_type == "sections")
41       return (data.p == "inside") || (data.p == "last");
42     if (dropped_type == "section")
43       return (data.p == "before") || (data.p == "after");
44
45     return false;
46   }
47
48   // dragged_type == (sub) function blocks
49   if ((dropped_type == "text-block") || (dropped_type == "text-blocks-front") || (dropped_type == "text-blocks-back"))
50     return false;
51
52   var dropped_depth = dropped_type == "sections" ? 0 : dropped_type == "section" ? 1 : data.r.parent().parent().data('type') != "function-block" ? 2 : 3;
53   if ((data.p == "inside") || (data.p == "last"))
54     dropped_depth++;
55
56   var dragged_depth = 1 + data.o.children('ul').size();
57
58   // console.debug("dropped_depth " + dropped_depth + " dragged_depth " + dragged_depth);
59
60   return (2 <= dropped_depth) && ((dragged_depth + dropped_depth) <= 4);
61 };
62
63 ns.tree_node_moved = function(event) {
64   // console.debug("node moved");
65   var move_obj   = $.jstree._reference('#tree')._get_move();
66   var dragged    = move_obj.o;
67   var dropped    = move_obj.r;
68   var controller = dragged.data("type") == "text-block" ? "RequirementSpecTextBlock" : "RequirementSpecItem";
69   var data       = {
70     action:               controller + "/dragged_and_dropped",
71     requirement_spec_id:  $('#requirement_spec_id').val(),
72     id:                   dragged.data("id"),
73     dropped_id:           dropped.data("id"),
74     dropped_type:         dropped.data("type"),
75     position:             move_obj.p,
76     current_content_type: $('#current_content_type').val(),
77     current_content_id:   $('#current_content_id').val()
78   };
79   // console.debug("controller: " + controller);
80   // console.debug(data);
81
82   $.post("controller.pl", data, kivi.eval_json_result);
83
84   return true;
85 };
86
87 ns.tree_node_clicked = function(event) {
88   var node = $.jstree._reference('#tree')._get_node(event.target);
89   var type = node ? node.data('type') : undefined;
90
91   if (!type)
92     return;
93
94   var url = 'controller.pl?action='
95   $.get('controller.pl', {
96     action:               (/^text-block/.test(type) ? 'RequirementSpecTextBlock' : 'RequirementSpecItem') + '/ajax_list.js',
97     requirement_spec_id:  $('#requirement_spec_id').val(),
98     current_content_type: $('#current_content_type').val(),
99     current_content_id:   $('#current_content_id').val(),
100     clicked_type:         type,
101     clicked_id:           node.data('id')
102   }, kivi.eval_json_result);
103 };
104
105 // -------------------------------------------------------------------------
106 // ------------------------------ text blocks ------------------------------
107 // -------------------------------------------------------------------------
108
109 ns.find_text_block_id = function(clicked_elt) {
110   var id = $(clicked_elt).attr('id');
111
112   if (/^text-block-picture-\d+$/.test(id))
113     id = $(clicked_elt).closest('.text-block-context-menu').attr('id');
114
115   // console.log("id: " + id);
116   if (/^text-block-\d+$/.test(id)) {
117     // console.log("find_text_block_id: case 1: " + id.substr(11));
118     return id.substr(11) * 1;
119   }
120
121   id = $(clicked_elt).closest("[id*=text-block-]").attr('id')
122   if (/^text-block-\d+$/.test(id)) {
123     // console.log("find_text_block_id: case 2: " + id.substr(11));
124     return id.substr(11) * 1;
125   }
126
127   id = $(clicked_elt).closest("[id*=tb-]").attr('id')
128   if (/^tb-\d+$/.test(id)) {
129     // console.log("find_text_block_id: case 3: " + id.substr(3));
130     return id.substr(3) * 1;
131   }
132
133   // console.log("find_text_block_id: case undef, id: " + id);
134   return undefined;
135 };
136
137 ns.find_text_block_output_position = function(clicked_elt) {
138   var output_position = $(clicked_elt).closest('#text-block-list-container').find('#text_block_output_position').val();
139   if (output_position)
140     return output_position;
141
142   var type = $(clicked_elt).closest('#tb-back,#tb-front').data('type') || $('#current_content_type').val();
143   if (/^text-blocks-(front|back)/.test(type))
144     return type == "text-blocks-front" ? 0 : 1;
145
146   return undefined;
147 };
148
149 ns.disable_edit_text_block_commands = function(key, opt) {
150   return ns.find_text_block_id(opt.$trigger) == undefined;
151 };
152
153 ns.standard_text_block_ajax_call = function(key, opt, other_data) {
154   var data = {
155     action:               "RequirementSpecTextBlock/ajax_" + key,
156     requirement_spec_id:  $('#requirement_spec_id').val(),
157     id:                   ns.find_text_block_id(opt.$trigger),
158     output_position:      ns.find_text_block_output_position(opt.$trigger),
159     current_content_type: $('#current_content_type').val(),
160     current_content_id:   $('#current_content_id').val()
161   };
162
163   $.post("controller.pl", $.extend(data, other_data || {}), kivi.eval_json_result);
164
165   return true;
166 };
167
168 ns.cancel_edit_text_block_form = function(id_base) {
169   var id = $('#' + id_base + '_id').val();
170   $('#' + id_base + '_form').remove();
171   if (id)
172     $('#text-block-' + id).show();
173 };
174
175 ns.ask_delete_text_block = function(key, opt) {
176   if (confirm(kivi.t8("Are you sure?")))
177     ns.standard_text_block_ajax_call(key, opt);
178   return true;
179 };
180
181 ns.find_text_block_picture_id = function(clicked_elt) {
182   var id    = $(clicked_elt).attr('id');
183   var match = id.match(/^text-block-picture-(\d+)$/);
184   if (match)
185     return match[1] * 1;
186
187   return undefined;
188 };
189
190 ns.add_edit_text_block_picture_ajax_call = function(key, opt) {
191   var title = key == 'add_picture' ? kivi.t8('Add picture to text block') : kivi.t8('Edit picture');
192
193   kivi.popup_dialog({ url:    'controller.pl',
194                       data:   { action:     'RequirementSpecTextBlock/ajax_' + key,
195                                 id:         ns.find_text_block_id(opt.$trigger),
196                                 picture_id: ns.find_text_block_picture_id(opt.$trigger) },
197                       dialog: { title:      title }});
198
199   return true;
200 };
201
202 ns.standard_text_block_picture_ajax_call = function(key, opt) {
203   var data = {
204       action: "RequirementSpecTextBlock/ajax_" + key
205     , id:     ns.find_text_block_picture_id(opt.$trigger)
206   };
207
208   if (key == 'download_picture')
209     $.download("controller.pl", data);
210   else
211     $.post("controller.pl", data, kivi.eval_json_result);
212
213   return true;
214 };
215
216 ns.ask_delete_text_block_picture = function(key, opt) {
217   if (confirm(kivi.t8("Are you sure?")))
218     ns.standard_text_block_picture_ajax_call(key, opt);
219   return true;
220 };
221
222 ns.handle_text_block_picture_popup_menu_markings = function(opt, add) {
223   var id = ns.find_text_block_picture_id(opt.$trigger);
224   if (id)
225     $('#text-block-picture-' + id ).toggleClass('selected', add);
226   return true;
227 };
228
229 ns.text_block_picture_popup_menu_shown = function(opt) {
230   return ns.handle_text_block_picture_popup_menu_markings(opt, true);
231 };
232
233 ns.text_block_picture_popup_menu_hidden = function(opt) {
234   return ns.handle_text_block_picture_popup_menu_markings(opt, false);
235 };
236
237 ns.make_text_block_picture_lists_sortable = function() {
238   kivi.run_once_for(".requirement-spec-text-block-picture-list", 'make-text-block-picture-list-sortable', function($elt) {
239     $elt.sortable({
240       stop: function(event, ui) {
241         $.post('controller.pl?action=RequirementSpecTextBlock/reorder_pictures', {
242           'picture_id[]': $($elt.sortable('toArray')).map(function(idx, str) { return str.replace('text-block-picture-', ''); }).toArray()
243         });
244         return ui;
245       }
246       , distance: 5
247     });
248   });
249 };
250
251 // --------------------------------------------------------------------------------
252 // ------------------------------ sections and items ------------------------------
253 // --------------------------------------------------------------------------------
254
255 ns.find_item_id = function(clicked_elt) {
256   // console.log("clicked id: " + $(clicked_elt).attr('id'));
257   var id     = $(clicked_elt).attr('id');
258   var result = /^(function-block|function-block-content|sub-function-block|sub-function-block-content|section|section-header)-(\d+)$/.exec(id);
259   if (result) {
260     // console.log("find_item_id: case 1: " + result[2]);
261     return result[2];
262   }
263
264   id = $(clicked_elt).closest("[id*=fb-]").attr('id')
265   if (/^fb-\d+$/.test(id)) {
266     // console.log("find_item_id: case 2: " + id.substr(3));
267     return id.substr(3) * 1;
268   }
269
270   // console.log("find_item_id: case undef");
271   return undefined;
272 };
273
274 ns.standard_item_ajax_call = function(key, opt, other_data) {
275   var data = {
276     action:               "RequirementSpecItem/ajax_" + key,
277     requirement_spec_id:  $('#requirement_spec_id').val(),
278     id:                   ns.find_item_id(opt.$trigger),
279     current_content_type: $('#current_content_type').val(),
280     current_content_id:   $('#current_content_id').val()
281   };
282
283   // console.log("I would normally POST the following now:");
284   // console.log(data);
285   $.post("controller.pl", $.extend(data, other_data || {}), kivi.eval_json_result);
286
287   return true;
288 };
289
290 ns.disable_edit_item_commands = function(key, opt) {
291   return ns.find_item_id(opt.$trigger) == undefined;
292 };
293
294 ns.disable_add_function_block_command = function(key, opt) {
295   return opt.$trigger.attr('id') == "sections";
296 };
297
298 ns.cancel_edit_item_form = function(form_id_base, options) {
299   $('#' + form_id_base + '_form').remove();
300   if (!options)
301     return;
302   if (options.to_show)
303     $(options.to_show).show();
304   if (options.to_hide_if_empty && (1 == $(options.to_hide_if_empty).children().size()))
305     $(options.to_hide_if_empty).hide();
306 };
307
308 ns.ask_delete_item = function(key, opt) {
309   if (confirm(kivi.t8("Are you sure?")))
310     ns.standard_item_ajax_call(key, opt);
311   return true;
312 };
313
314 ns.handle_text_block_popup_menu_markings = function(opt, add) {
315   var id = ns.find_text_block_id(opt.$trigger);
316   if (id)
317     $('#text-block-' + id).toggleClass('selected', add);
318   return true;
319 };
320
321 ns.text_block_popup_menu_shown = function(opt) {
322   return ns.handle_text_block_popup_menu_markings(opt, true);
323 };
324
325 ns.text_block_popup_menu_hidden = function(opt) {
326   return ns.handle_text_block_popup_menu_markings(opt, false);
327 };
328
329 ns.handle_item_popup_menu_markings = function(opt, add) {
330   var id = ns.find_item_id(opt.$trigger);
331   if (id)
332     $('#section-' + id + ',#function-block-' + id + ',#sub-function-block-' + id).toggleClass('selected', add);
333   return true;
334 };
335
336 ns.item_popup_menu_shown = function(opt) {
337   return ns.handle_item_popup_menu_markings(opt, true);
338 };
339
340 ns.item_popup_menu_hidden = function(opt) {
341   return ns.handle_item_popup_menu_markings(opt, false);
342 };
343
344 ns.submit_function_block = function(event) {
345   event.preventDefault();
346
347   var prefix = $(this).attr('id').match("^(?:edit|new)_function_block_[\\d_]+\\d")[0];
348   kivi.submit_ajax_form('controller.pl?action=RequirementSpecItem/ajax_update', '#' + prefix + '_form');
349
350   return false;
351 };
352
353 ns.init_function_block_keypress_events = function(form_id) {
354   $("#" + form_id + " INPUT[type=text]").bind("keypress", "return", ns.submit_function_block);
355 };
356
357 // -------------------------------------------------------------------------
358 // ------------------------------- templates -------------------------------
359 // -------------------------------------------------------------------------
360
361 ns.paste_template = function(key, opt, other_data) {
362   kivi.popup_dialog({ url: 'controller.pl?action=RequirementSpec/select_template_to_paste', dialog: { title: kivi.t8("Select template to paste") } });
363 };
364
365 ns.paste_selected_template = function(template_id) {
366   $('#jqueryui_popup_dialog').dialog("close");
367
368   var data = {
369     action:               "RequirementSpec/paste_template",
370     id:                   $('#requirement_spec_id').val(),
371     template_id:          template_id,
372     current_content_type: $('#current_content_type').val(),
373     current_content_id:   $('#current_content_id').val()
374   };
375
376   // console.log("I would normally POST the following now:");
377   // console.log(data);
378   $.post("controller.pl", data, kivi.eval_json_result);
379
380   return true;
381 };
382
383 // -------------------------------------------------------------------------
384 // ---------------------------- basic settings -----------------------------
385 // -------------------------------------------------------------------------
386 ns.standard_basic_settings_ajax_call = function(key, opt) {
387   if (key == 'cancel') {
388     if (confirm(kivi.t8('Do you really want to cancel?'))) {
389       $('#basic_settings').show();
390       $('#basic_settings_form').remove();
391     }
392     return true;
393   }
394
395   var data = 'action=RequirementSpec/ajax_' + key + '&id=' + encodeURIComponent($('#requirement_spec_id').val());
396
397   $.post("controller.pl", data, kivi.eval_json_result);
398
399   return true;
400 };
401
402 // -------------------------------------------------------------------------
403 // -------------------------- time/cost estimate ---------------------------
404 // -------------------------------------------------------------------------
405
406 ns.standard_time_cost_estimate_ajax_call = function(key, opt) {
407   if (key == 'cancel') {
408     if (confirm(kivi.t8('Do you really want to cancel?'))) {
409       $('#time_cost_estimate').show();
410       $('#time_cost_estimate_form_container').remove();
411     }
412     return true;
413   }
414
415   var data = "action=RequirementSpec/ajax_" + key + "_time_and_cost_estimate&";
416
417   if (key == 'save')
418     data += $('#edit_time_cost_estimate_form').serialize()
419          +  '&' + $('#current_content_type').serialize()
420          +  '&' + $('#current_content_id').serialize();
421   else
422     data += 'id=' + encodeURIComponent($('#requirement_spec_id').val());
423
424   $.post("controller.pl", data, kivi.eval_json_result);
425
426   return true;
427 };
428
429 ns.time_cost_estimate_input_key_down = function(event) {
430   if(event.keyCode == 13) {
431     event.preventDefault();
432     ns.standard_time_cost_estimate_ajax_call('save');
433     return false;
434   }
435 };
436
437 // -------------------------------------------------------------------------
438 // --------------------------- quotations/orders ---------------------------
439 // -------------------------------------------------------------------------
440
441 ns.find_quotation_order_id = function(clicked_elt) {
442   return $(clicked_elt).find('>[name=order_id]').val();
443 };
444
445 ns.standard_quotation_order_ajax_call = function(key, opt) {
446   if (key == 'cancel') {
447     if (confirm(kivi.t8('Do you really want to cancel?'))) {
448       $('#quotations_and_orders').show();
449       $('#quotations_and_orders_article_assignment,#quotations_and_orders_new,#quotations_and_orders_update').remove();
450     }
451     return true;
452   }
453
454   else if ((key == 'create') && $('#quotations_and_orders_form INPUT[name="sections[].order_part_id"]').filter(function(idx, elt) { return ($(elt).val() || '') == '' }).size()) {
455     alert(kivi.t8('There is one or more sections for which no part has been assigned yet; therefore creating the new record is not possible yet.'));
456     return false;
457   }
458
459   var data = 'action=RequirementSpecOrder/' + key
460            + '&' + $('#requirement_spec_id').serialize();
461
462   if ((key == 'save_assignment') || (key == 'create') || (key == 'do_update'))
463     data += '&' + $('#quotations_and_orders_form').serialize();
464   else if ((key == 'update') || (key == 'delete'))
465     data += '&rs_order_id=' + encodeURIComponent(ns.find_quotation_order_id(opt.$trigger));
466
467   // console.log("I would normally POST the following now:");
468   // console.log(data);
469   $.post("controller.pl", data, kivi.eval_json_result);
470
471   return true;
472 };
473
474 ns.ask_delete_quotation_order = function(key, opt) {
475   if (confirm(kivi.t8("Are you sure?")))
476     ns.standard_quotation_order_ajax_call(key, opt);
477   return true;
478 };
479
480 ns.disable_edit_quotation_order_commands = function(key, opt) {
481   return ns.find_quotation_order_id(opt.$trigger) == undefined;
482 };
483
484 ns.disable_create_quotation_order_commands = function(key, opt) {
485   return !$('#quotations_and_orders_sections');
486 };
487
488 ns.assign_order_part_id_to_all = function() {
489   var order_part_id   = $('#quotations_and_orders_order_id').val();
490   var order_part_name = $('#quotations_and_orders_order_id_name').val();
491
492   $('#quotations_and_orders_form INPUT[name="sections[].order_part_id"]').each(function(idx, elt) {
493     $(elt).val(order_part_id);
494   });
495
496   $('#quotations_and_orders_form [id^=quotations_and_orders_sections_order_pard_id_]').filter(function() {
497     return $(this).attr('id') && $(this).attr('id').match("^quotations_and_orders_sections_order_pard_id_[0-9]+_name$");
498   }).each(function(idx, elt) {
499     $(elt).val(order_part_name);
500   });
501 };
502
503 // -------------------------------------------------------------------------
504 // ---------------------------- general actions ----------------------------
505 // -------------------------------------------------------------------------
506
507 ns.create_reqspec_pdf = function(key, opt) {
508   var data = {
509     action: "RequirementSpec/create_pdf",
510     id:     $('#requirement_spec_id').val()
511   };
512   $.download("controller.pl", data);
513 };
514
515 ns.copy_reqspec = function(key, opt) {
516   window.location.href = "controller.pl?action=RequirementSpec/new&copy_source_id=" + encodeURIComponent($('#requirement_spec_id').val());
517   return true;
518 };
519
520 ns.delete_reqspec = function(key, opt) {
521   if (confirm(kivi.t8("Are you sure?")))
522     window.location.href = "controller.pl?action=RequirementSpec/destroy&id=" + encodeURIComponent($('#requirement_spec_id').val());
523   return true;
524 };
525
526 ns.disable_commands = function(key, opt) {
527   if (key === "create_version")
528     return ($('#current_version_id').val() || '') == '' ? false : true;
529   return false;
530 };
531
532 // -------------------------------------------------------------------------
533 // -------------------------------- versions -------------------------------
534 // -------------------------------------------------------------------------
535
536 ns.find_versioned_copy_id = function(clicked_elt) {
537   var id = $(clicked_elt).find("[name=versioned_copy_id]");
538   return id ? id.val() : undefined;
539 };
540
541 ns.disable_versioned_copy_item_commands = function(key, opt) {
542   if (key === "revert_to_version")
543     return !ns.find_versioned_copy_id(opt.$trigger);
544   return false;
545 };
546
547 ns.create_version = function() {
548   kivi.popup_dialog({ url:    'controller.pl',
549                       data:   { action:              'RequirementSpecVersion/new',
550                                 requirement_spec_id: $('#requirement_spec_id').val() },
551                       dialog: { title: kivi.t8('Create a new version') }});
552   return true;
553 };
554
555 ns.create_pdf_for_versioned_copy_ajax_call = function(key, opt) {
556   var data = {
557     action: "RequirementSpec/create_pdf",
558     id:     ns.find_versioned_copy_id(opt.$trigger)
559   };
560   $.download("controller.pl", data);
561
562   return true;
563 };
564
565 ns.revert_to_versioned_copy_ajax_call = function(key, opt) {
566   if (!confirm(kivi.t8('Do you really want to revert to this version?')))
567     return true;
568
569   var data = {
570     action:            'RequirementSpec/revert_to',
571     versioned_copy_id: ns.find_versioned_copy_id(opt.$trigger),
572     id:                $('#requirement_spec_id').val()
573   };
574
575   $.post("controller.pl", data, kivi.eval_json_result);
576
577   return true;
578 };
579
580 // -------------------------------------------------------------------------
581 // ------------------------------- tab widget ------------------------------
582 // -------------------------------------------------------------------------
583 var content_div_ids_for_tab_headers = {
584     'tab-header-function-block':     'function-blocks-tab'
585   , 'tab-header-basic-settings':     'ui-tabs-1'
586   , 'tab-header-time-cost-estimate': 'ui-tabs-2'
587   , 'tab-header-versions':           'ui-tabs-3'
588   , 'tab-header-quotations-orders':  'ui-tabs-4'
589 };
590
591 ns.tabs_before_activate = function(event, ui) {
592   if (!ui.oldTab)
593     return true;
594
595   var content_div_id = content_div_ids_for_tab_headers[ $(ui.oldTab).attr('id') ];
596   if (!content_div_id || (content_div_id == 'function-blocks-tab'))
597     return true;
598
599   var inputs = $('#' + content_div_id).find('input,select,textarea').filter('[type!=hidden]');
600   if (!inputs.size() || confirm(kivi.t8("If you switch to a different tab without saving you will lose the data you've entered in the current tab.")))
601     return true;
602
603   var new_focus = $(inputs).filter(':focusable')[0];
604   if (new_focus)
605     $(new_focus).focus();
606
607   return false;
608 };
609
610 // -------------------------------------------------------------------------
611 // ----------------------------- context menus -----------------------------
612 // -------------------------------------------------------------------------
613
614 ns.create_context_menus = function(is_template) {
615   if (is_template) {
616     var general_actions = {
617         sep98:           "---------"
618       , general_actions: { name: kivi.t8('Requirement spec template actions'), className: 'context-menu-heading' }
619       // , sep99:           "---------"
620       , copy_reqspec:    { name: kivi.t8('Copy template'),   icon: "copy",   callback: kivi.requirement_spec.copy_reqspec   }
621       , delete_reqspec:  { name: kivi.t8('Delete template'), icon: "delete", callback: kivi.requirement_spec.delete_reqspec }
622     };
623
624   } else {                      // if (is_template)
625     var general_actions = {
626         sep98:              "---------"
627       , general_actions:    { name: kivi.t8('Requirement spec actions'), className: 'context-menu-heading' }
628       , create_pdf:         { name: kivi.t8('Create PDF'),              icon: "pdf",    callback: kivi.requirement_spec.create_reqspec_pdf }
629       , create_version:     { name: kivi.t8('Create new version'),      icon: "new",    callback: kivi.requirement_spec.create_version, disabled: kivi.requirement_spec.disable_commands }
630       , copy_reqspec:       { name: kivi.t8('Copy requirement spec'),   icon: "copy",   callback: kivi.requirement_spec.copy_reqspec   }
631       , delete_reqspec:     { name: kivi.t8('Delete requirement spec'), icon: "delete", callback: kivi.requirement_spec.delete_reqspec }
632       , sep_paste_template: "---------"
633       , paste_template:     { name: kivi.t8('Paste template'),     icon: "paste",  callback: kivi.requirement_spec.paste_template }
634     };
635
636     $.contextMenu({
637       selector: '.versioned-copy-context-menu',
638       items:    $.extend({
639           heading:            { name: kivi.t8('Version actions'), className: 'context-menu-heading' }
640         , create_version_pdf: { name: kivi.t8('Create PDF'),        icon: "pdf",    callback: kivi.requirement_spec.create_pdf_for_versioned_copy_ajax_call                                                                      }
641         , revert_to_version:  { name: kivi.t8('Revert to version'), icon: "revert", callback: kivi.requirement_spec.revert_to_versioned_copy_ajax_call,     disabled: kivi.requirement_spec.disable_versioned_copy_item_commands }
642       }, general_actions)
643     });
644
645     var paste_template_actions = {
646     };
647   }                             // if (is_template) ... else ...
648
649   $.contextMenu({
650     selector: '.text-block-context-menu',
651     events:   {
652         show: kivi.requirement_spec.text_block_popup_menu_shown
653       , hide: kivi.requirement_spec.text_block_popup_menu_hidden
654     },
655     items:    $.extend({
656         heading: { name: kivi.t8('Text block actions'),    className: 'context-menu-heading' }
657       , add:     { name: kivi.t8('Add text block'),        icon: "add",    callback: kivi.requirement_spec.standard_text_block_ajax_call }
658       , edit:    { name: kivi.t8('Edit text block'),       icon: "edit",   callback: kivi.requirement_spec.standard_text_block_ajax_call, disabled: kivi.requirement_spec.disable_edit_text_block_commands }
659       , delete:  { name: kivi.t8('Delete text block'),     icon: "delete", callback: kivi.requirement_spec.ask_delete_text_block,         disabled: kivi.requirement_spec.disable_edit_text_block_commands }
660       , add_picture: { name: kivi.t8('Add picture to text block'), icon: "add-picture", callback: kivi.requirement_spec.add_edit_text_block_picture_ajax_call, disabled: kivi.requirement_spec.disable_edit_text_block_commands }
661       , sep1:    "---------"
662       , flag:    { name: kivi.t8('Toggle marker'),         icon: "flag",   callback: kivi.requirement_spec.standard_text_block_ajax_call, disabled: kivi.requirement_spec.disable_edit_text_block_commands }
663       , sep2:    "---------"
664       , copy:    { name: kivi.t8('Copy'),                  icon: "copy",   callback: kivi.requirement_spec.standard_text_block_ajax_call, disabled: kivi.requirement_spec.disable_edit_text_block_commands }
665       , paste:   { name: kivi.t8('Paste'),                 icon: "paste",  callback: kivi.requirement_spec.standard_text_block_ajax_call  }
666     }, general_actions)
667   });
668
669   $.contextMenu({
670     selector: '.text-block-picture-context-menu',
671     events:   {
672         show: kivi.requirement_spec.text_block_picture_popup_menu_shown
673       , hide: kivi.requirement_spec.text_block_picture_popup_menu_hidden
674     },
675     items:    $.extend({
676         heading:          { name: kivi.t8('Text block picture actions'), className: 'context-menu-heading'                                                 }
677       , add_picture:      { name: kivi.t8('Add picture'),      icon: "add-picture", callback: kivi.requirement_spec.add_edit_text_block_picture_ajax_call  }
678       , edit_picture:     { name: kivi.t8('Edit picture'),     icon: "edit",        callback: kivi.requirement_spec.add_edit_text_block_picture_ajax_call  }
679       , delete_picture:   { name: kivi.t8('Delete picture'),   icon: "delete",      callback: kivi.requirement_spec.ask_delete_text_block_picture          }
680       , download_picture: { name: kivi.t8('Download picture'), icon: "download",    callback: kivi.requirement_spec.standard_text_block_picture_ajax_call  }
681       , sep2:             "---------"
682       , copy_picture:     { name: kivi.t8('Copy'),             icon: "copy",        callback: kivi.requirement_spec.standard_text_block_picture_ajax_call  }
683       , paste_picture:    { name: kivi.t8('Paste'),            icon: "paste",       callback: kivi.requirement_spec.standard_text_block_picture_ajax_call  }
684     }, general_actions)
685   });
686
687   $.contextMenu({
688     selector: '.basic-settings-context-menu',
689     items:    $.extend({
690         heading: { name: kivi.t8('Basic settings actions'), className: 'context-menu-heading' }
691       , edit:    { name: kivi.t8('Edit'), icon: "edit", callback: kivi.requirement_spec.standard_basic_settings_ajax_call }
692     }, general_actions)
693   });
694
695   $.contextMenu({
696     selector: '.edit-basic-settings-context-menu',
697     items:    $.extend({
698         heading: { name: kivi.t8('Basic settings actions'), className: 'context-menu-heading' }
699       , save:    { name: kivi.t8('Save'),   icon: "save",  callback: kivi.requirement_spec.standard_basic_settings_ajax_call }
700       , cancel:  { name: kivi.t8('Cancel'), icon: "close", callback: kivi.requirement_spec.standard_basic_settings_ajax_call }
701     }, general_actions)
702   });
703
704   $.contextMenu({
705     selector: '.time-cost-estimate-context-menu',
706     items:    $.extend({
707         heading: { name: kivi.t8('Time/cost estimate actions'), className: 'context-menu-heading' }
708       , edit:    { name: kivi.t8('Edit'), icon: "edit", callback: kivi.requirement_spec.standard_time_cost_estimate_ajax_call }
709     }, general_actions)
710   });
711
712   $.contextMenu({
713     selector: '.edit-time-cost-estimate-context-menu',
714     items:    $.extend({
715         heading: { name: kivi.t8('Time/cost estimate actions'), className: 'context-menu-heading' }
716       , save:    { name: kivi.t8('Save'),   icon: "save",  callback: kivi.requirement_spec.standard_time_cost_estimate_ajax_call }
717       , cancel:  { name: kivi.t8('Cancel'), icon: "close", callback: kivi.requirement_spec.standard_time_cost_estimate_ajax_call }
718     }, general_actions)
719   });
720
721   $.contextMenu({
722     selector: '.quotations-and-orders-context-menu,.quotations-and-orders-order-context-menu',
723     items:    $.extend({
724         heading:            { name: kivi.t8('Quotations/Orders actions'), className: 'context-menu-heading'                                                                                            }
725       , edit_assignment:    { name: kivi.t8('Edit article/section assignments'), icon: "edit",   callback: ns.standard_quotation_order_ajax_call                                                       }
726       , sep1:               "---------"
727       , new:                { name: kivi.t8('Create new qutoation/order'),       icon: "add",    callback: ns.standard_quotation_order_ajax_call, disabled: ns.disable_create_quotation_order_commands }
728       , update:             { name: kivi.t8('Update quotation/order'),           icon: "update", callback: ns.standard_quotation_order_ajax_call, disabled: ns.disable_edit_quotation_order_commands   }
729       , sep2:               "---------"
730       , delete:             { name: kivi.t8('Delete quotation/order'),           icon: "delete", callback: ns.ask_delete_quotation_order,         disabled: ns.disable_edit_quotation_order_commands   }
731     }, general_actions)
732   });
733
734   $.contextMenu({
735     selector: '.quotations-and-orders-edit-assignment-context-menu',
736     items:    $.extend({
737         heading:         { name: kivi.t8('Edit article/section assignments'), className: 'context-menu-heading'    }
738       , save_assignment: { name: kivi.t8('Save'),   icon: "edit",  callback: ns.standard_quotation_order_ajax_call }
739       , cancel:          { name: kivi.t8('Cancel'), icon: "close", callback: ns.standard_quotation_order_ajax_call }
740     }, general_actions)
741   });
742
743   $.contextMenu({
744     selector: '.quotations-and-orders-new-context-menu',
745     items:    $.extend({
746         heading: { name: kivi.t8('Create new quotation/order'), className: 'context-menu-heading'          }
747       , create:  { name: kivi.t8('Create'), icon: "edit",  callback: ns.standard_quotation_order_ajax_call }
748       , cancel:  { name: kivi.t8('Cancel'), icon: "close", callback: ns.standard_quotation_order_ajax_call }
749     }, general_actions)
750   });
751
752   $.contextMenu({
753     selector: '.quotations-and-orders-update-context-menu',
754     items:    $.extend({
755         heading:   { name: kivi.t8('Update quotation/order'), className: 'context-menu-heading'               }
756       , do_update: { name: kivi.t8('Update'), icon: "update", callback: ns.standard_quotation_order_ajax_call }
757       , cancel:    { name: kivi.t8('Cancel'), icon: "close",  callback: ns.standard_quotation_order_ajax_call }
758     }, general_actions)
759   });
760
761   $.contextMenu({
762     selector: '#content',
763     items:    general_actions
764   });
765
766   var events = {
767       show: kivi.requirement_spec.item_popup_menu_shown
768     , hide: kivi.requirement_spec.item_popup_menu_hidden
769   };
770
771   $.contextMenu({
772     selector: '.section-context-menu',
773     events:   events,
774     items:    $.extend({
775         heading:            { name: kivi.t8('Section/Function block actions'), className: 'context-menu-heading' }
776       , add_section:        { name: kivi.t8('Add section'),        icon: "add",    callback: kivi.requirement_spec.standard_item_ajax_call }
777       , add_function_block: { name: kivi.t8('Add function block'), icon: "add",    callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_add_function_block_command }
778       , sep1:               "---------"
779       , edit:               { name: kivi.t8('Edit'),               icon: "edit",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
780       , delete:             { name: kivi.t8('Delete'),             icon: "delete", callback: kivi.requirement_spec.ask_delete_item,         disabled: kivi.requirement_spec.disable_edit_item_commands }
781       , sep2:               "---------"
782       , flag:               { name: kivi.t8('Toggle marker'),      icon: "flag",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
783       , sep3:               "---------"
784       , copy:               { name: kivi.t8('Copy'),               icon: "copy",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
785       , paste:              { name: kivi.t8('Paste'),              icon: "paste",  callback: kivi.requirement_spec.standard_item_ajax_call }
786     }, general_actions)
787   });
788
789   $.contextMenu({
790     selector: '.function-block-context-menu,.sub-function-block-context-menu',
791     events:   events,
792     items:    $.extend({
793         heading:                { name: kivi.t8('Function block actions'), className: 'context-menu-heading' }
794       , add_function_block:     { name: kivi.t8('Add function block'),     icon: "add",    callback: kivi.requirement_spec.standard_item_ajax_call }
795       , add_sub_function_block: { name: kivi.t8('Add sub function block'), icon: "add",    callback: kivi.requirement_spec.standard_item_ajax_call }
796       , sep1:                   "---------"
797       , edit:                   { name: kivi.t8('Edit'),                   icon: "edit",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
798       , delete:                 { name: kivi.t8('Delete'),                 icon: "delete", callback: kivi.requirement_spec.ask_delete_item,         disabled: kivi.requirement_spec.disable_edit_item_commands }
799       , sep2:                   "---------"
800       , flag:                   { name: kivi.t8('Toggle marker'),          icon: "flag",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
801       , sep3:                   "---------"
802       , copy:                   { name: kivi.t8('Copy'),                   icon: "copy",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
803       , paste:                  { name: kivi.t8('Paste'),                  icon: "paste",  callback: kivi.requirement_spec.standard_item_ajax_call }
804     }, general_actions)
805   });
806 };
807
808 });                             // end of namespace(...., function() {...