Commit 237488f7 authored by caluka's avatar caluka

adding export button in Material Requirement wizard Transaction[MF3KSUN005]


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95920 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8c79685a
...@@ -159,6 +159,9 @@ ...@@ -159,6 +159,9 @@
<td width="15%" class="header_td" nowrap="true" valign="bottom"> <td width="15%" class="header_td" nowrap="true" valign="bottom">
<strong>Supply</strong> <strong>Supply</strong>
</td> </td>
<td width="2%" class="header_td" nowrap="true" valign="bottom">
<strong>Quarantine Stock</strong>
</td>
<td width="2%" class="header_td" nowrap="true" valign="bottom"> <td width="2%" class="header_td" nowrap="true" valign="bottom">
<strong>Plan Supply</strong> <strong>Plan Supply</strong>
</td> </td>
...@@ -267,9 +270,9 @@ ...@@ -267,9 +270,9 @@
<xsl:variable name="chkbox"> <xsl:variable name="chkbox">
<xsl:value-of select="@selected" /> <xsl:value-of select="@selected" />
</xsl:variable> </xsl:variable>
<!-- <xsl:variable name="site_code"> <xsl:variable name="site_code">
<xsl:value-of select="site_code" /> <xsl:value-of select="site_code" />
</xsl:variable> --> </xsl:variable>
<xsl:variable name="item_code"> <xsl:variable name="item_code">
<xsl:value-of select="item_code" /> <xsl:value-of select="item_code" />
</xsl:variable> </xsl:variable>
...@@ -288,7 +291,9 @@ ...@@ -288,7 +291,9 @@
<xsl:variable name="supply"> <xsl:variable name="supply">
<xsl:value-of select="supply" /> <xsl:value-of select="supply" />
</xsl:variable> </xsl:variable>
<xsl:variable name="quarntine_stk">
<xsl:value-of select="quarntine_stk" />
</xsl:variable>
<xsl:variable name="plan_supply"> <xsl:variable name="plan_supply">
<xsl:value-of select="plan_supply" /> <xsl:value-of select="plan_supply" />
</xsl:variable> </xsl:variable>
...@@ -398,7 +403,7 @@ ...@@ -398,7 +403,7 @@
<xsl:otherwise> <xsl:otherwise>
<input type="checkbox" <input type="checkbox"
name="Detail3.{normalize-space($dbID)}.selectbox" id="Detail3.{normalize-space($dbID)}.selectbox" name="Detail3.{normalize-space($dbID)}.selectbox" id="Detail3.{normalize-space($dbID)}.selectbox"
value="false" value="false" checked='Y'
onClick="javaScript:setCheckedPlace(this, '{normalize-space($dbID)}' )" /> onClick="javaScript:setCheckedPlace(this, '{normalize-space($dbID)}' )" />
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
...@@ -409,6 +414,9 @@ ...@@ -409,6 +414,9 @@
size="10" ISCHANGED="false" /> size="10" ISCHANGED="false" />
<xsl:value-of select="site_code" /> <xsl:value-of select="site_code" />
</td> --> </td> -->
<input type="hidden" name="Detail3.{normalize-space($dbID)}.site_code"
id="Detail3.{normalize-space($dbID)}.site_code" value="{$site_code}"
size="10" ISCHANGED="false" />
<td class="td_leftAlign" align="left"> <td class="td_leftAlign" align="left">
<input type="hidden" <input type="hidden"
name="Detail3.{normalize-space($dbID)}.item_code" id="Detail3.{normalize-space($dbID)}.item_code" name="Detail3.{normalize-space($dbID)}.item_code" id="Detail3.{normalize-space($dbID)}.item_code"
...@@ -453,6 +461,12 @@ ...@@ -453,6 +461,12 @@
size="04" ISCHANGED="false" /> size="04" ISCHANGED="false" />
<xsl:value-of select="supply" /> <xsl:value-of select="supply" />
</td> </td>
<td class="td_leftAlign" style="text-align:right">
<input type="hidden" name="Detail3.{normalize-space($dbID)}.quarntine_stk"
id="Detail3.{normalize-space($dbID)}.quarntine_stk" value="{$quarntine_stk}"
size="04" ISCHANGED="false" />
<xsl:value-of select="quarntine_stk" />
</td>
<td class="td_leftAlign" style="text-align:right"> <td class="td_leftAlign" style="text-align:right">
<input type="hidden" name="Detail3.{normalize-space($dbID)}.plan_supply" <input type="hidden" name="Detail3.{normalize-space($dbID)}.plan_supply"
id="Detail3.{normalize-space($dbID)}.plan_supply" value="{$plan_supply}" id="Detail3.{normalize-space($dbID)}.plan_supply" value="{$plan_supply}"
...@@ -669,9 +683,9 @@ ...@@ -669,9 +683,9 @@
id="Previous" name="Previous" title='' id="Previous" name="Previous" title=''
onclick="javascript:setDetail('previous')" /> onclick="javascript:setDetail('previous')" />
<!-- <input type="submit" style="cursor:hand" value="Export" <input type="button" style="cursor:hand" value="Export"
id="Export" name="Export" title='' id="Export" name="Export" title=''
onclick="javascript:callExportJSP()" /> --> onclick="javascript:callExportJSP()" />
</td> </td>
</tr> </tr>
......
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