Commit c9f26629 authored by ppatro's avatar ppatro

close out and details taken from wave line items


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93513 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d49f9bd2
...@@ -285,6 +285,8 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -285,6 +285,8 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
" 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 " +
" AND D.PTCN IS NULL " + " AND D.PTCN IS NULL " +
// changed by sankara on 17/08/13 added join form carton_master for manual ship get data.
" 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 " + " SHIPMENT S, TRANSPORTER T, CARTON_MASTER C " +
...@@ -299,6 +301,8 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -299,6 +301,8 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
" AND T.SHIPMENT_TYPE = ? " + " AND T.SHIPMENT_TYPE = ? " +
" 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.
" AND P.CARTON_NO = C.CARTON_NO " +
" AND C.TRACKING_NO IS NOT NULL " ; " AND C.TRACKING_NO IS NOT NULL " ;
System.out.println("**************getDataSql="+getDataSql); System.out.println("**************getDataSql="+getDataSql);
...@@ -432,6 +436,10 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -432,6 +436,10 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
String shipmentId = ""; String shipmentId = "";
String transporterName = ""; String transporterName = "";
String tranId = ""; String tranId = "";
// changed by sankara on 17/08/13 define variables for manual ship start..
ResultSet rs1 = null;
String refser = "";
// changed by sankara on 17/08/13 define variables for manual ship end..
HashMap carrMap = new HashMap(); HashMap carrMap = new HashMap();
// Set shipmentSet = new java.util.TreeSet(); // Set shipmentSet = new java.util.TreeSet();
Set shipmentSet = new java.util.HashSet(); Set shipmentSet = new java.util.HashSet();
...@@ -548,13 +556,20 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -548,13 +556,20 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
// changed by sankara on 29-06-13 add join and sf_idenity // changed by sankara on 29-06-13 add join and sf_idenity
//sql = " SELECT CARRIER_FRIENDLYNAME FROM CARTON_MASTER WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?) ORDER BY CARRIER_FRIENDLYNAME "; //sql = " SELECT CARRIER_FRIENDLYNAME FROM CARTON_MASTER WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?) ORDER BY CARRIER_FRIENDLYNAME ";
//sql = " SELECT CARRIER_FRIENDLYNAME FROM CARTON_MASTER WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?) AND SF_IDENTITY IS NULL ORDER BY CARRIER_FRIENDLYNAME "; //sql = " SELECT CARRIER_FRIENDLYNAME FROM CARTON_MASTER WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?) AND SF_IDENTITY IS NULL ORDER BY CARRIER_FRIENDLYNAME ";
sql = " SELECT DISTINCT C.CARRIER_FRIENDLYNAME,T.SHIPMENT_TYPE FROM CARTON_MASTER C,SHIP_DOCS S,SHIPMENT P,TRANSPORTER T WHERE" + /*sql = " SELECT DISTINCT C.CARRIER_FRIENDLYNAME,T.SHIPMENT_TYPE FROM CARTON_MASTER C,SHIP_DOCS S,SHIPMENT P,TRANSPORTER T WHERE" +
// Changed by sankara on 16-08-13 ptcn is not available in manual shipment case... // Changed by sankara on 16-08-13 ptcn is not available in manual shipment case...
// " S.PTCN =C.PTCN AND S.SHIPMENT_ID = ? AND S.SHIPMENT_ID = P.SHIPMENT_ID AND P.TRAN_CODE = T.TRAN_CODE AND C.CARRIER_FRIENDLYNAME" + // " S.PTCN =C.PTCN AND S.SHIPMENT_ID = ? AND S.SHIPMENT_ID = P.SHIPMENT_ID AND P.TRAN_CODE = T.TRAN_CODE AND C.CARRIER_FRIENDLYNAME" +
" S.SHIPMENT_ID = ? AND S.SHIPMENT_ID = P.SHIPMENT_ID AND P.TRAN_CODE = T.TRAN_CODE AND C.CARRIER_FRIENDLYNAME " + " S.SHIPMENT_ID = ? AND S.SHIPMENT_ID = P.SHIPMENT_ID AND P.TRAN_CODE = T.TRAN_CODE AND C.CARRIER_FRIENDLYNAME " +
" IS NOT NULL ORDER BY C.CARRIER_FRIENDLYNAME "; " IS NOT NULL ORDER BY C.CARRIER_FRIENDLYNAME ";*/
sql = " SELECT DISTINCT C.CARRIER_FRIENDLYNAME, T.SHIPMENT_TYPE FROM CARTON_MASTER C, SHIPMENT_CONTENT N, SHIPMENT P, TRANSPORTER T " +
" WHERE P.SHIPMENT_ID = ? AND P.SHIPMENT_ID = N.SHIPMENT_ID AND P.TRAN_CODE = T.TRAN_CODE AND C.CARRIER_FRIENDLYNAME IS NOT NULL " +
" UNION " +
" SELECT DISTINCT C.CARRIER_FRIENDLYNAME, T.SHIPMENT_TYPE FROM CARTON_MASTER C, SHIP_DOCS S, SHIPMENT P, TRANSPORTER T WHERE S.PTCN = C.PTCN " +
" AND S.SHIPMENT_ID = ? AND S.SHIPMENT_ID = P.SHIPMENT_ID AND S.REF_SER = 'S-DSP' AND P.TRAN_CODE = T.TRAN_CODE AND C.CARRIER_FRIENDLYNAME IS NOT NULL " ;
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1,shipmentId); pstmt.setString(1,shipmentId);
pstmt.setString(2,shipmentId);
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
if( rs.next()) if( rs.next())
{ {
...@@ -579,11 +594,46 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -579,11 +594,46 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
} }
// changed by sankara on 29-06-13 add join and sf_idenity // changed by sankara on 29-06-13 add join and sf_idenity
// updateSql= " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?)"; // updateSql= " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?)";
updateSql= " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?) AND SF_IDENTITY IS NULL"; // changed by sankara on 17/08/13 for updation of sf_idenity in manual ship case start..
pstmt = conn.prepareStatement(updateSql); /* // changed by sankara on 29-06-13 add join and sf_idenity
// updateSql= " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?)";
updateSql= " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?) AND SF_IDENTITY IS NULL";
pstmt = conn.prepareStatement(updateSql); */
sql = " SELECT PTCN, REF_SER FROM SHIP_DOCS D, SHIPMENT S WHERE S.SHIPMENT_ID = D.SHIPMENT_ID AND D.SHIPMENT_ID = ? " ;
pstmt1 = conn.prepareStatement(sql);
pstmt1.setString(1,shipmentId);
rs1 = pstmt1.executeQuery();
if( rs1.next())
{
ptcn = rs1.getString("PTCN");
refser = rs1.getString("REF_SER");
}
if(pstmt1 != null)
{
pstmt1.close();
pstmt1 = null;
}
if(rs1 != null)
{
rs1.close();
rs1 = null;
}
if( ptcn !=null && refser.trim().equalsIgnoreCase("S-DSP") )
{
updateSql= " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?) AND SF_IDENTITY IS NULL " ;
pstmt = conn.prepareStatement(updateSql);
}
else
{
updateSql = " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE CARTON_NO IN ( SELECT CARTON_NO FROM SHIPMENT_CONTENT C, SHIP_DOCS D, SHIPMENT S " +
" WHERE S.SHIPMENT_ID = D.SHIPMENT_ID OR D.SHIPMENT_ID IS NULL AND S.SHIPMENT_ID = C.SHIPMENT_ID " +
" AND S.SHIPMENT_ID = ? ) AND SF_IDENTITY IS NULL " ;
pstmt = conn.prepareStatement(updateSql);
}
// changed by sankara on 17//08/13 for updation of sf_idenity in manual ship case end..
if(carrMap != null && carrMap.size() > 0) if(carrMap != null && carrMap.size() > 0)
{ {
...@@ -751,6 +801,14 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -751,6 +801,14 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
pstmt1.close(); pstmt1.close();
pstmt1 = null; pstmt1 = null;
} }
//changed by sankara on 17/08/13 for closing result set start..
if(rs1 != null)
{
rs1.close();
rs1 = null;
}
//changed by sankara on 17/08/13 for closing result set end..
conn.close(); conn.close();
} }
conn = null; conn = null;
......
...@@ -2793,13 +2793,16 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -2793,13 +2793,16 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
prevsLocCode = ""; prevsLocCode = "";
//Changed By Pragyan 23/02/13 To store ship type . //Changed By Pragyan 23/02/13 To store ship type .
String shipType = ""; String shipType = "";
String shipTypeLine = "A";
int countLoc = 0; int countLoc = 0;
//Changed By Pragyan 12/03/13 to check hazrard meterial //Changed By Pragyan 12/03/13 to check hazrard meterial
String hazardous = ""; String hazardous = "";
double perItemVolume = 0.0,caseVolume = 0.0,caseWeight = 0.0,itemWeight = 0.0,caseCount = 0.0,packSize = 0d;; double perItemVolume = 0.0,caseVolume = 0.0,caseWeight = 0.0,itemWeight = 0.0,caseCount = 0.0,packSize = 0d;;
//Changed By Pragyan 12/03/13 to define the veriable once.start //Changed By Pragyan 12/03/13 to define the veriable once.start
HashMap sordLineMAp = new HashMap(); HashMap sordLineMAp = new HashMap();
//Changed By Pragyan 17/08/13
HashMap sordWaveTypeMap = new HashMap();
ArrayList waveTypeList = null;
try try
{ {
...@@ -2991,6 +2994,12 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -2991,6 +2994,12 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
System.out.println("isParcelPickChecked["+childNode.getFirstChild().getNodeValue()+"]"); System.out.println("isParcelPickChecked["+childNode.getFirstChild().getNodeValue()+"]");
isParcelPickChecked = childNode.getFirstChild().getNodeValue(); isParcelPickChecked = childNode.getFirstChild().getNodeValue();
} }
if (childNodeName.equals("ship_type"))
{
System.out.println("shipTypeLine["+childNode.getFirstChild().getNodeValue()+"]");
shipTypeLine = childNode.getFirstChild().getNodeValue();
}
//Changed By Pragyan 31/12/12 To get Parcel Pack Flag.end //Changed By Pragyan 31/12/12 To get Parcel Pack Flag.end
//Changed by sumit on 14/12/12 adding validation incase of manualy allocating saleorder and modifiying qty_allow start. //Changed by sumit on 14/12/12 adding validation incase of manualy allocating saleorder and modifiying qty_allow start.
if (childNodeName.equals("manual_allocqty")) if (childNodeName.equals("manual_allocqty"))
...@@ -3038,15 +3047,18 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -3038,15 +3047,18 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
} }
String lineNoSord = lineNo; String lineNoSord = lineNo;
lineNoSord = " " + lineNoSord; lineNoSord = " " + lineNoSord;
lineNoSord = lineNoSord.substring(lineNoSord.length()-3); lineNoSord = lineNoSord.substring(lineNoSord.length()-3);
//Changed By Pragyan 26-02-13 To validate inputs combination given by the user.start //Changed By Pragyan 26-02-13 To validate inputs combination given by the user.start
System.out.println("isMasterPickChecked["+isMasterPickChecked+"]isParcelPickChecked ["+isParcelPickChecked+"]shipType["+shipType+"]"); System.out.println("isMasterPickChecked["+isMasterPickChecked+"]isParcelPickChecked ["+isParcelPickChecked+"]shipType["+shipType+"]shipTypeLine["+shipTypeLine+"]");
if(("Y".equalsIgnoreCase(isMasterPickChecked)) && !("A".equalsIgnoreCase(shipType) || "M".equalsIgnoreCase(shipType))) /*if(("Y".equalsIgnoreCase(isMasterPickChecked)) && !("A".equalsIgnoreCase(shipType) || "M".equalsIgnoreCase(shipType)))
{ {
return errString = itmDBAccessEJB.getErrorString("","ATLSTSELMP","","",conn); return errString = itmDBAccessEJB.getErrorString("","ATLSTSELMP","","",conn);
} }
...@@ -3057,8 +3069,65 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -3057,8 +3069,65 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
else if(!("Y".equalsIgnoreCase(isParcelPickChecked) || "Y".equalsIgnoreCase(isMasterPickChecked) ) && ("M".equalsIgnoreCase(shipType) || "P".equalsIgnoreCase(shipType))) else if(!("Y".equalsIgnoreCase(isParcelPickChecked) || "Y".equalsIgnoreCase(isMasterPickChecked) ) && ("M".equalsIgnoreCase(shipType) || "P".equalsIgnoreCase(shipType)))
{ {
return errString = itmDBAccessEJB.getErrorString("","ATLSTSENAN","","",conn); return errString = itmDBAccessEJB.getErrorString("","ATLSTSENAN","","",conn);
}*/
System.out.println("Sales Order date ["+sordWaveTypeMap.toString()+"]");
if(sordWaveTypeMap.containsKey(saleOrder))
{
System.out.println("Always ["+sordWaveTypeMap.toString()+"]");
waveTypeList = (ArrayList)sordWaveTypeMap.get(saleOrder);
System.out.println("Always ["+waveTypeList.toString()+"]");
if(!isActivePickChecked.equalsIgnoreCase((String)waveTypeList.get(1)))
{
return errString = getError(saleOrder +" Line No "+ lineNoSord+ " (Active Pick Selection)", "VTINVSELAP", conn);
}
else if(!isMasterPickChecked.equalsIgnoreCase((String)waveTypeList.get(2)))
{
return errString = getError(saleOrder +" Line No "+ lineNoSord+ " (Master Pick Selection)", "VTINVSELAP", conn);
}
else if(!isParcelPickChecked.equalsIgnoreCase((String)waveTypeList.get(3)))
{
return errString = getError(saleOrder +" Line No "+ lineNoSord+ " (Parcel Pack Selection)", "VTINVSELAP", conn);
}
else if(!isStockToDockChecked.equalsIgnoreCase((String)waveTypeList.get(4)))
{
return errString = getError(saleOrder +" Line No "+ lineNoSord+ " (Stock To Dock Selection)", "VTINVSELAP", conn);
}
else if(!shipTypeLine.equalsIgnoreCase((String)waveTypeList.get(5)))
{
return errString = getError(saleOrder +" Line No "+ lineNoSord+ " (Shipment Type Selection)", "VTINVSELAP", conn);
}
}
else
{
waveTypeList = new ArrayList();
waveTypeList.add(lineNoSord);
waveTypeList.add(isActivePickChecked);
waveTypeList.add(isMasterPickChecked);
waveTypeList.add(isParcelPickChecked);
waveTypeList.add(isStockToDockChecked);
waveTypeList.add(shipTypeLine);
sordWaveTypeMap.put(saleOrder, waveTypeList);
System.out.println("Always ["+sordWaveTypeMap.toString()+"]");
} }
//Changed By Pragyan 26-02-13 To validate inputs combination given by the user.End //Changed By Pragyan 26-02-13 To validate inputs combination given by the user.End
if(("Y".equalsIgnoreCase(isMasterPickChecked)) && !("A".equalsIgnoreCase(shipTypeLine) || "M".equalsIgnoreCase(shipTypeLine)))
{
//return errString = itmDBAccessEJB.getErrorString("","ATLSTSELMP","","",conn);
return errString = getError(saleOrder +" Line No "+ lineNoSord , "ATLSTSELMP", conn);
}
else if(("Y".equalsIgnoreCase(isParcelPickChecked)) && !("A".equalsIgnoreCase(shipTypeLine) || "P".equalsIgnoreCase(shipTypeLine)))
{
//return errString = itmDBAccessEJB.getErrorString("","ATLSTSELPP","","",conn);
return errString = getError(saleOrder +" Line No "+ lineNoSord , "ATLSTSELPP", conn);
}
else if(!("Y".equalsIgnoreCase(isParcelPickChecked) || "Y".equalsIgnoreCase(isMasterPickChecked) ) && ("M".equalsIgnoreCase(shipTypeLine) || "P".equalsIgnoreCase(shipTypeLine)))
{
//return errString = itmDBAccessEJB.getErrorString("","ATLSTSENAN","","",conn);
return errString = getError(saleOrder +" Line No "+ lineNoSord , "ATLSTSENAN", conn);
}
//Changed by Rohan on 15-04-13 for if active pick is N then allocate only case quantity.start //Changed by Rohan on 15-04-13 for if active pick is N then allocate only case quantity.start
packSize = (Double)getItemVoumeMap(itemCode,"",conn).get("PACK_SIZE"); packSize = (Double)getItemVoumeMap(itemCode,"",conn).get("PACK_SIZE");
...@@ -3614,7 +3683,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -3614,7 +3683,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
chkMap.put("expLev", expLev); chkMap.put("expLev", expLev);
chkMap.put("allocFlag", allocFlag); chkMap.put("allocFlag", allocFlag);
chkMap.put("mannual_alloc_qty", manualAllocqty); chkMap.put("mannual_alloc_qty", manualAllocqty);
chkMap.put("ship_type", shipTypeLine);
tmpLineList.add(chkMap); tmpLineList.add(chkMap);
sordLineMAp.put(saleOrder + ":" + "itemCode", tmpLineList); sordLineMAp.put(saleOrder + ":" + "itemCode", tmpLineList);
...@@ -3891,6 +3960,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -3891,6 +3960,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
tempMap.put("master_pack", isMasterPickChecked); tempMap.put("master_pack", isMasterPickChecked);
tempMap.put("active_pick", isActivePickChecked); tempMap.put("active_pick", isActivePickChecked);
tempMap.put("parcel_pick", isParcelPickChecked); tempMap.put("parcel_pick", isParcelPickChecked);
tempMap.put("ship_type", shipTypeLine);
tempMap.put("exp_lev", expLev); tempMap.put("exp_lev", expLev);
tempMap.put("pack_size", packSize); tempMap.put("pack_size", packSize);
tempMap.put("sord_lineNo", lineNo); tempMap.put("sord_lineNo", lineNo);
...@@ -4017,7 +4087,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -4017,7 +4087,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
{ {
System.out.println("Going For ItemCode Quantity"+ itemCode+"saleOrder"+saleOrder+"]lineNo["+lineNo+"]allocQty["+allocQty+"]"); System.out.println("Going For ItemCode Quantity"+ itemCode+"saleOrder"+saleOrder+"]lineNo["+lineNo+"]allocQty["+allocQty+"]");
errString = sorderAllocate(headerDom, detailDom, saleOrder, lineNo, itemCode, allocQty,singleLot,pendingQuantity,isActivePickChecked,isMasterPickChecked,isStockToDockChecked,isParcelPickChecked, expLev, xtraParams, conn ); //errString = sorderAllocate(headerDom, detailDom, saleOrder, lineNo, itemCode, allocQty,singleLot,pendingQuantity,isActivePickChecked,isMasterPickChecked,isStockToDockChecked,isParcelPickChecked, expLev, xtraParams, conn );
errString = sorderAllocate(headerDom, detailDom, saleOrder, lineNo, itemCode, allocQty,singleLot,pendingQuantity,isActivePickChecked,isMasterPickChecked,isStockToDockChecked,isParcelPickChecked, expLev, xtraParams,shipTypeLine, conn );
if (errString != null && errString.trim().length() > 0) if (errString != null && errString.trim().length() > 0)
{ {
System.out.println("errString :"+errString); System.out.println("errString :"+errString);
...@@ -4278,7 +4349,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -4278,7 +4349,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//Changed by sumit sarkar on 23/08/11 [ WM1ESUN006 ] to make compitable to call updateWaveTask() method. //Changed by sumit sarkar on 23/08/11 [ WM1ESUN006 ] to make compitable to call updateWaveTask() method.
//private String sorderAllocate(String saleOrder, String lineNo, String itemCode, double allocQty, String expLev) throws ITMException //private String sorderAllocate(String saleOrder, String lineNo, String itemCode, double allocQty, String expLev) throws ITMException
private String sorderAllocate(Document headerDom, Document detailDom , String saleOrder, String lineNo, String itemCode, double allocQty,String singleLot,double pendingQty,String isActivePickChecked,String isMasterPackChecked,String isStockToDockChecked,String isParcelPickChecked, String expLev, String xtraParams, Connection conn ) throws ITMException private String sorderAllocate(Document headerDom, Document detailDom , String saleOrder, String lineNo, String itemCode, double allocQty,String singleLot,double pendingQty,String isActivePickChecked,String isMasterPackChecked,String isStockToDockChecked,String isParcelPickChecked, String expLev, String xtraParams,String shipTypeLine, Connection conn ) throws ITMException
{ {
System.out.println("updateSOrder calling ....**************..........["+saleOrder+"]"); System.out.println("updateSOrder calling ....**************..........["+saleOrder+"]");
String getDataSql = null; String getDataSql = null;
...@@ -5374,6 +5445,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -5374,6 +5445,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
tempMap.put("sugg_loc", locCodeTo); tempMap.put("sugg_loc", locCodeTo);
//Changed By Pragyan 12/03/13 To add hazardous //Changed By Pragyan 12/03/13 To add hazardous
tempMap.put("hazard", hazardous); tempMap.put("hazard", hazardous);
tempMap.put("ship_type", shipTypeLine);
tempList.add(tempMap); tempList.add(tempMap);
//saleOrderWiseMap.put(saleOrder,tempList); //saleOrderWiseMap.put(saleOrder,tempList);
//saleOrderWiseMap.put(saleOrder+":"+locType,tempList); //saleOrderWiseMap.put(saleOrder+":"+locType,tempList);
...@@ -5787,7 +5859,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -5787,7 +5859,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
frmDomMasterPackAllow = checkNull(genericUtility.getColumnValue("master_pack_allow",headerDom)); frmDomMasterPackAllow = checkNull(genericUtility.getColumnValue("master_pack_allow",headerDom));
frmDomParcelPackAllow = checkNull(genericUtility.getColumnValue("parcelpack_allow",headerDom)); frmDomParcelPackAllow = checkNull(genericUtility.getColumnValue("parcelpack_allow",headerDom));
/*
if("Y".equalsIgnoreCase(frmDomMasterPackAllow)) if("Y".equalsIgnoreCase(frmDomMasterPackAllow))
{ {
pickType = "M"; pickType = "M";
...@@ -5795,7 +5867,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -5795,7 +5867,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
else if("Y".equalsIgnoreCase(frmDomParcelPackAllow)) else if("Y".equalsIgnoreCase(frmDomParcelPackAllow))
{ {
pickType = "P"; pickType = "P";
} }*/
System.out.println("Current Size of The Map.......................["+saleOrderWiseMap.size()+"]"); System.out.println("Current Size of The Map.......................["+saleOrderWiseMap.size()+"]");
...@@ -5803,7 +5875,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -5803,7 +5875,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
{ {
//Changed by sumit on 25/08/12 for setting space for waveId //Changed by sumit on 25/08/12 for setting space for waveId
waveId = ""; waveId = "";
pickType = "";
waveId = getTranId("w_wave_task", conn); waveId = getTranId("w_wave_task", conn);
insertSql="INSERT INTO WAVE_TASK(WAVE_ID,TRAN_DATE, " + insertSql="INSERT INTO WAVE_TASK(WAVE_ID,TRAN_DATE, " +
"SALE_ORDER__FROM, SALE_ORDER__TO, CUST_CODE__FROM, " + "SALE_ORDER__FROM, SALE_ORDER__TO, CUST_CODE__FROM, " +
...@@ -6148,9 +6220,14 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -6148,9 +6220,14 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
for(int i =0;i<itemMapListLen;i++) for(int i =0;i<itemMapListLen;i++)
{ {
HashMap loadMap = (HashMap)itemMapList.get(i); HashMap loadMap = (HashMap)itemMapList.get(i);
frmDomMasterPackAllow = (String)loadMap.get("master_pack");
frmDomParcelPackAllow = (String)loadMap.get("parcel_pick");
shipType = (String)loadMap.get("ship_type");
locCode = (String)loadMap.get("sugg_loc"); locCode = (String)loadMap.get("sugg_loc");
hazardous = (String)loadMap.get("hazard"); hazardous = (String)loadMap.get("hazard");
//if(sLocCode.equalsIgnoreCase(locCode)) //if(sLocCode.equalsIgnoreCase(locCode))
System.out.println("Current Master Flag"+frmDomMasterPackAllow+"]Current Parcel Flag"+frmDomMasterPackAllow+"]Current Ship Flag["+shipType+"]");
if(sLocCode.equalsIgnoreCase(locCode) && !"Y".equalsIgnoreCase(hazardous)) if(sLocCode.equalsIgnoreCase(locCode) && !"Y".equalsIgnoreCase(hazardous))
{ {
System.out.println("Found Location ["+locCode+"]index["+i+"]"); System.out.println("Found Location ["+locCode+"]index["+i+"]");
...@@ -6172,6 +6249,17 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -6172,6 +6249,17 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//HashMap transPorterInfoMap = getTransporterInfoMap(saleOrder,totalWeightCurrentshipment,totCaseCount,pickType,shipType, conn); //HashMap transPorterInfoMap = getTransporterInfoMap(saleOrder,totalWeightCurrentshipment,totCaseCount,pickType,shipType, conn);
//Changed By Pragyan recursive call if master pack yes and as well as parcel pick yes.start //Changed By Pragyan recursive call if master pack yes and as well as parcel pick yes.start
if("Y".equalsIgnoreCase(frmDomMasterPackAllow))
{
pickType = "M";
}
else if("Y".equalsIgnoreCase(frmDomParcelPackAllow))
{
pickType = "P";
}
System.out.println("Final Master Flag"+frmDomMasterPackAllow+"]Final Parcel Flag"+frmDomMasterPackAllow+"]Final Ship Flag["+shipType+"]pickType["+pickType+"]");
HashMap transPorterInfoMap = null; HashMap transPorterInfoMap = null;
if("Y".equalsIgnoreCase(frmDomMasterPackAllow) && "Y".equalsIgnoreCase(frmDomParcelPackAllow)) if("Y".equalsIgnoreCase(frmDomMasterPackAllow) && "Y".equalsIgnoreCase(frmDomParcelPackAllow))
{ {
...@@ -6784,7 +6872,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -6784,7 +6872,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//if(totCaseVolume > 0 && totCaseWeight > 0 && totCaseWeight <= masterPackWeightPerOrder && "Y".equalsIgnoreCase(mPackAllow)) //if(totCaseVolume > 0 && totCaseWeight > 0 && totCaseWeight <= masterPackWeightPerOrder && "Y".equalsIgnoreCase(mPackAllow))
//if(totCaseVolume > 0 && totCaseWeight > 0 && "Y".equalsIgnoreCase(mPackAllow) && (totCaseWeight <= masterPackWeightPerOrder || "Y".equalsIgnoreCase(masterPackOverride))) //if(totCaseVolume > 0 && totCaseWeight > 0 && "Y".equalsIgnoreCase(mPackAllow) && (totCaseWeight <= masterPackWeightPerOrder || "Y".equalsIgnoreCase(masterPackOverride)))
//if(totCaseVolume > 0 && totCaseWeight > 0 && "Y".equalsIgnoreCase(mPackAllow) && (totCaseWeight <= masterPackWeightPerOrder || "M".equalsIgnoreCase(dbShipType))) //if(totCaseVolume > 0 && totCaseWeight > 0 && "Y".equalsIgnoreCase(mPackAllow) && (totCaseWeight <= masterPackWeightPerOrder || "M".equalsIgnoreCase(dbShipType)))
if(totCaseVolume > 0 && totCaseWeight > 0 && (totCaseWeight <= masterPackWeightPerOrder || "M".equalsIgnoreCase(shipType))) if(totCaseVolume > 0 && totCaseWeight > 0 && (totCaseWeight <= masterPackWeightPerOrder || "M".equalsIgnoreCase(dbShipType)))
{ {
masterPackAllow = true; masterPackAllow = true;
if(totCaseWeight < masterPackWeight) if(totCaseWeight < masterPackWeight)
......
...@@ -3605,7 +3605,7 @@ ...@@ -3605,7 +3605,7 @@
<tabsequence>300</tabsequence> <tabsequence>300</tabsequence>
<border>5</border> <border>5</border>
<color>0</color> <color>0</color>
<x>101</x> <x>103</x>
<y>537</y> <y>537</y>
<height>16</height> <height>16</height>
<width>95</width> <width>95</width>
...@@ -4654,16 +4654,18 @@ ...@@ -4654,16 +4654,18 @@
<y>563</y> <y>563</y>
<height>16</height> <height>16</height>
<width>95</width> <width>95</width>
<format>[general]</format> <format>0.000</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>no_art</name> <name>no_art</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>6</limit>
<case>any</case> <case>any</case>
<autoselect>yes</autoselect> <format>#########0.000</format>
<focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
......
...@@ -172,7 +172,7 @@ column(band=detail id=48 alignment="1" tabsequence=310 border="5" color="0" x="2 ...@@ -172,7 +172,7 @@ column(band=detail id=48 alignment="1" tabsequence=310 border="5" color="0" x="2
column(band=detail id=54 alignment="1" tabsequence=32766 border="5" color="255" x="452" y="536" height="16" width="82" format="[general]" html.valueishtml="0" name=net_amt 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="1" background.color="553648127" ) column(band=detail id=54 alignment="1" tabsequence=32766 border="5" color="255" x="452" y="536" height="16" width="82" format="[general]" html.valueishtml="0" name=net_amt 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="1" background.color="553648127" )
text(band=detail alignment="0" text="Net Weight:" border="0" color="0" x="381" y="537" height="16" width="68" html.valueishtml="0" name=net_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="0" text="Net Weight:" border="0" color="0" x="381" y="537" height="16" width="68" html.valueishtml="0" name=net_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="Tare Weight:" border="0" color="0" x="203" y="537" height="16" width="76" html.valueishtml="0" name=tare_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="1" background.color="553648127" ) text(band=detail alignment="1" text="Tare Weight:" border="0" color="0" x="203" y="537" height="16" width="76" html.valueishtml="0" name=tare_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="1" background.color="553648127" )
column(band=detail id=47 alignment="1" tabsequence=300 border="5" color="0" x="101" y="537" height="16" width="95" format="0.000" html.valueishtml="0" name=gross_weight visible="1" edit.limit=14 edit.case=any edit.format="#########0.000" 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=47 alignment="1" tabsequence=300 border="5" color="0" x="103" y="537" height="16" width="95" format="0.000" html.valueishtml="0" name=gross_weight visible="1" edit.limit=14 edit.case=any edit.format="#########0.000" 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=45 alignment="0" tabsequence=430 border="0" color="0" x="481" y="736" height="1" width="1" format="[general]" html.valueishtml="0" name=gencode_descr visible="0" 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=45 alignment="0" tabsequence=430 border="0" color="0" x="481" y="736" height="1" width="1" format="[general]" html.valueishtml="0" name=gencode_descr visible="0" 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=49 alignment="0" tabsequence=370 border="5" color="0" x="100" y="614" height="16" width="434" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=200 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=49 alignment="0" tabsequence=370 border="5" color="0" x="100" y="614" height="16" width="434" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=200 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" )
text(band=detail alignment="1" text="Remarks :" border="0" color="0" x="23" y="614" height="16" width="73" html.valueishtml="0" name=remarks_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="Remarks :" border="0" color="0" x="23" y="614" height="16" width="73" html.valueishtml="0" name=remarks_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" )
...@@ -204,14 +204,14 @@ column(band=detail id=63 alignment="1" tabsequence=330 border="5" color="0" x="2 ...@@ -204,14 +204,14 @@ column(band=detail id=63 alignment="1" tabsequence=330 border="5" color="0" x="2
column(band=detail id=72 alignment="1" tabsequence=340 border="5" color="0" x="455" 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="455" 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" )
text(band=detail alignment="1" text="Unit Value :" border="0" color="0" x="381" y="563" height="16" width="68" 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="1" background.color="553648127" ) text(band=detail alignment="1" text="Unit Value :" border="0" color="0" x="381" y="563" height="16" width="68" 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="1" background.color="553648127" )
text(band=detail alignment="1" text="Pallet No :" border="0" color="0" x="203" y="563" height="16" width="76" html.valueishtml="0" name=no_pallet_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) text(band=detail alignment="1" text="Pallet No :" border="0" color="0" x="203" y="563" height="16" width="76" html.valueishtml="0" name=no_pallet_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=62 alignment="1" tabsequence=320 border="5" color="0" x="101" y="563" height="16" width="95" format="[general]" html.valueishtml="0" name=no_art 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=62 alignment="1" tabsequence=320 border="5" color="0" x="101" y="563" height="16" width="95" format="0.000" html.valueishtml="0" name=no_art visible="1" edit.limit=6 edit.case=any edit.format="#########0.000" 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=71 alignment="0" tabsequence=290 border="5" color="0" x="138" y="514" height="16" width="398" format="[general]" html.valueishtml="0" name=pkg_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=71 alignment="0" tabsequence=290 border="5" color="0" x="138" y="514" height="16" width="398" format="[general]" html.valueishtml="0" name=pkg_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=73 alignment="0" tabsequence=280 border="5" color="0" x="138" y="489" height="16" width="398" 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=73 alignment="0" tabsequence=280 border="5" color="0" x="138" y="489" height="16" width="398" 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" )
text(band=detail alignment="1" text="City :" border="0" color="0" x="56" y="756" height="16" width="40" html.valueishtml="0" name=city_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="City :" border="0" color="0" x="56" y="756" height="16" width="40" html.valueishtml="0" name=city_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=60 alignment="0" tabsequence=440 border="5" color="0" x="100" y="756" height="16" width="89" format="[general]" html.valueishtml="0" name=city visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=60 alignment="0" tabsequence=440 border="5" color="0" x="100" y="756" height="16" width="89" format="[general]" html.valueishtml="0" name=city visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Pin :" border="0" color="0" x="371" y="756" height="16" width="75" html.valueishtml="0" name=pin_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" ) text(band=detail alignment="1" text="Pin :" border="0" color="0" x="371" y="756" height="16" width="75" html.valueishtml="0" name=pin_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=61 alignment="0" tabsequence=450 border="5" color="0" x="451" 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=450 border="5" color="0" x="451" 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=490 border="5" color="0" x="269" y="756" height="16" width="97" html.valueishtml="0" name=tele1 visible="1" 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=490 border="5" color="0" x="269" 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="194" 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="194" 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" )
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" )
......
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