Commit bee659d7 authored by ppatro's avatar ppatro

changed by sankara on 12/02/2014 updated...

changed by sankara on 12/02/2014 updated wavegeneprc,shipmentconf,masterpackpos,deallocartconf,shipmentprc and wavegen11 srd metadata


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94237 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 55af342a
...@@ -645,7 +645,14 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo ...@@ -645,7 +645,14 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
} }
//Changed by sumit on 04/06/13 closing prepared statement end //Changed by sumit on 04/06/13 closing prepared statement end
System.out.println("ret string :"+errString); System.out.println("ret string :"+errString);
//changed by sankara on 04/02/14 update carton_master status from pick deallocation start.
int updatecount = updateCartonMasterstatus(ptcn, conn);
System.out.println("updatecount::::"+updatecount);
if( updatecount > 0 )
{
System.out.println("update status in carton_master sucessfully");
}
//changed by sankara on 04/02/14 update carton_master status from pick deallocation end.
} }
catch(Exception e) catch(Exception e)
{ {
...@@ -3679,4 +3686,97 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo ...@@ -3679,4 +3686,97 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
} }
return errString; return errString;
} }
//changed by sankara on 04/02/14 update carton_master status from pick deallocation start.
private int updateCartonMasterstatus(String ptcn,Connection conn) throws ITMException
{
String sql = "";
String sql1 = "";
PreparedStatement pstmt = null,pstmt1 = null;
ResultSet rs = null,rs1 = null;
String masterCarton = "";
String errString = "";
int update = 0;
int count = 0;
System.out.println("hai");
try
{
sql = " SELECT DISTINCT A.MASTER_CARTON FROM CARTON_MASTER A, PACK_HDR P WHERE P.PTCN = A.PTCN AND A.PTCN = ? " +
" AND A.CARTON_TYPE = 'M' AND P.CONFIRMED = 'Y' AND A.STATUS = 'U' ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, ptcn);
rs = pstmt.executeQuery();
while(rs.next())
{
masterCarton = rs.getString(1);
System.out.println("masterCarton:::::"+masterCarton);
sql1 = " SELECT COUNT(*) AS COUNT FROM CARTON_MASTER WHERE MASTER_CARTON = ? AND CARTON_TYPE = 'C' AND STATUS = 'U' ";
pstmt1 = conn.prepareStatement(sql1);
pstmt1.setString(1, masterCarton);
rs1 = pstmt1.executeQuery();
if(rs1.next())
{
count = rs1.getInt("COUNT");
System.out.println("count::::::"+count);
if(count == 0 )
{
System.out.println("inside count block");
sql1 = " UPDATE CARTON_MASTER SET STATUS = 'R' WHERE CARTON_NO = ? AND REF_SER = 'M-PACK' ";
pstmt1 = conn.prepareStatement(sql1);
pstmt1.setString(1,masterCarton);
update = pstmt1.executeUpdate();
if( update > 0)
{
System.out.println(update+" column of carton_master is successfuly ");
}
}
}
rs1.close();
rs1 = null;
pstmt1.close();
pstmt1 = null;
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}
catch(Exception e)
{
e.printStackTrace();
errString = e.getMessage();
throw new ITMException(e);
}
finally
{
try
{
if( rs != null )
{
rs.close(); rs = null;
}
if( rs1 != null )
{
rs1.close(); rs1 = null;
}
if( pstmt != null )
{
pstmt.close(); pstmt = null;
}
if( pstmt1 != null )
{
pstmt1.close(); pstmt1 = null;
}
}
catch( Exception ex)
{
ex.printStackTrace();
errString = ex.getMessage();
throw new ITMException(ex);
}
}
return update;
}
//changed by sankara on 04/02/14 update carton_master status from pick deallocation end.
} }
...@@ -57,6 +57,8 @@ public class MasterPackPos extends ValidatorEJB implements MasterPackPosRemote, ...@@ -57,6 +57,8 @@ public class MasterPackPos extends ValidatorEJB implements MasterPackPosRemote,
GenericUtility genericUtility = GenericUtility.getInstance(); GenericUtility genericUtility = GenericUtility.getInstance();
ITMDBAccessEJB itmDBAccessLocal = new ITMDBAccessEJB(); ITMDBAccessEJB itmDBAccessLocal = new ITMDBAccessEJB();
PackingConf packingConf = new PackingConf(); PackingConf packingConf = new PackingConf();
//changed by sankara on 04/02/14 for update status in carton_master
String status = "";
try try
{ {
dom = genericUtility.parseString(domString); dom = genericUtility.parseString(domString);
...@@ -257,10 +259,37 @@ public class MasterPackPos extends ValidatorEJB implements MasterPackPosRemote, ...@@ -257,10 +259,37 @@ public class MasterPackPos extends ValidatorEJB implements MasterPackPosRemote,
System.out.println("Outer Carton["+outerCarton+"]"); System.out.println("Outer Carton["+outerCarton+"]");
//Changed by sumit on 13/03/13 changing sql adding status condition //Changed by sumit on 13/03/13 changing sql adding status condition
//sql = "UPDATE CARTON_MASTER SET STATUS = ?,MASTER_CARTON = ? WHERE CARTON_NO = ? "; //sql = "UPDATE CARTON_MASTER SET STATUS = ?,MASTER_CARTON = ? WHERE CARTON_NO = ? ";
sql1 = "UPDATE CARTON_MASTER SET STATUS = 'U' WHERE CARTON_NO = ? AND STATUS <> 'R'"; //changed by sankara on 04/02/14 update status in carton_master start.
/*sql1 = "UPDATE CARTON_MASTER SET STATUS = 'U' WHERE CARTON_NO = ? AND STATUS <> 'R'";
pstmt1 = conn.prepareStatement(sql1); pstmt1 = conn.prepareStatement(sql1);
pstmt1.setString(1,outerCarton); pstmt1.setString(1,outerCarton);
pstmt1.executeUpdate(); */
sql1 = " SELECT COUNT(*) AS COUNT FROM CARTON_MASTER WHERE MASTER_CARTON = ? AND CARTON_TYPE = 'C' AND STATUS IN ('A','U') ";
pstmt1 = conn.prepareStatement(sql1);
pstmt1.setString(1, outerCarton);
rs1 = pstmt1.executeQuery();
if(rs1.next())
{
count = rs1.getInt("COUNT");
System.out.println("count::::::"+count);
}
rs1.close();rs1 = null;
pstmt1.close(); pstmt1 = null;
if(count == 0)
{
status = "R";
}
if(count > 0)
{
status = "U";
}
sql1 = " UPDATE CARTON_MASTER SET STATUS = ? WHERE CARTON_NO = ? AND STATUS <> 'R' ";
pstmt1 = conn.prepareStatement(sql1);
pstmt1.setString(1,status);
pstmt1.setString(2,outerCarton);
pstmt1.executeUpdate(); pstmt1.executeUpdate();
//changed by sankara on 04/02/14 update status in carton_master end.
} }
rs.close(); rs.close();
rs = null; rs = null;
......
...@@ -57,6 +57,7 @@ import sun.misc.BASE64Decoder; ...@@ -57,6 +57,7 @@ import sun.misc.BASE64Decoder;
import com.adsionline.ADSIShippingWS.ADSIShippingLocator; import com.adsionline.ADSIShippingWS.ADSIShippingLocator;
import com.adsionline.ADSIShippingWS.ADSIShippingSoap; import com.adsionline.ADSIShippingWS.ADSIShippingSoap;
import com.adsionline.ADSIShippingWS.Address; import com.adsionline.ADSIShippingWS.Address;
import com.adsionline.ADSIShippingWS.Carrier;
import com.adsionline.ADSIShippingWS.CommodityInfo; import com.adsionline.ADSIShippingWS.CommodityInfo;
import com.adsionline.ADSIShippingWS.Country; import com.adsionline.ADSIShippingWS.Country;
import com.adsionline.ADSIShippingWS.EnumManifestAction; import com.adsionline.ADSIShippingWS.EnumManifestAction;
...@@ -783,7 +784,28 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal, ...@@ -783,7 +784,28 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
double msnNo=0.0; double msnNo=0.0;
String imagePath =null; String imagePath =null;
imagePath = discommon.getDisparams("999999","SHIP_WITH_PATH",conn); imagePath = discommon.getDisparams("999999","SHIP_WITH_PATH",conn);
//changed by sankara on 04/02/14 for gwetting carrier symbol and varrier friendly name from adsi start.
String carrierFriendlyName = "";
String serviceSymbol = objShipResult.getServiceSymbol();
System.out.println("serviceSymbol["+serviceSymbol+"]");
String carrierSymbol = serviceSymbol.substring(0,serviceSymbol.lastIndexOf(".") );
System.out.println("Carrier Symbol ["+carrierSymbol+"]");
Carrier[] carr = soap.getCarriers().getCarrierList();
for(int j = 0;j<carr.length;j++)
{
Carrier carr1 = carr[j];
System.out.println("Carrier Symbol["+carr1.getSymbol());
System.out.println("Friendly Name["+carr1.getFriendlyName());
System.out.println("Short Name["+carr1.getShortName());
if(carr1.getSymbol().equalsIgnoreCase(carrierSymbol))
{
carrierFriendlyName = carr1.getFriendlyName();
break;
}
}
System.out.println("Carrier friwndley ["+carrierFriendlyName+"]");
//changed by sankara on 04/02/14 for gwetting carrier symbol and varrier friendly name from adsi ned.
for(int pCtr = 0;pCtr < lenPacakges;pCtr++) for(int pCtr = 0;pCtr < lenPacakges;pCtr++)
{ {
PackageResult2 pkg2frm = (PackageResult2)objShipResult.getPackageResults2()[pCtr]; PackageResult2 pkg2frm = (PackageResult2)objShipResult.getPackageResults2()[pCtr];
...@@ -818,14 +840,21 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal, ...@@ -818,14 +840,21 @@ public class ShipmentConf extends ActionHandlerEJB implements ShipmentConfLocal,
{ {
createFolder.mkdirs(); createFolder.mkdirs();
} }
//changed by sankara on 04/02/14 for gwetting carrier symbol and varrier friendly name from adsi
sql = "UPDATE CARTON_MASTER SET TRACKING_NO = ? , SHIP_LABEL= ? , MSN_NO = ? ,STATUS = 'U' " /*sql = "UPDATE CARTON_MASTER SET TRACKING_NO = ? , SHIP_LABEL= ? , MSN_NO = ? ,STATUS = 'U' "
+ " WHERE CARTON_NO = ?"; + " WHERE CARTON_NO = ?"; */
sql = "UPDATE CARTON_MASTER SET TRACKING_NO = ? , SHIP_LABEL= ? , MSN_NO = ? ,STATUS = 'U', CARRIER_SYMBOL = ?, " +
"CARRIER_FRIENDLYNAME = ? WHERE CARTON_NO = ? ";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1, trackNo); pstmt.setString(1, trackNo);
pstmt.setString(2, path ); pstmt.setString(2, path );
pstmt.setDouble(3, msnNo); pstmt.setDouble(3, msnNo);
pstmt.setString(4, cartonNo); //changed by sankara on 04/02/14 for gwetting carrier symbol and varrier friendly name from adsi start.
//pstmt.setString(4, cartonNo);
pstmt.setString(4, carrierSymbol);
pstmt.setString(5, carrierFriendlyName);
pstmt.setString(6, cartonNo);
//changed by sankara on 04/02/14 for gwetting carrier symbol and varrier friendly name from adsi ned.
System.out.println("carton number in for loop: "+cartonNo); System.out.println("carton number in for loop: "+cartonNo);
System.out.println("msn no for pkg result is :" +msnNo); System.out.println("msn no for pkg result is :" +msnNo);
int updateCnt = pstmt.executeUpdate(); int updateCnt = pstmt.executeUpdate();
......
...@@ -27,6 +27,7 @@ import com.adsionline.ADSIShippingWS.ADSIShippingLocator; ...@@ -27,6 +27,7 @@ import com.adsionline.ADSIShippingWS.ADSIShippingLocator;
import com.adsionline.ADSIShippingWS.ADSIShippingSoap; import com.adsionline.ADSIShippingWS.ADSIShippingSoap;
import com.adsionline.ADSIShippingWS.StringDictionaryReturn; import com.adsionline.ADSIShippingWS.StringDictionaryReturn;
//import com.lowagie.text.pdf.hyphenation.TernaryTree.Iterator; //import com.lowagie.text.pdf.hyphenation.TernaryTree.Iterator;
import com.adsionline.ADSIShippingWS.StringReturn;
@javax.ejb.Stateless @javax.ejb.Stateless
...@@ -271,6 +272,8 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -271,6 +272,8 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
" AND C.SF_IDENTITY IS NULL " + " AND C.SF_IDENTITY IS NULL " +
" AND T.SERVICE_CODE IS NOT NULL " + " AND T.SERVICE_CODE IS NOT NULL " +
" AND C.TRACKING_NO IS NOT NULL " + " AND C.TRACKING_NO IS NOT NULL " +
//changed by sankara on 04/02/2014 for getting used tracking_no only
" AND C.STATUS <> 'R' " +
" UNION " + // MANUAL SHIPMENT REF SER = "" AND NON INVENTORY " UNION " + // MANUAL SHIPMENT REF SER = "" AND NON 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 " +
...@@ -450,8 +453,10 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -450,8 +453,10 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
boolean isError = false; boolean isError = false;
GenericUtility genericUtility = GenericUtility.getInstance(); GenericUtility genericUtility = GenericUtility.getInstance();
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB(); ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
//changed by sankara on 04/02/14 for closeout tracking numbers
String trackingNumber = "";
ArrayList tracknumList = new ArrayList();
StringBuffer trackingNum = new StringBuffer();
try try
{ {
String userId = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" ); String userId = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" );
...@@ -561,20 +566,31 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -561,20 +566,31 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
// " 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 " + //changed by sankara on 04-02-14 for close out changes based on tracking numbers start.
/* 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 " + " 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 " + " 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 " + " 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 " ; " 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 " ;*/
sql = " SELECT DISTINCT C.CARRIER_FRIENDLYNAME, T.SHIPMENT_TYPE, C.TRACKING_NO 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 N.CARTON_NO = C.CARTON_NO AND C.CARRIER_FRIENDLYNAME IS NOT NULL " +
" UNION " +
" SELECT DISTINCT C.CARRIER_FRIENDLYNAME, T.SHIPMENT_TYPE, C.TRACKING_NO FROM CARTON_MASTER C, SHIP_DOCS S, SHIPMENT P, TRANSPORTER T,PACK_HDR PH 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 PH.OUTER_CARTON_NO = C.MASTER_CARTON AND PH.CONFIRMED = 'Y' AND C.CARRIER_FRIENDLYNAME IS NOT NULL " +
" AND C.STATUS <> 'R' ";
//changed by sankara on 04-02-14 for close out changes based on tracking numbers end.
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1,shipmentId); pstmt.setString(1,shipmentId);
pstmt.setString(2,shipmentId); pstmt.setString(2,shipmentId);
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
if( rs.next()) //changed by sankara on 04-02-14 for close out changes based on tracking numbers
//if( rs.next())
while( rs.next())
{ {
carrierFriendlyName = rs.getString("CARRIER_FRIENDLYNAME"); carrierFriendlyName = rs.getString("CARRIER_FRIENDLYNAME");
shipperName = rs.getString("SHIPMENT_TYPE"); shipperName = rs.getString("SHIPMENT_TYPE");
//changed by sankara on 04-02-14 for close out changes based on tracking numbers
trackingNumber = rs.getString("TRACKING_NO");
if(!carrMap.containsKey(carrierFriendlyName + ":" + shipperName)) if(!carrMap.containsKey(carrierFriendlyName + ":" + shipperName))
{ {
...@@ -587,7 +603,20 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -587,7 +603,20 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
} }
shipList.add(shipmentId); shipList.add(shipmentId);
carrMap.put(carrierFriendlyName + ":" + shipperName, shipList); carrMap.put(carrierFriendlyName + ":" + shipperName, shipList);
//changed by sankara on 04-02-14 for close out changes based on tracking numbers
//tracknumList.add(trackingNumber);
//System.out.println("tracknumList::::::"+tracknumList);
trackingNum.append(trackingNumber+",");
}
//changed by sankara on 04-02-14 for close out changes based on tracking numbers start
System.out.println("trackingNum:::::"+trackingNum);
trackingNumber = trackingNum.toString();
if( trackingNumber != null && trackingNumber.trim().length() > 0 )
{
trackingNumber = trackingNumber.substring(0, trackingNumber.length()-1);
System.out.println("final trackingNumber::::::"+trackingNumber);
} }
//changed by sankara on 04-02-14 for close out changes based on tracking numbers end
} }
...@@ -622,14 +651,18 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -622,14 +651,18 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
} }
if( ptcn !=null && refser.trim().equalsIgnoreCase("S-DSP") ) 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 " ; //changed by sankara on 04-02-14 for close out changes based on tracking numbers
//updateSql= " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ?) AND SF_IDENTITY IS NULL " ;
updateSql = " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE PTCN IN (SELECT PTCN FROM SHIP_DOCS WHERE SHIPMENT_ID = ? ) AND STATUS = 'U' AND REF_SER = 'M-PACK' AND SF_IDENTITY IS NULL " ;
pstmt = conn.prepareStatement(updateSql); pstmt = conn.prepareStatement(updateSql);
} }
else else
{ {
updateSql = " UPDATE CARTON_MASTER SET SF_IDENTITY = ? WHERE CARTON_NO IN ( SELECT CARTON_NO FROM SHIPMENT_CONTENT C, SHIP_DOCS D, SHIPMENT S " + 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 " + " 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 " ; //changed by sankara on 04-02-14 for close out changes based on tracking numbers
//" AND S.SHIPMENT_ID = ? ) AND SF_IDENTITY IS NULL " ;
" AND S.SHIPMENT_ID = ? ) AND STATUS = 'U' AND SF_IDENTITY IS NULL " ;
pstmt = conn.prepareStatement(updateSql); pstmt = conn.prepareStatement(updateSql);
} }
// changed by sankara on 17//08/13 for updation of sf_idenity in manual ship case end.. // changed by sankara on 17//08/13 for updation of sf_idenity in manual ship case end..
...@@ -660,13 +693,36 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -660,13 +693,36 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
System.out.println("Getting Sfidentity For Carriers services with ----["+carrFndName+"]--Shiiper Name-["+closeShipperName+"] Close Out Date["+strSmple+"]"); System.out.println("Getting Sfidentity For Carriers services with ----["+carrFndName+"]--Shiiper Name-["+closeShipperName+"] Close Out Date["+strSmple+"]");
//StringDictionaryReturn testStr = soap.closeOutEOD("Taro Commercial", carrFndName,strSmple, true, "Shipments"); //StringDictionaryReturn testStr = soap.closeOutEOD("Taro Commercial", carrFndName,strSmple, true, "Shipments");
StringDictionaryReturn testStr = soap.closeOutEOD(closeShipperName, carrFndName,strSmple, true, "Shipments"); //changed by sankara on 04-02-14 for close out changes based on tracking numbers start.
//StringDictionaryReturn testStr = soap.closeOutEOD(closeShipperName, carrFndName,strSmple, true, "Shipments");
System.out.println("isSuccess["+testStr.isSuccess()+"]"); String shipdetails = "0000CloseOutEOD;shipperFriendlyName="+closeShipperName+";carrierFriendlyName="+carrFndName+";shipDate="+strSmple+";" +
System.out.println("Any Message["+testStr.getMessage()+"]"); "trackingNumbers="+trackingNumber+";";
System.out.println("shipdetails::::::::"+shipdetails);
StringReturn testStr1 = soap.serverQuery(shipdetails);
if(testStr.isSuccess()) System.out.println("isSuccess["+testStr1.isSuccess()+"]");
System.out.println("Response String from server query:::::["+testStr1.getResponse()+"]");
if(testStr1.isSuccess())
{
if(testStr1.getResponse() != null && testStr1.getResponse().trim().length() > 0 )
{
System.out.println("testStr1:::::::::"+testStr1.getResponse());
sfIdentity = testStr1.getResponse().toString();
if(sfIdentity.contains("SF_Identity") && sfIdentity.trim().length() > 0 )
{
String convert[] = sfIdentity.split("SF_Identity");
String convert2 = convert[1];
System.out.println("convert2::::::"+convert2);
String converValue2[] = convert2.split("=");
String convert3 = converValue2[1];
System.out.println("convert3:::::::"+convert3);
String converValue3[] = convert3.split(";");
System.out.println("convert2 value:"+converValue3[0]);
sfIdentity = converValue3[0];
System.out.println("sfIdentity:::::::"+sfIdentity);
}
}
}
/*if(testStr.isSuccess())
{ {
System.out.println("testStr.getResponseDictionary().get_any()"+testStr.getResponseDictionary().get_any()); System.out.println("testStr.getResponseDictionary().get_any()"+testStr.getResponseDictionary().get_any());
...@@ -710,23 +766,29 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment ...@@ -710,23 +766,29 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
{ {
System.out.println("Need To Generate Erro as The Close OUT EOD Nothing to return for carrier ["+carrFndName+"]"); System.out.println("Need To Generate Erro as The Close OUT EOD Nothing to return for carrier ["+carrFndName+"]");
} }
} } */
//changed by sankara on 04-02-14 for close out changes based on tracking numbers end.
else else
{ {
isError = false; isError = false;
errString =getError(testStr.getMessage(),"ADSCLOSEOD", conn); //changed by sankara on 04-02-14 for close out changes based on tracking numbers
//errString =getError(testStr.getMessage(),"ADSCLOSEOD", conn);
errString =getError(testStr1.getResponse(),"ADSCLOSEOD", conn);
return errString; return errString;
} }
System.out.println("Carrier Name ----["+carrFndName+"]----sfIdentity["+sfIdentity+"]"); System.out.println("Carrier Name ----["+carrFndName+"]----sfIdentity["+sfIdentity+"]");
System.out.println("tmpListLen:::::"+tmpListLen);
for(int tmpCtr = 0;tmpCtr < tmpListLen; tmpCtr++) for(int tmpCtr = 0;tmpCtr < tmpListLen; tmpCtr++)
{ {
shipmentIDs = (String)tempList.get(tmpCtr); shipmentIDs = (String)tempList.get(tmpCtr);
//changed by sankara on 04-02-14 for close out changes based on tracking numbers
//trackingNumber = (String)tracknumList.get(tmpCtr);
//System.out.println("trackingNumberS::::::::"+trackingNumber);
pstmt.setString(1,sfIdentity); pstmt.setString(1,sfIdentity);
pstmt.setString(2,shipmentIDs); pstmt.setString(2,shipmentIDs);
//changed by sankara on 04-02-14 for close out changes based on tracking numbers
//pstmt.setString(3,trackingNumber);
count = pstmt.executeUpdate(); count = pstmt.executeUpdate();
if(count > 0) if(count > 0)
......
...@@ -303,7 +303,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -303,7 +303,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
String sqlFnManual = "",sqlTotHoldQty = "",sqlManQty = ""; String sqlFnManual = "",sqlTotHoldQty = "",sqlManQty = "";
PreparedStatement pstmt1 = null,pstmtManul = null,pstmtHold = null,pstmtManQty = null; PreparedStatement pstmt1 = null,pstmtManul = null,pstmtHold = null,pstmtManQty = null;
ResultSet rs2 = null,rsMan = null,rsHld = null,rsM = null; ResultSet rs2 = null,rsMan = null,rsHld = null,rsM = null;
//changed by sankara on 04/02/14 getting order type
String saleOrdertype = "";
retTabSepStrBuff = new StringBuffer( "<?xml version='1.0' encoding='UTF-8'?>\r\n<DocumentRoot>\r\n<description>Datawindow Root</description>\r\n<group0>\r\n" + retTabSepStrBuff = new StringBuffer( "<?xml version='1.0' encoding='UTF-8'?>\r\n<DocumentRoot>\r\n<description>Datawindow Root</description>\r\n<group0>\r\n" +
"<description>Group0 description</description>\r\n<Header0>\r\n<description>Header0 members</description>\r\n"); "<description>Group0 description</description>\r\n<Header0>\r\n<description>Header0 members</description>\r\n");
...@@ -470,6 +471,9 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -470,6 +471,9 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
printer = ""; printer = "";
printer = checkNull(genericUtility.getColumnValue("printer_name",headerDom)); printer = checkNull(genericUtility.getColumnValue("printer_name",headerDom));
printLabel = genericUtility.getColumnValue("print_label",headerDom); printLabel = genericUtility.getColumnValue("print_label",headerDom);
//changed by sankara on 04/02/14 for getting sale order type
saleOrdertype = genericUtility.getColumnValue("order_type",headerDom);
System.out.println("saleOrdertype:::"+saleOrdertype);
getDataSql =" SELECT SORDER.CUST_CODE, CUSTOMER.CUST_NAME,SORDDET.LINE_NO, " getDataSql =" SELECT SORDER.CUST_CODE, CUSTOMER.CUST_NAME,SORDDET.LINE_NO, "
+"SORDER.SALE_ORDER,SORDER.DUE_DATE,SORDITEM.ITEM_CODE," +"SORDER.SALE_ORDER,SORDER.DUE_DATE,SORDITEM.ITEM_CODE,"
...@@ -519,10 +523,20 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -519,10 +523,20 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
+" AND ((FN_GET_CONV_QTY(SORDER.SALE_ORDER, SORDDET.LINE_NO) > 0 ) " +" AND ((FN_GET_CONV_QTY(SORDER.SALE_ORDER, SORDDET.LINE_NO) > 0 ) "
//FN_GET_CONV_QTY(SORDER.SALE_ORDER, SORDDET.LINE_NO) //FN_GET_CONV_QTY(SORDER.SALE_ORDER, SORDDET.LINE_NO)
+" OR (FN_CHECK_MANUAL_STOCK_ALLOC(SORDER.SALE_ORDER, SORDDET.LINE_NO) = 0 ) )" +" OR (FN_CHECK_MANUAL_STOCK_ALLOC(SORDER.SALE_ORDER, SORDDET.LINE_NO) = 0 ) )"
+" AND SORDITEM.LINE_TYPE = 'I'" +" AND SORDITEM.LINE_TYPE = 'I'";
+" ORDER BY SORDER.CUST_CODE,SORDER.SALE_ORDER,SORDITEM.ITEM_CODE__ORD"; //changed by sankara on 04/02/14 for getting sale order type start.
//+" ORDER BY SORDER.CUST_CODE,SORDER.SALE_ORDER,SORDITEM.ITEM_CODE__ORD";
if( saleOrdertype != null && saleOrdertype.trim().length() > 0 )
{
System.out.println("ordtypeGetData::::::::"+saleOrdertype);
getDataSql = getDataSql + " AND TRIM ( SORDER.ORDER_TYPE ) = ? ORDER BY SORDER.CUST_CODE,SORDER.SALE_ORDER,SORDITEM.ITEM_CODE__ORD ";
}
else
{
System.out.println("no sale order type");
getDataSql = getDataSql + " ORDER BY SORDER.CUST_CODE,SORDER.SALE_ORDER,SORDITEM.ITEM_CODE__ORD ";
}
//changed by sankara on 04/02/14 for getting sale order type end.
resrvLoc = discommon.getDisparams("999999","RESERV_LOCATION",conn); resrvLoc = discommon.getDisparams("999999","RESERV_LOCATION",conn);
casePickLoc = discommon.getDisparams("999999","CASE_PICK_INVSTAT",conn); casePickLoc = discommon.getDisparams("999999","CASE_PICK_INVSTAT",conn);
activePickLoc = discommon.getDisparams("999999","ACTIVE_PICK_INVSTAT",conn); activePickLoc = discommon.getDisparams("999999","ACTIVE_PICK_INVSTAT",conn);
...@@ -547,6 +561,13 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -547,6 +561,13 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
pstmt.setString(11,saleOrderTo); pstmt.setString(11,saleOrderTo);
pstmt.setTimestamp(12,dateFr); pstmt.setTimestamp(12,dateFr);
pstmt.setTimestamp(13,dateTo); pstmt.setTimestamp(13,dateTo);
//changed by sankara on 04/02/14 for getting sale order type start.
if( saleOrdertype != null && saleOrdertype.trim().length() > 0 )
{
System.out.println("ordtypeGetData::::::::"+saleOrdertype);
pstmt.setString(14,saleOrdertype);
}
//changed by sankara on 04/02/14 for getting sale order type end.
st = conn.createStatement(); st = conn.createStatement();
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
...@@ -6591,11 +6612,31 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -6591,11 +6612,31 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
String shipCons = (String)sorderConsigMap.get(sorderKey); String shipCons = (String)sorderConsigMap.get(sorderKey);
ArrayList dataList = (ArrayList)custConsigMap.get(shipCons); ArrayList dataList = (ArrayList)custConsigMap.get(shipCons);
int dataListlen = dataList.size(); int dataListlen = dataList.size();
double currentCaseCount = 0.0;
double currentCaseWeight = 0.0;
double currentActWeight = 0.0;
double currentCaseVolume = 0.0;
double currentActVolume = 0.0;
String tmpSorder = "";
for(int cCgt = 0;cCgt < dataListlen;cCgt++) for(int cCgt = 0;cCgt < dataListlen;cCgt++)
{ {
HashMap sordMap = (HashMap)dataList.get(cCgt); HashMap sordMap = (HashMap)dataList.get(cCgt);
System.out.println("Current Sord Map"+sordMap.toString()+"]sorder["+saleOrder+"]Case Count["+(Double)sordMap.get("no_art_order")+"]");
tmpSorder = (String)sordMap.get("sale_order");
tmpSorder = tmpSorder.substring(0,tmpSorder.indexOf(":"));
System.out.println("Current Temp Order "+tmpSorder+"]");
if(saleOrder.equalsIgnoreCase(tmpSorder))
{
currentCaseCount = (Double)sordMap.get("no_art_order");
currentCaseWeight = (Double)sordMap.get("tot_case_weight");
currentActWeight = (Double)sordMap.get("tot_act_weight");
currentCaseVolume =(Double)sordMap.get("tot_case_volume");
currentActVolume = (Double)sordMap.get("tot_act_volume");
}
System.out.println("totalWeightCurrentshipment BEFORE"+totalWeightCurrentshipment+"]"); System.out.println("totalWeightCurrentshipment BEFORE"+totalWeightCurrentshipment+"]");
System.out.println("totCaseVolume BEFORE"+totCaseVolume+"]"); System.out.println("totCaseVolume BEFORE"+totCaseVolume+"]");
System.out.println("totActVolume BEFORE"+totActVolume+"]"); System.out.println("totActVolume BEFORE"+totActVolume+"]");
...@@ -6702,10 +6743,53 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -6702,10 +6743,53 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
} }
if(transPorterInfoMap != null & transPorterInfoMap.size() > 0) if(transPorterInfoMap != null & transPorterInfoMap.size() > 0)
{
if("M".equalsIgnoreCase((String)transPorterInfoMap.get("SHIP_TYPE")) && currentCaseCount < 2 )
{
System.out.println("totalWeightCurrentshipment AFTER currentCaseWeight"+(currentCaseWeight + currentActWeight)+"]");
System.out.println("currentCaseVolume AFTER"+currentCaseVolume+"]");
System.out.println("currentCaseWeight AFTER"+currentCaseWeight+"]");
System.out.println("currentActVolume AFTER"+currentActVolume+"]");
System.out.println("currentActWeight AFTER"+currentActWeight+"]");
System.out.println("currentCaseCount AFTER"+currentCaseCount+"]");
if("M".equalsIgnoreCase(shipType))
{
shipType = "P";
}
transPorterInfoMap = getTransporterInfoMap(saleOrder,(currentCaseWeight + currentActWeight),currentCaseCount,"P",shipType, conn);
if(transPorterInfoMap != null & transPorterInfoMap.size() > 0)
{
tranCode = (String)transPorterInfoMap.get("TRAN_CODE");
transMode = (String)transPorterInfoMap.get("TRANS_MODE");
System.out.println("current transPorter Now AFTER"+tranCode+"]Ship type["+(String)transPorterInfoMap.get("SHIP_TYPE")+"]");
totalWeightCurrentshipment = (currentCaseWeight + currentActWeight);
totActVolume = currentActVolume;
totCaseVolume = currentCaseVolume;
totCaseWeight = currentCaseWeight;
totActWeight =currentActWeight;
totCaseCount = currentCaseCount;
}
else
{
tranCode = "";
transMode = "";
}
}
else
{ {
tranCode = (String)transPorterInfoMap.get("TRAN_CODE"); tranCode = (String)transPorterInfoMap.get("TRAN_CODE");
transMode = (String)transPorterInfoMap.get("TRANS_MODE"); transMode = (String)transPorterInfoMap.get("TRANS_MODE");
} }
}
else else
{ {
tranCode = ""; tranCode = "";
...@@ -14600,6 +14684,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -14600,6 +14684,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
xmlValues = xmlValues + "<site_code>" + siteCode + "</site_code>"; xmlValues = xmlValues + "<site_code>" + siteCode + "</site_code>";
xmlValues = xmlValues + "<desp_date>" + currDateStr + "</desp_date>"; xmlValues = xmlValues + "<desp_date>" + currDateStr + "</desp_date>";
xmlValues = xmlValues + "<tran_date>" + currDateStr + "</tran_date>"; xmlValues = xmlValues + "<tran_date>" + currDateStr + "</tran_date>";
xmlValues = xmlValues + "<order_date>" + currDateStr + "</order_date>";
xmlValues = xmlValues + "</Detail1></Root>"; xmlValues = xmlValues + "</Detail1></Root>";
System.out.println("xmlValues :["+xmlValues+"]"); System.out.println("xmlValues :["+xmlValues+"]");
TransIDGenerator tg = new TransIDGenerator(xmlValues, "BASE", CommonConstants.DB_NAME); TransIDGenerator tg = new TransIDGenerator(xmlValues, "BASE", CommonConstants.DB_NAME);
......
...@@ -235,31 +235,13 @@ ...@@ -235,31 +235,13 @@
<name>pallet_no</name> <name>pallet_no</name>
<dbname>pallet_no</dbname> <dbname>pallet_no</dbname>
</table_column> </table_column>
<table_column>
<type size="3">char</type>
<updatewhereclause>no</updatewhereclause>
<name>order_type</name>
<dbname>order_type</dbname>
</table_column>
</TableDefinition> </TableDefinition>
<GroupBox>
<band>Detail</band>
<text>Shipments</text>
<border>5</border>
<color>33554432</color>
<x>88</x>
<y>191</y>
<height>117</height>
<width>654</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-12</height>
<weight>700</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<GroupBox> <GroupBox>
<band>Detail</band> <band>Detail</band>
<text>Basic</text> <text>Basic</text>
...@@ -267,7 +249,7 @@ ...@@ -267,7 +249,7 @@
<color>33554432</color> <color>33554432</color>
<x>95</x> <x>95</x>
<y>0</y> <y>0</y>
<height>183</height> <height>206</height>
<width>645</width> <width>645</width>
<name>gb_1</name> <name>gb_1</name>
<visible>1</visible> <visible>1</visible>
...@@ -676,34 +658,6 @@ ...@@ -676,34 +658,6 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Default Quantity Automatic:</text>
<border>0</border>
<color>33554432</color>
<x>99</x>
<y>161</y>
<height>16</height>
<width>157</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_qty_flag_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>12</id> <id>12</id>
...@@ -924,42 +878,6 @@ ...@@ -924,42 +878,6 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>2</id>
<alignment>0</alignment>
<tabsequence>140</tabsequence>
<border>5</border>
<color>33554432</color>
<x>261</x>
<y>161</y>
<height>16</height>
<width>64</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>default_qty_flag</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>1</id>
...@@ -1263,7 +1181,7 @@ ...@@ -1263,7 +1181,7 @@
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>116</x> <x>116</x>
<y>216</y> <y>250</y>
<height>16</height> <height>16</height>
<width>142</width> <width>142</width>
<html> <html>
...@@ -1284,56 +1202,20 @@ ...@@ -1284,56 +1202,20 @@
<color>553648127</color> <color>553648127</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject>
<band>Detail</band>
<id>18</id>
<alignment>0</alignment>
<tabsequence>160</tabsequence>
<border>5</border>
<color>33554432</color>
<x>262</x>
<y>216</y>
<height>16</height>
<width>94</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>active_pick_allow</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Master Allow:</text> <text>Stock To Dock:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>361</x> <x>111</x>
<y>216</y> <y>272</y>
<height>16</height> <height>16</height>
<width>78</width> <width>148</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>master_pack_allow_t</name> <name>stock_to_dock_allow_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1348,29 +1230,21 @@ ...@@ -1348,29 +1230,21 @@
<color>553648127</color> <color>553648127</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>17</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Pallet No:</text>
<tabsequence>170</tabsequence> <border>0</border>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>443</x> <x>121</x>
<y>216</y> <y>294</y>
<height>16</height> <height>16</height>
<width>62</width> <width>139</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>master_pack_allow</name> <name>pallet_no_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1380,24 +1254,24 @@ ...@@ -1380,24 +1254,24 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>1073741824</color> <color>553648127</color>
</background> </background>
</ColumnObject> </TextObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Parcel Allow:</text> <text>Print Label:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>505</x> <x>118</x>
<y>216</y> <y>316</y>
<height>16</height> <height>16</height>
<width>82</width> <width>143</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>parcelpack_allow_t</name> <name>print_label_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1414,25 +1288,25 @@ ...@@ -1414,25 +1288,25 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>22</id> <id>18</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>180</tabsequence> <tabsequence>170</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>591</x> <x>262</x>
<y>216</y> <y>250</y>
<height>16</height> <height>16</height>
<width>120</width> <width>94</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>parcelpack_allow</name> <name>active_pick_allow</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="ddlb">
<limit>0</limit> <limit>0</limit>
<allowedit>no</allowedit> <allowedit>no</allowedit>
<case>upper</case> <case>any</case>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1448,43 +1322,15 @@ ...@@ -1448,43 +1322,15 @@
<color>1073741824</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Stock To Dock:</text>
<border>0</border>
<color>33554432</color>
<x>111</x>
<y>238</y>
<height>16</height>
<width>148</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>stock_to_dock_allow_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>19</id> <id>19</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>190</tabsequence> <tabsequence>200</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>263</x> <x>263</x>
<y>238</y> <y>272</y>
<height>16</height> <height>16</height>
<width>93</width> <width>93</width>
<format>[general]</format> <format>[general]</format>
...@@ -1512,21 +1358,29 @@ ...@@ -1512,21 +1358,29 @@
<color>1073741824</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>25</id>
<text>Single Lot:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>230</tabsequence>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>378</x> <x>264</x>
<y>238</y> <y>294</y>
<height>16</height> <height>16</height>
<width>60</width> <width>171</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>single_lot_t</name> <name>pallet_no</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1536,31 +1390,31 @@ ...@@ -1536,31 +1390,31 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>553648127</color> <color>1073741824</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>16</id> <id>21</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>200</tabsequence> <tabsequence>250</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>442</x> <x>265</x>
<y>238</y> <y>316</y>
<height>16</height> <height>16</height>
<width>63</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>single_lot</name> <name>print_label</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="ddlb">
<limit>0</limit> <limit>0</limit>
<allowedit>no</allowedit> <allowedit>no</allowedit>
<case>any</case> <case>upper</case>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1579,17 +1433,73 @@ ...@@ -1579,17 +1433,73 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Shipment Type:</text> <text>Master Allow:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>497</x> <x>361</x>
<y>238</y> <y>250</y>
<height>16</height> <height>16</height>
<width>89</width> <width>78</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ship_type_t</name> <name>master_pack_allow_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Single Lot:</text>
<border>0</border>
<color>33554432</color>
<x>378</x>
<y>272</y>
<height>16</height>
<width>60</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>single_lot_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Printer For Label:</text>
<border>0</border>
<color>33554432</color>
<x>326</x>
<y>316</y>
<height>16</height>
<width>97</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>printer_name_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1606,20 +1516,20 @@ ...@@ -1606,20 +1516,20 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>23</id> <id>17</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>230</tabsequence> <tabsequence>180</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>590</x> <x>443</x>
<y>238</y> <y>250</y>
<height>16</height> <height>16</height>
<width>121</width> <width>62</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ship_type</name> <name>master_pack_allow</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="ddlb">
<limit>0</limit> <limit>0</limit>
...@@ -1640,21 +1550,29 @@ ...@@ -1640,21 +1550,29 @@
<color>1073741824</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>16</id>
<text>Pallet No:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>210</tabsequence>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>121</x> <x>442</x>
<y>260</y> <y>272</y>
<height>16</height> <height>16</height>
<width>139</width> <width>63</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pallet_no_t</name> <name>single_lot</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1664,26 +1582,26 @@ ...@@ -1664,26 +1582,26 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>553648127</color> <color>1073741824</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>25</id> <id>20</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>210</tabsequence> <tabsequence>260</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>264</x> <x>427</x>
<y>260</y> <y>316</y>
<height>16</height> <height>16</height>
<width>171</width> <width>260</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pallet_no</name> <name>printer_name</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
...@@ -1704,6 +1622,62 @@ ...@@ -1704,6 +1622,62 @@
<color>1073741824</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Parcel Allow:</text>
<border>0</border>
<color>33554432</color>
<x>505</x>
<y>250</y>
<height>16</height>
<width>82</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>parcelpack_allow_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Shipment Type:</text>
<border>0</border>
<color>33554432</color>
<x>497</x>
<y>272</y>
<height>16</height>
<width>89</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>ship_type_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
...@@ -1711,7 +1685,7 @@ ...@@ -1711,7 +1685,7 @@
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>472</x> <x>472</x>
<y>260</y> <y>294</y>
<height>16</height> <height>16</height>
<width>114</width> <width>114</width>
<html> <html>
...@@ -1734,25 +1708,25 @@ ...@@ -1734,25 +1708,25 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>24</id> <id>22</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>220</tabsequence> <tabsequence>190</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>590</x> <x>591</x>
<y>260</y> <y>250</y>
<height>16</height> <height>16</height>
<width>96</width> <width>120</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>direct_pick_loc</name> <name>parcelpack_allow</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="ddlb">
<limit>0</limit> <limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case> <case>upper</case>
<autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1768,21 +1742,29 @@ ...@@ -1768,21 +1742,29 @@
<color>1073741824</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>23</id>
<text>Print Label:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>220</tabsequence>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>118</x> <x>590</x>
<y>282</y> <y>272</y>
<height>16</height> <height>16</height>
<width>143</width> <width>121</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>print_label_t</name> <name>ship_type</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
...@@ -1792,31 +1774,31 @@ ...@@ -1792,31 +1774,31 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>553648127</color> <color>1073741824</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>21</id> <id>24</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>240</tabsequence> <tabsequence>240</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>265</x> <x>590</x>
<y>282</y> <y>294</y>
<height>16</height> <height>16</height>
<width>66</width> <width>96</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>print_label</name> <name>direct_pick_loc</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="ddlb"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<allowedit>no</allowedit>
<case>upper</case> <case>upper</case>
<autoselect>yes</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1832,20 +1814,72 @@ ...@@ -1832,20 +1814,72 @@
<color>1073741824</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<GroupBox>
<band>Detail</band>
<text>Shipments</text>
<border>5</border>
<color>33554432</color>
<x>88</x>
<y>225</y>
<height>117</height>
<width>654</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-12</height>
<weight>700</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Printer For Label:</text> <text>Default Quantity Automatic:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>326</x> <x>99</x>
<y>282</y> <y>161</y>
<height>16</height> <height>16</height>
<width>97</width> <width>157</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>printer_name_t</name> <name>default_qty_flag_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Sales Order Type:</text>
<border>0</border>
<color>33554432</color>
<x>99</x>
<y>181</y>
<height>16</height>
<width>157</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_type_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1862,20 +1896,56 @@ ...@@ -1862,20 +1896,56 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>20</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>250</tabsequence> <tabsequence>140</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>427</x> <x>261</x>
<y>282</y> <y>161</y>
<height>16</height> <height>16</height>
<width>260</width> <width>72</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>printer_name</name> <name>default_qty_flag</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<allowedit>no</allowedit>
<case>any</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>26</id>
<alignment>0</alignment>
<tabsequence>160</tabsequence>
<border>5</border>
<color>33554432</color>
<x>261</x>
<y>181</y>
<height>16</height>
<width>49</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>order_type</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
...@@ -1893,7 +1963,7 @@ ...@@ -1893,7 +1963,7 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>1073741824</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<HtmlTable> <HtmlTable>
......
...@@ -29,9 +29,9 @@ table(column=(type=char(10) updatewhereclause=no name=site_code dbname="site_cod ...@@ -29,9 +29,9 @@ table(column=(type=char(10) updatewhereclause=no name=site_code dbname="site_cod
column=(type=char(1) updatewhereclause=no name=ship_type dbname="ship_type" values="As per Routing A/LTL L/Master Pack M/Parcel Pack P/" ) column=(type=char(1) updatewhereclause=no name=ship_type dbname="ship_type" values="As per Routing A/LTL L/Master Pack M/Parcel Pack P/" )
column=(type=char(10) updatewhereclause=no name=direct_pick_loc dbname="direct_pick_loc" ) column=(type=char(10) updatewhereclause=no name=direct_pick_loc dbname="direct_pick_loc" )
column=(type=char(25) updatewhereclause=no name=pallet_no dbname="pallet_no" ) column=(type=char(25) updatewhereclause=no name=pallet_no dbname="pallet_no" )
column=(type=char(3) updatewhereclause=no name=order_type dbname="order_type" )
) )
groupbox(band=detail text="Shipments"border="5" color="33554432" x="88" y="191" height="117" width="654" name=gb_2 visible="1" font.face="Times New Roman" font.height="-12" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) groupbox(band=detail text="Basic"border="5" color="33554432" x="95" y="0" height="206" width="645" name=gb_1 visible="1" font.face="Times New Roman" font.height="-12" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Basic"border="5" color="33554432" x="95" y="0" height="183" width="645" name=gb_1 visible="1" font.face="Times New Roman" font.height="-12" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Due Date To:" border="0" color="33554432" x="503" y="121" height="16" width="84" html.valueishtml="0" name=due_date__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Due Date To:" border="0" color="33554432" x="503" y="121" height="16" width="84" html.valueishtml="0" name=due_date__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Customer Code To:" border="0" color="33554432" x="477" y="101" height="17" width="110" html.valueishtml="0" name=cust_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Customer Code To:" border="0" color="33554432" x="477" y="101" height="17" width="110" html.valueishtml="0" name=cust_code__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Sale Order To:" border="0" color="33554432" x="503" y="81" height="16" width="84" html.valueishtml="0" name=sale_order__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Sale Order To:" border="0" color="33554432" x="503" y="81" height="16" width="84" html.valueishtml="0" name=sale_order__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
...@@ -46,14 +46,12 @@ text(band=detail alignment="1" text="Due Date From:" border="0" color="33554432 ...@@ -46,14 +46,12 @@ text(band=detail alignment="1" text="Due Date From:" border="0" color="33554432
text(band=detail alignment="1" text="Customer Code Dlv From :" border="0" color="33554432" x="110" y="141" height="16" width="147" html.valueishtml="0" name=cust_code__dlv__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Customer Code Dlv From :" border="0" color="33554432" x="110" y="141" height="16" width="147" html.valueishtml="0" name=cust_code__dlv__from_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Customer Code Dlv To :" border="0" color="33554432" x="448" y="141" height="16" width="139" html.valueishtml="0" name=cust_code__dlv__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Customer Code Dlv To :" border="0" color="33554432" x="448" y="141" height="16" width="139" html.valueishtml="0" name=cust_code__dlv__to_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Wave Mode:" border="0" color="33554432" x="509" y="161" height="16" width="78" html.valueishtml="0" name=wave_mode_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Wave Mode:" border="0" color="33554432" x="509" y="161" height="16" width="78" html.valueishtml="0" name=wave_mode_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Default Quantity Automatic:" border="0" color="33554432" x="99" y="161" height="16" width="157" html.valueishtml="0" name=default_qty_flag_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=12 alignment="0" tabsequence=70 border="5" color="33554432" x="590" y="81" height="16" width="96" format="[general]" html.valueishtml="0" name=sale_order__to visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=12 alignment="0" tabsequence=70 border="5" color="33554432" x="590" y="81" height="16" width="96" format="[general]" html.valueishtml="0" name=sale_order__to visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=80 border="5" color="33554432" x="261" y="101" height="17" width="95" format="[general]" html.valueishtml="0" name=cust_code__from visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=9 alignment="0" tabsequence=80 border="5" color="33554432" x="261" y="101" height="17" width="95" format="[general]" html.valueishtml="0" name=cust_code__from visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=10 alignment="0" tabsequence=90 border="5" color="33554432" x="590" y="101" height="17" width="96" format="[general]" html.valueishtml="0" name=cust_code__to visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=10 alignment="0" tabsequence=90 border="5" color="33554432" x="590" y="101" height="17" width="96" format="[general]" html.valueishtml="0" name=cust_code__to visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=100 border="5" color="33554432" x="261" y="121" height="16" width="95" format="[shortdate] [time]" html.valueishtml="0" name=due_date__from visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=13 alignment="0" tabsequence=100 border="5" color="33554432" x="261" y="121" height="16" width="95" format="[shortdate] [time]" html.valueishtml="0" name=due_date__from visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="0" tabsequence=110 border="5" color="33554432" x="590" y="121" height="16" width="96" format="[shortdate] [time]" html.valueishtml="0" name=due_date__to visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=14 alignment="0" tabsequence=110 border="5" color="33554432" x="590" y="121" height="16" width="96" format="[shortdate] [time]" html.valueishtml="0" name=due_date__to visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="0" tabsequence=130 border="5" color="33554432" x="590" y="141" height="16" width="96" format="[general]" html.valueishtml="0" name=cust_code__dlv__to visible="1" edit.limit=0 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="16777215" ) column(band=detail id=8 alignment="0" tabsequence=130 border="5" color="33554432" x="590" y="141" height="16" width="96" format="[general]" html.valueishtml="0" name=cust_code__dlv__to visible="1" edit.limit=0 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="16777215" )
column(band=detail id=2 alignment="0" tabsequence=140 border="5" color="33554432" x="261" y="161" height="16" width="64" format="[general]" html.valueishtml="0" name=default_qty_flag visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="261" y="21" height="16" width="95" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=1 alignment="0" tabsequence=10 border="5" color="33554432" x="261" y="21" height="16" width="95" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=20 border="5" color="33554432" x="261" y="41" height="16" width="95" format="[general]" html.valueishtml="0" name=item_ser__from visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=3 alignment="0" tabsequence=20 border="5" color="33554432" x="261" y="41" height="16" width="95" format="[general]" html.valueishtml="0" name=item_ser__from visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=40 border="5" color="33554432" x="261" y="61" height="18" width="95" format="[general]" html.valueishtml="0" name=item_code__from visible="1" edit.limit=0 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="16777215" ) column(band=detail id=5 alignment="0" tabsequence=40 border="5" color="33554432" x="261" y="61" height="18" width="95" format="[general]" html.valueishtml="0" name=item_code__from visible="1" edit.limit=0 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="16777215" )
...@@ -62,26 +60,31 @@ column(band=detail id=4 alignment="0" tabsequence=30 border="5" color="33554432" ...@@ -62,26 +60,31 @@ column(band=detail id=4 alignment="0" tabsequence=30 border="5" color="33554432"
column(band=detail id=6 alignment="0" tabsequence=50 border="5" color="33554432" x="590" y="61" height="18" width="96" format="[general]" html.valueishtml="0" name=item_code__to visible="1" edit.limit=0 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="16777215" ) column(band=detail id=6 alignment="0" tabsequence=50 border="5" color="33554432" x="590" y="61" height="18" width="96" format="[general]" html.valueishtml="0" name=item_code__to visible="1" edit.limit=0 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="16777215" )
column(band=detail id=7 alignment="0" tabsequence=120 border="5" color="33554432" x="261" y="141" height="16" width="95" format="[general]" html.valueishtml="0" name=cust_code__dlv__from visible="1" edit.limit=0 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="16777215" ) column(band=detail id=7 alignment="0" tabsequence=120 border="5" color="33554432" x="261" y="141" height="16" width="95" format="[general]" html.valueishtml="0" name=cust_code__dlv__from visible="1" edit.limit=0 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="16777215" )
column(band=detail id=15 alignment="0" tabsequence=150 border="5" color="33554432" x="590" y="161" height="16" width="96" format="[general]" html.valueishtml="0" name=wave_mode visible="1" ddlb.limit=2 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" ) column(band=detail id=15 alignment="0" tabsequence=150 border="5" color="33554432" x="590" y="161" height="16" width="96" format="[general]" html.valueishtml="0" name=wave_mode visible="1" ddlb.limit=2 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Active Allow:" border="0" color="33554432" x="116" y="216" height="16" width="142" html.valueishtml="0" name=active_pick_allow_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) text(band=detail alignment="1" text="Active Allow:" border="0" color="33554432" x="116" y="250" height="16" width="142" html.valueishtml="0" name=active_pick_allow_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=18 alignment="0" tabsequence=160 border="5" color="33554432" x="262" y="216" height="16" width="94" format="[general]" html.valueishtml="0" name=active_pick_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" ) text(band=detail alignment="1" text="Stock To Dock:" border="0" color="33554432" x="111" y="272" height="16" width="148" html.valueishtml="0" name=stock_to_dock_allow_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Master Allow:" border="0" color="33554432" x="361" y="216" height="16" width="78" html.valueishtml="0" name=master_pack_allow_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) text(band=detail alignment="1" text="Pallet No:" border="0" color="33554432" x="121" y="294" height="16" width="139" html.valueishtml="0" name=pallet_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=17 alignment="0" tabsequence=170 border="5" color="33554432" x="443" y="216" height="16" width="62" format="[general]" html.valueishtml="0" name=master_pack_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" ) text(band=detail alignment="1" text="Print Label:" border="0" color="33554432" x="118" y="316" height="16" width="143" html.valueishtml="0" name=print_label_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Parcel Allow:" border="0" color="33554432" x="505" y="216" height="16" width="82" html.valueishtml="0" name=parcelpack_allow_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) column(band=detail id=18 alignment="0" tabsequence=170 border="5" color="33554432" x="262" y="250" height="16" width="94" format="[general]" html.valueishtml="0" name=active_pick_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=22 alignment="0" tabsequence=180 border="5" color="33554432" x="591" y="216" height="16" width="120" format="[general]" html.valueishtml="0" name=parcelpack_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" ) column(band=detail id=19 alignment="0" tabsequence=200 border="5" color="33554432" x="263" y="272" height="16" width="93" format="[general]" html.valueishtml="0" name=stock_to_dock_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Stock To Dock:" border="0" color="33554432" x="111" y="238" height="16" width="148" html.valueishtml="0" name=stock_to_dock_allow_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) column(band=detail id=25 alignment="0" tabsequence=230 border="5" color="33554432" x="264" y="294" height="16" width="171" format="[general]" html.valueishtml="0" name=pallet_no visible="1" edit.limit=0 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="1073741824" )
column(band=detail id=19 alignment="0" tabsequence=190 border="5" color="33554432" x="263" y="238" height="16" width="93" format="[general]" html.valueishtml="0" name=stock_to_dock_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" ) column(band=detail id=21 alignment="0" tabsequence=250 border="5" color="33554432" x="265" y="316" height="16" width="66" format="[general]" html.valueishtml="0" name=print_label visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Single Lot:" border="0" color="33554432" x="378" y="238" height="16" width="60" html.valueishtml="0" name=single_lot_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) text(band=detail alignment="1" text="Master Allow:" border="0" color="33554432" x="361" y="250" height="16" width="78" html.valueishtml="0" name=master_pack_allow_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=16 alignment="0" tabsequence=200 border="5" color="33554432" x="442" y="238" height="16" width="63" format="[general]" html.valueishtml="0" name=single_lot visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" ) text(band=detail alignment="1" text="Single Lot:" border="0" color="33554432" x="378" y="272" height="16" width="60" html.valueishtml="0" name=single_lot_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Shipment Type:" border="0" color="33554432" x="497" y="238" height="16" width="89" html.valueishtml="0" name=ship_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) text(band=detail alignment="1" text="Printer For Label:" border="0" color="33554432" x="326" y="316" height="16" width="97" html.valueishtml="0" name=printer_name_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=23 alignment="0" tabsequence=230 border="5" color="33554432" x="590" y="238" height="16" width="121" 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="1073741824" ) column(band=detail id=17 alignment="0" tabsequence=180 border="5" color="33554432" x="443" y="250" height="16" width="62" format="[general]" html.valueishtml="0" name=master_pack_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Pallet No:" border="0" color="33554432" x="121" y="260" height="16" width="139" html.valueishtml="0" name=pallet_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) column(band=detail id=16 alignment="0" tabsequence=210 border="5" color="33554432" x="442" y="272" height="16" width="63" format="[general]" html.valueishtml="0" name=single_lot visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=25 alignment="0" tabsequence=210 border="5" color="33554432" x="264" y="260" height="16" width="171" format="[general]" html.valueishtml="0" name=pallet_no visible="1" edit.limit=0 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="1073741824" ) column(band=detail id=20 alignment="0" tabsequence=260 border="5" color="33554432" x="427" y="316" height="16" width="260" format="[general]" html.valueishtml="0" name=printer_name visible="1" edit.limit=0 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="1073741824" )
text(band=detail alignment="1" text="Direct Pick Location:" border="0" color="33554432" x="472" y="260" height="16" width="114" html.valueishtml="0" name=direct_pick_loc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) text(band=detail alignment="1" text="Parcel Allow:" border="0" color="33554432" x="505" y="250" height="16" width="82" html.valueishtml="0" name=parcelpack_allow_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=24 alignment="0" tabsequence=220 border="5" color="33554432" x="590" y="260" height="16" width="96" format="[general]" html.valueishtml="0" name=direct_pick_loc visible="1" edit.limit=0 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="1073741824" ) text(band=detail alignment="1" text="Shipment Type:" border="0" color="33554432" x="497" y="272" height="16" width="89" html.valueishtml="0" name=ship_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Print Label:" border="0" color="33554432" x="118" y="282" height="16" width="143" html.valueishtml="0" name=print_label_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) text(band=detail alignment="1" text="Direct Pick Location:" border="0" color="33554432" x="472" y="294" height="16" width="114" html.valueishtml="0" name=direct_pick_loc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=21 alignment="0" tabsequence=240 border="5" color="33554432" x="265" y="282" height="16" width="66" format="[general]" html.valueishtml="0" name=print_label visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" ) column(band=detail id=22 alignment="0" tabsequence=190 border="5" color="33554432" x="591" y="250" height="16" width="120" format="[general]" html.valueishtml="0" name=parcelpack_allow visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=detail alignment="1" text="Printer For Label:" border="0" color="33554432" x="326" y="282" height="16" width="97" html.valueishtml="0" name=printer_name_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" ) column(band=detail id=23 alignment="0" tabsequence=220 border="5" color="33554432" x="590" y="272" height="16" width="121" 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="1073741824" )
column(band=detail id=20 alignment="0" tabsequence=250 border="5" color="33554432" x="427" y="282" height="16" width="260" format="[general]" html.valueishtml="0" name=printer_name visible="1" edit.limit=0 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="1073741824" ) column(band=detail id=24 alignment="0" tabsequence=240 border="5" color="33554432" x="590" y="294" height="16" width="96" format="[general]" html.valueishtml="0" name=direct_pick_loc visible="1" edit.limit=0 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="1073741824" )
groupbox(band=detail text="Shipments"border="5" color="33554432" x="88" y="225" height="117" width="654" name=gb_2 visible="1" font.face="Times New Roman" font.height="-12" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Default Quantity Automatic:" border="0" color="33554432" x="99" y="161" height="16" width="157" html.valueishtml="0" name=default_qty_flag_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Sales Order Type:" border="0" color="33554432" x="99" y="181" height="16" width="157" html.valueishtml="0" name=order_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=2 alignment="0" tabsequence=140 border="5" color="33554432" x="261" y="161" height="16" width="72" format="[general]" html.valueishtml="0" name=default_qty_flag visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=26 alignment="0" tabsequence=160 border="5" color="33554432" x="261" y="181" height="16" width="49" format="[general]" html.valueishtml="0" name=order_type visible="1" edit.limit=0 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="16777215" )
htmltable(border="1" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_wavegen11" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_wavegen><d_wavegen_row __pbband=~"detail~"><site_code/><default_qty_flag/><item_ser__from>item_ser__from</item_ser__from><item_ser__to>item_ser__to</item_ser__to><item_code__from>item_code__from</item_code__from><item_code__to>item_code__to</item_code__to><cust_code__dlv__from>cust_code__dlv__from</cust_code__dlv__from><cust_code__dlv__to>cust_code__dlv__to</cust_code__dlv__to><cust_code__from>cust_code__from</cust_code__from><cust_code__to>cust_code__to</cust_code__to><sale_order__from>sale_order__from</sale_order__from><sale_order__to>sale_order__to</sale_order__to><due_date__from>due_date__from</due_date__from><due_date__to>due_date__to</due_date__to></d_wavegen_row></d_wavegen>")) export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="d_wavegen11" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_wavegen><d_wavegen_row __pbband=~"detail~"><site_code/><default_qty_flag/><item_ser__from>item_ser__from</item_ser__from><item_ser__to>item_ser__to</item_ser__to><item_code__from>item_code__from</item_code__from><item_code__to>item_code__to</item_code__to><cust_code__dlv__from>cust_code__dlv__from</cust_code__dlv__from><cust_code__dlv__to>cust_code__dlv__to</cust_code__dlv__to><cust_code__from>cust_code__from</cust_code__from><cust_code__to>cust_code__to</cust_code__to><sale_order__from>sale_order__from</sale_order__from><sale_order__to>sale_order__to</sale_order__to><due_date__from>due_date__from</due_date__from><due_date__to>due_date__to</due_date__to></d_wavegen_row></d_wavegen>"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment