Commit 2b0a4463 authored by ppatro's avatar ppatro

wave cancel,stock transfer,shorting and lock release cosmetic change


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93373 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 962f0a95
...@@ -1902,7 +1902,7 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe ...@@ -1902,7 +1902,7 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
return calculatedDate; return calculatedDate;
} }
//Changed by Rohan on 11-07-13 for generate erraor with asn no,line no and item code.start //Changed by Rohan on 11-07-13 for generate erraor with asn no,line no and item code.start
private String getError(String tranID,String lineNo,String asnNo,String Code,Connection conn) throws ITMException, Exception private String getError(String tranID,String lineNo,String itemCode,String Code,Connection conn) throws ITMException, Exception
{ {
String mainStr =""; String mainStr ="";
...@@ -1913,7 +1913,7 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe ...@@ -1913,7 +1913,7 @@ public class AsnConf extends ActionHandlerEJB implements AsnConfLocal, AsnConfRe
String begPart = errString.substring(0,errString.indexOf("<message>")+9); String begPart = errString.substring(0,errString.indexOf("<message>")+9);
String endDesc = errString.substring(errString.indexOf("</description>")); String endDesc = errString.substring(errString.indexOf("</description>"));
mainStr= begPart+"Invalid Data "+"</message><description>"; mainStr= begPart+"Invalid Data "+"</message><description>";
mainStr= mainStr+"Tran ID:"+tranID+"Line No:"+lineNo+"ASN No:"+asnNo+endDesc; mainStr= mainStr+"Tran ID: ["+tranID+"] Line No: ["+lineNo+"] Item Code: ["+itemCode+"]" +endDesc;
System.out.println("mainStr:::::::::::::::::: "+mainStr); System.out.println("mainStr:::::::::::::::::: "+mainStr);
begPart = null; begPart = null;
} }
......
...@@ -885,11 +885,12 @@ public class WaveCancelEJB extends ActionHandlerEJB implements WaveCancelEJBLoca ...@@ -885,11 +885,12 @@ public class WaveCancelEJB extends ActionHandlerEJB implements WaveCancelEJBLoca
} }
//Changed by Rohan on 30-05-13 for void packages duning master pick and parcel picking.start //Changed by Rohan on 30-05-13 for void packages duning master pick and parcel picking.start
System.out.println("RefSeries checking for void packages"+refSer+"}"); System.out.println("RefSeries checking for void packages"+refSer+"}");
System.out.println("PTCN LIST"+ptcnVoidPackagesMap.toString()+"}");
//Changed by Rohan on 16-07-13 for define map of ptcn for void packages.start //Changed by Rohan on 16-07-13 for define map of ptcn for void packages.start
if(refSer.equalsIgnoreCase("M-PICK") || refSer.equalsIgnoreCase("P-PICK") ) if(!(ptcnVoidPackagesMap.containsKey(ptcn)))
{ {
System.out.println("GOing for VOid PAckage::::::["+ptcnVoidPackagesMap+"]"); if(refSer.equalsIgnoreCase("M-PICK") || refSer.equalsIgnoreCase("P-PICK") )
if(!ptcnVoidPackagesMap.containsKey(ptcn));
{ {
ptcnVoidPackagesMap.put(ptcn,refSer); ptcnVoidPackagesMap.put(ptcn,refSer);
......
...@@ -23,8 +23,10 @@ import java.io.BufferedOutputStream; ...@@ -23,8 +23,10 @@ import java.io.BufferedOutputStream;
import java.io.BufferedWriter; import java.io.BufferedWriter;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.File; import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream; import java.io.FileOutputStream;
import java.io.FileWriter; import java.io.FileWriter;
import java.io.ObjectInputStream;
import java.io.ObjectOutput; import java.io.ObjectOutput;
import java.io.ObjectOutputStream; import java.io.ObjectOutputStream;
import java.io.OutputStream; import java.io.OutputStream;
...@@ -194,6 +196,11 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -194,6 +196,11 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
Set<String> psoLocationset = null; Set<String> psoLocationset = null;
Set<String> prsvLocationset = null; Set<String> prsvLocationset = null;
//Changed by Rohan on 04-07-13 for split active replanishment task based on configuration of disparam.start //Changed by Rohan on 04-07-13 for split active replanishment task based on configuration of disparam.start
//Global declared by Shipment2 shipment2 object
ADSIShippingLocator locator = null;
ADSIShippingSoap soap = null;
Shipment2 shipment2 = null;
public String process() throws RemoteException,ITMException public String process() throws RemoteException,ITMException
{ {
...@@ -784,6 +791,10 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -784,6 +791,10 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
retTabSepStrBuff.append( "<Detail2>\r\n" ); retTabSepStrBuff.append( "<Detail2>\r\n" );
retTabSepStrBuff.append( "<cust_code><![CDATA[" ).append(rs.getString(1)).append( "]]></cust_code>\r\n" ); retTabSepStrBuff.append( "<cust_code><![CDATA[" ).append(rs.getString(1)).append( "]]></cust_code>\r\n" );
retTabSepStrBuff.append( "<cust_name><![CDATA[" ).append(rs.getString(2)).append( "]]></cust_name>\r\n" ); retTabSepStrBuff.append( "<cust_name><![CDATA[" ).append(rs.getString(2)).append( "]]></cust_name>\r\n" );
// changed by sankara on 25-07-13 for sql select is changed in metadata start.....
retTabSepStrBuff.append( "<cust_code__dlv><![CDATA[" ).append(checkNull(rs.getString("CUST_CODE__DLV"))).append( "]]></cust_code__dlv>\r\n" );
retTabSepStrBuff.append( "<customer_cust_name><![CDATA[" ).append(checkNull(rs.getString("CUST_DLV_NAME"))).append( "]]></customer_cust_name>\r\n" );
// changed by sankara on 25-07-13 for sql select is changed in metadata end.....
retTabSepStrBuff.append( "<line_no><![CDATA[" ).append(rs.getString(3)).append( "]]></line_no>\r\n" ); retTabSepStrBuff.append( "<line_no><![CDATA[" ).append(rs.getString(3)).append( "]]></line_no>\r\n" );
retTabSepStrBuff.append( "<sale_order><![CDATA[" ).append(rs.getString(4)).append( "]]></sale_order>\r\n" ); retTabSepStrBuff.append( "<sale_order><![CDATA[" ).append(rs.getString(4)).append( "]]></sale_order>\r\n" );
System.out.println("Due Date Format===>>>>>>>>=="+rs.getDate(5)); System.out.println("Due Date Format===>>>>>>>>=="+rs.getDate(5));
...@@ -852,6 +863,17 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -852,6 +863,17 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
allocQty = balStockQty; allocQty = balStockQty;
balStockQty = 0; balStockQty = 0;
} }
// changed by sankara on 25-07-2013 for changeing in sql select in metadata start.......
pstmtHold.setString(1, itemCode);
pstmtHold.setString(2, siteCode);
rsHld = pstmtHold.executeQuery();
if(rsHld.next())
{
retTabSepStrBuff.append( "<hold_qty><![CDATA[" ).append(rsHld.getDouble(1)).append( "]]></hold_qty>\r\n" );
}
pstmtHold.clearParameters();
// changed by sankara on 25-07-2013 for changeing in sql select in metadata end.......
if(DefaultQtyFlag.equals("Y") && !"M".equalsIgnoreCase(allocFlag)) if(DefaultQtyFlag.equals("Y") && !"M".equalsIgnoreCase(allocFlag))
{ {
...@@ -863,8 +885,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -863,8 +885,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
retTabSepStrBuff.append( "<qty_alloc><![CDATA[" ).append("0.0").append( "]]></qty_alloc>\r\n" ); retTabSepStrBuff.append( "<qty_alloc><![CDATA[" ).append("0.0").append( "]]></qty_alloc>\r\n" );
} }
/* changed by sankara on 25-07-2013 already declared in above start....
pstmtHold.setString(1, itemCode); pstmtHold.setString(1, itemCode);
pstmtHold.setString(2, siteCode); pstmtHold.setString(2, siteCode);
rsHld = pstmtHold.executeQuery(); rsHld = pstmtHold.executeQuery();
...@@ -872,8 +894,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -872,8 +894,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
{ {
retTabSepStrBuff.append( "<hold_qty><![CDATA[" ).append(rsHld.getDouble(1)).append( "]]></hold_qty>\r\n" ); retTabSepStrBuff.append( "<hold_qty><![CDATA[" ).append(rsHld.getDouble(1)).append( "]]></hold_qty>\r\n" );
} }
pstmtHold.clearParameters(); pstmtHold.clearParameters();
changed by sankara on 25-07-2013 already declared in above end.... */
itemCodeMap.put(rs.getString(6), new Double(balStockQty)); itemCodeMap.put(rs.getString(6), new Double(balStockQty));
sordItemQty= rs.getDouble(8); sordItemQty= rs.getDouble(8);
balStk = balStockQtyTemp - pendQty ; balStk = balStockQtyTemp - pendQty ;
...@@ -922,8 +944,10 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -922,8 +944,10 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
retTabSepStrBuff.append( "<exp_lev><![CDATA[" ).append(rs.getString(13)).append( "]]></exp_lev>\r\n" ); retTabSepStrBuff.append( "<exp_lev><![CDATA[" ).append(rs.getString(13)).append( "]]></exp_lev>\r\n" );
retTabSepStrBuff.append( "<last_col><![CDATA[" ).append("").append( "]]></last_col>\r\n" ); retTabSepStrBuff.append( "<last_col><![CDATA[" ).append("").append( "]]></last_col>\r\n" );
retTabSepStrBuff.append( "<part_qty_real><![CDATA[" ).append(partQty).append( "]]></part_qty_real>\r\n" ); retTabSepStrBuff.append( "<part_qty_real><![CDATA[" ).append(partQty).append( "]]></part_qty_real>\r\n" );
/* changed by sankara on 25/07/13 cust_code_dlv,name already declared in above start....
retTabSepStrBuff.append( "<cust_code__dlv><![CDATA[" ).append(checkNull(rs.getString("CUST_CODE__DLV"))).append( "]]></cust_code__dlv>\r\n" ); retTabSepStrBuff.append( "<cust_code__dlv><![CDATA[" ).append(checkNull(rs.getString("CUST_CODE__DLV"))).append( "]]></cust_code__dlv>\r\n" );
retTabSepStrBuff.append( "<customer_cust_name><![CDATA[" ).append(checkNull(rs.getString("CUST_DLV_NAME"))).append( "]]></customer_cust_name>\r\n" ); retTabSepStrBuff.append( "<customer_cust_name><![CDATA[" ).append(checkNull(rs.getString("CUST_DLV_NAME"))).append( "]]></customer_cust_name>\r\n" );
changed by sankara on 25/07/13 cust_code_dlv,name already declared in above end.... */
retTabSepStrBuff.append( "</Detail2>\r\n" ); retTabSepStrBuff.append( "</Detail2>\r\n" );
} }
}while(rs.next()); }while(rs.next());
...@@ -1135,7 +1159,6 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -1135,7 +1159,6 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
} }
return resultString; return resultString;
} }
/*public String getData(Document headerDom, Document detailDom, String windowName, String xtraParams) throws RemoteException,ITMException /*public String getData(Document headerDom, Document detailDom, String windowName, String xtraParams) throws RemoteException,ITMException
{ {
...@@ -2790,6 +2813,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -2790,6 +2813,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
conn = connDriver.getConnectDB("DriverITM"); conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false); conn.setAutoCommit(false);
connDriver = null; connDriver = null;
shipment2 = null;
if(directPickLoc != null && directPickLoc.length() > 0) if(directPickLoc != null && directPickLoc.length() > 0)
{ {
...@@ -6220,6 +6244,24 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -6220,6 +6244,24 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
/*String packRefId = updateWaveTaskDet(waveId,3,conn); /*String packRefId = updateWaveTaskDet(waveId,3,conn);
updatePacking( headerDom, detailDom, waveId,saleOrder,packRefId,xtraParams, conn);*/ updatePacking( headerDom, detailDom, waveId,saleOrder,packRefId,xtraParams, conn);*/
if(errString == null || errString.trim().length() == 0)
{
if(shipment2 != null && shipment2.getPackages2() != null)
{
if("P".equalsIgnoreCase(waveMode))
{
errString = updateTRackingNo(saleOrder, ptcnID, waveId, tranCode, conn);
}
shipment2 = null;
}
}
else
{
return errString;
}
if (errString == null || errString.trim().length() == 0) if (errString == null || errString.trim().length() == 0)
{ {
String dspRefId = updateWaveTaskDet(waveId,4,saleOrder,"","",ptcnID,conn); String dspRefId = updateWaveTaskDet(waveId,4,saleOrder,"","",ptcnID,conn);
...@@ -6569,15 +6611,15 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -6569,15 +6611,15 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
TreeMap activeListItemWizMap = new TreeMap<String, ArrayList<HashMap>>(); TreeMap activeListItemWizMap = new TreeMap<String, ArrayList<HashMap>>();
ArrayList newTempActPickList = null; ArrayList newTempActPickList = null;
//Changed By Rekha WM3BSUN006 20/05/13 To get the SOAP connection.start //Changed By Rekha WM3BSUN006 20/05/13 To get the SOAP connection.start
ADSIShippingLocator locator = null; /*ADSIShippingLocator locator = null;
ADSIShippingSoap soap = null; ADSIShippingSoap soap = null;*/
Shipment2 shipment2 = null; //Shipment2 shipment2 = null;
Address recipient = null; Address recipient = null;
Package2 pkg2 = null; Package2 pkg2 = null;
CommodityInfo comInfo = null; CommodityInfo comInfo = null;
Package2[] packgeList = null; Package2[] packgeList = null;
ArrayList<CommodityInfo> comodityInfoList = new ArrayList<CommodityInfo>(); ArrayList<CommodityInfo> comodityInfoList = new ArrayList<CommodityInfo>();
String imagePath =null;
String adsiShippingURL = ""; String adsiShippingURL = "";
String siteCodeShip = "",stateCodeDlv = "" String siteCodeShip = "",stateCodeDlv = ""
,custName="",custShName = "",shipCity="",shipCountry = "",shipAdd1 = "",shipAdd2 = "", ,custName="",custShName = "",shipCity="",shipCountry = "",shipAdd1 = "",shipAdd2 = "",
...@@ -8214,10 +8256,14 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -8214,10 +8256,14 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//if("Y".equalsIgnoreCase(mPackAllow) || "Y".equalsIgnoreCase(pPickAllow)) //if("Y".equalsIgnoreCase(mPackAllow) || "Y".equalsIgnoreCase(pPickAllow))
if( ("Y".equalsIgnoreCase(mPackAllow) || "Y".equalsIgnoreCase(pPickAllow))) if( ("Y".equalsIgnoreCase(mPackAllow) || "Y".equalsIgnoreCase(pPickAllow)))
{ {
adsiShippingURL = discommon.getDisparams("999999","WMS_ADSI_SOAP_URL",conn);
long timeBefore = System.currentTimeMillis(); long timeBefore = System.currentTimeMillis();
locator = new ADSIShippingLocator(); if(soap == null)
soap = locator.getADSIShippingSoap(new URL(adsiShippingURL)); {
adsiShippingURL = discommon.getDisparams("999999","WMS_ADSI_SOAP_URL",conn);
locator = new ADSIShippingLocator();
soap = locator.getADSIShippingSoap(new URL(adsiShippingURL));
}
long timeAfter = System.currentTimeMillis(); long timeAfter = System.currentTimeMillis();
String defPh=""; String defPh="";
System.out.println("Differance In Tme for connecting to ADSI Server time differance in seconds["+(timeAfter-timeBefore)/1000+"]"); System.out.println("Differance In Tme for connecting to ADSI Server time differance in seconds["+(timeAfter-timeBefore)/1000+"]");
...@@ -8225,106 +8271,118 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -8225,106 +8271,118 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
if(soap.testADSIServer()) if(soap.testADSIServer())
{ {
System.out.println("---ADSI Server Connected---"); System.out.println("---ADSI Server Connected---");
shipment2 = new Shipment2(); //imagePath = discommon.getDisparams("999999","SHIP_WITH_PATH",conn);
//File file = new File(imagePath+ File.separator+"Ship_Label"+File.separator+ ptcn + File.separator + ptcn+"_"+"Ship"+".ser" );
recipient = new Address();//To set the Address if(shipment2 != null)
custName = (String)transportInfoMap.get("CUST_NAME"); {
custShName = (String)transportInfoMap.get("SH_NAME"); /*FileInputStream fis = new FileInputStream(imagePath+ File.separator+"Ship_Label"+File.separator+ ptcn + File.separator + ptcn+"_"+"Ship"+".ser" );
shipAdd1 = (String)transportInfoMap.get("ADDR1"); ObjectInputStream ois = new ObjectInputStream(fis);
shipAdd2 = (String)transportInfoMap.get("ADDR2"); System.out.println(" file loaded ");
shipAdd3 = (String)transportInfoMap.get("ADDR3"); shipment2 = (Shipment2) ois.readObject(); */
shipCity = (String)transportInfoMap.get("CITY"); System.out.println("Existing Package Returned Length ["+shipment2.getPackages2().length+"]" );
stateCodeDlv = (String)transportInfoMap.get("STATE_DLV"); }
shipCountry = (String)transportInfoMap.get("COUNT_CODE"); else
shipPh = (String)transportInfoMap.get("PHONE"); {
shipMailId = (String)transportInfoMap.get("EMAIL_ID"); shipment2 = new Shipment2();
shipFax = (String)transportInfoMap.get("FAX"); recipient = new Address();//To set the Address
custPord = (String)transportInfoMap.get("CUST_PORD"); custName = (String)transportInfoMap.get("CUST_NAME");
serviceCode = (String)transportInfoMap.get("SERVICE_CODE"); custShName = (String)transportInfoMap.get("SH_NAME");
pin = (String)transportInfoMap.get("PIN"); shipAdd1 = (String)transportInfoMap.get("ADDR1");
shipmentType = (String)transportInfoMap.get("SHIPMENT_TYPE"); shipAdd2 = (String)transportInfoMap.get("ADDR2");
//Setting Shipment ID shipAdd3 = (String)transportInfoMap.get("ADDR3");
shipment2.setID(waveId); shipCity = (String)transportInfoMap.get("CITY");
recipient.setID(custCodeDlv);//Customer Code stateCodeDlv = (String)transportInfoMap.get("STATE_DLV");
recipient.setContact(custName);//Customer Name shipCountry = (String)transportInfoMap.get("COUNT_CODE");
recipient.setCompany(custShName);//Customer Company Name shipPh = (String)transportInfoMap.get("PHONE");
recipient.setAddress1(shipAdd1);//Customer Adress1 shipMailId = (String)transportInfoMap.get("EMAIL_ID");
recipient.setAddress2(shipAdd2);//Customer Adress2 shipFax = (String)transportInfoMap.get("FAX");
recipient.setAddress3(shipAdd3);//Customer Adress3 custPord = (String)transportInfoMap.get("CUST_PORD");
recipient.setCity(shipCity);//Customer Adress City serviceCode = (String)transportInfoMap.get("SERVICE_CODE");
recipient.setState(stateCodeDlv);//Customer Adress State pin = (String)transportInfoMap.get("PIN");
Country country = soap.getCountry("ISO3", shipCountry).getResponseCountry(); shipmentType = (String)transportInfoMap.get("SHIPMENT_TYPE");
recipient.setCountry(country);//Customer Adress Country //Setting Shipment ID
shipment2.setID(waveId);
defPh = discommon.getDisparams("999999","SHIPPER_DEFAULT_PH",conn); recipient.setID(custCodeDlv);//Customer Code
if(shipPh == null || shipPh.trim().length()== 0) recipient.setContact(custName);//Customer Name
{ recipient.setCompany(custShName);//Customer Company Name
recipient.setPhone(defPh); recipient.setAddress1(shipAdd1);//Customer Adress1
} recipient.setAddress2(shipAdd2);//Customer Adress2
else recipient.setAddress3(shipAdd3);//Customer Adress3
{ recipient.setCity(shipCity);//Customer Adress City
recipient.setPhone(shipPh); recipient.setState(stateCodeDlv);//Customer Adress State
} Country country = soap.getCountry("ISO3", shipCountry).getResponseCountry();
recipient.setCountry(country);//Customer Adress Country
System.out.println("phone no is: "+recipient.getPhone());
recipient.setEMail(shipMailId); defPh = discommon.getDisparams("999999","SHIPPER_DEFAULT_PH",conn);
recipient.setFax(shipFax); if(shipPh == null || shipPh.trim().length()== 0)
recipient.setPostalCode(pin); {
System.out.println("pin code is :"+recipient.getPostalCode()); recipient.setPhone(defPh);
shipment2.setRecipient(recipient); }
System.out.println("service code "+serviceCode); else
//HardCoded valus needs to be change later. {
com.adsionline.ADSIShippingWS.Service service = new com.adsionline.ADSIShippingWS.Service(); recipient.setPhone(shipPh);
//service.setFriendlyName(serviceCode); }
service.setFriendlyName(serviceCode);
System.out.println("phone no is: "+recipient.getPhone());
//service.setSymbol(serviceCode); recipient.setEMail(shipMailId);
//System.out.println("Service symbol is :"+service.getSymbol()); recipient.setFax(shipFax);
shipment2.setService(service); recipient.setPostalCode(pin);
System.out.println("Service name is :"+shipment2.getService()); System.out.println("pin code is :"+recipient.getPostalCode());
System.out.println("Service code is :"+serviceCode); shipment2.setRecipient(recipient);
System.out.println("service code "+serviceCode);
shipment2.setTerms(EnumTerms.trmSHIPPER); //HardCoded valus needs to be change later.
//HardCoded valus needs to be change later. com.adsionline.ADSIShippingWS.Service service = new com.adsionline.ADSIShippingWS.Service();
//service.setFriendlyName(serviceCode);
service.setFriendlyName(serviceCode);
shipment2.setSignatureReleaseFlag(false);//false As per Taro
shipment2.setSignatureRequiredFlag(false);//true Required As per Taro //service.setSymbol(serviceCode);
shipment2.setSaturdayDeliveryFlag(false);// Taro Need To clerify "what is based on service level?" //System.out.println("Service symbol is :"+service.getSymbol());
shipment2.setService(service);
java.util.Date date = new java.util.Date(); System.out.println("Service name is :"+shipment2.getService());
Calendar calendar = Calendar.getInstance(); System.out.println("Service code is :"+serviceCode);
calendar.setTime(date);
shipment2.setShipDate(calendar); shipment2.setTerms(EnumTerms.trmSHIPPER);
//HardCoded valus needs to be change later.
shipment2.setConsigneeAccount("");//Not Required As per Taro
shipment2.setThirdPartyBillingFlag(false);//Not Required As per Taro
shipment2.setThirdPartyBillingAccount("");//Not Required As per Taro shipment2.setSignatureReleaseFlag(false);//false As per Taro
Address addrs = new Address();//Need to capture if required shipment2.setSignatureRequiredFlag(false);//true Required As per Taro
shipment2.setThirdPartyBillingAddress(addrs);//Not Required As per Taro shipment2.setSaturdayDeliveryFlag(false);// Taro Need To clerify "what is based on service level?"
shipment2.setHALFlag(false);//Need clarification from Taro java.util.Date date = new java.util.Date();
shipment2.setHALAddress(addrs);//Need clarification from Taro Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
shipment2.setManifestAction(EnumManifestAction.maRELEASE);//As per taro by default its maRELEASE shipment2.setShipDate(calendar);
shipment2.setConsigneeAccount("");//Not Required As per Taro
shipment2.setConsigneeBillingFlag(false);//As per Taro Not Required shipment2.setThirdPartyBillingFlag(false);//Not Required As per Taro
shipment2.setConsigneeBillingFlag(false);//As per Taro Not Required shipment2.setThirdPartyBillingAccount("");//Not Required As per Taro
shipment2.setShipperReference(ptcn);//As per Taro use PTCN(Pick Ticket Control No) Address addrs = new Address();//Need to capture if required
shipment2.setConsigneeReference(custPord);//As per Taro it is sorder.cust_pord shipment2.setThirdPartyBillingAddress(addrs);//Not Required As per Taro
if(shipmentType != null && shipmentType.trim().length() > 0) shipment2.setHALFlag(false);//Need clarification from Taro
{ shipment2.setHALAddress(addrs);//Need clarification from Taro
shipment2.setShipperName(shipmentType);
} shipment2.setManifestAction(EnumManifestAction.maRELEASE);//As per taro by default its maRELEASE
else
{
shipment2.setShipperName("Taro Commercial");//Needs to change after clarity shipment2.setConsigneeBillingFlag(false);//As per Taro Not Required
} shipment2.setConsigneeBillingFlag(false);//As per Taro Not Required
shipment2.setShipperReference(ptcn);//As per Taro use PTCN(Pick Ticket Control No)
shipment2.setTimeInTransit(EnumTimeInTransit.tntFOREVER);//As per taro its tntFOREVER shipment2.setConsigneeReference(custPord);//As per Taro it is sorder.cust_pord
shipment2.setSaturdayDeliveryFlag(false);//Need to discuss with Taro
if(shipmentType != null && shipmentType.trim().length() > 0)
{
shipment2.setShipperName(shipmentType);
}
else
{
shipment2.setShipperName("Taro Commercial");//Needs to change after clarity
}
shipment2.setTimeInTransit(EnumTimeInTransit.tntFOREVER);//As per taro its tntFOREVER
shipment2.setSaturdayDeliveryFlag(false);//Need to discuss with Taro
}
} }
else else
...@@ -9889,10 +9947,37 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -9889,10 +9947,37 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
double slength = 0; double slength = 0;
double width =0; double width =0;
double height=0; double height=0;
packgeList = new Package2[allMasterListlen]; int existPackageLen = 0;
//packgeList = new Package2[allMasterListlen];
if(shipment2.getPackages2() != null)
{
existPackageLen = shipment2.getPackages2().length;
}
if(existPackageLen > 0)
{
System.out.println("Existing packages1["+existPackageLen+"]");
Package2[] existPack2 = shipment2.getPackages2();
packgeList = new Package2[allMasterListlen + existPackageLen];
for(int pCtr = 0;pCtr < existPackageLen ;pCtr ++)
{
System.out.println("Existing ID["+existPack2[pCtr].getID()+"]pCtr["+pCtr+"]");
packgeList[pCtr] = existPack2[pCtr];
}
}
else
{
System.out.println("Existing packages2["+existPackageLen+"]");
packgeList = new Package2[allMasterListlen];
}
sqlSize = "SELECT LENGTH , WIDTH , HEIGHT FROM PACKING WHERE PACK_CODE = (SELECT PACK_CODE FROM CARTON_MASTER WHERE CARTON_NO = ? )"; sqlSize = "SELECT LENGTH , WIDTH , HEIGHT FROM PACKING WHERE PACK_CODE = (SELECT PACK_CODE FROM CARTON_MASTER WHERE CARTON_NO = ? )";
pstmt2 = conn.prepareStatement(sqlSize); pstmt2 = conn.prepareStatement(sqlSize);
System.out.println("Started len["+existPackageLen+"]total length ["+allMasterListlen + existPackageLen+"]master len["+allMasterListlen+"]");
for(int j = 0 ;j < allMasterListlen ; j++) for(int j = 0 ;j < allMasterListlen ; j++)
{ {
...@@ -10079,7 +10164,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -10079,7 +10164,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//infoCom[0] = comInfo; //infoCom[0] = comInfo;
pkg2.setCommodityInfos(infoCom); pkg2.setCommodityInfos(infoCom);
packgeList[j] = pkg2; packgeList[j + existPackageLen] = pkg2;
} }
...@@ -10116,9 +10201,12 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -10116,9 +10201,12 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
String lotHeight = null; String lotHeight = null;
TreeMap<String, String> tempMap = new TreeMap<String, String> (); TreeMap<String, String> tempMap = new TreeMap<String, String> ();
System.out.println("parcel pick value is in try :"+pPickAllow); System.out.println("parcel pick value is in try :"+pPickAllow);
sqlQuery = "SELECT ITEM_CODE,CARTON_NO FROM CARTON_MASTER WHERE PTCN = ? AND CARTON_TYPE ='P' ORDER BY CARTON_NO";
sqlQuery = "SELECT ITEM_CODE,CARTON_NO FROM CARTON_MASTER WHERE PTCN = ? AND CARTON_TYPE ='P' AND PICK_ORDER = ? ORDER BY CARTON_NO";
pstmt1 = conn.prepareStatement(sqlQuery); pstmt1 = conn.prepareStatement(sqlQuery);
pstmt1.setString(1, ptcn); pstmt1.setString(1, ptcn);
pstmt1.setString(2, pickRefId);
rs = pstmt1.executeQuery(); rs = pstmt1.executeQuery();
while(rs.next()) while(rs.next())
...@@ -10145,21 +10233,51 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -10145,21 +10233,51 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
Iterator itemIterator= keySetCarton.iterator(); Iterator itemIterator= keySetCarton.iterator();
int n=tempMap.size(); int n=tempMap.size();
int existPackageLen = 0;
System.out.println("temp map Size"+n+"[["+tempMap.toString()+"]");
//packgeList = new Package2[allMasterListlen];
if(shipment2.getPackages2() != null)
{
existPackageLen = shipment2.getPackages2().length;
}
//packgeList = new Package2[n];
if(existPackageLen > 0)
{
System.out.println("Existing packages1["+existPackageLen+"]"+"N length"+n);
Package2[] existPack2 = shipment2.getPackages2();
packgeList = new Package2[n + existPackageLen];
for(int pCtr = 0;pCtr < existPackageLen ;pCtr ++)
{
System.out.println("Existing ID["+existPack2[pCtr].getID()+"]pCtr["+pCtr+"]");
packgeList[pCtr] = existPack2[pCtr];
}
}
else
{
System.out.println("Existing packages2["+existPackageLen+"]"+"N lenght"+n);
packgeList = new Package2[n];
}
String masterCartonNo = ""; String masterCartonNo = "";
packgeList = new Package2[n];
int Ctr=0; int Ctr=0;
String tempItem = ""; String tempItem = "";
String tempKey = ""; String tempKey = "";
String tempValue = ""; String tempValue = "";
int cnt=0; int cnt=0;
//Changed by Rohan on 25-07-13 for bug fixing.start
while(itemIterator.hasNext()) while(itemIterator.hasNext())
{ {
System.out.println("Ctr=================="+Ctr);
tempKey = (String)itemIterator.next(); tempKey = (String)itemIterator.next();
tempValue =(String)tempMap.get(tempKey); tempValue =(String)tempMap.get(tempKey);
System.out.println("parcel pick value is in while :"+tempKey+"]["+tempValue); System.out.println("parcel pick value is in while :"+tempKey+"]["+tempValue+"ctr:::::"+Ctr);
if(!tempItem.equalsIgnoreCase(tempValue)) if(!tempItem.equalsIgnoreCase(tempValue))
{ {
...@@ -10244,14 +10362,15 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -10244,14 +10362,15 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
comInfo.setExportNumberExpireDate(calendar); comInfo.setExportNumberExpireDate(calendar);
comInfo.setUnitOfMeasure(EnumUnitOfMeasure.uomLB); comInfo.setUnitOfMeasure(EnumUnitOfMeasure.uomLB);
infoCom1[0] = comInfo; infoCom1[0] = comInfo;
pkg2.setCommodityInfos(infoCom1); pkg2.setCommodityInfos(infoCom1);
packgeList[Ctr]=pkg2; System.out.println("Ctr"+Ctr+"existPackageLen"+existPackageLen+"]");
packgeList[Ctr + existPackageLen]=pkg2;
//Changed by Rohan on 25-07-13 for bug fixing.start
Ctr++; Ctr++;
System.out.println("going for nex for loop====>"+Ctr+"]");
} }
//Ctr = Ctr - 1;
System.out.println("parcel pick value is in next while"+Ctr); System.out.println("parcel pick value is in next while"+(Ctr));
} }
//Change by rekha on 21-05-13 end //Change by rekha on 21-05-13 end
...@@ -11584,11 +11703,14 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -11584,11 +11703,14 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//change by rekha on 23-05-13 start //change by rekha on 23-05-13 start
//if(packgeList.length != 0 || packgeList.length > 0) //if(packgeList.length != 0 || packgeList.length > 0)
if("P".equalsIgnoreCase(waveMode) && packgeList != null && packgeList.length > 0) //if("P".equalsIgnoreCase(waveMode) && packgeList != null && packgeList.length > 0)
if(packgeList != null && packgeList.length > 0)
{ {
BASE64Decoder decoder = new BASE64Decoder();
Timestamp currDate = new Timestamp(System.currentTimeMillis());
shipment2.setPackages2(packgeList); shipment2.setPackages2(packgeList);
/*BASE64Decoder decoder = new BASE64Decoder();
Timestamp currDate = new Timestamp(System.currentTimeMillis());
//Changed By Pragyan as 11-jul-13 suggested by brian change it to default rotation //Changed By Pragyan as 11-jul-13 suggested by brian change it to default rotation
//ShipmentResultReturn2 objReturn2 = soap.shipWithLabel(shipment2, ShipWithLabelType.PNG, ImageRotation.Rotation_180); //ShipmentResultReturn2 objReturn2 = soap.shipWithLabel(shipment2, ShipWithLabelType.PNG, ImageRotation.Rotation_180);
ShipmentResultReturn2 objReturn2 = soap.shipWithLabel(shipment2, ShipWithLabelType.PNG, ImageRotation.Rotation_Default); ShipmentResultReturn2 objReturn2 = soap.shipWithLabel(shipment2, ShipWithLabelType.PNG, ImageRotation.Rotation_Default);
...@@ -11613,7 +11735,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -11613,7 +11735,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
String trackNo=""; String trackNo="";
double msnNo=0.0; double msnNo=0.0;
ResultSet rs = null ; ResultSet rs = null ;
String imagePath =null;
serviceSymbol = objShipResult.getServiceSymbol(); serviceSymbol = objShipResult.getServiceSymbol();
System.out.println("serviceSymbol["+serviceSymbol+"]"); System.out.println("serviceSymbol["+serviceSymbol+"]");
carrierSymbol = serviceSymbol.substring(0,serviceSymbol.lastIndexOf(".") ); carrierSymbol = serviceSymbol.substring(0,serviceSymbol.lastIndexOf(".") );
...@@ -11636,8 +11758,11 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -11636,8 +11758,11 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
} }
System.out.println("Carrier Symbol ["+carrierFriendlyName+"]"); System.out.println("Carrier Symbol ["+carrierFriendlyName+"]");
String cnumber = "";
//imagePath = discommon.getDisparams("999999","SHIP_WITH_PATH",conn);
String addName = "";
String addValue = "";
imagePath = discommon.getDisparams("999999","SHIP_WITH_PATH",conn);
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];
...@@ -11645,14 +11770,23 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -11645,14 +11770,23 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
pckgId = pkg2frm.getPackageID(); pckgId = pkg2frm.getPackageID();
//change by rekha on 23-05-13.start //change by rekha on 23-05-13.start
pkg2frm.getAdditionalFields(); pkg2frm.getAdditionalFields();
trackNo = pkg2frm.getTrackingNumber(); trackNo = pkg2frm.getTrackingNumber();
cnumber = "";
for(int Cadd=0;Cadd<pkg2frm.getAdditionalFields().length;Cadd++) for(int Cadd=0;Cadd<pkg2frm.getAdditionalFields().length;Cadd++)
{ {
System.out.println("additional fields are Name:"+pkg2frm.getAdditionalFields()[Cadd].getName()); addName = pkg2frm.getAdditionalFields()[Cadd].getName();
System.out.println("additional fields are Value:"+pkg2frm.getAdditionalFields()[Cadd].getValue()); addValue = pkg2frm.getAdditionalFields()[Cadd].getValue();
System.out.println("additional fields are Name:"+addName);
System.out.println("additional fields are Value:"+addValue);
if(addName.equalsIgnoreCase("carton_no"))
{
cnumber = addValue;
}
} }
//change by rekha on 23-05-13. end //change by rekha on 23-05-13. end
String cnumber = (String) masterOrParclNoList.get(pCtr); //String cnumber = (String) masterOrParclNoList.get(pCtr);
System.out.println("cnumber is :"+cnumber); System.out.println("cnumber is :"+cnumber);
System.out.println("Package ID["+pckgId+"]"); System.out.println("Package ID["+pckgId+"]");
...@@ -11680,8 +11814,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -11680,8 +11814,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
} }
//UPDATE CARTON MASTER TRACKING NO , IMAGENAME PATH, //UPDATE CARTON MASTER TRACKING NO , IMAGENAME PATH,
/*sql = "UPDATE CARTON_MASTER SET TRACKING_NO = ? , SHIP_LABEL= ? , MSN_NO =?" sql = "UPDATE CARTON_MASTER SET TRACKING_NO = ? , SHIP_LABEL= ? , MSN_NO =?"
+ " WHERE CARTON_NO = ?"; */ + " WHERE CARTON_NO = ?";
sql = "UPDATE CARTON_MASTER SET TRACKING_NO = ? , SHIP_LABEL= ? , MSN_NO =?,CARRIER_SYMBOL = ? , CARRIER_FRIENDLYNAME = ?" sql = "UPDATE CARTON_MASTER SET TRACKING_NO = ? , SHIP_LABEL= ? , MSN_NO =?,CARRIER_SYMBOL = ? , CARRIER_FRIENDLYNAME = ?"
+ " WHERE CARTON_NO = ?"; + " WHERE CARTON_NO = ?";
pstmtCart = conn.prepareStatement(sql); pstmtCart = conn.prepareStatement(sql);
...@@ -11755,7 +11889,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -11755,7 +11889,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
tranId = getTranId("w_wave_stat_org", conn); tranId = getTranId("w_wave_stat_org", conn);
/*serviceSymbol = objShipResult.getServiceSymbol(); serviceSymbol = objShipResult.getServiceSymbol();
System.out.println("serviceSymbol["+serviceSymbol+"]"); System.out.println("serviceSymbol["+serviceSymbol+"]");
carrierSymbol = serviceSymbol.substring(0,serviceSymbol.lastIndexOf(".") ); carrierSymbol = serviceSymbol.substring(0,serviceSymbol.lastIndexOf(".") );
System.out.println("Carrier Symbol ["+carrierSymbol+"]"); System.out.println("Carrier Symbol ["+carrierSymbol+"]");
...@@ -11777,7 +11911,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -11777,7 +11911,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
} }
}*/ }
...@@ -11897,7 +12031,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -11897,7 +12031,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
// change by rekha on 29-05-13 end // change by rekha on 29-05-13 end
} }*/
} }
...@@ -12006,6 +12140,343 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -12006,6 +12140,343 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
} }
//Changed by sumit sarkar on 26/08/2011 [ WM1ESUN006 ] update pick_ord_hrd & pick_ord_det table end. //Changed by sumit sarkar on 26/08/2011 [ WM1ESUN006 ] update pick_ord_hrd & pick_ord_det table end.
private String updateTRackingNo(String saleOrder,String ptcn,String waveID,String tranCode,Connection conn)
{
String errString = "";
String imagePath = "";
String tranId="";
String sqlInsertDt = null;
int lineNo = 1;
String cartonNo = "";
String pickOrder = "";
String refSer = "";
String refId = "";
String cartonType = "";
String packCode = "";
String masterCarton = "";
String itmCode = "";
String weight = "";
String trackingNo = "";
String shipLabel = "";
String lineNoPick = "";
String new_trackingNo = "";
String new_shipLabel = "";
String cnumber = "";
String addName = "";
String addValue = "";
String serviceSymbol = "";
String carrierSymbol = "";
String carrierFriendlyName = "";
String value = "";
String pckgId = "";
String trackNo="";
double msnNo=0.0;
double itemWeight = 0.0,caseWeight = 0.0;
PreparedStatement pstmt = null;
PreparedStatement pstmtCart = null;
PreparedStatement pstmtInsertData = null;
PreparedStatement pstmtInsertData1 = null;
PreparedStatement pstmtInsertTran = null;
PreparedStatement pstmtDt = null;
ResultSet rsD = null;
ResultSet rs = null ;
HashMap itmVolumeMap = null;
try
{
imagePath = discommon.getDisparams("999999","SHIP_WITH_PATH",conn);
BASE64Decoder decoder = new BASE64Decoder();
Timestamp currDate = new Timestamp(System.currentTimeMillis());
ShipmentResultReturn2 objReturn2 = soap.shipWithLabel(shipment2, ShipWithLabelType.PNG, ImageRotation.Rotation_Default);
ShipmentResult2 objShipResult = objReturn2.getShipmentResultResponse2();
int lenPacakges = objShipResult.getPackageResults2().length;
System.out.println("Is successfully Executed ["+objReturn2.isSuccess()+"]");
System.out.println("Message String ["+objReturn2.getMessage()+"]");
if(!objReturn2.isSuccess())
{
errString = getError(saleOrder + "[" + objReturn2.getMessage() +"]", "ADSISRVERR", conn);
return errString;
}
else
{
serviceSymbol = objShipResult.getServiceSymbol();
System.out.println("serviceSymbol["+serviceSymbol+"]");
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 Symbol ["+carrierFriendlyName+"]");
for(int pCtr=0;pCtr < lenPacakges;pCtr++)
{
PackageResult2 pkg2frm = (PackageResult2)objShipResult.getPackageResults2()[pCtr];
value = pkg2frm.getBase64Label();
pckgId = pkg2frm.getPackageID();
//change by rekha on 23-05-13.start
pkg2frm.getAdditionalFields();
trackNo = pkg2frm.getTrackingNumber();
cnumber = "";
for(int Cadd=0;Cadd<pkg2frm.getAdditionalFields().length;Cadd++)
{
addName = pkg2frm.getAdditionalFields()[Cadd].getName();
addValue = pkg2frm.getAdditionalFields()[Cadd].getValue();
System.out.println("additional fields are Name:"+addName);
System.out.println("additional fields are Value:"+addValue);
if(addName.equalsIgnoreCase("carton_no"))
{
cnumber = addValue;
}
}
System.out.println("cnumber is :"+cnumber);
System.out.println("Package ID["+pckgId+"]");
System.out.println("Tracking No ["+pkg2frm.getTrackingNumber()+"]");
System.out.println("BASE64lABEL Length["+value.length()+"]");
System.out.println("Package id for carton no is :[" +decoder.decodeBuffer(pckgId) +"]");
msnNo = pkg2frm.getMSN();
System.out.println("MSN NO IN EACH PACKAGE IS :" +msnNo);
byte[] imgBytes = decoder.decodeBuffer(value);
System.out.println("IMAGE Byte Length ["+imgBytes.length+"]");
BufferedImage bufImg = ImageIO.read(new ByteArrayInputStream(imgBytes));
File imgOutFile = new File(imagePath+ File.separator+"Ship_Label"+File.separator+ ptcn + File.separator + ptcn+"_"+cnumber +".png");
String path = imgOutFile.getPath();
System.out.println("Get Path ["+path+"]");
File createFolder = new File(path);
if(!createFolder.exists())
{
createFolder.mkdirs();
}
sql = "UPDATE CARTON_MASTER SET TRACKING_NO = ? , SHIP_LABEL= ? , MSN_NO =?,CARRIER_SYMBOL = ? , CARRIER_FRIENDLYNAME = ?"
+ " WHERE CARTON_NO = ?";
pstmtCart = conn.prepareStatement(sql);
pstmtCart.setString(1, trackNo);
pstmtCart.setString(2, path );
pstmtCart.setDouble(3, msnNo);
pstmtCart.setString(4, carrierSymbol);
pstmtCart.setString(5, carrierFriendlyName);
pstmtCart.setString(6, cnumber);
System.out.println("carton number in for loop: "+cnumber);
System.out.println("msn no for pkg result is :" +msnNo);
int test = pstmtCart.executeUpdate();
System.out.println("update statement is :"+test);
if(test==1)
{
System.out.println("updated");
}
else
{
System.out.println("not updated");
}
imgOutFile.createNewFile();
ImageIO.write(bufImg, "png", imgOutFile);
System.out.println("Write File Complete----");
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
OutputStream file = new FileOutputStream(imagePath+ File.separator+"Ship_Label"+File.separator+ ptcn + File.separator + ptcn+"_"+"Ship"+".ser" );
OutputStream buffer = new BufferedOutputStream( file );
ObjectOutput output = new ObjectOutputStream( buffer );
output.writeObject(shipment2);
output.flush();
output.close();
file = new FileOutputStream( imagePath+ File.separator+"Ship_Label"+File.separator+ ptcn + File.separator + ptcn+"_"+"ShipRslt"+".ser" );
buffer = new BufferedOutputStream( file );
output = new ObjectOutputStream( buffer );
output.writeObject(objReturn2);
output.flush();
output.close();
//String windowName="w_wave_stat_org";
tranId = getTranId("w_wave_stat_org", conn);
sqlInsertData = "INSERT INTO WAVE_STATUS_ORG (TRAN_ID, WAVE_ID,TRAN_CODE,PTCN,CHG_USER,CHG_DATE,CHG_TERM,PRINT_STATUS,CARRIER_SYMBOL,CARRIER_FRIENDLYNAME)"+
" VALUES (?,?,?,?,?,?,?,?,?,?)";
pstmtInsertData = conn.prepareStatement(sqlInsertData);
pstmtInsertData.setString(1,tranId);
pstmtInsertData.setString(2,waveID);
pstmtInsertData.setString(3,tranCode);
pstmtInsertData.setString(4,ptcn);
pstmtInsertData.setString(5,chgUser);
pstmtInsertData.setTimestamp(6,currDate);
pstmtInsertData.setString(7,chgTerm);
pstmtInsertData.setString(8,"Y");
pstmtInsertData.setString(9,carrierSymbol);
pstmtInsertData.setString(10,carrierFriendlyName);
//Chnaged by sumit on 03/04/12
pstmtInsertData.addBatch();
sqlInsertDt = "SELECT CARTON_NO,PICK_ORDER,LINE_NO__PICK,CARTON_TYPE,PACK_CODE,MASTER_CARTON,ITEM_CODE,TRACKING_NO,SHIP_LABEL FROM CARTON_MASTER WHERE PTCN = ? ORDER BY ITEM_CODE";
sqlInsertData1 = "INSERT INTO WAVE_STATUS_ORG_DET (TRAN_ID, LINE_NO,PTCN,CARTON_NO," +
" PICK_ORDER, LINE_NO__PICK ,REF_SER, REF_ID, " +
" CARTON_TYPE,PACK_CODE,MASTER_CARTON,ITEM_CODE, " +
"WEIGHT,TRACKING_NO, SHIP_LABEL )"+
" VALUES (?,?, ?,?, ?,?, ?,?, ?,?, ?,? , ?,?, ?)";
pstmtInsertData1 = conn.prepareStatement(sqlInsertData1);
pstmtDt = conn.prepareStatement(sqlInsertDt);
pstmtDt.setString(1, ptcn);
rsD = pstmtDt.executeQuery();
ArrayList test = new ArrayList();
String tempItem = "";
while(rsD.next())
{
cartonNo = rsD.getString("CARTON_NO");
pickOrder = rsD.getString("PICK_ORDER");
lineNoPick = rsD.getString("LINE_NO__PICK");
cartonType = rsD.getString("CARTON_TYPE");
packCode = rsD.getString("PACK_CODE");
masterCarton = rsD.getString("MASTER_CARTON");
itmCode = rsD.getString("ITEM_CODE");
new_trackingNo = rsD.getString("TRACKING_NO");
if(itmCode != null && !tempItem.equalsIgnoreCase(itmCode))
{
tempItem = itmCode;
itmVolumeMap = getItemVoumeMap(itmCode,"",conn);
caseWeight = (Double)itmVolumeMap.get("PACK_WEIGHT");
itemWeight = (Double)itmVolumeMap.get("ITEM_WEIGHT");
}
new_shipLabel = rsD.getString("SHIP_LABEL");
System.out.println("carton no in while loop :" +cartonNo);
System.out.println("tracking no in while loop :"+new_trackingNo);
System.out.println("ship_label in while loop :"+new_shipLabel);
pstmtInsertData1.setString(1,tranId);
pstmtInsertData1.setInt(2,lineNo);
pstmtInsertData1.setString(3,ptcn);
pstmtInsertData1.setString(4,cartonNo);
pstmtInsertData1.setString(5,pickOrder);
pstmtInsertData1.setString(6,lineNoPick);
pstmtInsertData1.setString(7,refSer);
pstmtInsertData1.setString(8,refId);
pstmtInsertData1.setString(9,cartonType);
pstmtInsertData1.setString(10,packCode);
pstmtInsertData1.setString(11,masterCarton);
pstmtInsertData1.setString(12,itmCode);
if(new_trackingNo == null || new_trackingNo.trim().length()==0)
{
pstmtInsertData1.setDouble(13,caseWeight);
pstmtInsertData1.setString(14,"");
pstmtInsertData1.setString(15,"");
}
else
{
pstmtInsertData1.setDouble(13,0.0);
pstmtInsertData1.setString(14,new_trackingNo);
pstmtInsertData1.setString(15,new_shipLabel);
}
pstmtInsertData1.addBatch();
lineNo++;
}
pstmtInsertData.executeBatch();
pstmtInsertData1.executeBatch();
pstmtInsertData.clearParameters();
pstmtInsertData1.clearParameters();
if( pstmtInsertData != null)
{
pstmtInsertData.close();
pstmtInsertData = null;
}
if( pstmtInsertData1 != null)
{
pstmtInsertData1.close();
pstmtInsertData1 = null;
}
}
}
catch(Exception e)
{
e.printStackTrace();
}
finally
{
try
{
if( pstmtInsertData != null)
{
pstmtInsertData.close();
pstmtInsertData = null;
}
if( pstmtInsertData1 != null)
{
pstmtInsertData1.close();
pstmtInsertData1 = null;
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
return errString;
}
//Changed By Pragyan 21/02/12 To add item code for case pick cartons //Changed By Pragyan 21/02/12 To add item code for case pick cartons
//$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$-PICKING LOGIC CHANGE //$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$-PICKING LOGIC CHANGE
//Added new method by Chandni on 06/06/12 -- To generate carton Master when pick order is generated //Added new method by Chandni on 06/06/12 -- To generate carton Master when pick order is generated
...@@ -15367,7 +15838,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -15367,7 +15838,7 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
//Changed By Pragyan 16JUL13 To pass the customer code is null //Changed By Pragyan 16JUL13 To pass the customer code is null
// + " AND MIN_WEIGHT <= ? AND MAX_WEIGHT >= ? AND MIN_CASE <= ? AND MAX_CASE >= ? AND SHIP_TYPE NOT IN ('M','P')"; // + " AND MIN_WEIGHT <= ? AND MAX_WEIGHT >= ? AND MIN_CASE <= ? AND MAX_CASE >= ? AND SHIP_TYPE NOT IN ('M','P')";
// + " AND MIN_WEIGHT <= ? AND MAX_WEIGHT >= ? AND MIN_CASE <= ? AND MAX_CASE >= ? AND SHIP_TYPE NOT IN ('M','P') AND T.TRAN_CODE = A.TRAN_CODE "; // + " AND MIN_WEIGHT <= ? AND MAX_WEIGHT >= ? AND MIN_CASE <= ? AND MAX_CASE >= ? AND SHIP_TYPE NOT IN ('M','P') AND T.TRAN_CODE = A.TRAN_CODE ";
+ " AND MIN_WEIGHT <= ? AND MAX_WEIGHT >= ? AND MIN_CASE <= ? AND MAX_CASE >= ? AND SHIP_TYPE NOT IN ('M','P') AND T.TRAN_CODE = A.TRAN_CODE AND B.CUST_CODE IS NULL"; + " AND MIN_WEIGHT <= ? AND MAX_WEIGHT >= ? AND MIN_CASE <= ? AND MAX_CASE >= ? AND SHIP_TYPE NOT IN ('M','P') AND T.TRAN_CODE = A.TRAN_CODE";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1,pinFrm); pstmt.setString(1,pinFrm);
......
...@@ -45,43 +45,61 @@ ...@@ -45,43 +45,61 @@
<TableDefinition> <TableDefinition>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>no</updatewhereclause>
<name>tran_id__from</name> <name>tran_id__from</name>
<dbname>tran_id__from</dbname> <dbname>tran_id__from</dbname>
<initial>00</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>no</updatewhereclause>
<name>tran_id__to</name> <name>tran_id__to</name>
<dbname>tran_id_to</dbname> <dbname>tran_id_to</dbname>
<initial>ZZ</initial>
</table_column> </table_column>
<table_column> <table_column>
<type>date</type> <type>date</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>no</updatewhereclause>
<name>sch_rel_date__from</name> <name>sch_rel_date__from</name>
<dbname>sch_rel_date__from</dbname> <dbname>sch_rel_date__from</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type>date</type> <type>date</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>no</updatewhereclause>
<name>sch_rel_date__to</name> <name>sch_rel_date__to</name>
<dbname>sch_rel_date__to</dbname> <dbname>sch_rel_date__to</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>no</updatewhereclause>
<name>ref_id__from</name> <name>ref_id__from</name>
<dbname>ref_id__from</dbname> <dbname>ref_id__from</dbname>
<initial>00</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>no</updatewhereclause>
<name>ref_id__to</name> <name>ref_id__to</name>
<dbname>ref_id__to</dbname> <dbname>ref_id__to</dbname>
<initial>ZZ</initial>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>lock_code__from</name>
<dbname>lock_code__from</dbname>
<initial>00</initial>
</table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>no</updatewhereclause>
<name>lock_code__to</name>
<dbname>lock_code__to</dbname>
<initial>ZZ</initial>
</table_column> </table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>no</updatewhereclause>
<name>auto_confirmed</name> <name>auto_confirmed</name>
<dbname>auto_confirmed</dbname> <dbname>auto_confirmed</dbname>
<initial>Y</initial> <initial>Y</initial>
...@@ -96,9 +114,9 @@ ...@@ -96,9 +114,9 @@
<text></text> <text></text>
<border>2</border> <border>2</border>
<color>33554432</color> <color>33554432</color>
<x>10</x> <x>4</x>
<y>7</y> <y>8</y>
<height>114</height> <height>218</height>
<width>451</width> <width>451</width>
<name>gb_1</name> <name>gb_1</name>
<visible>1</visible> <visible>1</visible>
...@@ -118,17 +136,17 @@ ...@@ -118,17 +136,17 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Hold Tran Id From:</text> <text>Hold Tran Id To:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>21</x> <x>252</x>
<y>18</y> <y>18</y>
<height>16</height> <height>16</height>
<width>121</width> <width>95</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id__from_t</name> <name>tran_id_to_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
...@@ -143,31 +161,21 @@ ...@@ -143,31 +161,21 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Sch Rel Date To:</text>
<tabsequence>10</tabsequence> <border>0</border>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>146</x> <x>242</x>
<y>18</y> <y>42</y>
<height>18</height> <height>15</height>
<width>86</width> <width>105</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id__from</name> <name>sch_rel_date__to_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
...@@ -177,24 +185,24 @@ ...@@ -177,24 +185,24 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>16777215</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Hold Tran Id To:</text> <text>Ref Id To:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>252</x> <x>255</x>
<y>18</y> <y>67</y>
<height>16</height> <height>15</height>
<width>95</width> <width>92</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id_to_t</name> <name>ref_id__to_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
...@@ -209,31 +217,49 @@ ...@@ -209,31 +217,49 @@
<color>536870912</color> <color>536870912</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>2</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Lock Code To:</text>
<tabsequence>20</tabsequence> <border>0</border>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>351</x> <x>247</x>
<y>95</y>
<height>15</height>
<width>100</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lock_code_to_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Hold Tran Id From:</text>
<border>0</border>
<color>33554432</color>
<x>21</x>
<y>18</y> <y>18</y>
<height>18</height> <height>16</height>
<width>86</width> <width>121</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_id__to</name> <name>tran_id__from_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
...@@ -243,35 +269,25 @@ ...@@ -243,35 +269,25 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>16777215</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<ColumnObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <alignment>1</alignment>
<alignment>0</alignment> <text>Sch Rel Date From:</text>
<tabsequence>30</tabsequence> <border>0</border>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>146</x> <x>21</x>
<y>42</y> <y>42</y>
<height>18</height> <height>15</height>
<width>86</width> <width>121</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sch_rel_date__from</name> <name>sch_rel_date__from_t</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
...@@ -281,24 +297,80 @@ ...@@ -281,24 +297,80 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>2</mode> <mode>1</mode>
<color>16777215</color> <color>536870912</color>
</background> </background>
</ColumnObject> </TextObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Sch Rel Date To:</text> <text>Ref Id From:</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>242</x> <x>21</x>
<y>42</y> <y>67</y>
<height>15</height> <height>15</height>
<width>105</width> <width>121</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sch_rel_date__to_t</name> <name>ref_id__from_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Lock Code From:</text>
<border>0</border>
<color>33554432</color>
<x>38</x>
<y>95</y>
<height>15</height>
<width>104</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>lock_code_from_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Auto Confirmed:</text>
<border>0</border>
<color>33554432</color>
<x>21</x>
<y>118</y>
<height>15</height>
<width>121</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>auto_confirmed_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
...@@ -315,24 +387,62 @@ ...@@ -315,24 +387,62 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>40</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>351</x> <x>146</x>
<y>42</y> <y>118</y>
<height>18</height>
<width>58</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>auto_confirmed</name>
<visible>1</visible>
<EditStyle style="ddlb">
<limit>0</limit>
<sorted>yes</sorted>
<allowedit>no</allowedit>
<case>upper</case>
<required>yes</required>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>1</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<border>5</border>
<color>33554432</color>
<x>146</x>
<y>18</y>
<height>18</height> <height>18</height>
<width>86</width> <width>86</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sch_rel_date__to</name> <name>tran_id__from</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -353,24 +463,24 @@ ...@@ -353,24 +463,24 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>50</tabsequence> <tabsequence>20</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>146</x> <x>351</x>
<y>67</y> <y>18</y>
<height>18</height> <height>18</height>
<width>86</width> <width>86</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ref_id__from</name> <name>tran_id__to</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -389,21 +499,31 @@ ...@@ -389,21 +499,31 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>3</id>
<text>Ref Id To:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>30</tabsequence>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>255</x> <x>146</x>
<y>67</y> <y>42</y>
<height>15</height> <height>18</height>
<width>92</width> <width>86</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ref_id__to_t</name> <name>sch_rel_date__from</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
...@@ -413,30 +533,30 @@ ...@@ -413,30 +533,30 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>60</tabsequence> <tabsequence>40</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>351</x> <x>351</x>
<y>67</y> <y>42</y>
<height>18</height> <height>18</height>
<width>86</width> <width>86</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ref_id__to</name> <name>sch_rel_date__to</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>upper</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll> <autohscroll>yes</autohscroll>
...@@ -457,25 +577,27 @@ ...@@ -457,25 +577,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>50</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>146</x> <x>146</x>
<y>91</y> <y>68</y>
<height>18</height> <height>18</height>
<width>58</width> <width>86</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>auto_confirmed</name> <name>ref_id__from</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>any</case> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -491,21 +613,31 @@ ...@@ -491,21 +613,31 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>6</id>
<text>Sch Rel Date From:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>60</tabsequence>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>21</x> <x>351</x>
<y>42</y> <y>67</y>
<height>15</height> <height>18</height>
<width>121</width> <width>86</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>sch_rel_date__from_t</name> <name>ref_id__to</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font> <font>
<face>Arial</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
...@@ -515,66 +647,82 @@ ...@@ -515,66 +647,82 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>16777215</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>7</id>
<text>Ref Id From:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>70</tabsequence>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>21</x> <x>146</x>
<y>67</y> <y>92</y>
<height>15</height> <height>18</height>
<width>121</width> <width>86</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>ref_id__from_t</name> <name>lock_code__from</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>Arial</face> <face>Liberation Sans</face>
<height>-10</height> <height>-11</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>1073741824</color>
</background> </background>
</TextObject> </ColumnObject>
<TextObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <id>8</id>
<text>Auto Confirmed:</text> <alignment>0</alignment>
<border>0</border> <tabsequence>80</tabsequence>
<border>5</border>
<color>33554432</color> <color>33554432</color>
<x>21</x> <x>351</x>
<y>91</y> <y>91</y>
<height>15</height> <height>18</height>
<width>121</width> <width>86</width>
<format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>auto_confirmed_t</name> <name>lock_code__to</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>Arial</face> <face>Liberation Sans</face>
<height>-10</height> <height>-11</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>1073741824</color>
</background> </background>
</TextObject> </ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -31,19 +31,19 @@ ...@@ -31,19 +31,19 @@
</print> </print>
</BaseDefinition> </BaseDefinition>
<Header> <Header>
<height>25</height> <height>21</height>
<color>536870912</color> <color>536870912</color>
</Header> </Header>
<Summary> <Summary>
<height>10</height> <height>6</height>
<color>536870912</color> <color>536870912</color>
</Summary> </Summary>
<Footer> <Footer>
<height>11</height> <height>0</height>
<color>536870912</color> <color>536870912</color>
</Footer> </Footer>
<Detail> <Detail>
<height>40</height> <height>61</height>
<color>536870912</color> <color>536870912</color>
</Detail> </Detail>
<TableDefinition> <TableDefinition>
...@@ -60,6 +60,18 @@ ...@@ -60,6 +60,18 @@
<name>cust_name</name> <name>cust_name</name>
<dbname>customer.cust_name</dbname> <dbname>customer.cust_name</dbname>
</table_column> </table_column>
<table_column>
<type size="10">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>cust_code__dlv</name>
<dbname>sorder.cust_code__dlv</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>customer_cust_name</name>
<dbname>customer.cust_name</dbname>
</table_column>
<table_column> <table_column>
<type size="3">char</type> <type size="3">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
...@@ -87,7 +99,7 @@ ...@@ -87,7 +99,7 @@
<dbname>sorditem.item_code</dbname> <dbname>sorditem.item_code</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="120">char</type> <type size="130">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>item_descr</name> <name>item_descr</name>
<dbname>item.descr</dbname> <dbname>item.descr</dbname>
...@@ -152,18 +164,18 @@ ...@@ -152,18 +164,18 @@
<name>stock_quantity</name> <name>stock_quantity</name>
<dbname>stock_quantity</dbname> <dbname>stock_quantity</dbname>
</table_column> </table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>qty_alloc</name>
<dbname>sorditem.qty_alloc</dbname>
</table_column>
<table_column> <table_column>
<type size="0">char</type> <type size="0">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>hold_qty</name> <name>hold_qty</name>
<dbname>hold_qty</dbname> <dbname>hold_qty</dbname>
</table_column> </table_column>
<table_column>
<type precision="3">decimal</type>
<updatewhereclause>yes</updatewhereclause>
<name>qty_alloc</name>
<dbname>sorditem.qty_alloc</dbname>
</table_column>
<table_column> <table_column>
<type>number</type> <type>number</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
...@@ -219,12 +231,6 @@ ...@@ -219,12 +231,6 @@
<name>exp_lev</name> <name>exp_lev</name>
<dbname>sorditem.exp_lev</dbname> <dbname>sorditem.exp_lev</dbname>
</table_column> </table_column>
<table_column>
<type size="0">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>part_qty_real</name>
<dbname>part_qty_real</dbname>
</table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="10">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
...@@ -232,18 +238,12 @@ ...@@ -232,18 +238,12 @@
<dbname>last_col</dbname> <dbname>last_col</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="10">char</type> <type size="0">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>cust_code__dlv</name>
<dbname>sorder.cust_code__dlv</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>customer_cust_name</name> <name>part_qty_real</name>
<dbname>customer.cust_name</dbname> <dbname>part_qty_real</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;sorddet&quot; ) TABLE(NAME=&quot;customer&quot; ALIAS=&quot;customer_a&quot; ) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;sorder&quot; ) TABLE(NAME=&quot;sorditem&quot; ) TABLE(NAME=&quot;wave_type&quot; ) TABLE(NAME=&quot;customer&quot; ALIAS=&quot;customer_b&quot; ) COLUMN(NAME=&quot;sorder.cust_code&quot;) COLUMN(NAME=&quot;customer_a.cust_name&quot;) COLUMN(NAME=&quot;sorddet.line_no&quot;) COLUMN(NAME=&quot;sorder.sale_order&quot;) COLUMN(NAME=&quot;sorder.due_date&quot;) COLUMN(NAME=&quot;sorditem.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;customer_a.single_lot&quot;) COLUMN(NAME=&quot;wave_type.master_pack_allow&quot;) COLUMN(NAME=&quot;wave_type.active_pick_allow&quot;) COLUMN(NAME=&quot;wave_type.stock_to_dock_allow&quot;) COLUMN(NAME=&quot;wave_type.parcelpack_allow&quot;) COMPUTE(NAME=&quot;&apos;&apos;ship_type&quot;) COLUMN(NAME=&quot;sorditem.quantity&quot;) COLUMN(NAME=&quot;sorder.part_qty&quot;) COMPUTE(NAME=&quot;SORDITEM.QUANTITY-SORDITEM.QTY_DESP PENDING_QUANTITY&quot;) COMPUTE(NAME=&quot;0 stock_quantity&quot;) COLUMN(NAME=&quot;sorditem.qty_alloc&quot;) COMPUTE(NAME=&quot;&apos;&apos; hold_qty&quot;) COMPUTE(NAME=&quot;0 bal_qty&quot;) COMPUTE(NAME=&quot;&apos; &apos; manual_allocqty&quot;) COLUMN(NAME=&quot;sorder.alloc_flag&quot;) COMPUTE(NAME=&quot;&apos; &apos; tran_code&quot;) COMPUTE(NAME=&quot;&apos; &apos; tran_name&quot;) COMPUTE(NAME=&quot;&apos; &apos; lock_code__dock&quot;) COLUMN(NAME=&quot;sorddet.pack_instr&quot;) COLUMN(NAME=&quot;sorddet.site_code&quot;) COLUMN(NAME=&quot;sorditem.exp_lev&quot;) COMPUTE(NAME=&quot;&apos;&apos; part_qty_real&quot;) COMPUTE(NAME=&quot;&apos; &apos; LAST_COL&quot;) COLUMN(NAME=&quot;sorder.cust_code__dlv&quot;) COLUMN(NAME=&quot;customer_b.cust_name&quot;) JOIN (LEFT=&quot;customer_a.wave_type&quot; OP =&quot;=&quot;RIGHT=&quot;wave_type.wave_type&quot; OUTER1 =&quot;customer_a.wave_type&quot; ) JOIN (LEFT=&quot;sorddet.sale_order&quot; OP =&quot;=&quot;RIGHT=&quot;sorder.sale_order&quot; ) JOIN (LEFT=&quot;sorder.sale_order&quot; OP =&quot;=&quot;RIGHT=&quot;sorditem.sale_order&quot; ) JOIN (LEFT=&quot;sorddet.line_no&quot; OP =&quot;=&quot;RIGHT=&quot;sorditem.line_no&quot; ) JOIN (LEFT=&quot;sorditem.item_code__ord&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; ) JOIN (LEFT=&quot;sorder.cust_code&quot; OP =&quot;=&quot;RIGHT=&quot;customer_a.cust_code&quot; ) JOIN (LEFT=&quot;sorddet.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;sorditem.site_code&quot; ) JOIN (LEFT=&quot;customer_b.cust_code&quot; OP =&quot;=&quot;RIGHT=&quot;sorder.cust_code__dlv&quot; )) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;sorddet&quot; ) TABLE(NAME=&quot;customer&quot; ALIAS=&quot;customer_a&quot; ) TABLE(NAME=&quot;item&quot; ) TABLE(NAME=&quot;sorder&quot; ) TABLE(NAME=&quot;sorditem&quot; ) TABLE(NAME=&quot;wave_type&quot; ) TABLE(NAME=&quot;customer&quot; ALIAS=&quot;customer_b&quot; ) COLUMN(NAME=&quot;sorder.cust_code&quot;) COLUMN(NAME=&quot;customer_a.cust_name&quot;) COLUMN(NAME=&quot;sorder.cust_code__dlv&quot;) COLUMN(NAME=&quot;customer_b.cust_name&quot;) COLUMN(NAME=&quot;sorddet.line_no&quot;) COLUMN(NAME=&quot;sorder.sale_order&quot;) COLUMN(NAME=&quot;sorder.due_date&quot;) COLUMN(NAME=&quot;sorditem.item_code&quot;) COLUMN(NAME=&quot;item.descr&quot;) COLUMN(NAME=&quot;customer_a.single_lot&quot;) COLUMN(NAME=&quot;wave_type.master_pack_allow&quot;) COLUMN(NAME=&quot;wave_type.active_pick_allow&quot;) COLUMN(NAME=&quot;wave_type.stock_to_dock_allow&quot;) COLUMN(NAME=&quot;wave_type.parcelpack_allow&quot;) COMPUTE(NAME=&quot;&apos;&apos;ship_type&quot;) COLUMN(NAME=&quot;sorditem.quantity&quot;) COLUMN(NAME=&quot;sorder.part_qty&quot;) COMPUTE(NAME=&quot;SORDITEM.QUANTITY-SORDITEM.QTY_DESP PENDING_QUANTITY&quot;) COMPUTE(NAME=&quot;0 stock_quantity&quot;) COMPUTE(NAME=&quot;&apos;&apos; hold_qty&quot;) COLUMN(NAME=&quot;sorditem.qty_alloc&quot;) COMPUTE(NAME=&quot;0 bal_qty&quot;) COMPUTE(NAME=&quot;&apos; &apos; manual_allocqty&quot;) COLUMN(NAME=&quot;sorder.alloc_flag&quot;) COMPUTE(NAME=&quot;&apos; &apos; tran_code&quot;) COMPUTE(NAME=&quot;&apos; &apos; tran_name&quot;) COMPUTE(NAME=&quot;&apos; &apos; lock_code__dock&quot;) COLUMN(NAME=&quot;sorddet.pack_instr&quot;) COLUMN(NAME=&quot;sorddet.site_code&quot;) COLUMN(NAME=&quot;sorditem.exp_lev&quot;) COMPUTE(NAME=&quot;&apos; &apos; LAST_COL&quot;) COMPUTE(NAME=&quot;&apos;&apos; part_qty_real&quot;) JOIN (LEFT=&quot;customer_a.wave_type&quot; OP =&quot;=&quot;RIGHT=&quot;wave_type.wave_type&quot; OUTER1 =&quot;customer_a.wave_type&quot; ) JOIN (LEFT=&quot;sorddet.sale_order&quot; OP =&quot;=&quot;RIGHT=&quot;sorder.sale_order&quot; ) JOIN (LEFT=&quot;sorder.sale_order&quot; OP =&quot;=&quot;RIGHT=&quot;sorditem.sale_order&quot; ) JOIN (LEFT=&quot;sorddet.line_no&quot; OP =&quot;=&quot;RIGHT=&quot;sorditem.line_no&quot; ) JOIN (LEFT=&quot;sorditem.item_code__ord&quot; OP =&quot;=&quot;RIGHT=&quot;item.item_code&quot; ) JOIN (LEFT=&quot;sorder.cust_code&quot; OP =&quot;=&quot;RIGHT=&quot;customer_a.cust_code&quot; ) JOIN (LEFT=&quot;sorddet.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;sorditem.site_code&quot; ) JOIN (LEFT=&quot;customer_b.cust_code&quot; OP =&quot;=&quot;RIGHT=&quot;sorder.cust_code__dlv&quot; )) </retrieve>
</TableDefinition> </TableDefinition>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
...@@ -335,10 +335,10 @@ ...@@ -335,10 +335,10 @@
<text>Due Date</text> <text>Due Date</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>668</x> <x>672</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>99</width> <width>95</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -363,10 +363,10 @@ ...@@ -363,10 +363,10 @@
<text>Description</text> <text>Description</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>836</x> <x>839</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>131</width> <width>128</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -503,7 +503,7 @@ ...@@ -503,7 +503,7 @@
<text>Parcel Pick Allow</text> <text>Parcel Pick Allow</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1272</x> <x>1274</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>98</width> <width>98</width>
...@@ -531,10 +531,10 @@ ...@@ -531,10 +531,10 @@
<text>Shipment Type</text> <text>Shipment Type</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1372</x> <x>1376</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>1</width> <width>87</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -560,10 +560,10 @@ ...@@ -560,10 +560,10 @@
<text>Quantity</text> <text>Quantity</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1375</x> <x>1467</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>69</width> <width>47</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -588,8 +588,8 @@ ...@@ -588,8 +588,8 @@
<text>Dock Location</text> <text>Dock Location</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>2327</x> <x>2418</x>
<y>2</y> <y>3</y>
<height>16</height> <height>16</height>
<width>84</width> <width>84</width>
<html> <html>
...@@ -616,7 +616,7 @@ ...@@ -616,7 +616,7 @@
<text>Part Quantity</text> <text>Part Quantity</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1446</x> <x>1518</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>89</width> <width>89</width>
...@@ -640,52 +640,24 @@ ...@@ -640,52 +640,24 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>0</alignment>
<text>Pending Qty</text> <text>Transporter Code</text>
<border>6</border>
<color>33554432</color>
<x>1537</x>
<y>2</y>
<height>16</height>
<width>83</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pending_quantity_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>1</alignment>
<text>Stock Qty</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1622</x> <x>2151</x>
<y>2</y> <y>3</y>
<height>16</height> <height>16</height>
<width>64</width> <width>112</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>stock_quantity_t</name> <name>tran_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -696,18 +668,18 @@ ...@@ -696,18 +668,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>0</alignment>
<text>Hold Qty</text> <text>Transporter Name</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1688</x> <x>2267</x>
<y>2</y> <y>3</y>
<height>16</height> <height>16</height>
<width>66</width> <width>147</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>hold_qty_t</name> <name>tran_name_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
...@@ -724,18 +696,18 @@ ...@@ -724,18 +696,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>0</alignment>
<text>Qty Alloc</text> <text>Packing Instruction</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1756</x> <x>2506</x>
<y>2</y> <y>3</y>
<height>16</height> <height>16</height>
<width>65</width> <width>108</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>qty_alloc_t</name> <name>pack_instr_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -752,18 +724,18 @@ ...@@ -752,18 +724,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>1</alignment> <alignment>2</alignment>
<text>Bal Qty</text> <text>Site Code</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1823</x> <x>2618</x>
<y>2</y> <y>3</y>
<height>16</height> <height>16</height>
<width>65</width> <width>67</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_qty_t</name> <name>site_code_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -781,17 +753,17 @@ ...@@ -781,17 +753,17 @@
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>0</alignment>
<text>Alloc Flag</text> <text>Customer Name</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1992</x> <x>93</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>70</width> <width>120</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>alloc_flag_t</name> <name>cust_name_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -809,23 +781,23 @@ ...@@ -809,23 +781,23 @@
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>0</alignment>
<text>Transporter Code</text> <text>Customer Code Delivery</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>2064</x> <x>217</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>112</width> <width>132</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_code_t</name> <name>cust_code__dlv_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -837,23 +809,23 @@ ...@@ -837,23 +809,23 @@
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>0</alignment>
<text>Transporter Name</text> <text>Customer Code Delivery Name</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>2178</x> <x>353</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>147</width> <width>174</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_name_t</name> <name>customer_cust_name_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>1</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -864,18 +836,18 @@ ...@@ -864,18 +836,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>2</alignment>
<text>Packing Instruction</text> <text>Line No</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>2413</x> <x>531</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>108</width> <width>51</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pack_instr_t</name> <name>line_no_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -892,18 +864,18 @@ ...@@ -892,18 +864,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>1</alignment>
<text>Manual Alloc Qty</text> <text>Pending Qty</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>1890</x> <x>1611</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>100</width> <width>83</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>manual_allocqty_t</name> <name>pending_quantity_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -920,18 +892,18 @@ ...@@ -920,18 +892,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>1</alignment>
<text>Site Code</text> <text>Stock Qty</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>2523</x> <x>1698</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>67</width> <width>64</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code_t</name> <name>stock_quantity_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -948,24 +920,24 @@ ...@@ -948,24 +920,24 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>1</alignment>
<text>Exp Lev</text> <text>Hold Qty</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>2592</x> <x>1766</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>62</width> <width>66</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>exp_lev_t</name> <name>hold_qty_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>1</family> <family>2</family>
<pitch>2</pitch> <pitch>2</pitch>
<charset>0</charset> <charset>0</charset>
</font> </font>
...@@ -976,18 +948,18 @@ ...@@ -976,18 +948,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>1</alignment>
<text>Customer Name</text> <text>Qty Alloc</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>93</x> <x>1836</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>120</width> <width>65</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cust_name_t</name> <name>qty_alloc_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1004,18 +976,18 @@ ...@@ -1004,18 +976,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>1</alignment>
<text>Customer Code Delivery</text> <text>Bal Qty</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>217</x> <x>1905</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>132</width> <width>65</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cust_code__dlv_t</name> <name>bal_qty_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1033,17 +1005,17 @@ ...@@ -1033,17 +1005,17 @@
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>0</alignment> <alignment>0</alignment>
<text>Customer Code Delivery Name</text> <text>Manual Alloc Qty</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>351</x> <x>1974</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>176</width> <width>100</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>customer_cust_name_t</name> <name>manual_allocqty_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1060,18 +1032,18 @@ ...@@ -1060,18 +1032,18 @@
</TextObject> </TextObject>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
<alignment>2</alignment> <alignment>0</alignment>
<text>Line No</text> <text>Alloc Flag</text>
<border>6</border> <border>6</border>
<color>33554432</color> <color>33554432</color>
<x>531</x> <x>2078</x>
<y>2</y> <y>3</y>
<height>16</height> <height>16</height>
<width>51</width> <width>70</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>line_no_t</name> <name>alloc_flag_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Times New Roman</face> <face>Times New Roman</face>
...@@ -1126,7 +1098,7 @@ ...@@ -1126,7 +1098,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
...@@ -1164,7 +1136,7 @@ ...@@ -1164,7 +1136,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>7</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
...@@ -1202,7 +1174,7 @@ ...@@ -1202,7 +1174,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>8</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
...@@ -1240,7 +1212,7 @@ ...@@ -1240,7 +1212,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
...@@ -1278,7 +1250,7 @@ ...@@ -1278,7 +1250,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>8</id> <id>10</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>10</tabsequence> <tabsequence>10</tabsequence>
<border>0</border> <border>0</border>
...@@ -1314,7 +1286,7 @@ ...@@ -1314,7 +1286,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>9</id> <id>11</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>20</tabsequence> <tabsequence>20</tabsequence>
<border>0</border> <border>0</border>
...@@ -1350,7 +1322,7 @@ ...@@ -1350,7 +1322,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>10</id> <id>12</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>30</tabsequence> <tabsequence>30</tabsequence>
<border>0</border> <border>0</border>
...@@ -1386,7 +1358,7 @@ ...@@ -1386,7 +1358,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>11</id> <id>13</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>40</tabsequence> <tabsequence>40</tabsequence>
<border>0</border> <border>0</border>
...@@ -1422,7 +1394,7 @@ ...@@ -1422,7 +1394,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>12</id> <id>14</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>50</tabsequence> <tabsequence>50</tabsequence>
<border>0</border> <border>0</border>
...@@ -1458,15 +1430,15 @@ ...@@ -1458,15 +1430,15 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>13</id> <id>15</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>60</tabsequence> <tabsequence>60</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1364</x> <x>1365</x>
<y>2</y> <y>1</y>
<height>16</height> <height>16</height>
<width>1</width> <width>61</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -1495,13 +1467,13 @@ ...@@ -1495,13 +1467,13 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>14</id> <id>16</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1364</x> <x>1429</x>
<y>2</y> <y>1</y>
<height>15</height> <height>15</height>
<width>69</width> <width>69</width>
<format>[general]</format> <format>[general]</format>
...@@ -1533,25 +1505,27 @@ ...@@ -1533,25 +1505,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>25</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>2316</x> <x>93</x>
<y>2</y> <y>2</y>
<height>16</height> <height>15</height>
<width>84</width> <width>120</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>lock_code__dock</name> <name>cust_name</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>40</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1569,27 +1543,25 @@ ...@@ -1569,27 +1543,25 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>18</id> <id>3</id>
<alignment>1</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1745</x> <x>214</x>
<y>2</y> <y>2</y>
<height>15</height> <height>16</height>
<width>65</width> <width>132</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>qty_alloc</name> <name>cust_code__dlv</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1607,20 +1579,20 @@ ...@@ -1607,20 +1579,20 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>19</id> <id>4</id>
<alignment>1</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1677</x> <x>348</x>
<y>2</y> <y>2</y>
<height>16</height> <height>16</height>
<width>66</width> <width>176</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>hold_qty</name> <name>customer_cust_name</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
...@@ -1643,25 +1615,27 @@ ...@@ -1643,25 +1615,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>15</id> <id>5</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1435</x> <x>526</x>
<y>2</y> <y>2</y>
<height>16</height> <height>15</height>
<width>89</width> <width>51</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>part_qty</name> <name>line_no</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>3</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1679,27 +1653,25 @@ ...@@ -1679,27 +1653,25 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>16</id> <id>17</id>
<alignment>1</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1526</x> <x>1500</x>
<y>2</y> <y>0</y>
<height>15</height> <height>16</height>
<width>83</width> <width>89</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pending_quantity</name> <name>part_qty</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1717,26 +1689,27 @@ ...@@ -1717,26 +1689,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>17</id> <id>18</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1611</x> <x>1591</x>
<y>2</y> <y>0</y>
<height>15</height> <height>15</height>
<width>64</width> <width>83</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>stock_quantity</name> <name>pending_quantity</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1754,25 +1727,26 @@ ...@@ -1754,25 +1727,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>20</id> <id>19</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1812</x> <x>1676</x>
<y>2</y> <y>0</y>
<height>16</height> <height>15</height>
<width>65</width> <width>64</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>bal_qty</name> <name>stock_quantity</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<autoselect>yes</autoselect> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1790,20 +1764,20 @@ ...@@ -1790,20 +1764,20 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>22</id> <id>20</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1981</x> <x>1742</x>
<y>2</y> <y>0</y>
<height>16</height> <height>16</height>
<width>70</width> <width>66</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>alloc_flag</name> <name>hold_qty</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
...@@ -1812,7 +1786,7 @@ ...@@ -1812,7 +1786,7 @@
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Times New Roman</face> <face>Arial</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
...@@ -1826,25 +1800,27 @@ ...@@ -1826,25 +1800,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>23</id> <id>21</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>70</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>2053</x> <x>1810</x>
<y>2</y> <y>0</y>
<height>16</height> <height>15</height>
<width>112</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_code</name> <name>qty_alloc</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -1862,20 +1838,20 @@ ...@@ -1862,20 +1838,20 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>24</id> <id>22</id>
<alignment>0</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>2167</x> <x>1877</x>
<y>2</y> <y>0</y>
<height>16</height> <height>16</height>
<width>147</width> <width>65</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>tran_name</name> <name>bal_qty</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
...@@ -1898,13 +1874,13 @@ ...@@ -1898,13 +1874,13 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>21</id> <id>23</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>1879</x> <x>1944</x>
<y>2</y> <y>0</y>
<height>16</height> <height>16</height>
<width>100</width> <width>100</width>
<format>[general]</format> <format>[general]</format>
...@@ -1934,31 +1910,29 @@ ...@@ -1934,31 +1910,29 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>26</id> <id>24</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>2402</x> <x>2046</x>
<y>2</y> <y>0</y>
<height>15</height> <height>16</height>
<width>108</width> <width>70</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>pack_instr</name> <name>alloc_flag</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>120</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
<face>Arial</face> <face>Times New Roman</face>
<height>-10</height> <height>-10</height>
<weight>400</weight> <weight>400</weight>
<family>2</family> <family>2</family>
...@@ -1972,27 +1946,25 @@ ...@@ -1972,27 +1946,25 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>27</id> <id>25</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>2512</x> <x>2118</x>
<y>2</y> <y>0</y>
<height>15</height> <height>16</height>
<width>67</width> <width>112</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>site_code</name> <name>tran_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>5</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2010,26 +1982,25 @@ ...@@ -2010,26 +1982,25 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>28</id> <id>26</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>2581</x> <x>2232</x>
<y>2</y> <y>0</y>
<height>15</height> <height>16</height>
<width>62</width> <width>147</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>exp_lev</name> <name>tran_name</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <autoselect>yes</autoselect>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2047,26 +2018,25 @@ ...@@ -2047,26 +2018,25 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>30</id> <id>27</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>2645</x> <x>2382</x>
<y>2</y> <y>1</y>
<height>15</height> <height>16</height>
<width>1</width> <width>84</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>last_col</name> <name>lock_code__dock</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <autoselect>yes</autoselect>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2084,25 +2054,27 @@ ...@@ -2084,25 +2054,27 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>29</id> <id>28</id>
<alignment>1</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>3022</x> <x>2469</x>
<y>2</y> <y>1</y>
<height>15</height> <height>15</height>
<width>1</width> <width>108</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>part_qty_real</name> <name>pack_instr</name>
<visible>0</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>120</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2120,23 +2092,23 @@ ...@@ -2120,23 +2092,23 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>29</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>93</x> <x>2580</x>
<y>2</y> <y>1</y>
<height>15</height> <height>15</height>
<width>120</width> <width>67</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cust_name</name> <name>site_code</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>40</limit> <limit>5</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle> <focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
...@@ -2158,25 +2130,26 @@ ...@@ -2158,25 +2130,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>31</id> <id>30</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>214</x> <x>2650</x>
<y>2</y> <y>1</y>
<height>16</height> <height>15</height>
<width>132</width> <width>91</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>cust_code__dlv</name> <name>exp_lev</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<autoselect>yes</autoselect> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2192,27 +2165,115 @@ ...@@ -2192,27 +2165,115 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Part Qty Real</text>
<border>6</border>
<color>33554432</color>
<x>2835</x>
<y>29</y>
<height>16</height>
<width>1</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>part_qty_real_t</name>
<visible>0</visible>
<hidesnaked>1</hidesnaked>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Exp Lev</text>
<border>6</border>
<color>33554432</color>
<x>2689</x>
<y>3</y>
<height>16</height>
<width>77</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>exp_lev_t</name>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Last Col</text>
<border>6</border>
<color>33554432</color>
<x>2785</x>
<y>27</y>
<height>16</height>
<width>1</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>last_col_t</name>
<visible>0</visible>
<hidesnaked>1</hidesnaked>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>32</id> <id>31</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>348</x> <x>2744</x>
<y>2</y> <y>0</y>
<height>16</height> <height>15</height>
<width>176</width> <width>1</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>customer_cust_name</name> <name>last_col</name>
<visible>1</visible> <visible>0</visible>
<hidesnaked>1</hidesnaked>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<autoselect>yes</autoselect> <focusrectangle>no</focusrectangle>
<autoselect>no</autoselect>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -2230,27 +2291,26 @@ ...@@ -2230,27 +2291,26 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>3</id> <id>32</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>526</x> <x>2744</x>
<y>2</y> <y>0</y>
<height>15</height> <height>15</height>
<width>51</width> <width>1</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>line_no</name> <name>part_qty_real</name>
<visible>1</visible> <visible>0</visible>
<hidesnaked>1</hidesnaked>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>3</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
......
$PBExportHeader$d_inv_hold_rel_gen11.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=252 color="536870912" )
table(column=(type=char(10) updatewhereclause=no name=tran_id__from dbname="tran_id__from" initial="00" )
column=(type=char(10) updatewhereclause=no name=tran_id__to dbname="tran_id_to" initial="ZZ" )
column=(type=date updatewhereclause=no name=sch_rel_date__from dbname="sch_rel_date__from" )
column=(type=date updatewhereclause=no name=sch_rel_date__to dbname="sch_rel_date__to" )
column=(type=char(10) updatewhereclause=no name=ref_id__from dbname="ref_id__from" initial="00" )
column=(type=char(10) updatewhereclause=no name=ref_id__to dbname="ref_id__to" initial="ZZ" )
column=(type=char(10) updatewhereclause=no name=lock_code__from dbname="lock_code__from" initial="00" )
column=(type=char(10) updatewhereclause=no name=lock_code__to dbname="lock_code__to" initial="ZZ" )
column=(type=char(1) updatewhereclause=no name=auto_confirmed dbname="auto_confirmed" initial="Y" values="Yes Y/No N/" )
)
groupbox(band=detail text=""border="2" color="33554432" x="4" y="8" height="218" width="451" name=gb_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Hold Tran Id To:" border="0" color="33554432" x="252" y="18" height="16" width="95" html.valueishtml="0" name=tran_id_to_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Sch Rel Date To:" border="0" color="33554432" x="242" y="42" height="15" width="105" html.valueishtml="0" name=sch_rel_date__to_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Ref Id To:" border="0" color="33554432" x="255" y="67" height="15" width="92" html.valueishtml="0" name=ref_id__to_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Lock Code To:" border="0" color="33554432" x="247" y="95" height="15" width="100" html.valueishtml="0" name=lock_code_to_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Hold Tran Id From:" border="0" color="33554432" x="21" y="18" height="16" width="121" html.valueishtml="0" name=tran_id__from_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Sch Rel Date From:" border="0" color="33554432" x="21" y="42" height="15" width="121" html.valueishtml="0" name=sch_rel_date__from_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Ref Id From:" border="0" color="33554432" x="21" y="67" height="15" width="121" html.valueishtml="0" name=ref_id__from_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Lock Code From:" border="0" color="33554432" x="38" y="95" height="15" width="104" html.valueishtml="0" name=lock_code_from_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Auto Confirmed:" border="0" color="33554432" x="21" y="118" height="15" width="121" html.valueishtml="0" name=auto_confirmed_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=90 border="5" color="33554432" x="146" y="118" height="18" width="58" format="[general]" html.valueishtml="0" name=auto_confirmed visible="1" ddlb.limit=0 ddlb.sorted=yes ddlb.allowedit=no ddlb.case=upper ddlb.required=yes ddlb.imemode=0 font.face="Arial" 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="146" y="18" height="18" width="86" format="[general]" html.valueishtml="0" name=tran_id__from visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=2 alignment="0" tabsequence=20 border="5" color="33554432" x="351" y="18" height="18" width="86" format="[general]" html.valueishtml="0" name=tran_id__to visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=30 border="5" color="33554432" x="146" y="42" height="18" width="86" format="[general]" html.valueishtml="0" name=sch_rel_date__from visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=4 alignment="0" tabsequence=40 border="5" color="33554432" x="351" y="42" height="18" width="86" format="[general]" html.valueishtml="0" name=sch_rel_date__to visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=50 border="5" color="33554432" x="146" y="68" height="18" width="86" format="[general]" html.valueishtml="0" name=ref_id__from visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=6 alignment="0" tabsequence=60 border="5" color="33554432" x="351" y="67" height="18" width="86" format="[general]" html.valueishtml="0" name=ref_id__to visible="1" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=7 alignment="0" tabsequence=70 border="5" color="33554432" x="146" y="92" height="18" width="86" format="[general]" html.valueishtml="0" name=lock_code__from visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=8 alignment="0" tabsequence=80 border="5" color="33554432" x="351" y="91" height="18" width="86" format="[general]" html.valueishtml="0" name=lock_code__to visible="1" edit.limit=0 edit.case=upper edit.autoselect=yes edit.imemode=0 font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
$PBExportHeader$d_wavegen12.srd $PBExportHeader$d_wavegen12.srd
release 9; release 9;
datawindow(units=1 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 ) datawindow(units=1 timer_interval=0 color=67108864 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
header(height=21 color="536870912" ) header(height=21 color="536870912" )
summary(height=0 color="536870912" ) summary(height=6 color="536870912" )
footer(height=5 color="536870912" ) footer(height=0 color="536870912" )
detail(height=20 color="536870912" ) detail(height=61 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbname="sorder.cust_code" ) table(column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbname="sorder.cust_code" )
column=(type=char(40) updatewhereclause=yes name=cust_name dbname="customer.cust_name" ) column=(type=char(40) updatewhereclause=yes name=cust_name dbname="customer.cust_name" )
column=(type=char(10) updatewhereclause=yes name=cust_code__dlv dbname="sorder.cust_code__dlv" )
column=(type=char(40) updatewhereclause=yes name=customer_cust_name dbname="customer.cust_name" )
column=(type=char(3) updatewhereclause=yes name=line_no dbname="sorddet.line_no" ) column=(type=char(3) updatewhereclause=yes name=line_no dbname="sorddet.line_no" )
column=(type=char(10) update=yes updatewhereclause=yes name=sale_order dbname="sorder.sale_order" ) column=(type=char(10) update=yes updatewhereclause=yes name=sale_order dbname="sorder.sale_order" )
column=(type=datetime update=yes updatewhereclause=yes name=due_date dbname="sorder.due_date" ) column=(type=datetime update=yes updatewhereclause=yes name=due_date dbname="sorder.due_date" )
column=(type=char(10) updatewhereclause=yes name=item_code dbname="sorditem.item_code" ) column=(type=char(10) updatewhereclause=yes name=item_code dbname="sorditem.item_code" )
column=(type=char(120) updatewhereclause=yes name=item_descr dbname="item.descr" ) column=(type=char(130) updatewhereclause=yes name=item_descr dbname="item.descr" )
column=(type=char(1) updatewhereclause=yes name=single_lot dbname="customer.single_lot" ) column=(type=char(1) updatewhereclause=yes name=single_lot dbname="customer.single_lot" )
column=(type=char(1) updatewhereclause=yes name=master_pack_allow dbname="wave_type.master_pack_allow" ) column=(type=char(1) updatewhereclause=yes name=master_pack_allow dbname="wave_type.master_pack_allow" )
column=(type=char(1) updatewhereclause=yes name=active_pick_allow dbname="wave_type.active_pick_allow" ) column=(type=char(1) updatewhereclause=yes name=active_pick_allow dbname="wave_type.active_pick_allow" )
...@@ -22,8 +24,8 @@ table(column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbna ...@@ -22,8 +24,8 @@ table(column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbna
column=(type=char(1) updatewhereclause=yes name=part_qty dbname="sorder.part_qty" ) column=(type=char(1) updatewhereclause=yes name=part_qty dbname="sorder.part_qty" )
column=(type=number updatewhereclause=yes name=pending_quantity dbname="pending_quantity" ) column=(type=number updatewhereclause=yes name=pending_quantity dbname="pending_quantity" )
column=(type=number updatewhereclause=yes name=stock_quantity dbname="stock_quantity" ) column=(type=number updatewhereclause=yes name=stock_quantity dbname="stock_quantity" )
column=(type=decimal(3) updatewhereclause=yes name=qty_alloc dbname="sorditem.qty_alloc" )
column=(type=char(0) updatewhereclause=yes name=hold_qty dbname="hold_qty" ) column=(type=char(0) updatewhereclause=yes name=hold_qty dbname="hold_qty" )
column=(type=decimal(3) updatewhereclause=yes name=qty_alloc dbname="sorditem.qty_alloc" )
column=(type=number updatewhereclause=yes name=bal_qty dbname="bal_qty" ) column=(type=number updatewhereclause=yes name=bal_qty dbname="bal_qty" )
column=(type=char(1) updatewhereclause=yes name=manual_allocqty dbname="manual_allocqty" ) column=(type=char(1) updatewhereclause=yes name=manual_allocqty dbname="manual_allocqty" )
column=(type=char(1) updatewhereclause=yes name=alloc_flag dbname="sorder.alloc_flag" ) column=(type=char(1) updatewhereclause=yes name=alloc_flag dbname="sorder.alloc_flag" )
...@@ -33,67 +35,73 @@ table(column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbna ...@@ -33,67 +35,73 @@ table(column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbna
column=(type=char(120) updatewhereclause=yes name=pack_instr dbname="sorddet.pack_instr" ) column=(type=char(120) updatewhereclause=yes name=pack_instr dbname="sorddet.pack_instr" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="sorddet.site_code" ) column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="sorddet.site_code" )
column=(type=char(20) updatewhereclause=yes name=exp_lev dbname="sorditem.exp_lev" ) column=(type=char(20) updatewhereclause=yes name=exp_lev dbname="sorditem.exp_lev" )
column=(type=char(0) updatewhereclause=yes name=part_qty_real dbname="part_qty_real" )
column=(type=char(10) updatewhereclause=yes name=last_col dbname="last_col" ) column=(type=char(10) updatewhereclause=yes name=last_col dbname="last_col" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sorddet~" ) TABLE(NAME=~"customer~" ) TABLE(NAME=~"item~" ) TABLE(NAME=~"sorder~" ) TABLE(NAME=~"sorditem~" ) TABLE(NAME=~"wave_type~" ) COLUMN(NAME=~"sorder.cust_code~") COLUMN(NAME=~"customer.cust_name~") COLUMN(NAME=~"sorddet.line_no~") COLUMN(NAME=~"sorder.sale_order~") COLUMN(NAME=~"sorder.due_date~") COLUMN(NAME=~"sorditem.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"customer.single_lot~") COLUMN(NAME=~"wave_type.master_pack_allow~") COLUMN(NAME=~"wave_type.active_pick_allow~") COLUMN(NAME=~"wave_type.stock_to_dock_allow~") COLUMN(NAME=~"wave_type.parcelpack_allow~") COMPUTE(NAME=~"''ship_type~") COLUMN(NAME=~"sorditem.quantity~") COLUMN(NAME=~"sorder.part_qty~") COMPUTE(NAME=~"SORDITEM.QUANTITY-SORDITEM.QTY_DESP PENDING_QUANTITY~") COMPUTE(NAME=~"0 stock_quantity~") COLUMN(NAME=~"sorditem.qty_alloc~") COMPUTE(NAME=~"'' hold_qty~") COMPUTE(NAME=~"0 bal_qty~") COMPUTE(NAME=~"' ' manual_allocqty~") COLUMN(NAME=~"sorder.alloc_flag~") COMPUTE(NAME=~"' ' tran_code~") COMPUTE(NAME=~"' ' tran_name~") COMPUTE(NAME=~"' ' lock_code__dock~") COLUMN(NAME=~"sorddet.pack_instr~") COLUMN(NAME=~"sorddet.site_code~") COLUMN(NAME=~"sorditem.exp_lev~") COMPUTE(NAME=~"'' part_qty_real~") COMPUTE(NAME=~"' ' LAST_COL~") JOIN (LEFT=~"customer.wave_type~" OP =~"=~"RIGHT=~"wave_type.wave_type~" OUTER1 =~"customer.wave_type~" ) JOIN (LEFT=~"sorddet.sale_order~" OP =~"=~"RIGHT=~"sorder.sale_order~" ) JOIN (LEFT=~"sorder.sale_order~" OP =~"=~"RIGHT=~"sorditem.sale_order~" ) JOIN (LEFT=~"sorddet.line_no~" OP =~"=~"RIGHT=~"sorditem.line_no~" ) JOIN (LEFT=~"sorditem.item_code__ord~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"sorder.cust_code~" OP =~"=~"RIGHT=~"customer.cust_code~" ) JOIN (LEFT=~"sorddet.site_code~" OP =~"=~"RIGHT=~"sorditem.site_code~" )) " ) column=(type=char(0) updatewhereclause=yes name=part_qty_real dbname="part_qty_real" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sorddet~" ) TABLE(NAME=~"customer~" ALIAS=~"customer_a~" ) TABLE(NAME=~"item~" ) TABLE(NAME=~"sorder~" ) TABLE(NAME=~"sorditem~" ) TABLE(NAME=~"wave_type~" ) TABLE(NAME=~"customer~" ALIAS=~"customer_b~" ) COLUMN(NAME=~"sorder.cust_code~") COLUMN(NAME=~"customer_a.cust_name~") COLUMN(NAME=~"sorder.cust_code__dlv~") COLUMN(NAME=~"customer_b.cust_name~") COLUMN(NAME=~"sorddet.line_no~") COLUMN(NAME=~"sorder.sale_order~") COLUMN(NAME=~"sorder.due_date~") COLUMN(NAME=~"sorditem.item_code~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"customer_a.single_lot~") COLUMN(NAME=~"wave_type.master_pack_allow~") COLUMN(NAME=~"wave_type.active_pick_allow~") COLUMN(NAME=~"wave_type.stock_to_dock_allow~") COLUMN(NAME=~"wave_type.parcelpack_allow~") COMPUTE(NAME=~"''ship_type~") COLUMN(NAME=~"sorditem.quantity~") COLUMN(NAME=~"sorder.part_qty~") COMPUTE(NAME=~"SORDITEM.QUANTITY-SORDITEM.QTY_DESP PENDING_QUANTITY~") COMPUTE(NAME=~"0 stock_quantity~") COMPUTE(NAME=~"'' hold_qty~") COLUMN(NAME=~"sorditem.qty_alloc~") COMPUTE(NAME=~"0 bal_qty~") COMPUTE(NAME=~"' ' manual_allocqty~") COLUMN(NAME=~"sorder.alloc_flag~") COMPUTE(NAME=~"' ' tran_code~") COMPUTE(NAME=~"' ' tran_name~") COMPUTE(NAME=~"' ' lock_code__dock~") COLUMN(NAME=~"sorddet.pack_instr~") COLUMN(NAME=~"sorddet.site_code~") COLUMN(NAME=~"sorditem.exp_lev~") COMPUTE(NAME=~"' ' LAST_COL~") COMPUTE(NAME=~"'' part_qty_real~") JOIN (LEFT=~"customer_a.wave_type~" OP =~"=~"RIGHT=~"wave_type.wave_type~" OUTER1 =~"customer_a.wave_type~" ) JOIN (LEFT=~"sorddet.sale_order~" OP =~"=~"RIGHT=~"sorder.sale_order~" ) JOIN (LEFT=~"sorder.sale_order~" OP =~"=~"RIGHT=~"sorditem.sale_order~" ) JOIN (LEFT=~"sorddet.line_no~" OP =~"=~"RIGHT=~"sorditem.line_no~" ) JOIN (LEFT=~"sorditem.item_code__ord~" OP =~"=~"RIGHT=~"item.item_code~" ) JOIN (LEFT=~"sorder.cust_code~" OP =~"=~"RIGHT=~"customer_a.cust_code~" ) JOIN (LEFT=~"sorddet.site_code~" OP =~"=~"RIGHT=~"sorditem.site_code~" ) JOIN (LEFT=~"customer_b.cust_code~" OP =~"=~"RIGHT=~"sorder.cust_code__dlv~" )) " )
text(band=header alignment="0" text="Customer Code" border="6" color="33554432" x="2" y="2" height="16" width="89" html.valueishtml="0" name=cust_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="0" text="Customer Code" border="6" color="33554432" x="2" y="2" height="16" width="89" html.valueishtml="0" name=cust_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Line No" border="6" color="33554432" x="215" y="2" height="16" width="50" html.valueishtml="0" name=line_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="2" text="Item Code" border="6" color="33554432" x="769" y="2" height="16" width="65" html.valueishtml="0" name=item_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Item Code" border="6" color="33554432" x="450" y="2" height="16" width="65" html.valueishtml="0" name=item_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="2" text="Sale Order" border="6" color="33554432" x="586" y="2" height="16" width="80" html.valueishtml="0" name=sale_order_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Sale Order" border="6" color="33554432" x="267" y="2" height="16" width="80" html.valueishtml="0" name=sale_order_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="2" text="Due Date" border="6" color="33554432" x="672" y="2" height="16" width="95" html.valueishtml="0" name=due_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Due Date" border="6" color="33554432" x="349" y="2" height="16" width="99" html.valueishtml="0" name=due_date_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="0" text="Description" border="6" color="33554432" x="839" y="2" height="16" width="128" html.valueishtml="0" name=item_descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Single Lot" border="6" color="33554432" x="969" y="2" height="16" width="63" 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="2" background.color="67108864" )
text(band=header alignment="0" text="Master Pack" border="6" color="33554432" x="1034" y="2" height="16" width="76" 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="2" background.color="67108864" )
text(band=header alignment="0" text="Stock To Dock" border="6" color="33554432" x="1185" y="2" height="16" width="85" 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="2" background.color="67108864" )
text(band=header alignment="0" text="Active Pick" border="6" color="33554432" x="1112" y="2" height="16" width="71" 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="2" background.color="67108864" )
text(band=header alignment="0" text="Parcel Pick Allow" border="6" color="33554432" x="1274" y="2" height="16" width="98" 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="2" background.color="67108864" )
text(band=header alignment="2" text="Shipment Type" border="6" color="33554432" x="1376" y="2" height="16" width="87" html.valueishtml="0" name=ship_type_t visible="1" hidesnaked=1 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="1" text="Quantity" border="6" color="33554432" x="1467" y="2" height="16" width="47" html.valueishtml="0" name=quantity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Dock Location" border="6" color="33554432" x="2418" y="3" height="16" width="84" html.valueishtml="0" name=lock_code__dock_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="1" text="Part Quantity" border="6" color="33554432" x="1518" y="2" height="16" width="89" html.valueishtml="0" name=part_qty_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Transporter Code" border="6" color="33554432" x="2151" y="3" height="16" width="112" html.valueishtml="0" name=tran_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Transporter Name" border="6" color="33554432" x="2267" y="3" height="16" width="147" html.valueishtml="0" name=tran_name_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Packing Instruction" border="6" color="33554432" x="2506" y="3" height="16" width="108" html.valueishtml="0" name=pack_instr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Site Code" border="6" color="33554432" x="2618" y="3" height="16" width="67" html.valueishtml="0" name=site_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Customer Name" border="6" color="33554432" x="93" y="2" height="16" width="120" html.valueishtml="0" name=cust_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="2" background.color="67108864" ) text(band=header alignment="0" text="Customer Name" border="6" color="33554432" x="93" y="2" height="16" width="120" html.valueishtml="0" name=cust_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="2" background.color="67108864" )
text(band=header alignment="0" text="Description" border="6" color="33554432" x="517" y="2" height="16" width="131" html.valueishtml="0" name=item_descr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="0" text="Customer Code Delivery" border="6" color="33554432" x="217" y="2" height="16" width="132" html.valueishtml="0" name=cust_code__dlv_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Single Lot" border="6" color="33554432" x="650" y="2" height="16" width="63" 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="2" background.color="67108864" ) text(band=header alignment="0" text="Customer Code Delivery Name" border="6" color="33554432" x="353" y="2" height="16" width="174" html.valueishtml="0" name=customer_cust_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="2" background.color="67108864" )
text(band=header alignment="0" text="Master Pack" border="6" color="33554432" x="715" y="2" height="16" width="76" 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="2" background.color="67108864" ) text(band=header alignment="2" text="Line No" border="6" color="33554432" x="531" y="2" height="16" width="51" html.valueishtml="0" name=line_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Stock To Dock" border="6" color="33554432" x="866" y="2" height="16" width="85" 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="2" background.color="67108864" ) text(band=header alignment="1" text="Pending Qty" border="6" color="33554432" x="1611" y="2" height="16" width="83" html.valueishtml="0" name=pending_quantity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Active Pick" border="6" color="33554432" x="793" y="2" height="16" width="71" 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="2" background.color="67108864" ) text(band=header alignment="1" text="Stock Qty" border="6" color="33554432" x="1698" y="2" height="16" width="64" html.valueishtml="0" name=stock_quantity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Parcel Pick Allow" border="6" color="33554432" x="953" y="2" height="16" width="98" 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="2" background.color="67108864" ) text(band=header alignment="1" text="Hold Qty" border="6" color="33554432" x="1766" y="2" height="16" width="66" html.valueishtml="0" name=hold_qty_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Shipment Type" border="6" color="33554432" x="1053" y="2" height="16" width="87" html.valueishtml="0" name=ship_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="1" text="Qty Alloc" border="6" color="33554432" x="1836" y="2" height="16" width="65" html.valueishtml="0" name=qty_alloc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="1" text="Quantity" border="6" color="33554432" x="1142" y="2" height="16" width="69" html.valueishtml="0" name=quantity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="1" text="Bal Qty" border="6" color="33554432" x="1905" y="2" height="16" width="65" html.valueishtml="0" name=bal_qty_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Dock Location" border="6" color="33554432" x="2094" y="2" height="16" width="84" html.valueishtml="0" name=lock_code__dock_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="0" text="Manual Alloc Qty" border="6" color="33554432" x="1974" y="2" height="16" width="100" html.valueishtml="0" name=manual_allocqty_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="1" text="Part Quantity" border="6" color="33554432" x="1213" y="2" height="16" width="89" html.valueishtml="0" name=part_qty_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="0" text="Alloc Flag" border="6" color="33554432" x="2078" y="3" height="16" width="70" html.valueishtml="0" name=alloc_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="2" background.color="67108864" )
text(band=header alignment="1" text="Pending Qty" border="6" color="33554432" x="1304" y="2" height="16" width="83" html.valueishtml="0" name=pending_quantity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="1" text="Stock Qty" border="6" color="33554432" x="1389" y="2" height="16" width="64" html.valueishtml="0" name=stock_quantity_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="1" text="Hold Qty" border="6" color="33554432" x="1455" y="2" height="16" width="66" html.valueishtml="0" name=hold_qty_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="1" text="Qty Alloc" border="6" color="33554432" x="1523" y="2" height="16" width="65" html.valueishtml="0" name=qty_alloc_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="1" text="Bal Qty" border="6" color="33554432" x="1590" y="2" height="16" width="65" html.valueishtml="0" name=bal_qty_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Alloc Flag" border="6" color="33554432" x="1759" y="2" height="16" width="70" html.valueishtml="0" name=alloc_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="2" background.color="67108864" )
text(band=header alignment="0" text="Transporter Code" border="6" color="33554432" x="1831" y="2" height="16" width="112" html.valueishtml="0" name=tran_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Transporter Name" border="6" color="33554432" x="1945" y="2" height="16" width="147" html.valueishtml="0" name=tran_name_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Packing Instruction" border="6" color="33554432" x="2180" y="2" height="16" width="108" html.valueishtml="0" name=pack_instr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Manual Alloc Qty" border="6" color="33554432" x="1657" y="2" height="16" width="100" html.valueishtml="0" name=manual_allocqty_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Site Code" border="6" color="33554432" x="2290" y="2" height="16" width="67" html.valueishtml="0" name=site_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Exp Lev" border="6" color="33554432" x="2359" y="2" height="16" width="62" html.valueishtml="0" name=exp_lev_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="0" color="33554432" x="2" y="2" height="15" width="89" format="[general]" html.valueishtml="0" name=cust_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=1 alignment="0" tabsequence=32766 border="0" color="33554432" x="2" y="2" height="15" width="89" format="[general]" html.valueishtml="0" name=cust_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="578" y="2" height="15" width="80" format="[general]" html.valueishtml="0" name=sale_order visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=7 alignment="0" tabsequence=32766 border="0" color="33554432" x="660" y="2" height="15" width="99" format="[shortdate] [time]" html.valueishtml="0" name=due_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=32766 border="0" color="33554432" x="761" y="2" height="15" width="65" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=32766 border="0" color="33554432" x="828" y="2" height="15" width="131" format="[general]" html.valueishtml="0" name=item_descr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=10 border="0" color="33554432" x="961" y="2" height="16" width="63" format="[general]" html.valueishtml="0" name=single_lot visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=11 alignment="0" tabsequence=20 border="0" color="33554432" x="1026" y="2" height="16" width="76" format="[general]" html.valueishtml="0" name=master_pack_allow visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=30 border="0" color="33554432" x="1104" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=active_pick_allow visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=40 border="0" color="33554432" x="1177" y="2" height="16" width="85" format="[general]" html.valueishtml="0" name=stock_to_dock_allow visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=50 border="0" color="33554432" x="1264" y="2" height="15" width="98" format="[general]" html.valueishtml="0" name=parcelpack_allow visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=15 alignment="0" tabsequence=60 border="0" color="33554432" x="1365" y="1" height="16" width="61" format="[general]" html.valueishtml="0" name=ship_type visible="1" hidesnaked=1 edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=16 alignment="1" tabsequence=32766 border="0" color="33554432" x="1429" y="1" height="15" width="69" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=2 alignment="0" tabsequence=32766 border="0" color="33554432" x="93" y="2" height="15" width="120" format="[general]" html.valueishtml="0" name=cust_name visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=2 alignment="0" tabsequence=32766 border="0" color="33554432" x="93" y="2" height="15" width="120" format="[general]" html.valueishtml="0" name=cust_name visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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="1" tabsequence=32766 border="0" color="33554432" x="215" y="2" height="15" width="50" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=3 alignment="0" tabsequence=32766 border="0" color="33554432" x="214" y="2" height="16" width="132" format="[general]" html.valueishtml="0" name=cust_code__dlv visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=4 alignment="0" tabsequence=32766 border="0" color="33554432" x="267" y="2" height="15" width="80" format="[general]" html.valueishtml="0" name=sale_order visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=4 alignment="0" tabsequence=32766 border="0" color="33554432" x="348" y="2" height="16" width="176" format="[general]" html.valueishtml="0" name=customer_cust_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=32766 border="0" color="33554432" x="349" y="2" height="15" width="99" format="[shortdate] [time]" html.valueishtml="0" name=due_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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="1" tabsequence=32766 border="0" color="33554432" x="526" y="2" height="15" width="51" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=6 alignment="0" tabsequence=32766 border="0" color="33554432" x="450" y="2" height="15" width="65" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=17 alignment="0" tabsequence=32766 border="0" color="33554432" x="1500" y="0" height="16" width="89" format="[general]" html.valueishtml="0" name=part_qty visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=7 alignment="0" tabsequence=32766 border="0" color="33554432" x="517" y="2" height="15" width="131" format="[general]" html.valueishtml="0" name=item_descr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=18 alignment="1" tabsequence=32766 border="0" color="33554432" x="1591" y="0" height="15" width="83" format="[general]" html.valueishtml="0" name=pending_quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=10 border="0" color="33554432" x="650" y="2" height="16" width="63" format="[general]" html.valueishtml="0" name=single_lot visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=19 alignment="1" tabsequence=32766 border="0" color="33554432" x="1676" y="0" height="15" width="64" format="[general]" html.valueishtml="0" name=stock_quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" 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=20 border="0" color="33554432" x="715" y="2" height="16" width="76" format="[general]" html.valueishtml="0" name=master_pack_allow visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=20 alignment="1" tabsequence=32766 border="0" color="33554432" x="1742" y="0" height="16" width="66" format="[general]" html.valueishtml="0" name=hold_qty visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=30 border="0" color="33554432" x="793" y="2" height="16" width="71" format="[general]" html.valueishtml="0" name=active_pick_allow visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=21 alignment="1" tabsequence=70 border="0" color="33554432" x="1810" y="0" height="15" width="65" format="[general]" html.valueishtml="0" name=qty_alloc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=11 alignment="0" tabsequence=40 border="0" color="33554432" x="866" y="2" height="16" width="85" format="[general]" html.valueishtml="0" name=stock_to_dock_allow visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=22 alignment="1" tabsequence=32766 border="0" color="33554432" x="1877" y="0" height="16" width="65" format="[general]" html.valueishtml="0" name=bal_qty visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=50 border="0" color="33554432" x="953" y="2" height="15" width="98" format="[general]" html.valueishtml="0" name=parcelpack_allow visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=23 alignment="0" tabsequence=32766 border="0" color="33554432" x="1944" y="0" height="16" width="100" format="[general]" html.valueishtml="0" name=manual_allocqty visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=13 alignment="0" tabsequence=60 border="0" color="33554432" x="1053" y="2" height="16" width="87" format="[general]" html.valueishtml="0" name=ship_type visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=24 alignment="0" tabsequence=32766 border="0" color="33554432" x="2046" y="0" height="16" width="70" format="[general]" html.valueishtml="0" name=alloc_flag visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=14 alignment="1" tabsequence=32766 border="0" color="33554432" x="1142" y="2" height="15" width="69" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=25 alignment="0" tabsequence=32766 border="0" color="33554432" x="2118" y="0" height="16" width="112" format="[general]" html.valueishtml="0" name=tran_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=25 alignment="0" tabsequence=32766 border="0" color="33554432" x="2094" y="2" height="16" width="84" format="[general]" html.valueishtml="0" name=lock_code__dock visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=26 alignment="0" tabsequence=32766 border="0" color="33554432" x="2232" y="0" height="16" width="147" format="[general]" html.valueishtml="0" name=tran_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=18 alignment="1" tabsequence=70 border="0" color="33554432" x="1523" y="2" height="15" width="65" format="[general]" html.valueishtml="0" name=qty_alloc visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=27 alignment="0" tabsequence=32766 border="0" color="33554432" x="2382" y="1" height="16" width="84" format="[general]" html.valueishtml="0" name=lock_code__dock visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=19 alignment="1" tabsequence=32766 border="0" color="33554432" x="1455" y="2" height="16" width="66" format="[general]" html.valueishtml="0" name=hold_qty visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=28 alignment="0" tabsequence=32766 border="0" color="33554432" x="2469" y="1" height="15" width="108" format="[general]" html.valueishtml="0" name=pack_instr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=15 alignment="0" tabsequence=32766 border="0" color="33554432" x="1213" y="2" height="16" width="89" format="[general]" html.valueishtml="0" name=part_qty visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=29 alignment="0" tabsequence=32766 border="0" color="33554432" x="2580" y="1" height="15" width="67" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=16 alignment="1" tabsequence=32766 border="0" color="33554432" x="1304" y="2" height="15" width="83" format="[general]" html.valueishtml="0" name=pending_quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=30 alignment="0" tabsequence=32766 border="0" color="33554432" x="2650" y="1" height="15" width="91" format="[general]" html.valueishtml="0" name=exp_lev visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" 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=17 alignment="1" tabsequence=32766 border="0" color="33554432" x="1389" y="2" height="15" width="64" format="[general]" html.valueishtml="0" name=stock_quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=header alignment="0" text="Part Qty Real" border="6" color="33554432" x="2835" y="29" height="16" width="1" html.valueishtml="0" name=part_qty_real_t visible="0" hidesnaked=1 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=20 alignment="1" tabsequence=32766 border="0" color="33554432" x="1590" y="2" height="16" width="65" format="[general]" html.valueishtml="0" name=bal_qty visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=header alignment="0" text="Exp Lev" border="6" color="33554432" x="2689" y="3" height="16" width="77" html.valueishtml="0" name=exp_lev_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="0" color="33554432" x="1759" y="2" height="16" width="70" format="[general]" html.valueishtml="0" name=alloc_flag visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) text(band=header alignment="0" text="Last Col" border="6" color="33554432" x="2785" y="27" height="16" width="1" html.valueishtml="0" name=last_col_t visible="0" hidesnaked=1 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=23 alignment="0" tabsequence=32766 border="0" color="33554432" x="1831" y="2" height="16" width="112" format="[general]" html.valueishtml="0" name=tran_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=31 alignment="0" tabsequence=32766 border="0" color="33554432" x="2744" y="0" height="15" width="1" format="[general]" html.valueishtml="0" name=last_col visible="0" hidesnaked=1 edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" 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=24 alignment="0" tabsequence=32766 border="0" color="33554432" x="1945" y="2" height="16" width="147" format="[general]" html.valueishtml="0" name=tran_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=32 alignment="1" tabsequence=32766 border="0" color="33554432" x="2744" y="0" height="15" width="1" format="[general]" html.valueishtml="0" name=part_qty_real visible="0" hidesnaked=1 edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" 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=21 alignment="0" tabsequence=32766 border="0" color="33554432" x="1657" y="2" height="16" width="100" format="[general]" html.valueishtml="0" name=manual_allocqty visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=26 alignment="0" tabsequence=32766 border="0" color="33554432" x="2180" y="2" height="15" width="108" format="[general]" html.valueishtml="0" name=pack_instr visible="1" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=27 alignment="0" tabsequence=32766 border="0" color="33554432" x="2290" y="2" height="15" width="67" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" 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=28 alignment="0" tabsequence=32766 border="0" color="33554432" x="2359" y="2" height="15" width="62" format="[general]" html.valueishtml="0" name=exp_lev visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" 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=30 alignment="0" tabsequence=32766 border="0" color="33554432" x="2423" y="2" height="15" width="1" format="[general]" html.valueishtml="0" name=last_col visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Arial" 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=29 alignment="1" tabsequence=32766 border="0" color="33554432" x="2426" y="2" height="15" width="1" format="[general]" html.valueishtml="0" name=part_qty_real visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" ) htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" ) htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(usetemplate="" headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="xx" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><untitled><untitled_row __pbband=~"detail~"><sorder_cust_code>cust_code</sorder_cust_code><customer_cust_name>cust_name</customer_cust_name><sorddet_line_no>line_no</sorddet_line_no><sorder_sale_order>sale_order</sorder_sale_order><sorder_due_date>due_date</sorder_due_date><sorditem_item_code>item_code</sorditem_item_code><item_descr>item_descr</item_descr><sorditem_quantity>quantity</sorditem_quantity><stosc_quantity/><sorditem_qty_alloc>qty_alloc</sorditem_qty_alloc><sorddet_pack_instr>pack_instr</sorddet_pack_instr><sorddet_site_code>site_code</sorddet_site_code><pending_quantity>pending_quantity</pending_quantity></untitled_row></untitled>")) export.xml(usetemplate="" headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 template=(comment="" encoding="UTF-8" name="xx" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><untitled><untitled_row __pbband=~"detail~"><sorder_cust_code>cust_code</sorder_cust_code><customer_cust_name>cust_name</customer_cust_name><sorddet_line_no>line_no</sorddet_line_no><sorder_sale_order>sale_order</sorder_sale_order><sorder_due_date>due_date</sorder_due_date><sorditem_item_code>item_code</sorditem_item_code><item_descr>item_descr</item_descr><sorditem_quantity>quantity</sorditem_quantity><stosc_quantity/><sorditem_qty_alloc>qty_alloc</sorditem_qty_alloc><sorddet_pack_instr>pack_instr</sorddet_pack_instr><sorddet_site_code>site_code</sorddet_site_code><pending_quantity>pending_quantity</pending_quantity></untitled_row></untitled>"))
......
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