Commit 7ef7233a authored by ppatro's avatar ppatro

updated src


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92541 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5479779e
......@@ -144,7 +144,9 @@ public class MasterPackIC extends ValidatorEJB implements MasterPackICRemote, Ma
String status = "";
String itemCode = "";
String sqlInner = "";
double weight = 0.0;
double weight = 0.0;
double cartVolume = 0.0;
double selectCartVolume = 0.0;
int noCases = 0;
double masterPackCount = 0.0, masterPackWeight = 0.0; // Added by sumit on 16/01/13
......@@ -668,6 +670,23 @@ public class MasterPackIC extends ValidatorEJB implements MasterPackICRemote, Ma
case 3 :
{
System.out.println("Inside case3 validation");
//Changed By Pragyan 21/01/13.start
outerCarton = checkNull(genericUtility.getColumnValue( "outer_carton_no", hdrDom ));
System.out.println("outerCarton["+outerCarton+"]");
sql = "SELECT C.PACK_CODE,(P.LENGTH * P.WIDTH * P.HEIGHT) FROM CARTON_MASTER C,PACKING P WHERE C.CARTON_TYPE = 'M' AND C.CARTON_NO = ? AND " +
" C.PACK_CODE = P.PACK_CODE ";
pstmt = conn.prepareStatement( sql );
pstmt.setString( 1, outerCarton );
rs = pstmt.executeQuery();
if( rs.next() )
{
cartVolume = rs.getDouble(2);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
//Changed By Pragyan 21/01/12.end
parentList = allDom.getElementsByTagName( "Detail" + currentFormNo );
int noOfParent = parentList.getLength();
System.out.println("no of parent="+noOfParent);
......@@ -712,13 +731,16 @@ public class MasterPackIC extends ValidatorEJB implements MasterPackICRemote, Ma
System.out.println("item Code="+itemCode+" weight ="+weight+" no of item"+noCases);
noCases++;
sqlInner = "select gross_weight from item_lot_packsize where item_code = ? ";
//sqlInner = "select gross_weight from item_lot_packsize where item_code = ? ";
sqlInner = "select gross_weight,(length*width*height) from item_lot_packsize where item_code = ? ";
pstmtInner = conn.prepareStatement( sqlInner );
pstmtInner.setString( 1,itemCode );
rsInner = pstmtInner.executeQuery();
while( rsInner.next() )
{
weight += rsInner.getDouble("gross_weight");
selectCartVolume += rsInner.getDouble(2);
}
rsInner.close();
rsInner = null;
......@@ -732,7 +754,8 @@ public class MasterPackIC extends ValidatorEJB implements MasterPackICRemote, Ma
//if(weight > 70 || noCases > 60)
masterPackCount = Double.parseDouble(discommon.getDisparams("999999","MASTER_PACK_CASE_COUNT",conn));
masterPackWeight = Double.parseDouble(discommon.getDisparams("999999","MASTER_PACK_WEIGHT",conn));
if(weight > masterPackWeight || noCases > masterPackCount )
//if(weight > masterPackWeight || noCases > masterPackCount )
if(weight > masterPackWeight || selectCartVolume > cartVolume || noCases > masterPackCount )
{
//Changed by sumit on 16/01/13 changing weight size as well getting these value from dispram end
errList.add( "VTWGTEXD" );
......
......@@ -31,15 +31,15 @@
</print>
</BaseDefinition>
<Summary>
<height>29</height>
<height>0</height>
<color>536870912</color>
</Summary>
<Footer>
<height>8</height>
<height>0</height>
<color>536870912</color>
</Footer>
<Detail>
<height>331</height>
<height>270</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -161,8 +161,14 @@
<name>lot_sl__new</name>
<dbname>repl_iss_det.lot_sl__new</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;repl_iss_det&quot; ) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;site&quot; ) COLUMN(NAME=&quot;repl_iss_det.tran_id&quot;) COLUMN(NAME=&quot;repl_iss_det.line_no&quot;) COLUMN(NAME=&quot;repl_iss_det.repl_order&quot;) COLUMN(NAME=&quot;repl_iss_det.line_no__ord&quot;) COLUMN(NAME=&quot;repl_iss_det.item_code&quot;) COLUMN(NAME=&quot;repl_iss_det.site_code&quot;) COLUMN(NAME=&quot;repl_iss_det.loc_code&quot;) COLUMN(NAME=&quot;repl_iss_det.lot_no&quot;) COLUMN(NAME=&quot;repl_iss_det.lot_sl&quot;) COLUMN(NAME=&quot;repl_iss_det.quantity&quot;) COLUMN(NAME=&quot;repl_iss_det.no_art&quot;) COLUMN(NAME=&quot;repl_iss_det.loc_code__to&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;item.unit&quot;) COLUMN(NAME=&quot;repl_iss_det.loc_code__sys&quot;) COLUMN(NAME=&quot;repl_iss_det.lot_sl__new&quot;) JOIN (LEFT=&quot;repl_iss_det.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; OUTER1 =&quot;repl_iss_det.item_code&quot; ) JOIN (LEFT=&quot;repl_iss_det.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;repl_iss_det.site_code&quot; )) </retrieve>
<update>repl_iss_det</update>
<table_column>
<type size="1">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>order_type</name>
<dbname>order_type</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;repl_iss_det&quot; ) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;site&quot; ) COLUMN(NAME=&quot;repl_iss_det.tran_id&quot;) COLUMN(NAME=&quot;repl_iss_det.line_no&quot;) COLUMN(NAME=&quot;repl_iss_det.repl_order&quot;) COLUMN(NAME=&quot;repl_iss_det.line_no__ord&quot;) COLUMN(NAME=&quot;repl_iss_det.item_code&quot;) COLUMN(NAME=&quot;repl_iss_det.site_code&quot;) COLUMN(NAME=&quot;repl_iss_det.loc_code&quot;) COLUMN(NAME=&quot;repl_iss_det.lot_no&quot;) COLUMN(NAME=&quot;repl_iss_det.lot_sl&quot;) COLUMN(NAME=&quot;repl_iss_det.quantity&quot;) COLUMN(NAME=&quot;repl_iss_det.no_art&quot;) COLUMN(NAME=&quot;repl_iss_det.loc_code__to&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;item.unit&quot;) COLUMN(NAME=&quot;repl_iss_det.loc_code__sys&quot;) COLUMN(NAME=&quot;repl_iss_det.lot_sl__new&quot;) COMPUTE(NAME=&quot;&apos; &apos; order_type&quot;) JOIN (LEFT=&quot;repl_iss_det.item_code&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; OUTER1 =&quot;repl_iss_det.item_code&quot; ) JOIN (LEFT=&quot;repl_iss_det.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;repl_iss_det.site_code&quot; )) </retrieve>
<update>REPL_ISS_DET</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
</TableDefinition>
......@@ -174,7 +180,7 @@
<border>5</border>
<color>255</color>
<x>351</x>
<y>33</y>
<y>20</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
......@@ -212,7 +218,7 @@
<border>5</border>
<color>255</color>
<x>129</x>
<y>33</y>
<y>20</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
......@@ -250,7 +256,7 @@
<border>5</border>
<color>255</color>
<x>129</x>
<y>135</y>
<y>122</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
......@@ -288,7 +294,7 @@
<border>5</border>
<color>255</color>
<x>206</x>
<y>135</y>
<y>122</y>
<height>16</height>
<width>218</width>
<format>[general]</format>
......@@ -325,7 +331,7 @@
<border>5</border>
<color>33554432</color>
<x>129</x>
<y>232</y>
<y>219</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
......@@ -357,26 +363,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<id>10</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>0</border>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>126</x>
<y>255</y>
<x>129</x>
<y>71</y>
<height>16</height>
<width>75</width>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl__new</name>
<name>quantity</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -394,27 +401,26 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>3</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>129</x>
<y>84</y>
<y>45</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity</name>
<name>repl_order</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -432,26 +438,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>129</x>
<y>58</y>
<x>351</x>
<y>45</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>repl_order</name>
<visible>1</visible>
<name>line_no__ord</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -469,23 +476,23 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>4</id>
<id>5</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>351</x>
<y>58</y>
<x>129</x>
<y>97</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no__ord</name>
<visible>0</visible>
<name>item_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>10</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -507,27 +514,26 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>5</id>
<id>13</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>129</x>
<y>110</y>
<x>206</x>
<y>97</y>
<height>16</height>
<width>73</width>
<width>218</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code</name>
<name>item_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -545,26 +551,27 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<id>8</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>206</x>
<y>110</y>
<x>129</x>
<y>146</y>
<height>16</height>
<width>218</width>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_descr</name>
<name>lot_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>15</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -580,48 +587,58 @@
<color>67108864</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Quantity:</text>
<border>6</border>
<color>33554432</color>
<x>37</x>
<y>85</y>
<id>9</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>351</x>
<y>146</y>
<height>16</height>
<width>86</width>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>quantity_t</name>
<name>lot_sl</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>15</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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Code:</text>
<text>LPN No:</text>
<border>6</border>
<color>33554432</color>
<x>39</x>
<y>110</y>
<x>262</x>
<y>146</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code_t</name>
<name>lot_sl_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -639,17 +656,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code:</text>
<text>Line No Order:</text>
<border>6</border>
<color>33554432</color>
<x>39</x>
<y>135</y>
<x>262</x>
<y>45</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_t</name>
<name>line_no__ord_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
......@@ -667,18 +684,18 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Location Code To:</text>
<text>Line No:</text>
<border>6</border>
<color>33554432</color>
<x>25</x>
<y>232</y>
<x>262</x>
<y>20</y>
<height>16</height>
<width>99</width>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__to_t</name>
<visible>1</visible>
<name>line_no_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -692,49 +709,58 @@
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>New LPN:</text>
<border>6</border>
<color>33554432</color>
<x>8</x>
<y>255</y>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>129</x>
<y>169</y>
<height>16</height>
<width>115</width>
<width>50</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl__new_t</name>
<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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Lot No:</text>
<text>No Of Article:</text>
<border>6</border>
<color>33554432</color>
<x>39</x>
<y>159</y>
<x>305</x>
<y>169</y>
<height>16</height>
<width>85</width>
<width>75</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no_t</name>
<visible>1</visible>
<name>no_art_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -750,23 +776,23 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>129</x>
<y>159</y>
<x>384</x>
<y>169</y>
<height>16</height>
<width>73</width>
<width>40</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_no</name>
<visible>1</visible>
<name>no_art</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>15</limit>
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -788,23 +814,23 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>9</id>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>351</x>
<y>159</y>
<x>128</x>
<y>195</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl</name>
<visible>1</visible>
<name>loc_code</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>15</limit>
<limit>8</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
......@@ -827,17 +853,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>LPN No:</text>
<text>Sugg. Location Code:</text>
<border>6</border>
<color>33554432</color>
<x>262</x>
<y>159</y>
<x>232</x>
<y>195</y>
<height>16</height>
<width>85</width>
<width>115</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl_t</name>
<name>loc_code__sys_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -852,20 +878,58 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>350</x>
<y>195</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__sys</name>
<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>
<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>
<band>Detail</band>
<alignment>1</alignment>
<text>Line No Order:</text>
<text>Transaction Id:</text>
<border>6</border>
<color>33554432</color>
<x>262</x>
<y>58</y>
<x>39</x>
<y>20</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no__ord_t</name>
<name>tran_id_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
......@@ -883,18 +947,18 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Line No:</text>
<text>Replenishment Order:</text>
<border>6</border>
<color>33554432</color>
<x>262</x>
<y>33</y>
<x>9</x>
<y>45</y>
<height>16</height>
<width>85</width>
<width>115</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>line_no_t</name>
<visible>0</visible>
<name>repl_order_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -911,17 +975,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Unit:</text>
<text>Quantity:</text>
<border>6</border>
<color>33554432</color>
<x>39</x>
<y>182</y>
<x>37</x>
<y>72</y>
<height>16</height>
<width>85</width>
<width>86</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit_t</name>
<name>quantity_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -936,57 +1000,48 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>15</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>129</x>
<y>182</y>
<alignment>1</alignment>
<text>Item Code:</text>
<border>6</border>
<color>33554432</color>
<x>39</x>
<y>97</y>
<height>16</height>
<width>50</width>
<format>[general]</format>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>unit</name>
<name>item_code_t</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>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>No Of Article:</text>
<text>Site Code:</text>
<border>6</border>
<color>33554432</color>
<x>305</x>
<y>182</y>
<x>39</x>
<y>122</y>
<height>16</height>
<width>75</width>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>no_art_t</name>
<name>site_code_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
......@@ -1001,59 +1056,49 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>384</x>
<y>182</y>
<alignment>1</alignment>
<text>Location Code To:</text>
<border>6</border>
<color>33554432</color>
<x>25</x>
<y>219</y>
<height>16</height>
<width>40</width>
<format>[general]</format>
<width>99</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>no_art</name>
<visible>0</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<name>loc_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Location Code:</text>
<text>Lot No:</text>
<border>6</border>
<color>33554432</color>
<x>39</x>
<y>208</y>
<y>146</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code_t</name>
<visible>0</visible>
<name>lot_no_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1067,58 +1112,48 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>128</x>
<y>208</y>
<alignment>1</alignment>
<text>Unit:</text>
<border>6</border>
<color>33554432</color>
<x>39</x>
<y>169</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<width>85</width>
<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>
<name>unit_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Transaction Id:</text>
<text>Location Code:</text>
<border>6</border>
<color>33554432</color>
<x>39</x>
<y>33</y>
<y>195</y>
<height>16</height>
<width>85</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_id_t</name>
<name>loc_code_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
......@@ -1136,17 +1171,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Replenishment Order:</text>
<text>New LPN:</text>
<border>6</border>
<color>33554432</color>
<x>9</x>
<y>58</y>
<x>8</x>
<y>242</y>
<height>16</height>
<width>115</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>repl_order_t</name>
<name>lot_sl__new_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1161,20 +1196,57 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>0</border>
<color>255</color>
<x>126</x>
<y>242</y>
<height>16</height>
<width>75</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lot_sl__new</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>
<band>Detail</band>
<alignment>1</alignment>
<text>Sugg. Location Code:</text>
<text>order type:</text>
<border>6</border>
<color>33554432</color>
<x>9</x>
<y>8</y>
<x>226</x>
<y>242</y>
<height>16</height>
<width>115</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__sys_t</name>
<name>order_type_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1191,29 +1263,20 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>16</id>
<id>18</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<tabsequence>30</tabsequence>
<border>0</border>
<color>255</color>
<x>129</x>
<y>8</y>
<x>343</x>
<y>242</y>
<height>16</height>
<width>73</width>
<format>[general]</format>
<width>79</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>loc_code__sys</name>
<name>order_type</name>
<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>
<face>Times New Roman</face>
<height>-10</height>
......
......@@ -28855,6 +28855,11 @@ INSERT INTO MESSAGES (
NULL,
NULL);
//Pragyan 21/01/13
update messages set msg_str='Weight/Volume Exceeded', msg_descr='Master Carton Weight/Volume/No. Of Cases is Exceeded'
where msg_no='VTWGTEXD';
COMMIT;
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