[%- USE LxERP %]
<body onLoad="[% onload %]">
- <form method=post name=oe action="[% script %]">
+ <form method="post" name="oe" action="[% script %]">
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/delivery_customer_selection.js"></script>
<script type="text/javascript" src="js/vendor_selection.js"></script>
<script type="text/javascript" src="js/calculate_qty.js"></script>
+ <script type="text/javascript" src="js/customer_or_vendor_selection.js"></script>
+ <script type="text/javascript" src="js/follow_up.js"></script>
[%- FOREACH row = HIDDENS %]
- <input type="hidden" name="[% row.name %]" value="[% HTML.escape(row.value) %]" >
+ <input type="hidden" name="[% HTML.escape(row.name) %]" value="[% HTML.escape(row.value) %]" >
[%- END %]
- <table width=100%>
- <tr class=listtop>
- <th class=listtop>[% title %]</th>
- </tr>
+ <input type="hidden" name="follow_up_trans_id_1" value="[% HTML.escape(id) %]">
+ <input type="hidden" name="follow_up_trans_type_1" value="[% HTML.escape(type) %]">
+ <input type="hidden" name="follow_up_trans_info_1" value="[% HTML.escape(follow_up_trans_info) %]">
+ <input type="hidden" name="follow_up_rowcount" value="1">
+
+ <div class="listtop">[% title %]</div>
+
+ <table width="100%">
<tr height="5"></tr>
<tr>
<td>
<table width="100%">
- <tr valign=top>
- <td width=50%>
- <table width=100%>
+ <tr valign="top">
+ <td width="50%">
+ <table width="100%">
<tr>
- [% vc %]
-[%- IF contact %]
+ <th align="right">[% IF vc == 'customer' %]Kunde[% ELSE %]Lieferant[% END %]</th>
+ <td>
+ [%- INCLUDE 'generic/multibox.html'
+ name = vc,
+ style = 'width: 250px',
+ DATA = vc == 'customer' ? ALL_CUSTOMERS : ALL_VENDORS,
+ id_sub = 'vc_keys',
+ label_key = 'name',
+ select = vc_select,
+ limit = vclimit,
+ onChange = "document.getElementById('update_button').click();" -%]
+ <input type="button" value="D" onclick="show_vc_details('[% HTML.escape(vc) %]')">
+ </td>
+ </tr>
+[%- IF ALL_CONTACTS.size %]
<tr>
<th align="right">Ansprechpartner</th>
- <td>[% contact %]</td>
+ <td>
+ [%- INCLUDE 'generic/multibox.html'
+ name = 'cp_id',
+ style = 'width: 250px',
+ DATA = ALL_CONTACTS,
+ id_key = 'cp_id',
+ label_sub = 'contact_labels',
+ show_empty = 1 -%]
+ </td>
</tr>
[%- END %]
-[%- IF shipto %]
+[%- IF ALL_SHIPTO.size %]
<tr>
<th align="right">Lieferadresse</th>
- <td>[% shipto %]</td>
+ <td>
+ [%- INCLUDE 'generic/multibox.html'
+ name = 'shipto_id',
+ style = 'width: 250px',
+ DATA = ALL_SHIPTO,
+ id_key = 'shipto_id',
+ label_sub = 'shipto_labels',
+ show_empty = 1,
+ onChange = "document.getElementById('update_button').click();" -%]
+ </td>
</tr>
[%- END %]
[%- IF is_order %]
[%- IF business %]
<tr>
<th align="right">[% business_label %]</th>
- <td>[% business %]; Rabatt [% LxERP.format_percent(tradediscount) %] %</td>
+ <td>[% HTML.escape(business) %]; Rabatt [% LxERP.format_percent(tradediscount) %] %</td>
</tr>
[%- END %]
[%- IF max_dunning_level %]
<tr>
<th align="right">höchste Mahnstufe:</th>
<td>
- <b>[% max_dunning_level %]</b>;
+ <b>[% HTML.escape(max_dunning_level) %]</b>;
gemahnter Betrag: <b>[% LxERP.format_amount(dunning_amount, 2) %]</b>
</td>
</tr>
[%- END %]
<tr>
<th align="right">Steuersatz</th>
- <td>[% taxzone %]</td>
+ <td>
+ [%- INCLUDE 'generic/multibox.html'
+ name = 'taxzone_id',
+ style = 'width: 250px',
+ DATA = ALL_TAXZONES,
+ id_key = 'id',
+ label_key = 'description' -%]
+ </td>
</tr>
[%- IF selectdepartment %]
<tr>
<th align="right" nowrap>Abteilung</th>
- <td colspan=3><select name=department style="width: 250px">[% selectdepartment %]</select>
- <input type=hidden name=selectdepartment value="[% HTML.escape(selectdepartment) %]">
+ <td colspan="3"><select name="department" style="width: 250px">[% selectdepartment %]</select>
+ <input type="hidden" name="selectdepartment" value="[% HTML.escape(selectdepartment) %]">
</td>
</tr>
[%- END %]
[%- END %]
[%- IF show_exchangerate %]
<tr>
- <th align=right>Wechselkurs</th>
+ <th align="right">Wechselkurs</th>
<td>
- [%~ IF forex ~%]
+ [%- IF forex %]
[% LxERP.format_amount(exchangerate, 0) %]
- [%~ ELSE ~%]
- <input name=exchangerate size=10 value="[% HTML.escape(LxERP.format_amount(exchangerate)) %]">
- [%~ END ~%]
+ [%- ELSE %]
+ <input name="exchangerate" size="10" value="[% HTML.escape(LxERP.format_amount(exchangerate)) %]">
+ [%- END %]
</td>
</tr>
[%- END %]
[%- IF is_sales %]
<tr>
- <th align=right>Motiv</th>
- <td style="font-weight:bold" colspan=3><input name=motiv size=35 value="[% HTML.escape(motiv) %]"></td>
+ <th align="right">Motiv</th>
+ <td style="font-weight:bold" colspan="3"><input name="motiv" size="35" value="[% HTML.escape(motiv) %]"></td>
</tr>
-[%- END -%]
+[%- END %]
<tr>
- <th align=right>Versandort</th>
- <td colspan=3><input name=shippingpoint size=35 value="[% HTML.escape(shippingpoint) %]"></td>
+ <th align="right">Versandort</th>
+ <td colspan="3"><input name="shippingpoint" size="35" value="[% HTML.escape(shippingpoint) %]"></td>
</tr>
<tr>
- <th align=right>Transportmittel</th>
- <td colspan=3><input name=shipvia size=35 value="[% HTML.escape(shipvia) %]"></td>
+ <th align="right">Transportmittel</th>
+ <td colspan="3"><input name="shipvia" size="35" value="[% HTML.escape(shipvia) %]"></td>
</tr>
<tr>
<th align="right">Vorgangsbezeichnung</th>
</tr>
[%- IF show_delivery_customer %]
<tr>
- <td colspan=4>
+ <td colspan="4">
<table>
<tr>
- <td colspan=2>
+ <td colspan="2">
<button type="button" onclick="delivery_customer_selection_window('delivery_customer_string','delivery_customer_id')">Endkunde wählen:</button>
</td>
- <td colspan=2><input type=hidden name=delivery_customer_id value="[% HTML.escape(delivery_customer_id) %]">
- <input size=45 id=delivery_customer_string name=delivery_customer_string value="[% HTML.escape(delivery_customer_string) %]"></td>
+ <td colspan="2"><input type="hidden" name="delivery_customer_id" value="[% HTML.escape(delivery_customer_id) %]">
+ <input size="45" id="delivery_customer_string" name="delivery_customer_string" value="[% HTML.escape(delivery_customer_string) %]"></td>
</tr>
<tr>
- <td colspan=2>
+ <td colspan="2">
<button type="button" onclick="vendor_selection_window('delivery_vendor_string','delivery_vendor_id')">Händler wählen</button>
</td>
- <td colspan=2><input type=hidden name=delivery_vendor_id value="[% HTML.escape(delivery_vendor_id) %]">
- <input size=45 id=vendor_string name=delivery_vendor_string value="[% HTML.escape(delivery_vendor_string) %]"></td>
+ <td colspan="2"><input type="hidden" name="delivery_vendor_id" value="[% HTML.escape(delivery_vendor_id) %]">
+ <input size="45" id="vendor_string" name="delivery_vendor_string" value="[% HTML.escape(delivery_vendor_string) %]"></td>
</tr>
</table>
</td>
- </tr>
+ </tr>
[%- END %]
</table>
</td>
- <td align=right>
+ <td align="right">
<table>
[% openclosed %]
<tr>
<th align="right">Bearbeiter</th>
- <td>[% employee %]</td>
+ <td>
+ [%- INCLUDE 'generic/multibox.html'
+ name = 'employee_id',
+ DATA = ALL_EMPLOYEES,
+ id_key = 'id',
+ label_sub = 'sales_employee_labels' -%]
+ </td>
</tr>
-[%- IF salesmen %]
+[%- IF is_sales and ALL_SALESMEN.size %]
<tr>
<th align="right">Verkäufer/in</th>
- <td>[% salesmen %]</td>
+ <td>
+ [%- INCLUDE 'generic/multibox.html'
+ name = 'salesman_id',
+ default = salesman_id ? salesman_id : employee_id,
+ DATA = ALL_SALESMEN,
+ id_key = 'id',
+ label_sub = 'sales_employee_labels' -%]
+ </td>
</tr>
[%- END %]
[%- IF is_order %]
<tr>
- <th width=70% align=right nowrap>Auftragsnummer</th>
- <td><input name=ordnumber size=11 value="[% ordnumber %]"></td>
+ <th width="70%" align="right" nowrap>Auftragsnummer</th>
+ <td><input name="ordnumber" size="11" value="[% HTML.escape(ordnumber) %]"></td>
</tr>
[%- END %]
<tr>
- <th width=70% align=right nowrap>[% IF is_req_quo %]Anfragenummer[% ELSE %]Angebotsnummer[% END %]</th>
- <td><input name=quonumber size=11 value="[% quonumber %]"></td>
+ <th width="70%" align="right" nowrap>[% IF is_req_quo %]Anfragenummer[% ELSE %]Angebotsnummer[% END %]</th>
+ <td><input name="quonumber" size="11" value="[% HTML.escape(quonumber) %]"></td>
</tr>
-[%- IF is_order %]<tr>
- <th width=70% align=right nowrap>Bestellnummer des Kunden</th>
- <td><input name=cusordnumber size=11 value="[% cusordnumber %]"></td>
+[%- IF is_order %]
+ <tr>
+ <th width="70%" align="right" nowrap>Bestellnummer des Kunden</th>
+ <td><input name="cusordnumber" size="11" value="[% HTML.escape(cusordnumber) %]"></td>
</tr>
[%- END %]
<tr>
- <th align=right nowrap>
- [%~ IF is_order ~%]
+ <th align="right" nowrap>
+ [%- IF is_order %]
Auftragsdatum
- [%~ ELSE ~%]
+ [%- ELSE %]
Angebotsdatum
- [%~ END ~%]
+ [%- END %]
</th>
[% button1 %]
</tr>
<tr>
- <th align=right nowrap>
- [%~ IF is_sales_quo ~%]
+ <th align="right" nowrap>
+ [%- IF is_sales_quo %]
gültig bis
- [%~ ELSE ~%]
+ [%- ELSE %]
Lieferdatum
- [%~ END ~%]
+ [%- END %]
</th>
[% button2 %]
</tr>
<tr>
<th width="70%" align="right" nowrap>Projektnummer</th>
- <td>[% globalprojectnumber %]</td>
+ <td>
+ [%- INCLUDE 'generic/multibox.html'
+ name = 'globalproject_id',
+ DATA = ALL_PROJECTS,
+ id_key = 'id',
+ label_key = 'projectnumber',
+ show_empty = 1,
+ onChange = "document.getElementById('update_button').click();" -%]
+ </td>
</tr>
</table>
</td>