6 <form method=post name="arledger" action="[% script %]">
8 [% L.hidden_tag('id', id) %]
9 [% L.hidden_tag('sort', sort) %]
10 [% L.hidden_tag('closedto', closedto) %]
11 [% L.hidden_tag('locked', locked) %]
12 [% L.hidden_tag('title', title_str) %]
13 [% L.hidden_tag('follow_up_trans_id_1', id) %]
14 [% L.hidden_tag('follow_up_trans_type_1', 'ar_transaction') %]
15 [% L.hidden_tag('follow_up_trans_info_1', follow_up_trans_info) %]
16 [% L.hidden_tag('follow_up_rowcount', 1) %]
18 <h1>[% title | html %]</h1>
20 [%- IF saved_message %]<p>[% saved_message | html %]</p>[% END %]
22 <div class="tabwidget">
24 <li><a href="#ui-tabs-basic-data">[% 'Basic Data' | $T8 %]</a></li>
26 <li><a href="controller.pl?action=RecordLinks/ajax_list&object_model=Invoice&object_id=[% HTML.url(id) %]">[% 'Linked Records' | $T8 %]</a></li>
27 <li><a href="[% 'controller.pl?action=AccTrans/list_transactions&trans_id=' _ HTML.url(id) | html %]">[% LxERP.t8('Transactions') %]</a></li>
31 <div id="ui-tabs-basic-data">
40 <th align="right" nowrap>[% 'Customer' | $T8 %]</th>
42 [%- IF selectcustomer %]
43 <select id='customer' name="customer" onchange="document.getElementById('update_button').click();" class="initial_focus">[% selectcustomer %]</select>
45 <input id='customer' name=customer value="[% customer | html %]" size=35 class="initial_focus">
47 <input type="button" value="[% 'Details (one letter abbreviation)' | $T8 %]" onclick="show_vc_details('customer')"></td>
48 [% L.hidden_tag('selectcustomer', selectcustomer) %]
49 [% L.hidden_tag('oldcustomer', oldcustomer) %]
50 [% L.hidden_tag('customer_id', customer_id) %]
51 [% L.hidden_tag('terms', terms) %]
58 <th align=left nowrap>[% 'Credit Limit' | $T8 %]</th>
59 <td>[% LxERP.format_amount(creditlimit, 0) %][% L.hidden_tag('creditlimit', LxERP.format_amount(creditlimit, 0)) %]</td>
60 <th align=left nowrap>[% 'Remaining' | $T8 %]</th>
61 <td class="plus[% creditlimit < 0 ? 0 : 1 %]">[% LxERP.format_amount(creditremaining, 0) %][% L.hidden_tag('creditremaining', LxERP.format_amount(creditremaining, 0)) %]</td>
67 <th align=right>[% 'Currency' | $T8 %]</th>
68 <td><select name=currency>[% selectcurrency %]</select></td>
69 [% L.hidden_tag('selectcurrency', selectcurrency) %]
70 [% L.hidden_tag('defaultcurrency', defaultcurrency) %]
71 [% L.hidden_tag('fxgain_accno', fxgain_accno) %]
72 [% L.hidden_tag('fxloss_accno', fxloss_accno) %]
74 [% L.hidden_tag('forex', forex) %]
76 <th align=right>[% 'Exchangerate' | $T8 %]</th>
77 <td>[%- IF forex %][% L.hidden_tag('exchangerate', LxERP.format_amount(exchangerate, 2)) %][% LxERP.format_amount(exchangerate, 2) %][%- ELSE %][% L.input_tag('exchangerate', LxERP.format_amount(exchangerate, 2), size=10) %][%- END %]</td>
81 [%- IF selectdepartment %]
83 <th align="right" nowrap>[% 'Department' | $T8 %]</th>
84 <td colspan=3><select name=department>[% selectdepartment %]</select>
85 <input type=hidden name=selectdepartment value="[% selectdepartment | html %]">
90 <td align=right>[% L.checkbox_tag('taxincluded', checked=taxincluded) %]</td>
91 <th align="left" nowrap><label for="taxincluded">[% 'Tax Included' | $T8 %]</label></th>
94 <td align="right">[% L.checkbox_tag('direct_debit', checked=direct_debit) %]</td>
95 <th align="left" nowrap><label for="direct_debit">[% 'direct debit' | $T8 %]</label></th>
101 [%- IF selectemployee %]
103 <th align=right nowrap>[% 'Salesperson' | $T8 %]</th>
104 <td colspan=2><select name=employee>[% selectemployee %]</select>[% L.hidden_tag('selectemployee', selectemployee) %]</td>
107 [% L.hidden_tag('employee', employee) %]
110 <th align=right nowrap>[% 'Invoice Number' | $T8 %]</th>
111 <td><input name=invnumber size=11 value="[% invnumber | html %]"></td>
114 <th align=right nowrap>[% 'Order Number' | $T8 %]</th>
115 <td><input name=ordnumber size=11 value="[% ordnumber | html %]"></td>
118 <th align=right nowrap>[% 'Invoice Date' | $T8 %]</th>
119 <td>[% L.date_tag('transdate', transdate) %]</td>
122 <th align=right nowrap>[% 'Due Date' | $T8 %]</th>
123 <td>[% L.date_tag('duedate', duedate) %]</td>
126 <th align=right nowrap>[% 'Project Number' | $T8 %]</th>
127 <td>[% L.select_tag('globalproject_id', ALL_PROJECTS, title_key = 'projectnumber', default = globalproject_id, with_empty = 1) %]</td>
136 [% L.hidden_tag('rowcount', rowcount) %]
140 <tr class=listheading>
141 <th class=listheading style="width:15%">[% 'Account' | $T8 %]</th>
142 <th class=listheading style="width:10%">[% 'Amount' | $T8 %]</th>
143 <th class=listheading style="width:10%">[% 'Tax' | $T8 %]</th>
144 <th class=listheading style="width:5%">[% 'Taxkey' | $T8 %]</th>
145 <th class=listheading style="width:10%">[% 'Project' | $T8 %]</th>
149 [%- FOREACH row IN transactions %]
151 <td>[% row.selectAR_amount %]</td>
152 <td>[% L.input_tag('amount_' _ loop.count, LxERP.format_amount(row.amount, 2)) %]</td>
153 <td>[% L.hidden_tag('tax_' _ loop.count, LxERP.format_tax(row.tax, 2)) %][% LxERP.format_amount(row.tax, 2) | html %]</td>
154 <td>[% row.taxchart %]</td>
155 <td>[% L.select_tag('project_id_' _ loop.count, ALL_PROJECTS, title_key = 'projectnumber', default = row.project_id, with_empty = 1) %]</td>
165 <td>[% ARselected %]</td>
166 <th align=left>[% LxERP.format_amount(invtotal, 2) | html %]</th>
168 <input type=hidden name=oldinvtotal value='[% oldinvtotal %]'>
169 <input type=hidden name=oldtotalpaid value='[% oldtotalpaid %]'>
171 <input type=hidden name=taxaccounts value="[% taxaccounts | html %]">
184 <th align=left width=1%>[% 'Notes' | $T8 %]</th>
185 <td align=left><textarea name=notes rows="[% rows %]" cols=50 wrap=soft>[% notes | html %]</textarea></td>
187 <th align=left width=1%>[% 'Notes for customer' | $T8 %]</th>
188 <td align=left><textarea name=intnotes rows="[% rows %]" cols=50 wrap=soft readonly>[% intnotes | html %]</textarea></td>
196 <tr class=listheading>
197 <th colspan=7 class=listheading>[% 'Incoming Payments' | $T8 %]</th>
201 <th>[% 'Date' | $T8 %]</th>
202 <th>[% 'Source' | $T8 %]</th>
203 <th>[% 'Memo' | $T8 %]</th>
204 <th>[% 'Amount' | $T8 %]</th>
206 <th>[% 'Exch' | $T8 %]</th>
208 <th>[% 'Account' | $T8 %]</th>
209 <th>[% 'Project Number' | $T8 %]</th>
212 [%- FOREACH row IN payments %]
215 [%- IF row.changeable %]
216 [% L.date_tag('datepaid_' _ loop.count, row.datepaid) %]
218 [% row.datepaid | html %][% L.hidden_tag('datepaid_' _ loop.count, row.datepaid) %]
222 [%- IF row.changeable %]
223 <input name="source_[% loop.count %]" size=11 value="[% row.source | html %]">
225 [% row.source | html %]<input type=hidden name="source_[% loop.count %]" value="[% row.source | html %]">
229 [%- IF row.changeable %]
230 <input name="memo_[% loop.count %]" size=11 value="[% row.memo | html %]">
232 [% row.memo | html %]<input type=hidden name="memo_[% loop.count %]" value="[% row.memo | html %]">
236 [%- IF row.changeable %]
237 <input name="paid_[% loop.count %]" size=11 value="[% row.paid ? LxERP.format_amount(row.paid, 2) : '' | html %]" onBlur="check_right_number_format(this)">
239 [% row.paid | html %]<input type=hidden name="paid_[% loop.count %]" value="[% row.paid ? LxERP.format_amount(row.paid, 2) : '' | html %]">
244 [%- IF row.forex || !row.changeable%]
245 <input type=hidden name="exchangerate_[% loop.count %]" value='[% row.exchangerate | html %]'>[% row.exchangerate | html %]
247 <input name="exchangerate_[% loop.count %]" size=10 value='[% row.exchangerate | html %]'>
249 <input type=hidden name="forex_[% loop.count %]" value='[% row.forex | html %]'>
253 [%- IF row.changeable %]
254 [% row.selectAR_paid %]
256 [% row.AR_paid | html %]<input type=hidden name="AR_paid_[% loop.count %]" value='[% row.AR_paid | html %]'>
260 [%- IF row.changeable %]
261 [% L.select_tag('paid_project_id_' _ loop.count, ALL_PROJECTS, title_key = 'projectnumber', default = row.paid_project_id, with_empty=1) %]
263 [% project_labels.${row.paid_project_id} | html %]
264 <input type=hidden name="paid_project_id_[% loop.count %]" value='[% row.paid_project_id %]'>
268 <input type=hidden name="acc_trans_id_[% loop.count %]" value='[% row.acc_trans_id | html %]'>
269 <input type=hidden name="gldate_[% loop.count %]" value='[% row.gldate | html %]'>
275 <td align="center">[% 'Total' | $T8 %]</td>
276 <td align="center">[% LxERP.format_amount(totalpaid, 2) | html %]</td>
281 <td align="center">[% 'Missing amount' | $T8 %]</td>
282 <td align="center">[% LxERP.format_amount(paid_missing, 2) | html %]</td>
284 <input type=hidden name=paidaccounts value='[% paidaccounts %]'>