Commit ef09f789 authored by wansari's avatar wansari

D14IKAT004 added line wiase tax_amount column


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97480 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 808dc6f9
...@@ -27,6 +27,9 @@ ...@@ -27,6 +27,9 @@
</th> </th>
<th class="thClass" nowrap="true" valign="bottom" width="20%"> <th class="thClass" nowrap="true" valign="bottom" width="20%">
<strong>Supplier Name</strong> <strong>Supplier Name</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" width="20%">
<strong>Total Tax</strong>
</th> </th>
</tr> </tr>
</thead> </thead>
...@@ -37,6 +40,7 @@ ...@@ -37,6 +40,7 @@
<xsl:variable name="fieldValue"><xsl:value-of select="fieldValue"/></xsl:variable> <xsl:variable name="fieldValue"><xsl:value-of select="fieldValue"/></xsl:variable>
<xsl:variable name="supp_code"><xsl:value-of select="supp_code"/></xsl:variable> <xsl:variable name="supp_code"><xsl:value-of select="supp_code"/></xsl:variable>
<xsl:variable name="supp_name"><xsl:value-of select="supp_name"/></xsl:variable> <xsl:variable name="supp_name"><xsl:value-of select="supp_name"/></xsl:variable>
<xsl:variable name="tax_amt"><xsl:value-of select="tax_amt"/></xsl:variable>
<tr> <tr>
<td> <td>
...@@ -51,6 +55,9 @@ ...@@ -51,6 +55,9 @@
<td> <td>
<xsl:value-of select="supp_name"/> <xsl:value-of select="supp_name"/>
</td> </td>
<td>
<xsl:value-of select="tax_amt"/>
</td>
</tr> </tr>
</xsl:for-each> </xsl:for-each>
</tbody> </tbody>
......
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