Commit ff7a2efa authored by wansari's avatar wansari

D14IKAT004 added item parnt column


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97325 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b74f6fed
...@@ -29,48 +29,49 @@ ...@@ -29,48 +29,49 @@
]]> ]]>
</script> </script>
<body> <body>
<form name="porderWizFormIII" id="porderFormIII" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet"> <form name="porderWizFormIII" id="porderFormIII" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet">
<div class="mainPage-Container" style="overflow: auto;">
<div id="header"> <div class="mainPage-Container" style="overflow: scroll">
<div id="headingText">Purchase Wizard Details</div>
</div> <div id="header" style="width:100%">
<table class="tableClass" id="Details" border="0" cellspacing="1" cellpadding="1" style="width:90%"> <div id="headingText">Purchase Wizard Details</div>
<thead class="table-head" style="text-align:center;"> </div>
<table class="tableClass" id="Details" border="0" cellspacing="1" cellpadding="1" style="width:100%">
<thead class="table-head" style="text-align:center">
<tr> <tr>
<th class="thClass" nowrap="true" width="5%"> <th class="thClass" nowrap="true">
</th> </th>
<th class="thClass" nowrap="true" valign="bottom" width="8%"> <th class="thClass" nowrap="true" valign="bottom" >
<strong>Code</strong> <strong>Item Parent</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<strong>Item SKU Code</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" >
<strong>Description</strong>
</th> </th>
<th class="thClass" nowrap="true" valign="bottom" width="8%"> <th class="thClass" nowrap="true" valign="bottom" >
<strong>Quantity</strong> <strong>Quantity</strong>
</th> </th>
<th class="thClass" nowrap="true" valign="bottom" width="8%"> <th class="thClass" nowrap="true" valign="bottom" >
<strong>Rate</strong> <strong>Rate</strong>
</th> </th>
<th class="thClass" nowrap="true" valign="bottom" width="8%"> <th class="thClass" nowrap="true" valign="bottom" >
<strong>Amount</strong> <strong>Amount</strong>
</th> </th>
<th class="thClass" nowrap="true" valign="bottom" width="20%"> <th class="thClass" nowrap="true" valign="bottom" >
<strong>Description</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" width="8%">
<strong>Supplier Code</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" width="8%">
<strong>Order Date</strong> <strong>Order Date</strong>
</th> </th>
<th class="thClass" nowrap="true" valign="bottom" width="8%"> <th class="thClass" nowrap="true" valign="bottom" >
<strong>Delivery Date</strong> <strong>Delivery Date</strong>
</th> </th>
<th class="thClass" nowrap="true" valign="bottom" width="3%"> <th class="thClass" nowrap="true" valign="bottom" >
<strong>Department Code</strong> <strong>Supplier Code</strong>
</th>
<th class="thClass" nowrap="true" valign="bottom" width="3%">
<strong>Item Series</strong>
</th> </th>
</tr> </tr>
</thead> </thead>
...@@ -79,6 +80,7 @@ ...@@ -79,6 +80,7 @@
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable> <xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<xsl:variable name="quantity"><xsl:value-of select="quantity"/></xsl:variable> <xsl:variable name="quantity"><xsl:value-of select="quantity"/></xsl:variable>
<xsl:variable name="item_code"><xsl:value-of select="item_code"/></xsl:variable> <xsl:variable name="item_code"><xsl:value-of select="item_code"/></xsl:variable>
<xsl:variable name="item_parnt"><xsl:value-of select="item_parnt"/></xsl:variable>
<xsl:variable name="descr"><xsl:value-of select="descr"/></xsl:variable> <xsl:variable name="descr"><xsl:value-of select="descr"/></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="ord_date"><xsl:value-of select="ord_date"/></xsl:variable> <xsl:variable name="ord_date"><xsl:value-of select="ord_date"/></xsl:variable>
...@@ -115,24 +117,28 @@ ...@@ -115,24 +117,28 @@
<input type="checkbox" name="Detail3.{normalize-space($dbID)}.selectbox" id="Detail3.{normalize-space($dbID)}.selectbox" checked='true' value="true" onClick="setChecked(this)"/> <input type="checkbox" name="Detail3.{normalize-space($dbID)}.selectbox" id="Detail3.{normalize-space($dbID)}.selectbox" checked='true' value="true" onClick="setChecked(this)"/>
</td> </td>
<td> <td>
<xsl:value-of select="item_code"/> <xsl:value-of select="item_parnt"/>
</td> </td>
<td> <td>
<input type="text" class="editInputClass" value="{$quantity}" name="Detail3.{normalize-space($dbID)}.quantity" <xsl:value-of select="item_code"/>
onkeypress='return isNumberKey(event)' id="Detail3.{normalize-space($dbID)}.quantity" maxlength="8" style="width:70px;" onchange="changeAmount({$dbID})"/>
</td> </td>
<td> <td>
<xsl:value-of select="rate"/> <xsl:value-of select="descr"/>
</td> </td>
<td> <td>
<input type="text" ISCHANGED="false" readOnly = "1" value="{$tot_amt}" id="Detail3.{normalize-space($dbID)}.tot_amt" style="width: 75px;" /> <input type="text" class="editInputClass" value="{$quantity}" name="Detail3.{normalize-space($dbID)}.quantity"
onkeypress='return isNumberKey(event)' id="Detail3.{normalize-space($dbID)}.quantity" maxlength="8" style="width:70px;" onchange="changeAmount({$dbID})"/>
</td> </td>
<td> <td>
<xsl:value-of select="descr"/> <!--<xsl:value-of select="rate"/>-->
<input type="text" class="editInputClass" value="{$rate}" name="Detail3.{normalize-space($dbID)}.rate"
onkeypress='return isNumberKey(event)' id="Detail3.{normalize-space($dbID)}.rate" maxlength="8" style="width:70px;" onchange="changeAmount({$dbID})"/>
</td> </td>
<td> <td>
<xsl:value-of select="supp_code"/> <input type="text" class="editDisplayClass" ISCHANGED="false" readOnly = "1" value="{$tot_amt}" id="Detail3.{normalize-space($dbID)}.tot_amt" style="width: 75px;" />
</td> </td>
<td> <td>
<xsl:value-of select="ord_date"/> <xsl:value-of select="ord_date"/>
</td> </td>
...@@ -141,14 +147,13 @@ ...@@ -141,14 +147,13 @@
id="Detail3.{normalize-space($dbID)}.dlv_date" style="width: 100px;"/> id="Detail3.{normalize-space($dbID)}.dlv_date" style="width: 100px;"/>
<!-- <xsl:value-of select="dlv_date"/>--> <!-- <xsl:value-of select="dlv_date"/>-->
<input type="text" id="dlv_date{normalize-space($dbID)}" value="{dlv_date}" <input type="text" id="dlv_date{normalize-space($dbID)}" value="{dlv_date}"
class="editDisplayClass" maxlength="0" ISCHANGED="false" readOnly = "1" style="width: 100px;" onchange="dlvChange({$dbID})" /> class="editInputClass" maxlength="0" ISCHANGED="false" readOnly = "1" style="width: 70px" onchange="dlvChange({$dbID})" />
</td> </td>
<td> <td>
<xsl:value-of select="dept_code"/> <xsl:value-of select="supp_code"/>
</td>
<td>
<xsl:value-of select="item_ser"/>
</td> </td>
<input type="hidden" class="editInputClass" value="{$item_code}" name="Detail3.{normalize-space($dbID)}.item_code" <input type="hidden" class="editInputClass" value="{$item_code}" name="Detail3.{normalize-space($dbID)}.item_code"
id="Detail3.{normalize-space($dbID)}.item_code" maxlength="10"/> id="Detail3.{normalize-space($dbID)}.item_code" maxlength="10"/>
...@@ -204,14 +209,12 @@ ...@@ -204,14 +209,12 @@
<input type="hidden" class="editInputClass" value="{$adj_qty}" name="Detail3.{normalize-space($dbID)}.adj_qty" <input type="hidden" class="editInputClass" value="{$adj_qty}" name="Detail3.{normalize-space($dbID)}.adj_qty"
id="Detail3.{normalize-space($dbID)}.adj_qty" maxlength="10"/> id="Detail3.{normalize-space($dbID)}.adj_qty" maxlength="10"/>
<input type="hidden" class="editInputClass" value="{$quantity__fc}" name="Detail3.{normalize-space($dbID)}.quantity__fc" <input type="hidden" class="editInputClass" value="{$quantity__fc}" name="Detail3.{normalize-space($dbID)}.quantity__fc"
id="Detail3.{normalize-space($dbID)}.quantity__fc" maxlength="10"/> id="Detail3.{normalize-space($dbID)}.quantity__fc" maxlength="10"/>
</tr> </tr>
</xsl:for-each> </xsl:for-each>
</tbody> </tbody>
</table> </table>
<table> <table>
<tr> <tr>
<td colspan="2"> <td colspan="2">
...@@ -220,8 +223,9 @@ ...@@ -220,8 +223,9 @@
<input type="hidden" value="" name="action" id="action" /> <input type="hidden" value="" name="action" id="action" />
<input type="hidden" value="2:MP" name="formType" id="formType" /> <input type="hidden" value="2:MP" name="formType" id="formType" />
<!-- <textarea name="PRE_FORM_VAL" ID="PRE_FORM_VAL" style="display:none;"></textarea> --> <!-- <textarea name="PRE_FORM_VAL" ID="PRE_FORM_VAL" style="display:none;"></textarea> -->
<input type="submit" style="cursor:hand" class="button" value="Previous" title='Previous' onclick="javascript:setActionVal('previous')"/> <input type="submit" style="cursor:hand" class="button" value="Previous" title='Previous'
onclick="javascript:setActionVal('previous')"/>
<input type="submit" style="cursor:hand" class="button" value="Finish" title='Finish' <input type="submit" style="cursor:hand" class="button" value="Finish" title='Finish'
onclick="javascript:setActionVal('finish');javascript:return checkRate()"/> onclick="javascript:setActionVal('finish');javascript:return checkRate()"/>
</td> </td>
......
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