Commit bbdd819c authored by pjain's avatar pjain

changedby Dhanraj on 08-SEP-14(porcprmpmwizic,22,23srd,xml and update sql...

changedby Dhanraj on 08-SEP-14(porcprmpmwizic,22,23srd,xml and update sql file) and client excel points(Pending qty per Art and all item changed points)


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96552 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 97ad6011
......@@ -119,7 +119,7 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
String siteCode = "";
String suppCode = "";
String lpnNo = "";
System.out.println("Call WFVAlDATA for IC RMPM porder");
System.out.println("Call WFVAlDATA for IC RMPM porder and editFlag==> "+editFlag);
Statement stmt = null;
ResultSet rs = null;
Connection conn = null;
......@@ -360,7 +360,7 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
confirmed = checkNull(rs.getString("CONFIRMED"));
}else{
System.out.println("ASN not in DB NULLLL=====>>>>>>");
errList.add( "VTASNNOTPR" );// ASN not present in DB
errList.add("VTPONCONF");// ASN not present in DB
errFields.add( childNodeName.toLowerCase());//both not in same transaction.
}
rs.close(); rs = null;
......@@ -375,7 +375,8 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
confirmed = checkNull(rs.getString("CONFIRMED"));
}else{
System.out.println("PO Not in DB NULLLL=====>>>>>>");
errList.add( "VTPONOTPRE" ); //PO not present in DB
//Changed by Dhanraj on 22-SEP-14 for chenged error code
errList.add( "VTPORD3" ); //PO not present in DB from :- from nvo
errFields.add( childNodeName.toLowerCase());
}
rs.close(); rs = null;
......@@ -387,8 +388,13 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
if ( !"Y".equalsIgnoreCase(confirmed.trim()) )
{
//Changed by Dhanraj on 22-SEP-14 seperate error code for purchase order.
if(!asnFlag && purchFlag){
errList.add( "VTPONCONF" ); //from nvo code(component)
}else{
errList.add( "UNCONFASN" );
}
errFields.add( childNodeName.toLowerCase() );
}
......@@ -416,7 +422,11 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
if(!(pndRcpQty > 0))
{
errList.add( "PORCPCONF" );
if(!asnFlag && purchFlag){
errList.add( "PORCPCONFP"); //Changed by Dharnaj on 22-SEP-14 for Purchase order
}else{
errList.add( "PORCPCONF" ); //Changed by Dharnaj on 22-SEP-14 for ASN
}
errFields.add( childNodeName.toLowerCase() );
}
//Dhanraj end
......@@ -740,7 +750,189 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
// end 26/10/11 manoharan all the errors should be returned so that warnings can be processed
}
}
} //Start Changed by Dharnaj on 22-SEP-14 for new requirement
else if ("dc_no".equalsIgnoreCase( childNodeName ) )
{ //add supp_code purc_order
purcOrder = checkNull(genericUtility.getColumnValue( "purc_order", currDom ));
System.out.println("purcOrder "+purcOrder);
String suppCodeD= checkNull(genericUtility.getColumnValue( "supp_code", currDom ));
System.out.println("suppCodeD "+suppCodeD);
String dcDate= checkNull(genericUtility.getColumnValue( "dc_date", currDom ));
System.out.println("dcDate "+dcDate);
String addEditD = checkNull(genericUtility.getColumnValue( "add", currDom ));
System.out.println("addEditD======================> "+addEditD);
java.util.Date upto_date_temp = (java.util.Date)sdf1.parse(dcDate.trim());
java.sql.Date sqlDateFormat=new java.sql.Date(upto_date_temp.getTime());
System.out.println("IN DC_NO validation");
String dcNo = checkNull(genericUtility.getColumnValue( "dc_no", currDom ));//challan no
int dcCounter=0;
if( dcNo.trim().length() == 0 )
{
}
else
{
if(addEditD.equals("A"))//Add and for edit manual pass in ass tab=E
{
/*sql = "SELECT COUNT(*) AS CNT FROM PORCP WHERE DC_NO= ? AND PURC_ORDER <> ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, dcNo);
pstmt.setString(2, purcOrder);
rs = pstmt.executeQuery();
if (rs.next())
{
dcCounter = rs.getInt(1);
}*/
sql=" select count(*) as cnt from porcp "+
" where supp_code = ? "+
" and dc_no = ? " +
" and dc_date = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, suppCodeD);
pstmt.setString(2, dcNo);
pstmt.setDate(3, sqlDateFormat);
rs = pstmt.executeQuery();
if (rs.next())
{
dcCounter = rs.getInt(1);
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
}
else if(addEditD.equals("E"))
{
sql=" select count(*) as cnt from porcp "+
" where supp_code = ? "+
" and dc_no = ? " +
" and dc_date = ? " +
"and purc_order <> ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, suppCodeD);
pstmt.setString(2, dcNo);
pstmt.setDate(3, sqlDateFormat);
pstmt.setString(4, purcOrder);
rs = pstmt.executeQuery();
if (rs.next())
{
dcCounter = rs.getInt(1);
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
}
if(dcCounter > 0)
{
System.out.println("Chalan no already exits");
errList.add( "VTDCNODUBL"); //duplicate chalan
errFields.add( childNodeName.toLowerCase() );
}
}
}
else if ("invoice_no".equalsIgnoreCase( childNodeName ))
{
purcOrder = checkNull(genericUtility.getColumnValue( "purc_order", currDom ));
System.out.println("IN invoice_no validation");
String invoiceNo = checkNull(genericUtility.getColumnValue( "invoice_no", currDom ));//challan no
System.out.println("purcOrder "+purcOrder);
String suppCodeD= checkNull(genericUtility.getColumnValue( "supp_code", currDom ));
System.out.println("suppCodeD "+suppCodeD);
String invoiceDate= checkNull(genericUtility.getColumnValue( "invoice_date", currDom ));
System.out.println("dcDate "+invoiceDate);
String addEditD = checkNull(genericUtility.getColumnValue( "add", currDom ));
System.out.println("addEditD======================> "+addEditD);
java.util.Date upto_date_temp = (java.util.Date)sdf1.parse(invoiceDate.trim());
java.sql.Date sqlDateFormat=new java.sql.Date(upto_date_temp.getTime());
int dcCounter=0;
if( invoiceNo.trim().length() == 0 )
{
System.out.println("Empty check by genValidation"); //not empty then check duplication.
}
else
{
if(addEditD.equals("A"))
{
/*sql = "SELECT COUNT(*) AS CNT FROM PORCP WHERE INVOICE_NO= ? AND PURC_ORDER <> ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, invoiceNo);
pstmt.setString(2, purcOrder);
rs = pstmt.executeQuery();
if (rs.next())
{
dcCounter = rs.getInt(1);
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;*/
sql=" select count(*) as cnt from porcp "+
" where supp_code = ? "+
" and invoice_no = ? " +
" and invoice_date = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, suppCodeD);
pstmt.setString(2, invoiceNo);
pstmt.setDate(3, sqlDateFormat);
rs = pstmt.executeQuery();
if (rs.next())
{
dcCounter = rs.getInt(1);
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
}
else if(addEditD.equals("E"))
{
sql=" select count(*) as cnt from porcp "+
" where supp_code = ? "+
" and invoice_no = ? " +
" and invoice_date = ? " +
" and purc_order <> ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, suppCodeD);
pstmt.setString(2, invoiceNo);
pstmt.setDate(3, sqlDateFormat);
pstmt.setString(4, purcOrder);
rs = pstmt.executeQuery();
if (rs.next())
{
dcCounter = rs.getInt(1);
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
}
if(dcCounter > 0)
{
System.out.println("Invoice no already exits");
errList.add( "VTINVCDUBL"); //duplicate Invoice no
errFields.add( childNodeName.toLowerCase() );
}
}
}
else if("tran_type".equalsIgnoreCase( childNodeName ))
{
String tranType = genericUtility.getColumnValue("tran_type", currDom );
System.out.println(" TranType============>"+tranType);
if( tranType == null )
{
errList.add( "VTNULTTYPE" );
errFields.add( childNodeName.toLowerCase() );
}else{
tranType=tranType.trim();
if(tranType.length() == 0){
errList.add( "VTNULTTYPE" );
errFields.add( childNodeName.toLowerCase() );
}
}
}
//End Changed by Dharnaj on 22-SEP-14 for new requirement
}// for loop end
}//case 2 end
break;
......@@ -1335,7 +1527,8 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
if(asnNo != null && !asnNo.equals(""))//Dhanraj ASN Scan.....
{//protect ='1'
purcOrder = checkNull(genericUtility.getColumnValue("purc_order", allDom, "3" ));
String lineNoOrder= checkNull(genericUtility.getColumnValue("line_no__ord", allDom, "3" ));
//Changed by Dhanraj 22-SEP-14 for line_no_ord required space. old use checkNull();
String lineNoOrder= checkNullNotTrim(genericUtility.getColumnValue("line_no__ord", allDom, "3" ));
itemCode="";
int noArt=0;
int noPallet=0;
......@@ -1421,7 +1614,8 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
//for(int j = 0; j<lineOrdList.getLength(); j++)
//{
domLine=checkNull(genericUtility.getColumnValue("line_no__ord", allDom, "3" ));
//changed by Dhanraj 22-SEP-14 for Line_No__ord required space.
domLine=checkNullNotTrim(genericUtility.getColumnValue("line_no__ord", allDom, "3" ));
System.out.println("domLine----"+domLine);
parentList= allDom.getElementsByTagName( "Detail" + currentFormNo );
......@@ -1552,6 +1746,7 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
//NEW VAlidation as per req. Dhanraj 07-AUG-14 and supp_code__mnfr validation call by GenValidation.
else if ( "expiry_date".equalsIgnoreCase( childNodeName ) )
{
itemCode = checkNull(genericUtility.getColumnValue("item_code", allDom, "3" ));
System.out.println("call Dhanraj exp_date");
if ( childNode.getFirstChild() == null )
{
......@@ -1564,7 +1759,7 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
{
System.out.println("call Dhanraj site_code__mfg");
itemCode = checkNull(genericUtility.getColumnValue("item_code", allDom, "3" ));//genericUtility.getColumnValue( "item_code", dom );
sql = "SELECT supp_sour FROM siteitem WHERE ITEM_CODE = ? ";
sql = "SELECT SUPP_SOUR FROM SITEITEM WHERE ITEM_CODE = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, itemCode);
rs = pstmt.executeQuery();
......@@ -1603,8 +1798,23 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
else if ( "mfg_date".equalsIgnoreCase( childNodeName ) )
{
if ( childNode.getFirstChild() == null )
{ //Changed by Dhanraj on 22-SEP-14 Add validation using track_shelf_life
itemCode = checkNull(genericUtility.getColumnValue("item_code", allDom, "3" ));
sql= " select * from item where item_code = ? and track_shelf_life = ? " ;
pstmt = conn.prepareStatement( sql );
pstmt.setString(1, itemCode);
pstmt.setString(2, "Y");
rs = pstmt.executeQuery();
if( rs.next())
{
//Null Allowed.
errList.add( "VTMFGDATE4" );//for mfg date old error code use.
errFields.add( childNodeName.toLowerCase() );
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
}else{
String mfgDate = checkNull(genericUtility.getColumnValue("mfg_date", allDom, "3" ));//genericUtility.getColumnValue( "mfg_date", dom );
flag=DateValidation(mfgDate);
......@@ -1649,7 +1859,41 @@ public class PoRcpRmPmIC extends ValidatorEJB implements PoRcpRmPmICRemote, PoRc
}//max qty validation pending...
}
}
}/*else if ( "no_art".equalsIgnoreCase( childNodeName ) ){//Dhanraj
}
else if ( "batch_no".equalsIgnoreCase( childNodeName ) ) //Changed by Dhanraj on 22-SEP-14
{
if(asnNo != null && !asnNo.equals("")){//protect ='1'
}else{//For Purchase order
int dcCounter=0;
System.out.println("RMPMReceipt batch_no validation");
String batchNo = checkNull(genericUtility.getColumnValue( "batch_no", currDom ));//challan no
purcOrder = checkNull(genericUtility.getColumnValue("purc_order", allDom, "3" ));
itemCode = checkNull(genericUtility.getColumnValue("item_code", allDom, "3" ));//genericUtility.getColumnValue( "item_code", dom );
String tranId = checkNull(genericUtility.getColumnValue("tran_id", allDom, "3" ));
System.out.println(" batch_no "+batchNo+" , purcOrder "+purcOrder+" , itemCode "+itemCode+" tranId==> "+tranId);
/*sql = "SELECT COUNT(*) AS CNT FROM PORCPDET WHERE BATCH_NO = ? AND TRAN_ID <> ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, batchNo);
pstmt.setString(2, tranId);
rs = pstmt.executeQuery();
if (rs.next())
{
dcCounter = rs.getInt(1);
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
if(dcCounter > 0)
{
System.out.println("BATCH already exits");
errList.add( "VTDUPBATCH"); //duplicate BATCH (MSG_No use From NVO code).
errFields.add( childNodeName.toLowerCase() );
}*/
}
}
/*else if ( "no_art".equalsIgnoreCase( childNodeName ) ){//Dhanraj
if(asnNo != null && !asnNo.equals("")){//protect ='1'
}else{//For Purchase order
System.out.println("RMPMReceipt Generation no art ");
......@@ -2196,7 +2440,8 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
columnValue = genericUtility.getColumnValue( currentColumn, currDom );
// long convQtyList = distComm.getConvQuantityFact(unit, mbaseUnit, itemCode, quantity, convFact,conn);
// distComm.getConvQuantityFact(arg0, arg1, arg2, arg3, arg4, arg5)
AppConnectParm appConnect = new AppConnectParm();
Properties p = appConnect.getProperty();
......@@ -2467,8 +2712,11 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
}
System.out.println("@@@@@---- post_type :["+postType+"]");
// end by cpatil
if(asnNo != null && !asnNo.equals("")){//protect ='1' Changed by Dhanraj on 22-SEP-14
valueXmlString.append( "<tran_type protect ='1'><![CDATA[" ).append( checkNull(rs.getString("TRAN_TYPE")) ).append( "]]></tran_type>\r\n" );
}else{
valueXmlString.append( "<tran_type><![CDATA[" ).append( checkNull(rs.getString("TRAN_TYPE")) ).append( "]]></tran_type>\r\n" );
}
valueXmlString.append( "<site_code><![CDATA[" ).append( checkNull(rs.getString("SITE_CODE")) ).append( "]]></site_code>\r\n" );
valueXmlString.append( "<site_descr><![CDATA[" ).append( checkNull(siteDescr) ).append( "]]></site_descr>\r\n" );
valueXmlString.append( "<asn_no protect ='1'><![CDATA[" ).append( checkNull(asnNo)).append( "]]></asn_no>\r\n" );
......@@ -2572,8 +2820,10 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
valueXmlString.append("<tran_code protect ='1'><![CDATA[").append(checkNull(tranCode)).append("]]></tran_code>\r\n"); //added by kunal on 05/09/12
}else{
valueXmlString.append("<tran_code><![CDATA[").append(checkNull(tranCode)).append("]]></tran_code>\r\n"); //added by kunal on 05/09/12
}
}
valueXmlString.append("<add><![CDATA[").append("E").append("]]></add>\r\n"); //added by Dhanraj for check add and edit code on 22-SEP-14
valueXmlString.append("</Detail2>\r\n");
}
else
......@@ -2729,7 +2979,12 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
valueXmlString.append( "<asn_no protect ='1'><![CDATA[" ).append(checkNull(asnNo)).append( "]]></asn_no>\r\n" );
valueXmlString.append( "<purc_order protect ='1'><![CDATA[" ).append( checkNull(purcOrder) ).append( "]]></purc_order>\r\n" );
//Changed Pragyan as per KB & Manoj sharma.start
valueXmlString.append( "<tran_type><![CDATA[" ).append(pordType).append( "]]></tran_type>\r\n" );
if(asnNo != null && !asnNo.equals("")){//protect ='1'
valueXmlString.append( "<tran_type protect ='1'><![CDATA[" ).append(pordType).append( "]]></tran_type>\r\n" );
}else{
//Changed by Dhanraj for as per pragyan sir tran type set using gencode pophelp on 22-SEP-14 not pordtype
valueXmlString.append( "<tran_type><![CDATA[" ).append("").append( "]]></tran_type>\r\n" );
}
valueXmlString.append( "<site_code><![CDATA[" ).append( checkNull(loginSite) ).append( "]]></site_code>\r\n" );
valueXmlString.append( "<site_descr><![CDATA[" ).append( checkNull(siteDescr) ).append( "]]></site_descr>\r\n" );
valueXmlString.append( "<supp_code><![CDATA[" ).append( checkNull(suppCode) ).append( "]]></supp_code>\r\n" );
......@@ -2766,7 +3021,11 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
if(asnNo != null && !asnNo.equals("")){//protect ='1'
valueXmlString.append("<rec_date protect ='1'><![CDATA[").append(currDateStr).append("]]></rec_date>");
}else{
valueXmlString.append("<rec_date><![CDATA[").append("").append("]]></rec_date>");
java.util.Date currentDate = new java.util.Date();
//SimpleDateFormat sdfDestination = new SimpleDateFormat(applDateFormat);
expDate = dateFormat.format(currentDate);
System.out.println("Default rec_date (current date) =======>>"+expDate);
valueXmlString.append("<rec_date><![CDATA[").append(expDate).append("]]></rec_date>");
}
valueXmlString.append("<confirmed><![CDATA[").append("N").append("]]></confirmed>");
valueXmlString.append("<remarks><![CDATA[").append(checkNull(remarks)).append("]]></remarks>");
......@@ -2801,7 +3060,7 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
valueXmlString.append( "<accept_criteria><![CDATA[" ).append( accptCriteria ).append( "]]></accept_criteria>\r\n" );
valueXmlString.append( "<reciept_type><![CDATA[" ).append( "F" ).append( "]]></reciept_type>\r\n" );
/* Added By Ashish Sonawane on 28/08/12 as per manoharan Sir [END] */
valueXmlString.append("<add><![CDATA[").append("A").append("]]></add>\r\n"); //added by Dhanraj for check add and edit code on 22-SEP-14
valueXmlString.append("</Detail2>\r\n");
}
if (rs != null)
......@@ -2823,6 +3082,7 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
if( currentColumn.trim().equalsIgnoreCase( "itm_default" ) )
{
//Dhanraj
boolean flagForShelfType=true;
System.out.println("==============================DhanrajThakare==>");//+genericUtility.getColumnValue("quantity",currDom));
asnNo =checkNull(genericUtility.getColumnValue("asn_no", hdrDom));
purchaseOrder =checkNull( genericUtility.getColumnValue( "purc_order", hdrDom ));//
......@@ -2991,7 +3251,8 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
valueXmlString.append("<loc_code><![CDATA[").append(locCode).append("]]></loc_code>\r\n");
valueXmlString.append("<lot_no><![CDATA[").append(lotNo).append("]]></lot_no>\r\n");
valueXmlString.append("<lot_sl><![CDATA[").append(lpnNo).append("]]></lot_sl>\r\n");
valueXmlString.append("<line_no__ord><![CDATA[").append(checkNull(rs.getString("LINE_NO__ORD"))).append("]]></line_no__ord>\r\n");
//Changed by Dhanraj on 22-SEP-14 for line_no__ord required space.
valueXmlString.append("<line_no__ord><![CDATA[").append(checkNullNotTrim(rs.getString("LINE_NO__ORD"))).append("]]></line_no__ord>\r\n");
valueXmlString.append("<canc_bo><![CDATA[").append(checkNull(rs.getString("CANC_BO"))).append("]]></canc_bo>\r\n");
valueXmlString.append("<vouch_qty><![CDATA[").append(rs.getDouble("VOUCH_QTY")).append("]]></vouch_qty>\r\n");
valueXmlString.append("<acct_code__dr><![CDATA[").append(checkNull(rs.getString("ACCT_CODE__DR"))).append("]]></acct_code__dr>\r\n");
......@@ -3008,8 +3269,11 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
valueXmlString.append("<pack_code><![CDATA[").append(packCode).append("]]></pack_code>\r\n");//Changed By Mahesh Patidar on 29/06/12
valueXmlString.append("<no_art><![CDATA[").append(rs.getInt("NO_ART")).append("]]></no_art>\r\n");
valueXmlString.append("<pack_instr><![CDATA[").append(checkNull(rs.getString("PACK_INSTR"))).append("]]></pack_instr>\r\n");
if(asnNo != null && !asnNo.equals("")){//protect ='1'
valueXmlString.append("<batch_no protect ='1'><![CDATA[").append(checkNull(rs.getString("BATCH_NO"))).append("]]></batch_no>\r\n");
}else{
valueXmlString.append("<batch_no><![CDATA[").append(checkNull(rs.getString("BATCH_NO"))).append("]]></batch_no>\r\n");
}
mfgDateDb = rs.getDate("MFG_DATE");
if ( mfgDateDb != null )
{
......@@ -3018,8 +3282,6 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
if(asnNo != null && !asnNo.equals("")){//protect ='1'
valueXmlString.append( "<mfg_date protect ='1'><![CDATA[" ).append( mfgDateStr ).append( "]]></mfg_date>\r\n" );
}else{
valueXmlString.append( "<mfg_date><![CDATA[" ).append( mfgDateStr ).append( "]]></mfg_date>\r\n" );
}
}
......@@ -3115,6 +3377,7 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
if(asnNo != null && !asnNo.equals("")){//protect ='1'
valueXmlString.append("<shelf_life__type protect ='1'><![CDATA[").append(checkNull(rs.getString("SHELF_LIFE__TYPE"))).append("]]></shelf_life__type>\r\n");
}else{
flagForShelfType=false;
valueXmlString.append("<shelf_life__type protect ='0'><![CDATA[").append(checkNull(rs.getString("SHELF_LIFE__TYPE"))).append("]]></shelf_life__type>\r\n");
}
......@@ -3129,6 +3392,7 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
else
{
System.out.println("Call 3rd from for Add Dhanarj");
flagForShelfType=true;
asnNo = checkNull(genericUtility.getColumnValue("asn_no", hdrDom));
scanLocCode = genericUtility.getColumnValue( "loc_code", hdrDom );
if(asnNo != null && !asnNo.equals(""))
......@@ -3481,6 +3745,7 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
grossWeight = rsItemLotPack.getDouble("GROSS_WEIGHT");
netWeight = rsItemLotPack.getDouble("NET_WEIGHT");
tareWeight = grossWeight - netWeight;
System.out.println(" Weight gross net tare shipperSize "+grossWeight+" "+netWeight+" "+tareWeight+" "+shipperSize);
if(asnNo != null && !asnNo.equals("")){
if ( shipperSize > 0 )
{
......@@ -3651,10 +3916,12 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
//valueXmlString.append("<realised_qty><![CDATA[").append(quantity).append("]]></realised_qty>\r\n");
//Dharnaj
if(asnNo != null && !asnNo.equals("")){//protect ='1'
valueXmlString.append("<batch_no><![CDATA[").append( checkNull(rs.getString("LOT_NO")) ).append("]]></batch_no>\r\n");
valueXmlString.append("<batch_no protect='1'><![CDATA[").append( checkNull(rs.getString("LOT_NO")) ).append("]]></batch_no>\r\n");
valueXmlString.append("<realised_qty protect ='1'><![CDATA[").append(quantity).append("]]></realised_qty>\r\n");//chnage done by kunal on 05/09/12
}else{
valueXmlString.append("<batch_no><![CDATA[").append("").append("]]></batch_no>\r\n");
//if(flagForShelfType){ //changed by Dhanraj 0n 22-SEP-14
// valueXmlString.append("<batch_no ><![CDATA[").append("").append("]]></batch_no>\r\n");
//}
valueXmlString.append("<realised_qty><![CDATA[").append(quantity).append("]]></realised_qty>\r\n");//chnage done by kunal on 05/09/12
}
valueXmlString.append("<excess_short_qty><![CDATA[").append("0").append("]]></excess_short_qty>\r\n");
......@@ -3672,7 +3939,40 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
java.util.Date currentDate = new java.util.Date();
//SimpleDateFormat sdfDestination = new SimpleDateFormat(applDateFormat);
expDate = dateFormat.format(currentDate);
System.out.println("Default exp date =======>>"+expDate);
System.out.println("Default exp date(current date) =======>>"+expDate);
//Changed by Dhanraj as for RMPM-MFG Date Calculation as disparm table on 22-SEP-14
//MFG date calculation calculated mfgDate - dispham var value as per pragyan sir
String mfgDateCal = distComm.getDisparams("999999","PRCP_MFG_DATE_VALUE",conn);
System.out.println("PRCP_MFG_DATE_VALUE ==>"+mfgDateCal);
int mfgDateCalInt=0;
if("".equals(mfgDateCal)){
mfgDateCal="0";
}
mfgDateCalInt=Integer.parseInt(mfgDateCal);
System.out.println(" mfgDateCalInt ==>"+mfgDateCalInt);
Calendar cal = Calendar.getInstance();
cal.add(Calendar.MONTH, - mfgDateCalInt);
Date result = cal.getTime();
expDateStr = dateFormat.format(result);
System.out.println("MFG DATE Get date after calculation==> "+result);
System.out.println(" MFG DATE Format convertedDate==>"+expDateStr);
//Expire date calculation calculated mfgDate + self_lite val as per pragyan sir
cal = Calendar.getInstance();
Timestamp timestam= new Timestamp(result.getTime());
Timestamp expDateTimeStamp = distComm.CalcExpiry( timestam, selfLife);
//Timestamp expDateTimeStamp = distComm.CalcExpiry( timestam, ((-1)*selfLife) );
cal.setTime(expDateTimeStamp);
cal.add(Calendar.MONTH, + selfLife);
result = cal.getTime();
expDate = dateFormat.format(result);
System.out.println("Shelf Life===>"+selfLife);
System.out.println("EXP DATE Get date after calculation==> "+result);
System.out.println("EXP DATE Format convertedDate==>"+expDate);
//End 22-SEP-14
valueXmlString.append("<expiry_date><![CDATA[").append(expDate).append("]]></expiry_date>\r\n");
valueXmlString.append("<mfg_date><![CDATA[").append(expDateStr).append("]]></mfg_date>\r\n");
}
......@@ -3758,11 +4058,16 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
//valueXmlString.append("<lot_sl><![CDATA[").append("").append("]]></lot_sl>\r\n");//changed by gulzar on 12/19/2011
valueXmlString.append("<lot_sl><![CDATA[").append(lotSL).append("]]></lot_sl>\r\n");//changed by gulzar on 12/19/2011
//Dhnaraj
if(asnNo != null && !asnNo.equals("")){//protect ='1'
if(asnNo != null && !asnNo.equals(""))
{//protect ='1'
valueXmlString.append("<shelf_life__type protect ='1'><![CDATA[").append(checkNull(rs.getString("SHELF_LIFE__TYPE"))).append("]]></shelf_life__type>\r\n");
valueXmlString.append("<site_code__mfg protect ='1'><![CDATA[").append(siteCodeMf).append("]]></site_code__mfg>"); //Added by Ashish Sonawane 28/08/12
}else{
}else
{
if( flagForShelfType){//Changed by Dhanraj on 22-SEP-14
valueXmlString.append("<shelf_life__type ><![CDATA[").append("E").append("]]></shelf_life__type>\r\n");
}
valueXmlString.append("<site_code__mfg><![CDATA[").append(siteCodeMf).append("]]></site_code__mfg>"); //Added by Ashish Sonawane 28/08/12
}
......@@ -3859,6 +4164,18 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
* @param input
*/
private String checkNull( String inputVal )
{
if ( inputVal == null )
{
inputVal = "";
}else{
//Changed by Dhanraj on 22-SEP-14 for remove space.
inputVal = inputVal.trim() ;
}
return inputVal;
}
//Add by Dhanraj for line_no__ord required space 22-SEP-14
private String checkNullNotTrim( String inputVal )
{
if ( inputVal == null )
{
......@@ -4387,6 +4704,7 @@ private String disParmValue( Connection conn , String disparmVar ) throws ITMExc
{
sSQL = "SELECT SUM(QUANTITY),COUNT(D.LOT_SL) FROM PORCPDET D,PORCP P WHERE D.TRAN_ID = P.TRAN_ID "
+" AND D.ITEM_CODE = ? AND P.PURC_ORDER = ? GROUP BY D.ITEM_CODE";
pstmt = conn.prepareStatement(sSQL);
pstmt.setString(1, itemCode);
pstmt.setString(2, purcCorder);
}
......
......@@ -367,7 +367,7 @@
<type size="1">char</type>
<update>yes</update>
<updatewhereclause>yes</updatewhereclause>
<name>status</name>
<name>add</name>
<dbname>porcp.status</dbname>
<initial>O</initial>
<values>
......@@ -756,7 +756,7 @@
<dbname>porcp.asn_no</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;porcp&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;supplier&quot; ALIAS=&quot;SUPPLIER_A&quot; ) TABLE(NAME=&quot;itemser&quot; ) TABLE(NAME=&quot;transporter&quot; ) TABLE(NAME=&quot;porder&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;supplier&quot; ALIAS=&quot;SUPPLIER_B&quot; ) TABLE(NAME=&quot;crterm&quot; ) TABLE(NAME=&quot;supplier_bank&quot; ) COLUMN(NAME=&quot;porcp.tran_id&quot;) COLUMN(NAME=&quot;porcp.tran_date&quot;) COLUMN(NAME=&quot;porcp.eff_date&quot;) COLUMN(NAME=&quot;porcp.tran_type&quot;) COLUMN(NAME=&quot;porcp.site_code&quot;) COLUMN(NAME=&quot;porcp.purc_order&quot;) COLUMN(NAME=&quot;porcp.supp_code&quot;) COLUMN(NAME=&quot;porcp.dc_no&quot;) COLUMN(NAME=&quot;porcp.dc_date&quot;) COLUMN(NAME=&quot;porcp.tran_code&quot;) COLUMN(NAME=&quot;porcp.remarks&quot;) COLUMN(NAME=&quot;porcp.amount&quot;) COLUMN(NAME=&quot;porcp.discount&quot;) COLUMN(NAME=&quot;porcp.tax&quot;) COLUMN(NAME=&quot;porcp.chg_date&quot;) COLUMN(NAME=&quot;porcp.chg_user&quot;) COLUMN(NAME=&quot;porcp.chg_term&quot;) COLUMN(NAME=&quot;porcp.curr_code&quot;) COLUMN(NAME=&quot;porcp.exch_rate&quot;) COLUMN(NAME=&quot;SUPPLIER_A.supp_name&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;porcp.tran_ser&quot;) COLUMN(NAME=&quot;porcp.confirmed&quot;) COLUMN(NAME=&quot;porcp.tax_date&quot;) COLUMN(NAME=&quot;porcp.gr_no&quot;) COLUMN(NAME=&quot;porcp.rec_date&quot;) COLUMN(NAME=&quot;porcp.excise_ref&quot;) COLUMN(NAME=&quot;porcp.tran_id__ref&quot;) COLUMN(NAME=&quot;porcp.adj_amt&quot;) COLUMN(NAME=&quot;porcp.conf_date&quot;) COLUMN(NAME=&quot;porcp.lr_no&quot;) COLUMN(NAME=&quot;porcp.lr_date&quot;) COLUMN(NAME=&quot;porcp.lorry_no&quot;) COLUMN(NAME=&quot;porcp.trans_mode&quot;) COLUMN(NAME=&quot;porcp.item_ser&quot;) COLUMN(NAME=&quot;itemser.descr&quot;) COLUMN(NAME=&quot;transporter.tran_name&quot;) COLUMN(NAME=&quot;porcp.vouch_created&quot;) COLUMN(NAME=&quot;porcp.frt_amt&quot;) COLUMN(NAME=&quot;porcp.insurance_amt&quot;) COLUMN(NAME=&quot;porcp.curr_code__frt&quot;) COLUMN(NAME=&quot;porcp.curr_code__ins&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;porcp.status&quot;) COLUMN(NAME=&quot;porcp.emp_code&quot;) COLUMN(NAME=&quot;porcp.emp_code__aprv&quot;) COLUMN(NAME=&quot;porcp.ret_opt&quot;) COLUMN(NAME=&quot;porcp.clearing_charges&quot;) COLUMN(NAME=&quot;porcp.benefit_type&quot;) COLUMN(NAME=&quot;porcp.total_additional_cost&quot;) COLUMN(NAME=&quot;porcp.curr_code__clr&quot;) COLUMN(NAME=&quot;porcp.exch_rate__clr&quot;) COLUMN(NAME=&quot;porcp.exch_rate__ins&quot;) COLUMN(NAME=&quot;porcp.exch_rate__frt&quot;) COLUMN(NAME=&quot;porcp.invoice_no&quot;) COLUMN(NAME=&quot;porcp.invoice_date&quot;) COLUMN(NAME=&quot;porcp.qc_reqd&quot;) COLUMN(NAME=&quot;porcp.excise_ref_date&quot;) COLUMN(NAME=&quot;porcp.supp_code__cha&quot;) COLUMN(NAME=&quot;porcp.stan_code__load&quot;) COLUMN(NAME=&quot;porcp.stan_code__dest&quot;) COLUMN(NAME=&quot;porder.pord_type&quot;) COLUMN(NAME=&quot;porcp.frt_type&quot;) COLUMN(NAME=&quot;porcp.frt_rate&quot;) COLUMN(NAME=&quot;porcp.tax_ref&quot;) COLUMN(NAME=&quot;porcp.tax_ref_date&quot;) COLUMN(NAME=&quot;porcp.reciept_type&quot;) COLUMN(NAME=&quot;porcp.supp_exc_inv&quot;) COLUMN(NAME=&quot;porcp.accept_criteria&quot;) COLUMN(NAME=&quot;porcp.supp_code__ship&quot;) COLUMN(NAME=&quot;SUPPLIER_B.supp_name&quot;) COLUMN(NAME=&quot;porcp.freight_status&quot;) COLUMN(NAME=&quot;porcp.other_charges&quot;) COLUMN(NAME=&quot;porcp.curr_code__othch&quot;) COLUMN(NAME=&quot;porcp.exch_rate__othch&quot;) COMPUTE(NAME=&quot;fn_get_vouchno(PORCP.TRAN_ID) as Compute_1&quot;) COLUMN(NAME=&quot;porcp.octroi_no&quot;) COLUMN(NAME=&quot;porcp.shipment_id&quot;) COLUMN(NAME=&quot;porcp.post_type&quot;) COLUMN(NAME=&quot;porcp.gp_ser&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;porcp.udf__str1&quot;) COLUMN(NAME=&quot;porcp.lot_no&quot;) COLUMN(NAME=&quot;porcp.post_prov&quot;) COLUMN(NAME=&quot;porcp.anal_code&quot;) COLUMN(NAME=&quot;porder.cr_term&quot;) COLUMN(NAME=&quot;crterm.descr&quot;) COLUMN(NAME=&quot;porder.bank_code__pay&quot;) COLUMN(NAME=&quot;supplier_bank.bank_name__ben&quot;) COLUMN(NAME=&quot;supplier_bank.bank_acct_no__ben&quot;) COLUMN(NAME=&quot;porcp.asn_no&quot;) JOIN (LEFT=&quot;porcp.item_ser&quot; OP =&quot;=&quot;RIGHT=&quot;itemser.item_ser&quot; OUTER1 =&quot;porcp.item_ser&quot; ) JOIN (LEFT=&quot;porcp.tran_code&quot; OP =&quot;=&quot;RIGHT=&quot;transporter.tran_code&quot; OUTER1 =&quot;porcp.tran_code&quot; ) JOIN (LEFT=&quot;porcp.supp_code&quot; OP =&quot;=&quot;RIGHT=&quot;SUPPLIER_A.supp_code&quot; OUTER1 =&quot;porcp.supp_code&quot; ) JOIN (LEFT=&quot;porcp.purc_order&quot; OP =&quot;=&quot;RIGHT=&quot;porder.purc_order&quot; OUTER1 =&quot;porcp.purc_order&quot; ) JOIN (LEFT=&quot;porcp.emp_code&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;porcp.emp_code&quot; ) JOIN (LEFT=&quot;porcp.supp_code&quot; OP =&quot;=&quot;RIGHT=&quot;SUPPLIER_B.supp_code&quot; OUTER1 =&quot;porcp.supp_code&quot; ) JOIN (LEFT=&quot;porder.cr_term&quot; OP =&quot;=&quot;RIGHT=&quot;crterm.cr_term&quot; OUTER1 =&quot;porder.cr_term&quot; ) JOIN (LEFT=&quot;porder.supp_code&quot; OP =&quot;=&quot;RIGHT=&quot;supplier_bank.supp_code&quot; OUTER1 =&quot;porder.supp_code&quot; ) JOIN (LEFT=&quot;porder.bank_code__pay&quot; OP =&quot;=&quot;RIGHT=&quot;supplier_bank.bank_code__ben&quot; OUTER1 =&quot;porder.bank_code__pay&quot; ) JOIN (LEFT=&quot;porcp.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; )WHERE( EXP1 =&quot;PORCP.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:mtranid&quot; ) ) ARG(NAME = &quot;mtranid&quot; TYPE = string) </retrieve>
<update>porcp</update>
<update>PORCP</update>
<updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace>
<argument>
......@@ -793,7 +793,7 @@
<text>Basic</text>
<border>5</border>
<color>33554432</color>
<x>7</x>
<x>5</x>
<y>7</y>
<height>396</height>
<width>713</width>
......@@ -2426,7 +2426,7 @@
<band>Detail</band>
<id>10</id>
<alignment>0</alignment>
<tabsequence>50</tabsequence>
<tabsequence>60</tabsequence>
<border>5</border>
<color>0</color>
<x>193</x>
......@@ -2464,7 +2464,7 @@
<band>Detail</band>
<id>34</id>
<alignment>0</alignment>
<tabsequence>60</tabsequence>
<tabsequence>70</tabsequence>
<border>5</border>
<color>0</color>
<x>193</x>
......@@ -2944,7 +2944,7 @@
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Rec Date :</text>
<text>Receive Date :</text>
<border>0</border>
<color>33554432</color>
<x>501</x>
......@@ -2955,7 +2955,7 @@
<valueishtml>0</valueishtml>
</html>
<name>rec_date_t</name>
<visible>0</visible>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -3701,7 +3701,7 @@
<band>Detail</band>
<id>26</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>80</tabsequence>
<border>5</border>
<color>0</color>
<x>647</x>
......@@ -3713,7 +3713,7 @@
<valueishtml>0</valueishtml>
</html>
<name>rec_date</name>
<visible>0</visible>
<visible>1</visible>
<EditStyle name="datetime" style="editmask">
<mask>dd/mm/yy</mask>
<imemode>0</imemode>
......@@ -5596,7 +5596,7 @@
<band>Detail</band>
<id>8</id>
<alignment>0</alignment>
<tabsequence>10</tabsequence>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>192</x>
......@@ -5662,7 +5662,7 @@
<band>Detail</band>
<id>9</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>645</x>
......@@ -5725,7 +5725,7 @@
<band>Detail</band>
<id>55</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>192</x>
......@@ -5790,7 +5790,7 @@
<band>Detail</band>
<id>56</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<tabsequence>50</tabsequence>
<border>5</border>
<color>0</color>
<x>645</x>
......@@ -6016,70 +6016,6 @@
<color>1090519039</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Status :</text>
<border>0</border>
<color>33554432</color>
<x>422</x>
<y>272</y>
<height>16</height>
<width>218</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>44</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>645</x>
<y>272</y>
<height>16</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status</name>
<visible>0</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1090519039</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
......@@ -6348,7 +6284,7 @@
<band>Detail</band>
<id>4</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>10</tabsequence>
<border>5</border>
<color>0</color>
<x>192</x>
......@@ -6360,7 +6296,7 @@
<valueishtml>0</valueishtml>
</html>
<name>tran_type</name>
<visible>0</visible>
<visible>1</visible>
<EditStyle style="edit">
<limit>3</limit>
<case>upper</case>
......@@ -6396,7 +6332,7 @@
<valueishtml>0</valueishtml>
</html>
<name>tran_type_t</name>
<visible>0</visible>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -6475,6 +6411,106 @@
<color>79741120</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Status :</text>
<border>0</border>
<color>33554432</color>
<x>422</x>
<y>272</y>
<height>16</height>
<width>218</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status_t</name>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>79741120</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>44</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>645</x>
<y>272</y>
<height>16</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>status</name>
<visible>0</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1090519039</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>44</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>644</x>
<y>366</y>
<height>16</height>
<width>66</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>add</name>
<visible>0</visible>
<EditStyle style="ddlb">
<limit>1</limit>
<allowedit>no</allowedit>
<case>upper</case>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Times New Roman</face>
<height>-10</height>
<weight>400</weight>
<family>1</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1090519039</color>
</background>
</ColumnObject>
<HtmlTable>
<border>1</border>
</HtmlTable>
......
......@@ -643,6 +643,7 @@
<updatewhereclause>yes</updatewhereclause>
<name>shelf_life__type</name>
<dbname>porcpdet.shelf_life__type</dbname>
<initial>E</initial>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;porcpdet&quot; ) TABLE(NAME=&quot;item&quot; ALIAS=&quot;ITEM_A&quot; ) TABLE(NAME=&quot;item&quot; ALIAS=&quot;ITEM_B&quot; ) TABLE(NAME=&quot;accounts&quot; ) TABLE(NAME=&quot;specification&quot; ) TABLE(NAME=&quot;porcp&quot; ) COLUMN(NAME=&quot;porcpdet.tran_id&quot;) COLUMN(NAME=&quot;porcpdet.line_no&quot;) COLUMN(NAME=&quot;porcpdet.purc_order&quot;) COLUMN(NAME=&quot;porcpdet.line_no__ord&quot;) COLUMN(NAME=&quot;porcpdet.item_code&quot;) COLUMN(NAME=&quot;porcpdet.quantity&quot;) COLUMN(NAME=&quot;porcpdet.unit&quot;) COLUMN(NAME=&quot;porcpdet.rate&quot;) COLUMN(NAME=&quot;porcpdet.discount&quot;) COLUMN(NAME=&quot;porcpdet.tax_amt&quot;) COLUMN(NAME=&quot;porcpdet.net_amt&quot;) COLUMN(NAME=&quot;porcpdet.loc_code&quot;) COLUMN(NAME=&quot;porcpdet.lot_no&quot;) COLUMN(NAME=&quot;porcpdet.lot_sl&quot;) COLUMN(NAME=&quot;ITEM_A.descr&quot;) COLUMN(NAME=&quot;porcpdet.canc_bo&quot;) COLUMN(NAME=&quot;porcpdet.tax_class&quot;) COLUMN(NAME=&quot;porcpdet.tax_chap&quot;) COLUMN(NAME=&quot;porcpdet.tax_env&quot;) COLUMN(NAME=&quot;porcpdet.acct_code__dr&quot;) COLUMN(NAME=&quot;porcpdet.cctr_code__dr&quot;) COLUMN(NAME=&quot;porcpdet.acct_code__cr&quot;) COLUMN(NAME=&quot;porcpdet.cctr_code__cr&quot;) COLUMN(NAME=&quot;porcpdet.unit__rate&quot;) COLUMN(NAME=&quot;porcpdet.conv__qty_stduom&quot;) COLUMN(NAME=&quot;porcpdet.conv__rtuom_stduom&quot;) COLUMN(NAME=&quot;porcpdet.unit__std&quot;) COLUMN(NAME=&quot;porcpdet.quantity__stduom&quot;) COLUMN(NAME=&quot;porcpdet.rate__stduom&quot;) COLUMN(NAME=&quot;porcpdet.pack_code&quot;) COLUMN(NAME=&quot;porcpdet.no_art&quot;) COLUMN(NAME=&quot;porcpdet.pack_instr&quot;) COLUMN(NAME=&quot;porcpdet.batch_no&quot;) COLUMN(NAME=&quot;porcpdet.mfg_date&quot;) COLUMN(NAME=&quot;porcpdet.expiry_date&quot;) COLUMN(NAME=&quot;porcpdet.status&quot;) COLUMN(NAME=&quot;porcpdet.vouch_qty&quot;) COLUMN(NAME=&quot;porcpdet.gross_weight&quot;) COLUMN(NAME=&quot;porcpdet.tare_weight&quot;) COLUMN(NAME=&quot;porcpdet.net_weight&quot;) COLUMN(NAME=&quot;porcpdet.potency_perc&quot;) COLUMN(NAME=&quot;porcpdet.supp_code__mnfr&quot;) COLUMN(NAME=&quot;porcpdet.site_code__mfg&quot;) COLUMN(NAME=&quot;porcpdet.reas_code&quot;) COLUMN(NAME=&quot;porcpdet.remarks&quot;) COLUMN(NAME=&quot;porcpdet.challan_qty&quot;) COLUMN(NAME=&quot;porcpdet.grade&quot;) COLUMN(NAME=&quot;porcpdet.specific_instr&quot;) COLUMN(NAME=&quot;porcpdet.special_instr&quot;) COLUMN(NAME=&quot;porcpdet.loc_code__excess_short&quot;) COLUMN(NAME=&quot;porcpdet.excess_short_qty&quot;) COLUMN(NAME=&quot;porcpdet.additional_cost&quot;) COLUMN(NAME=&quot;porcpdet.rate__clg&quot;) COLUMN(NAME=&quot;porcpdet.supp_challan_qty&quot;) COLUMN(NAME=&quot;porcpdet.realised_qty&quot;) COLUMN(NAME=&quot;porcpdet.item_code__mfg&quot;) COLUMN(NAME=&quot;ITEM_B.descr&quot;) COLUMN(NAME=&quot;accounts.descr&quot;) COLUMN(NAME=&quot;porcpdet.spec_ref&quot;) COLUMN(NAME=&quot;specification.descr&quot;) COLUMN(NAME=&quot;porcpdet.std_rate&quot;) COLUMN(NAME=&quot;porcpdet.dept_code&quot;) COLUMN(NAME=&quot;porcpdet.effect_stock&quot;) COLUMN(NAME=&quot;porcpdet.physical_status&quot;) COLUMN(NAME=&quot;porcp.exch_rate&quot;) COLUMN(NAME=&quot;porcpdet.benefit_type&quot;) COLUMN(NAME=&quot;porcpdet.licence_no&quot;) COLUMN(NAME=&quot;porcpdet.acct_code__prov_dr&quot;) COLUMN(NAME=&quot;porcpdet.cctr_code__prov_dr&quot;) COLUMN(NAME=&quot;porcpdet.acct_code__prov_cr&quot;) COLUMN(NAME=&quot;porcpdet.cctr_code__prov_cr&quot;) COLUMN(NAME=&quot;porcpdet.form_no&quot;) COLUMN(NAME=&quot;porcpdet.retest_date&quot;) COLUMN(NAME=&quot;porcpdet.duty_paid&quot;) COLUMN(NAME=&quot;porcpdet.batch_size&quot;) COLUMN(NAME=&quot;porcpdet.sample_qty&quot;) COLUMN(NAME=&quot;porcpdet.damage_qty&quot;) COLUMN(NAME=&quot;porcpdet.part_qty&quot;) COLUMN(NAME=&quot;porcpdet.partial_yn&quot;) COLUMN(NAME=&quot;porcpdet.shelf_life__type&quot;) JOIN (LEFT=&quot;porcpdet.item_code__mfg&quot; OP =&quot;=&quot;RIGHT=&quot;ITEM_B.item_code&quot; ) JOIN (LEFT=&quot;porcpdet.tran_id&quot; OP =&quot;=&quot;RIGHT=&quot;porcp.tran_id&quot; )WHERE( EXP1 =&quot;PORCPDET.TRAN_ID&quot; OP =&quot;=&quot; EXP2 =&quot;:mtranid&quot; ) ) ARG(NAME = &quot;mtranid&quot; TYPE = string) </retrieve>
<update>PORCPDET</update>
......@@ -973,7 +974,7 @@
<valueishtml>0</valueishtml>
</html>
<name>lot_sl_t</name>
<visible>1</visible>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -991,7 +992,7 @@
<band>Detail</band>
<id>14</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>608</x>
......@@ -1003,7 +1004,7 @@
<valueishtml>0</valueishtml>
</html>
<name>lot_sl</name>
<visible>1</visible>
<visible>0</visible>
<EditStyle style="edit">
<limit>15</limit>
<case>upper</case>
......@@ -1706,7 +1707,7 @@
<valueishtml>0</valueishtml>
</html>
<name>batch_no_t</name>
<visible>0</visible>
<visible>1</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -2136,7 +2137,7 @@
<band>Detail</band>
<id>33</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<tabsequence>40</tabsequence>
<border>5</border>
<color>0</color>
<x>192</x>
......@@ -2148,7 +2149,7 @@
<valueishtml>0</valueishtml>
</html>
<name>batch_no</name>
<visible>0</visible>
<visible>1</visible>
<EditStyle style="edit">
<limit>20</limit>
<case>any</case>
......@@ -2750,7 +2751,7 @@
<band>Detail</band>
<id>42</id>
<alignment>0</alignment>
<tabsequence>110</tabsequence>
<tabsequence>90</tabsequence>
<border>5</border>
<color>0</color>
<x>358</x>
......@@ -3942,7 +3943,7 @@
<band>Detail</band>
<id>43</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<tabsequence>80</tabsequence>
<border>5</border>
<color>0</color>
<x>192</x>
......@@ -5455,7 +5456,7 @@
<valueishtml>0</valueishtml>
</html>
<name>no_art_t</name>
<visible>1</visible>
<visible>0</visible>
<font>
<face>Times New Roman</face>
<height>-10</height>
......@@ -5473,7 +5474,7 @@
<band>Detail</band>
<id>31</id>
<alignment>0</alignment>
<tabsequence>80</tabsequence>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>0</color>
<x>380</x>
......@@ -5485,7 +5486,7 @@
<valueishtml>0</valueishtml>
</html>
<name>no_art</name>
<visible>1</visible>
<visible>0</visible>
<EditStyle style="edit">
<limit>14</limit>
<case>any</case>
......@@ -5539,7 +5540,7 @@
<band>Detail</band>
<id>6</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<tabsequence>30</tabsequence>
<border>5</border>
<color>0</color>
<x>192</x>
......@@ -5577,7 +5578,7 @@
<band>Detail</band>
<id>78</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<tabsequence>20</tabsequence>
<border>5</border>
<color>0</color>
<x>192</x>
......@@ -5679,7 +5680,7 @@
<band>Detail</band>
<id>80</id>
<alignment>0</alignment>
<tabsequence>120</tabsequence>
<tabsequence>100</tabsequence>
<border>5</border>
<color>0</color>
<x>602</x>
......
......@@ -49825,6 +49825,155 @@ ALTER TABLE SORDFORM ADD REMARKS3 VARCHAR2(100);
COMMIT;
--Start Changed by Dhanraj on 08-SEP-14 for rmpm purchase receipt.
-----New sql 22-SEP-14---
Insert into pophelp
(FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,FILTER_STRING,SQL_INPUT,DEFAULT_COL,POP_ALIGN,QUERY_MODE,PAGE_CONTEXT,POPHELP_COLS,POPHELP_SOURCE,MULTI_OPT,HELP_OPTION,POPUP_XSL_NAME)
values
('TRAN_CODE','W_RMPM_PORCP_WIZ','SELECT TRAN_CODE,TRAN_NAME,TRANSPORTER_TYPE FROM TRANSPORTER',null,'List of Transporter',0,0,to_date('22-SEP-14','DD-MON-RR'),'Dhanraj','sunmisstock ','0',null,null,null,null,null,null,null,null,null,null,null);
CREATE TABLE genmst (
fld_name char(20),
mod_name char(60),
descr char(40),
error_cd char(10),
blank_opt char(1),
fld_type char(1),
fld_min char(1000),
fld_max char(1000),
val_type char(1),
chg_date datetime,
chg_user char(10),
chg_term char(15),
val_table char(20),
sql_input char(1000),
fld_width decimal(16, 0),
udf_usage_1 char(20),
udf_usage_2 char(20),
udf_usage_3 char(20),
val_stage char(1),
obj_name char(25));
INSERT INTO genmst VALUES (
'INVOICE_NO',
'W_RMPM_PORCP_WIZ',
'Validation for Invoice No',
'UV_INVM ',
'N',
'C',
'select count(*) from dual where nvl(trim(?),''X1X'') = ''X1X''',
'0',
'Q',
TO_DATE('22-09-2014 23:57:20','DD-MM-YYYY HH24:MI:SS'),
'Dhanraj',
'BASE',
NULL,
':0.invoice_no',
10,
NULL,
NULL,
NULL,
NULL,
NULL);
INSERT INTO genmst VALUES (
'SHELF_LIFE__TYPE',
'W_RMPM_PORCP_WIZ',
'Retest Validation!',
'VTSHLFLTYP',
'N',
'C',
'select count(*) from dual where ''E'' not in (''E'',''R'')' ,
'0',
'Q',
TO_DATE('22-09-2014 23:57:20','DD-MM-YYYY HH24:MI:SS'),
'Dhanraj',
'BASE',
NULL,
':2.SHELF_LIFE__TYPE',
10,
NULL,
NULL,
NULL,
NULL,
NULL);
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values
('UV_INVM','Sorry, Invoice No is mandatory','Please enter the Valid Invoice Number','E','Y',null,null,null,to_date('22-SEP-14','DD-MON-RR'),'Dhanraj','BASE',null,'0');
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values
('VTDCNODUBL','Chalan no Validation','Duplicate Chalan Number not allowed ' ,'E','Y',null,null,null,to_date('22-SEP-14','DD-MON-RR'),'Dhanraj','BASE',null,'0');
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values
('VTINVCDUBL','Invoice No Validation','Duplicate Invoice Number not allowed' ,'E','Y',null,null,null,to_date('22-SEP-14','DD-MON-RR'),'Dhanraj','BASE',null,'0');
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values
('PORCPCONFP','Purchase Receipt','Duplicate Invoice Number not allowed' ,'E','Y',null,null,null,to_date('22-SEP-14','DD-MON-RR'),'Dhanraj','BASE',null,'0');
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values
('PORCPCONFP','Receipt already confirmed!','Purchase receipt already generated and confirmed for entered Purchase order .' ,'E','Y',null,null,null,to_date('22-SEP-14','DD-MON-RR'),'Dhanraj','BASE',null,'0');
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values
('VTSHLFLTYP','Retest Input Validation!','Please Input valid Retest Value.Only Allowed (E and R).' ,'E','Y',null,null,null,to_date('22-SEP-14','DD-MON-RR'),'Dhanraj','BASE',null,'0');
Insert into MESSAGES (MSG_NO,MSG_STR,MSG_DESCR,MSG_TYPE,MSG_OPT,MSG_TIME,ALARM,ERR_SOURCE,CHG_DATE,CHG_USER,CHG_TERM,OVERRIDE_INPUT,MAIL_OPTION) values
('VTNULTTYPE','Transaction Type Validation','Please Input Transation Type. Null Not Allowed .' ,'E','Y',null,null,null,to_date('22-SEP-14','DD-MON-RR'),'Dhanraj','BASE',null,'0');
Insert into POPHELP (FIELD_NAME,MOD_NAME,SQL_STR,DW_OBJECT,MSG_TITLE,WIDTH,HEIGHT,CHG_DATE,CHG_USER,CHG_TERM,DIST_OPT,FILTER_STRING,SQL_INPUT,DEFAULT_COL,POP_ALIGN,QUERY_MODE,PAGE_CONTEXT,POPHELP_COLS,POPHELP_SOURCE,MULTI_OPT,HELP_OPTION,POPUP_XSL_NAME)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','SELECT RTRIM(FLD_VALUE),DESCR FROM GENCODES WHERE FLD_NAME=''TRAN_TYPE'' AND MOD_NAME=''W_RMPM_PORCP_WIZ''',null,'TRAN TYPE',0,0,to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','0',null,null,null,null,null,null,null,null,null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','5F','FURNITURE & FIXTURES','FURNITURE & FIXTURES',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','Y',null,null,null);
select * from GENCODES where FLD_NAME='TRAN_TYPE' and mod_name='W_RMPM_PORCP_WIZ';
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','EM','Engeneering Material','Engeneering Material',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','FOR','FORMULATIONS','FORMULATIONS',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','Y',null,'MRP',null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','LBC','Lab Chemical','Lab Chemical',to_date('22-SEP-14','DD-MON-RR'),'BASE ','BASE ','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','LM','Lab Chemicals','Lab Chemicals',to_date('22-SEP-14','DD-MON-RR'),'BASE ','BASE ','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','MM','Misc. Material','Misc. Material',to_date('22-SEP-141','DD-MON-RR'),'BASE ','BASE ','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','PM','Packing Material','Packing Material',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','RM','Raw Material','Raw Material',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','SFT','Safety Item','Safety Item',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','SV1','Services for Project Purchases','Svcs for Proj Purch',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','SV2','Services for Eng Maintenance ','Svcs for Eng Maint ',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE ','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','CP','Capital Items','Capital Items',to_date('22-SEP-14','DD-MON-RR'),'BASE','BASE','Y',null,null,null);
Insert into GENCODES (FLD_NAME,MOD_NAME,FLD_VALUE,DESCR,SH_DESCR,CHG_DATE,CHG_USER,CHG_TERM,ACTIVE,UDF_STR1,UDF_STR2,UDF_STR3)
values ('TRAN_TYPE','W_RMPM_PORCP_WIZ','CW','CAPITAL WORK IN PROGRESS','CAPITAL WORK IN PROG',to_date('22-SEP-14','DD-MON-RR'),'BASE','JBASE ','Y',null,null,null);
commit;
--End Dhanraj on 08-SEP-14
......@@ -47,7 +47,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(5) update=yes updatewhereclause=yes name=curr_code__frt dbname="porcp.curr_code__frt" )
column=(type=char(5) update=yes updatewhereclause=yes name=curr_code__ins dbname="porcp.curr_code__ins" )
column=(type=char(15) updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" )
column=(type=char(1) update=yes updatewhereclause=yes name=status dbname="porcp.status" initial="O" values="Open O/Submit S/" )
column=(type=char(1) update=yes updatewhereclause=yes name=add dbname="porcp.status" initial="O" values="Open O/Submit S/" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code dbname="porcp.emp_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__aprv dbname="porcp.emp_code__aprv" )
column=(type=char(1) update=yes updatewhereclause=yes name=ret_opt dbname="porcp.ret_opt" values="Replaced R/Credit Note C/" )
......@@ -96,9 +96,9 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=char(40) updatewhereclause=yes name=bank_name__ben dbname="supplier_bank.bank_name__ben" )
column=(type=char(40) updatewhereclause=yes name=bank_acct_no__ben dbname="supplier_bank.bank_acct_no__ben" )
column=(type=char(30) update=yes updatewhereclause=yes name=asn_no dbname="porcp.asn_no" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"porcp~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"supplier~" ALIAS=~"SUPPLIER_A~" ) TABLE(NAME=~"itemser~" ) TABLE(NAME=~"transporter~" ) TABLE(NAME=~"porder~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"supplier~" ALIAS=~"SUPPLIER_B~" ) TABLE(NAME=~"crterm~" ) TABLE(NAME=~"supplier_bank~" ) COLUMN(NAME=~"porcp.tran_id~") COLUMN(NAME=~"porcp.tran_date~") COLUMN(NAME=~"porcp.eff_date~") COLUMN(NAME=~"porcp.tran_type~") COLUMN(NAME=~"porcp.site_code~") COLUMN(NAME=~"porcp.purc_order~") COLUMN(NAME=~"porcp.supp_code~") COLUMN(NAME=~"porcp.dc_no~") COLUMN(NAME=~"porcp.dc_date~") COLUMN(NAME=~"porcp.tran_code~") COLUMN(NAME=~"porcp.remarks~") COLUMN(NAME=~"porcp.amount~") COLUMN(NAME=~"porcp.discount~") COLUMN(NAME=~"porcp.tax~") COLUMN(NAME=~"porcp.chg_date~") COLUMN(NAME=~"porcp.chg_user~") COLUMN(NAME=~"porcp.chg_term~") COLUMN(NAME=~"porcp.curr_code~") COLUMN(NAME=~"porcp.exch_rate~") COLUMN(NAME=~"SUPPLIER_A.supp_name~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"porcp.tran_ser~") COLUMN(NAME=~"porcp.confirmed~") COLUMN(NAME=~"porcp.tax_date~") COLUMN(NAME=~"porcp.gr_no~") COLUMN(NAME=~"porcp.rec_date~") COLUMN(NAME=~"porcp.excise_ref~") COLUMN(NAME=~"porcp.tran_id__ref~") COLUMN(NAME=~"porcp.adj_amt~") COLUMN(NAME=~"porcp.conf_date~") COLUMN(NAME=~"porcp.lr_no~") COLUMN(NAME=~"porcp.lr_date~") COLUMN(NAME=~"porcp.lorry_no~") COLUMN(NAME=~"porcp.trans_mode~") COLUMN(NAME=~"porcp.item_ser~") COLUMN(NAME=~"itemser.descr~") COLUMN(NAME=~"transporter.tran_name~") COLUMN(NAME=~"porcp.vouch_created~") COLUMN(NAME=~"porcp.frt_amt~") COLUMN(NAME=~"porcp.insurance_amt~") COLUMN(NAME=~"porcp.curr_code__frt~") COLUMN(NAME=~"porcp.curr_code__ins~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"porcp.status~") COLUMN(NAME=~"porcp.emp_code~") COLUMN(NAME=~"porcp.emp_code__aprv~") COLUMN(NAME=~"porcp.ret_opt~") COLUMN(NAME=~"porcp.clearing_charges~") COLUMN(NAME=~"porcp.benefit_type~") COLUMN(NAME=~"porcp.total_additional_cost~") COLUMN(NAME=~"porcp.curr_code__clr~") COLUMN(NAME=~"porcp.exch_rate__clr~") COLUMN(NAME=~"porcp.exch_rate__ins~") COLUMN(NAME=~"porcp.exch_rate__frt~") COLUMN(NAME=~"porcp.invoice_no~") COLUMN(NAME=~"porcp.invoice_date~") COLUMN(NAME=~"porcp.qc_reqd~") COLUMN(NAME=~"porcp.excise_ref_date~") COLUMN(NAME=~"porcp.supp_code__cha~") COLUMN(NAME=~"porcp.stan_code__load~") COLUMN(NAME=~"porcp.stan_code__dest~") COLUMN(NAME=~"porder.pord_type~") COLUMN(NAME=~"porcp.frt_type~") COLUMN(NAME=~"porcp.frt_rate~") COLUMN(NAME=~"porcp.tax_ref~") COLUMN(NAME=~"porcp.tax_ref_date~") COLUMN(NAME=~"porcp.reciept_type~") COLUMN(NAME=~"porcp.supp_exc_inv~") COLUMN(NAME=~"porcp.accept_criteria~") COLUMN(NAME=~"porcp.supp_code__ship~") COLUMN(NAME=~"SUPPLIER_B.supp_name~") COLUMN(NAME=~"porcp.freight_status~") COLUMN(NAME=~"porcp.other_charges~") COLUMN(NAME=~"porcp.curr_code__othch~") COLUMN(NAME=~"porcp.exch_rate__othch~") COMPUTE(NAME=~"fn_get_vouchno(PORCP.TRAN_ID) as Compute_1~") COLUMN(NAME=~"porcp.octroi_no~") COLUMN(NAME=~"porcp.shipment_id~") COLUMN(NAME=~"porcp.post_type~") COLUMN(NAME=~"porcp.gp_ser~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"porcp.udf__str1~") COLUMN(NAME=~"porcp.lot_no~") COLUMN(NAME=~"porcp.post_prov~") COLUMN(NAME=~"porcp.anal_code~") COLUMN(NAME=~"porder.cr_term~") COLUMN(NAME=~"crterm.descr~") COLUMN(NAME=~"porder.bank_code__pay~") COLUMN(NAME=~"supplier_bank.bank_name__ben~") COLUMN(NAME=~"supplier_bank.bank_acct_no__ben~") COLUMN(NAME=~"porcp.asn_no~") JOIN (LEFT=~"porcp.item_ser~" OP =~"=~"RIGHT=~"itemser.item_ser~" OUTER1 =~"porcp.item_ser~" ) JOIN (LEFT=~"porcp.tran_code~" OP =~"=~"RIGHT=~"transporter.tran_code~" OUTER1 =~"porcp.tran_code~" ) JOIN (LEFT=~"porcp.supp_code~" OP =~"=~"RIGHT=~"SUPPLIER_A.supp_code~" OUTER1 =~"porcp.supp_code~" ) JOIN (LEFT=~"porcp.purc_order~" OP =~"=~"RIGHT=~"porder.purc_order~" OUTER1 =~"porcp.purc_order~" ) JOIN (LEFT=~"porcp.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"porcp.emp_code~" ) JOIN (LEFT=~"porcp.supp_code~" OP =~"=~"RIGHT=~"SUPPLIER_B.supp_code~" OUTER1 =~"porcp.supp_code~" ) JOIN (LEFT=~"porder.cr_term~" OP =~"=~"RIGHT=~"crterm.cr_term~" OUTER1 =~"porder.cr_term~" ) JOIN (LEFT=~"porder.supp_code~" OP =~"=~"RIGHT=~"supplier_bank.supp_code~" OUTER1 =~"porder.supp_code~" ) JOIN (LEFT=~"porder.bank_code__pay~" OP =~"=~"RIGHT=~"supplier_bank.bank_code__ben~" OUTER1 =~"porder.bank_code__pay~" ) JOIN (LEFT=~"porcp.site_code~" OP =~"=~"RIGHT=~"site.site_code~" )WHERE( EXP1 =~"PORCP.TRAN_ID~" OP =~"=~" EXP2 =~":mtranid~" ) ) ARG(NAME = ~"mtranid~" TYPE = string) " update="porcp" updatewhere=0 updatekeyinplace=no arguments=(("mtranid", string)) )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"porcp~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"supplier~" ALIAS=~"SUPPLIER_A~" ) TABLE(NAME=~"itemser~" ) TABLE(NAME=~"transporter~" ) TABLE(NAME=~"porder~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"supplier~" ALIAS=~"SUPPLIER_B~" ) TABLE(NAME=~"crterm~" ) TABLE(NAME=~"supplier_bank~" ) COLUMN(NAME=~"porcp.tran_id~") COLUMN(NAME=~"porcp.tran_date~") COLUMN(NAME=~"porcp.eff_date~") COLUMN(NAME=~"porcp.tran_type~") COLUMN(NAME=~"porcp.site_code~") COLUMN(NAME=~"porcp.purc_order~") COLUMN(NAME=~"porcp.supp_code~") COLUMN(NAME=~"porcp.dc_no~") COLUMN(NAME=~"porcp.dc_date~") COLUMN(NAME=~"porcp.tran_code~") COLUMN(NAME=~"porcp.remarks~") COLUMN(NAME=~"porcp.amount~") COLUMN(NAME=~"porcp.discount~") COLUMN(NAME=~"porcp.tax~") COLUMN(NAME=~"porcp.chg_date~") COLUMN(NAME=~"porcp.chg_user~") COLUMN(NAME=~"porcp.chg_term~") COLUMN(NAME=~"porcp.curr_code~") COLUMN(NAME=~"porcp.exch_rate~") COLUMN(NAME=~"SUPPLIER_A.supp_name~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"porcp.tran_ser~") COLUMN(NAME=~"porcp.confirmed~") COLUMN(NAME=~"porcp.tax_date~") COLUMN(NAME=~"porcp.gr_no~") COLUMN(NAME=~"porcp.rec_date~") COLUMN(NAME=~"porcp.excise_ref~") COLUMN(NAME=~"porcp.tran_id__ref~") COLUMN(NAME=~"porcp.adj_amt~") COLUMN(NAME=~"porcp.conf_date~") COLUMN(NAME=~"porcp.lr_no~") COLUMN(NAME=~"porcp.lr_date~") COLUMN(NAME=~"porcp.lorry_no~") COLUMN(NAME=~"porcp.trans_mode~") COLUMN(NAME=~"porcp.item_ser~") COLUMN(NAME=~"itemser.descr~") COLUMN(NAME=~"transporter.tran_name~") COLUMN(NAME=~"porcp.vouch_created~") COLUMN(NAME=~"porcp.frt_amt~") COLUMN(NAME=~"porcp.insurance_amt~") COLUMN(NAME=~"porcp.curr_code__frt~") COLUMN(NAME=~"porcp.curr_code__ins~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"porcp.status~") COLUMN(NAME=~"porcp.emp_code~") COLUMN(NAME=~"porcp.emp_code__aprv~") COLUMN(NAME=~"porcp.ret_opt~") COLUMN(NAME=~"porcp.clearing_charges~") COLUMN(NAME=~"porcp.benefit_type~") COLUMN(NAME=~"porcp.total_additional_cost~") COLUMN(NAME=~"porcp.curr_code__clr~") COLUMN(NAME=~"porcp.exch_rate__clr~") COLUMN(NAME=~"porcp.exch_rate__ins~") COLUMN(NAME=~"porcp.exch_rate__frt~") COLUMN(NAME=~"porcp.invoice_no~") COLUMN(NAME=~"porcp.invoice_date~") COLUMN(NAME=~"porcp.qc_reqd~") COLUMN(NAME=~"porcp.excise_ref_date~") COLUMN(NAME=~"porcp.supp_code__cha~") COLUMN(NAME=~"porcp.stan_code__load~") COLUMN(NAME=~"porcp.stan_code__dest~") COLUMN(NAME=~"porder.pord_type~") COLUMN(NAME=~"porcp.frt_type~") COLUMN(NAME=~"porcp.frt_rate~") COLUMN(NAME=~"porcp.tax_ref~") COLUMN(NAME=~"porcp.tax_ref_date~") COLUMN(NAME=~"porcp.reciept_type~") COLUMN(NAME=~"porcp.supp_exc_inv~") COLUMN(NAME=~"porcp.accept_criteria~") COLUMN(NAME=~"porcp.supp_code__ship~") COLUMN(NAME=~"SUPPLIER_B.supp_name~") COLUMN(NAME=~"porcp.freight_status~") COLUMN(NAME=~"porcp.other_charges~") COLUMN(NAME=~"porcp.curr_code__othch~") COLUMN(NAME=~"porcp.exch_rate__othch~") COMPUTE(NAME=~"fn_get_vouchno(PORCP.TRAN_ID) as Compute_1~") COLUMN(NAME=~"porcp.octroi_no~") COLUMN(NAME=~"porcp.shipment_id~") COLUMN(NAME=~"porcp.post_type~") COLUMN(NAME=~"porcp.gp_ser~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"porcp.udf__str1~") COLUMN(NAME=~"porcp.lot_no~") COLUMN(NAME=~"porcp.post_prov~") COLUMN(NAME=~"porcp.anal_code~") COLUMN(NAME=~"porder.cr_term~") COLUMN(NAME=~"crterm.descr~") COLUMN(NAME=~"porder.bank_code__pay~") COLUMN(NAME=~"supplier_bank.bank_name__ben~") COLUMN(NAME=~"supplier_bank.bank_acct_no__ben~") COLUMN(NAME=~"porcp.asn_no~") JOIN (LEFT=~"porcp.item_ser~" OP =~"=~"RIGHT=~"itemser.item_ser~" OUTER1 =~"porcp.item_ser~" ) JOIN (LEFT=~"porcp.tran_code~" OP =~"=~"RIGHT=~"transporter.tran_code~" OUTER1 =~"porcp.tran_code~" ) JOIN (LEFT=~"porcp.supp_code~" OP =~"=~"RIGHT=~"SUPPLIER_A.supp_code~" OUTER1 =~"porcp.supp_code~" ) JOIN (LEFT=~"porcp.purc_order~" OP =~"=~"RIGHT=~"porder.purc_order~" OUTER1 =~"porcp.purc_order~" ) JOIN (LEFT=~"porcp.emp_code~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"porcp.emp_code~" ) JOIN (LEFT=~"porcp.supp_code~" OP =~"=~"RIGHT=~"SUPPLIER_B.supp_code~" OUTER1 =~"porcp.supp_code~" ) JOIN (LEFT=~"porder.cr_term~" OP =~"=~"RIGHT=~"crterm.cr_term~" OUTER1 =~"porder.cr_term~" ) JOIN (LEFT=~"porder.supp_code~" OP =~"=~"RIGHT=~"supplier_bank.supp_code~" OUTER1 =~"porder.supp_code~" ) JOIN (LEFT=~"porder.bank_code__pay~" OP =~"=~"RIGHT=~"supplier_bank.bank_code__ben~" OUTER1 =~"porder.bank_code__pay~" ) JOIN (LEFT=~"porcp.site_code~" OP =~"=~"RIGHT=~"site.site_code~" )WHERE( EXP1 =~"PORCP.TRAN_ID~" OP =~"=~" EXP2 =~":mtranid~" ) ) ARG(NAME = ~"mtranid~" TYPE = string) " update="PORCP" updatewhere=0 updatekeyinplace=no arguments=(("mtranid", string)) )
groupbox(band=detail text="Shipment"border="5" color="33554432" x="5" y="697" height="181" width="713" name=gb_3 visible="1" font.face="Times New Roman" font.height="-10" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Basic"border="5" color="33554432" x="7" y="7" height="396" width="713" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Basic"border="5" color="33554432" x="5" y="7" height="396" width="713" name=gb_1 visible="1" font.face="Times New Roman" font.height="-10" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Transaction ID :" border="0" color="33554432" x="8" y="37" height="16" width="180" html.valueishtml="0" name=tran_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x="192" y="37" height="16" width="106" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Transaction Date :" border="0" color="33554432" x="364" y="37" height="16" width="256" html.valueishtml="0" name=tran_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="79741120" )
......@@ -149,8 +149,8 @@ column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="
text(band=detail alignment="1" text="Shipment To :" border="0" color="33554432" x="8" y="714" height="16" width="180" html.valueishtml="0" name=supp_code__ship_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Transporter :" border="0" color="33554432" x="8" y="737" height="16" width="180" html.valueishtml="0" name=tran_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="79741120" )
column(band=detail id=70 alignment="0" tabsequence=32766 border="5" color="0" x="193" y="714" height="16" width="106" format="[general]" html.valueishtml="0" name=supp_code__ship visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=10 alignment="0" tabsequence=50 border="5" color="0" x="193" y="737" height="16" width="106" format="[general]" html.valueishtml="0" name=tran_code visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=34 alignment="0" tabsequence=60 border="5" color="0" x="193" y="760" height="16" width="134" format="[general]" html.valueishtml="0" name=trans_mode visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=10 alignment="0" tabsequence=60 border="5" color="0" x="193" y="737" height="16" width="106" format="[general]" html.valueishtml="0" name=tran_code visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=34 alignment="0" tabsequence=70 border="5" color="0" x="193" y="760" height="16" width="134" format="[general]" html.valueishtml="0" name=trans_mode visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Lorry No :" border="0" color="33554432" x="407" y="760" height="16" width="197" html.valueishtml="0" name=lorry_no_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=31 alignment="0" tabsequence=32766 border="5" color="0" x="193" y="783" height="16" width="216" format="[general]" html.valueishtml="0" name=lr_no visible="0" edit.limit=25 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=63 alignment="0" tabsequence=32766 border="5" color="0" x="193" y="806" height="16" width="84" format="[general]" html.valueishtml="0" name=frt_type visible="0" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
......@@ -165,7 +165,7 @@ text(band=detail alignment="1" text="Lot No :" border="0" color="0" x="459" y="8
text(band=detail alignment="1" text="Anal Code :" border="0" color="33554432" x="265" y="901" height="16" width="146" html.valueishtml="0" name=anal_code_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=86 alignment="0" tabsequence=32766 border="5" color="0" x="414" y="901" height="16" width="82" format="[general]" html.valueishtml="0" name=anal_code visible="0" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="GP Ser :" border="0" color="33554432" x="502" y="924" height="16" width="140" html.valueishtml="0" name=gp_ser_t visible="0~t0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Rec Date :" border="0" color="33554432" x="501" y="900" height="16" width="140" html.valueishtml="0" name=rec_date_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Receive Date :" border="0" color="33554432" x="501" y="900" height="16" width="140" html.valueishtml="0" name=rec_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="79741120" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="255" x="193" y="1162" height="16" width="104" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Term :" border="0" color="33554432" x="507" y="1162" height="16" width="100" html.valueishtml="0" name=chg_term_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="255" x="422" y="1161" height="16" width="81" format="[general]" html.valueishtml="0" name=chg_user visible="0" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
......@@ -188,7 +188,7 @@ text(band=detail alignment="1" text="Udf Str1 :" border="0" color="33554432" x=
text(band=detail alignment="1" text="Tax Reference Date:" border="0" color="33554432" x="423" y="1065" height="16" width="218" html.valueishtml="0" name=tax_ref_date_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="255" x="610" y="1161" height="16" width="103" format="[general]" html.valueishtml="0" name=chg_term visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=80 alignment="0" tabsequence=32766 border="5" color="0" x="645" y="924" height="16" width="68" format="[general]" html.valueishtml="0" name=gp_ser visible="0~t0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=26 alignment="0" tabsequence=32766 border="5" color="0" x="647" y="900" height="16" width="66" format="[shortdate] [time]" html.valueishtml="0" name=rec_date visible="0" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=26 alignment="0" tabsequence=80 border="5" color="0" x="647" y="900" height="16" width="66" format="[shortdate] [time]" html.valueishtml="0" name=rec_date visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=76 alignment="0" tabsequence=32766 border="5" color="255" x="637" y="1134" height="16" width="76" format="[general]" html.valueishtml="0" name=compute_1 visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=47 alignment="0" tabsequence=32766 border="5" color="0" x="629" y="996" height="16" width="84" format="[general]" html.valueishtml="0" name=ret_opt tag="Return Option R - Return, C- Credit Note (used in purch return)" visible="0~t0" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=79 alignment="0" tabsequence=32766 border="5" color="255" x="646" y="1019" height="16" width="67" format="[general]" html.valueishtml="0" name=post_type visible="0" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
......@@ -246,21 +246,19 @@ text(band=detail alignment="1" text="Supplier :" border="0" color="33554432" x="
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="180" height="16" width="106" format="[general]" html.valueishtml="0" name=supp_code visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="255" x="303" y="180" height="16" width="408" format="[general]" html.valueishtml="0" name=supp_name visible="1" edit.limit=55 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Delivery Ch No:" border="0" color="33554432" x="8" y="203" height="16" width="180" html.valueishtml="0" name=dc_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=8 alignment="0" tabsequence=10 border="5" color="0" x="192" y="203" height="16" width="145" format="[general]" html.valueishtml="0" name=dc_no visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=8 alignment="0" tabsequence=20 border="5" color="0" x="192" y="203" height="16" width="145" format="[general]" html.valueishtml="0" name=dc_no visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Challan Date :" border="0" color="33554432" x="344" y="203" height="16" width="297" html.valueishtml="0" name=dc_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="79741120" )
column(band=detail id=9 alignment="0" tabsequence=20 border="5" color="0" x="645" y="203" height="16" width="66" format="dd/mm/yy" html.valueishtml="0" name=dc_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=9 alignment="0" tabsequence=30 border="5" color="0" x="645" y="203" height="16" width="66" format="dd/mm/yy" html.valueishtml="0" name=dc_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Invoice No :" border="0" color="33554432" x="8" y="226" height="16" width="180" html.valueishtml="0" name=invoice_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=55 alignment="0" tabsequence=30 border="5" color="0" x="192" y="226" height="16" width="146" format="[general]" html.valueishtml="0" name=invoice_no visible="1" edit.limit=20 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=55 alignment="0" tabsequence=40 border="5" color="0" x="192" y="226" height="16" width="146" format="[general]" html.valueishtml="0" name=invoice_no visible="1" edit.limit=20 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Invoice Date :" border="0" color="33554432" x="346" y="226" height="16" width="295" html.valueishtml="0" name=invoice_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="79741120" )
column(band=detail id=56 alignment="0" tabsequence=40 border="5" color="0" x="645" y="226" height="16" width="66" format="dd/mm/yy" html.valueishtml="0" name=invoice_date visible="1" editmask.mask="DD/MM/YY" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=56 alignment="0" tabsequence=50 border="5" color="0" x="645" y="226" height="16" width="66" format="dd/mm/yy" html.valueishtml="0" name=invoice_date visible="1" editmask.mask="DD/MM/YY" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Excise Reference :" border="0" color="33554432" x="8" y="249" height="16" width="180" html.valueishtml="0" name=excise_ref_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=27 alignment="0" tabsequence=32766 border="5" color="0" x="193" y="249" height="16" width="518" format="[general]" html.valueishtml="0" name=excise_ref visible="0" edit.limit=100 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Excise Ref. Date :" border="0" color="0" x="8" y="272" height="16" width="180" html.valueishtml="0" name=excise_ref_date_t visible="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="80269524" )
column(band=detail id=58 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="272" height="16" width="103" format="[shortdate] [time]" html.valueishtml="0" name=excise_ref_date visible="0" editmask.mask="dd/mm/yy hh:mm" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Remarks :" border="0" color="33554432" x="8" y="295" height="16" width="180" html.valueishtml="0" name=remarks_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="0" x="194" y="295" height="16" width="517" format="[general]" html.valueishtml="0" name=remarks visible="0" edit.limit=60 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Status :" border="0" color="33554432" x="422" y="272" height="16" width="218" html.valueishtml="0" name=status_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=44 alignment="0" tabsequence=32766 border="5" color="0" x="645" y="272" height="16" width="66" format="[general]" html.valueishtml="0" name=status visible="0" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Confirmed :" border="0" color="33554432" x="8" y="318" height="16" width="180" html.valueishtml="0" name=confirmed_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=23 alignment="0" tabsequence=32766 border="5" color="255" x="194" y="318" height="16" width="46" format="[general]" html.valueishtml="0" name=confirmed visible="0" edit.name="Yesno" ddlb.limit=1 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=30 alignment="0" tabsequence=32766 border="5" color="255" x="246" y="318" height="16" width="66" format="[shortdate] [time]" html.valueishtml="0" name=conf_date visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
......@@ -269,10 +267,13 @@ column(band=detail id=46 alignment="0" tabsequence=32766 border="5" color="255"
text(band=detail alignment="1" text="Credit Term :" border="0" color="33554432" x="8" y="341" height="16" width="180" html.valueishtml="0" name=cr_term_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=87 alignment="0" tabsequence=32766 border="5" color="255" x="194" y="341" height="16" width="58" format="[general]" html.valueishtml="0" name=cr_term visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=88 alignment="0" tabsequence=32766 border="5" color="255" x="258" y="341" height="16" width="453" format="[general]" html.valueishtml="0" name=crterm_descr visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="60" height="16" width="43" format="[general]" html.valueishtml="0" name=tran_type visible="0" edit.limit=3 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Transaction Type :" border="0" color="33554432" x="8" y="60" height="16" width="180" html.valueishtml="0" name=tran_type_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=4 alignment="0" tabsequence=10 border="5" color="0" x="192" y="60" height="16" width="43" format="[general]" html.valueishtml="0" name=tran_type visible="1" edit.limit=3 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Transaction Type :" border="0" color="33554432" x="8" y="60" height="16" width="180" html.valueishtml="0" name=tran_type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=92 alignment="0" tabsequence=32766 border="5" color="255" x="192" y="85" height="16" width="150" format="[general]" html.valueishtml="0" name=asn_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="ASN Number:" border="0" color="33554432" x="8" y="85" height="16" width="180" html.valueishtml="0" name=asn_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Status :" border="0" color="33554432" x="422" y="272" height="16" width="218" html.valueishtml="0" name=status_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=44 alignment="0" tabsequence=32766 border="5" color="0" x="645" y="272" height="16" width="66" format="[general]" html.valueishtml="0" name=status visible="0" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=44 alignment="0" tabsequence=32766 border="5" color="0" x="644" y="366" height="16" width="66" format="[general]" html.valueishtml="0" name=add visible="0" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
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 )
......
......@@ -83,7 +83,7 @@ table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_i
column=(type=decimal(3) update=yes updatewhereclause=yes name=damage_qty dbname="porcpdet.damage_qty" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=part_qty dbname="porcpdet.part_qty" )
column=(type=char(1) update=yes updatewhereclause=yes name=partial_yn dbname="porcpdet.partial_yn" )
column=(type=char(1) update=yes updatewhereclause=yes name=shelf_life__type dbname="porcpdet.shelf_life__type" )
column=(type=char(1) update=yes updatewhereclause=yes name=shelf_life__type dbname="porcpdet.shelf_life__type" initial="E" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"porcpdet~" ) TABLE(NAME=~"item~" ALIAS=~"ITEM_A~" ) TABLE(NAME=~"item~" ALIAS=~"ITEM_B~" ) TABLE(NAME=~"accounts~" ) TABLE(NAME=~"specification~" ) TABLE(NAME=~"porcp~" ) COLUMN(NAME=~"porcpdet.tran_id~") COLUMN(NAME=~"porcpdet.line_no~") COLUMN(NAME=~"porcpdet.purc_order~") COLUMN(NAME=~"porcpdet.line_no__ord~") COLUMN(NAME=~"porcpdet.item_code~") COLUMN(NAME=~"porcpdet.quantity~") COLUMN(NAME=~"porcpdet.unit~") COLUMN(NAME=~"porcpdet.rate~") COLUMN(NAME=~"porcpdet.discount~") COLUMN(NAME=~"porcpdet.tax_amt~") COLUMN(NAME=~"porcpdet.net_amt~") COLUMN(NAME=~"porcpdet.loc_code~") COLUMN(NAME=~"porcpdet.lot_no~") COLUMN(NAME=~"porcpdet.lot_sl~") COLUMN(NAME=~"ITEM_A.descr~") COLUMN(NAME=~"porcpdet.canc_bo~") COLUMN(NAME=~"porcpdet.tax_class~") COLUMN(NAME=~"porcpdet.tax_chap~") COLUMN(NAME=~"porcpdet.tax_env~") COLUMN(NAME=~"porcpdet.acct_code__dr~") COLUMN(NAME=~"porcpdet.cctr_code__dr~") COLUMN(NAME=~"porcpdet.acct_code__cr~") COLUMN(NAME=~"porcpdet.cctr_code__cr~") COLUMN(NAME=~"porcpdet.unit__rate~") COLUMN(NAME=~"porcpdet.conv__qty_stduom~") COLUMN(NAME=~"porcpdet.conv__rtuom_stduom~") COLUMN(NAME=~"porcpdet.unit__std~") COLUMN(NAME=~"porcpdet.quantity__stduom~") COLUMN(NAME=~"porcpdet.rate__stduom~") COLUMN(NAME=~"porcpdet.pack_code~") COLUMN(NAME=~"porcpdet.no_art~") COLUMN(NAME=~"porcpdet.pack_instr~") COLUMN(NAME=~"porcpdet.batch_no~") COLUMN(NAME=~"porcpdet.mfg_date~") COLUMN(NAME=~"porcpdet.expiry_date~") COLUMN(NAME=~"porcpdet.status~") COLUMN(NAME=~"porcpdet.vouch_qty~") COLUMN(NAME=~"porcpdet.gross_weight~") COLUMN(NAME=~"porcpdet.tare_weight~") COLUMN(NAME=~"porcpdet.net_weight~") COLUMN(NAME=~"porcpdet.potency_perc~") COLUMN(NAME=~"porcpdet.supp_code__mnfr~") COLUMN(NAME=~"porcpdet.site_code__mfg~") COLUMN(NAME=~"porcpdet.reas_code~") COLUMN(NAME=~"porcpdet.remarks~") COLUMN(NAME=~"porcpdet.challan_qty~") COLUMN(NAME=~"porcpdet.grade~") COLUMN(NAME=~"porcpdet.specific_instr~") COLUMN(NAME=~"porcpdet.special_instr~") COLUMN(NAME=~"porcpdet.loc_code__excess_short~") COLUMN(NAME=~"porcpdet.excess_short_qty~") COLUMN(NAME=~"porcpdet.additional_cost~") COLUMN(NAME=~"porcpdet.rate__clg~") COLUMN(NAME=~"porcpdet.supp_challan_qty~") COLUMN(NAME=~"porcpdet.realised_qty~") COLUMN(NAME=~"porcpdet.item_code__mfg~") COLUMN(NAME=~"ITEM_B.descr~") COLUMN(NAME=~"accounts.descr~") COLUMN(NAME=~"porcpdet.spec_ref~") COLUMN(NAME=~"specification.descr~") COLUMN(NAME=~"porcpdet.std_rate~") COLUMN(NAME=~"porcpdet.dept_code~") COLUMN(NAME=~"porcpdet.effect_stock~") COLUMN(NAME=~"porcpdet.physical_status~") COLUMN(NAME=~"porcp.exch_rate~") COLUMN(NAME=~"porcpdet.benefit_type~") COLUMN(NAME=~"porcpdet.licence_no~") COLUMN(NAME=~"porcpdet.acct_code__prov_dr~") COLUMN(NAME=~"porcpdet.cctr_code__prov_dr~") COLUMN(NAME=~"porcpdet.acct_code__prov_cr~") COLUMN(NAME=~"porcpdet.cctr_code__prov_cr~") COLUMN(NAME=~"porcpdet.form_no~") COLUMN(NAME=~"porcpdet.retest_date~") COLUMN(NAME=~"porcpdet.duty_paid~") COLUMN(NAME=~"porcpdet.batch_size~") COLUMN(NAME=~"porcpdet.sample_qty~") COLUMN(NAME=~"porcpdet.damage_qty~") COLUMN(NAME=~"porcpdet.part_qty~") COLUMN(NAME=~"porcpdet.partial_yn~") COLUMN(NAME=~"porcpdet.shelf_life__type~") JOIN (LEFT=~"porcpdet.item_code__mfg~" OP =~"=~"RIGHT=~"ITEM_B.item_code~" ) JOIN (LEFT=~"porcpdet.tran_id~" OP =~"=~"RIGHT=~"porcp.tran_id~" )WHERE( EXP1 =~"PORCPDET.TRAN_ID~" OP =~"=~" EXP2 =~":mtranid~" ) ) ARG(NAME = ~"mtranid~" TYPE = string) " update="PORCPDET" updatewhere=0 updatekeyinplace=no arguments=(("mtranid", string)) )
groupbox(band=detail text="Inventory"border="5" color="33554432" x="5" y="298" height="174" width="666" name=gb_4 visible="0" font.face="Times New Roman" font.height="-10" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Basic"border="5" color="33554432" x="5" y="6" height="132" width="665" name=gb_1 visible="0" font.face="Times New Roman" font.height="-10" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
......@@ -95,8 +95,8 @@ text(band=detail alignment="1" text="Location :" border="0" color="33554432" x="
column(band=detail id=12 alignment="0" tabsequence=10 border="5" color="0" x="192" y="337" height="16" width="80" format="[general]" html.valueishtml="0" name=loc_code visible="0" edit.limit=8 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Lot Number :" border="0" color="33554432" x="278" y="337" height="16" width="100" html.valueishtml="0" name=lot_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="0" x="381" y="337" height="16" width="89" format="[general]" html.valueishtml="0" name=lot_no visible="1" edit.limit=15 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="LPN Number:" border="0" color="33554432" x="475" y="337" height="16" width="130" html.valueishtml="0" name=lot_sl_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=14 alignment="0" tabsequence=20 border="5" color="0" x="608" y="337" height="16" width="57" format="[general]" html.valueishtml="0" name=lot_sl visible="1" edit.limit=15 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="LPN Number:" border="0" color="33554432" x="475" y="337" height="16" width="130" html.valueishtml="0" name=lot_sl_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="0" x="608" y="337" height="16" width="57" format="[general]" html.valueishtml="0" name=lot_sl visible="0" edit.limit=15 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=27 alignment="0" tabsequence=32766 border="5" color="255" x="319" y="225" height="16" width="41" format="[general]" html.valueishtml="0" name=unit__std visible="0" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=25 alignment="1" tabsequence=32766 border="5" color="33554432" x="517" y="156" height="16" width="149" format="[general]" html.valueishtml="0" name=conv__qty_stduom visible="0" edit.limit=180 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="UOM Conversion :" border="0" color="33554432" x="303" y="156" height="16" width="208" html.valueishtml="0" name=conv__qty_stduom_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
......@@ -118,7 +118,7 @@ text(band=detail alignment="1" text="Rate Unit :" border="0" color="33554432" x=
text(band=detail alignment="1" text="Packing :" border="0" color="33554432" x="8" y="360" height="16" width="180" html.valueishtml="0" name=pack_code_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Packing Instruction:" border="0" color="33554432" x="8" y="383" height="16" width="180" html.valueishtml="0" name=pack_instr_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Effect Stock :" border="0" color="33554432" x="8" y="314" height="16" width="180" html.valueishtml="0" name=effect_stock_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Batch No. :" border="0" color="33554432" x="8" y="406" height="16" width="180" html.valueishtml="0" name=batch_no_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Batch No. :" border="0" color="33554432" x="8" y="406" height="16" width="180" html.valueishtml="0" name=batch_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Realised Quantity :" border="0" color="33554432" x="8" y="202" height="16" width="180" html.valueishtml="0" name=challan_qty_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Standard :" border="0" color="33554432" x="8" y="225" height="16" width="180" html.valueishtml="0" name=unit__std_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Gross weight :" border="0" color="33554432" x="8" y="248" height="16" width="180" html.valueishtml="0" name=gross_wt_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
......@@ -131,7 +131,7 @@ column(band=detail id=40 alignment="0" tabsequence=32766 border="5" color="255"
column(band=detail id=63 alignment="0" tabsequence=32766 border="5" color="255" x="192" y="314" height="16" width="57" format="[general]" html.valueishtml="0" name=effect_stock visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 edit.codetable=yes font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=30 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="360" height="16" width="57" format="[general]" html.valueishtml="0" name=pack_code visible="0" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=32 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="383" height="16" width="473" format="[general]" html.valueishtml="0" name=pack_instr visible="0" edit.limit=120 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autovscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=33 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="406" height="16" width="145" format="[general]" html.valueishtml="0" name=batch_no visible="0" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=33 alignment="0" tabsequence=40 border="5" color="0" x="192" y="406" height="16" width="145" format="[general]" html.valueishtml="0" name=batch_no visible="1" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=47 alignment="0" tabsequence=32766 border="5" color="0" x="601" y="406" height="16" width="65" format="[general]" html.valueishtml="0" name=grade visible="0" edit.limit=0 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Expiry Date :" border="0" color="33554432" x="263" y="429" height="16" width="129" html.valueishtml="0" name=expiry_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="79741120" )
column(band=detail id=35 alignment="0" tabsequence=70 border="5" color="0" x="396" y="429" height="16" width="66" format="[shortdate] [time]" html.valueishtml="0" name=expiry_date visible="1" edit.name="datetime" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
......@@ -150,7 +150,7 @@ column(band=detail id=53 alignment="1" tabsequence=32766 border="5" color="0" x=
text(band=detail alignment="1" text="Environment :" border="0" color="33554432" x="476" y="609" height="16" width="100" html.valueishtml="0" name=tax_env_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="0" x="580" y="609" height="16" width="84" format="[general]" html.valueishtml="0" name=tax_env visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Mnfr :" border="0" color="33554432" x="255" y="749" height="16" width="98" html.valueishtml="0" name=supp_code__mnfr_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=42 alignment="0" tabsequence=110 border="5" color="0" x="358" y="748" height="16" width="106" format="[general]" html.valueishtml="0" name=supp_code__mnfr visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=42 alignment="0" tabsequence=90 border="5" color="0" x="358" y="748" height="16" width="106" format="[general]" html.valueishtml="0" name=supp_code__mnfr visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Potency % :" border="0" color="33554432" x="471" y="749" height="16" width="71" html.valueishtml="0" name=potency_perc_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Licence No. :" border="0" color="33554432" x="368" y="887" height="16" width="174" html.valueishtml="0" name=licence_no_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Prov Credit A/c :" border="0" color="33554432" x="355" y="817" height="16" width="146" html.valueishtml="0" name=acct_code__prov_cr_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
......@@ -187,7 +187,7 @@ column(band=detail id=10 alignment="1" tabsequence=32766 border="5" color="255"
column(band=detail id=52 alignment="1" tabsequence=32766 border="5" color="0" x="192" y="586" height="16" width="120" format="[general]" html.valueishtml="0" name=additional_cost visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="772" height="16" width="106" format="[general]" html.valueishtml="0" name=acct_code__dr visible="0" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="795" height="16" width="106" format="[general]" html.valueishtml="0" name=acct_code__cr visible="0" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=43 alignment="0" tabsequence=100 border="5" color="0" x="192" y="749" height="16" width="57" format="[general]" html.valueishtml="0" name=site_code__mfg visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=43 alignment="0" tabsequence=80 border="5" color="0" x="192" y="749" height="16" width="57" format="[general]" html.valueishtml="0" name=site_code__mfg visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
groupbox(band=detail text="Commercial"border="5" color="33554432" x="5" y="523" height="112" width="666" name=gb_3 visible="0" font.face="Times New Roman" font.height="-10" font.weight="700" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="609" height="16" width="84" format="[general]" html.valueishtml="0" name=tax_class visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=64 alignment="0" tabsequence=32766 border="5" color="33554432" x="192" y="657" height="16" width="158" format="[general]" html.valueishtml="0" name=physical_status visible="0" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
......@@ -232,14 +232,14 @@ column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="255" x
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="192" y="52" height="16" width="106" format="[general]" html.valueishtml="0" name=purc_order visible="0" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="192" y="156" height="16" width="57" format="[general]" html.valueishtml="0" name=unit visible="0" edit.limit=3 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Unit :" border="0" color="33554432" x="8" y="156" height="16" width="180" html.valueishtml="0" name=unit_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="No. of Article :" border="0" color="33554432" x="297" y="360" height="16" width="80" html.valueishtml="0" name=no_art_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=31 alignment="0" tabsequence=80 border="5" color="0" x="380" y="360" height="16" width="91" format="#,##,##,###.####" html.valueishtml="0" name=no_art visible="1" edit.limit=14 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="No. of Article :" border="0" color="33554432" x="297" y="360" height="16" width="80" html.valueishtml="0" name=no_art_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=31 alignment="0" tabsequence=32766 border="5" color="0" x="380" y="360" height="16" width="91" format="#,##,##,###.####" html.valueishtml="0" name=no_art visible="0" edit.limit=14 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Quantity :" border="0" color="33554432" x="8" y="98" height="16" width="180" 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="79741120" )
column(band=detail id=6 alignment="0" tabsequence=40 border="5" color="0" x="192" y="98" height="16" width="76" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=14 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=78 alignment="0" tabsequence=30 border="5" color="0" x="192" y="120" height="16" width="76" format="[general]" html.valueishtml="0" name=part_qty visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=6 alignment="0" tabsequence=30 border="5" color="0" x="192" y="98" height="16" width="76" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=14 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=78 alignment="0" tabsequence=20 border="5" color="0" x="192" y="120" height="16" width="76" format="[general]" html.valueishtml="0" name=part_qty visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
text(band=detail alignment="1" text="Partial Quantity :" border="0" color="33554432" x="8" y="119" height="16" width="180" html.valueishtml="0" name=part_qty_t visible="0" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=79 alignment="0" tabsequence=50 border="0" color="0" x="287" y="495" height="16" width="61" format="[general]" html.valueishtml="0" name=partial_yn visible="0" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" )
column(band=detail id=80 alignment="0" tabsequence=120 border="5" color="0" x="602" y="449" height="17" width="63" format="[general]" html.valueishtml="0" name=shelf_life__type 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="1090519039" )
column(band=detail id=80 alignment="0" tabsequence=100 border="5" color="0" x="602" y="449" height="17" width="63" format="[general]" html.valueishtml="0" name=shelf_life__type 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="1090519039" )
text(band=detail alignment="1" text="Retest :" border="0" color="33554432" x="467" y="449" height="16" width="129" html.valueishtml="0" name=shelf_life__type_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment