Commit ba82c17d authored by pjain's avatar pjain

changed by sankara on 06-10-14 for site transporter anbd shipment srd


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96536 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8ff25cc0
...@@ -1240,13 +1240,18 @@ public class GenerateLabelsPrc extends ProcessEJB implements GenerateLabelsPrcLo ...@@ -1240,13 +1240,18 @@ public class GenerateLabelsPrc extends ProcessEJB implements GenerateLabelsPrcLo
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
if(rs.next()) if(rs.next())
{ {
System.out.println("from site_transporter");
shipTranCode = rs.getString("TRAN_CODE"); shipTranCode = rs.getString("TRAN_CODE");
serviceCode = rs.getString("SERVICE_CODE"); serviceCode = rs.getString("SERVICE_CODE");
} }
else else
{ {
//changed by sankara on 01/10/14 for site transporter
/*sql = " SELECT S.TRAN_CODE,T.SERVICE_CODE FROM SHIPMENT S , SHIP_DOCS SD, TRANSPORTER T WHERE SD.PTCN = ? " +
" AND S.SHIPMENT_ID = SD.SHIPMENT_ID AND S.TRAN_CODE = T.TRAN_CODE AND T.SITE_CODE = ? ";*/
System.out.println("from transporter");
sql = " SELECT S.TRAN_CODE,T.SERVICE_CODE FROM SHIPMENT S , SHIP_DOCS SD, TRANSPORTER T WHERE SD.PTCN = ? " + sql = " SELECT S.TRAN_CODE,T.SERVICE_CODE FROM SHIPMENT S , SHIP_DOCS SD, TRANSPORTER T WHERE SD.PTCN = ? " +
" AND S.SHIPMENT_ID = SD.SHIPMENT_ID AND S.TRAN_CODE = T.TRAN_CODE AND T.SITE_CODE = ? "; " AND S.SHIPMENT_ID = SD.SHIPMENT_ID AND S.TRAN_CODE = T.TRAN_CODE ";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1, ptcn); pstmt.setString(1, ptcn);
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
......
...@@ -261,14 +261,22 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -261,14 +261,22 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
pstmt.setString(3,transporterFrom); pstmt.setString(3,transporterFrom);
pstmt.setString(4,transporterTo); pstmt.setString(4,transporterTo);
pstmt.setString(5,shipmentType); */ pstmt.setString(5,shipmentType); */
getDataSql = " SELECT DISTINCT D.PTCN, S.SHIPMENT_ID, T.TRAN_NAME FROM SHIP_DOCS D, SHIPMENT S, TRANSPORTER T, CARTON_MASTER C " +
// changed by sankara on 01/10/14 for site transporter
// getDataSql = " SELECT DISTINCT D.PTCN, S.SHIPMENT_ID, T.TRAN_NAME FROM SHIP_DOCS D, SHIPMENT S, TRANSPORTER T, CARTON_MASTER C " +
getDataSql = " SELECT DISTINCT D.PTCN, S.SHIPMENT_ID, T.TRAN_NAME FROM SHIP_DOCS D, SHIPMENT S, TRANSPORTER T, CARTON_MASTER C, SITE_TRANSPORTER ST " +
" WHERE D.SHIPMENT_ID = S.SHIPMENT_ID " + " WHERE D.SHIPMENT_ID = S.SHIPMENT_ID " +
" AND S.TRAN_CODE = T.TRAN_CODE " + " AND S.TRAN_CODE = T.TRAN_CODE " +
" AND D.REF_SER = 'S-DSP' " + " AND D.REF_SER = 'S-DSP' " +
" AND S.CONFIRMED = 'Y' " + " AND S.CONFIRMED = 'Y' " +
" AND S.CONF_DATE BETWEEN ? AND ? " + " AND S.CONF_DATE BETWEEN ? AND ? " +
" AND S.TRAN_CODE BETWEEN ? AND ? " + " AND S.TRAN_CODE BETWEEN ? AND ? " +
" AND T.SHIPMENT_TYPE = ? " + // changed by sankara on 01/10/14 for site transporter start.
// " AND T.SHIPMENT_TYPE = ? " +
" AND CASE WHEN ST.SHIPMENT_TYPE IS NULL THEN T.SHIPMENT_TYPE ELSE ST.SHIPMENT_TYPE END = ? "+
" AND ST.SITE_CODE(+) = S.SITE_CODE "+
" AND ST.TRAN_CODE(+) = S.TRAN_CODE "+
// changed by sankara on 01/10/14 for site transporter end.
" AND D.PTCN = C.PTCN " + " AND D.PTCN = C.PTCN " +
" AND C.SF_IDENTITY IS NULL " + " AND C.SF_IDENTITY IS NULL " +
" AND T.SERVICE_CODE IS NOT NULL " + " AND T.SERVICE_CODE IS NOT NULL " +
...@@ -291,14 +299,21 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -291,14 +299,21 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
" AND C.TRACKING_NO IS NOT NULL " + " AND C.TRACKING_NO IS NOT NULL " +
" AND D.PTCN IS NULL " +*/ " AND D.PTCN IS NULL " +*/
" SELECT DISTINCT '' AS PTCN, S.SHIPMENT_ID, T.TRAN_NAME FROM SHIPMENT_CONTENT P, "+ " SELECT DISTINCT '' AS PTCN, S.SHIPMENT_ID, T.TRAN_NAME FROM SHIPMENT_CONTENT P, "+
" SHIPMENT S, TRANSPORTER T, CARTON_MASTER C " + // changed by sankara on 01/10/14 for site transporter start.
// " SHIPMENT S, TRANSPORTER T, CARTON_MASTER C " +
" SHIPMENT S, TRANSPORTER T, CARTON_MASTER C, SITE_TRANSPORTER ST " +
" WHERE S.SHIPMENT_ID NOT IN (SELECT DISTINCT SHIPMENT_ID FROM SHIP_DOCS)" + " WHERE S.SHIPMENT_ID NOT IN (SELECT DISTINCT SHIPMENT_ID FROM SHIP_DOCS)" +
" AND S.SHIPMENT_ID = P.SHIPMENT_ID " + " AND S.SHIPMENT_ID = P.SHIPMENT_ID " +
" AND S.TRAN_CODE = T.TRAN_CODE " + " AND S.TRAN_CODE = T.TRAN_CODE " +
" AND S.CONFIRMED = 'Y' " + " AND S.CONFIRMED = 'Y' " +
" AND S.CONF_DATE BETWEEN ? AND ? " + " AND S.CONF_DATE BETWEEN ? AND ? " +
" AND S.TRAN_CODE BETWEEN ? AND ? " + " AND S.TRAN_CODE BETWEEN ? AND ? " +
" AND T.SHIPMENT_TYPE = ? " + // changed by sankara on 01/10/14 for site transporter start.
// " AND T.SHIPMENT_TYPE = ? " +
" AND CASE WHEN ST.SHIPMENT_TYPE IS NULL THEN T.SHIPMENT_TYPE ELSE ST.SHIPMENT_TYPE END = ? "+
" AND ST.SITE_CODE(+) = S.SITE_CODE "+
" AND ST.TRAN_CODE(+) = S.TRAN_CODE "+
// changed by sankara on 01/10/14 for site transporter end.
" AND C.SF_IDENTITY IS NULL " + " AND C.SF_IDENTITY IS NULL " +
" AND T.SERVICE_CODE IS NOT NULL " + " AND T.SERVICE_CODE IS NOT NULL " +
" AND C.TRACKING_NO IS NOT NULL " + " AND C.TRACKING_NO IS NOT NULL " +
...@@ -307,7 +322,9 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -307,7 +322,9 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
" AND P.CARTON_NO = C.CARTON_NO " + " AND P.CARTON_NO = C.CARTON_NO " +
" UNION " + //MANUAL SHIPMENT REF SER = "" AND INVENTORY " UNION " + //MANUAL SHIPMENT REF SER = "" AND INVENTORY
" SELECT DISTINCT D.PTCN, S.SHIPMENT_ID, T.TRAN_NAME FROM SHIP_DOCS D, SHIPMENT_CONTENT P, "+ " SELECT DISTINCT D.PTCN, S.SHIPMENT_ID, T.TRAN_NAME FROM SHIP_DOCS D, SHIPMENT_CONTENT P, "+
" SHIPMENT S, TRANSPORTER T, CARTON_MASTER C " + //changed by sankara on 01/10/14 for site transporter
//" SHIPMENT S, TRANSPORTER T, CARTON_MASTER C " +
" SHIPMENT S, TRANSPORTER T, CARTON_MASTER C, SITE_TRANSPORTER ST " +
" WHERE D.SHIPMENT_ID = S.SHIPMENT_ID " + " WHERE D.SHIPMENT_ID = S.SHIPMENT_ID " +
" AND S.SHIPMENT_ID = P.SHIPMENT_ID " + " AND S.SHIPMENT_ID = P.SHIPMENT_ID " +
" AND D.SHIPMENT_ID = P.SHIPMENT_ID " + " AND D.SHIPMENT_ID = P.SHIPMENT_ID " +
...@@ -316,7 +333,12 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -316,7 +333,12 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
" AND S.CONF_DATE BETWEEN ? AND ? " + " AND S.CONF_DATE BETWEEN ? AND ? " +
" AND S.TRAN_CODE BETWEEN ? AND ? " + " AND S.TRAN_CODE BETWEEN ? AND ? " +
" AND D.PTCN IS NULL " + " AND D.PTCN IS NULL " +
" AND T.SHIPMENT_TYPE = ? " + // changed by sankara on 01/10/14 for site transporter start.
// " AND T.SHIPMENT_TYPE = ? " +
" AND CASE WHEN ST.SHIPMENT_TYPE IS NULL THEN T.SHIPMENT_TYPE ELSE ST.SHIPMENT_TYPE END = ? "+
" AND ST.SITE_CODE(+) = S.SITE_CODE "+
" AND ST.TRAN_CODE(+) = S.TRAN_CODE "+
// changed by sankara on 01/10/14 for site transporter end.
" AND C.SF_IDENTITY IS NULL " + " AND C.SF_IDENTITY IS NULL " +
" AND T.SERVICE_CODE IS NOT NULL " + " AND T.SERVICE_CODE IS NOT NULL " +
// changed by sankara on 17/08/13 added join form carton_master for manual ship get data. // changed by sankara on 17/08/13 added join form carton_master for manual ship get data.
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
</print> </print>
</BaseDefinition> </BaseDefinition>
<Header> <Header>
<height>21</height> <height>22</height>
<color>536870912</color> <color>536870912</color>
</Header> </Header>
<Summary> <Summary>
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>0</height> <height>2</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
...@@ -448,7 +448,21 @@ ...@@ -448,7 +448,21 @@
<name>tele1</name> <name>tele1</name>
<dbname>shipment.tele1</dbname> <dbname>shipment.tele1</dbname>
</table_column> </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;) COLUMN(NAME=&quot;shipment.pkg_descr&quot;) COLUMN(NAME=&quot;shipment.unit_value&quot;) COLUMN(NAME=&quot;shipment.item_descr&quot;) COLUMN(NAME=&quot;shipment.tele1&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="20">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>seal_no</name>
<dbname>shipment.seal_no</dbname>
</table_column>
<table_column>
<type size="20">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>data_logger_no</name>
<dbname>shipment.data_logger_no</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;) COLUMN(NAME=&quot;shipment.pkg_descr&quot;) COLUMN(NAME=&quot;shipment.unit_value&quot;) COLUMN(NAME=&quot;shipment.item_descr&quot;) COLUMN(NAME=&quot;shipment.tele1&quot;) COLUMN(NAME=&quot;shipment.seal_no&quot;) COLUMN(NAME=&quot;shipment.data_logger_no&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> <update>SHIPMENT</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -2001,6 +2015,62 @@ ...@@ -2001,6 +2015,62 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Seal Number</text>
<border>6</border>
<color>0</color>
<x>5696</x>
<y>3</y>
<height>16</height>
<width>159</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>seal_no_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>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Data Logger Number</text>
<border>6</border>
<color>0</color>
<x>5859</x>
<y>3</y>
<height>16</height>
<width>159</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>data_logger_no_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> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>23</id> <id>23</id>
...@@ -4004,6 +4074,78 @@ ...@@ -4004,6 +4074,78 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>57</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>5693</x>
<y>2</y>
<height>16</height>
<width>160</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>seal_no</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>58</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>5856</x>
<y>2</y>
<height>16</height>
<width>164</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>data_logger_no</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> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -31,15 +31,15 @@ ...@@ -31,15 +31,15 @@
</print> </print>
</BaseDefinition> </BaseDefinition>
<Summary> <Summary>
<height>3</height> <height>2</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>4</height> <height>1</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>861</height> <height>940</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
...@@ -576,7 +576,21 @@ ...@@ -576,7 +576,21 @@
<name>tele1</name> <name>tele1</name>
<dbname>shipment.tele1</dbname> <dbname>shipment.tele1</dbname>
</table_column> </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;) COLUMN(NAME=&quot;shipment.pkg_descr&quot;) COLUMN(NAME=&quot;shipment.unit_value&quot;) COLUMN(NAME=&quot;shipment.item_descr&quot;) COLUMN(NAME=&quot;shipment.tele1&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> <table_column>
<type size="20">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>seal_no</name>
<dbname>shipment.seal_no</dbname>
</table_column>
<table_column>
<type size="20">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>data_logger_no</name>
<dbname>shipment.data_logger_no</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;) COLUMN(NAME=&quot;shipment.pkg_descr&quot;) COLUMN(NAME=&quot;shipment.unit_value&quot;) COLUMN(NAME=&quot;shipment.item_descr&quot;) COLUMN(NAME=&quot;shipment.tele1&quot;) COLUMN(NAME=&quot;shipment.seal_no&quot;) COLUMN(NAME=&quot;shipment.data_logger_no&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> <update>SHIPMENT</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -592,7 +606,7 @@ ...@@ -592,7 +606,7 @@
<color>0</color> <color>0</color>
<x>3</x> <x>3</x>
<y>419</y> <y>419</y>
<height>427</height> <height>454</height>
<width>551</width> <width>551</width>
<name>others</name> <name>others</name>
<visible>1</visible> <visible>1</visible>
...@@ -4343,42 +4357,6 @@ ...@@ -4343,42 +4357,6 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>66</id>
<alignment>0</alignment>
<tabsequence>490</tabsequence>
<border>5</border>
<color>0</color>
<x>109</x>
<y>824</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> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>67</id> <id>67</id>
...@@ -4415,78 +4393,6 @@ ...@@ -4415,78 +4393,6 @@
<color>79741120</color> <color>79741120</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>70</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>203</x>
<y>801</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>203</x>
<y>824</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>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
...@@ -4945,6 +4851,242 @@ ...@@ -4945,6 +4851,242 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>66</id>
<alignment>0</alignment>
<tabsequence>490</tabsequence>
<border>5</border>
<color>0</color>
<x>109</x>
<y>824</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>70</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>255</color>
<x>203</x>
<y>801</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>202</x>
<y>824</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>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Seal Number:</text>
<border>0</border>
<color>0</color>
<x>16</x>
<y>846</y>
<height>16</height>
<width>89</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>seal_no_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>75</id>
<alignment>0</alignment>
<tabsequence>500</tabsequence>
<border>5</border>
<color>0</color>
<x>109</x>
<y>846</y>
<height>16</height>
<width>131</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>seal_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</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>1</mode>
<color>553648127</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Data Logger Number :</text>
<border>0</border>
<color>0</color>
<x>276</x>
<y>846</y>
<height>16</height>
<width>130</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>data_logger_no_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>76</id>
<alignment>0</alignment>
<tabsequence>510</tabsequence>
<border>5</border>
<color>33554432</color>
<x>410</x>
<y>846</y>
<height>16</height>
<width>131</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>data_logger_no</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</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>1</mode>
<color>553648127</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -49819,7 +49819,10 @@ VALUES ('sordform_tr',1,'contract_number',NULL); ...@@ -49819,7 +49819,10 @@ VALUES ('sordform_tr',1,'contract_number',NULL);
ALTER TABLE SORDFORM ADD REMARKS2 VARCHAR2(100); ALTER TABLE SORDFORM ADD REMARKS2 VARCHAR2(100);
ALTER TABLE SORDFORM ADD REMARKS3 VARCHAR2(100); ALTER TABLE SORDFORM ADD REMARKS3 VARCHAR2(100);
--Ended by Manoj dtd 01/10/2014 to store Ship mark1 and shipmark2 in SOF --Ended by Manoj dtd 01/10/2014 to store Ship mark1 and shipmark2 in SOF
--changed by sankara on 06/10/14 for addee new columns in shipment.
ALTER TABLE SHIPMENT ADD SEAL_NO VARCHAR2(20);
ALTER TABLE SHIPMENT ADD DATA_LOGGER_NO VARCHAR2(20);
COMMIT;
$PBExportHeader$d_shipment_brow.srd $PBExportHeader$d_shipment_brow.srd
release 9; release 9;
datawindow(units=1 timer_interval=0 color=79741120 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 ) datawindow(units=1 timer_interval=0 color=79741120 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 )
header(height=21 color="536870912" ) header(height=22 color="536870912" )
summary(height=0 color="536870912" ) summary(height=0 color="536870912" )
footer(height=0 color="536870912" ) footer(height=2 color="536870912" )
detail(height=25 color="536870912" ) detail(height=25 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipment_id dbname="shipment.shipment_id" ) table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipment_id dbname="shipment.shipment_id" )
column=(type=datetime update=yes updatewhereclause=yes name=shipment_date dbname="shipment.shipment_date" ) column=(type=datetime update=yes updatewhereclause=yes name=shipment_date dbname="shipment.shipment_date" )
...@@ -61,7 +61,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipme ...@@ -61,7 +61,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipme
column=(type=decimal(4) update=yes updatewhereclause=yes name=unit_value dbname="shipment.unit_value" ) column=(type=decimal(4) update=yes updatewhereclause=yes name=unit_value dbname="shipment.unit_value" )
column=(type=char(60) update=yes updatewhereclause=yes name=item_descr dbname="shipment.item_descr" ) column=(type=char(60) update=yes updatewhereclause=yes name=item_descr dbname="shipment.item_descr" )
column=(type=char(15) update=yes updatewhereclause=yes name=tele1 dbname="shipment.tele1" ) column=(type=char(15) update=yes updatewhereclause=yes name=tele1 dbname="shipment.tele1" )
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~") COLUMN(NAME=~"shipment.pkg_descr~") COLUMN(NAME=~"shipment.unit_value~") COLUMN(NAME=~"shipment.item_descr~") COLUMN(NAME=~"shipment.tele1~")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(20) update=yes updatewhereclause=yes name=seal_no dbname="shipment.seal_no" )
column=(type=char(20) update=yes updatewhereclause=yes name=data_logger_no dbname="shipment.data_logger_no" )
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~") COLUMN(NAME=~"shipment.pkg_descr~") COLUMN(NAME=~"shipment.unit_value~") COLUMN(NAME=~"shipment.item_descr~") COLUMN(NAME=~"shipment.tele1~") COLUMN(NAME=~"shipment.seal_no~") COLUMN(NAME=~"shipment.data_logger_no~")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="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 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" ) 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" )
...@@ -117,6 +119,8 @@ text(band=header alignment="2" text="Package Description" border="6" color="0" x ...@@ -117,6 +119,8 @@ text(band=header alignment="2" text="Package Description" border="6" color="0" x
text(band=header alignment="2" text="Unit Value" border="6" color="0" x="5272" y="3" height="16" width="120" html.valueishtml="0" name=unit_value_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="Unit Value" border="6" color="0" x="5272" y="3" height="16" width="120" html.valueishtml="0" name=unit_value_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="Commodity Description" border="6" color="0" x="5394" y="3" height="16" width="298" html.valueishtml="0" name=item_descr_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="Commodity Description" border="6" color="0" x="5394" y="3" height="16" width="298" html.valueishtml="0" name=item_descr_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="Tele1" border="6" color="0" x="4531" y="3" height="16" width="119" html.valueishtml="0" name=tele1_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="Tele1" border="6" color="0" x="4531" y="3" height="16" width="119" html.valueishtml="0" name=tele1_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="Seal Number" border="6" color="0" x="5696" y="3" height="16" width="159" html.valueishtml="0" name=seal_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=header alignment="0" text="Data Logger Number" border="6" color="0" x="5859" y="3" height="16" width="159" html.valueishtml="0" name=data_logger_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
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=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=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" ) 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" )
...@@ -172,6 +176,8 @@ column(band=detail id=53 alignment="0" tabsequence=32766 border="5" color="0" x= ...@@ -172,6 +176,8 @@ column(band=detail id=53 alignment="0" tabsequence=32766 border="5" color="0" x=
column(band=detail id=55 alignment="0" tabsequence=32766 border="5" color="0" x="5394" y="2" height="16" width="298" format="[general]" html.valueishtml="0" name=item_descr 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=55 alignment="0" tabsequence=32766 border="5" color="0" x="5394" y="2" height="16" width="298" format="[general]" html.valueishtml="0" name=item_descr 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=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=56 alignment="0" tabsequence=32766 border="5" color="0" x="4531" y="2" height="16" width="119" format="[general]" html.valueishtml="0" name=tele1 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=56 alignment="0" tabsequence=32766 border="5" color="0" x="4531" y="2" height="16" width="119" format="[general]" html.valueishtml="0" name=tele1 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=57 alignment="0" tabsequence=32766 border="5" color="0" x="5693" y="2" height="16" width="160" format="[general]" html.valueishtml="0" name=seal_no 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=58 alignment="0" tabsequence=32766 border="5" color="0" x="5856" y="2" height="16" width="164" format="[general]" html.valueishtml="0" name=data_logger_no 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" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 ) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
......
$PBExportHeader$d_shipment_edit.srd $PBExportHeader$d_shipment_edit.srd
release 9; 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 ) 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=3 color="536870912" ) summary(height=2 color="536870912" )
footer(height=4 color="536870912" ) footer(height=1 color="536870912" )
detail(height=861 color="536870912" ) detail(height=940 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipment_id dbname="shipment.shipment_id" ) table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipment_id dbname="shipment.shipment_id" )
column=(type=datetime update=yes updatewhereclause=yes name=shipment_date dbname="shipment.shipment_date" ) column=(type=datetime update=yes updatewhereclause=yes name=shipment_date dbname="shipment.shipment_date" )
column=(type=char(30) update=yes updatewhereclause=yes name=lorry_no dbname="shipment.lorry_no" ) column=(type=char(30) update=yes updatewhereclause=yes name=lorry_no dbname="shipment.lorry_no" )
...@@ -78,8 +78,10 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipme ...@@ -78,8 +78,10 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=shipme
column=(type=decimal(4) update=yes updatewhereclause=yes name=unit_value dbname="shipment.unit_value" ) column=(type=decimal(4) update=yes updatewhereclause=yes name=unit_value dbname="shipment.unit_value" )
column=(type=char(60) update=yes updatewhereclause=yes name=item_descr dbname="shipment.item_descr" ) column=(type=char(60) update=yes updatewhereclause=yes name=item_descr dbname="shipment.item_descr" )
column=(type=char(15) update=yes updatewhereclause=yes name=tele1 dbname="shipment.tele1" ) column=(type=char(15) update=yes updatewhereclause=yes name=tele1 dbname="shipment.tele1" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"shipment~" ) TABLE(NAME=~"freight_list~" ) TABLE(NAME=~"station~" ALIAS=~"STATION_A~" ) TABLE(NAME=~"station~" ALIAS=~"STATION_B~" ) TABLE(NAME=~"transporter~" ) TABLE(NAME=~"currency~" ) TABLE(NAME=~"distance~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"state~" ) TABLE(NAME=~"country~" ) TABLE(NAME=~"station~" ALIAS=~"station_c~" ) 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.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.freight_amt~") 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=~"freight_list.descr~") COLUMN(NAME=~"STATION_B.descr~") COLUMN(NAME=~"transporter.tran_name~") COLUMN(NAME=~"currency.descr~") COLUMN(NAME=~"distance.distance~") COLUMN(NAME=~"shipment.freight_type~") COLUMN(NAME=~"shipment.min_value~") COLUMN(NAME=~"shipment.freight_rate~") COLUMN(NAME=~"shipment.std_pick_up~") COLUMN(NAME=~"shipment.std_transit_time~") COLUMN(NAME=~"shipment.transit_type~") COLUMN(NAME=~"shipment.recall_frt~") COLUMN(NAME=~"shipment.pack_size~") COLUMN(NAME=~"shipment.driver_name~") COLUMN(NAME=~"shipment.licence_no~") COLUMN(NAME=~"shipment.dist_route~") COLUMN(NAME=~"shipment.road_permit_no~") COMPUTE(NAME=~"' ' as ~~~"gencode_descr~~~"~") COLUMN(NAME=~"freight_list.frt_term~") 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=~"site.descr~") COMPUTE(NAME=~"(shipment.gross_weight - shipment.tare_weight) as ~~~"net_amt~~~"~") 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~") COLUMN(NAME=~"state.descr~") COLUMN(NAME=~"country.descr~") COLUMN(NAME=~"STATION_A.descr~") COLUMN(NAME=~"station_c.descr~") COLUMN(NAME=~"shipment.pkg_descr~") COLUMN(NAME=~"shipment.unit_value~") COLUMN(NAME=~"shipment.item_descr~") COLUMN(NAME=~"shipment.tele1~") JOIN (LEFT=~"shipment.stan_code__from~" OP =~"=~"RIGHT=~"distance.stan_code__from~" OUTER1 =~"shipment.stan_code__from~" ) JOIN (LEFT=~"shipment.stan_code__to~" OP =~"=~"RIGHT=~"distance.stan_code__to~" OUTER1 =~"shipment.stan_code__to~" ) JOIN (LEFT=~"shipment.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"shipment.site_code~" ) JOIN (LEFT=~"shipment.frt_list~" OP =~"=~"RIGHT=~"freight_list.frt_list~" OUTER1 =~"shipment.frt_list~" ) JOIN (LEFT=~"shipment.stan_code__from~" OP =~"=~"RIGHT=~"STATION_A.stan_code~" OUTER1 =~"shipment.stan_code__from~" ) JOIN (LEFT=~"shipment.stan_code__to~" OP =~"=~"RIGHT=~"STATION_B.stan_code~" OUTER1 =~"shipment.stan_code__to~" ) JOIN (LEFT=~"shipment.tran_code~" OP =~"=~"RIGHT=~"transporter.tran_code~" OUTER1 =~"shipment.tran_code~" ) JOIN (LEFT=~"shipment.curr_code~" OP =~"=~"RIGHT=~"currency.curr_code~" OUTER1 =~"shipment.curr_code~" ) JOIN (LEFT=~"shipment.state_code~" OP =~"=~"RIGHT=~"state.state_code~" OUTER1 =~"shipment.state_code~" ) JOIN (LEFT=~"shipment.count_code~" OP =~"=~"RIGHT=~"country.count_code~" OUTER1 =~"shipment.count_code~" ) JOIN (LEFT=~"shipment.stan_code~" OP =~"=~"RIGHT=~"station_c.stan_code~" OUTER1 =~"shipment.stan_code~" )WHERE( EXP1 =~" shipment.shipment_id~" OP =~"=~" EXP2 =~":as_shipment_id ~" ) ) ARG(NAME = ~"as_shipment_id~" TYPE = string) " update="SHIPMENT" updatewhere=0 updatekeyinplace=no arguments=(("as_shipment_id", string)) ) column=(type=char(20) update=yes updatewhereclause=yes name=seal_no dbname="shipment.seal_no" )
groupbox(band=detail text="Others"border="2" color="0" x="3" y="419" height="427" width="551" name=others visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) column=(type=char(20) update=yes updatewhereclause=yes name=data_logger_no dbname="shipment.data_logger_no" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"shipment~" ) TABLE(NAME=~"freight_list~" ) TABLE(NAME=~"station~" ALIAS=~"STATION_A~" ) TABLE(NAME=~"station~" ALIAS=~"STATION_B~" ) TABLE(NAME=~"transporter~" ) TABLE(NAME=~"currency~" ) TABLE(NAME=~"distance~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"state~" ) TABLE(NAME=~"country~" ) TABLE(NAME=~"station~" ALIAS=~"station_c~" ) 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.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.freight_amt~") 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=~"freight_list.descr~") COLUMN(NAME=~"STATION_B.descr~") COLUMN(NAME=~"transporter.tran_name~") COLUMN(NAME=~"currency.descr~") COLUMN(NAME=~"distance.distance~") COLUMN(NAME=~"shipment.freight_type~") COLUMN(NAME=~"shipment.min_value~") COLUMN(NAME=~"shipment.freight_rate~") COLUMN(NAME=~"shipment.std_pick_up~") COLUMN(NAME=~"shipment.std_transit_time~") COLUMN(NAME=~"shipment.transit_type~") COLUMN(NAME=~"shipment.recall_frt~") COLUMN(NAME=~"shipment.pack_size~") COLUMN(NAME=~"shipment.driver_name~") COLUMN(NAME=~"shipment.licence_no~") COLUMN(NAME=~"shipment.dist_route~") COLUMN(NAME=~"shipment.road_permit_no~") COMPUTE(NAME=~"' ' as ~~~"gencode_descr~~~"~") COLUMN(NAME=~"freight_list.frt_term~") 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=~"site.descr~") COMPUTE(NAME=~"(shipment.gross_weight - shipment.tare_weight) as ~~~"net_amt~~~"~") 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~") COLUMN(NAME=~"state.descr~") COLUMN(NAME=~"country.descr~") COLUMN(NAME=~"STATION_A.descr~") COLUMN(NAME=~"station_c.descr~") COLUMN(NAME=~"shipment.pkg_descr~") COLUMN(NAME=~"shipment.unit_value~") COLUMN(NAME=~"shipment.item_descr~") COLUMN(NAME=~"shipment.tele1~") COLUMN(NAME=~"shipment.seal_no~") COLUMN(NAME=~"shipment.data_logger_no~") JOIN (LEFT=~"shipment.stan_code__from~" OP =~"=~"RIGHT=~"distance.stan_code__from~" OUTER1 =~"shipment.stan_code__from~" ) JOIN (LEFT=~"shipment.stan_code__to~" OP =~"=~"RIGHT=~"distance.stan_code__to~" OUTER1 =~"shipment.stan_code__to~" ) JOIN (LEFT=~"shipment.site_code~" OP =~"=~"RIGHT=~"site.site_code~" OUTER1 =~"shipment.site_code~" ) JOIN (LEFT=~"shipment.frt_list~" OP =~"=~"RIGHT=~"freight_list.frt_list~" OUTER1 =~"shipment.frt_list~" ) JOIN (LEFT=~"shipment.stan_code__from~" OP =~"=~"RIGHT=~"STATION_A.stan_code~" OUTER1 =~"shipment.stan_code__from~" ) JOIN (LEFT=~"shipment.stan_code__to~" OP =~"=~"RIGHT=~"STATION_B.stan_code~" OUTER1 =~"shipment.stan_code__to~" ) JOIN (LEFT=~"shipment.tran_code~" OP =~"=~"RIGHT=~"transporter.tran_code~" OUTER1 =~"shipment.tran_code~" ) JOIN (LEFT=~"shipment.curr_code~" OP =~"=~"RIGHT=~"currency.curr_code~" OUTER1 =~"shipment.curr_code~" ) JOIN (LEFT=~"shipment.state_code~" OP =~"=~"RIGHT=~"state.state_code~" OUTER1 =~"shipment.state_code~" ) JOIN (LEFT=~"shipment.count_code~" OP =~"=~"RIGHT=~"country.count_code~" OUTER1 =~"shipment.count_code~" ) JOIN (LEFT=~"shipment.stan_code~" OP =~"=~"RIGHT=~"station_c.stan_code~" OUTER1 =~"shipment.stan_code~" )WHERE( EXP1 =~" shipment.shipment_id~" OP =~"=~" EXP2 =~":as_shipment_id ~" ) ) ARG(NAME = ~"as_shipment_id~" TYPE = string) " update="SHIPMENT" updatewhere=0 updatekeyinplace=no arguments=(("as_shipment_id", string)) )
groupbox(band=detail text="Others"border="2" color="0" x="3" y="419" height="454" width="551" name=others visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Basic"border="2" color="0" x="22" y="1" height="190" width="527" name=basic_1 visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) groupbox(band=detail text="Basic"border="2" color="0" x="22" y="1" height="190" width="527" name=basic_1 visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Freight Detail"border="2" color="0" x="24" y="195" height="222" width="527" name=freight_1 visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) groupbox(band=detail text="Freight Detail"border="2" color="0" x="24" y="195" height="222" width="527" name=freight_1 visible="1" font.face="System" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=33 alignment="0" tabsequence=32766 border="5" color="255" x="108" y="343" height="17" width="68" format="[general]" html.valueishtml="0" name=freight_type visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.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="79741120" ) column(band=detail id=33 alignment="0" tabsequence=32766 border="5" color="255" x="108" y="343" height="17" width="68" format="[general]" html.valueishtml="0" name=freight_type visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.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="79741120" )
...@@ -195,10 +197,7 @@ text(band=detail alignment="1" text="State Code :" border="0" color="0" x="27" y ...@@ -195,10 +197,7 @@ text(band=detail alignment="1" text="State Code :" border="0" color="0" x="27" y
column(band=detail id=59 alignment="0" tabsequence=420 border="5" color="0" x="108" y="733" height="16" width="434" 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=59 alignment="0" tabsequence=420 border="5" color="0" x="108" y="733" height="16" width="434" 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=64 alignment="0" tabsequence=470 border="5" color="0" x="109" y="779" height="16" width="88" 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=64 alignment="0" tabsequence=470 border="5" color="0" x="109" y="779" height="16" width="88" 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=65 alignment="0" tabsequence=480 border="5" color="0" x="109" y="801" height="16" width="88" 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=65 alignment="0" tabsequence=480 border="5" color="0" x="109" y="801" height="16" width="88" 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=66 alignment="0" tabsequence=490 border="5" color="0" x="109" y="824" height="16" width="88" 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" )
column(band=detail id=67 alignment="0" tabsequence=32766 border="5" color="255" x="203" y="779" height="16" width="339" format="[general]" html.valueishtml="0" name=state_descr 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="79741120" ) column(band=detail id=67 alignment="0" tabsequence=32766 border="5" color="255" x="203" y="779" height="16" width="339" format="[general]" html.valueishtml="0" name=state_descr 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="79741120" )
column(band=detail id=70 alignment="0" tabsequence=32766 border="5" color="255" x="203" y="801" height="16" width="338" format="[general]" html.valueishtml="0" name=station_c_descr 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="79741120" )
column(band=detail id=68 alignment="0" tabsequence=32766 border="5" color="255" x="203" y="824" height="16" width="339" format="[general]" html.valueishtml="0" name=country_descr 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="79741120" )
text(band=detail alignment="1" text="No of Article:" border="0" color="0" x="28" y="563" height="16" width="77" 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="79741120" ) text(band=detail alignment="1" text="No of Article:" border="0" color="0" x="28" y="563" height="16" width="77" 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="79741120" )
column(band=detail id=63 alignment="1" tabsequence=330 border="5" color="0" x="290" y="563" height="16" width="91" format="[general]" html.valueishtml="0" name=no_pallet 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=63 alignment="1" tabsequence=330 border="5" color="0" x="290" y="563" height="16" width="91" format="[general]" html.valueishtml="0" name=no_pallet 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=72 alignment="1" tabsequence=340 border="5" color="0" x="463" y="563" height="16" width="79" format="########0.00" html.valueishtml="0" name=unit_value 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=72 alignment="1" tabsequence=340 border="5" color="0" x="463" y="563" height="16" width="79" format="########0.00" html.valueishtml="0" name=unit_value 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" )
...@@ -213,6 +212,13 @@ text(band=detail alignment="1" text="Pin :" border="0" color="0" x="379" y="756" ...@@ -213,6 +212,13 @@ text(band=detail alignment="1" text="Pin :" border="0" color="0" x="379" y="756"
column(band=detail id=61 alignment="0" tabsequence=460 border="5" color="0" x="459" y="756" height="16" width="83" 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=61 alignment="0" tabsequence=460 border="5" color="0" x="459" y="756" height="16" width="83" 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=74 alignment="0" tabsequence=450 border="5" color="0" x="277" y="756" height="16" width="97" format="[general]" html.valueishtml="0" name=tele1 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=74 alignment="0" tabsequence=450 border="5" color="0" x="277" y="756" height="16" width="97" format="[general]" html.valueishtml="0" name=tele1 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" )
text(band=detail alignment="1" text="TELE1:" border="0" color="0" x="202" y="756" height="16" width="70" html.valueishtml="0" name=tele1_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=detail alignment="1" text="TELE1:" border="0" color="0" x="202" y="756" height="16" width="70" html.valueishtml="0" name=tele1_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=66 alignment="0" tabsequence=490 border="5" color="0" x="109" y="824" height="16" width="88" 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" )
column(band=detail id=70 alignment="0" tabsequence=32766 border="5" color="255" x="203" y="801" height="16" width="338" format="[general]" html.valueishtml="0" name=station_c_descr 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="79741120" )
column(band=detail id=68 alignment="0" tabsequence=32766 border="5" color="255" x="202" y="824" height="16" width="339" format="[general]" html.valueishtml="0" name=country_descr 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="79741120" )
text(band=detail alignment="1" text="Seal Number:" border="0" color="0" x="16" y="846" height="16" width="89" html.valueishtml="0" name=seal_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=75 alignment="0" tabsequence=500 border="5" color="0" x="109" y="846" height="16" width="131" format="[general]" html.valueishtml="0" name=seal_no visible="1" edit.limit=20 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="1" background.color="553648127" )
text(band=detail alignment="1" text="Data Logger Number :" border="0" color="0" x="276" y="846" height="16" width="130" html.valueishtml="0" name=data_logger_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=76 alignment="0" tabsequence=510 border="5" color="33554432" x="410" y="846" height="16" width="131" format="[general]" html.valueishtml="0" name=data_logger_no visible="1" edit.limit=20 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="1" background.color="553648127" )
htmltable(border="1" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="asf" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_shipment_edit><d_shipment_edit_row __pbband=~"detail~"><shipment_id>shipment_id</shipment_id><shipment_date>shipment_date</shipment_date><lorry_no>lorry_no</lorry_no><tran_code>tran_code</tran_code><stan_code__from>stan_code__from</stan_code__from><stan_code__to>stan_code__to</stan_code__to><lr_no>lr_no</lr_no><lr_date>lr_date</lr_date><no_of_lr>no_of_lr</no_of_lr><bill_no>bill_no</bill_no><bill_date>bill_date</bill_date><call_date>call_date</call_date><pick_up_date>pick_up_date</pick_up_date><dlv_date>dlv_date</dlv_date><extra_dlv>extra_dlv</extra_dlv><frt_list>frt_list</frt_list><load_type>load_type</load_type><curr_code>curr_code</curr_code><exch_rate>exch_rate</exch_rate><freight_amt>freight_amt</freight_amt><add_chgs>add_chgs</add_chgs><total_freight>total_freight</total_freight><confirmed>confirmed</confirmed><conf_date>conf_date</conf_date><chg_date>chg_date</chg_date><chg_user>chg_user</chg_user><chg_term>chg_term</chg_term><freight_list_descr>freight_list_descr</freight_list_descr><station_a_descr>station_a_descr</station_a_descr><station_b_descr>station_b_descr</station_b_descr><transporter_tran_name>transporter_tran_name</transporter_tran_name><currency_descr>currency_descr</currency_descr><distance>distance</distance><freight_type>freight_type</freight_type><min_value>min_value</min_value><freight_rate>freight_rate</freight_rate><std_pick_up>std_pick_up</std_pick_up><std_transit_time>std_transit_time</std_transit_time><transit_type>transit_type</transit_type><recall_frt>recall_frt</recall_frt><pack_size>pack_size</pack_size><driver_name>driver_name</driver_name><licence_no>licence_no</licence_no><dist_route>dist_route</dist_route><road_permit_no>road_permit_no</road_permit_no><gencodes_descr/><frt_term>frt_term</frt_term><gross_weight>gross_weight</gross_weight><tare_weight>tare_weight</tare_weight><remarks>remarks</remarks><conductor_name>conductor_name</conductor_name><sale_order>sale_order</sale_order><site_code>site_code</site_code><descr>site_descr</descr><net_amt>net_amt</net_amt></d_shipment_edit_row></d_shipment_edit>")) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="asf" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_shipment_edit><d_shipment_edit_row __pbband=~"detail~"><shipment_id>shipment_id</shipment_id><shipment_date>shipment_date</shipment_date><lorry_no>lorry_no</lorry_no><tran_code>tran_code</tran_code><stan_code__from>stan_code__from</stan_code__from><stan_code__to>stan_code__to</stan_code__to><lr_no>lr_no</lr_no><lr_date>lr_date</lr_date><no_of_lr>no_of_lr</no_of_lr><bill_no>bill_no</bill_no><bill_date>bill_date</bill_date><call_date>call_date</call_date><pick_up_date>pick_up_date</pick_up_date><dlv_date>dlv_date</dlv_date><extra_dlv>extra_dlv</extra_dlv><frt_list>frt_list</frt_list><load_type>load_type</load_type><curr_code>curr_code</curr_code><exch_rate>exch_rate</exch_rate><freight_amt>freight_amt</freight_amt><add_chgs>add_chgs</add_chgs><total_freight>total_freight</total_freight><confirmed>confirmed</confirmed><conf_date>conf_date</conf_date><chg_date>chg_date</chg_date><chg_user>chg_user</chg_user><chg_term>chg_term</chg_term><freight_list_descr>freight_list_descr</freight_list_descr><station_a_descr>station_a_descr</station_a_descr><station_b_descr>station_b_descr</station_b_descr><transporter_tran_name>transporter_tran_name</transporter_tran_name><currency_descr>currency_descr</currency_descr><distance>distance</distance><freight_type>freight_type</freight_type><min_value>min_value</min_value><freight_rate>freight_rate</freight_rate><std_pick_up>std_pick_up</std_pick_up><std_transit_time>std_transit_time</std_transit_time><transit_type>transit_type</transit_type><recall_frt>recall_frt</recall_frt><pack_size>pack_size</pack_size><driver_name>driver_name</driver_name><licence_no>licence_no</licence_no><dist_route>dist_route</dist_route><road_permit_no>road_permit_no</road_permit_no><gencodes_descr/><frt_term>frt_term</frt_term><gross_weight>gross_weight</gross_weight><tare_weight>tare_weight</tare_weight><remarks>remarks</remarks><conductor_name>conductor_name</conductor_name><sale_order>sale_order</sale_order><site_code>site_code</site_code><descr>site_descr</descr><net_amt>net_amt</net_amt></d_shipment_edit_row></d_shipment_edit>"))
......
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