1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<html:form styleId="formPersonnalisation" action="/manageCommande" onsubmit="return false;">
<html:hidden styleId='personnalisationSize' property="personnalisationSize"/>
<table class="tableau_ccip">
<tr><td height="15"></td></tr>
<tr>
<td width="50">
<div class="div_commande_next" id="suivant_personnalisation" align="right"></div>
</td>
<th width="100%">Personnalisation de vos extractions</th>
</tr>
<tr><td height="15"></td></tr>
<tr>
<td width="50"></td>
<td width="100%">
<b>Choisir au moins un nom (facultatif pour les etiquettes et structures location)</b></br>
<b>Choisir au maximum 8 representants (format Excel Complet Production avec rep. eco)</b>
</td>
</tr>
<tr>
<td width="50"></td>
<td>
<table class="tableau_ccip">
<tr>
<td width="250" valign="top">
<html:select property="perso" size="10" styleId="persosSelect" style="width: 250px;height: 200px" onchange="checkAviabilityPerso()">
<html:optionsCollection property="personnalisations" label="label" value="code" />
</html:select>
</td>
<td align="center" valign="top"><br>
<span id="add_pcl" onclick="javascript:addToPerso();" class="cci_no_clickable">
<img border="0" src="<html:rewrite page='/img/right.gif'/>" width="15" height="15" title="Ajouter la colonne"/>
</span>
<span id="add_pall" onclick="javascript:addAllToPerso();" class="cci_no_clickable">
<img border="0" src="<html:rewrite page='/img/addall.gif'/>" width="15" height="15" title="Ajouter tout"/>
</span><br/><br/>
<span id="rem_pcl" onclick="javascript:removeFromPerso();" class="cci_no_clickable">
<img border="0" src="<html:rewrite page='/img/left.gif'/>" width="15" height="15" title="Retirer la colonne"/>
</span>
<span id="rem_pall" onclick="javascript:removeAllFromPerso();" class="cci_no_clickable">
<img border="0" src="<html:rewrite page='/img/remall.gif'/>" width="15" height="15" title="Retirer tout"/>
</span>
</td>
<td width="250" valign="top" align="right">
<select multiple="multiple" id="persosSelected" name="persosSelected" size="10"
style="width: 250px;height: 200px" onchange="checkAviabilityPerso()"></select>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="50"></td>
<td>
<table class="tableau_ccip">
<tr>
<td width="30"></td>
<td>
<div id="inversionDiv"><html:checkbox property="inversion" styleId="inversionID">INVERSION RAISON SOCIALE / PERSONNALISATION</html:checkbox> </div>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td height="20" colspan="2"></td>
</tr>
<tr>
<td width="50"></td>
<td width="100%">
<div id="labelPapierPersoDiv2">
Choisir un nom et/ou un titre personnel de remplacement :<br><br>
Si l'établissement contient le nom demandé, il sera extrait, sinon c'est le deuxième nom ou le titre qui sera retenu, et ainsi de suite selon votre ordre de sélection.<br><br>
<b>Titre personnel de remplacement facultatif (38 car.max)</b><br>
</div>
</td>
</tr>
<tr>
<td width="50"></td>
<td>
<table class="tableau_ccip">
<tr>
<td width="30"></td>
<td><div id="labelPapierPersoDiv"><html:text property="labelPapierPerso" styleId="labelPapierPersoID" size="50" maxlength="38" style="text-transform: uppercase" onkeyup="checkPersoLabel()"/></div></td>
</tr>
</table>
</td>
</tr>
</table>
</html:form>
<script type="text/javascript">
var jperso;
var jpersoType;
addListener(document.getElementById('labelPapierPersoID'),'keypress', checkPersoLabelXX, true );
</script> |
Partager