Commit b7ed906e authored by ssarkar's avatar ssarkar

Update by sumit on 05/04/13 against issue tracker point 180, and visible no_art


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92943 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e96cb94c
...@@ -284,6 +284,27 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC ...@@ -284,6 +284,27 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC
pstmt = null; pstmt = null;
//Changed by sumit on 28/02/13 adding validation where pick deallocated end //Changed by sumit on 28/02/13 adding validation where pick deallocated end
//Changed by sumit on 05/04/13 adding validation where pick deallocated start
sql = "SELECT STATUS FROM WAVE_TASK_DET WHERE REF_ID = ? ";
pstmt = conn.prepareStatement( sql );
pstmt.setString( 1, pickOrder );
rs = pstmt.executeQuery();
if( rs.next() )
{
status = rs.getString("STATUS");
System.out.println(" status ["+status+"]");
if("Y".equalsIgnoreCase(status))
{
errList.add( "VTPKORDC" );
errFields.add( childNodeName.toLowerCase() );
}
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
//Changed by sumit on 05/04/13 adding validation where pick deallocated end
// added by cpatil on 11-sept-12 start for pick_id validate // added by cpatil on 11-sept-12 start for pick_id validate
sql = "SELECT count(1) FROM PICK_ORD_HDR WHERE PICK_ORDER = ?"; sql = "SELECT count(1) FROM PICK_ORD_HDR WHERE PICK_ORDER = ?";
...@@ -604,7 +625,24 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC ...@@ -604,7 +625,24 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC
rs.close(); rs = null; rs.close(); rs = null;
pstmt.close(); pstmt = null; pstmt.close(); pstmt = null;
//Changed by sumit on 04/04/13 adding validation , user can asign same pallet_no to other pick of same ptcn start.
sql = "SELECT DISTINCT PTCN FROM WAVE_TASK_DET WHERE REF_ID IN (SELECT DISTINCT PICK_ORDER FROM PICK_ISS_HDR WHERE PALLET_NO = ?)";
pstmt = conn.prepareStatement( sql );
pstmt.setString(1, palletNoDom.trim());
rs = pstmt.executeQuery();
while( rs.next())
{
String tempPTCN = "";
tempPTCN = rs.getString("PTCN");
if( !tempPTCN.equalsIgnoreCase(ptcn))
{
errList.add( "INVPALLFPI" );
errFields.add( childNodeName.toLowerCase() );
}
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
//Changed by sumit on 04/04/13 adding validation , user can asign same pallet_no to other pick of same ptcn end.
// added by cpatil for validate pallet_no from pallet_no on 10-Jun-12 start // added by cpatil for validate pallet_no from pallet_no on 10-Jun-12 start
//if (!"M".equals(pickType)) //if (!"M".equals(pickType))
...@@ -647,7 +685,7 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC ...@@ -647,7 +685,7 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC
//{ //{
//palletNoDb = checkNull(rs.getString("PALLET_NO")); //palletNoDb = checkNull(rs.getString("PALLET_NO"));
//System.out.println("pallet no db ="+palletNoDb); //System.out.println("pallet no db ="+palletNoDb);
//if(palletNoDb.trim().length() > 0) //if(palletNoDb.trim().length() > 0)
if( palletNoDom != null ) if( palletNoDom != null )
{ {
sql1="select status from pallet_no where pallet_no = ? ";//change by Kunal M on 30/07/12 as per S Manoharan Sir intruction sql1="select status from pallet_no where pallet_no = ? ";//change by Kunal M on 30/07/12 as per S Manoharan Sir intruction
...@@ -672,7 +710,7 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC ...@@ -672,7 +710,7 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC
//errList.add( "INVPLTNOU" ); //errList.add( "INVPLTNOU" );
errList.add( "INVPLTNUS" ); errList.add( "INVPLTNUS" );
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }
/*else if ( (palletNoDom.trim().length() > 0 && ! palletNoDom.trim().equalsIgnoreCase(palletNoDb)) ) /*else if ( (palletNoDom.trim().length() > 0 && ! palletNoDom.trim().equalsIgnoreCase(palletNoDb)) )
{ {
System.out.println("Unmatch PALLET NO "); System.out.println("Unmatch PALLET NO ");
......
...@@ -206,23 +206,23 @@ ...@@ -206,23 +206,23 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>158</x> <x>380</x>
<y>33</y> <y>58</y>
<height>16</height> <height>16</height>
<width>73</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id</name> <name>line_no__ord</name>
<visible>0</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -242,81 +242,62 @@ ...@@ -242,81 +242,62 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Line No Order:</text>
<tabsequence>32766</tabsequence> <border>6</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>291</x>
<x>158</x> <y>58</y>
<y>135</y>
<height>16</height> <height>16</height>
<width>73</width> <width>85</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code</name> <name>line_no__ord_t</name>
<visible>0</visible> <visible>0</visible>
<EditStyle style="edit">
<limit>5</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>14</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Line No:</text>
<tabsequence>32766</tabsequence> <border>6</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>291</x>
<x>235</x> <y>33</y>
<y>135</y>
<height>16</height> <height>16</height>
<width>218</width> <width>85</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_descr</name> <name>line_no_t</name>
<visible>0</visible> <visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>12</id> <id>12</id>
...@@ -325,7 +306,7 @@ ...@@ -325,7 +306,7 @@
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>158</x> <x>158</x>
<y>232</y> <y>253</y>
<height>16</height> <height>16</height>
<width>73</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
...@@ -363,7 +344,7 @@ ...@@ -363,7 +344,7 @@
<border>0</border> <border>0</border>
<color>255</color> <color>255</color>
<x>155</x> <x>155</x>
<y>255</y> <y>276</y>
<height>16</height> <height>16</height>
<width>75</width> <width>75</width>
<format>[general]</format> <format>[general]</format>
...@@ -392,138 +373,109 @@ ...@@ -392,138 +373,109 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>10</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Location Code To:</text>
<tabsequence>32766</tabsequence> <border>6</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>54</x>
<x>158</x> <y>253</y>
<y>84</y>
<height>16</height> <height>16</height>
<width>73</width> <width>99</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>quantity</name> <name>loc_code__to_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <alignment>1</alignment>
<alignment>0</alignment> <text>New LPN:</text>
<tabsequence>32766</tabsequence> <border>6</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>37</x>
<x>158</x> <y>276</y>
<y>58</y>
<height>16</height> <height>16</height>
<width>73</width> <width>115</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>repl_order</name> <name>lot_sl__new_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Lot Number:</text>
<tabsequence>32766</tabsequence> <border>6</border>
<border>5</border> <color>33554432</color>
<color>255</color> <x>68</x>
<x>380</x> <y>180</y>
<y>58</y>
<height>16</height> <height>16</height>
<width>73</width> <width>85</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>line_no__ord</name> <name>lot_no_t</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>67108864</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>8</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>158</x> <x>158</x>
<y>110</y> <y>180</y>
<height>16</height> <height>16</height>
<width>73</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>item_code</name> <name>lot_no</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>10</limit> <limit>15</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -545,26 +497,27 @@ ...@@ -545,26 +497,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>13</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>235</x> <x>380</x>
<y>110</y> <y>180</y>
<height>16</height> <height>16</height>
<width>218</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>item_descr</name> <name>lot_sl</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>15</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -583,17 +536,17 @@ ...@@ -583,17 +536,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Quantity:</text> <text>LPN Number:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>66</x> <x>291</x>
<y>85</y> <y>180</y>
<height>16</height> <height>16</height>
<width>86</width> <width>85</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>quantity_t</name> <name>lot_sl_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -611,17 +564,17 @@ ...@@ -611,17 +564,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Item Code:</text> <text>Unit:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>68</x> <x>68</x>
<y>110</y> <y>203</y>
<height>16</height> <height>16</height>
<width>85</width> <width>85</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>item_code_t</name> <name>unit_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -636,20 +589,57 @@ ...@@ -636,20 +589,57 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>158</x>
<y>203</y>
<height>16</height>
<width>50</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Site Code:</text> <text>Location Code:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>68</x> <x>68</x>
<y>135</y> <y>229</y>
<height>16</height> <height>16</height>
<width>85</width> <width>85</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code_t</name> <name>loc_code_t</name>
<visible>0</visible> <visible>0</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -664,20 +654,58 @@ ...@@ -664,20 +654,58 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>157</x>
<y>229</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>8</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Location Code To:</text> <text>Suggested Location Code:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>54</x> <x>12</x>
<y>232</y> <y>8</y>
<height>16</height> <height>16</height>
<width>99</width> <width>141</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>loc_code__to_t</name> <name>loc_code__sys_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -695,18 +723,18 @@ ...@@ -695,18 +723,18 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>New LPN:</text> <text>Transaction Id:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>37</x> <x>68</x>
<y>255</y> <y>33</y>
<height>16</height> <height>16</height>
<width>115</width> <width>85</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lot_sl__new_t</name> <name>tran_id_t</name>
<visible>1</visible> <visible>0</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -723,17 +751,17 @@ ...@@ -723,17 +751,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Lot Number:</text> <text>Replenishment Order:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>68</x> <x>38</x>
<y>159</y> <y>58</y>
<height>16</height> <height>16</height>
<width>85</width> <width>115</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lot_no_t</name> <name>repl_order_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -750,23 +778,23 @@ ...@@ -750,23 +778,23 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>8</id> <id>16</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>158</x> <x>158</x>
<y>159</y> <y>8</y>
<height>16</height> <height>16</height>
<width>73</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lot_no</name> <name>loc_code__sys</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -788,23 +816,23 @@ ...@@ -788,23 +816,23 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>9</id> <id>1</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>380</x> <x>158</x>
<y>159</y> <y>33</y>
<height>16</height> <height>16</height>
<width>73</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lot_sl</name> <name>tran_id</name>
<visible>1</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>15</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -824,49 +852,58 @@ ...@@ -824,49 +852,58 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>3</id>
<text>LPN Number:</text> <alignment>0</alignment>
<border>6</border> <tabsequence>32766</tabsequence>
<color>33554432</color> <border>5</border>
<x>291</x> <color>255</color>
<y>159</y> <x>158</x>
<y>58</y>
<height>16</height> <height>16</height>
<width>85</width> <width>73</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lot_sl_t</name> <name>repl_order</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Line No Order:</text> <text>Quantity:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>291</x> <x>66</x>
<y>58</y> <y>108</y>
<height>16</height> <height>16</height>
<width>85</width> <width>86</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>line_no__ord_t</name> <name>quantity_t</name>
<visible>0</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -880,48 +917,58 @@ ...@@ -880,48 +917,58 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>10</id>
<text>Line No:</text> <alignment>0</alignment>
<border>6</border> <tabsequence>32766</tabsequence>
<color>33554432</color> <border>5</border>
<x>291</x> <color>255</color>
<y>33</y> <x>158</x>
<y>108</y>
<height>16</height> <height>16</height>
<width>85</width> <width>73</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>line_no_t</name> <name>quantity</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Unit:</text> <text>Item Code:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>68</x> <x>68</x>
<y>182</y> <y>131</y>
<height>16</height> <height>16</height>
<width>85</width> <width>85</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>unit_t</name> <name>item_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -938,26 +985,27 @@ ...@@ -938,26 +985,27 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>15</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>158</x> <x>158</x>
<y>182</y> <y>131</y>
<height>16</height> <height>16</height>
<width>50</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>unit</name> <name>item_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>10</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -973,57 +1021,28 @@ ...@@ -973,57 +1021,28 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>No Of Article:</text>
<border>6</border>
<color>33554432</color>
<x>334</x>
<y>182</y>
<height>16</height>
<width>75</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>no_art_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>11</id> <id>13</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>413</x> <x>235</x>
<y>182</y> <y>131</y>
<height>16</height> <height>16</height>
<width>40</width> <width>218</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>no_art</name> <name>item_descr</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>no</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1042,17 +1061,17 @@ ...@@ -1042,17 +1061,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Location Code:</text> <text>Site Code:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>68</x> <x>68</x>
<y>208</y> <y>156</y>
<height>16</height> <height>16</height>
<width>85</width> <width>85</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>loc_code_t</name> <name>site_code_t</name>
<visible>0</visible> <visible>0</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1069,23 +1088,23 @@ ...@@ -1069,23 +1088,23 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>157</x> <x>158</x>
<y>208</y> <y>156</y>
<height>16</height> <height>16</height>
<width>73</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>loc_code</name> <name>site_code</name>
<visible>0</visible> <visible>0</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>8</limit> <limit>5</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -1105,76 +1124,57 @@ ...@@ -1105,76 +1124,57 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>14</id>
<text>Transaction Id:</text> <alignment>0</alignment>
<border>6</border> <tabsequence>32766</tabsequence>
<color>33554432</color> <border>5</border>
<x>68</x> <color>255</color>
<y>33</y> <x>235</x>
<y>156</y>
<height>16</height> <height>16</height>
<width>85</width> <width>218</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id_t</name> <name>site_descr</name>
<visible>0</visible> <visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Replenishment Order:</text>
<border>6</border>
<color>33554432</color>
<x>38</x>
<y>58</y>
<height>16</height>
<width>115</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>repl_order_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Suggested Location Code:</text> <text>No. of Case:</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>12</x> <x>78</x>
<y>8</y> <y>83</y>
<height>16</height> <height>16</height>
<width>141</width> <width>75</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>loc_code__sys_t</name> <name>no_art_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1191,20 +1191,20 @@ ...@@ -1191,20 +1191,20 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>16</id> <id>11</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>255</color> <color>255</color>
<x>158</x> <x>158</x>
<y>8</y> <y>83</y>
<height>16</height> <height>16</height>
<width>73</width> <width>73</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>loc_code__sys</name> <name>no_art</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
......
...@@ -37901,6 +37901,37 @@ VALUES ( ...@@ -37901,6 +37901,37 @@ VALUES (
-- changed by sumit on 03/apr/13 -- changed by sumit on 03/apr/13
UPDATE obj_forms SET SCAN_METADATA = '<SCAN_INFO><MAPPING_SCAN ORDER="1"><SCAN_LABEL>Location From:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD>loc_code</FIELD></FIELDS></MAPPING_SCAN><MAPPING_SCAN ORDER="2"><SCAN_LABEL>LPN Number:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD>lot_sl</FIELD></FIELDS></MAPPING_SCAN><MAPPING_SCAN ORDER="3"><SCAN_LABEL>Item Code:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD ORDER="0" start="6" end="15" >item_code</FIELD></FIELDS></MAPPING_SCAN><MAPPING_SCAN ORDER="4"><SCAN_LABEL>Lot Number:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD ORDER="0" start="13" end="22" >lot_no</FIELD></FIELDS></MAPPING_SCAN><INPUT_SCAN ORDER="1"><SCAN_LABEL>New LPN:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD>lot_sl__new</FIELD></FIELDS></INPUT_SCAN><INPUT_SCAN ORDER="2"><SCAN_LABEL>No of CASE</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD>no_art</FIELD></FIELDS></INPUT_SCAN><SCAN_CONDITION field="lot_sl__new">order_type == "Q" || order_type == "E" || order_type == "P"</SCAN_CONDITION></SCAN_INFO>' UPDATE obj_forms SET SCAN_METADATA = '<SCAN_INFO><MAPPING_SCAN ORDER="1"><SCAN_LABEL>Location From:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD>loc_code</FIELD></FIELDS></MAPPING_SCAN><MAPPING_SCAN ORDER="2"><SCAN_LABEL>LPN Number:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD>lot_sl</FIELD></FIELDS></MAPPING_SCAN><MAPPING_SCAN ORDER="3"><SCAN_LABEL>Item Code:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD ORDER="0" start="6" end="15" >item_code</FIELD></FIELDS></MAPPING_SCAN><MAPPING_SCAN ORDER="4"><SCAN_LABEL>Lot Number:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD ORDER="0" start="13" end="22" >lot_no</FIELD></FIELDS></MAPPING_SCAN><INPUT_SCAN ORDER="1"><SCAN_LABEL>New LPN:</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD>lot_sl__new</FIELD></FIELDS></INPUT_SCAN><INPUT_SCAN ORDER="2"><SCAN_LABEL>No of CASE</SCAN_LABEL><FIELDS SEPARATOR="" DELIMITER=""><FIELD>no_art</FIELD></FIELDS></INPUT_SCAN><SCAN_CONDITION field="lot_sl__new">order_type == "Q" || order_type == "E" || order_type == "P"</SCAN_CONDITION></SCAN_INFO>'
WHERE win_name ='w_active_repl_iss' AND FORM_NO = 3; WHERE win_name ='w_active_repl_iss' AND FORM_NO = 3;
-- update by sumit on 05-apr-13
INSERT INTO MESSAGES (
msg_no ,
msg_str ,
msg_descr ,
msg_type ,
msg_opt ,
msg_time ,
alarm ,
err_source ,
chg_date ,
chg_user ,
chg_term ,
override_input,
mail_option )
VALUES (
'INVPALLFPI',
'Invalid Pallet number',
'Scan pallet number already asign to other pick order of different PTCN',
'E',
'E',
NULL,
NULL,
NULL,
TO_DATE('13-02-2008 00:00:00','DD-MM-YYYY HH24:MI:SS'),
'BASE',
'BASE',
NULL,
NULL);
commit; commit;
......
...@@ -23,37 +23,37 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i ...@@ -23,37 +23,37 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(15) update=yes updatewhereclause=yes name=lot_sl__new dbname="repl_iss_det.lot_sl__new" ) column=(type=char(15) update=yes updatewhereclause=yes name=lot_sl__new dbname="repl_iss_det.lot_sl__new" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"repl_iss_det~" ) TABLE(NAME=~"item~" ) TABLE(NAME=~"site~" ) COLUMN(NAME=~"repl_iss_det.tran_id~") COLUMN(NAME=~"repl_iss_det.line_no~") COLUMN(NAME=~"repl_iss_det.repl_order~") COLUMN(NAME=~"repl_iss_det.line_no__ord~") COLUMN(NAME=~"repl_iss_det.item_code~") COLUMN(NAME=~"repl_iss_det.site_code~") COLUMN(NAME=~"repl_iss_det.loc_code~") COLUMN(NAME=~"repl_iss_det.lot_no~") COLUMN(NAME=~"repl_iss_det.lot_sl~") COLUMN(NAME=~"repl_iss_det.quantity~") COLUMN(NAME=~"repl_iss_det.no_art~") COLUMN(NAME=~"repl_iss_det.loc_code__to~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"item.unit~") COLUMN(NAME=~"repl_iss_det.loc_code__sys~") COLUMN(NAME=~"repl_iss_det.lot_sl__new~") JOIN (LEFT=~"repl_iss_det.item_code~" OP =~"=~"RIGHT=~"item.item_code~" OUTER1 =~"repl_iss_det.item_code~" ) JOIN (LEFT=~"repl_iss_det.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"repl_iss_det.site_code~" )) " update="repl_iss_det" updatewhere=0 updatekeyinplace=no ) retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"repl_iss_det~" ) TABLE(NAME=~"item~" ) TABLE(NAME=~"site~" ) COLUMN(NAME=~"repl_iss_det.tran_id~") COLUMN(NAME=~"repl_iss_det.line_no~") COLUMN(NAME=~"repl_iss_det.repl_order~") COLUMN(NAME=~"repl_iss_det.line_no__ord~") COLUMN(NAME=~"repl_iss_det.item_code~") COLUMN(NAME=~"repl_iss_det.site_code~") COLUMN(NAME=~"repl_iss_det.loc_code~") COLUMN(NAME=~"repl_iss_det.lot_no~") COLUMN(NAME=~"repl_iss_det.lot_sl~") COLUMN(NAME=~"repl_iss_det.quantity~") COLUMN(NAME=~"repl_iss_det.no_art~") COLUMN(NAME=~"repl_iss_det.loc_code__to~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"item.unit~") COLUMN(NAME=~"repl_iss_det.loc_code__sys~") COLUMN(NAME=~"repl_iss_det.lot_sl__new~") JOIN (LEFT=~"repl_iss_det.item_code~" OP =~"=~"RIGHT=~"item.item_code~" OUTER1 =~"repl_iss_det.item_code~" ) JOIN (LEFT=~"repl_iss_det.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"repl_iss_det.site_code~" )) " update="repl_iss_det" updatewhere=0 updatekeyinplace=no )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="380" y="33" height="16" width="73" format="[general]" html.valueishtml="0" name=line_no visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="380" y="33" height="16" width="73" format="[general]" html.valueishtml="0" name=line_no visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="33" height="16" width="73" format="[general]" html.valueishtml="0" name=tran_id visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="135" height="16" width="73" format="[general]" html.valueishtml="0" name=site_code visible="0" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="135" height="16" width="218" format="[general]" html.valueishtml="0" name=site_descr visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=12 alignment="0" tabsequence=10 border="5" color="33554432" x="158" y="232" height="16" width="73" format="[general]" html.valueishtml="0" name=loc_code__to visible="1" edit.limit=8 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=17 alignment="0" tabsequence=20 border="0" color="255" x="155" y="255" height="16" width="75" format="[general]" html.valueishtml="0" name=lot_sl__new visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="84" height="16" width="73" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="58" height="16" width="73" format="[general]" html.valueishtml="0" name=repl_order visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="255" x="380" y="58" height="16" width="73" format="[general]" html.valueishtml="0" name=line_no__ord visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="255" x="380" y="58" height="16" width="73" format="[general]" html.valueishtml="0" name=line_no__ord visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="110" height="16" width="73" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="110" height="16" width="218" format="[general]" html.valueishtml="0" name=item_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Quantity:" border="6" color="33554432" x="66" y="85" height="16" width="86" html.valueishtml="0" name=quantity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Item Code:" border="6" color="33554432" x="68" y="110" height="16" width="85" html.valueishtml="0" name=item_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Site Code:" border="6" color="33554432" x="68" y="135" height="16" width="85" html.valueishtml="0" name=site_code_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Location Code To:" border="6" color="33554432" x="54" y="232" height="16" width="99" html.valueishtml="0" name=loc_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="New LPN:" border="6" color="33554432" x="37" y="255" height="16" width="115" html.valueishtml="0" name=lot_sl__new_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Lot Number:" border="6" color="33554432" x="68" y="159" height="16" width="85" html.valueishtml="0" name=lot_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="159" height="16" width="73" format="[general]" html.valueishtml="0" name=lot_no visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="380" y="159" height="16" width="73" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="LPN Number:" border="6" color="33554432" x="291" y="159" height="16" width="85" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Line No Order:" border="6" color="33554432" x="291" y="58" height="16" width="85" html.valueishtml="0" name=line_no__ord_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Line No Order:" border="6" color="33554432" x="291" y="58" height="16" width="85" html.valueishtml="0" name=line_no__ord_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Line No:" border="6" color="33554432" x="291" y="33" height="16" width="85" html.valueishtml="0" name=line_no_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Line No:" border="6" color="33554432" x="291" y="33" height="16" width="85" html.valueishtml="0" name=line_no_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Unit:" border="6" color="33554432" x="68" y="182" height="16" width="85" html.valueishtml="0" name=unit_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) column(band=detail id=12 alignment="0" tabsequence=10 border="5" color="33554432" x="158" y="253" height="16" width="73" format="[general]" html.valueishtml="0" name=loc_code__to visible="1" edit.limit=8 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="134217742" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="182" height="16" width="50" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=17 alignment="0" tabsequence=20 border="0" color="255" x="155" y="276" height="16" width="75" format="[general]" html.valueishtml="0" name=lot_sl__new visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="No Of Article:" border="6" color="33554432" x="334" y="182" height="16" width="75" html.valueishtml="0" name=no_art_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Location Code To:" border="6" color="33554432" x="54" y="253" height="16" width="99" html.valueishtml="0" name=loc_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="413" y="182" height="16" width="40" format="[general]" html.valueishtml="0" name=no_art visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=detail alignment="1" text="New LPN:" border="6" color="33554432" x="37" y="276" height="16" width="115" html.valueishtml="0" name=lot_sl__new_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Location Code:" border="6" color="33554432" x="68" y="208" height="16" width="85" html.valueishtml="0" name=loc_code_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Lot Number:" border="6" color="33554432" x="68" y="180" height="16" width="85" html.valueishtml="0" name=lot_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="157" y="208" height="16" width="73" format="[general]" html.valueishtml="0" name=loc_code visible="0" edit.limit=8 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="180" height="16" width="73" format="[general]" html.valueishtml="0" name=lot_no visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="255" x="380" y="180" height="16" width="73" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="LPN Number:" border="6" color="33554432" x="291" y="180" height="16" width="85" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Unit:" border="6" color="33554432" x="68" y="203" height="16" width="85" html.valueishtml="0" name=unit_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="203" height="16" width="50" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Location Code:" border="6" color="33554432" x="68" y="229" height="16" width="85" html.valueishtml="0" name=loc_code_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="255" x="157" y="229" height="16" width="73" format="[general]" html.valueishtml="0" name=loc_code visible="0" edit.limit=8 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Suggested Location Code:" border="6" color="33554432" x="12" y="8" height="16" width="141" html.valueishtml="0" name=loc_code__sys_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Transaction Id:" border="6" color="33554432" x="68" y="33" height="16" width="85" html.valueishtml="0" name=tran_id_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Transaction Id:" border="6" color="33554432" x="68" y="33" height="16" width="85" html.valueishtml="0" name=tran_id_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Replenishment Order:" border="6" color="33554432" x="38" y="58" height="16" width="115" html.valueishtml="0" name=repl_order_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Replenishment Order:" border="6" color="33554432" x="38" y="58" height="16" width="115" html.valueishtml="0" name=repl_order_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Suggested Location Code:" border="6" color="33554432" x="12" y="8" height="16" width="141" html.valueishtml="0" name=loc_code__sys_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="8" height="16" width="73" format="[general]" html.valueishtml="0" name=loc_code__sys visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="8" height="16" width="73" format="[general]" html.valueishtml="0" name=loc_code__sys visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="33" height="16" width="73" format="[general]" html.valueishtml="0" name=tran_id visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="58" height="16" width="73" format="[general]" html.valueishtml="0" name=repl_order visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Quantity:" border="6" color="33554432" x="66" y="108" height="16" width="86" html.valueishtml="0" name=quantity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="108" height="16" width="73" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Item Code:" border="6" color="33554432" x="68" y="131" height="16" width="85" html.valueishtml="0" name=item_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="131" height="16" width="73" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="131" height="16" width="218" format="[general]" html.valueishtml="0" name=item_descr visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Site Code:" border="6" color="33554432" x="68" y="156" height="16" width="85" html.valueishtml="0" name=site_code_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="156" height="16" width="73" format="[general]" html.valueishtml="0" name=site_code visible="0" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="255" x="235" y="156" height="16" width="218" format="[general]" html.valueishtml="0" name=site_descr visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="No. of Case:" border="6" color="33554432" x="78" y="83" height="16" width="75" html.valueishtml="0" name=no_art_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="158" y="83" height="16" width="73" format="[general]" html.valueishtml="0" name=no_art visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
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