Commit b2d1e9d0 authored by ppatro's avatar ppatro

issue tracker 12 new points


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93321 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d061a8aa
......@@ -1568,6 +1568,9 @@ public class DeallocArtPrc extends ProcessEJB implements WaveGenerationPrcLocal,
sql = " SELECT DT.DESP_ID, DT.LINE_NO, DT.LOC_CODE FROM DESPATCH D, DESPATCHDET DT , PICK_ORD_DET POD , WAVE_TASK_DET WTD " +
" WHERE POD.PICK_ORDER = ? AND POD.LINE_NO = ? AND POD.PICK_ORDER = WTD.REF_ID " +
" AND POD.SALE_ORDER = WTD.SALE_ORDER " +
// Changed by Sankara on 04-07-13 added new join for getting correct location[Start..]
" AND DT.SORD_NO = WTD.SALE_ORDER " +
// Changed by Sankara on 04-07-13 added new join for getting correct location[End..]
" AND WTD.WAVE_ID = D.WAVE_ID " +
" AND D.DESP_ID = DT.DESP_ID ";
......
......@@ -472,6 +472,83 @@ public class ShipmentIC extends ValidatorEJB implements ShipmentICRemote,Shipmen
}
*/
}
//Changed by sankara on 07-02-13 validations required for state, station, country[Start...]
else if ( childNodeName.equalsIgnoreCase("state_code") )
{
columnValue = genericUtility.getColumnValue("state_code",dom);
if(columnValue != null && columnValue.trim().length() > 0)
{
sql = "SELECT COUNT(*) FROM STATE WHERE STATE_CODE = ? " ;
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
{
cnt = rs.getInt(1);
if(cnt == 0)
{
errCode = "INVSTATE";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
}
else if ( childNodeName.equalsIgnoreCase("stan_code") )
{
columnValue = genericUtility.getColumnValue("stan_code",dom);
if(columnValue != null && columnValue.trim().length() > 0)
{
sql = "SELECT COUNT(*) FROM STATION WHERE STAN_CODE = ? " ;
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
{
cnt = rs.getInt(1);
if(cnt == 0)
{
errCode = "INVSTATION";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
}
else if ( childNodeName.equalsIgnoreCase("count_code") )
{
columnValue = genericUtility.getColumnValue("count_code",dom);
if(columnValue != null && columnValue.trim().length() > 0)
{
sql = " SELECT COUNT(*) FROM COUNTRY WHERE COUNT_CODE = ? " ;
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
{
cnt = rs.getInt(1);
if(cnt == 0)
{
errCode = "INVCOUNTRY";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
}
//Changed by sankara on 07-02-13 validations required for state,station country[End...]
}
}
break;
......@@ -1479,7 +1556,92 @@ public String itemChanged( Document dom, Document dom1, Document dom2, String ob
amt3 = amt1 + amt2 ;
valueXmlString.append( "<total_freight><![CDATA[" ).append( amt3 ).append( "]]></total_freight>\r\n" );
}
//Changed by sankara on 05-07-13 getting state code,station code,country code descriptions in item change[start....]
if(currentColumn.trim().equalsIgnoreCase( "itm_defaultedit" ))
{
columnValue = genericUtility.getColumnValue("stan_code__from",dom);
sql = "select descr from station WHERE stan_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
{
descr = rs.getString(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
columnValue = genericUtility.getColumnValue("stan_code__to",dom);
sql = "select descr from station WHERE stan_code = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
{
descr1 = rs.getString(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
valueXmlString.append( "<station_a_descr><![CDATA[" ).append( checkNull( descr) ).append( "]]></station_a_descr>\r\n" );
valueXmlString.append( "<station_b_descr><![CDATA[" ).append( checkNull( descr1) ).append( "]]></station_b_descr>\r\n" );
}
else if( currentColumn.trim().equalsIgnoreCase( "stan_code" ) )
{
columnValue = genericUtility.getColumnValue("stan_code",dom);
sql = "select descr from station where stan_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
{
descr = rs.getString(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
valueXmlString.append( "<station_c_descr><![CDATA[" ).append( checkNull( descr) ).append( "]]></station_c_descr>\r\n" );
}
else if( currentColumn.trim().equalsIgnoreCase( "state_code" ) )
{
columnValue = genericUtility.getColumnValue("state_code",dom);
sql = "select descr from state where state_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
{
descr = rs.getString(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
valueXmlString.append( "<state_descr><![CDATA[" ).append( checkNull( descr) ).append( "]]></state_descr>\r\n" );
}
else if( currentColumn.trim().equalsIgnoreCase( "count_code" ) )
{
columnValue = genericUtility.getColumnValue("count_code",dom);
sql = "select descr from country where count_code = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, columnValue);
rs = pstmt.executeQuery();
if( rs.next() )
{
descr = rs.getString(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
valueXmlString.append( "<country_descr><![CDATA[" ).append( checkNull( descr) ).append( "]]></country_descr>\r\n" );
}
//Changed by sankara on 05-07-13 getting state code,station code,country code descriptions in item change[End.....]
valueXmlString.append( "</Detail1>\r\n" );
break;
......
......@@ -2297,6 +2297,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
tempMapReplenishment.put("QTY_AVAIL",stkQuantity);
}*/
//Changed By Pragyan as It is not reuired actives are treated separately.
stkQuantity = Math.floor(stkQuantity/itemPackSize) * itemPackSize;
tempMapReplenishment.put("QTY_ACTUAL", qtyActual);
tempMapReplenishment.put("LAST_REPL_ID", lastReplenishmentID);
tempMapReplenishment.put("REPL_LINE_NO", lineNoRepl);
......@@ -3255,10 +3256,56 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
invStat = invStat != null?invStat.trim():"";
System.out.println("allocQty"+allocQty+"qtyAvailAlloc:::"+qtyAvailAlloc);
if(((invStat.equalsIgnoreCase(resrvLoc) || invStat.equalsIgnoreCase(deepStoreLoc) || invStat.equalsIgnoreCase(casePickLoc) )) && "N".equalsIgnoreCase(isActivePickChecked))
//if(((invStat.equalsIgnoreCase(resrvLoc) || invStat.equalsIgnoreCase(deepStoreLoc) || invStat.equalsIgnoreCase(casePickLoc) )) && "N".equalsIgnoreCase(isActivePickChecked))
if(((invStat.equalsIgnoreCase(resrvLoc) || invStat.equalsIgnoreCase(deepStoreLoc) || invStat.equalsIgnoreCase(casePickLoc) )))
{
qtyAvailAlloc = Math.floor(qtyAvailAlloc/packSizeActive) * packSizeActive;
System.out.println("Only Case avilable Quantity["+qtyAvailAlloc+"]");
if("N".equalsIgnoreCase(isActivePickChecked))
{
qtyAvailAlloc = Math.floor(qtyAvailAlloc/packSizeActive) * packSizeActive;
System.out.println("Only Case avilable Quantity["+qtyAvailAlloc+"]");
}
else
{
/*double avilbleActives = qtyAvailAlloc % packSizeActive;
double quantiAvilableAsCase = Math.floor(qtyAvailAlloc/packSizeActive) * packSizeActive;
double requiredCases = Math.floor(allocQty/packSizeActive) * packSizeActive;
double requiredActives = allocQty % packSizeActive;
System.out.println("From Stock Avilable Actives["+avilbleActives+"]");
System.out.println("From Stock quantiAvilableAsCase["+avilbleActives+"]");
System.out.println("Required Actives ["+avilbleActives+"]");
System.out.println("Required Cases ["+avilbleActives+"]");
*/
/*if(allocQty < packSizeActive && quantiAvilableAsCase <= 0 && allocQty > avilbleActives)
{
System.out.println("case1 --["+(allocQty < packSizeActive && quantiAvilableAsCase <= 0 && allocQty > avilbleActives)+"]");
qtyAvailAlloc = avilbleActives;
}
else if(allocQty > packSizeActive && allocQty >= qtyAvailAlloc && requiredCases >= quantiAvilableAsCase)
{
qtyAvailAlloc = quantiAvilableAsCase * packSizeActive;
System.out.println("case2 --["+(allocQty > packSizeActive && allocQty >= qtyAvailAlloc && requiredCases >= quantiAvilableAsCase)+"]");
}
else if( requiredCases <= quantiAvilableAsCase && avilbleActives > requiredActives)
{
System.out.println("case3 --["+(requiredCases <= quantiAvilableAsCase && avilbleActives > requiredActives)+"]");
if((requiredCases + 1 ) != quantiAvilableAsCase)
{
System.out.println("case3.4 --["+((requiredCases + 1 ) != quantiAvilableAsCase)+"]");
qtyAvailAlloc = quantiAvilableAsCase * packSizeActive;
}
}
*/
}
}
......@@ -3397,7 +3444,36 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
}
else
{
tempMapReplenishment.put("QTY_AVAIL",qtyAvailAlloc);
if("N".equalsIgnoreCase(isActivePickChecked))
{
tempMapReplenishment.put("QTY_AVAIL",qtyAvailAlloc);
}
else
{
double avilbleActives = qtyAvailAlloc % packSizeActive;
double quantiAvilableAsCase = Math.floor(qtyAvailAlloc/packSizeActive) * packSizeActive;
double requiredCases = Math.floor(lotQtyToBeAllocated/packSizeActive) * packSizeActive;
double requiredActives = lotQtyToBeAllocated % packSizeActive;
System.out.println("From Stock Avilable Actives["+avilbleActives+"]");
System.out.println("From Stock quantiAvilableAsCase["+avilbleActives+"]");
System.out.println("Required Actives ["+avilbleActives+"]");
System.out.println("Required Cases ["+avilbleActives+"]");
if(requiredActives <= avilbleActives)
{
qtyAvailAlloc = quantiAvilableAsCase;
System.out.println("Quantity avilable sets on ifblock"+quantiAvilableAsCase+"]");
}
/*else
{
qtyAvailAlloc = quantiAvilableAsCase - packSizeActive;
}*/
tempMapReplenishment.put("QTY_AVAIL",qtyAvailAlloc);
}
}
tempMapReplenishment.put("QTY_ACTUAL", qtyActual);
......
......@@ -32,7 +32,7 @@
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>22</height>
<height>21</height>
<color>536870912</color>
</Header>
<Summary>
......@@ -400,7 +400,28 @@
<name>no_pallet</name>
<dbname>shipment.no_pallet</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;shipment&quot; ) COLUMN(NAME=&quot;shipment.shipment_id&quot;) COLUMN(NAME=&quot;shipment.shipment_date&quot;) COLUMN(NAME=&quot;shipment.lorry_no&quot;) COLUMN(NAME=&quot;shipment.tran_code&quot;) COLUMN(NAME=&quot;shipment.stan_code__from&quot;) COLUMN(NAME=&quot;shipment.stan_code__to&quot;) COLUMN(NAME=&quot;shipment.freight_amt&quot;) COLUMN(NAME=&quot;shipment.lr_no&quot;) COLUMN(NAME=&quot;shipment.lr_date&quot;) COLUMN(NAME=&quot;shipment.no_of_lr&quot;) COLUMN(NAME=&quot;shipment.bill_no&quot;) COLUMN(NAME=&quot;shipment.bill_date&quot;) COLUMN(NAME=&quot;shipment.call_date&quot;) COLUMN(NAME=&quot;shipment.pick_up_date&quot;) COLUMN(NAME=&quot;shipment.dlv_date&quot;) COLUMN(NAME=&quot;shipment.extra_dlv&quot;) COLUMN(NAME=&quot;shipment.frt_list&quot;) COLUMN(NAME=&quot;shipment.load_type&quot;) COLUMN(NAME=&quot;shipment.curr_code&quot;) COLUMN(NAME=&quot;shipment.exch_rate&quot;) COLUMN(NAME=&quot;shipment.add_chgs&quot;) COLUMN(NAME=&quot;shipment.total_freight&quot;) COLUMN(NAME=&quot;shipment.confirmed&quot;) COLUMN(NAME=&quot;shipment.conf_date&quot;) COLUMN(NAME=&quot;shipment.chg_date&quot;) COLUMN(NAME=&quot;shipment.chg_user&quot;) COLUMN(NAME=&quot;shipment.chg_term&quot;) COLUMN(NAME=&quot;shipment.recall_frt&quot;) COLUMN(NAME=&quot;shipment.pack_size&quot;) COLUMN(NAME=&quot;shipment.driver_name&quot;) COLUMN(NAME=&quot;shipment.licence_no&quot;) COMPUTE(NAME=&quot;&apos; &apos; ~&quot;DESCR~&quot;&quot;) COLUMN(NAME=&quot;shipment.dist_route&quot;) COLUMN(NAME=&quot;shipment.road_permit_no&quot;) COLUMN(NAME=&quot;shipment.gross_weight&quot;) COLUMN(NAME=&quot;shipment.tare_weight&quot;) COLUMN(NAME=&quot;shipment.remarks&quot;) COLUMN(NAME=&quot;shipment.conductor_name&quot;) COLUMN(NAME=&quot;shipment.sale_order&quot;) COLUMN(NAME=&quot;shipment.site_code&quot;) COLUMN(NAME=&quot;shipment.pro_no&quot;) COLUMN(NAME=&quot;shipment.consignee_name&quot;) COLUMN(NAME=&quot;shipment.addr1&quot;) COLUMN(NAME=&quot;shipment.addr2&quot;) COLUMN(NAME=&quot;shipment.addr3&quot;) COLUMN(NAME=&quot;shipment.city&quot;) COLUMN(NAME=&quot;shipment.pin&quot;) COLUMN(NAME=&quot;shipment.no_art&quot;) COLUMN(NAME=&quot;shipment.no_pallet&quot;)WHERE( EXP1 =&quot;( shipment.shipment_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:as_datefrom )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( shipment.shipment_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:as_dateto )&quot; ) ) ARG(NAME = &quot;as_datefrom&quot; TYPE = datetime) ARG(NAME = &quot;as_dateto&quot; TYPE = datetime) </retrieve>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>state_code</name>
<dbname>shipment.state_code</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>stan_code</name>
<dbname>shipment.stan_code</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>count_code</name>
<dbname>shipment.count_code</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;shipment&quot; ) COLUMN(NAME=&quot;shipment.shipment_id&quot;) COLUMN(NAME=&quot;shipment.shipment_date&quot;) COLUMN(NAME=&quot;shipment.lorry_no&quot;) COLUMN(NAME=&quot;shipment.tran_code&quot;) COLUMN(NAME=&quot;shipment.stan_code__from&quot;) COLUMN(NAME=&quot;shipment.stan_code__to&quot;) COLUMN(NAME=&quot;shipment.freight_amt&quot;) COLUMN(NAME=&quot;shipment.lr_no&quot;) COLUMN(NAME=&quot;shipment.lr_date&quot;) COLUMN(NAME=&quot;shipment.no_of_lr&quot;) COLUMN(NAME=&quot;shipment.bill_no&quot;) COLUMN(NAME=&quot;shipment.bill_date&quot;) COLUMN(NAME=&quot;shipment.call_date&quot;) COLUMN(NAME=&quot;shipment.pick_up_date&quot;) COLUMN(NAME=&quot;shipment.dlv_date&quot;) COLUMN(NAME=&quot;shipment.extra_dlv&quot;) COLUMN(NAME=&quot;shipment.frt_list&quot;) COLUMN(NAME=&quot;shipment.load_type&quot;) COLUMN(NAME=&quot;shipment.curr_code&quot;) COLUMN(NAME=&quot;shipment.exch_rate&quot;) COLUMN(NAME=&quot;shipment.add_chgs&quot;) COLUMN(NAME=&quot;shipment.total_freight&quot;) COLUMN(NAME=&quot;shipment.confirmed&quot;) COLUMN(NAME=&quot;shipment.conf_date&quot;) COLUMN(NAME=&quot;shipment.chg_date&quot;) COLUMN(NAME=&quot;shipment.chg_user&quot;) COLUMN(NAME=&quot;shipment.chg_term&quot;) COLUMN(NAME=&quot;shipment.recall_frt&quot;) COLUMN(NAME=&quot;shipment.pack_size&quot;) COLUMN(NAME=&quot;shipment.driver_name&quot;) COLUMN(NAME=&quot;shipment.licence_no&quot;) COMPUTE(NAME=&quot;&apos; &apos; ~&quot;DESCR~&quot;&quot;) COLUMN(NAME=&quot;shipment.dist_route&quot;) COLUMN(NAME=&quot;shipment.road_permit_no&quot;) COLUMN(NAME=&quot;shipment.gross_weight&quot;) COLUMN(NAME=&quot;shipment.tare_weight&quot;) COLUMN(NAME=&quot;shipment.remarks&quot;) COLUMN(NAME=&quot;shipment.conductor_name&quot;) COLUMN(NAME=&quot;shipment.sale_order&quot;) COLUMN(NAME=&quot;shipment.site_code&quot;) COLUMN(NAME=&quot;shipment.pro_no&quot;) COLUMN(NAME=&quot;shipment.consignee_name&quot;) COLUMN(NAME=&quot;shipment.addr1&quot;) COLUMN(NAME=&quot;shipment.addr2&quot;) COLUMN(NAME=&quot;shipment.addr3&quot;) COLUMN(NAME=&quot;shipment.city&quot;) COLUMN(NAME=&quot;shipment.pin&quot;) COLUMN(NAME=&quot;shipment.no_art&quot;) COLUMN(NAME=&quot;shipment.no_pallet&quot;) COLUMN(NAME=&quot;shipment.state_code&quot;) COLUMN(NAME=&quot;shipment.stan_code&quot;) COLUMN(NAME=&quot;shipment.count_code&quot;)WHERE( EXP1 =&quot;( shipment.shipment_date&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:as_datefrom )&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;( shipment.shipment_date&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:as_dateto )&quot; ) ) ARG(NAME = &quot;as_datefrom&quot; TYPE = datetime) ARG(NAME = &quot;as_dateto&quot; TYPE = datetime) </retrieve>
<update>SHIPMENT</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -1757,6 +1778,90 @@
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>State Code</text>
<border>6</border>
<color>0</color>
<x>4528</x>
<y>3</y>
<height>16</height>
<width>101</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_code_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>Station Code</text>
<border>6</border>
<color>0</color>
<x>4631</x>
<y>3</y>
<height>16</height>
<width>109</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stan_code_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>Country Code</text>
<border>6</border>
<color>0</color>
<x>4742</x>
<y>3</y>
<height>16</height>
<width>102</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>count_code_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>23</id>
......@@ -3508,6 +3613,114 @@
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>50</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>4528</x>
<y>2</y>
<height>16</height>
<width>101</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_code</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>
<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>51</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>4631</x>
<y>2</y>
<height>16</height>
<width>109</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stan_code</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>
<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>52</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>33554432</color>
<x>4742</x>
<y>2</y>
<height>16</height>
<width>102</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>count_code</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>
<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>
......
......@@ -5,7 +5,7 @@
<BaseDefinition>
<units>1</units>
<timer_interval>0</timer_interval>
<color>79741120</color>
<color>67108864</color>
<processing>0</processing>
<HTMLDW>no</HTMLDW>
<print>
......@@ -31,15 +31,15 @@
</print>
</BaseDefinition>
<Summary>
<height>0</height>
<height>35</height>
<color>536870912</color>
</Summary>
<Footer>
<height>0</height>
<height>38</height>
<color>536870912</color>
</Footer>
<Detail>
<height>791</height>
<height>823</height>
<color>536870912</color>
</Detail>
<TableDefinition>
......@@ -252,12 +252,6 @@
<name>station_a_descr</name>
<dbname>station.descr</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>station_b_descr</name>
<dbname>station.descr</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
......@@ -509,7 +503,52 @@
<name>no_pallet</name>
<dbname>shipment.no_pallet</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;shipment&quot; ) TABLE(NAME=&quot;freight_list&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;STATION_A&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;STATION_B&quot; ) TABLE(NAME=&quot;transporter&quot; ) TABLE(NAME=&quot;currency&quot; ) TABLE(NAME=&quot;distance&quot; ) TABLE(NAME=&quot;site&quot; ) COLUMN(NAME=&quot;shipment.shipment_id&quot;) COLUMN(NAME=&quot;shipment.shipment_date&quot;) COLUMN(NAME=&quot;shipment.lorry_no&quot;) COLUMN(NAME=&quot;shipment.tran_code&quot;) COLUMN(NAME=&quot;shipment.stan_code__from&quot;) COLUMN(NAME=&quot;shipment.stan_code__to&quot;) COLUMN(NAME=&quot;shipment.lr_no&quot;) COLUMN(NAME=&quot;shipment.lr_date&quot;) COLUMN(NAME=&quot;shipment.no_of_lr&quot;) COLUMN(NAME=&quot;shipment.bill_no&quot;) COLUMN(NAME=&quot;shipment.bill_date&quot;) COLUMN(NAME=&quot;shipment.call_date&quot;) COLUMN(NAME=&quot;shipment.pick_up_date&quot;) COLUMN(NAME=&quot;shipment.dlv_date&quot;) COLUMN(NAME=&quot;shipment.extra_dlv&quot;) COLUMN(NAME=&quot;shipment.frt_list&quot;) COLUMN(NAME=&quot;shipment.load_type&quot;) COLUMN(NAME=&quot;shipment.curr_code&quot;) COLUMN(NAME=&quot;shipment.exch_rate&quot;) COLUMN(NAME=&quot;shipment.freight_amt&quot;) COLUMN(NAME=&quot;shipment.add_chgs&quot;) COLUMN(NAME=&quot;shipment.total_freight&quot;) COLUMN(NAME=&quot;shipment.confirmed&quot;) COLUMN(NAME=&quot;shipment.conf_date&quot;) COLUMN(NAME=&quot;shipment.chg_date&quot;) COLUMN(NAME=&quot;shipment.chg_user&quot;) COLUMN(NAME=&quot;shipment.chg_term&quot;) COLUMN(NAME=&quot;freight_list.descr&quot;) COLUMN(NAME=&quot;STATION_A.descr&quot;) COLUMN(NAME=&quot;STATION_B.descr&quot;) COLUMN(NAME=&quot;transporter.tran_name&quot;) COLUMN(NAME=&quot;currency.descr&quot;) COLUMN(NAME=&quot;distance.distance&quot;) COLUMN(NAME=&quot;shipment.freight_type&quot;) COLUMN(NAME=&quot;shipment.min_value&quot;) COLUMN(NAME=&quot;shipment.freight_rate&quot;) COLUMN(NAME=&quot;shipment.std_pick_up&quot;) COLUMN(NAME=&quot;shipment.std_transit_time&quot;) COLUMN(NAME=&quot;shipment.transit_type&quot;) COLUMN(NAME=&quot;shipment.recall_frt&quot;) COLUMN(NAME=&quot;shipment.pack_size&quot;) COLUMN(NAME=&quot;shipment.driver_name&quot;) COLUMN(NAME=&quot;shipment.licence_no&quot;) COLUMN(NAME=&quot;shipment.dist_route&quot;) COLUMN(NAME=&quot;shipment.road_permit_no&quot;) COMPUTE(NAME=&quot;&apos; &apos; as ~&quot;gencode_descr~&quot;&quot;) COLUMN(NAME=&quot;freight_list.frt_term&quot;) COLUMN(NAME=&quot;shipment.gross_weight&quot;) COLUMN(NAME=&quot;shipment.tare_weight&quot;) COLUMN(NAME=&quot;shipment.remarks&quot;) COLUMN(NAME=&quot;shipment.conductor_name&quot;) COLUMN(NAME=&quot;shipment.sale_order&quot;) COLUMN(NAME=&quot;shipment.site_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) COMPUTE(NAME=&quot;(shipment.gross_weight - shipment.tare_weight) as ~&quot;net_amt~&quot;&quot;) COLUMN(NAME=&quot;shipment.pro_no&quot;) COLUMN(NAME=&quot;shipment.consignee_name&quot;) COLUMN(NAME=&quot;shipment.addr1&quot;) COLUMN(NAME=&quot;shipment.addr2&quot;) COLUMN(NAME=&quot;shipment.addr3&quot;) COLUMN(NAME=&quot;shipment.city&quot;) COLUMN(NAME=&quot;shipment.pin&quot;) COLUMN(NAME=&quot;shipment.no_art&quot;) COLUMN(NAME=&quot;shipment.no_pallet&quot;) JOIN (LEFT=&quot;shipment.stan_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;distance.stan_code__from&quot; OUTER1 =&quot;shipment.stan_code__from&quot; ) JOIN (LEFT=&quot;shipment.stan_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;distance.stan_code__to&quot; OUTER1 =&quot;shipment.stan_code__to&quot; ) JOIN (LEFT=&quot;shipment.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;shipment.site_code&quot; ) JOIN (LEFT=&quot;shipment.frt_list&quot; OP =&quot;=&quot;RIGHT=&quot;freight_list.frt_list&quot; OUTER1 =&quot;shipment.frt_list&quot; ) JOIN (LEFT=&quot;shipment.stan_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;STATION_A.stan_code&quot; OUTER1 =&quot;shipment.stan_code__from&quot; ) JOIN (LEFT=&quot;shipment.stan_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;STATION_B.stan_code&quot; OUTER1 =&quot;shipment.stan_code__to&quot; ) JOIN (LEFT=&quot;shipment.tran_code&quot; OP =&quot;=&quot;RIGHT=&quot;transporter.tran_code&quot; OUTER1 =&quot;shipment.tran_code&quot; ) JOIN (LEFT=&quot;shipment.curr_code&quot; OP =&quot;=&quot;RIGHT=&quot;currency.curr_code&quot; OUTER1 =&quot;shipment.curr_code&quot; )WHERE( EXP1 =&quot; shipment.shipment_id&quot; OP =&quot;=&quot; EXP2 =&quot;:as_shipment_id &quot; ) ) ARG(NAME = &quot;as_shipment_id&quot; TYPE = string) </retrieve>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>state_code</name>
<dbname>shipment.state_code</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>stan_code</name>
<dbname>shipment.stan_code</dbname>
</table_column>
<table_column>
<type size="5">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>count_code</name>
<dbname>shipment.count_code</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>state_descr</name>
<dbname>state.descr</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>country_descr</name>
<dbname>country.descr</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>station_b_descr</name>
<dbname>station.descr</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>station_c_descr</name>
<dbname>station.descr</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;shipment&quot; ) TABLE(NAME=&quot;freight_list&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;STATION_A&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;STATION_B&quot; ) TABLE(NAME=&quot;transporter&quot; ) TABLE(NAME=&quot;currency&quot; ) TABLE(NAME=&quot;distance&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;state&quot; ) TABLE(NAME=&quot;country&quot; ) TABLE(NAME=&quot;station&quot; ALIAS=&quot;station_c&quot; ) COLUMN(NAME=&quot;shipment.shipment_id&quot;) COLUMN(NAME=&quot;shipment.shipment_date&quot;) COLUMN(NAME=&quot;shipment.lorry_no&quot;) COLUMN(NAME=&quot;shipment.tran_code&quot;) COLUMN(NAME=&quot;shipment.stan_code__from&quot;) COLUMN(NAME=&quot;shipment.stan_code__to&quot;) COLUMN(NAME=&quot;shipment.lr_no&quot;) COLUMN(NAME=&quot;shipment.lr_date&quot;) COLUMN(NAME=&quot;shipment.no_of_lr&quot;) COLUMN(NAME=&quot;shipment.bill_no&quot;) COLUMN(NAME=&quot;shipment.bill_date&quot;) COLUMN(NAME=&quot;shipment.call_date&quot;) COLUMN(NAME=&quot;shipment.pick_up_date&quot;) COLUMN(NAME=&quot;shipment.dlv_date&quot;) COLUMN(NAME=&quot;shipment.extra_dlv&quot;) COLUMN(NAME=&quot;shipment.frt_list&quot;) COLUMN(NAME=&quot;shipment.load_type&quot;) COLUMN(NAME=&quot;shipment.curr_code&quot;) COLUMN(NAME=&quot;shipment.exch_rate&quot;) COLUMN(NAME=&quot;shipment.freight_amt&quot;) COLUMN(NAME=&quot;shipment.add_chgs&quot;) COLUMN(NAME=&quot;shipment.total_freight&quot;) COLUMN(NAME=&quot;shipment.confirmed&quot;) COLUMN(NAME=&quot;shipment.conf_date&quot;) COLUMN(NAME=&quot;shipment.chg_date&quot;) COLUMN(NAME=&quot;shipment.chg_user&quot;) COLUMN(NAME=&quot;shipment.chg_term&quot;) COLUMN(NAME=&quot;freight_list.descr&quot;) COLUMN(NAME=&quot;STATION_B.descr&quot;) COLUMN(NAME=&quot;transporter.tran_name&quot;) COLUMN(NAME=&quot;currency.descr&quot;) COLUMN(NAME=&quot;distance.distance&quot;) COLUMN(NAME=&quot;shipment.freight_type&quot;) COLUMN(NAME=&quot;shipment.min_value&quot;) COLUMN(NAME=&quot;shipment.freight_rate&quot;) COLUMN(NAME=&quot;shipment.std_pick_up&quot;) COLUMN(NAME=&quot;shipment.std_transit_time&quot;) COLUMN(NAME=&quot;shipment.transit_type&quot;) COLUMN(NAME=&quot;shipment.recall_frt&quot;) COLUMN(NAME=&quot;shipment.pack_size&quot;) COLUMN(NAME=&quot;shipment.driver_name&quot;) COLUMN(NAME=&quot;shipment.licence_no&quot;) COLUMN(NAME=&quot;shipment.dist_route&quot;) COLUMN(NAME=&quot;shipment.road_permit_no&quot;) COMPUTE(NAME=&quot;&apos; &apos; as ~&quot;gencode_descr~&quot;&quot;) COLUMN(NAME=&quot;freight_list.frt_term&quot;) COLUMN(NAME=&quot;shipment.gross_weight&quot;) COLUMN(NAME=&quot;shipment.tare_weight&quot;) COLUMN(NAME=&quot;shipment.remarks&quot;) COLUMN(NAME=&quot;shipment.conductor_name&quot;) COLUMN(NAME=&quot;shipment.sale_order&quot;) COLUMN(NAME=&quot;shipment.site_code&quot;) COLUMN(NAME=&quot;site.descr&quot;) COMPUTE(NAME=&quot;(shipment.gross_weight - shipment.tare_weight) as ~&quot;net_amt~&quot;&quot;) COLUMN(NAME=&quot;shipment.pro_no&quot;) COLUMN(NAME=&quot;shipment.consignee_name&quot;) COLUMN(NAME=&quot;shipment.addr1&quot;) COLUMN(NAME=&quot;shipment.addr2&quot;) COLUMN(NAME=&quot;shipment.addr3&quot;) COLUMN(NAME=&quot;shipment.city&quot;) COLUMN(NAME=&quot;shipment.pin&quot;) COLUMN(NAME=&quot;shipment.no_art&quot;) COLUMN(NAME=&quot;shipment.no_pallet&quot;) COLUMN(NAME=&quot;shipment.state_code&quot;) COLUMN(NAME=&quot;shipment.stan_code&quot;) COLUMN(NAME=&quot;shipment.count_code&quot;) COLUMN(NAME=&quot;state.descr&quot;) COLUMN(NAME=&quot;country.descr&quot;) COLUMN(NAME=&quot;STATION_A.descr&quot;) COLUMN(NAME=&quot;station_c.descr&quot;) JOIN (LEFT=&quot;shipment.stan_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;distance.stan_code__from&quot; OUTER1 =&quot;shipment.stan_code__from&quot; ) JOIN (LEFT=&quot;shipment.stan_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;distance.stan_code__to&quot; OUTER1 =&quot;shipment.stan_code__to&quot; ) JOIN (LEFT=&quot;shipment.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; OUTER1 =&quot;shipment.site_code&quot; ) JOIN (LEFT=&quot;shipment.frt_list&quot; OP =&quot;=&quot;RIGHT=&quot;freight_list.frt_list&quot; OUTER1 =&quot;shipment.frt_list&quot; ) JOIN (LEFT=&quot;shipment.stan_code__from&quot; OP =&quot;=&quot;RIGHT=&quot;STATION_A.stan_code&quot; OUTER1 =&quot;shipment.stan_code__from&quot; ) JOIN (LEFT=&quot;shipment.stan_code__to&quot; OP =&quot;=&quot;RIGHT=&quot;STATION_B.stan_code&quot; OUTER1 =&quot;shipment.stan_code__to&quot; ) JOIN (LEFT=&quot;shipment.tran_code&quot; OP =&quot;=&quot;RIGHT=&quot;transporter.tran_code&quot; OUTER1 =&quot;shipment.tran_code&quot; ) JOIN (LEFT=&quot;shipment.curr_code&quot; OP =&quot;=&quot;RIGHT=&quot;currency.curr_code&quot; OUTER1 =&quot;shipment.curr_code&quot; ) JOIN (LEFT=&quot;shipment.state_code&quot; OP =&quot;=&quot;RIGHT=&quot;state.state_code&quot; OUTER1 =&quot;shipment.state_code&quot; ) JOIN (LEFT=&quot;shipment.count_code&quot; OP =&quot;=&quot;RIGHT=&quot;country.count_code&quot; OUTER1 =&quot;shipment.count_code&quot; ) JOIN (LEFT=&quot;shipment.stan_code&quot; OP =&quot;=&quot;RIGHT=&quot;station_c.stan_code&quot; OUTER1 =&quot;shipment.stan_code&quot; )WHERE( EXP1 =&quot; shipment.shipment_id&quot; OP =&quot;=&quot; EXP2 =&quot;:as_shipment_id &quot; ) ) ARG(NAME = &quot;as_shipment_id&quot; TYPE = string) </retrieve>
<update>SHIPMENT</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
......@@ -520,14 +559,14 @@
</TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Basic</text>
<text>Others</text>
<border>2</border>
<color>0</color>
<x>0</x>
<y>1</y>
<height>190</height>
<width>527</width>
<name>basic_1</name>
<x>6</x>
<y>419</y>
<height>391</height>
<width>540</width>
<name>others</name>
<visible>1</visible>
<font>
<face>System</face>
......@@ -544,14 +583,14 @@
</GroupBox>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<text>Basic</text>
<border>2</border>
<color>0</color>
<x>2</x>
<y>419</y>
<height>351</height>
<width>526</width>
<name>others</name>
<x>14</x>
<y>1</y>
<height>190</height>
<width>527</width>
<name>basic_1</name>
<visible>1</visible>
<font>
<face>System</face>
......@@ -571,7 +610,7 @@
<text>Freight Detail</text>
<border>2</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>195</y>
<height>222</height>
<width>527</width>
......@@ -592,12 +631,12 @@
</GroupBox>
<ColumnObject>
<band>Detail</band>
<id>34</id>
<id>33</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>86</x>
<x>100</x>
<y>343</y>
<height>17</height>
<width>68</width>
......@@ -632,7 +671,7 @@
<text>Freight Type:</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>343</y>
<height>16</height>
<width>80</width>
......@@ -656,12 +695,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>36</id>
<id>35</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>263</x>
<x>277</x>
<y>343</y>
<height>17</height>
<width>68</width>
......@@ -697,7 +736,7 @@
<text>Freight Rate :</text>
<border>0</border>
<color>0</color>
<x>174</x>
<x>188</x>
<y>343</y>
<height>17</height>
<width>85</width>
......@@ -721,12 +760,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>35</id>
<id>34</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>440</x>
<x>454</x>
<y>343</y>
<height>17</height>
<width>80</width>
......@@ -762,7 +801,7 @@
<text>Min. Value :</text>
<border>0</border>
<color>0</color>
<x>341</x>
<x>355</x>
<y>343</y>
<height>17</height>
<width>95</width>
......@@ -791,7 +830,7 @@
<tabsequence>170</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>293</y>
<height>17</height>
<width>68</width>
......@@ -826,7 +865,7 @@
<tabsequence>200</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>319</y>
<height>17</height>
<width>68</width>
......@@ -859,12 +898,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>39</id>
<id>38</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>86</x>
<x>100</x>
<y>267</y>
<height>17</height>
<width>68</width>
......@@ -899,7 +938,7 @@
<text>Time In :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>293</y>
<height>16</height>
<width>80</width>
......@@ -927,7 +966,7 @@
<text>Currency :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>319</y>
<height>17</height>
<width>80</width>
......@@ -955,7 +994,7 @@
<text>Transit Type :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>267</y>
<height>17</height>
<width>80</width>
......@@ -983,7 +1022,7 @@
<text>Time Out :</text>
<border>0</border>
<color>0</color>
<x>174</x>
<x>188</x>
<y>293</y>
<height>16</height>
<width>85</width>
......@@ -1012,7 +1051,7 @@
<tabsequence>180</tabsequence>
<border>5</border>
<color>0</color>
<x>263</x>
<x>277</x>
<y>293</y>
<height>17</height>
<width>68</width>
......@@ -1042,12 +1081,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>37</id>
<id>36</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>263</x>
<x>277</x>
<y>267</y>
<height>17</height>
<width>68</width>
......@@ -1083,7 +1122,7 @@
<text>Std Pick Up Time:</text>
<border>0</border>
<color>0</color>
<x>157</x>
<x>171</x>
<y>267</y>
<height>16</height>
<width>102</width>
......@@ -1107,12 +1146,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>32</id>
<id>31</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>159</x>
<x>173</x>
<y>319</y>
<height>17</height>
<width>172</width>
......@@ -1147,7 +1186,7 @@
<text>Extra Delivery :</text>
<border>0</border>
<color>0</color>
<x>341</x>
<x>355</x>
<y>293</y>
<height>17</height>
<width>95</width>
......@@ -1171,12 +1210,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>47</id>
<id>46</id>
<alignment>0</alignment>
<tabsequence>150</tabsequence>
<border>5</border>
<color>255</color>
<x>430</x>
<x>444</x>
<y>214</y>
<height>17</height>
<width>90</width>
......@@ -1211,7 +1250,7 @@
<text>Freight Term :</text>
<border>0</border>
<color>0</color>
<x>340</x>
<x>354</x>
<y>214</y>
<height>16</height>
<width>86</width>
......@@ -1240,7 +1279,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>158</x>
<x>172</x>
<y>214</y>
<height>17</height>
<width>173</width>
......@@ -1276,7 +1315,7 @@
<tabsequence>140</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>214</y>
<height>17</height>
<width>68</width>
......@@ -1313,7 +1352,7 @@
<text>Freight List :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>214</y>
<height>17</height>
<width>80</width>
......@@ -1341,7 +1380,7 @@
<text>Load Type :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>240</y>
<height>17</height>
<width>80</width>
......@@ -1370,7 +1409,7 @@
<tabsequence>160</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>240</y>
<height>17</height>
<width>68</width>
......@@ -1407,7 +1446,7 @@
<text>Std Transit Time:</text>
<border>0</border>
<color>0</color>
<x>335</x>
<x>349</x>
<y>267</y>
<height>16</height>
<width>101</width>
......@@ -1431,12 +1470,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>38</id>
<id>37</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>440</x>
<x>454</x>
<y>267</y>
<height>17</height>
<width>80</width>
......@@ -1473,7 +1512,7 @@
<tabsequence>190</tabsequence>
<border>5</border>
<color>0</color>
<x>440</x>
<x>454</x>
<y>293</y>
<height>17</height>
<width>80</width>
......@@ -1512,7 +1551,7 @@
<tabsequence>210</tabsequence>
<border>5</border>
<color>0</color>
<x>440</x>
<x>454</x>
<y>319</y>
<height>17</height>
<width>80</width>
......@@ -1550,7 +1589,7 @@
<text>Exchange Rate :</text>
<border>0</border>
<color>0</color>
<x>342</x>
<x>356</x>
<y>319</y>
<height>17</height>
<width>95</width>
......@@ -1579,7 +1618,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>430</x>
<x>444</x>
<y>367</y>
<height>17</height>
<width>21</width>
......@@ -1614,7 +1653,7 @@
<text>Confirmed :</text>
<border>0</border>
<color>0</color>
<x>341</x>
<x>355</x>
<y>367</y>
<height>17</height>
<width>85</width>
......@@ -1643,7 +1682,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>457</x>
<x>471</x>
<y>367</y>
<height>17</height>
<width>63</width>
......@@ -1673,12 +1712,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>40</id>
<id>39</id>
<alignment>0</alignment>
<tabsequence>230</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>367</y>
<height>17</height>
<width>68</width>
......@@ -1713,7 +1752,7 @@
<text>Recal Freight</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>367</y>
<height>17</height>
<width>80</width>
......@@ -1742,7 +1781,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>263</x>
<x>277</x>
<y>367</y>
<height>17</height>
<width>68</width>
......@@ -1776,7 +1815,7 @@
<text>Delivery Date :</text>
<border>0</border>
<color>0</color>
<x>175</x>
<x>189</x>
<y>367</y>
<height>17</height>
<width>84</width>
......@@ -1805,7 +1844,7 @@
<tabsequence>220</tabsequence>
<border>5</border>
<color>0</color>
<x>100</x>
<x>114</x>
<y>391</y>
<height>17</height>
<width>68</width>
......@@ -1843,7 +1882,7 @@
<text>Freight Amount:</text>
<border>0</border>
<color>0</color>
<x>4</x>
<x>18</x>
<y>391</y>
<height>16</height>
<width>93</width>
......@@ -1872,7 +1911,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>263</x>
<x>277</x>
<y>391</y>
<height>17</height>
<width>68</width>
......@@ -1909,7 +1948,7 @@
<text>Add Charges :</text>
<border>0</border>
<color>0</color>
<x>175</x>
<x>189</x>
<y>391</y>
<height>17</height>
<width>84</width>
......@@ -1938,7 +1977,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>440</x>
<x>454</x>
<y>391</y>
<height>17</height>
<width>80</width>
......@@ -1975,7 +2014,7 @@
<text>Total Freight :</text>
<border>0</border>
<color>0</color>
<x>341</x>
<x>355</x>
<y>391</y>
<height>17</height>
<width>95</width>
......@@ -1999,12 +2038,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>43</id>
<id>42</id>
<alignment>0</alignment>
<tabsequence>250</tabsequence>
<border>5</border>
<color>0</color>
<x>348</x>
<x>362</x>
<y>439</y>
<height>16</height>
<width>173</width>
......@@ -2040,7 +2079,7 @@
<text>Licence No:</text>
<border>0</border>
<color>0</color>
<x>270</x>
<x>284</x>
<y>439</y>
<height>16</height>
<width>73</width>
......@@ -2068,7 +2107,7 @@
<text>Conductor Name :</text>
<border>0</border>
<color>0</color>
<x>211</x>
<x>225</x>
<y>464</y>
<height>16</height>
<width>133</width>
......@@ -2092,12 +2131,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>51</id>
<id>50</id>
<alignment>0</alignment>
<tabsequence>260</tabsequence>
<border>5</border>
<color>0</color>
<x>348</x>
<x>362</x>
<y>464</y>
<height>16</height>
<width>173</width>
......@@ -2133,7 +2172,7 @@
<text>Net Weight:</text>
<border>0</border>
<color>0</color>
<x>367</x>
<x>381</x>
<y>490</y>
<height>16</height>
<width>68</width>
......@@ -2161,7 +2200,7 @@
<text>Tare Weight:</text>
<border>0</border>
<color>0</color>
<x>189</x>
<x>203</x>
<y>490</y>
<height>16</height>
<width>76</width>
......@@ -2185,12 +2224,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>55</id>
<id>54</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>438</x>
<x>452</x>
<y>489</y>
<height>16</height>
<width>82</width>
......@@ -2225,7 +2264,7 @@
<text>Driver Name</text>
<border>0</border>
<color>0</color>
<x>8</x>
<x>22</x>
<y>439</y>
<height>16</height>
<width>74</width>
......@@ -2249,12 +2288,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>46</id>
<id>45</id>
<alignment>0</alignment>
<tabsequence>400</tabsequence>
<border>0</border>
<color>0</color>
<x>467</x>
<x>481</x>
<y>689</y>
<height>1</height>
<width>1</width>
......@@ -2285,12 +2324,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>42</id>
<id>41</id>
<alignment>0</alignment>
<tabsequence>240</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>439</y>
<height>16</height>
<width>169</width>
......@@ -2322,12 +2361,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>52</id>
<id>51</id>
<alignment>0</alignment>
<tabsequence>270</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>464</y>
<height>16</height>
<width>96</width>
......@@ -2359,12 +2398,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>50</id>
<id>49</id>
<alignment>0</alignment>
<tabsequence>320</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>567</y>
<height>16</height>
<width>434</width>
......@@ -2400,7 +2439,7 @@
<text>Remarks :</text>
<border>0</border>
<color>0</color>
<x>9</x>
<x>23</x>
<y>567</y>
<height>16</height>
<width>73</width>
......@@ -2428,8 +2467,8 @@
<text>Pro No :</text>
<border>0</border>
<color>0</color>
<x>9</x>
<y>592</y>
<x>23</x>
<y>593</y>
<height>16</height>
<width>73</width>
<html>
......@@ -2452,13 +2491,13 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>56</id>
<id>55</id>
<alignment>0</alignment>
<tabsequence>330</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<y>594</y>
<x>100</x>
<y>593</y>
<height>16</height>
<width>434</width>
<format>[general]</format>
......@@ -2492,8 +2531,8 @@
<text>Consignee :</text>
<border>0</border>
<color>0</color>
<x>7</x>
<y>616</y>
<x>21</x>
<y>618</y>
<height>16</height>
<width>75</width>
<html>
......@@ -2516,12 +2555,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>57</id>
<id>56</id>
<alignment>0</alignment>
<tabsequence>340</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>618</y>
<height>16</height>
<width>434</width>
......@@ -2556,7 +2595,7 @@
<text>Address 1 :</text>
<border>0</border>
<color>0</color>
<x>7</x>
<x>21</x>
<y>640</y>
<height>16</height>
<width>75</width>
......@@ -2580,12 +2619,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>58</id>
<id>57</id>
<alignment>0</alignment>
<tabsequence>350</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>640</y>
<height>16</height>
<width>434</width>
......@@ -2620,7 +2659,7 @@
<text>Address 2 :</text>
<border>0</border>
<color>0</color>
<x>7</x>
<x>21</x>
<y>663</y>
<height>16</height>
<width>75</width>
......@@ -2644,12 +2683,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>59</id>
<id>58</id>
<alignment>0</alignment>
<tabsequence>360</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>663</y>
<height>16</height>
<width>434</width>
......@@ -2684,7 +2723,7 @@
<text>Address 3 :</text>
<border>0</border>
<color>0</color>
<x>7</x>
<x>21</x>
<y>686</y>
<height>16</height>
<width>75</width>
......@@ -2708,25 +2747,27 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>60</id>
<alignment>0</alignment>
<tabsequence>370</tabsequence>
<id>47</id>
<alignment>1</alignment>
<tabsequence>280</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<y>686</y>
<x>101</x>
<y>490</y>
<height>16</height>
<width>434</width>
<format>[general]</format>
<width>95</width>
<format>0.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>addr3</name>
<name>gross_weight</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<limit>14</limit>
<case>any</case>
<autoselect>yes</autoselect>
<format>#########0.000</format>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
......@@ -2742,84 +2783,86 @@
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<ColumnObject>
<band>Detail</band>
<id>48</id>
<alignment>1</alignment>
<text>City :</text>
<border>0</border>
<tabsequence>290</tabsequence>
<border>5</border>
<color>0</color>
<x>42</x>
<y>709</y>
<x>282</x>
<y>490</y>
<height>16</height>
<width>40</width>
<width>91</width>
<format>0.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city_t</name>
<name>tare_weight</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#########0.000</format>
<focusrectangle>no</focusrectangle>
<autoselect>yes</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>2</mode>
<color>79741120</color>
<color>16777215</color>
</background>
</TextObject>
<ColumnObject>
</ColumnObject>
<TextObject>
<band>Detail</band>
<id>61</id>
<alignment>0</alignment>
<tabsequence>380</tabsequence>
<border>5</border>
<text>Sales Order :</text>
<border>0</border>
<color>0</color>
<x>82</x>
<y>709</y>
<x>29</x>
<y>464</y>
<height>16</height>
<width>94</width>
<format>[general]</format>
<width>67</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city</name>
<name>sale_order_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>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>79741120</color>
</background>
</ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Pin :</text>
<text>Gross Weight:</text>
<border>0</border>
<color>0</color>
<x>181</x>
<y>709</y>
<x>20</x>
<y>490</y>
<height>16</height>
<width>75</width>
<width>77</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin_t</name>
<name>gross_weight_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
......@@ -2834,228 +2877,60 @@
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<TextObject>
<band>Detail</band>
<id>62</id>
<alignment>0</alignment>
<tabsequence>390</tabsequence>
<border>5</border>
<alignment>1</alignment>
<text>No of Article:</text>
<border>0</border>
<color>0</color>
<x>260</x>
<y>709</y>
<x>20</x>
<y>516</y>
<height>16</height>
<width>83</width>
<format>[general]</format>
<width>77</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin</name>
<name>no_art_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>
<weight>400</weight>
<family>2</family>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
</TextObject>
<TextObject>
<band>Detail</band>
<id>48</id>
<alignment>1</alignment>
<tabsequence>280</tabsequence>
<border>5</border>
<text>Pallet No :</text>
<border>0</border>
<color>0</color>
<x>87</x>
<y>490</y>
<x>203</x>
<y>516</y>
<height>16</height>
<width>95</width>
<format>0.000</format>
<width>76</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gross_weight</name>
<name>no_pallet_t</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#########0.000</format>
<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>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>49</id>
<alignment>1</alignment>
<tabsequence>290</tabsequence>
<border>5</border>
<color>0</color>
<x>268</x>
<y>490</y>
<height>16</height>
<width>91</width>
<format>0.000</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tare_weight</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
<format>#########0.000</format>
<focusrectangle>no</focusrectangle>
<autoselect>yes</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>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>0</alignment>
<text>Sales Order :</text>
<border>0</border>
<color>0</color>
<x>15</x>
<y>464</y>
<height>16</height>
<width>67</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>sale_order_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>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Gross Weight:</text>
<border>0</border>
<color>0</color>
<x>6</x>
<y>490</y>
<height>16</height>
<width>77</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>gross_weight_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>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>No of Article:</text>
<border>0</border>
<color>0</color>
<x>6</x>
<y>516</y>
<height>16</height>
<width>77</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>no_art_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>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Pallet No :</text>
<border>0</border>
<color>0</color>
<x>189</x>
<y>516</y>
<height>16</height>
<width>76</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>no_pallet_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>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<TextObject>
......@@ -3064,7 +2939,7 @@
<text>Dist. Route :</text>
<border>0</border>
<color>0</color>
<x>8</x>
<x>22</x>
<y>542</y>
<height>16</height>
<width>74</width>
......@@ -3088,12 +2963,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>44</id>
<id>43</id>
<alignment>0</alignment>
<tabsequence>300</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>542</y>
<height>16</height>
<width>96</width>
......@@ -3129,7 +3004,7 @@
<text>Road Permit No. :</text>
<border>0</border>
<color>0</color>
<x>235</x>
<x>249</x>
<y>542</y>
<height>16</height>
<width>109</width>
......@@ -3153,12 +3028,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>45</id>
<id>44</id>
<alignment>0</alignment>
<tabsequence>310</tabsequence>
<border>5</border>
<color>0</color>
<x>348</x>
<x>362</x>
<y>542</y>
<height>16</height>
<width>173</width>
......@@ -3190,12 +3065,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>63</id>
<id>62</id>
<alignment>1</alignment>
<tabsequence>410</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>516</y>
<height>16</height>
<width>95</width>
......@@ -3226,12 +3101,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>64</id>
<id>63</id>
<alignment>1</alignment>
<tabsequence>420</tabsequence>
<border>5</border>
<color>0</color>
<x>268</x>
<x>282</x>
<y>516</y>
<height>16</height>
<width>91</width>
......@@ -3266,7 +3141,7 @@
<text>Lr No :</text>
<border>0</border>
<color>0</color>
<x>158</x>
<x>172</x>
<y>143</y>
<height>16</height>
<width>43</width>
......@@ -3290,12 +3165,12 @@
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>33</id>
<id>32</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>86</x>
<x>100</x>
<y>143</y>
<height>17</height>
<width>68</width>
......@@ -3331,7 +3206,7 @@
<text>Distance :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>143</y>
<height>17</height>
<width>80</width>
......@@ -3360,7 +3235,7 @@
<tabsequence>80</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>117</y>
<height>17</height>
<width>68</width>
......@@ -3397,7 +3272,7 @@
<text>Lr Date :</text>
<border>0</border>
<color>0</color>
<x>363</x>
<x>377</x>
<y>143</y>
<height>16</height>
<width>63</width>
......@@ -3425,7 +3300,7 @@
<text>Bill Date :</text>
<border>0</border>
<color>0</color>
<x>340</x>
<x>354</x>
<y>169</y>
<height>17</height>
<width>86</width>
......@@ -3454,7 +3329,7 @@
<tabsequence>110</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>169</y>
<height>17</height>
<width>68</width>
......@@ -3488,12 +3363,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>30</id>
<id>69</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>159</x>
<x>173</x>
<y>117</y>
<height>17</height>
<width>361</width>
......@@ -3529,7 +3404,7 @@
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>430</x>
<x>444</x>
<y>143</y>
<height>17</height>
<width>90</width>
......@@ -3564,7 +3439,7 @@
<tabsequence>130</tabsequence>
<border>5</border>
<color>0</color>
<x>430</x>
<x>444</x>
<y>169</y>
<height>17</height>
<width>90</width>
......@@ -3598,7 +3473,7 @@
<text>Truck No :</text>
<border>0</border>
<color>0</color>
<x>365</x>
<x>379</x>
<y>19</y>
<height>16</height>
<width>61</width>
......@@ -3627,7 +3502,7 @@
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>430</x>
<x>444</x>
<y>19</y>
<height>17</height>
<width>90</width>
......@@ -3665,7 +3540,7 @@
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>157</x>
<x>171</x>
<y>91</y>
<height>17</height>
<width>362</width>
......@@ -3696,12 +3571,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>54</id>
<id>53</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>158</x>
<x>172</x>
<y>43</y>
<height>16</height>
<width>362</width>
......@@ -3737,7 +3612,7 @@
<tabsequence>70</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>91</y>
<height>17</height>
<width>68</width>
......@@ -3770,12 +3645,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>53</id>
<id>52</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>43</y>
<height>16</height>
<width>68</width>
......@@ -3813,7 +3688,7 @@
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>19</y>
<height>17</height>
<width>68</width>
......@@ -3846,12 +3721,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>41</id>
<id>40</id>
<alignment>1</alignment>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>86</x>
<x>100</x>
<y>67</y>
<height>17</height>
<width>68</width>
......@@ -3885,12 +3760,12 @@
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>31</id>
<id>30</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>332</x>
<x>346</x>
<y>67</y>
<height>17</height>
<width>188</width>
......@@ -3925,7 +3800,7 @@
<text>Station To :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>117</y>
<height>17</height>
<width>80</width>
......@@ -3953,7 +3828,7 @@
<text>No. of Lr :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>169</y>
<height>17</height>
<width>80</width>
......@@ -3981,7 +3856,7 @@
<text>Site Code :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>42</y>
<height>16</height>
<width>80</width>
......@@ -4009,7 +3884,7 @@
<text>Station From:</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>91</y>
<height>16</height>
<width>80</width>
......@@ -4037,7 +3912,7 @@
<text>Shipment Id :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>19</y>
<height>17</height>
<width>80</width>
......@@ -4065,7 +3940,7 @@
<text>Pack Size :</text>
<border>0</border>
<color>0</color>
<x>2</x>
<x>16</x>
<y>67</y>
<height>17</height>
<width>80</width>
......@@ -4093,7 +3968,7 @@
<text>Bill No. :</text>
<border>0</border>
<color>0</color>
<x>200</x>
<x>214</x>
<y>169</y>
<height>17</height>
<width>59</width>
......@@ -4122,7 +3997,7 @@
<tabsequence>120</tabsequence>
<border>5</border>
<color>0</color>
<x>263</x>
<x>277</x>
<y>169</y>
<height>17</height>
<width>68</width>
......@@ -4160,7 +4035,7 @@
<tabsequence>90</tabsequence>
<border>5</border>
<color>0</color>
<x>205</x>
<x>219</x>
<y>143</y>
<height>17</height>
<width>155</width>
......@@ -4197,7 +4072,7 @@
<text>Shipment Date:</text>
<border>0</border>
<color>0</color>
<x>167</x>
<x>181</x>
<y>19</y>
<height>16</height>
<width>92</width>
......@@ -4226,7 +4101,7 @@
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>263</x>
<x>277</x>
<y>19</y>
<height>17</height>
<width>68</width>
......@@ -4261,7 +4136,7 @@
<tabsequence>60</tabsequence>
<border>5</border>
<color>0</color>
<x>263</x>
<x>277</x>
<y>67</y>
<height>17</height>
<width>68</width>
......@@ -4298,7 +4173,7 @@
<text>Transporter :</text>
<border>0</border>
<color>0</color>
<x>178</x>
<x>192</x>
<y>67</y>
<height>17</height>
<width>81</width>
......@@ -4320,6 +4195,470 @@
<color>553648127</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>City :</text>
<border>0</border>
<color>0</color>
<x>56</x>
<y>709</y>
<height>16</height>
<width>40</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city_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>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>60</id>
<alignment>0</alignment>
<tabsequence>380</tabsequence>
<border>5</border>
<color>0</color>
<x>100</x>
<y>709</y>
<height>16</height>
<width>89</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>city</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>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Pin :</text>
<border>0</border>
<color>0</color>
<x>371</x>
<y>709</y>
<height>16</height>
<width>75</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin_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>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Station Code :</text>
<border>0</border>
<color>0</color>
<x>14</x>
<y>754</y>
<height>16</height>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stan_code_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>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Country Code :</text>
<border>0</border>
<color>0</color>
<x>11</x>
<y>777</y>
<height>16</height>
<width>86</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>count_code_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>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>State Code :</text>
<border>0</border>
<color>0</color>
<x>19</x>
<y>732</y>
<height>16</height>
<width>78</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_code_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>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>59</id>
<alignment>0</alignment>
<tabsequence>370</tabsequence>
<border>5</border>
<color>0</color>
<x>100</x>
<y>686</y>
<height>16</height>
<width>434</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>addr3</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>
<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>61</id>
<alignment>0</alignment>
<tabsequence>390</tabsequence>
<border>5</border>
<color>0</color>
<x>451</x>
<y>709</y>
<height>16</height>
<width>83</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pin</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>
<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>64</id>
<alignment>0</alignment>
<tabsequence>430</tabsequence>
<border>5</border>
<color>0</color>
<x>101</x>
<y>732</y>
<height>16</height>
<width>88</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_code</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>
<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>65</id>
<alignment>0</alignment>
<tabsequence>440</tabsequence>
<border>5</border>
<color>0</color>
<x>101</x>
<y>754</y>
<height>16</height>
<width>88</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stan_code</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>
<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>66</id>
<alignment>0</alignment>
<tabsequence>450</tabsequence>
<border>5</border>
<color>0</color>
<x>101</x>
<y>777</y>
<height>16</height>
<width>88</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>count_code</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>
<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>67</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>195</x>
<y>732</y>
<height>16</height>
<width>339</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_descr</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>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>70</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>195</x>
<y>754</y>
<height>16</height>
<width>338</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>station_c_descr</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>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>68</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>195</x>
<y>777</y>
<height>16</height>
<width>339</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>country_descr</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>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -41708,5 +41708,257 @@ VALUES (
'BASE',
NULL,
NULL);
////sankara 05-07-13 -------------
alter table shipment add state_code char(5);
alter table shipment add stan_code char(5);
alter table shipment add count_code char(5);
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 (
'INVCOUNTRY',
'Invalid Country',
'Please enter valid Country',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'Base ',
'Base ',
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 (
'INVSTATE ',
'Invalid State',
'Please enter valid State',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'Base ',
'Base ',
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 (
'INVSTATION',
'Invalid Station',
'Please enter valid Station',
'E',
'Y',
NULL,
NULL,
NULL,
fn_sysdate(),
'Base ',
'Base ',
NULL,
NULL);
INSERT INTO pophelp(
field_name ,
mod_name ,
sql_str ,
dw_object ,
msg_title ,
width ,
height ,
chg_date ,
chg_user ,
chg_term ,
dist_opt ,
filter_string ,
sql_input ,
default_col ,
pop_align ,
query_mode ,
page_context ,
pophelp_cols ,
pophelp_source ,
multi_opt ,
help_option )
VALUES (
'STAN_CODE',
'W_SHIPMENT',
'SELECT STAN_CODE,DESCR FROM STATION',
NULL,
'STATION CODE',
0,
0,
fn_sysdate(),
'Base ',
'Base ',
'1',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL);
INSERT INTO pophelp(
field_name ,
mod_name ,
sql_str ,
dw_object ,
msg_title ,
width ,
height ,
chg_date ,
chg_user ,
chg_term ,
dist_opt ,
filter_string ,
sql_input ,
default_col ,
pop_align ,
query_mode ,
page_context ,
pophelp_cols ,
pophelp_source ,
multi_opt ,
help_option )
VALUES (
'COUNT_CODE',
'W_SHIPMENT',
'SELECT COUNT_CODE,DESCR FROM COUNTRY',
NULL,
'COUNTRY CODE',
0,
0,
fn_sysdate(),
'Base ',
'Base ',
'1',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL);
INSERT INTO pophelp(
field_name ,
mod_name ,
sql_str ,
dw_object ,
msg_title ,
width ,
height ,
chg_date ,
chg_user ,
chg_term ,
dist_opt ,
filter_string ,
sql_input ,
default_col ,
pop_align ,
query_mode ,
page_context ,
pophelp_cols ,
pophelp_source ,
multi_opt ,
help_option )
VALUES (
'STATE_CODE',
'W_SHIPMENT',
'SELECT STATE_CODE,DESCR FROM STATE',
NULL,
'STATE CODE',
0,
0,
fn_sysdate(),
'Base ',
'Base ',
'1',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL);
INSERT INTO OBJ_ITEMCHANGE(
obj_name,
form_no ,
field_name ,
mandatory )
VALUES (
'shipment',
'1 ',
'count_code',
NULL);
INSERT INTO OBJ_ITEMCHANGE(
obj_name,
form_no ,
field_name ,
mandatory )
VALUES (
'shipment',
'1 ',
'stan_code',
NULL);
INSERT INTO OBJ_ITEMCHANGE(
obj_name,
form_no ,
field_name ,
mandatory )
VALUES (
'shipment',
'1 ',
'state_code',
NULL);
commit;
$PBExportHeader$d_shipment_brow.srd
release 9;
datawindow(units=1 timer_interval=0 color=79741120 processing=1 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 grid.lines=0 )
header(height=22 color="536870912" )
header(height=21 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=23 color="536870912" )
......@@ -54,7 +54,10 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipme
column=(type=char(10) update=yes updatewhereclause=yes name=pin dbname="shipment.pin" )
column=(type=decimal(0) update=yes updatewhereclause=yes name=no_art dbname="shipment.no_art" )
column=(type=decimal(0) update=yes updatewhereclause=yes name=no_pallet dbname="shipment.no_pallet" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"shipment~" ) COLUMN(NAME=~"shipment.shipment_id~") COLUMN(NAME=~"shipment.shipment_date~") COLUMN(NAME=~"shipment.lorry_no~") COLUMN(NAME=~"shipment.tran_code~") COLUMN(NAME=~"shipment.stan_code__from~") COLUMN(NAME=~"shipment.stan_code__to~") COLUMN(NAME=~"shipment.freight_amt~") COLUMN(NAME=~"shipment.lr_no~") COLUMN(NAME=~"shipment.lr_date~") COLUMN(NAME=~"shipment.no_of_lr~") COLUMN(NAME=~"shipment.bill_no~") COLUMN(NAME=~"shipment.bill_date~") COLUMN(NAME=~"shipment.call_date~") COLUMN(NAME=~"shipment.pick_up_date~") COLUMN(NAME=~"shipment.dlv_date~") COLUMN(NAME=~"shipment.extra_dlv~") COLUMN(NAME=~"shipment.frt_list~") COLUMN(NAME=~"shipment.load_type~") COLUMN(NAME=~"shipment.curr_code~") COLUMN(NAME=~"shipment.exch_rate~") COLUMN(NAME=~"shipment.add_chgs~") COLUMN(NAME=~"shipment.total_freight~") COLUMN(NAME=~"shipment.confirmed~") COLUMN(NAME=~"shipment.conf_date~") COLUMN(NAME=~"shipment.chg_date~") COLUMN(NAME=~"shipment.chg_user~") COLUMN(NAME=~"shipment.chg_term~") COLUMN(NAME=~"shipment.recall_frt~") COLUMN(NAME=~"shipment.pack_size~") COLUMN(NAME=~"shipment.driver_name~") COLUMN(NAME=~"shipment.licence_no~") COMPUTE(NAME=~"' ' ~~~"DESCR~~~"~") COLUMN(NAME=~"shipment.dist_route~") COLUMN(NAME=~"shipment.road_permit_no~") COLUMN(NAME=~"shipment.gross_weight~") COLUMN(NAME=~"shipment.tare_weight~") COLUMN(NAME=~"shipment.remarks~") COLUMN(NAME=~"shipment.conductor_name~") COLUMN(NAME=~"shipment.sale_order~") COLUMN(NAME=~"shipment.site_code~") COLUMN(NAME=~"shipment.pro_no~") COLUMN(NAME=~"shipment.consignee_name~") COLUMN(NAME=~"shipment.addr1~") COLUMN(NAME=~"shipment.addr2~") COLUMN(NAME=~"shipment.addr3~") COLUMN(NAME=~"shipment.city~") COLUMN(NAME=~"shipment.pin~") COLUMN(NAME=~"shipment.no_art~") COLUMN(NAME=~"shipment.no_pallet~")WHERE( EXP1 =~"( shipment.shipment_date~" OP =~">=~" EXP2 =~":as_datefrom )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( shipment.shipment_date~" OP =~"<=~" EXP2 =~":as_dateto )~" ) ) ARG(NAME = ~"as_datefrom~" TYPE = datetime) ARG(NAME = ~"as_dateto~" TYPE = datetime) " update="SHIPMENT" updatewhere=0 updatekeyinplace=no arguments=(("as_datefrom", datetime),("as_dateto", datetime)) )
column=(type=char(5) update=yes updatewhereclause=yes name=state_code dbname="shipment.state_code" )
column=(type=char(5) update=yes updatewhereclause=yes name=stan_code dbname="shipment.stan_code" )
column=(type=char(5) update=yes updatewhereclause=yes name=count_code dbname="shipment.count_code" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"shipment~" ) COLUMN(NAME=~"shipment.shipment_id~") COLUMN(NAME=~"shipment.shipment_date~") COLUMN(NAME=~"shipment.lorry_no~") COLUMN(NAME=~"shipment.tran_code~") COLUMN(NAME=~"shipment.stan_code__from~") COLUMN(NAME=~"shipment.stan_code__to~") COLUMN(NAME=~"shipment.freight_amt~") COLUMN(NAME=~"shipment.lr_no~") COLUMN(NAME=~"shipment.lr_date~") COLUMN(NAME=~"shipment.no_of_lr~") COLUMN(NAME=~"shipment.bill_no~") COLUMN(NAME=~"shipment.bill_date~") COLUMN(NAME=~"shipment.call_date~") COLUMN(NAME=~"shipment.pick_up_date~") COLUMN(NAME=~"shipment.dlv_date~") COLUMN(NAME=~"shipment.extra_dlv~") COLUMN(NAME=~"shipment.frt_list~") COLUMN(NAME=~"shipment.load_type~") COLUMN(NAME=~"shipment.curr_code~") COLUMN(NAME=~"shipment.exch_rate~") COLUMN(NAME=~"shipment.add_chgs~") COLUMN(NAME=~"shipment.total_freight~") COLUMN(NAME=~"shipment.confirmed~") COLUMN(NAME=~"shipment.conf_date~") COLUMN(NAME=~"shipment.chg_date~") COLUMN(NAME=~"shipment.chg_user~") COLUMN(NAME=~"shipment.chg_term~") COLUMN(NAME=~"shipment.recall_frt~") COLUMN(NAME=~"shipment.pack_size~") COLUMN(NAME=~"shipment.driver_name~") COLUMN(NAME=~"shipment.licence_no~") COMPUTE(NAME=~"' ' ~~~"DESCR~~~"~") COLUMN(NAME=~"shipment.dist_route~") COLUMN(NAME=~"shipment.road_permit_no~") COLUMN(NAME=~"shipment.gross_weight~") COLUMN(NAME=~"shipment.tare_weight~") COLUMN(NAME=~"shipment.remarks~") COLUMN(NAME=~"shipment.conductor_name~") COLUMN(NAME=~"shipment.sale_order~") COLUMN(NAME=~"shipment.site_code~") COLUMN(NAME=~"shipment.pro_no~") COLUMN(NAME=~"shipment.consignee_name~") COLUMN(NAME=~"shipment.addr1~") COLUMN(NAME=~"shipment.addr2~") COLUMN(NAME=~"shipment.addr3~") COLUMN(NAME=~"shipment.city~") COLUMN(NAME=~"shipment.pin~") COLUMN(NAME=~"shipment.no_art~") COLUMN(NAME=~"shipment.no_pallet~") COLUMN(NAME=~"shipment.state_code~") COLUMN(NAME=~"shipment.stan_code~") COLUMN(NAME=~"shipment.count_code~")WHERE( EXP1 =~"( shipment.shipment_date~" OP =~">=~" EXP2 =~":as_datefrom )~" LOGIC =~"and~" ) WHERE( EXP1 =~"( shipment.shipment_date~" OP =~"<=~" EXP2 =~":as_dateto )~" ) ) ARG(NAME = ~"as_datefrom~" TYPE = datetime) ARG(NAME = ~"as_dateto~" TYPE = datetime) " update="SHIPMENT" updatewhere=0 updatekeyinplace=no arguments=(("as_datefrom", datetime),("as_dateto", datetime)) )
text(band=header alignment="2" text="Confirmed" border="6" color="0" x="2" y="3" height="16" width="72" html.valueishtml="0" name=confirmed_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=header alignment="2" text="Shipment Id" border="6" color="0" x="76" y="3" height="16" width="86" html.valueishtml="0" name=shipment_id_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=header alignment="2" text="Shipment Date" border="6" color="0" x="164" y="3" height="16" width="87" html.valueishtml="0" name=shipment_date_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" )
......@@ -103,6 +106,9 @@ text(band=header alignment="0" text="City" border="6" color="33554432" x="4423"
text(band=header alignment="0" text="Pin" border="6" color="33554432" x="4478" y="3" height="16" width="48" html.valueishtml="0" name=pin_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="2" background.color="67108864" )
text(band=header alignment="2" text="No of Article" border="6" color="33554432" x="3310" y="3" height="16" width="70" html.valueishtml="0" name=no_art_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="No of Pallet" border="6" color="33554432" x="3382" y="3" height="16" width="91" html.valueishtml="0" name=no_pallet_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="2" background.color="67108864" )
text(band=header alignment="0" text="State Code" border="6" color="0" x="4528" y="3" height="16" width="101" html.valueishtml="0" name=state_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="2" background.color="67108864" )
text(band=header alignment="0" text="Station Code" border="6" color="0" x="4631" y="3" height="16" width="109" html.valueishtml="0" name=stan_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="2" background.color="67108864" )
text(band=header alignment="0" text="Country Code" border="6" color="0" x="4742" y="3" height="16" width="102" html.valueishtml="0" name=count_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="2" background.color="67108864" )
column(band=detail id=23 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="2" height="16" width="72" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=1 edit.case=upper edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="76" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=shipment_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=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=32766 border="5" color="0" x="342" y="2" height="16" width="90" format="[general]" html.valueishtml="0" name=lorry_no visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=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" )
......@@ -151,6 +157,9 @@ column(band=detail id=44 alignment="0" tabsequence=32766 border="5" color="0" x=
column(band=detail id=45 alignment="0" tabsequence=32766 border="5" color="0" x="4335" y="2" height="16" width="86" format="[general]" html.valueishtml="0" name=addr3 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=46 alignment="0" tabsequence=32766 border="5" color="0" x="4423" y="2" height="16" width="53" format="[general]" html.valueishtml="0" name=city 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=47 alignment="0" tabsequence=32766 border="5" color="0" x="4478" y="2" height="16" width="48" format="[general]" html.valueishtml="0" name=pin 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=50 alignment="0" tabsequence=32766 border="5" color="33554432" x="4528" y="2" height="16" width="101" format="[general]" html.valueishtml="0" name=state_code 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=51 alignment="0" tabsequence=32766 border="5" color="33554432" x="4631" y="2" height="16" width="109" format="[general]" html.valueishtml="0" name=stan_code 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=52 alignment="0" tabsequence=32766 border="5" color="33554432" x="4742" y="2" height="16" width="102" format="[general]" html.valueishtml="0" name=count_code 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="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
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 )
......
This source diff could not be displayed because it is too large. You can view the blob instead.
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