Commit 6fec68ec authored by ppatro's avatar ppatro

Changed By Pragyan Parcel Picking /LTL to Master & Parcel covert


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92751 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5128d205
......@@ -644,6 +644,10 @@ etc
String masterPackAllow = "";
String activePickAllow = "";
String stockToDockAllow = "";
String parcelPackAllow = "";
String directPickLoc = "";
//Changed By Pragyan 25/feb/13 To change the validation with ship type
String shipType = "";
String custCode = "";
//Changed by sumit on 03/10/12
String printer = "";
......@@ -761,6 +765,7 @@ etc
else if ( "master_pack_allow".equalsIgnoreCase( childNodeName ) )
{
masterPackAllow = checkNull(genericUtility.getColumnValue( "master_pack_allow", currFormDataDom ));
parcelPackAllow = checkNull(genericUtility.getColumnValue( "parcelpack_allow", currFormDataDom ));
custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
if(masterPackAllow.trim().length() > 0 )
{
......@@ -779,6 +784,13 @@ etc
//errFields.add( "" );
}
}
if("Y".equalsIgnoreCase(parcelPackAllow) && "Y".equalsIgnoreCase(masterPackAllow))
{
errFields.add( childNodeName.toLowerCase() );
errList.add( "ONSELCMP" );
}
if( rs != null )
{
rs.close();
......@@ -791,6 +803,107 @@ etc
}
}
}
//Changed By Pragyan 25/feb/13 To change the validation with ship type.start
else if ( "parcelpack_allow".equalsIgnoreCase( childNodeName ) )
{
parcelPackAllow = checkNull(genericUtility.getColumnValue( "parcelpack_allow", currFormDataDom ));
custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
if(parcelPackAllow.trim().length() > 0 )
{
sql = "SELECT C.SINGLE_LOT, W.MASTER_PACK_ALLOW, W.ACTIVE_PICK_ALLOW, W.STOCK_TO_DOCK_ALLOW, W.PARCELPACK_ALLOW " +
"FROM CUSTOMER C, WAVE_TYPE W WHERE C.WAVE_TYPE = W.WAVE_TYPE AND C.CUST_CODE = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, custCode);
rs = pstmt.executeQuery();
if( rs.next())
{
if( !parcelPackAllow.equalsIgnoreCase(rs.getString("PARCELPACK_ALLOW")))
{
//errList.add( "STOCK2DOC" );
errFields.add( childNodeName.toLowerCase() );
errList.add( "CHSINGLELT" );
//errFields.add( "" );
}
}
if("Y".equalsIgnoreCase(parcelPackAllow) && "Y".equalsIgnoreCase(masterPackAllow))
{
errFields.add( childNodeName.toLowerCase() );
errList.add( "ONSELCMP" );
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
}
}
//Changed By Pragyan 25/feb/13 To change the validation with ship type.end
else if ( "ship_type".equalsIgnoreCase( childNodeName ) )
{
masterPackAllow = checkNull(genericUtility.getColumnValue( "master_pack_allow", currFormDataDom ));
parcelPackAllow = checkNull(genericUtility.getColumnValue( "parcelpack_allow", currFormDataDom ));
shipType = checkNull(genericUtility.getColumnValue( "ship_type", currFormDataDom ));
if(("Y".equalsIgnoreCase(masterPackAllow)) && !("A".equalsIgnoreCase(shipType) || "M".equalsIgnoreCase(shipType)))
{
errFields.add( childNodeName.toLowerCase() );
errList.add( "ATLSTSELMP" );
}
else if(("Y".equalsIgnoreCase(parcelPackAllow)) && !("A".equalsIgnoreCase(shipType) || "P".equalsIgnoreCase(shipType)))
{
errFields.add( childNodeName.toLowerCase() );
errList.add( "ATLSTSELPP" );
}
else if(!("Y".equalsIgnoreCase(parcelPackAllow) || "Y".equalsIgnoreCase(masterPackAllow) ) && ("M".equalsIgnoreCase(shipType) || "P".equalsIgnoreCase(shipType)))
{
errFields.add( childNodeName.toLowerCase() );
errList.add( "ATLSTSENAN" );
}
}//directPickLoc
else if ( "direct_pick_loc".equalsIgnoreCase( childNodeName ) )
{
directPickLoc = checkNull(genericUtility.getColumnValue( "direct_pick_loc", currFormDataDom ));
int countLoc = 0;
if(directPickLoc.trim().length() > 0 )
{
sql = "SELECT COUNT(*) FROM LOCATION WHERE LOC_CODE= ? AND DIRECT_PICK = ?" ;
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, directPickLoc);
pstmt.setString(2, "Y");
rs = pstmt.executeQuery();
if( rs.next())
{
countLoc = rs.getInt(1);
if( !(countLoc > 0))
{
//errList.add( "STOCK2DOC" );
errFields.add( childNodeName.toLowerCase() );
errList.add( "INVDPIKLOC" );
//errFields.add( "" );
}
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
}
}
//Changed by sumit on 03/10/12 validating printer service name with existing printer in system start.
else if ( "active_pick_allow".equalsIgnoreCase( childNodeName ) )
{
activePickAllow = checkNull(genericUtility.getColumnValue( "active_pick_allow", currFormDataDom ));
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -39,7 +39,7 @@
<color>536870912</color>
</Footer>
<Detail>
<height>372</height>
<height>309</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -214,22 +214,20 @@
<table_column>
<type size="1">char</type>
<updatewhereclause>no</updatewhereclause>
<name>master_override</name>
<dbname>master_override</dbname>
<name>ship_type</name>
<dbname>ship_type</dbname>
<values>
<item display="YES" data="Y"/>
<item display="NO" data="N"/>
<item display="As per Routing" data="A"/>
<item display="LTL" data="L"/>
<item display="Master" data="M"/>
<item display="Parcel" data="P"/>
</values>
</table_column>
<table_column>
<type size="1">char</type>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>parcel_override</name>
<dbname>parcel_override</dbname>
<values>
<item display="YES" data="Y"/>
<item display="NO" data="N"/>
</values>
<name>direct_pick_loc</name>
<dbname>direct_pick_loc</dbname>
</table_column>
</TableDefinition>
<GroupBox>
......@@ -238,9 +236,9 @@
<border>5</border>
<color>33554432</color>
<x>20</x>
<y>6</y>
<height>353</height>
<width>525</width>
<y>0</y>
<height>244</height>
<width>610</width>
<name>gb_1</name>
<visible>1</visible>
<font>
......@@ -259,17 +257,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Site Code:</text>
<text>Parcel Allow:</text>
<border>0</border>
<color>33554432</color>
<x>75</x>
<y>30</y>
<x>354</x>
<y>181</y>
<height>16</height>
<width>94</width>
<width>73</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code_t</name>
<name>parcelpack_allow_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -281,62 +279,68 @@
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<color>553648127</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<id>17</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<tabsequence>190</tabsequence>
<border>5</border>
<color>33554432</color>
<x>174</x>
<y>30</y>
<x>313</x>
<y>181</y>
<height>16</height>
<width>95</width>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>site_code</name>
<name>master_pack_allow</name>
<visible>1</visible>
<EditStyle style="edit">
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<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>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>1073741824</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Series From:</text>
<border>0</border>
<id>22</id>
<alignment>0</alignment>
<tabsequence>200</tabsequence>
<border>5</border>
<color>33554432</color>
<x>71</x>
<y>55</y>
<x>429</x>
<y>181</y>
<height>16</height>
<width>98</width>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__from_t</name>
<name>parcelpack_allow</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -346,26 +350,26 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<id>1</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<tabsequence>10</tabsequence>
<border>5</border>
<color>33554432</color>
<x>174</x>
<y>55</y>
<x>184</x>
<y>21</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__from</name>
<name>site_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -388,50 +392,22 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Series To:</text>
<border>0</border>
<color>33554432</color>
<x>352</x>
<y>55</y>
<height>16</height>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__to_t</name>
<visible>1</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>
<band>Detail</band>
<id>4</id>
<id>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>33554432</color>
<x>441</x>
<y>55</y>
<x>184</x>
<y>41</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_ser__to</name>
<name>item_ser__from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -454,21 +430,29 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Default Quantity Automatic:</text>
<border>0</border>
<id>5</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>33554432</color>
<x>49</x>
<y>205</y>
<height>16</height>
<width>157</width>
<x>184</x>
<y>61</y>
<height>18</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_qty_flag_t</name>
<name>item_code__from</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -478,111 +462,130 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
<mode>2</mode>
<color>16777215</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<id>11</id>
<alignment>0</alignment>
<tabsequence>140</tabsequence>
<tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color>
<x>212</x>
<y>205</y>
<x>184</x>
<y>81</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_qty_flag</name>
<name>sale_order__from</name>
<visible>1</visible>
<EditStyle style="ddlb">
<EditStyle style="edit">
<limit>0</limit>
<allowedit>no</allowedit>
<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>2</mode>
<color>1073741824</color>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Wave Mode:</text>
<border>0</border>
<id>9</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<border>5</border>
<color>33554432</color>
<x>358</x>
<y>205</y>
<height>16</height>
<width>78</width>
<x>184</x>
<y>101</y>
<height>17</height>
<width>95</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>wave_mode_t</name>
<name>cust_code__from</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>1</family>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>16777215</color>
</background>
</TextObject>
<TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Customer Code Dlv From :</text>
<border>0</border>
<id>13</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<border>5</border>
<color>33554432</color>
<x>22</x>
<y>180</y>
<x>184</x>
<y>121</y>
<height>16</height>
<width>147</width>
<width>95</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__dlv__from_t</name>
<name>due_date__from</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>16777215</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>7</id>
<alignment>0</alignment>
<tabsequence>120</tabsequence>
<tabsequence>130</tabsequence>
<border>5</border>
<color>33554432</color>
<x>174</x>
<y>180</y>
<x>184</x>
<y>141</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
......@@ -610,21 +613,29 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Customer Code Dlv To :</text>
<border>0</border>
<id>18</id>
<alignment>0</alignment>
<tabsequence>180</tabsequence>
<border>5</border>
<color>33554432</color>
<x>297</x>
<y>180</y>
<x>184</x>
<y>181</y>
<height>16</height>
<width>139</width>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__dlv__to_t</name>
<name>active_pick_allow</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -634,26 +645,26 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>8</id>
<id>20</id>
<alignment>0</alignment>
<tabsequence>130</tabsequence>
<tabsequence>240</tabsequence>
<border>5</border>
<color>33554432</color>
<x>441</x>
<y>180</y>
<x>184</x>
<y>221</y>
<height>16</height>
<width>95</width>
<width>425</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__dlv__to</name>
<name>printer_name</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -671,24 +682,32 @@
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>1073741824</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Due Date From:</text>
<border>0</border>
<id>15</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>5</border>
<color>33554432</color>
<x>75</x>
<y>155</y>
<x>513</x>
<y>21</y>
<height>16</height>
<width>94</width>
<width>119</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__from_t</name>
<name>wave_mode</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>2</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -698,31 +717,34 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
<id>4</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>174</x>
<y>155</y>
<x>513</x>
<y>41</y>
<height>16</height>
<width>95</width>
<format>[shortdate] [time]</format>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__from</name>
<name>item_ser__to</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<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>
......@@ -737,21 +759,29 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Due Date To:</text>
<border>0</border>
<id>6</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<color>33554432</color>
<x>352</x>
<y>155</y>
<height>16</height>
<width>84</width>
<x>513</x>
<y>61</y>
<height>18</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__to_t</name>
<name>item_code__to</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -761,31 +791,34 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
<mode>2</mode>
<color>16777215</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>14</id>
<id>12</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<tabsequence>80</tabsequence>
<border>5</border>
<color>33554432</color>
<x>441</x>
<y>155</y>
<x>513</x>
<y>81</y>
<height>16</height>
<width>95</width>
<format>[shortdate] [time]</format>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>due_date__to</name>
<name>sale_order__to</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<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>
......@@ -800,50 +833,22 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Customer Code From:</text>
<border>0</border>
<color>33554432</color>
<x>41</x>
<y>130</y>
<height>16</height>
<width>128</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__from_t</name>
<visible>1</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>
<band>Detail</band>
<id>9</id>
<id>10</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<tabsequence>100</tabsequence>
<border>5</border>
<color>33554432</color>
<x>174</x>
<y>130</y>
<x>513</x>
<y>101</y>
<height>17</height>
<width>95</width>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__from</name>
<name>cust_code__to</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
......@@ -866,64 +871,69 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Customer Code To:</text>
<border>0</border>
<id>14</id>
<alignment>0</alignment>
<tabsequence>120</tabsequence>
<border>5</border>
<color>33554432</color>
<x>326</x>
<y>130</y>
<height>17</height>
<width>110</width>
<x>513</x>
<y>121</y>
<height>16</height>
<width>96</width>
<format>[shortdate] [time]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__to_t</name>
<name>due_date__to</name>
<visible>1</visible>
<EditStyle style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
<focusrectangle>no</focusrectangle>
</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>16777215</color>
</background>
</TextObject>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>10</id>
<id>8</id>
<alignment>0</alignment>
<tabsequence>90</tabsequence>
<tabsequence>140</tabsequence>
<border>5</border>
<color>33554432</color>
<x>441</x>
<y>130</y>
<height>17</height>
<width>95</width>
<x>513</x>
<y>141</y>
<height>16</height>
<width>96</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_code__to</name>
<name>cust_code__dlv__to</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>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
......@@ -935,17 +945,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Sale Order From:</text>
<text>Customer Code Dlv To :</text>
<border>0</border>
<color>33554432</color>
<x>73</x>
<y>105</y>
<x>371</x>
<y>141</y>
<height>16</height>
<width>96</width>
<width>139</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order__from_t</name>
<name>cust_code__dlv__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -960,58 +970,48 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>11</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Due Date To:</text>
<border>0</border>
<color>33554432</color>
<x>174</x>
<y>105</y>
<x>426</x>
<y>121</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order__from</name>
<name>due_date__to_t</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>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Sale Order To:</text>
<text>Customer Code To:</text>
<border>0</border>
<color>33554432</color>
<x>352</x>
<y>105</y>
<height>16</height>
<width>84</width>
<x>400</x>
<y>101</y>
<height>17</height>
<width>110</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order__to_t</name>
<name>cust_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1026,58 +1026,48 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>70</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Sale Order To:</text>
<border>0</border>
<color>33554432</color>
<x>441</x>
<y>105</y>
<x>426</x>
<y>81</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order__to</name>
<name>sale_order__to_t</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>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Code From:</text>
<text>Item Code To:</text>
<border>0</border>
<color>33554432</color>
<x>75</x>
<y>80</y>
<x>426</x>
<y>61</y>
<height>16</height>
<width>94</width>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__from_t</name>
<name>item_code__to_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1092,29 +1082,21 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>5</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Item Series To:</text>
<border>0</border>
<color>33554432</color>
<x>174</x>
<y>80</y>
<height>18</height>
<width>95</width>
<format>[general]</format>
<x>426</x>
<y>41</y>
<height>16</height>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__from</name>
<name>item_ser__to_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1124,24 +1106,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Item Code To:</text>
<text>Wave Mode:</text>
<border>0</border>
<color>33554432</color>
<x>352</x>
<y>80</y>
<x>432</x>
<y>21</y>
<height>16</height>
<width>84</width>
<width>78</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__to_t</name>
<name>wave_mode_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1156,29 +1138,21 @@
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Master Allow:</text>
<border>0</border>
<color>33554432</color>
<x>441</x>
<y>80</y>
<height>18</height>
<width>95</width>
<format>[general]</format>
<x>232</x>
<y>181</y>
<height>16</height>
<width>78</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>item_code__to</name>
<name>master_pack_allow_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1188,24 +1162,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<mode>1</mode>
<color>553648127</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Single Lot:</text>
<text>Site Code:</text>
<border>0</border>
<color>33554432</color>
<x>65</x>
<y>230</y>
<x>86</x>
<y>21</y>
<height>16</height>
<width>104</width>
<width>94</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>single_lot_t</name>
<name>site_code_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1217,32 +1191,24 @@
</font>
<background>
<mode>1</mode>
<color>553648127</color>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>16</id>
<alignment>0</alignment>
<tabsequence>160</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Item Series From:</text>
<border>0</border>
<color>33554432</color>
<x>174</x>
<y>230</y>
<x>82</x>
<y>41</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>single_lot</name>
<name>item_ser__from_t</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1251,34 +1217,26 @@
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<id>18</id>
<alignment>0</alignment>
<tabsequence>180</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Item Code From:</text>
<border>0</border>
<color>33554432</color>
<x>174</x>
<y>255</y>
<x>86</x>
<y>61</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<width>94</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>active_pick_allow</name>
<name>item_code__from_t</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1288,33 +1246,25 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
<ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<id>22</id>
<alignment>0</alignment>
<tabsequence>210</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Sale Order From:</text>
<border>0</border>
<color>33554432</color>
<x>174</x>
<y>280</y>
<x>84</x>
<y>81</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<width>96</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>parcelpack_allow</name>
<name>sale_order__from_t</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1324,24 +1274,24 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
<mode>1</mode>
<color>536870912</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Active Pick Allow:</text>
<text>Customer Code From:</text>
<border>0</border>
<color>33554432</color>
<x>65</x>
<y>255</y>
<x>52</x>
<y>101</y>
<height>16</height>
<width>104</width>
<width>128</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>active_pick_allow_t</name>
<name>cust_code__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1353,23 +1303,23 @@
</font>
<background>
<mode>1</mode>
<color>553648127</color>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Parcel Pick Allow:</text>
<text>Due Date From:</text>
<border>0</border>
<color>33554432</color>
<x>65</x>
<y>279</y>
<x>86</x>
<y>121</y>
<height>16</height>
<width>104</width>
<width>94</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>parcelpack_allow_t</name>
<name>due_date__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1381,23 +1331,23 @@
</font>
<background>
<mode>1</mode>
<color>553648127</color>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Print Label:</text>
<text>Customer Code Dlv From :</text>
<border>0</border>
<color>33554432</color>
<x>65</x>
<y>303</y>
<x>33</x>
<y>141</y>
<height>16</height>
<width>104</width>
<width>147</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>print_label_t</name>
<name>cust_code__dlv__from_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1409,32 +1359,24 @@
</font>
<background>
<mode>1</mode>
<color>553648127</color>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>21</id>
<alignment>0</alignment>
<tabsequence>200</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Active Allow:</text>
<border>0</border>
<color>33554432</color>
<x>174</x>
<y>303</y>
<x>102</x>
<y>181</y>
<height>16</height>
<width>95</width>
<format>[general]</format>
<width>78</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>print_label</name>
<name>active_pick_allow_t</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1444,20 +1386,20 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
<mode>1</mode>
<color>553648127</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Printer For Label:</text>
<border>0</border>
<color>33554432</color>
<x>65</x>
<y>327</y>
<x>88</x>
<y>221</y>
<height>16</height>
<width>104</width>
<width>92</width>
<html>
<valueishtml>0</valueishtml>
</html>
......@@ -1476,29 +1418,21 @@
<color>553648127</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>20</id>
<alignment>0</alignment>
<tabsequence>220</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>Stock To Dock:</text>
<border>0</border>
<color>33554432</color>
<x>174</x>
<y>327</y>
<x>481</x>
<y>181</y>
<height>16</height>
<width>362</width>
<format>[general]</format>
<width>84</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>printer_name</name>
<name>stock_to_dock_allow_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1508,31 +1442,31 @@
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
<mode>1</mode>
<color>553648127</color>
</background>
</ColumnObject>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>15</id>
<id>19</id>
<alignment>0</alignment>
<tabsequence>150</tabsequence>
<tabsequence>210</tabsequence>
<border>5</border>
<color>33554432</color>
<x>441</x>
<y>205</y>
<x>568</x>
<y>181</y>
<height>16</height>
<width>95</width>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>wave_mode</name>
<name>stock_to_dock_allow</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>2</limit>
<limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1551,17 +1485,17 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Master Pack Allow:</text>
<text>Print Label:</text>
<border>0</border>
<color>33554432</color>
<x>317</x>
<y>230</y>
<x>76</x>
<y>201</y>
<height>16</height>
<width>120</width>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>master_pack_allow_t</name>
<name>print_label_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1576,21 +1510,29 @@
<color>553648127</color>
</background>
</TextObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Stock To Dock Allow:</text>
<border>0</border>
<id>21</id>
<alignment>0</alignment>
<tabsequence>220</tabsequence>
<border>5</border>
<color>33554432</color>
<x>317</x>
<y>255</y>
<x>184</x>
<y>201</y>
<height>16</height>
<width>120</width>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stock_to_dock_allow_t</name>
<name>print_label</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1600,24 +1542,24 @@
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Master Override:</text>
<text>Shipment Type:</text>
<border>0</border>
<color>33554432</color>
<x>317</x>
<y>280</y>
<x>415</x>
<y>201</y>
<height>16</height>
<width>120</width>
<width>87</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>master_override_t</name>
<name>ship_type_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -1634,25 +1576,26 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>17</id>
<id>23</id>
<alignment>0</alignment>
<tabsequence>170</tabsequence>
<tabsequence>230</tabsequence>
<border>5</border>
<color>33554432</color>
<x>441</x>
<y>230</y>
<x>506</x>
<y>201</y>
<height>16</height>
<width>95</width>
<width>126</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>master_pack_allow</name>
<name>ship_type</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<case>upper</case>
<useasborder>yes</useasborder>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1670,20 +1613,20 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>19</id>
<id>16</id>
<alignment>0</alignment>
<tabsequence>190</tabsequence>
<tabsequence>170</tabsequence>
<border>5</border>
<color>33554432</color>
<x>441</x>
<y>255</y>
<x>568</x>
<y>161</y>
<height>16</height>
<width>95</width>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stock_to_dock_allow</name>
<name>single_lot</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
......@@ -1704,27 +1647,55 @@
<color>1073741824</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Default Quantity Automatic:</text>
<border>0</border>
<color>33554432</color>
<x>22</x>
<y>161</y>
<height>16</height>
<width>157</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_qty_flag_t</name>
<visible>1</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>553648127</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>23</id>
<id>2</id>
<alignment>0</alignment>
<tabsequence>230</tabsequence>
<tabsequence>150</tabsequence>
<border>5</border>
<color>33554432</color>
<x>441</x>
<y>280</y>
<x>183</x>
<y>161</y>
<height>16</height>
<width>95</width>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>master_override</name>
<name>default_qty_flag</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1743,18 +1714,18 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Parcel Override:</text>
<text>Direct Pick Location:</text>
<border>0</border>
<color>33554432</color>
<x>317</x>
<y>305</y>
<x>253</x>
<y>161</y>
<height>16</height>
<width>120</width>
<width>127</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>t_2</name>
<visible>0</visible>
<name>direct_pick_loc_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -1772,23 +1743,23 @@
<band>Detail</band>
<id>24</id>
<alignment>0</alignment>
<tabsequence>240</tabsequence>
<border>5</border>
<tabsequence>160</tabsequence>
<border>0</border>
<color>33554432</color>
<x>441</x>
<y>305</y>
<x>396</x>
<y>161</y>
<height>16</height>
<width>95</width>
<width>98</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>parcel_override</name>
<visible>0</visible>
<EditStyle style="ddlb">
<name>direct_pick_loc</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -1804,6 +1775,34 @@
<color>1073741824</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Single Lot:</text>
<border>0</border>
<color>33554432</color>
<x>504</x>
<y>161</y>
<height>16</height>
<width>61</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>single_lot_t</name>
<visible>1</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>553648127</color>
</background>
</TextObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -480,6 +480,34 @@
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Active Pick</text>
<border>6</border>
<color>33554432</color>
<x>793</x>
<y>2</y>
<height>16</height>
<width>71</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>active_pick_allow_t</name>
<visible>1</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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
......@@ -508,6 +536,34 @@
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Parce Pack Allow</text>
<border>6</border>
<color>33554432</color>
<x>953</x>
<y>2</y>
<height>16</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>parcelpack_allow_t</name>
<visible>1</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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
......@@ -1338,6 +1394,42 @@
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>0</border>
<color>33554432</color>
<x>953</x>
<y>2</y>
<height>15</height>
<width>98</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>parcelpack_allow</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>13</id>
......@@ -1963,98 +2055,6 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Active Pick</text>
<border>6</border>
<color>33554432</color>
<x>793</x>
<y>2</y>
<height>16</height>
<width>71</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>active_pick_allow_t</name>
<visible>1</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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Parcel Pick Allow</text>
<border>6</border>
<color>33554432</color>
<x>953</x>
<y>2</y>
<height>16</height>
<width>98</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>parcelpack_allow_t</name>
<visible>1</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>2</mode>
<color>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>12</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<border>0</border>
<color>33554432</color>
<x>953</x>
<y>2</y>
<height>15</height>
<width>98</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>parcelpack_allow</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -29697,4 +29697,152 @@ INSERT INTO messages (
commit;
--Changed by Pragyan Parcel Picking and LTL to master/parcel coverts
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 (
'ATLSTSELMP',
'Invalid selection',
'For Master Packing Shipment type should be As per route or Master',
'E',
'Y',
NULL,
NULL,
NULL,
TO_DATE('25-02-2013 18:49:58','DD-MM-YYYY HH24:MI:SS'),
'base ',
'Pragyan ',
NULL,
NULL);
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 (
'ATLSTSELPP',
'Invalid selection',
'For Parcel Packing Shipment type should be As per route or Parcel',
'E',
'Y',
NULL,
NULL,
NULL,
TO_DATE('25-02-2013 18:49:58','DD-MM-YYYY HH24:MI:SS'),
'base ',
'Pragyan ',
NULL,
NULL);
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 (
'ATLSTSENAN',
'Invalid selection',
'Only For Maste/Parcel Packing Shipment type should be Master/Parcel ',
'E',
'Y',
NULL,
NULL,
NULL,
TO_DATE('25-02-2013 18:49:58','DD-MM-YYYY HH24:MI:SS'),
'base ',
'Pragyan ',
NULL,
NULL);
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 (
'ONSELCMP ',
'Invalid selection',
'Both Parcel and Master should not be selected for a shipment',
'E',
'Y',
NULL,
NULL,
NULL,
TO_DATE('25-02-2013 18:49:58','DD-MM-YYYY HH24:MI:SS'),
'base ',
'Pragyan ',
NULL,
NULL);
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 (
'INVDPIKLOC',
'Invalid Direct Pick',
'Invalid Direct Pick Location',
'E',
'Y',
NULL,
NULL,
NULL,
TO_DATE('25-02-2013 18:49:58','DD-MM-YYYY HH24:MI:SS'),
'base ',
'Pragyan ',
NULL,
NULL);
alter table location add direct_pick char(1);
alter table distroutedet add ship_type char(1);
commit;
......@@ -3,7 +3,7 @@ release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=372 color="536870912" )
detail(height=309 color="536870912" )
table(column=(type=char(10) updatewhereclause=no name=site_code dbname="site_code" )
column=(type=char(1) updatewhereclause=no name=default_qty_flag dbname="name_1" values="Yes Y/No N/" )
column=(type=char(10) updatewhereclause=no name=item_ser__from dbname="item_ser__from" )
......@@ -26,58 +26,58 @@ table(column=(type=char(10) updatewhereclause=no name=site_code dbname="site_cod
column=(type=char(200) updatewhereclause=no name=printer_name dbname="printer_name" )
column=(type=char(1) updatewhereclause=no name=print_label dbname="print_label" initial="N" values="YES Y/NO N/" )
column=(type=char(1) updatewhereclause=no name=parcelpack_allow dbname="parcelpack_allow" values="YES Y/NO N/" )
column=(type=char(1) updatewhereclause=no name=master_override dbname="master_override" values="YES Y/NO N/" )
column=(type=char(1) updatewhereclause=no name=parcel_override dbname="parcel_override" values="YES Y/NO N/" )
column=(type=char(1) updatewhereclause=no name=ship_type dbname="ship_type" values="As per Routing A/LTL L/Master M/Parcel P/" )
column=(type=char(10) updatewhereclause=no name=direct_pick_loc dbname="direct_pick_loc" )
)
groupbox(band=detail text="Basic"border="5" color="33554432" x="20" y="6" height="353" width="525" name=gb_1 visible="1" font.face="Times New Roman" font.height="-12" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Site Code:" border="0" color="33554432" x="75" y="30" height="16" width="94" html.valueishtml="0" name=site_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=1 alignment="0" tabsequence=10 border="5" color="33554432" x="174" y="30" height="16" width="95" format="[general]" html.valueishtml="0" name=site_code 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="16777215" )
text(band=detail alignment="1" text="Item Series From:" border="0" color="33554432" x="71" y="55" height="16" width="98" html.valueishtml="0" name=item_ser__from_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=3 alignment="0" tabsequence=20 border="5" color="33554432" x="174" y="55" height="16" width="95" format="[general]" html.valueishtml="0" name=item_ser__from 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="16777215" )
text(band=detail alignment="1" text="Item Series To:" border="0" color="33554432" x="352" y="55" height="16" width="84" html.valueishtml="0" name=item_ser__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=4 alignment="0" tabsequence=30 border="5" color="33554432" x="441" y="55" height="16" width="95" format="[general]" html.valueishtml="0" name=item_ser__to 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="16777215" )
text(band=detail alignment="1" text="Default Quantity Automatic:" border="0" color="33554432" x="49" y="205" height="16" width="157" html.valueishtml="0" name=default_qty_flag_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="553648127" )
column(band=detail id=2 alignment="0" tabsequence=140 border="5" color="33554432" x="212" y="205" height="16" width="95" format="[general]" html.valueishtml="0" name=default_qty_flag visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Wave Mode:" border="0" color="33554432" x="358" y="205" height="16" width="78" html.valueishtml="0" name=wave_mode_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="Customer Code Dlv From :" border="0" color="33554432" x="22" y="180" height="16" width="147" html.valueishtml="0" name=cust_code__dlv__from_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=120 border="5" color="33554432" x="174" y="180" height="16" width="95" format="[general]" html.valueishtml="0" name=cust_code__dlv__from visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Customer Code Dlv To :" border="0" color="33554432" x="297" y="180" height="16" width="139" html.valueishtml="0" name=cust_code__dlv__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=8 alignment="0" tabsequence=130 border="5" color="33554432" x="441" y="180" height="16" width="95" format="[general]" html.valueishtml="0" name=cust_code__dlv__to visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Due Date From:" border="0" color="33554432" x="75" y="155" height="16" width="94" html.valueishtml="0" name=due_date__from_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=13 alignment="0" tabsequence=100 border="5" color="33554432" x="174" y="155" height="16" width="95" format="[shortdate] [time]" html.valueishtml="0" name=due_date__from visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="16777215" )
text(band=detail alignment="1" text="Due Date To:" border="0" color="33554432" x="352" y="155" height="16" width="84" html.valueishtml="0" name=due_date__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=14 alignment="0" tabsequence=110 border="5" color="33554432" x="441" y="155" height="16" width="95" format="[shortdate] [time]" html.valueishtml="0" name=due_date__to visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="16777215" )
text(band=detail alignment="1" text="Customer Code From:" border="0" color="33554432" x="41" y="130" height="16" width="128" html.valueishtml="0" name=cust_code__from_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=9 alignment="0" tabsequence=80 border="5" color="33554432" x="174" y="130" height="17" width="95" format="[general]" html.valueishtml="0" name=cust_code__from 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="16777215" )
text(band=detail alignment="1" text="Customer Code To:" border="0" color="33554432" x="326" y="130" height="17" width="110" html.valueishtml="0" name=cust_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=10 alignment="0" tabsequence=90 border="5" color="33554432" x="441" y="130" height="17" width="95" format="[general]" html.valueishtml="0" name=cust_code__to 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="16777215" )
text(band=detail alignment="1" text="Sale Order From:" border="0" color="33554432" x="73" y="105" height="16" width="96" html.valueishtml="0" name=sale_order__from_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=60 border="5" color="33554432" x="174" y="105" height="16" width="95" format="[general]" html.valueishtml="0" name=sale_order__from 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="16777215" )
text(band=detail alignment="1" text="Sale Order To:" border="0" color="33554432" x="352" y="105" height="16" width="84" html.valueishtml="0" name=sale_order__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=12 alignment="0" tabsequence=70 border="5" color="33554432" x="441" y="105" height="16" width="95" format="[general]" html.valueishtml="0" name=sale_order__to 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="16777215" )
text(band=detail alignment="1" text="Item Code From:" border="0" color="33554432" x="75" y="80" height="16" width="94" html.valueishtml="0" name=item_code__from_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=40 border="5" color="33554432" x="174" y="80" height="18" width="95" format="[general]" html.valueishtml="0" name=item_code__from visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Item Code To:" border="0" color="33554432" x="352" y="80" height="16" width="84" html.valueishtml="0" name=item_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=6 alignment="0" tabsequence=50 border="5" color="33554432" x="441" y="80" height="18" width="95" format="[general]" html.valueishtml="0" name=item_code__to visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Single Lot:" border="0" color="33554432" x="65" y="230" height="16" width="104" html.valueishtml="0" name=single_lot_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="553648127" )
column(band=detail id=16 alignment="0" tabsequence=160 border="5" color="33554432" x="174" y="230" height="16" width="95" format="[general]" html.valueishtml="0" name=single_lot visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=18 alignment="0" tabsequence=180 border="5" color="33554432" x="174" y="255" height="16" width="95" format="[general]" html.valueishtml="0" name=active_pick_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=22 alignment="0" tabsequence=210 border="5" color="33554432" x="174" y="280" height="16" width="95" format="[general]" html.valueishtml="0" name=parcelpack_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Active Pick Allow:" border="0" color="33554432" x="65" y="255" height="16" width="104" html.valueishtml="0" name=active_pick_allow_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="553648127" )
text(band=detail alignment="1" text="Parcel Pick Allow:" border="0" color="33554432" x="65" y="279" height="16" width="104" html.valueishtml="0" name=parcelpack_allow_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="553648127" )
text(band=detail alignment="1" text="Print Label:" border="0" color="33554432" x="65" y="303" height="16" width="104" html.valueishtml="0" name=print_label_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="553648127" )
column(band=detail id=21 alignment="0" tabsequence=200 border="5" color="33554432" x="174" y="303" height="16" width="95" format="[general]" html.valueishtml="0" name=print_label visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Printer For Label:" border="0" color="33554432" x="65" y="327" height="16" width="104" html.valueishtml="0" name=printer_name_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="553648127" )
column(band=detail id=20 alignment="0" tabsequence=220 border="5" color="33554432" x="174" y="327" height="16" width="362" format="[general]" html.valueishtml="0" name=printer_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=15 alignment="0" tabsequence=150 border="5" color="33554432" x="441" y="205" height="16" width="95" format="[general]" html.valueishtml="0" name=wave_mode visible="1" ddlb.limit=2 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Master Pack Allow:" border="0" color="33554432" x="317" y="230" height="16" width="120" html.valueishtml="0" name=master_pack_allow_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="553648127" )
text(band=detail alignment="1" text="Stock To Dock Allow:" border="0" color="33554432" x="317" y="255" height="16" width="120" html.valueishtml="0" name=stock_to_dock_allow_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="553648127" )
text(band=detail alignment="1" text="Master Override:" border="0" color="33554432" x="317" y="280" height="16" width="120" html.valueishtml="0" name=master_override_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="553648127" )
column(band=detail id=17 alignment="0" tabsequence=170 border="5" color="33554432" x="441" y="230" height="16" width="95" format="[general]" html.valueishtml="0" name=master_pack_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=19 alignment="0" tabsequence=190 border="5" color="33554432" x="441" y="255" height="16" width="95" format="[general]" html.valueishtml="0" name=stock_to_dock_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=23 alignment="0" tabsequence=230 border="5" color="33554432" x="441" y="280" height="16" width="95" format="[general]" html.valueishtml="0" name=master_override visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Parcel Override:" border="0" color="33554432" x="317" y="305" height="16" width="120" html.valueishtml="0" name=t_2 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="553648127" )
column(band=detail id=24 alignment="0" tabsequence=240 border="5" color="33554432" x="441" y="305" height="16" width="95" format="[general]" html.valueishtml="0" name=parcel_override visible="0" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
groupbox(band=detail text="Basic"border="5" color="33554432" x="20" y="0" height="244" width="610" name=gb_1 visible="1" font.face="Times New Roman" font.height="-12" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Parcel Allow:" border="0" color="33554432" x="354" y="181" height="16" width="73" html.valueishtml="0" name=parcelpack_allow_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="553648127" )
column(band=detail id=17 alignment="0" tabsequence=190 border="5" color="33554432" x="313" y="181" height="16" width="64" format="[general]" html.valueishtml="0" name=master_pack_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=22 alignment="0" tabsequence=200 border="5" color="33554432" x="429" y="181" height="16" width="64" format="[general]" html.valueishtml="0" name=parcelpack_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="184" y="21" height="16" width="95" format="[general]" html.valueishtml="0" name=site_code 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="16777215" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="33554432" x="184" y="41" height="16" width="95" format="[general]" html.valueishtml="0" name=item_ser__from 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="16777215" )
column(band=detail id=5 alignment="0" tabsequence=50 border="5" color="33554432" x="184" y="61" height="18" width="95" format="[general]" html.valueishtml="0" name=item_code__from visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=70 border="5" color="33554432" x="184" y="81" height="16" width="95" format="[general]" html.valueishtml="0" name=sale_order__from 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="16777215" )
column(band=detail id=9 alignment="0" tabsequence=90 border="5" color="33554432" x="184" y="101" height="17" width="95" format="[general]" html.valueishtml="0" name=cust_code__from 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="16777215" )
column(band=detail id=13 alignment="0" tabsequence=110 border="5" color="33554432" x="184" y="121" height="16" width="95" format="[shortdate] [time]" html.valueishtml="0" name=due_date__from visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="16777215" )
column(band=detail id=7 alignment="0" tabsequence=130 border="5" color="33554432" x="184" y="141" height="16" width="95" format="[general]" html.valueishtml="0" name=cust_code__dlv__from visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=18 alignment="0" tabsequence=180 border="5" color="33554432" x="184" y="181" height="16" width="64" format="[general]" html.valueishtml="0" name=active_pick_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=20 alignment="0" tabsequence=240 border="5" color="33554432" x="184" y="221" height="16" width="425" format="[general]" html.valueishtml="0" name=printer_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=15 alignment="0" tabsequence=20 border="5" color="33554432" x="513" y="21" height="16" width="119" format="[general]" html.valueishtml="0" name=wave_mode visible="1" ddlb.limit=2 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=4 alignment="0" tabsequence=40 border="5" color="33554432" x="513" y="41" height="16" width="96" format="[general]" html.valueishtml="0" name=item_ser__to 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="16777215" )
column(band=detail id=6 alignment="0" tabsequence=60 border="5" color="33554432" x="513" y="61" height="18" width="96" format="[general]" html.valueishtml="0" name=item_code__to visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=12 alignment="0" tabsequence=80 border="5" color="33554432" x="513" y="81" height="16" width="96" format="[general]" html.valueishtml="0" name=sale_order__to 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="16777215" )
column(band=detail id=10 alignment="0" tabsequence=100 border="5" color="33554432" x="513" y="101" height="17" width="96" format="[general]" html.valueishtml="0" name=cust_code__to 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="16777215" )
column(band=detail id=14 alignment="0" tabsequence=120 border="5" color="33554432" x="513" y="121" height="16" width="96" format="[shortdate] [time]" html.valueishtml="0" name=due_date__to visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no 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="16777215" )
column(band=detail id=8 alignment="0" tabsequence=140 border="5" color="33554432" x="513" y="141" height="16" width="96" format="[general]" html.valueishtml="0" name=cust_code__dlv__to visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Customer Code Dlv To :" border="0" color="33554432" x="371" y="141" height="16" width="139" html.valueishtml="0" name=cust_code__dlv__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="Due Date To:" border="0" color="33554432" x="426" y="121" height="16" width="84" html.valueishtml="0" name=due_date__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="Customer Code To:" border="0" color="33554432" x="400" y="101" height="17" width="110" html.valueishtml="0" name=cust_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="Sale Order To:" border="0" color="33554432" x="426" y="81" height="16" width="84" html.valueishtml="0" name=sale_order__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="Item Code To:" border="0" color="33554432" x="426" y="61" height="16" width="84" html.valueishtml="0" name=item_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="Item Series To:" border="0" color="33554432" x="426" y="41" height="16" width="84" html.valueishtml="0" name=item_ser__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="Wave Mode:" border="0" color="33554432" x="432" y="21" height="16" width="78" html.valueishtml="0" name=wave_mode_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="Master Allow:" border="0" color="33554432" x="232" y="181" height="16" width="78" html.valueishtml="0" name=master_pack_allow_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="553648127" )
text(band=detail alignment="1" text="Site Code:" border="0" color="33554432" x="86" y="21" height="16" width="94" html.valueishtml="0" name=site_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="Item Series From:" border="0" color="33554432" x="82" y="41" height="16" width="98" html.valueishtml="0" name=item_ser__from_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 From:" border="0" color="33554432" x="86" y="61" height="16" width="94" html.valueishtml="0" name=item_code__from_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="Sale Order From:" border="0" color="33554432" x="84" y="81" height="16" width="96" html.valueishtml="0" name=sale_order__from_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="Customer Code From:" border="0" color="33554432" x="52" y="101" height="16" width="128" html.valueishtml="0" name=cust_code__from_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="Due Date From:" border="0" color="33554432" x="86" y="121" height="16" width="94" html.valueishtml="0" name=due_date__from_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="Customer Code Dlv From :" border="0" color="33554432" x="33" y="141" height="16" width="147" html.valueishtml="0" name=cust_code__dlv__from_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="Active Allow:" border="0" color="33554432" x="102" y="181" height="16" width="78" html.valueishtml="0" name=active_pick_allow_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="553648127" )
text(band=detail alignment="1" text="Printer For Label:" border="0" color="33554432" x="88" y="221" height="16" width="92" html.valueishtml="0" name=printer_name_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="553648127" )
text(band=detail alignment="1" text="Stock To Dock:" border="0" color="33554432" x="481" y="181" height="16" width="84" html.valueishtml="0" name=stock_to_dock_allow_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="553648127" )
column(band=detail id=19 alignment="0" tabsequence=210 border="5" color="33554432" x="568" y="181" height="16" width="64" format="[general]" html.valueishtml="0" name=stock_to_dock_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Print Label:" border="0" color="33554432" x="76" y="201" height="16" width="104" html.valueishtml="0" name=print_label_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="553648127" )
column(band=detail id=21 alignment="0" tabsequence=220 border="5" color="33554432" x="184" y="201" height="16" width="64" format="[general]" html.valueishtml="0" name=print_label visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Shipment Type:" border="0" color="33554432" x="415" y="201" height="16" width="87" html.valueishtml="0" name=ship_type_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="553648127" )
column(band=detail id=23 alignment="0" tabsequence=230 border="5" color="33554432" x="506" y="201" height="16" width="126" format="[general]" html.valueishtml="0" name=ship_type visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.useasborder=yes ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=16 alignment="0" tabsequence=170 border="5" color="33554432" x="568" y="161" height="16" width="64" format="[general]" html.valueishtml="0" name=single_lot visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Default Quantity Automatic:" border="0" color="33554432" x="22" y="161" height="16" width="157" html.valueishtml="0" name=default_qty_flag_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="553648127" )
column(band=detail id=2 alignment="0" tabsequence=150 border="5" color="33554432" x="183" y="161" height="16" width="64" format="[general]" html.valueishtml="0" name=default_qty_flag visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Direct Pick Location:" border="0" color="33554432" x="253" y="161" height="16" width="127" html.valueishtml="0" name=direct_pick_loc_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="553648127" )
column(band=detail id=24 alignment="0" tabsequence=160 border="0" color="33554432" x="396" y="161" height="16" width="98" format="[general]" html.valueishtml="0" name=direct_pick_loc visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Single Lot:" border="0" color="33554432" x="504" y="161" height="16" width="61" html.valueishtml="0" name=single_lot_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="553648127" )
htmltable(border="1" )
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 template=(comment="" encoding="UTF-8" name="d_wavegen11" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_wavegen><d_wavegen_row __pbband=~"detail~"><site_code/><default_qty_flag>default_qty_flag</default_qty_flag><item_ser__from>item_ser__from</item_ser__from><item_ser__to>item_ser__to</item_ser__to><item_code__from>item_code__from</item_code__from><item_code__to>item_code__to</item_code__to><cust_code__dlv__from>cust_code__dlv__from</cust_code__dlv__from><cust_code__dlv__to>cust_code__dlv__to</cust_code__dlv__to><cust_code__from>cust_code__from</cust_code__from><cust_code__to>cust_code__to</cust_code__to><sale_order__from>sale_order__from</sale_order__from><sale_order__to>sale_order__to</sale_order__to><due_date__from>due_date__from</due_date__from><due_date__to>due_date__to</due_date__to></d_wavegen_row></d_wavegen>"))
......
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