X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Frequirement_spec.js;h=ac96fc2ad19cc1254e20a509fc5afef6fae55319;hb=e3f3d500254695fb2a8d6956bb720f45e04d4604;hp=da53daa2bfb89bbfa4b13228997a5648f33f265b;hpb=e86e30de944c4bbe4b42f43d933e0a28a83408dd;p=kivitendo-erp.git diff --git a/js/requirement_spec.js b/js/requirement_spec.js index da53daa2b..ac96fc2ad 100644 --- a/js/requirement_spec.js +++ b/js/requirement_spec.js @@ -1,4 +1,16 @@ -/* Functions used for the requirement specs tree view */ +/* Functions used for the requirement specs */ + +// ----------------------------------------------------------------------------- +// ------------------------------ basic settings ------------------------------- +// ----------------------------------------------------------------------------- + +function basic_settings_customer_changed(customer_ctrl, value_ctrl) { + $.get( + 'controller.pl?action=Customer/get_hourly_rate', + { id: $(customer_ctrl).val() }, + function(data) { if (data.hourly_rate_formatted) $(value_ctrl).val(data.hourly_rate_formatted); } + ); +} // ----------------------------------------------------------------------------- // ------------------------------ the tree itself ------------------------------ @@ -147,18 +159,6 @@ function standard_text_block_ajax_call(key, opt, other_data) { return true; } -function submit_edit_text_block_form(id_base) { - var id = $('#' + id_base + '_id').val(); - var url = "controller.pl?" + $('#' + id_base + '_form').serialize(); - var data = { - action: 'RequirementSpecTextBlock/ajax_' + (id ? 'update' : 'create'), - id: id, - form_prefix: id_base - }; - $.post(url, data, eval_json_result); - return true; -} - function cancel_edit_text_block_form(id_base) { var id = $('#' + id_base + '_id').val(); $('#' + id_base + '_form').remove(); @@ -166,6 +166,12 @@ function cancel_edit_text_block_form(id_base) { $('#text-block-' + id).show(); } +function ask_delete_text_block(key, opt) { + if (confirm(kivi.t8("Are you sure?"))) + standard_text_block_ajax_call(key, opt); + return true; +} + // -------------------------------------------------------------------------------- // ------------------------------ sections and items ------------------------------ // -------------------------------------------------------------------------------- @@ -209,20 +215,78 @@ function disable_edit_item_commands(key, opt) { return find_item_id(opt.$trigger) == undefined; } -function submit_edit_item_form(id_base) { - var id = $('#' + id_base + '_id').val(); - var url = "controller.pl?" + $('#' + id_base + '_form').serialize(); - var data = { - action: 'RequirementSpecItem/ajax_' + (id ? 'update' : 'create'), - id: id, - form_prefix: id_base - }; - $.post(url, data, eval_json_result); - return true; +function disable_add_function_block_command(key, opt) { + if (find_item_id(opt.$trigger)) + return false; + return opt.$trigger.attr('id') != "section-list-empty"; } -function cancel_edit_item_form(form_id_base, to_show) { +function cancel_edit_item_form(form_id_base, options) { $('#' + form_id_base + '_form').remove(); - if (to_show) - $(to_show).show(); + if (!options) + return; + if (options.to_show) + $(options.to_show).show(); + if (options.to_hide_if_empty && (1 == $(options.to_hide_if_empty).children().size())) + $(options.to_hide_if_empty).hide(); +} + +function ask_delete_item(key, opt) { + if (confirm(kivi.t8("Are you sure?"))) + standard_item_ajax_call(key, opt); + return true; +} + +function create_requirement_spec_context_menus() { + $.contextMenu({ + selector: '.text-block-context-menu', + items: { + add: { name: kivi.t8('Add text block'), icon: "add", callback: standard_text_block_ajax_call } + , edit: { name: kivi.t8('Edit text block'), icon: "edit", callback: standard_text_block_ajax_call, disabled: disable_edit_text_block_commands } + , delete: { name: kivi.t8('Delete text block'), icon: "delete", callback: ask_delete_text_block, disabled: disable_edit_text_block_commands } + , sep1: "---------" + , flag: { name: kivi.t8('Toggle marker'), icon: "flag", callback: standard_text_block_ajax_call, disabled: disable_edit_text_block_commands } + , sep2: "---------" + , copy: { name: kivi.t8('Copy'), icon: "copy", disabled: function() { return true; } } + , paste: { name: kivi.t8('Paste'), icon: "paste", disabled: function() { return true; } } + // , copy: { name: kivi.t8('Copy'), icon: "copy", disabled: disable_edit_text_block_commands } + // , paste: { name: kivi.t8('Paste'), icon: "paste", disabled: disable_edit_text_block_commands } + } + }); + + $.contextMenu({ + selector: '.section-context-menu', + items: { + add_section: { name: kivi.t8('Add section'), icon: "add", callback: standard_item_ajax_call } + , add_function_block: { name: kivi.t8('Add function block'), icon: "add", callback: standard_item_ajax_call, disabled: disable_add_function_block_command } + , sep1: "---------" + , edit: { name: kivi.t8('Edit'), icon: "edit", callback: standard_item_ajax_call, disabled: disable_edit_item_commands } + , delete: { name: kivi.t8('Delete'), icon: "delete", callback: ask_delete_item, disabled: disable_edit_item_commands } + , sep2: "---------" + , flag: { name: kivi.t8('Toggle marker'), icon: "flag", callback: standard_item_ajax_call, disabled: disable_edit_item_commands } + , sep3: "---------" + , copy: { name: kivi.t8('Copy'), icon: "copy", disabled: function() { return true; } } + , paste: { name: kivi.t8('Paste'), icon: "paste", disabled: function() { return true; } } + // , copy: { name: kivi.t8('Copy'), icon: "copy", disabled: disable_edit_item_commands } + // , paste: { name: kivi.t8('Paste'), icon: "paste", disabled: disable_edit_item_commands } + } + }); + + $.contextMenu({ + selector: '.function-block-context-menu,.sub-function-block-context-menu', + items: { + add_function_block: { name: kivi.t8('Add function block'), icon: "add", callback: standard_item_ajax_call } + , add_sub_function_block: { name: kivi.t8('Add sub function block'), icon: "add", callback: standard_item_ajax_call } + , sep1: "---------" + , edit: { name: kivi.t8('Edit'), icon: "edit", callback: standard_item_ajax_call, disabled: disable_edit_item_commands } + , delete: { name: kivi.t8('Delete'), icon: "delete", callback: ask_delete_item, disabled: disable_edit_item_commands } + , sep2: "---------" + , flag: { name: kivi.t8('Toggle marker'), icon: "flag", callback: standard_item_ajax_call, disabled: disable_edit_item_commands } + , sep3: "---------" + , copy: { name: kivi.t8('Copy'), icon: "copy", disabled: function() { return true; } } + , paste: { name: kivi.t8('Paste'), icon: "paste", disabled: function() { return true; } } + // , copy: { name: kivi.t8('Copy'), icon: "copy", disabled: disable_edit_item_commands } + // , paste: { name: kivi.t8('Paste'), icon: "paste", disabled: disable_edit_item_commands } + } + }); }