Commit 653e8e86 authored by ppatro's avatar ppatro

bug fix on deallocation despacth populated for parcel pick,dist route and no...

bug fix on deallocation despacth populated for parcel pick,dist route and no of article in dock trans head


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96927 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 79ff87ec
......@@ -3112,6 +3112,8 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
String sql = "";
String pickOrder = "";//Added by sumit on 01/APR/13
String confirmed = "";
//Changed By Pragyan 06/DEC/14 for define ref series and transfer status.
String refSer = "";String trfStatus = "N";
int pickLine = 0;//Added by sumit on 01/APR/13
double quantity = 0.0;
PreparedStatement pstmt = null;
......@@ -3123,7 +3125,21 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
try
{
System.out.println(" refId --- ["+refId+"] pick_type ["+pickType+"]");
//Changed By Pragyan 06/DEC/14 to getref series.start
sql = "SELECT REF_SER FROM WAVE_TASK_DET WHERE REF_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, refId);
rs = pstmt.executeQuery();
if( rs.next())
{
refSer = rs.getString("REF_SER");
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
System.out.println(" refId --- ["+refId+"] pick_type ["+pickType+"]refSer["+refSer+"]");
//Changed By Pragyan 06/DEC/14 to getref series.end
if( "PICK".equalsIgnoreCase(task))
{
sql = "SELECT SUM(QUANTITY - CASE WHEN DEALLOC_QTY IS NULL THEN 0 ELSE DEALLOC_QTY END) AS QUANTITY FROM PICK_ORD_DET WHERE PICK_ORDER = ? ";
......@@ -3189,7 +3205,9 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
" AND (QUANTITY - CASE WHEN DEALLOC_QTY IS NULL THEN 0 ELSE DEALLOC_QTY END ) > 0 ";
pstmt = conn.prepareStatement(sql);
sql = " SELECT CONFIRMED FROM PICK_ISS_DET PID, PICK_ISS_HDR PIH, PICK_ORD_DET POD WHERE PID.PICK_ORDER = ? " +
//Changed By Pragyan 06/DEC/14 To get the Transfer Status
//sql = " SELECT CONFIRMED FROM PICK_ISS_DET PID, PICK_ISS_HDR PIH, PICK_ORD_DET POD WHERE PID.PICK_ORDER = ? " +
sql = " SELECT CONFIRMED,TRF_STATUS FROM PICK_ISS_DET PID, PICK_ISS_HDR PIH, PICK_ORD_DET POD WHERE PID.PICK_ORDER = ? " +
" AND PID.LINE_NO__ORD = ? AND PID.PICK_ORDER = POD.PICK_ORDER " +
//Changed By Pragyan 04-JUN-14 To get the confirm flag in proper manner
//" AND PID.LINE_NO__ORD = POD.LINE_NO AND PID.PICK_ORDER = PIH.PICK_ORDER ";
......@@ -3212,6 +3230,9 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
//changed by sankara on 12/06/14 checked null for confirmed.
//confirmed = rs1.getString("CONFIRMED");
confirmed = checkNull(rs1.getString("CONFIRMED"));
//Changed By Pragyan 06/DEC/14 To get the Transfer Status
trfStatus = checkNull(rs1.getString("TRF_STATUS"));
if( "N".equalsIgnoreCase(confirmed) || confirmed.trim().length() == 0 )
{
break;
......@@ -3239,7 +3260,25 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
sql = "UPDATE WAVE_TASK_DET SET STATUS = 'Y' WHERE REF_ID = ? AND STATUS = 'N'";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, refId);
update = pstmt.executeUpdate();
//Changed By pragyan 06/12/14 to check transfer status before updating for parcl pack.start
//update = pstmt.executeUpdate();
System.out.println(" Pick Type ["+pickType+"]Trf Status["+trfStatus+"]refSer["+refSer+"]");
if("M".equalsIgnoreCase(pickType) && "P-PICK".equalsIgnoreCase(refSer))
{
if("Y".equalsIgnoreCase(trfStatus))
{
pstmt.setString(1, refId);
update = pstmt.executeUpdate();
}
}
else
{
pstmt.setString(1, refId);
update = pstmt.executeUpdate();
}
//Changed By pragyan 06/12/14 to check transfer status before updating for parcl pack.end
pstmt.close(); pstmt = null;
if(update > 0 )
{
......
......@@ -72,6 +72,10 @@ public class DockTranPos extends ValidatorEJB implements DockTranPosLocal, DockT
DockTranConf dockconf = new DockTranConf();
/* Connection conn1 = null;
ConnDriver connDriver = null;*/
//Changed By Pragyan on 06/12/14 To calculate no of article on dock tran
double shipperSize = 0.0;
HashMap itmVolumeMap = null;
try
{
/*connDriver = new ConnDriver();
......@@ -179,6 +183,25 @@ public class DockTranPos extends ValidatorEJB implements DockTranPosLocal, DockT
lineNumber++;
System.out.println("confDate:"+confDate);
System.out.println("confDate1:"+(Date)confDate);
//Changed By Pragyan on 06/12/14 To calculate no of article on dock tran.start
System.out.println("noArt from data:"+noArt);
itmVolumeMap = getItemVoumeMap(itemCode,lotNo,conn);
shipperSize = (Double)itmVolumeMap.get("PACK_SIZE");
if(quantity >= shipperSize)
{
noArt = Math.floor(quantity /shipperSize);
}
else
{
noArt = 1;
}
System.out.println("noArt after clc:"+noArt);
//Changed By Pragyan on 06/12/14 To calculate no of article on dock tran.end
if(isRecordexist == false)
{
......@@ -431,6 +454,103 @@ public class DockTranPos extends ValidatorEJB implements DockTranPosLocal, DockT
}
return input;
}
//Changed By Pragyan to get itm data 06/DEC/14.start
private HashMap getItemVoumeMap(String itemCode,String lotNo,Connection con)throws Exception
{
double packSize = 0,itemSize = 0,lotSize = 0;
PreparedStatement pstmt = null;
String sql="";
ResultSet rs = null;
double itmLen = 0,itmWidth = 0,itmHeight = 0,itemWeight = 0,lotLen = 0 ,lotHeight = 0,lotWidth = 0,lotWeight = 0;
HashMap dataVolumeMap = new HashMap();
try {
sql = "SELECT I.LENGTH ITEM_LEN,I.WIDTH ITEM_WID,I.HEIGHT ITEM_HEIGHT,I.GROSS_WEIGHT ITEM_WEIGHT,"
+" L.LENGTH LITEM_LEN,L.WIDTH LITEM_WID,L.HEIGHT LITEM_HEIGHT,L.SHIPPER_SIZE SHIPSIZE,L.GROSS_WEIGHT LOT_WEIGHT FROM"
+" ITEM I,ITEM_LOT_PACKSIZE L"
+" WHERE I.ITEM_CODE = L.ITEM_CODE"
+" AND L.LOT_NO__FROM <= ? AND L.LOT_NO__TO >= ?"
+" AND I.ITEM_CODE = ?";
pstmt = con.prepareStatement(sql);
if(lotNo != null && lotNo.length() > 0)
{
pstmt.setString(1, lotNo);
pstmt.setString(2, lotNo);
}
else
{
pstmt.setString(1, "00");
pstmt.setString(2, "ZZ");
}
pstmt.setString(3, itemCode);
rs = pstmt.executeQuery();
if(rs.next())
{
itmLen = rs.getDouble("ITEM_LEN");
itmWidth = rs.getDouble("ITEM_WID");
itmHeight = rs.getDouble("ITEM_HEIGHT");
itemWeight = rs.getDouble("ITEM_WEIGHT");
lotLen = rs.getDouble("LITEM_LEN");
lotWidth = rs.getDouble("LITEM_WID");
lotHeight = rs.getDouble("LITEM_HEIGHT");
packSize = rs.getDouble("SHIPSIZE");
lotWeight = rs.getDouble("LOT_WEIGHT");
}
//packSize = (lotHeight * lotWidth * lotLen)/(itmLen * itmWidth * itmHeight);
/*itemSize = Math.floor(itmLen * itmWidth * itmHeight);
lotSize = Math.floor((lotHeight * lotWidth * lotLen));*/
itemSize = itmLen * itmWidth * itmHeight;
lotSize = lotHeight * lotWidth * lotLen;
dataVolumeMap.put("PACK_SIZE", packSize);
dataVolumeMap.put("ITEM_SIZE", itemSize);
dataVolumeMap.put("LOT_SIZE", lotSize);
dataVolumeMap.put("ITEM_WEIGHT", itemWeight);
dataVolumeMap.put("PACK_WEIGHT", lotWeight);
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
} catch (Exception e) {
throw e;
}
finally
{
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if(rs != null)
{
rs.close();
rs = null;
}
}
return dataVolumeMap;
}
//Changed By Pragyan to get itm data 06/DEC/14.end
}
......
......@@ -32,7 +32,7 @@
<grid.lines>0</grid.lines>
</BaseDefinition>
<Header>
<height>19</height>
<height>22</height>
<color>536870912</color>
</Header>
<Summary>
......@@ -100,7 +100,7 @@
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>tran_name</name>
<name>transporter_tran_name</name>
<dbname>transporter.tran_name</dbname>
</table_column>
<table_column>
......@@ -282,7 +282,7 @@
<html>
<valueishtml>0</valueishtml>
</html>
<name>distroutedet_exch_rate_t</name>
<name>exch_rate_t</name>
<visible>1</visible>
<font>
<face>Times</face>
......@@ -394,7 +394,7 @@
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_descr_t</name>
<name>descr_t</name>
<visible>1</visible>
<font>
<face>Times</face>
......@@ -450,7 +450,7 @@
<html>
<valueishtml>0</valueishtml>
</html>
<name>state_descr_1_t</name>
<name>descr_1_t</name>
<visible>1</visible>
<font>
<face>Times</face>
......@@ -506,7 +506,7 @@
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_name_t</name>
<name>transporter_tran_name_t</name>
<visible>1</visible>
<font>
<face>Times</face>
......@@ -780,7 +780,7 @@
<border>6</border>
<color>33554432</color>
<x>2043</x>
<y>2</y>
<y>1</y>
<height>16</height>
<width>155</width>
<html>
......@@ -1380,7 +1380,7 @@
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_name</name>
<name>transporter_tran_name</name>
<visible expression="0">1</visible>
<EditStyle style="edit">
<limit>0</limit>
......
......@@ -101,7 +101,7 @@
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>tran_name</name>
<name>transporter_tran_name</name>
<dbname>transporter.tran_name</dbname>
</table_column>
<table_column>
......@@ -735,7 +735,7 @@
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_name</name>
<name>transporter_tran_name</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>40</limit>
......
......@@ -12,7 +12,7 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=dist_ro
column=(type=char(5) update=yes updatewhereclause=yes name=stan_code__to dbname="distroutedet.stan_code__to" )
column=(type=char(40) updatewhereclause=yes name=station_descr_1 dbname="station.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=tran_code dbname="distroutedet.tran_code" )
column=(type=char(40) updatewhereclause=yes name=tran_name dbname="transporter.tran_name" )
column=(type=char(40) updatewhereclause=yes name=transporter_tran_name dbname="transporter.tran_name" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=frt_amt dbname="distroutedet.frt_amt" )
column=(type=char(5) update=yes updatewhereclause=yes name=curr_code dbname="distroutedet.curr_code" )
column=(type=char(40) updatewhereclause=yes name=currency_descr dbname="currency.descr" )
......@@ -34,15 +34,15 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=dist_ro
column=(type=decimal(0) update=yes updatewhereclause=yes name=max_case dbname="distroutedet.max_case" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"distroutedet~" ) TABLE(NAME=~"transporter~" ) TABLE(NAME=~"currency~" ) TABLE(NAME=~"station~" ALIAS=~"station_a~" ) TABLE(NAME=~"station~" ALIAS=~"station_b~" ) TABLE(NAME=~"state~" ALIAS=~"state_a~" ) TABLE(NAME=~"state~" ALIAS=~"state_b~" ) COLUMN(NAME=~"distroutedet.dist_route~") COLUMN(NAME=~"distroutedet.line_no~") COLUMN(NAME=~"distroutedet.stan_code__fr~") COLUMN(NAME=~"station_a.descr~") COLUMN(NAME=~"distroutedet.stan_code__to~") COLUMN(NAME=~"station_b.descr~") COLUMN(NAME=~"distroutedet.tran_code~") COLUMN(NAME=~"transporter.tran_name~") COLUMN(NAME=~"distroutedet.frt_amt~") COLUMN(NAME=~"distroutedet.curr_code~") COLUMN(NAME=~"currency.descr~") COLUMN(NAME=~"distroutedet.tran_time~") COLUMN(NAME=~"distroutedet.exch_rate~") COLUMN(NAME=~"distroutedet.trans_mode~") COLUMN(NAME=~"distroutedet.max_weight~") COLUMN(NAME=~"distroutedet.min_weight~") COLUMN(NAME=~"distroutedet.state_code__to~") COLUMN(NAME=~"state_a.descr~") COLUMN(NAME=~"distroutedet.state_code__fr~") COLUMN(NAME=~"state_b.descr~") COLUMN(NAME=~"distroutedet.loc_type~") COLUMN(NAME=~"distroutedet.pin__fr~") COLUMN(NAME=~"distroutedet.pin__to~") COLUMN(NAME=~"distroutedet.ship_type~") COLUMN(NAME=~"distroutedet.storage_condn~") COLUMN(NAME=~"distroutedet.min_case~") COLUMN(NAME=~"distroutedet.max_case~") JOIN (LEFT=~"distroutedet.stan_code__fr~" OP =~"=~"RIGHT=~"station_a.stan_code~" OUTER1 =~"distroutedet.stan_code__fr~" ) JOIN (LEFT=~"distroutedet.stan_code__to~" OP =~"=~"RIGHT=~"station_b.stan_code~" OUTER1 =~"distroutedet.stan_code__to~" ) JOIN (LEFT=~"distroutedet.state_code__fr~" OP =~"=~"RIGHT=~"state_a.state_code~" OUTER1 =~"distroutedet.state_code__fr~" ) JOIN (LEFT=~"distroutedet.state_code__to~" OP =~"=~"RIGHT=~"state_b.state_code~" OUTER1 =~"distroutedet.state_code__to~" ) JOIN (LEFT=~"distroutedet.tran_code~" OP =~"=~"RIGHT=~"transporter.tran_code~" ) JOIN (LEFT=~"distroutedet.curr_code~" OP =~"=~"RIGHT=~"currency.curr_code~" )WHERE( EXP1 =~"distroutedet.dist_route~" OP =~"=~" EXP2 =~":mdistroute~" ) ) ARG(NAME = ~"mdistroute~" TYPE = string) " update="DISTROUTEDET" updatewhere=0 updatekeyinplace=no arguments=(("mdistroute", string)) )
text(band=header alignment="2" text="Currency" border="6" color="33554432" x="1527" y="2" height="16" width="180" html.valueishtml="0" name=curr_code_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Exch Rate" border="6" color="33554432" x="2200" y="1" height="16" width="256" html.valueishtml="0" name=distroutedet_exch_rate_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Exch Rate" border="6" color="33554432" x="2200" y="1" height="16" width="256" html.valueishtml="0" name=exch_rate_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Max Weight" border="6" color="33554432" x="2458" y="1" height="16" width="256" html.valueishtml="0" name=max_weight_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Min Weight" border="6" color="33554432" x="2716" y="1" height="16" width="256" html.valueishtml="0" name=min_weight_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="State Code To" border="6" color="33554432" x="3113" y="1" height="16" width="159" html.valueishtml="0" name=state_code__to_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="State Descr" border="6" color="33554432" x="3274" y="1" height="16" width="238" html.valueishtml="0" name=state_descr_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="State Descr" border="6" color="33554432" x="3274" y="1" height="16" width="238" html.valueishtml="0" name=descr_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="State Code Fr" border="6" color="33554432" x="3514" y="0" height="16" width="136" html.valueishtml="0" name=state_code__fr_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="State Descr" border="6" color="33554432" x="3652" y="1" height="16" width="238" html.valueishtml="0" name=state_descr_1_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="State Descr" border="6" color="33554432" x="3652" y="1" height="16" width="238" html.valueishtml="0" name=descr_1_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Loc Type" border="6" color="33554432" x="3892" y="1" height="16" width="83" html.valueishtml="0" name=loc_type_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Transporter Name" border="6" color="33554432" x="1100" y="2" height="16" width="218" html.valueishtml="0" name=tran_name_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Transporter Name" border="6" color="33554432" x="1100" y="2" height="16" width="218" html.valueishtml="0" name=transporter_tran_name_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Dist Route" border="6" color="33554432" x="2" y="2" height="16" width="127" html.valueishtml="0" name=dist_route_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Line No" border="6" color="33554432" x="131" y="2" height="16" width="114" html.valueishtml="0" name=line_no_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Station From" border="6" color="33554432" x="247" y="2" height="16" width="154" html.valueishtml="0" name=stan_code__fr_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
......@@ -52,7 +52,7 @@ text(band=header alignment="2" text="Transporter" border="6" color="33554432" x=
text(band=header alignment="2" text="Freight Amt" border="6" color="33554432" x="1320" y="2" height="16" width="205" html.valueishtml="0" name=frt_amt_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Tran Time" border="6" color="33554432" x="1709" y="2" height="16" width="165" html.valueishtml="0" name=tran_time_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Trans Mode" border="6" color="33554432" x="1876" y="2" height="16" width="165" html.valueishtml="0" name=trans_mode_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Currency Descr" border="6" color="33554432" x="2043" y="2" height="16" width="155" html.valueishtml="0" name=currency_descr_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Currency Descr" border="6" color="33554432" x="2043" y="1" height="16" width="155" html.valueishtml="0" name=currency_descr_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Station Descr" border="6" color="33554432" x="700" y="1" height="16" width="238" html.valueishtml="0" name=station_descr_1_t visible="1" font.face="Times" font.height="-10" font.weight="400" font.family="0" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Pin Code From" border="6" color="0" x="3977" y="2" height="15" width="94" html.valueishtml="0" name=pin__fr_t visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Pin Code To" border="6" color="0" x="4073" y="2" height="15" width="78" html.valueishtml="0" name=pin__to_t visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
......@@ -70,7 +70,7 @@ column(band=detail id=12 alignment="1" tabsequence=32766 border="5" color="0" x=
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="0" x="1876" y="1" height="16" width="165" format="[general]" html.valueishtml="0" name=trans_mode visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="1" height="16" width="127" format="[general]" html.valueishtml="0" name=dist_route visible="1~t0" edit.limit=5 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="0" x="403" y="1" height="16" width="153" format="[general]" html.valueishtml="0" name=stationa_descr visible="1~t0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="1100" y="1" height="16" width="218" format="[general]" html.valueishtml="0" name=tran_name visible="1~t0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="1100" y="1" height="16" width="218" format="[general]" html.valueishtml="0" name=transporter_tran_name visible="1~t0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="0" x="2043" y="1" height="16" width="155" format="[general]" html.valueishtml="0" name=currency_descr visible="1~t0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="0" color="0" x="700" y="1" height="16" width="238" format="[general]" html.valueishtml="0" name=station_descr_1 visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="0" color="0" x="2200" y="1" height="16" width="256" format="[general]" html.valueishtml="0" name=exch_rate visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
......
......@@ -12,7 +12,7 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=dist_ro
column=(type=char(5) update=yes updatewhereclause=yes name=stan_code__to dbname="distroutedet.stan_code__to" initial=" " )
column=(type=char(40) updatewhereclause=yes name=station_descr_1 dbname="station.descr" )
column=(type=char(10) update=yes updatewhereclause=yes name=tran_code dbname="distroutedet.tran_code" )
column=(type=char(40) updatewhereclause=yes name=tran_name dbname="transporter.tran_name" )
column=(type=char(40) updatewhereclause=yes name=transporter_tran_name dbname="transporter.tran_name" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=frt_amt dbname="distroutedet.frt_amt" initial="0.0" )
column=(type=char(5) update=yes updatewhereclause=yes name=curr_code dbname="distroutedet.curr_code" )
column=(type=char(40) updatewhereclause=yes name=currency_descr dbname="currency.descr" )
......@@ -33,6 +33,26 @@ table(column=(type=char(5) update=yes updatewhereclause=yes key=yes name=dist_ro
column=(type=decimal(0) update=yes updatewhereclause=yes name=min_case dbname="distroutedet.min_case" initial="0" )
column=(type=decimal(0) update=yes updatewhereclause=yes name=max_case dbname="distroutedet.max_case" initial="0" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"distroutedet~" ) TABLE(NAME=~"transporter~" ) TABLE(NAME=~"currency~" ) TABLE(NAME=~"station~" ALIAS=~"station_a~" ) TABLE(NAME=~"station~" ALIAS=~"station_b~" ) TABLE(NAME=~"state~" ALIAS=~"state_a~" ) TABLE(NAME=~"state~" ALIAS=~"state_b~" ) COLUMN(NAME=~"distroutedet.dist_route~") COLUMN(NAME=~"distroutedet.line_no~") COLUMN(NAME=~"distroutedet.stan_code__fr~") COLUMN(NAME=~"station_a.descr~") COLUMN(NAME=~"distroutedet.stan_code__to~") COLUMN(NAME=~"station_b.descr~") COLUMN(NAME=~"distroutedet.tran_code~") COLUMN(NAME=~"transporter.tran_name~") COLUMN(NAME=~"distroutedet.frt_amt~") COLUMN(NAME=~"distroutedet.curr_code~") COLUMN(NAME=~"currency.descr~") COLUMN(NAME=~"distroutedet.tran_time~") COLUMN(NAME=~"distroutedet.exch_rate~") COLUMN(NAME=~"distroutedet.trans_mode~") COLUMN(NAME=~"distroutedet.min_weight~") COLUMN(NAME=~"distroutedet.max_weight~") COLUMN(NAME=~"distroutedet.state_code__to~") COLUMN(NAME=~"state_a.descr~") COLUMN(NAME=~"distroutedet.state_code__fr~") COLUMN(NAME=~"state_b.descr~") COLUMN(NAME=~"distroutedet.loc_type~") COLUMN(NAME=~"distroutedet.pin__fr~") COLUMN(NAME=~"distroutedet.pin__to~") COLUMN(NAME=~"distroutedet.ship_type~") COLUMN(NAME=~"distroutedet.storage_condn~") COLUMN(NAME=~"distroutedet.min_case~") COLUMN(NAME=~"distroutedet.max_case~") JOIN (LEFT=~"distroutedet.curr_code~" OP =~"=~"RIGHT=~"currency.curr_code~" OUTER1 =~"distroutedet.curr_code~" ) JOIN (LEFT=~"distroutedet.stan_code__fr~" OP =~"=~"RIGHT=~"station_a.stan_code~" OUTER1 =~"distroutedet.stan_code__fr~" ) JOIN (LEFT=~"distroutedet.stan_code__to~" OP =~"=~"RIGHT=~"station_b.stan_code~" OUTER1 =~"distroutedet.stan_code__to~" ) JOIN (LEFT=~"distroutedet.state_code__fr~" OP =~"=~"RIGHT=~"state_a.state_code~" OUTER1 =~"distroutedet.state_code__fr~" ) JOIN (LEFT=~"distroutedet.state_code__to~" OP =~"=~"RIGHT=~"state_b.state_code~" OUTER1 =~"distroutedet.state_code__to~" ) JOIN (LEFT=~"distroutedet.tran_code~" OP =~"=~"RIGHT=~"transporter.tran_code~" )WHERE( EXP1 =~"distroutedet.dist_route~" OP =~"=~" EXP2 =~":mdistroute~" LOGIC =~"and~" ) WHERE( EXP1 =~"distroutedet.line_no~" OP =~"=~" EXP2 =~":mlineno~" ) ) ARG(NAME = ~"mdistroute~" TYPE = string) ARG(NAME = ~"mlineno~" TYPE = number) " update="DISTROUTEDET" updatewhere=0 updatekeyinplace=no arguments=(("mdistroute", string),("mlineno", number)) )
text(band=detail alignment="1" text="State Code From:" border="0" color="0" x="13" y="200" height="16" width="164" html.valueishtml="0" name=state_code__fr_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=19 alignment="0" tabsequence=120 border="5" color="0" x="181" y="200" height="16" width="81" format="[general]" html.valueishtml="0" name=state_code__fr visible="1" edit.limit=5 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="255" x="270" y="200" height="16" width="243" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="State Code To:" border="0" color="0" x="13" y="220" height="16" width="164" html.valueishtml="0" name=state_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=17 alignment="0" tabsequence=130 border="5" color="0" x="181" y="220" height="16" width="81" format="[general]" html.valueishtml="0" name=state_code__to visible="1" edit.limit=5 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="255" x="269" y="220" height="16" width="243" format="[general]" html.valueishtml="0" name=descr_1 visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Pin Code From:" border="0" color="0" x="13" y="240" height="16" width="164" html.valueishtml="0" name=pin__fr_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=22 alignment="0" tabsequence=140 border="5" color="0" x="181" y="240" height="16" width="81" format="[general]" html.valueishtml="0" name=pin__fr visible="1" edit.limit=15 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Pin Code To:" border="0" color="0" x="330" y="240" height="15" width="97" html.valueishtml="0" name=pin__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=23 alignment="0" tabsequence=150 border="5" color="0" x="431" y="240" height="16" width="81" format="[general]" html.valueishtml="0" name=pin__to visible="1" edit.limit=15 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Location Type:" border="0" color="0" x="14" y="260" height="16" width="164" html.valueishtml="0" name=loc_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=21 alignment="0" tabsequence=160 border="5" color="0" x="182" y="260" height="16" width="81" format="[general]" html.valueishtml="0" name=loc_type visible="1" edit.limit=3 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Shipment Type:" border="0" color="0" x="330" y="260" height="16" width="97" html.valueishtml="0" name=ship_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=24 alignment="0" tabsequence=170 border="5" color="0" x="431" y="260" height="16" width="74" format="[general]" html.valueishtml="0" name=ship_type visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Storage Condition:" border="0" color="0" x="13" y="281" height="16" width="164" html.valueishtml="0" name=storage_condn_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=25 alignment="0" tabsequence=180 border="5" color="0" x="181" y="281" height="16" width="82" format="[general]" html.valueishtml="0" name=storage_condn visible="1" edit.limit=3 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Min Case:" border="0" color="0" x="14" y="179" height="16" width="164" html.valueishtml="0" name=min_case_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="Max Case:" border="0" color="0" x="324" y="179" height="16" width="95" html.valueishtml="0" name=max_case_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=27 alignment="1" tabsequence=110 border="5" color="0" x="423" y="179" height="16" width="89" format="[general]" html.valueishtml="0" name=max_case visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=26 alignment="1" tabsequence=100 border="5" color="0" x="182" y="179" height="16" width="98" format="[general]" html.valueishtml="0" name=min_case visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
groupbox(band=detail text="Basic"border="5" color="33554432" x="6" y="0" height="306" width="513" name=gb_1 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=1 alignment="0" tabsequence=32766 border="5" color="255" x="181" y="19" height="16" width="55" format="[general]" html.valueishtml="0" name=dist_route visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Line Number:" border="0" color="33554432" x="327" y="19" height="16" width="144" html.valueishtml="0" name=line_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" )
......@@ -46,7 +66,7 @@ text(band=detail alignment="1" text="Transaction Time:" border="0" color="0" x="
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="255" x="475" y="19" height="16" width="37" format="#,##,##,###.####" html.valueishtml="0" name=line_no visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="255" x="242" y="39" height="16" width="270" format="[general]" html.valueishtml="0" name=stationa_descr visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="255" x="243" y="59" height="16" width="269" format="[general]" html.valueishtml="0" name=station_descr_1 visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="255" x="278" y="79" height="16" width="234" format="[general]" html.valueishtml="0" name=tran_name visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="255" x="278" y="79" height="16" width="234" format="[general]" html.valueishtml="0" name=transporter_tran_name visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=12 alignment="1" tabsequence=50 border="5" color="0" x="455" y="99" height="16" width="57" format="#,##,##,###.####" html.valueishtml="0" name=tran_time visible="1" edit.limit=13 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=13 alignment="1" tabsequence=32766 border="5" color="255" x="414" y="139" height="16" width="98" format="[general]" html.valueishtml="0" name=exch_rate visible="1" edit.limit=15 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="255" x="242" y="119" height="16" width="270" format="[general]" html.valueishtml="0" name=currency_descr visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
......@@ -61,27 +81,7 @@ text(band=detail alignment="1" text="Transporter Mode:" border="0" color="0" x="
text(band=detail alignment="1" text="Min Weight:" border="0" color="0" x="14" y="159" height="16" width="164" html.valueishtml="0" name=min_weight_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="Max Weight:" border="0" color="0" x="313" y="159" height="16" width="107" html.valueishtml="0" name=max_weight_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=16 alignment="1" tabsequence=90 border="5" color="0" x="424" y="159" height="16" width="88" format="[general]" html.valueishtml="0" name=max_weight visible="1" edit.limit=15 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="State Code From:" border="0" color="0" x="13" y="200" height="16" width="164" html.valueishtml="0" name=state_code__fr_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=19 alignment="0" tabsequence=120 border="5" color="0" x="181" y="200" height="16" width="81" format="[general]" html.valueishtml="0" name=state_code__fr visible="1" edit.limit=5 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="255" x="270" y="200" height="16" width="243" format="[general]" html.valueishtml="0" name=descr visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="State Code To:" border="0" color="0" x="13" y="220" height="16" width="164" html.valueishtml="0" name=state_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=17 alignment="0" tabsequence=130 border="5" color="0" x="181" y="220" height="16" width="81" format="[general]" html.valueishtml="0" name=state_code__to visible="1" edit.limit=5 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="255" x="269" y="220" height="16" width="243" format="[general]" html.valueishtml="0" name=descr_1 visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Pin Code From:" border="0" color="0" x="13" y="240" height="16" width="164" html.valueishtml="0" name=pin__fr_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=22 alignment="0" tabsequence=140 border="5" color="0" x="181" y="240" height="16" width="81" format="[general]" html.valueishtml="0" name=pin__fr visible="1" edit.limit=15 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Pin Code To:" border="0" color="0" x="330" y="240" height="15" width="97" html.valueishtml="0" name=pin__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=23 alignment="0" tabsequence=150 border="5" color="0" x="431" y="240" height="16" width="81" format="[general]" html.valueishtml="0" name=pin__to visible="1" edit.limit=15 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Location Type:" border="0" color="0" x="14" y="260" height="16" width="164" html.valueishtml="0" name=loc_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=21 alignment="0" tabsequence=160 border="5" color="0" x="182" y="260" height="16" width="81" format="[general]" html.valueishtml="0" name=loc_type visible="1" edit.limit=3 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Shipment Type:" border="0" color="0" x="330" y="260" height="16" width="97" html.valueishtml="0" name=ship_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=24 alignment="0" tabsequence=170 border="5" color="0" x="431" y="260" height="16" width="74" format="[general]" html.valueishtml="0" name=ship_type visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Storage Condition:" border="0" color="0" x="13" y="281" height="16" width="164" html.valueishtml="0" name=storage_condn_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=25 alignment="0" tabsequence=180 border="5" color="0" x="181" y="281" height="16" width="82" format="[general]" html.valueishtml="0" name=storage_condn visible="1" edit.limit=3 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Min Case:" border="0" color="0" x="14" y="179" height="16" width="164" html.valueishtml="0" name=min_case_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="Max Case:" border="0" color="0" x="324" y="179" height="16" width="95" html.valueishtml="0" name=max_case_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=27 alignment="1" tabsequence=110 border="5" color="0" x="423" y="179" height="16" width="89" format="[general]" html.valueishtml="0" name=max_case visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=15 alignment="1" tabsequence=80 border="5" color="0" x="182" y="159" height="16" width="98" format="[general]" html.valueishtml="0" name=min_weight visible="1" edit.limit=15 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=26 alignment="1" tabsequence=100 border="5" color="0" x="182" y="179" height="16" width="98" format="[general]" html.valueishtml="0" name=min_case visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_distroute_det_edit" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_distroutedet_edit><d_distroutedet_edit_row __pbband=~"detail~"><dist_route>dist_route</dist_route><line_no>line_no</line_no><stan_code__fr>stan_code__fr</stan_code__fr><stan_code__to>stan_code__to</stan_code__to><tran_code>tran_code</tran_code><frt_amt>frt_amt</frt_amt><curr_code>curr_code</curr_code><tran_time>tran_time</tran_time><transporter_tran_name/><currency_descr>currency_descr</currency_descr><stationa_descr>stationa_descr</stationa_descr><station_descr_1/><trans_mode>trans_mode</trans_mode><max_weight>max_weight</max_weight><min_weight>min_weight</min_weight><state_code__to>state_code__to</state_code__to><state_code__fr>state_code__fr</state_code__fr><exch_rate>exch_rate</exch_rate><loc_type>loc_type</loc_type><descr>descr</descr><descr_1>descr_1</descr_1></d_distroutedet_edit_row></d_distroutedet_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