04346b5f0a9100863fa5459d748686590d4c8044
[kivitendo-erp.git] / templates / webpages / record_links / add_filter.html
1 [%- USE L -%][%- USE LxERP -%][%- USE JavaScript -%]
2 [%- SET style='width: 500px' %]
3 <h1>[%- LxERP.t8("Add link: select records to link with") %]</h1>
4
5
6 <form method="post" action="controller.pl" id="record_links_add_filter_form">
7  [% L.hidden_tag('object_model',   SELF.object_model) %]
8  [% L.hidden_tag('object_id',      SELF.object_id) %]
9
10  <table>
11   <tr>
12    <td>[%- LxERP.t8("Link to") %]:</td>
13    <td>[% L.select_tag('link_type', LINK_TYPES, default=DEFAULT_LINK_TYPE, style=style, id='record_links_add_filter_link_type') %]</td>
14   </tr>
15
16   <tr>
17    <td>[%- LxERP.t8("Link direction") %]:</td>
18    <td>[% L.select_tag('link_direction',
19                        [ [ 'from', LxERP.t8("The link target to add has been created from the existing record."), ],
20                          [ 'to',   LxERP.t8("The existing record has been created from the link target to add."), ], ],
21                        style=style) %]</td>
22   </tr>
23
24   <tr>
25    <td>[%- LxERP.t8("Customer/Vendor Number") %]:</td>
26    <td>[% L.input_tag('vc_number', is_sales ? SELF.object.customer.customernumber : SELF.object.vendor.vendornumber, style=style) %]</td>
27   </tr>
28
29   <tr>
30    <td>[%- LxERP.t8("Customer/Vendor Name") %]:</td>
31    <td>[% L.input_tag('vc_name', is_sales ? SELF.object.customer.name : SELF.object.vendor.name, style=style) %]</td>
32   </tr>
33
34   <tr id="record_links_add_filter_project_row">
35    <td>[%- LxERP.t8("Project") %]:</td>
36    <td>[% L.select_tag('globalproject_id', PROJECTS, default=SELF.object.globalproject_id, with_empty=1, style=style) %]</td>
37   </tr>
38
39   <tr>
40    <td><span id="record_links_add_filter_title">[%- LxERP.t8("Transaction description") %]</span>:</td>
41    <td>[% L.input_tag('transaction_description', '', style=style) %]</td>
42   </tr>
43  </table>
44
45  <p>
46   [% L.button_tag('filter_record_links()', LxERP.t8("Search")) %]
47   [% L.button_tag('add_selected_record_links()', LxERP.t8("Add links"), id='add_selected_record_links_button', disabled=1) %]
48   [% L.button_tag('$("#record_links_add_filter_form").resetForm()', LxERP.t8('Reset')) %]
49   <a href="#" onclick="$('#record_links_add').dialog('close');">[% LxERP.t8("Cancel") %]</a>
50  </p>
51
52  <hr>
53
54  <div id="record_list_filtered_list"></div>
55
56 </form>
57
58 <script type="text/javascript">
59 <!--
60 $(function() {
61   $('#record_links_add input[name=vc_name]').focus();
62   $('#record_links_add_filter_link_type').change(record_links_change_form_to_match_type);
63   record_links_change_form_to_match_type();
64 });
65
66 function filter_record_links() {
67   var url="controller.pl?action=RecordLinks/ajax_add_list&" + $("#record_links_add form").serialize();
68   $.ajax({
69     url: url,
70     success: function(new_data) {
71       $("#record_list_filtered_list").html(new_data['html']);
72       $('#add_selected_record_links_button').prop('disabled', new_data['count'] == 0);
73     }
74   });
75 }
76
77 function add_selected_record_links() {
78   var url="controller.pl?action=RecordLinks/ajax_add_do&" + $("#record_links_add form").serialize();
79   $.ajax({
80     url: url,
81     success: function(new_html) {
82       $('#record_links_list').replaceWith(new_html);
83       $('#record_links_add').dialog('close');
84     }
85   });
86 }
87
88 function record_links_change_form_to_match_type() {
89   var type  = $('#record_links_add_filter_link_type').val();
90   var title = type == 'requirement_spec' ? kivi.t8('Title')
91             : type == 'letter'           ? kivi.t8('Subject')
92             :                              kivi.t8('Transaction description');
93
94   if (type == 'letter') {
95     $('#record_links_add_filter_project_row').hide();
96
97   } else {
98     $('#record_links_add_filter_project_row').show();
99   }
100
101   $('#record_links_add_filter_title').html(title);
102 }
103 -->
104 </script>