Pflichtenhefttextblöcke: Anordnung Bilder via Drag&Drop ändern können
[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.text_block_input_key_down = function(event) {
182   if(event.keyCode == 13) {
183     event.preventDefault();
184     var prefix = $(this).attr('id').match("^edit_function_block_\\d+")[0];
185     $("#" + prefix + "_submit").click();
186     return false;
187   }
188 };
189
190 ns.find_text_block_picture_id = function(clicked_elt) {
191   var id    = $(clicked_elt).attr('id');
192   var match = id.match(/^text-block-picture-(\d+)$/);
193   if (match)
194     return match[1] * 1;
195
196   return undefined;
197 };
198
199 ns.add_edit_text_block_picture_ajax_call = function(key, opt) {
200   var title = key == 'add_picture' ? kivi.t8('Add picture to text block') : kivi.t8('Edit picture');
201
202   kivi.popup_dialog({ url:    'controller.pl',
203                       data:   { action:     'RequirementSpecTextBlock/ajax_' + key,
204                                 id:         ns.find_text_block_id(opt.$trigger),
205                                 picture_id: ns.find_text_block_picture_id(opt.$trigger) },
206                       dialog: { title:      title }});
207
208   return true;
209 };
210
211 ns.standard_text_block_picture_ajax_call = function(key, opt) {
212   var data = {
213       action: "RequirementSpecTextBlock/ajax_" + key
214     , id:     ns.find_text_block_picture_id(opt.$trigger)
215   };
216
217   if (key == 'download_picture')
218     $.download("controller.pl", data);
219   else
220     $.post("controller.pl", data, kivi.eval_json_result);
221
222   return true;
223 };
224
225 ns.ask_delete_text_block_picture = function(key, opt) {
226   if (confirm(kivi.t8("Are you sure?")))
227     ns.standard_text_block_picture_ajax_call(key, opt);
228   return true;
229 };
230
231 ns.handle_text_block_picture_popup_menu_markings = function(opt, add) {
232   var id = ns.find_text_block_picture_id(opt.$trigger);
233   if (id)
234     $('#text-block-picture-' + id ).toggleClass('selected', add);
235   return true;
236 };
237
238 ns.text_block_picture_popup_menu_shown = function(opt) {
239   return ns.handle_text_block_picture_popup_menu_markings(opt, true);
240 };
241
242 ns.text_block_picture_popup_menu_hidden = function(opt) {
243   return ns.handle_text_block_picture_popup_menu_markings(opt, false);
244 };
245
246 ns.make_text_block_picture_lists_sortable = function() {
247   kivi.run_once_for(".requirement-spec-text-block-picture-list", 'make-text-block-picture-list-sortable', function($elt) {
248     $elt.sortable({
249       stop: function(event, ui) {
250         $.post('controller.pl?action=RequirementSpecTextBlock/reorder_pictures', {
251           'picture_id[]': $($elt.sortable('toArray')).map(function(idx, str) { return str.replace('text-block-picture-', ''); }).toArray()
252         });
253         return ui;
254       }
255       , distance: 5
256     });
257   });
258 };
259
260 // --------------------------------------------------------------------------------
261 // ------------------------------ sections and items ------------------------------
262 // --------------------------------------------------------------------------------
263
264 ns.find_item_id = function(clicked_elt) {
265   // console.log("clicked id: " + $(clicked_elt).attr('id'));
266   var id     = $(clicked_elt).attr('id');
267   var result = /^(function-block|function-block-content|sub-function-block|sub-function-block-content|section|section-header)-(\d+)$/.exec(id);
268   if (result) {
269     // console.log("find_item_id: case 1: " + result[2]);
270     return result[2];
271   }
272
273   id = $(clicked_elt).closest("[id*=fb-]").attr('id')
274   if (/^fb-\d+$/.test(id)) {
275     // console.log("find_item_id: case 2: " + id.substr(3));
276     return id.substr(3) * 1;
277   }
278
279   // console.log("find_item_id: case undef");
280   return undefined;
281 };
282
283 ns.standard_item_ajax_call = function(key, opt, other_data) {
284   var data = {
285     action:               "RequirementSpecItem/ajax_" + key,
286     requirement_spec_id:  $('#requirement_spec_id').val(),
287     id:                   ns.find_item_id(opt.$trigger),
288     current_content_type: $('#current_content_type').val(),
289     current_content_id:   $('#current_content_id').val()
290   };
291
292   // console.log("I would normally POST the following now:");
293   // console.log(data);
294   $.post("controller.pl", $.extend(data, other_data || {}), kivi.eval_json_result);
295
296   return true;
297 };
298
299 ns.disable_edit_item_commands = function(key, opt) {
300   return ns.find_item_id(opt.$trigger) == undefined;
301 };
302
303 ns.disable_add_function_block_command = function(key, opt) {
304   return opt.$trigger.attr('id') == "sections";
305 };
306
307 ns.cancel_edit_item_form = function(form_id_base, options) {
308   $('#' + form_id_base + '_form').remove();
309   if (!options)
310     return;
311   if (options.to_show)
312     $(options.to_show).show();
313   if (options.to_hide_if_empty && (1 == $(options.to_hide_if_empty).children().size()))
314     $(options.to_hide_if_empty).hide();
315 };
316
317 ns.ask_delete_item = function(key, opt) {
318   if (confirm(kivi.t8("Are you sure?")))
319     ns.standard_item_ajax_call(key, opt);
320   return true;
321 };
322
323 ns.handle_text_block_popup_menu_markings = function(opt, add) {
324   var id = ns.find_text_block_id(opt.$trigger);
325   if (id)
326     $('#text-block-' + id).toggleClass('selected', add);
327   return true;
328 };
329
330 ns.text_block_popup_menu_shown = function(opt) {
331   return ns.handle_text_block_popup_menu_markings(opt, true);
332 };
333
334 ns.text_block_popup_menu_hidden = function(opt) {
335   return ns.handle_text_block_popup_menu_markings(opt, false);
336 };
337
338 ns.handle_item_popup_menu_markings = function(opt, add) {
339   var id = ns.find_item_id(opt.$trigger);
340   if (id)
341     $('#section-' + id + ',#function-block-' + id + ',#sub-function-block-' + id).toggleClass('selected', add);
342   return true;
343 };
344
345 ns.item_popup_menu_shown = function(opt) {
346   return ns.handle_item_popup_menu_markings(opt, true);
347 };
348
349 ns.item_popup_menu_hidden = function(opt) {
350   return ns.handle_item_popup_menu_markings(opt, false);
351 };
352
353 // -------------------------------------------------------------------------
354 // ------------------------------- templates -------------------------------
355 // -------------------------------------------------------------------------
356
357 ns.paste_template = function(key, opt, other_data) {
358   kivi.popup_dialog({ url: 'controller.pl?action=RequirementSpec/select_template_to_paste', dialog: { title: kivi.t8("Select template to paste") } });
359 };
360
361 ns.paste_selected_template = function(template_id) {
362   $('#jqueryui_popup_dialog').dialog("close");
363
364   var data = {
365     action:               "RequirementSpec/paste_template",
366     id:                   $('#requirement_spec_id').val(),
367     template_id:          template_id,
368     current_content_type: $('#current_content_type').val(),
369     current_content_id:   $('#current_content_id').val()
370   };
371
372   // console.log("I would normally POST the following now:");
373   // console.log(data);
374   $.post("controller.pl", data, kivi.eval_json_result);
375
376   return true;
377 };
378
379 // -------------------------------------------------------------------------
380 // ---------------------------- basic settings -----------------------------
381 // -------------------------------------------------------------------------
382 ns.standard_basic_settings_ajax_call = function(key, opt) {
383   if (key == 'cancel') {
384     if (confirm(kivi.t8('Do you really want to cancel?'))) {
385       $('#basic_settings').show();
386       $('#basic_settings_form').remove();
387     }
388     return true;
389   }
390
391   var data = 'action=RequirementSpec/ajax_' + key + '&id=' + encodeURIComponent($('#requirement_spec_id').val());
392
393   $.post("controller.pl", data, kivi.eval_json_result);
394
395   return true;
396 };
397
398 // -------------------------------------------------------------------------
399 // -------------------------- time/cost estimate ---------------------------
400 // -------------------------------------------------------------------------
401
402 ns.standard_time_cost_estimate_ajax_call = function(key, opt) {
403   if (key == 'cancel') {
404     if (confirm(kivi.t8('Do you really want to cancel?'))) {
405       $('#time_cost_estimate').show();
406       $('#time_cost_estimate_form_container').remove();
407     }
408     return true;
409   }
410
411   var data = "action=RequirementSpec/ajax_" + key + "_time_and_cost_estimate&";
412
413   if (key == 'save')
414     data += $('#edit_time_cost_estimate_form').serialize()
415          +  '&' + $('#current_content_type').serialize()
416          +  '&' + $('#current_content_id').serialize();
417   else
418     data += 'id=' + encodeURIComponent($('#requirement_spec_id').val());
419
420   $.post("controller.pl", data, kivi.eval_json_result);
421
422   return true;
423 };
424
425 ns.time_cost_estimate_input_key_down = function(event) {
426   if(event.keyCode == 13) {
427     event.preventDefault();
428     ns.standard_time_cost_estimate_ajax_call('save');
429     return false;
430   }
431 };
432
433 // -------------------------------------------------------------------------
434 // --------------------------- quotations/orders ---------------------------
435 // -------------------------------------------------------------------------
436
437 ns.find_quotation_order_id = function(clicked_elt) {
438   return $(clicked_elt).find('>[name=order_id]').val();
439 };
440
441 ns.standard_quotation_order_ajax_call = function(key, opt) {
442   if (key == 'cancel') {
443     if (confirm(kivi.t8('Do you really want to cancel?'))) {
444       $('#quotations_and_orders').show();
445       $('#quotations_and_orders_article_assignment,#quotations_and_orders_new,#quotations_and_orders_update').remove();
446     }
447     return true;
448   }
449
450   else if ((key == 'create') && $('#quotations_and_orders_form INPUT[name="sections[].order_part_id"]').filter(function(idx, elt) { return ($(elt).val() || '') == '' }).size()) {
451     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.'));
452     return false;
453   }
454
455   var data = 'action=RequirementSpecOrder/' + key
456            + '&' + $('#requirement_spec_id').serialize();
457
458   if ((key == 'save_assignment') || (key == 'create') || (key == 'do_update'))
459     data += '&' + $('#quotations_and_orders_form').serialize();
460   else if ((key == 'update') || (key == 'delete'))
461     data += '&rs_order_id=' + encodeURIComponent(ns.find_quotation_order_id(opt.$trigger));
462
463   // console.log("I would normally POST the following now:");
464   // console.log(data);
465   $.post("controller.pl", data, kivi.eval_json_result);
466
467   return true;
468 };
469
470 ns.ask_delete_quotation_order = function(key, opt) {
471   if (confirm(kivi.t8("Are you sure?")))
472     ns.standard_quotation_order_ajax_call(key, opt);
473   return true;
474 };
475
476 ns.disable_edit_quotation_order_commands = function(key, opt) {
477   return ns.find_quotation_order_id(opt.$trigger) == undefined;
478 };
479
480 ns.disable_create_quotation_order_commands = function(key, opt) {
481   return !$('#quotations_and_orders_sections');
482 };
483
484 ns.assign_order_part_id_to_all = function() {
485   var order_part_id   = $('#quotations_and_orders_order_id').val();
486   var order_part_name = $('#quotations_and_orders_order_id_name').val();
487
488   $('#quotations_and_orders_form INPUT[name="sections[].order_part_id"]').each(function(idx, elt) {
489     $(elt).val(order_part_id);
490   });
491
492   $('#quotations_and_orders_form [id^=quotations_and_orders_sections_order_pard_id_]').filter(function() {
493     return $(this).attr('id') && $(this).attr('id').match("^quotations_and_orders_sections_order_pard_id_[0-9]+_name$");
494   }).each(function(idx, elt) {
495     $(elt).val(order_part_name);
496   });
497 };
498
499 // -------------------------------------------------------------------------
500 // ---------------------------- general actions ----------------------------
501 // -------------------------------------------------------------------------
502
503 ns.create_reqspec_pdf = function(key, opt) {
504   var data = {
505     action: "RequirementSpec/create_pdf",
506     id:     $('#requirement_spec_id').val()
507   };
508   $.download("controller.pl", data);
509 };
510
511 ns.copy_reqspec = function(key, opt) {
512   window.location.href = "controller.pl?action=RequirementSpec/new&copy_source_id=" + encodeURIComponent($('#requirement_spec_id').val());
513   return true;
514 };
515
516 ns.delete_reqspec = function(key, opt) {
517   if (confirm(kivi.t8("Are you sure?")))
518     window.location.href = "controller.pl?action=RequirementSpec/destroy&id=" + encodeURIComponent($('#requirement_spec_id').val());
519   return true;
520 };
521
522 ns.disable_commands = function(key, opt) {
523   if (key === "create_version")
524     return ($('#current_version_id').val() || '') == '' ? false : true;
525   return false;
526 };
527
528 // -------------------------------------------------------------------------
529 // -------------------------------- versions -------------------------------
530 // -------------------------------------------------------------------------
531
532 ns.find_versioned_copy_id = function(clicked_elt) {
533   var id = $(clicked_elt).find("[name=versioned_copy_id]");
534   return id ? id.val() : undefined;
535 };
536
537 ns.disable_versioned_copy_item_commands = function(key, opt) {
538   if (key === "revert_to_version")
539     return !ns.find_versioned_copy_id(opt.$trigger);
540   return false;
541 };
542
543 ns.create_version = function() {
544   kivi.popup_dialog({ url:    'controller.pl',
545                       data:   { action:              'RequirementSpecVersion/new',
546                                 requirement_spec_id: $('#requirement_spec_id').val() },
547                       dialog: { title: kivi.t8('Create a new version') }});
548   return true;
549 };
550
551 ns.create_pdf_for_versioned_copy_ajax_call = function(key, opt) {
552   var data = {
553     action: "RequirementSpec/create_pdf",
554     id:     ns.find_versioned_copy_id(opt.$trigger)
555   };
556   $.download("controller.pl", data);
557
558   return true;
559 };
560
561 ns.revert_to_versioned_copy_ajax_call = function(key, opt) {
562   if (!confirm(kivi.t8('Do you really want to revert to this version?')))
563     return true;
564
565   var data = {
566     action:            'RequirementSpec/revert_to',
567     versioned_copy_id: ns.find_versioned_copy_id(opt.$trigger),
568     id:                $('#requirement_spec_id').val()
569   };
570
571   $.post("controller.pl", data, kivi.eval_json_result);
572
573   return true;
574 };
575
576 // -------------------------------------------------------------------------
577 // ------------------------------- tab widget ------------------------------
578 // -------------------------------------------------------------------------
579 var content_div_ids_for_tab_headers = {
580     'tab-header-function-block':     'function-blocks-tab'
581   , 'tab-header-basic-settings':     'ui-tabs-1'
582   , 'tab-header-time-cost-estimate': 'ui-tabs-2'
583   , 'tab-header-versions':           'ui-tabs-3'
584   , 'tab-header-quotations-orders':  'ui-tabs-4'
585 };
586
587 ns.tabs_before_activate = function(event, ui) {
588   if (!ui.oldTab)
589     return true;
590
591   var content_div_id = content_div_ids_for_tab_headers[ $(ui.oldTab).attr('id') ];
592   if (!content_div_id || (content_div_id == 'function-blocks-tab'))
593     return true;
594
595   var inputs = $('#' + content_div_id).find('input,select,textarea').filter('[type!=hidden]');
596   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.")))
597     return true;
598
599   var new_focus = $(inputs).filter(':focusable')[0];
600   if (new_focus)
601     $(new_focus).focus();
602
603   return false;
604 };
605
606 // -------------------------------------------------------------------------
607 // ----------------------------- context menus -----------------------------
608 // -------------------------------------------------------------------------
609
610 ns.create_context_menus = function(is_template) {
611   if (is_template) {
612     var general_actions = {
613         sep98:           "---------"
614       , general_actions: { name: kivi.t8('Requirement spec template actions'), className: 'context-menu-heading' }
615       // , sep99:           "---------"
616       , copy_reqspec:    { name: kivi.t8('Copy template'),   icon: "copy",   callback: kivi.requirement_spec.copy_reqspec   }
617       , delete_reqspec:  { name: kivi.t8('Delete template'), icon: "delete", callback: kivi.requirement_spec.delete_reqspec }
618     };
619
620   } else {                      // if (is_template)
621     var general_actions = {
622         sep98:              "---------"
623       , general_actions:    { name: kivi.t8('Requirement spec actions'), className: 'context-menu-heading' }
624       , create_pdf:         { name: kivi.t8('Create PDF'),              icon: "pdf",    callback: kivi.requirement_spec.create_reqspec_pdf }
625       , create_version:     { name: kivi.t8('Create new version'),      icon: "new",    callback: kivi.requirement_spec.create_version, disabled: kivi.requirement_spec.disable_commands }
626       , copy_reqspec:       { name: kivi.t8('Copy requirement spec'),   icon: "copy",   callback: kivi.requirement_spec.copy_reqspec   }
627       , delete_reqspec:     { name: kivi.t8('Delete requirement spec'), icon: "delete", callback: kivi.requirement_spec.delete_reqspec }
628       , sep_paste_template: "---------"
629       , paste_template:     { name: kivi.t8('Paste template'),     icon: "paste",  callback: kivi.requirement_spec.paste_template }
630     };
631
632     $.contextMenu({
633       selector: '.versioned-copy-context-menu',
634       items:    $.extend({
635           heading:            { name: kivi.t8('Version actions'), className: 'context-menu-heading' }
636         , create_version_pdf: { name: kivi.t8('Create PDF'),        icon: "pdf",    callback: kivi.requirement_spec.create_pdf_for_versioned_copy_ajax_call                                                                      }
637         , 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 }
638       }, general_actions)
639     });
640
641     var paste_template_actions = {
642     };
643   }                             // if (is_template) ... else ...
644
645   $.contextMenu({
646     selector: '.text-block-context-menu',
647     events:   {
648         show: kivi.requirement_spec.text_block_popup_menu_shown
649       , hide: kivi.requirement_spec.text_block_popup_menu_hidden
650     },
651     items:    $.extend({
652         heading: { name: kivi.t8('Text block actions'),    className: 'context-menu-heading' }
653       , add:     { name: kivi.t8('Add text block'),        icon: "add",    callback: kivi.requirement_spec.standard_text_block_ajax_call }
654       , 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 }
655       , 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 }
656       , 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 }
657       , sep1:    "---------"
658       , 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 }
659       , sep2:    "---------"
660       , 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 }
661       , paste:   { name: kivi.t8('Paste'),                 icon: "paste",  callback: kivi.requirement_spec.standard_text_block_ajax_call  }
662     }, general_actions)
663   });
664
665   $.contextMenu({
666     selector: '.text-block-picture-context-menu',
667     events:   {
668         show: kivi.requirement_spec.text_block_picture_popup_menu_shown
669       , hide: kivi.requirement_spec.text_block_picture_popup_menu_hidden
670     },
671     items:    $.extend({
672         heading:          { name: kivi.t8('Text block picture actions'), className: 'context-menu-heading'                                                 }
673       , add_picture:      { name: kivi.t8('Add picture'),      icon: "add-picture", callback: kivi.requirement_spec.add_edit_text_block_picture_ajax_call  }
674       , edit_picture:     { name: kivi.t8('Edit picture'),     icon: "edit",        callback: kivi.requirement_spec.add_edit_text_block_picture_ajax_call  }
675       , delete_picture:   { name: kivi.t8('Delete picture'),   icon: "delete",      callback: kivi.requirement_spec.ask_delete_text_block_picture          }
676       , download_picture: { name: kivi.t8('Download picture'), icon: "download",    callback: kivi.requirement_spec.standard_text_block_picture_ajax_call  }
677       , sep2:             "---------"
678       , copy_picture:     { name: kivi.t8('Copy'),             icon: "copy",        callback: kivi.requirement_spec.standard_text_block_picture_ajax_call  }
679       , paste_picture:    { name: kivi.t8('Paste'),            icon: "paste",       callback: kivi.requirement_spec.standard_text_block_picture_ajax_call  }
680     }, general_actions)
681   });
682
683   $.contextMenu({
684     selector: '.basic-settings-context-menu',
685     items:    $.extend({
686         heading: { name: kivi.t8('Basic settings actions'), className: 'context-menu-heading' }
687       , edit:    { name: kivi.t8('Edit'), icon: "edit", callback: kivi.requirement_spec.standard_basic_settings_ajax_call }
688     }, general_actions)
689   });
690
691   $.contextMenu({
692     selector: '.edit-basic-settings-context-menu',
693     items:    $.extend({
694         heading: { name: kivi.t8('Basic settings actions'), className: 'context-menu-heading' }
695       , save:    { name: kivi.t8('Save'),   icon: "save",  callback: kivi.requirement_spec.standard_basic_settings_ajax_call }
696       , cancel:  { name: kivi.t8('Cancel'), icon: "close", callback: kivi.requirement_spec.standard_basic_settings_ajax_call }
697     }, general_actions)
698   });
699
700   $.contextMenu({
701     selector: '.time-cost-estimate-context-menu',
702     items:    $.extend({
703         heading: { name: kivi.t8('Time/cost estimate actions'), className: 'context-menu-heading' }
704       , edit:    { name: kivi.t8('Edit'), icon: "edit", callback: kivi.requirement_spec.standard_time_cost_estimate_ajax_call }
705     }, general_actions)
706   });
707
708   $.contextMenu({
709     selector: '.edit-time-cost-estimate-context-menu',
710     items:    $.extend({
711         heading: { name: kivi.t8('Time/cost estimate actions'), className: 'context-menu-heading' }
712       , save:    { name: kivi.t8('Save'),   icon: "save",  callback: kivi.requirement_spec.standard_time_cost_estimate_ajax_call }
713       , cancel:  { name: kivi.t8('Cancel'), icon: "close", callback: kivi.requirement_spec.standard_time_cost_estimate_ajax_call }
714     }, general_actions)
715   });
716
717   $.contextMenu({
718     selector: '.quotations-and-orders-context-menu,.quotations-and-orders-order-context-menu',
719     items:    $.extend({
720         heading:            { name: kivi.t8('Quotations/Orders actions'), className: 'context-menu-heading'                                                                                            }
721       , edit_assignment:    { name: kivi.t8('Edit article/section assignments'), icon: "edit",   callback: ns.standard_quotation_order_ajax_call                                                       }
722       , sep1:               "---------"
723       , new:                { name: kivi.t8('Create new qutoation/order'),       icon: "add",    callback: ns.standard_quotation_order_ajax_call, disabled: ns.disable_create_quotation_order_commands }
724       , update:             { name: kivi.t8('Update quotation/order'),           icon: "update", callback: ns.standard_quotation_order_ajax_call, disabled: ns.disable_edit_quotation_order_commands   }
725       , sep2:               "---------"
726       , delete:             { name: kivi.t8('Delete quotation/order'),           icon: "delete", callback: ns.ask_delete_quotation_order,         disabled: ns.disable_edit_quotation_order_commands   }
727     }, general_actions)
728   });
729
730   $.contextMenu({
731     selector: '.quotations-and-orders-edit-assignment-context-menu',
732     items:    $.extend({
733         heading:         { name: kivi.t8('Edit article/section assignments'), className: 'context-menu-heading'    }
734       , save_assignment: { name: kivi.t8('Save'),   icon: "edit",  callback: ns.standard_quotation_order_ajax_call }
735       , cancel:          { name: kivi.t8('Cancel'), icon: "close", callback: ns.standard_quotation_order_ajax_call }
736     }, general_actions)
737   });
738
739   $.contextMenu({
740     selector: '.quotations-and-orders-new-context-menu',
741     items:    $.extend({
742         heading: { name: kivi.t8('Create new quotation/order'), className: 'context-menu-heading'          }
743       , create:  { name: kivi.t8('Create'), icon: "edit",  callback: ns.standard_quotation_order_ajax_call }
744       , cancel:  { name: kivi.t8('Cancel'), icon: "close", callback: ns.standard_quotation_order_ajax_call }
745     }, general_actions)
746   });
747
748   $.contextMenu({
749     selector: '.quotations-and-orders-update-context-menu',
750     items:    $.extend({
751         heading:   { name: kivi.t8('Update quotation/order'), className: 'context-menu-heading'               }
752       , do_update: { name: kivi.t8('Update'), icon: "update", callback: ns.standard_quotation_order_ajax_call }
753       , cancel:    { name: kivi.t8('Cancel'), icon: "close",  callback: ns.standard_quotation_order_ajax_call }
754     }, general_actions)
755   });
756
757   $.contextMenu({
758     selector: '#content',
759     items:    general_actions
760   });
761
762   var events = {
763       show: kivi.requirement_spec.item_popup_menu_shown
764     , hide: kivi.requirement_spec.item_popup_menu_hidden
765   };
766
767   $.contextMenu({
768     selector: '.section-context-menu',
769     events:   events,
770     items:    $.extend({
771         heading:            { name: kivi.t8('Section/Function block actions'), className: 'context-menu-heading' }
772       , add_section:        { name: kivi.t8('Add section'),        icon: "add",    callback: kivi.requirement_spec.standard_item_ajax_call }
773       , 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 }
774       , sep1:               "---------"
775       , edit:               { name: kivi.t8('Edit'),               icon: "edit",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
776       , delete:             { name: kivi.t8('Delete'),             icon: "delete", callback: kivi.requirement_spec.ask_delete_item,         disabled: kivi.requirement_spec.disable_edit_item_commands }
777       , sep2:               "---------"
778       , flag:               { name: kivi.t8('Toggle marker'),      icon: "flag",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
779       , sep3:               "---------"
780       , copy:               { name: kivi.t8('Copy'),               icon: "copy",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
781       , paste:              { name: kivi.t8('Paste'),              icon: "paste",  callback: kivi.requirement_spec.standard_item_ajax_call }
782     }, general_actions)
783   });
784
785   $.contextMenu({
786     selector: '.function-block-context-menu,.sub-function-block-context-menu',
787     events:   events,
788     items:    $.extend({
789         heading:                { name: kivi.t8('Function block actions'), className: 'context-menu-heading' }
790       , add_function_block:     { name: kivi.t8('Add function block'),     icon: "add",    callback: kivi.requirement_spec.standard_item_ajax_call }
791       , add_sub_function_block: { name: kivi.t8('Add sub function block'), icon: "add",    callback: kivi.requirement_spec.standard_item_ajax_call }
792       , sep1:                   "---------"
793       , edit:                   { name: kivi.t8('Edit'),                   icon: "edit",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
794       , delete:                 { name: kivi.t8('Delete'),                 icon: "delete", callback: kivi.requirement_spec.ask_delete_item,         disabled: kivi.requirement_spec.disable_edit_item_commands }
795       , sep2:                   "---------"
796       , flag:                   { name: kivi.t8('Toggle marker'),          icon: "flag",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
797       , sep3:                   "---------"
798       , copy:                   { name: kivi.t8('Copy'),                   icon: "copy",   callback: kivi.requirement_spec.standard_item_ajax_call, disabled: kivi.requirement_spec.disable_edit_item_commands }
799       , paste:                  { name: kivi.t8('Paste'),                  icon: "paste",  callback: kivi.requirement_spec.standard_item_ajax_call }
800     }, general_actions)
801   });
802 };
803
804 });                             // end of namespace(...., function() {...