Merge branch '2020-leistungsdatum'
[kivitendo-erp.git] / templates / webpages / gl / form_header.html
1 [%- USE HTML %]
2 [%- USE LxERP %]
3 [%- USE T8 %]
4 [%- USE L %]
5 <h1>[% title | html %]</h1>
6
7 [%- INCLUDE 'common/flash.html' %]
8
9 <script type="text/javascript">
10   <!--
11   function copy_debit_to_credit() {
12     var txt = document.getElementsByName('debit_1')[0].value;
13     document.getElementsByName('credit_2')[0].value = txt;
14   };
15   //-->
16   </script>
17   <script type="text/javascript" src="js/show_form_details.js"></script>
18 <script type="text/javascript" src="js/follow_up.js"></script>
19 <script type="text/javascript" src="js/kivi.Draft.js"></script>
20
21 <form method="post" name="gl" action="gl.pl" id="form">
22
23 [% FOREACH name IN [ 'id', 'closedto', 'locked', 'storno', 'storno_id', 'previous_id', 'previous_gldate' ] %]
24 [% L.hidden_tag(name, $name) %]
25 [%- END %]
26
27 <input type=hidden name=title value="[% hide_title | html %]">
28
29 <input type="hidden" name="follow_up_trans_id_1" value="[% id | html %]">
30 <input type="hidden" name="follow_up_trans_type_1" value="gl_transaction">
31 <input type="hidden" name="follow_up_trans_info_1" value="[% id | html %]">
32 <input type="hidden" name="follow_up_rowcount" value="1">
33
34 <div id="ir_tabs" class="tabwidget">
35  <ul>
36   <li><a href="#ui-tabs-basic-data">[% 'Basic Data' | $T8 %]</a></li>
37 [%- IF INSTANCE_CONF.get_webdav %]
38   <li><a href="#ui-tabs-webdav">[% 'WebDAV' | $T8 %]</a></li>
39 [%- END %]
40 [%- IF id %]
41 [%- IF INSTANCE_CONF.get_doc_storage %]
42   <li><a href="controller.pl?action=File/list&file_type=document&object_type=gl_transaction&object_id=[% HTML.url(id) %]">[% 'Documents' | $T8 %]</a></li>
43   <li><a href="controller.pl?action=File/list&file_type=attachment&object_type=gl_transaction&object_id=[% HTML.url(id) %]">[% 'Attachments' | $T8 %]</a></li>
44 [%- END %]
45 [%- END %]
46  </ul>
47  <div id="ui-tabs-basic-data">
48
49 <table width=100%>
50 [%- IF saved_message %]
51   <tr>
52     <td>[% saved_message | html %]</th>
53   </tr>
54 [%- END %]
55
56   <tr height="5"></tr>
57   <tr>
58     <td>
59       <table>
60         <tr>
61           <td colspan="6" align="left">[% 'Previous transnumber text' | $T8 %] [% previous_id  %] . [% 'Previous transdate text' | $T8 %] [% previous_gldate %]</td>
62         </tr>
63         <tr>
64           <th align="right">[% 'Reference' | $T8 %]</th>
65           <td>[% L.input_tag('reference', reference,  size=20, readonly=readonly) %]</td>
66           <th align="right">[% 'Transdate' | $T8 %]</th>
67           <td>[% L.date_tag('transdate', transdate, readonly=readonly) %]</td>
68         </tr>
69 [%- IF id %]
70         <tr>
71           <th align="right">[% 'ID' | $T8 %]</th>
72           <td>[% L.input_tag('id', id,  size=20, readonly=readonly) %]</td>
73           <th align="right">[% 'Gldate' | $T8 %]</th>
74           <td>[% L.date_tag('gldate', gldate, readonly=1) %]<img class="ui-datepicker-trigger" src="image/calendar.png" alt="..." title="..." style='visibility:hidden'></td>
75         </tr>
76 [%- END %]
77
78         [% SET departments_style = "";
79            SET departments_style = "style='visibility:hidden'" IF ALL_DEPARTMENTS.size == 0 %]
80         <tr>
81           <th [%- departments_style -%]align="right">[% 'Department' | $T8 %]</th>
82           <td [%- departments_style -%]>[% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1) %]</td>
83           <th align=right>[% 'Tax point' | $T8 %]</th>
84           <td>[% L.date_tag('tax_point', tax_point) %]</td>
85         </tr>
86         <tr>
87           <th align="right">[% 'Description' | $T8 %]</th>
88           <td>[% L.areainput_tag('description', description, cols=50, readonly=readonly) %]</td>
89           <th align=right>[% 'Delivery Date' | $T8 %]</th>
90           <td>[% L.date_tag('deliverydate', deliverydate) %]</td>
91         </tr>
92         <tr>
93           <th align="right">[%- IF id %][% 'Mitarbeiter' | $T8 %][% END %]</th>
94           <td>[%- IF id %][% L.input_tag('employee', employee, size=20, readonly=readonly) %][% END %]</td>
95           <th align="right">[% 'MwSt. inkl.' | $T8 %]</th>
96           <td>[% L.checkbox_tag('taxincluded', checked=taxincluded) %]</td>
97         </tr>
98
99       <tr>
100        <td colspan=4>
101          [% 'OB Transaction' | $T8 %] [% L.checkbox_tag('ob_transaction' checked=ob_transaction) %]
102          [% 'CB Transaction' | $T8 %] [% L.checkbox_tag('cb_transaction' checked=cb_transaction) %]
103        </td>
104       </tr>
105       <tr>
106        <td width="1%" align="right" nowrap>[% 'Show details' | $T8 %]</td>
107        <td width="1%">[% L.checkbox_tag('show_details', checked=show_details, onclick='show_form_details();') %]</td>
108       </tr>
109
110       <tr>
111       <td colspan=4>
112           <table width=100%>
113            <tr class=listheading>
114           <th class=listheading style="width:15%">[% 'Account' | $T8 %]</th>
115           <th class=listheading style="width:10%">[% 'Chart balance' | $T8 %]</th>
116           <th class=listheading style="width:10%">[% 'Debit' | $T8 %]</th>
117           <th class=listheading style="width:10%">[% 'Credit' | $T8 %]</th>
118           <th class=listheading style="width:10%">[% 'Tax' | $T8 %]</th>
119           <th class=listheading style="width:5%">[% 'Taxkey' | $T8 %]</th>
120
121 [%- IF show_details %]
122           <th class=listheading style="width:20%">[% 'Source' | $T8 %]</th>
123           <th class=listheading style="width:20%">[% 'Memo' | $T8 %]</th>
124           <th class=listheading style="width:20%">[% 'Project Number' | $T8 %]</th>
125 [%- END %]
126
127         </tr>