콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
7323 화면

I'm trying to let the user choose the barcode encoding type by popping a wizard before printing the "Product Label", so I can read the chosen encoding from that wizard in product_label.xls

<barCode code="XXXX"><xsl:value-of select="ean13" /></barCode>

Is is possible to write something instead of "XXXX" that reads wizard data?

In the reports we used to write something like [[ data['form']['XXXX'] ]], but how to do it in .xsl?

아바타
취소
작성자 베스트 답변

I managed my way and found the solution, and I would like to share it.. :)

I added new function field to product.product object, and inside this function I have read the wizard table and return a proper result.

Then, I added the new field name in product_label.xml, then I were able to read the field value from product_label.xsl by the following code:

<xsl:variable name="temp_var"><xsl:value-of select="field_from_wizard"/></xsl:variable>
<xsl:if test="$temp_var='Code128'">
    <barCode code="Code128"><xsl:value-of select="field2" /></barCode>
</xsl:if>

This maybe not the optimal solution. however, it solved the problem.

Hope it will help someone else..%

아바타
취소
관련 게시물 답글 화면 활동
1
3월 25
5346
0
3월 15
4115
1
7월 24
1308
0
4월 15
4461
2
3월 15
5910