Commit 3a4275a5 authored by ssarkar's avatar ssarkar

Update by sumit on 01/04/13 bug solved


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92919 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d746d7f7
...@@ -1180,8 +1180,12 @@ public class ConsolidatToDoc { ...@@ -1180,8 +1180,12 @@ public class ConsolidatToDoc {
if(!isError && ("".equalsIgnoreCase(errString)|| errString == null) && errString.trim().length() == 0) if(!isError && ("".equalsIgnoreCase(errString)|| errString == null) && errString.trim().length() == 0)
{ {
System.out.println("Delete records:::::::"); System.out.println("Delete records:::::::");
sql = " DELETE FROM SORDALLOC WHERE QTY_ALLOC = 0 "; //Changed by sumit on 01/apr/13 adding sale_order condition
//sql = " DELETE FROM SORDALLOC WHERE QTY_ALLOC = 0 ";
sql = " DELETE FROM SORDALLOC WHERE QTY_ALLOC <= 0 AND SALE_ORDER IN (SELECT DISTINCT SALE_ORDER FROM WAVE_TASK_DET WHERE PTCN = ?)";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
//Changed by sumit 01/04/13 setting parameter
pstmt.setString(1, ptcn);
int updCnt = pstmt.executeUpdate(); int updCnt = pstmt.executeUpdate();
if( updCnt > 0 ) if( updCnt > 0 )
{ {
......
...@@ -2726,9 +2726,14 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo ...@@ -2726,9 +2726,14 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
private int updateWaveTaskDet(String refId, String task, Connection conn , String pickType, String empCode) throws ITMException private int updateWaveTaskDet(String refId, String task, Connection conn , String pickType, String empCode) throws ITMException
{ {
String sql = ""; String sql = "";
String pickOrder = "";//Added by sumit on 01/APR/13
String confirmed = "";
int pickLine = 0;//Added by sumit on 01/APR/13
double quantity = 0.0; double quantity = 0.0;
PreparedStatement pstmt = null; PreparedStatement pstmt = null;
PreparedStatement pstmt1 = null;//Added by sumit on 01/APR/13
ResultSet rs = null; ResultSet rs = null;
ResultSet rs1 = null;//Added by sumit on 01/APR/13
int update = 0; int update = 0;
java.sql.Timestamp currDate = new java.sql.Timestamp( System.currentTimeMillis() ); java.sql.Timestamp currDate = new java.sql.Timestamp( System.currentTimeMillis() );
...@@ -2787,6 +2792,62 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo ...@@ -2787,6 +2792,62 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
} }
} }
//changed by sumit on 01/apr/13 to update status of wave_task_det if one line scanned and another line deallocated start.
if("C".equalsIgnoreCase(pickType))
{
sql = "SELECT PICK_ORDER, LINE_NO FROM PICK_ORD_DET WHERE PICK_ORDER = ? " +
" AND (QUANTITY - CASE WHEN DEALLOC_QTY IS NULL THEN 0 ELSE DEALLOC_QTY END ) > 0 ";
pstmt = conn.prepareStatement(sql);
sql = " SELECT CONFIRMED FROM PICK_ISS_DET PID, PICK_ISS_HDR PIH, PICK_ORD_DET POD WHERE PID.PICK_ORDER = ? " +
" AND PID.LINE_NO__ORD = ? AND PID.PICK_ORDER = POD.PICK_ORDER " +
" AND PID.LINE_NO__ORD = POD.LINE_NO AND PID.PICK_ORDER = PIH.PICK_ORDER ";
pstmt1 = conn.prepareStatement(sql);
pstmt.setString(1, refId);
rs = pstmt.executeQuery();
while(rs.next())
{
pickOrder = rs.getString("PICK_ORDER");
pickLine = rs.getInt("LINE_NO");
System.out.println(" pick_order = ["+pickOrder+"] pickLine ["+pickLine+"]");
pstmt1.setString(1,pickOrder);
pstmt1.setInt(2, pickLine);
rs1 = pstmt1.executeQuery();
if( rs1.next())
{
confirmed = rs1.getString("CONFIRMED");
if( "N".equalsIgnoreCase(confirmed))
{
break;
}
}
rs1.close(); rs1 = null;
pstmt1.clearParameters();
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
if(pstmt1 != null)
{
pstmt1.close(); pstmt1 = null;
}
if( "Y".equalsIgnoreCase(confirmed))
{
sql = "UPDATE WAVE_TASK_DET SET STATUS = 'Y' WHERE REF_ID = ? AND STATUS = 'N'";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, refId);
update = pstmt.executeUpdate();
pstmt.close(); pstmt = null;
if(update > 0 )
{
System.out.println(refId+ " WAVE_TASK_DET is updated susessfully ");
}
}
}
//changed by sumit on 01/apr/13 to update status of wave_task_det if one line scanned and another line deallocated end.
} }
else if( "REPL".equalsIgnoreCase(task)) else if( "REPL".equalsIgnoreCase(task))
...@@ -2829,6 +2890,10 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo ...@@ -2829,6 +2890,10 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
{ {
pstmt.close(); pstmt = null; pstmt.close(); pstmt = null;
} }
if(pstmt1 != null)
{
pstmt1.close(); pstmt1 = null;
}
} }
catch(Exception ex) catch(Exception ex)
{ {
......
...@@ -52,7 +52,6 @@ ...@@ -52,7 +52,6 @@
<type size="10">char</type> <type size="10">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<key>yes</key>
<name>tran_id</name> <name>tran_id</name>
<dbname>pick_iss_hdr.tran_id</dbname> <dbname>pick_iss_hdr.tran_id</dbname>
</table_column> </table_column>
...@@ -152,10 +151,15 @@ ...@@ -152,10 +151,15 @@
<name>emp_name</name> <name>emp_name</name>
<dbname>emp_name</dbname> <dbname>emp_name</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;pick_iss_hdr&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;site&quot; ) COLUMN(NAME=&quot;pick_iss_hdr.tran_id&quot;) COLUMN(NAME=&quot;pick_iss_hdr.tran_date&quot;) COLUMN(NAME=&quot;pick_iss_hdr.pick_order&quot;) COLUMN(NAME=&quot;pick_iss_hdr.site_code&quot;) COLUMN(NAME=&quot;pick_iss_hdr.confirmed&quot;) COLUMN(NAME=&quot;pick_iss_hdr.conf_date&quot;) COLUMN(NAME=&quot;pick_iss_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;pick_iss_hdr.chg_user&quot;) COLUMN(NAME=&quot;pick_iss_hdr.chg_date&quot;) COLUMN(NAME=&quot;pick_iss_hdr.chg_term&quot;) COLUMN(NAME=&quot;pick_iss_hdr.pick_type&quot;) COLUMN(NAME=&quot;pick_iss_hdr.pallet_no&quot;) COLUMN(NAME=&quot;pick_iss_hdr.trf_status&quot;) COLUMN(NAME=&quot;site.descr&quot;) COMPUTE(NAME=&quot;(employee.emp_fname || &apos; &apos; || employee.emp_mname || &apos; &apos; || employee.emp_lname) as emp_name&quot;) JOIN (LEFT=&quot;pick_iss_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;pick_iss_hdr.site_code&quot; ) JOIN (LEFT=&quot;pick_iss_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;pick_iss_hdr.emp_code__aprv&quot; )) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;pick_iss_hdr&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;site&quot; ) COLUMN(NAME=&quot;pick_iss_hdr.tran_id&quot;) COLUMN(NAME=&quot;pick_iss_hdr.tran_date&quot;) COLUMN(NAME=&quot;pick_iss_hdr.pick_order&quot;) COLUMN(NAME=&quot;pick_iss_hdr.site_code&quot;) COLUMN(NAME=&quot;pick_iss_hdr.confirmed&quot;) COLUMN(NAME=&quot;pick_iss_hdr.conf_date&quot;) COLUMN(NAME=&quot;pick_iss_hdr.emp_code__aprv&quot;) COLUMN(NAME=&quot;pick_iss_hdr.chg_user&quot;) COLUMN(NAME=&quot;pick_iss_hdr.chg_date&quot;) COLUMN(NAME=&quot;pick_iss_hdr.chg_term&quot;) COLUMN(NAME=&quot;pick_iss_hdr.pick_type&quot;) COLUMN(NAME=&quot;pick_iss_hdr.pallet_no&quot;) COLUMN(NAME=&quot;pick_iss_hdr.trf_status&quot;) COLUMN(NAME=&quot;site.descr&quot;) COMPUTE(NAME=&quot;(employee.emp_fname || &apos; &apos; || employee.emp_mname || &apos; &apos; || employee.emp_lname) as emp_name&quot;) JOIN (LEFT=&quot;pick_iss_hdr.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;pick_iss_hdr.site_code&quot; ) JOIN (LEFT=&quot;pick_iss_hdr.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;pick_iss_hdr.emp_code__aprv&quot; )WHERE( EXP1 =&quot;~&quot;PICK_ISS_HDR~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:from_date&quot; LOGIC =&quot;And&quot; ) WHERE( EXP1 =&quot;~&quot;PICK_ISS_HDR~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:to_date&quot; ) ) ARG(NAME = &quot;from_date&quot; TYPE = datetime) ARG(NAME = &quot;to_date&quot; TYPE = datetime) </retrieve>
<update>PICK_ISS_HDR</update> <argument>
<updatewhere>0</updatewhere> <name>from_date</name>
<updatekeyinplace>no</updatekeyinplace> <type>datetime</type>
</argument>
<argument>
<name>to_date</name>
<type>datetime</type>
</argument>
</TableDefinition> </TableDefinition>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
...@@ -582,7 +586,7 @@ ...@@ -582,7 +586,7 @@
<id>1</id> <id>1</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>2</x> <x>2</x>
<y>2</y> <y>2</y>
...@@ -620,7 +624,7 @@ ...@@ -620,7 +624,7 @@
<id>2</id> <id>2</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>100</x> <x>100</x>
<y>2</y> <y>2</y>
...@@ -658,7 +662,7 @@ ...@@ -658,7 +662,7 @@
<id>3</id> <id>3</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>211</x> <x>211</x>
<y>2</y> <y>2</y>
...@@ -696,7 +700,7 @@ ...@@ -696,7 +700,7 @@
<id>11</id> <id>11</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>284</x> <x>284</x>
<y>2</y> <y>2</y>
...@@ -734,7 +738,7 @@ ...@@ -734,7 +738,7 @@
<id>12</id> <id>12</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>357</x> <x>357</x>
<y>2</y> <y>2</y>
...@@ -772,7 +776,7 @@ ...@@ -772,7 +776,7 @@
<id>4</id> <id>4</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>515</x> <x>515</x>
<y>2</y> <y>2</y>
...@@ -810,7 +814,7 @@ ...@@ -810,7 +814,7 @@
<id>14</id> <id>14</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>590</x> <x>590</x>
<y>2</y> <y>2</y>
...@@ -848,7 +852,7 @@ ...@@ -848,7 +852,7 @@
<id>5</id> <id>5</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>698</x> <x>698</x>
<y>2</y> <y>2</y>
...@@ -886,7 +890,7 @@ ...@@ -886,7 +890,7 @@
<id>6</id> <id>6</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>764</x> <x>764</x>
<y>2</y> <y>2</y>
...@@ -924,7 +928,7 @@ ...@@ -924,7 +928,7 @@
<id>7</id> <id>7</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>877</x> <x>877</x>
<y>2</y> <y>2</y>
...@@ -962,7 +966,7 @@ ...@@ -962,7 +966,7 @@
<id>15</id> <id>15</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>1003</x> <x>1003</x>
<y>2</y> <y>2</y>
...@@ -998,7 +1002,7 @@ ...@@ -998,7 +1002,7 @@
<id>13</id> <id>13</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>1143</x> <x>1143</x>
<y>2</y> <y>2</y>
...@@ -1036,7 +1040,7 @@ ...@@ -1036,7 +1040,7 @@
<id>8</id> <id>8</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>1243</x> <x>1243</x>
<y>2</y> <y>2</y>
...@@ -1074,7 +1078,7 @@ ...@@ -1074,7 +1078,7 @@
<id>9</id> <id>9</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>1316</x> <x>1316</x>
<y>2</y> <y>2</y>
...@@ -1112,7 +1116,7 @@ ...@@ -1112,7 +1116,7 @@
<id>10</id> <id>10</id>
<alignment>2</alignment> <alignment>2</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>1433</x> <x>1433</x>
<y>2</y> <y>2</y>
......
...@@ -5,7 +5,7 @@ header(height=24 color="536870912" ) ...@@ -5,7 +5,7 @@ header(height=24 color="536870912" )
summary(height=1 color="536870912" ) summary(height=1 color="536870912" )
footer(height=0 color="536870912" ) footer(height=0 color="536870912" )
detail(height=24 color="536870912" ) detail(height=24 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="pick_iss_hdr.tran_id" ) table(column=(type=char(10) update=yes updatewhereclause=yes name=tran_id dbname="pick_iss_hdr.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="pick_iss_hdr.tran_date" ) column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="pick_iss_hdr.tran_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=pick_order dbname="pick_iss_hdr.pick_order" ) column=(type=char(10) update=yes updatewhereclause=yes name=pick_order dbname="pick_iss_hdr.pick_order" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="pick_iss_hdr.site_code" ) column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="pick_iss_hdr.site_code" )
...@@ -20,7 +20,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -20,7 +20,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(1) update=yes updatewhereclause=yes name=trf_status dbname="pick_iss_hdr.trf_status" ) column=(type=char(1) update=yes updatewhereclause=yes name=trf_status dbname="pick_iss_hdr.trf_status" )
column=(type=char(60) updatewhereclause=yes name=descr dbname="site.descr" ) column=(type=char(60) updatewhereclause=yes name=descr dbname="site.descr" )
column=(type=char(47) updatewhereclause=yes name=emp_name dbname="emp_name" ) column=(type=char(47) updatewhereclause=yes name=emp_name dbname="emp_name" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"pick_iss_hdr~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"site~" ) COLUMN(NAME=~"pick_iss_hdr.tran_id~") COLUMN(NAME=~"pick_iss_hdr.tran_date~") COLUMN(NAME=~"pick_iss_hdr.pick_order~") COLUMN(NAME=~"pick_iss_hdr.site_code~") COLUMN(NAME=~"pick_iss_hdr.confirmed~") COLUMN(NAME=~"pick_iss_hdr.conf_date~") COLUMN(NAME=~"pick_iss_hdr.emp_code__aprv~") COLUMN(NAME=~"pick_iss_hdr.chg_user~") COLUMN(NAME=~"pick_iss_hdr.chg_date~") COLUMN(NAME=~"pick_iss_hdr.chg_term~") COLUMN(NAME=~"pick_iss_hdr.pick_type~") COLUMN(NAME=~"pick_iss_hdr.pallet_no~") COLUMN(NAME=~"pick_iss_hdr.trf_status~") COLUMN(NAME=~"site.descr~") COMPUTE(NAME=~"(employee.emp_fname || ' ' || employee.emp_mname || ' ' || employee.emp_lname) as emp_name~") JOIN (LEFT=~"pick_iss_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"pick_iss_hdr.site_code~" ) JOIN (LEFT=~"pick_iss_hdr.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"pick_iss_hdr.emp_code__aprv~" )) " update="PICK_ISS_HDR" updatewhere=0 updatekeyinplace=no ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"pick_iss_hdr~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"site~" ) COLUMN(NAME=~"pick_iss_hdr.tran_id~") COLUMN(NAME=~"pick_iss_hdr.tran_date~") COLUMN(NAME=~"pick_iss_hdr.pick_order~") COLUMN(NAME=~"pick_iss_hdr.site_code~") COLUMN(NAME=~"pick_iss_hdr.confirmed~") COLUMN(NAME=~"pick_iss_hdr.conf_date~") COLUMN(NAME=~"pick_iss_hdr.emp_code__aprv~") COLUMN(NAME=~"pick_iss_hdr.chg_user~") COLUMN(NAME=~"pick_iss_hdr.chg_date~") COLUMN(NAME=~"pick_iss_hdr.chg_term~") COLUMN(NAME=~"pick_iss_hdr.pick_type~") COLUMN(NAME=~"pick_iss_hdr.pallet_no~") COLUMN(NAME=~"pick_iss_hdr.trf_status~") COLUMN(NAME=~"site.descr~") COMPUTE(NAME=~"(employee.emp_fname || ' ' || employee.emp_mname || ' ' || employee.emp_lname) as emp_name~") JOIN (LEFT=~"pick_iss_hdr.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"pick_iss_hdr.site_code~" ) JOIN (LEFT=~"pick_iss_hdr.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"pick_iss_hdr.emp_code__aprv~" )WHERE( EXP1 =~"~~~"PICK_ISS_HDR~~~".~~~"TRAN_DATE~~~"~" OP =~">=~" EXP2 =~":from_date~" LOGIC =~"And~" ) WHERE( EXP1 =~"~~~"PICK_ISS_HDR~~~".~~~"TRAN_DATE~~~"~" OP =~"<=~" EXP2 =~":to_date~" ) ) ARG(NAME = ~"from_date~" TYPE = datetime) ARG(NAME = ~"to_date~" TYPE = datetime) " arguments=(("from_date", datetime),("to_date", datetime)) )
text(band=header alignment="2" text="Transaction Id" border="0" color="33554432" x="2" y="2" height="16" width="96" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Transaction Id" border="0" color="33554432" x="2" y="2" height="16" width="96" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Transaction Date" border="0" color="33554432" x="100" y="2" height="16" width="109" html.valueishtml="0" name=tran_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Transaction Date" border="0" color="33554432" x="100" y="2" height="16" width="109" html.valueishtml="0" name=tran_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Pick Order" border="0" color="33554432" x="211" y="2" height="16" width="71" html.valueishtml="0" name=pick_order_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Pick Order" border="0" color="33554432" x="211" y="2" height="16" width="71" html.valueishtml="0" name=pick_order_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
...@@ -36,21 +36,21 @@ text(band=header alignment="2" text="Transfer Status" border="0" color="33554432 ...@@ -36,21 +36,21 @@ text(band=header alignment="2" text="Transfer Status" border="0" color="33554432
text(band=header alignment="2" text="Change user" border="0" color="33554432" x="1243" y="2" height="16" width="71" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Change user" border="0" color="33554432" x="1243" y="2" height="16" width="71" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change Date" border="0" color="33554432" x="1316" y="2" height="16" width="115" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Change Date" border="0" color="33554432" x="1316" y="2" height="16" width="115" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Change Term" border="0" color="33554432" x="1433" y="2" height="16" width="96" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Change Term" border="0" color="33554432" x="1433" y="2" height="16" width="96" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=1 alignment="2" tabsequence=32766 border="0" color="33554432" x="2" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=1 alignment="2" tabsequence=32766 border="5" color="33554432" x="2" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="2" tabsequence=32766 border="0" color="33554432" x="100" y="2" height="16" width="109" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=2 alignment="2" tabsequence=32766 border="5" color="33554432" x="100" y="2" height="16" width="109" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=3 alignment="2" tabsequence=32766 border="0" color="33554432" x="211" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=pick_order visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=3 alignment="2" tabsequence=32766 border="5" color="33554432" x="211" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=pick_order visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="2" tabsequence=32766 border="0" color="33554432" x="284" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=pick_type visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=11 alignment="2" tabsequence=32766 border="5" color="33554432" x="284" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=pick_type visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=12 alignment="2" tabsequence=32766 border="0" color="33554432" x="357" y="2" height="16" width="156" format="[general]" html.valueishtml="0" name=pallet_no visible="1" edit.limit=25 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=12 alignment="2" tabsequence=32766 border="5" color="33554432" x="357" y="2" height="16" width="156" format="[general]" html.valueishtml="0" name=pallet_no visible="1" edit.limit=25 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=4 alignment="2" tabsequence=32766 border="0" color="33554432" x="515" y="2" height="16" width="73" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=4 alignment="2" tabsequence=32766 border="5" color="33554432" x="515" y="2" height="16" width="73" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="2" tabsequence=32766 border="0" color="33554432" x="590" y="2" height="16" width="106" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=14 alignment="2" tabsequence=32766 border="5" color="33554432" x="590" y="2" height="16" width="106" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="2" tabsequence=32766 border="0" color="33554432" x="698" y="2" height="16" width="64" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=5 alignment="2" tabsequence=32766 border="5" color="33554432" x="698" y="2" height="16" width="64" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="2" tabsequence=32766 border="0" color="33554432" x="764" y="2" height="16" width="111" format="[shortdate] [time]" html.valueishtml="0" name=conf_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=6 alignment="2" tabsequence=32766 border="5" color="33554432" x="764" y="2" height="16" width="111" format="[shortdate] [time]" html.valueishtml="0" name=conf_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="2" tabsequence=32766 border="0" color="33554432" x="877" y="2" height="16" width="124" format="[general]" html.valueishtml="0" name=emp_code__aprv visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=7 alignment="2" tabsequence=32766 border="5" color="33554432" x="877" y="2" height="16" width="124" format="[general]" html.valueishtml="0" name=emp_code__aprv visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=15 alignment="2" tabsequence=32766 border="0" color="33554432" x="1003" y="2" height="16" width="138" format="[general]" html.valueishtml="0" name=emp_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=15 alignment="2" tabsequence=32766 border="5" color="33554432" x="1003" y="2" height="16" width="138" format="[general]" html.valueishtml="0" name=emp_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="2" tabsequence=32766 border="0" color="33554432" x="1143" y="2" height="16" width="98" format="[general]" html.valueishtml="0" name=trf_status visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=13 alignment="2" tabsequence=32766 border="5" color="33554432" x="1143" y="2" height="16" width="98" format="[general]" html.valueishtml="0" name=trf_status visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="2" tabsequence=32766 border="0" color="33554432" x="1243" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=8 alignment="2" tabsequence=32766 border="5" color="33554432" x="1243" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="2" tabsequence=32766 border="0" color="33554432" x="1316" y="2" height="16" width="115" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=9 alignment="2" tabsequence=32766 border="5" color="33554432" x="1316" y="2" height="16" width="115" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="2" tabsequence=32766 border="0" color="33554432" x="1433" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=10 alignment="2" tabsequence=32766 border="5" color="33554432" x="1433" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
htmltable(border="1" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 ) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
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