Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / templates / webpages / is / form_footer.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %][%- USE P -%]
5   <tr>
6    <td>
7     <table width="100%">
8      <tr valign="bottom">
9       <td>
10        <table>
11         <tr>
12          <th align="left">[% 'Notes (will appear on hard copy)' | $T8 %]</th>
13          <th align="left">[% 'Internal Notes' | $T8 %]</th>
14          <th align="right">[% 'Payment / Delivery Options' | $T8 %]</th>
15         </tr>
16         <tr valign="top">
17          <td>
18           [% L.textarea_tag("notes", notes, wrap="soft", style="width: 350px; height: 150px", class="texteditor") %]
19          </td>
20          <td>
21           [% L.textarea_tag("intnotes", intnotes, wrap="soft", style="width: 350px; height: 150px") %]
22          </td>
23          <td>
24            <table>
25              <tr>
26                <th align="right">[% 'Payment Terms' | $T8 %]</th>
27                <td>[% L.select_tag('payment_id', payment_terms, default = payment_id, title_key = 'description', with_empty = 1, style="width: 250px") %]
28                  <script type='text/javascript'>$('#payment_id').change(function(){ kivi.SalesPurchase.set_duedate_on_reference_date_change("invdate"); })</script>
29                </td>
30              </tr>
31              <tr>
32                <th align="right">[% 'Delivery Terms' | $T8 %] </th>
33                <td>
34                  [% L.select_tag('delivery_term_id', ALL_DELIVERY_TERMS, default = delivery_term_id, with_empty = 1, title_key = 'description', style = 'width: 250px') %]
35                </td>
36              </tr>
37              <tr>
38                <th align="right">[% 'direct debit' | $T8 %]</th>
39                <td>
40                  [%- L.checkbox_tag('direct_debit', 'checked', direct_debit) %]
41                </td>
42              </tr>
43 [%- IF INSTANCE_CONF.get_create_qrbill_invoices > 0 %]
44              <tr>
45                <th align="right">[% 'QR bill without amount' | $T8 %]</th>
46                <td>
47                  [%- L.checkbox_tag('qrbill_without_amount', 'checked', qrbill_without_amount) %]
48                </td>
49              </tr>
50 [%- END %]
51            </table>
52          </td>
53         </tr>
54 [%- IF id && follow_ups.size %]
55         <tr>
56           <td colspan="2">
57             [%- LxERP.t8('There are #1 unfinished follow-ups of which #2 are due.', follow_ups.size, follow_ups_unfinished) | html %]
58           <td>
59         </tr>
60 [%- END %]
61        </table>
62       </td>
63 [%- IF show_weight %]
64       <td>
65        <table>
66         <tr>
67          <th  align=left>[% 'Total weight' | $T8 %]</th>
68          <td>
69           [% LxERP.format_amount(totalweight) %] [% HTML.escape(weightunit) %]
70          </td>
71         </tr>
72        </table>
73       </td>
74 [%- END %]
75       <td>
76        <table>
77         <tr>
78          <th  align=left>[% 'Ertrag' | $T8 %]</th>
79          <td>
80           [% LxERP.format_amount(marge_total, 2, 0) %]
81           <input type=hidden name="marge_total" value="[% marge_total %]">
82          </td>
83         </tr>
84         <tr>
85          <th  align=left>[% 'Ertrag prozentual' | $T8 %]</th>
86          <td>
87           [% LxERP.format_amount(marge_percent, 2, 0) %] %
88           <input type=hidden name="marge_percent" value="[% marge_percent %]">
89          </td>
90         </tr>
91        </table>
92       </td>
93       <td align="right">
94   [%- IF taxaccounts %]
95        <input type="hidden" name="taxincluded_changed_by_user" id="taxincluded_changed_by_user" value="[% taxincluded_changed_by_user ? '1' : '0' %]">
96        <input name="taxincluded" onclick="document.getElementById('taxincluded_changed_by_user').value = '1';" class="checkbox" type="checkbox" [% IF taxincluded %]checked[% END %]>
97        <b>[% 'Tax Included' | $T8 %]</b>
98        <br>
99        <br>
100   [%- END %]
101        <table>
102
103 [%- UNLESS taxincluded %]
104         <tr>
105          <th align="right">[% 'Subtotal' | $T8 %]</th>
106          <td align="right">[% LxERP.format_amount(invsubtotal, 2) %]</td>
107        </tr>
108 [%- END %]
109
110 [%# tax %]
111 [% FOREACH item = taxaccounts_array %]
112 [% SET description_ref = item _ '_description' %]
113 [% SET rate_ref        = item _ '_rate' %]
114 [% SET total_ref       = item _ '_total' %]
115 [% SET netto_ref       = item _ '_netto' %]
116        <tr>
117         <th align="right">[% 'Including' | $T8 %] [% $description_ref | html %]&nbsp;[% $rate_ref * 100 %]%</th>
118         <td align="right">[% LxERP.format_amount($total_ref, 2) %]</td>
119        </tr>
120   [%- IF taxincluded %]
121        <tr>
122         <th align="right">[% 'Net amount' | $T8 %]</th>
123         <td align="right">[% LxERP.format_amount($netto_ref, 2) %]</td>
124        </tr>
125   [%- END %]
126 [%- END %]
127
128 [%- IF rounding %]
129         <tr>
130           <th align='right'>[% 'Rounding' | $T8 %]</th>
131           <td align='right'>[% LxERP.format_amount(rounding, 2) %]</td>
132         </tr>
133 [%- END %]
134
135         <tr>
136          <th align="right">[% 'Total' | $T8 %]</th>
137          <td align="right">[% LxERP.format_amount(invtotal, 2) %]</td>
138         </tr>
139        </table>
140       </td>
141      </tr>
142     </table>
143    </td>
144   </tr>
145 [% IF is_type_normal_invoice OR  is_type_credit_note %]
146   [% PROCESS 'is/_payments.html' %]
147 [% END %]
148  </table>
149 </div>
150 [% PROCESS 'webdav/_list.html' %]
151 <div id="ui-tabs-1">
152  [% LxERP.t8('Loading...') %]
153 </div>
154 </div>
155
156 <input type="hidden" name="rowcount" value="[% rowcount %]">
157 <input type="hidden" name="callback" value="[% callback | html %]">
158 [% P.hidden_tag('draft_id', draft_id) %]
159 [% P.hidden_tag('draft_description', draft_description) %]
160 <input type="hidden" name="customer_discount" value="[% customer_discount %]">
161 <input type="hidden" name="gldate" value="[% gldate %]">
162
163 [%- IF INSTANCE_CONF.get_create_qrbill_invoices <= 0 %]
164  <input type="hidden" name="qrbill_without_amount" value="[% qrbill_without_amount %]">
165 [%- END %]
166
167 <div id="shipto_inputs" class="hidden">
168  [%- PROCESS 'common/_ship_to_dialog.html' cvars=shipto_cvars %]
169 </div>
170
171 <div id="email_inputs" style="display: none"></div>
172
173 <div id="print_options" style="display: none">
174  [% print_options %]
175 </div>
176 </form>
177 <script type='text/javascript'>
178  $(kivi.SalesPurchase.init_on_submit_checks);
179 </script>
180
181 <div id="shipto_dialog" class="hidden"></div>
182 <div id="print_dialog" class="hidden">
183  [%- PROCESS 'common/_print_dialog.html' %]
184 </div>