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
|
<layout:pager maxPageItems="10" styleClass="pagination">
<layout:collection name="FactCltForm" offsetIndexId="index" id="lignecmdclt" property="listLignesCmdClt" width="100%">
<layout:collectionItem title="Article">
<layout:link href="javascript:goToInterroStock('${lignecmdclt.artId}','${lignecmdclt.artcode}', '${lignecmdclt.ligneCltId}', '${lignecmdclt.typeligneClt}');">
<layout:text property="listLignesCmdClt[${index}].artcode" readonly="true" layout="false" size="8" style="color:blue; text-decoration:underline; font-weight:bold; cursor:hand;"/>
</layout:link>
</layout:collectionItem>
<layout:collectionItem property="artdesign" title="DESIGNATION"/>
<layout:collectionItem property="cmdCltQte" title="QTE" style="TEXT-ALIGN: right;"/>
<layout:collectionItem title="QTAN">
<logic:equal name="fact" value="AF">
<layout:text property="listLignesCmdClt[${index}].cmdCltQteAnnu" onchange="qteAnnulToQteRal(this, '${index}');" size="4" readonly="true" layout="false" style="TEXT-ALIGN: right;"/>
</logic:equal>
<logic:notEqual name="fact" value="AF">
<layout:text property="listLignesCmdClt[${index}].cmdCltQteAnnu" layout="false" size="4" readonly="true" style="TEXT-ALIGN: right;"/>
</logic:notEqual>
</layout:collectionItem>
<layout:collectionItem title="QTLIV">
<logic:equal name="fact" value="F">
<layout:text property="listLignesCmdClt[${index}].cmdCltQteLvr" onchange="checkQteLiv(this, '${index}', '${lignecmdclt.qteStkDepot}', '${lignecmdclt.qteStkExpo}');" size="4" readonly="true" layout="false" style="TEXT-ALIGN: right;"/>
</logic:equal>
<logic:notEqual name="fact" value="F">
<layout:text property="listLignesCmdClt[${index}].cmdCltQteLvr" layout="false" size="4" readonly="true" style="TEXT-ALIGN: right;"/>
</logic:notEqual>
<input type="hidden" name="listLignesCmdClt[${index}].cmdCltQteLvrIni" value="${lignecmdclt.cmdCltQteLvrIni}"/>
</layout:collectionItem>
<layout:collectionItem title="QTRAL">
<layout:text property="listLignesCmdClt[${index}].qtral" readonly="true" layout="false" size="4" style="TEXT-ALIGN: right;"/>
<input type="hidden" name="listLignesCmdClt[${index}].qtralIni" value="${lignecmdclt.qtralIni}"/>
</layout:collectionItem>
<layout:collectionItem title="RES">
<layout:text property="listLignesCmdClt[${index}].res" readonly="true" layout="false" size="2" style="TEXT-ALIGN: center;"/>
</layout:collectionItem>
<layout:collectionItem title="PCONSRD">
<layout:text property="listLignesCmdClt[${index}].puv" readonly="true" layout="false" size="6" style="TEXT-ALIGN: right;"/>
</layout:collectionItem>
<layout:collectionItem title="E/D" style="TEXT-ALIGN: center;">
<layout:select property="listLignesCmdClt[${index}].ed" layout="false">
<layout:option key="D" value="D"> D </layout:option>
<layout:option key="E" value="E"> E </layout:option>
</layout:select>
</layout:collectionItem>
<logic:equal name="fact" value="F">
<layout:collectionItem title="Fact">
<layout:checkbox property="listLignesCmdClt[${index}].fact" layout="false" onclick="checkQteRalAndArtType(this, '${index}', '${lignecmdclt.artcode}', '${lignecmdclt.qteStkDepot}', '${lignecmdclt.qteStkExpo}');"></layout:checkbox>
</layout:collectionItem>
</logic:equal>
<logic:equal name="fact" value="AF">
<layout:collectionItem title="Annul">
<layout:checkbox property="listLignesCmdClt[${index}].fact" layout="false" onclick="checkQteLivrBeforeAnnul(this, '${index}');"></layout:checkbox>
</layout:collectionItem>
</logic:equal>
<logic:equal name="fact" value="RF">
<layout:collectionItem title="Reedit">
<layout:checkbox property="listLignesCmdClt[${index}].fact" layout="false" styleId="factCheck" onclick="checkQteLivrBeforeReedit(this, '${index}');"></layout:checkbox>
</layout:collectionItem>
</logic:equal>
</layout:collection>
</layout:pager> |
Partager