5512294b8443e4207cc214e93b66ece08dda422e
[kivitendo-erp.git] / templates / webpages / requirement_spec / _form.html
1 [%- USE LxERP -%][%- USE L -%]
2 [%- DEFAULT id_prefix = 'basic_settings_form'
3             submit_as = 'post'
4 %]
5 <form method="post" action="controller.pl" id="[% id_prefix %]"[% UNLESS submit_as == 'post' %] class="edit-basic-settings-context-menu"[% END %]>
6  <h2>[% LxERP.t8("Edit general settings") %]</h2>
7
8  [% L.hidden_tag("id", SELF.requirement_spec.id, id=id_prefix _ '_id') %]
9  [% L.hidden_tag("requirement_spec.is_template", SELF.requirement_spec.is_template, id=id_prefix _ '_is_template') %]
10
11  <table class="rs_input_field">
12   <tr>
13    <td>[% LxERP.t8("Title") %]</td>
14    <td>[% L.input_tag("requirement_spec.title", SELF.requirement_spec.title, id=id_prefix _ '_title') %]</td>
15   </tr>
16
17 [%- UNLESS SELF.requirement_spec.is_template %]
18
19   <tr>
20    <td>[% LxERP.t8("Requirement Spec Type") %]</td>
21    <td>[% L.select_tag("requirement_spec.type_id",  SELF.types, default=SELF.requirement_spec.type_id, title_key="description", id=id_prefix _ '_type_id') %]</td>
22   </tr>
23
24   <tr>
25    <td>[% LxERP.t8("Requirement Spec Status") %]</td>
26    <td>[% L.select_tag("requirement_spec.status_id",  SELF.statuses, default=SELF.requirement_spec.status_id, title_key="description", id=id_prefix _ '_status_id') %]</td>
27   </tr>
28
29   <tr>
30    <td>[% LxERP.t8("Customer") %]</td>
31    <td>[% L.select_tag("requirement_spec.customer_id",  SELF.customers, default=SELF.requirement_spec.customer_id, title_key="name", id=id_prefix _ '_customer_id',
32                        onchange="kivi.requirement_spec.basic_settings_customer_changed('#" _ id_prefix _ "_customer_id', '#" _ id_prefix _ "_hourly_rate_as_number')") %]</td>
33   </tr>
34
35   <tr>
36    <td>[% LxERP.t8("Hourly Rate") %]</td>
37    <td>[% L.input_tag("requirement_spec.hourly_rate_as_number", SELF.requirement_spec.hourly_rate_as_number, id=id_prefix _ '_hourly_rate_as_number') %]</td>
38   </tr>
39
40 [%- END %]
41
42  </table>
43
44 [%- IF SELF.copy_source %]
45  [%- L.hidden_tag('copy_source_id', SELF.copy_source.id) %]
46
47  <p>
48   [%- LxERP.t8("The new requirement spec will be a copy of '#1' for customer '#2'.", SELF.copy_source.title, SELF.copy_source.customer.name) %]
49  </p>
50 [%- END %]
51
52  <p>
53 [% IF submit_as == 'post' %]
54   [% L.hidden_tag("action", "RequirementSpec/dispatch", id=id_prefix _ '_action') %]
55   [% L.submit_tag("action_" _ (SELF.requirement_spec.id ? "update" : "create"), LxERP.t8('Save'), id=id_prefix _ '_action_update') %]
56   <a href="[% SELF.url_for(action="list", is_template=SELF.requirement_spec.is_template) %]">[% LxERP.t8('Abort') %]</a>
57 [% ELSE %]
58   [% L.ajax_submit_tag("controller.pl?action=RequirementSpec/update",  "#" _ id_prefix, LxERP.t8("Save"), id=id_prefix _ '_submit') %]
59   <script type="text/javascript"><!--
60   $(function() {
61     $("#[% id_prefix %] INPUT[type=text]").keydown(function(event) {
62       if(event.keyCode == 13) {
63         event.preventDefault();
64         $('#[% id_prefix %]_submit').click();
65         return false;
66       }
67     });
68   });
69 --></script>
70 [% END %]
71  </p>
72 </form>