Commit 714dec35 authored by steurwadkar's avatar steurwadkar

No invoice issue


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@105106 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b9aa18c1
...@@ -135,6 +135,8 @@ ...@@ -135,6 +135,8 @@
<xsl:for-each select="//Detail1"> <xsl:for-each select="//Detail1">
<xsl:variable name="invoiceId"><xsl:value-of select="invoice_invoice_id"/></xsl:variable> <xsl:variable name="invoiceId"><xsl:value-of select="invoice_invoice_id"/></xsl:variable>
<xsl:variable name="transMode"><xsl:value-of select="despatch_trans_mode"/></xsl:variable> <xsl:variable name="transMode"><xsl:value-of select="despatch_trans_mode"/></xsl:variable>
<!-- Added by Santosh on 21/03/2017 to hide inovice row if invoice is not generated -->
<xsl:if test="$invoiceId = not('')">
<TR> <TR>
<TD nowrap="false" align="left" valign="middle" width="5%"> <TD nowrap="false" align="left" valign="middle" width="5%">
...@@ -176,6 +178,8 @@ ...@@ -176,6 +178,8 @@
</xsl:if> </xsl:if>
</TD> </TD>
</TR> </TR>
<!-- Added by Santosh on 21/03/2017 to hide inovice row if invoice is not generated -->
</xsl:if>
</xsl:for-each> </xsl:for-each>
</TABLE> </TABLE>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment