Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
Component Sharing
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gagandeep Singh Bhatia
Component Sharing
Commits
bdf9ce8b
Commit
bdf9ce8b
authored
Mar 19, 2026
by
Ajit Deshmukh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added the changes
parent
dae219f7
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
795 additions
and
254 deletions
+795
-254
Ajit/VHB/Deployments/Acknowledgement Button Deployment/SalesQuotationAcknowledge.java
...edgement Button Deployment/SalesQuotationAcknowledge.java
+71
-2
Ajit/VHB/Deployments/Deployments-02 MARCH/VHB Java component/ReqForQuotationAprv.java
...ents-02 MARCH/VHB Java component/ReqForQuotationAprv.java
+116
-7
Ajit/VHB/Deployments/Deployments-02 MARCH/VHB Java component/ReqForQuotationIC.java
...yments-02 MARCH/VHB Java component/ReqForQuotationIC.java
+133
-35
Ajit/VHB/Deployments/Deployments-02 MARCH/VHB Java component/ReqForQuotationSubmit.java
...ts-02 MARCH/VHB Java component/ReqForQuotationSubmit.java
+12
-2
Ajit/VHB/Deployments/Deployments-02 MARCH/VHB Workflow component/rfq.xsl
...ments/Deployments-02 MARCH/VHB Workflow component/rfq.xsl
+260
-182
Ajit/VHB/RFQ WIZ/Java Component/ReqForQuotationWiz.java
Ajit/VHB/RFQ WIZ/Java Component/ReqForQuotationWiz.java
+203
-26
No files found.
Ajit/VHB/Deployments/Acknowledgement Button Deployment/SalesQuotationAcknowledge.java
View file @
bdf9ce8b
...
@@ -3,10 +3,16 @@ package ibase.webitm.ejb.dis;
...
@@ -3,10 +3,16 @@ package ibase.webitm.ejb.dis;
import
java.rmi.RemoteException
;
import
java.rmi.RemoteException
;
import
java.sql.Connection
;
import
java.sql.Connection
;
import
java.sql.PreparedStatement
;
import
java.sql.PreparedStatement
;
import
java.sql.ResultSet
;
import
javax.naming.InitialContext
;
import
ibase.system.config.AppConnectParm
;
import
ibase.utility.BaseLogger
;
import
ibase.utility.BaseLogger
;
import
ibase.utility.UserInfoBean
;
import
ibase.webitm.ejb.ActionHandlerEJB
;
import
ibase.webitm.ejb.ActionHandlerEJB
;
import
ibase.webitm.ejb.ITMDBAccessEJB
;
import
ibase.webitm.ejb.ITMDBAccessEJB
;
import
ibase.webitm.ejb.MasterStatefulLocal
;
import
ibase.webitm.utility.ITMException
;
import
ibase.webitm.utility.ITMException
;
public
class
SalesQuotationAcknowledge
extends
ActionHandlerEJB
{
public
class
SalesQuotationAcknowledge
extends
ActionHandlerEJB
{
...
@@ -15,8 +21,17 @@ public class SalesQuotationAcknowledge extends ActionHandlerEJB{
...
@@ -15,8 +21,17 @@ public class SalesQuotationAcknowledge extends ActionHandlerEJB{
Connection
conn
=
null
;
Connection
conn
=
null
;
String
errString
=
""
;
String
errString
=
""
;
ITMDBAccessEJB
itmDBAccessEJB
=
new
ITMDBAccessEJB
();
ITMDBAccessEJB
itmDBAccessEJB
=
new
ITMDBAccessEJB
();
String
quotType
=
""
,
custCode
=
""
;
StringBuffer
processDynXmlString
=
new
StringBuffer
();
int
domId
=
0
;
int
lineNo
=
0
;
String
processRequestResult
=
""
;
UserInfoBean
userInfo
=
null
;
try
try
{
{
userInfo
=
getUserInfo
();
AppConnectParm
appConnect
=
new
AppConnectParm
();
InitialContext
initialContext
=
new
InitialContext
(
appConnect
.
getProperty
());
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"SalesQuotationAcknowledge --> tranID MArch 9 2026["
+
tranID
+
"]"
);
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"SalesQuotationAcknowledge --> tranID MArch 9 2026["
+
tranID
+
"]"
);
conn
=
getConnection
();
conn
=
getConnection
();
...
@@ -26,11 +41,56 @@ public class SalesQuotationAcknowledge extends ActionHandlerEJB{
...
@@ -26,11 +41,56 @@ public class SalesQuotationAcknowledge extends ActionHandlerEJB{
updateStatusPs
.
setString
(
1
,
tranID
);
updateStatusPs
.
setString
(
1
,
tranID
);
int
updateStatusCnt
=
updateStatusPs
.
executeUpdate
();
int
updateStatusCnt
=
updateStatusPs
.
executeUpdate
();
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"SalesQuotationAcknowledge --> updateStatusCnt ["
+
updateStatusCnt
+
"]"
);
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"SalesQuotationAcknowledge --> updateStatusCnt ["
+
updateStatusCnt
+
"]"
);
if
(
updateStatusCnt
>
0
)
{
String
fetchSQuotDetSql
=
"select quot_type, cust_code from sales_quot where quot_no = ?"
;
PreparedStatement
fetchSQuotDetPs
=
conn
.
prepareStatement
(
fetchSQuotDetSql
);
fetchSQuotDetPs
.
setString
(
1
,
tranID
);
ResultSet
fetchSQuotDetRs
=
fetchSQuotDetPs
.
executeQuery
();
while
(
fetchSQuotDetRs
.
next
())
{
quotType
=
checkNull
(
fetchSQuotDetRs
.
getString
(
"quot_type"
));
custCode
=
checkNull
(
fetchSQuotDetRs
.
getString
(
"cust_code"
));
}
processDynXmlString
.
append
(
"<DocumentRoot><description>Datawindow Root</description><group0>"
);
processDynXmlString
.
append
(
"<description>Group0 description</description><Header0><description>Header0 members</description>"
);
if
(
quotType
.
trim
().
equalsIgnoreCase
(
"G"
))
{
String
fetchHospitalMappingSql
=
"select CUST_CODE__STK, CUST_CODE__DIST from CUSTOMER_PREF_DIST where CUST_CODE = ?"
;
PreparedStatement
fetchHospitalMappingPs
=
conn
.
prepareStatement
(
fetchHospitalMappingSql
);
fetchHospitalMappingPs
.
setString
(
1
,
custCode
);
ResultSet
fetchHospitalMappingRs
=
fetchHospitalMappingPs
.
executeQuery
();
while
(
fetchHospitalMappingRs
.
next
())
{
domId
++;
lineNo
++;
processDynXmlString
.
append
(
"<Detail3 dbID=':' domID='"
+
domId
+
"' objName=\"salesquot\" objContext=\"3\">"
);
processDynXmlString
.
append
(
"<attribute pkNames=\"quot_no:line_no:\" selected=\"N\" updateFlag=\"A\" status=\"N\" />"
);
processDynXmlString
.
append
(
"<line_no><![CDATA["
).
append
(
lineNo
).
append
(
"]]></line_no>"
);
processDynXmlString
.
append
(
"<cust_code><![CDATA["
).
append
(
custCode
).
append
(
"]]></cust_code>"
);
processDynXmlString
.
append
(
"<cust_code__stk><![CDATA["
).
append
(
checkNull
(
fetchHospitalMappingRs
.
getString
(
"CUST_CODE__STK"
))).
append
(
"]]></cust_code__stk>"
);
processDynXmlString
.
append
(
"<cust_code__dist><![CDATA["
).
append
(
checkNull
(
fetchHospitalMappingRs
.
getString
(
"CUST_CODE__DIST"
))).
append
(
"]]></cust_code__dist>"
);
processDynXmlString
.
append
(
"</Detail3>"
);
}
}
processDynXmlString
.
append
(
"</Header0></group0></DocumentRoot>"
);
String
salesQuotDet3Xml
=
processDynXmlString
.
toString
();
BaseLogger
.
log
(
"3"
,
null
,
null
,
"userInfo::"
+
userInfo
.
toString
()
+
"]"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"salesQuotDet3Xml::"
+
salesQuotDet3Xml
.
toString
()
+
"]"
);
MasterStatefulLocal
masterStateful
=
(
MasterStatefulLocal
)
initialContext
.
lookup
(
"ibase/MasterStatefulEJB/local"
);
processRequestResult
=
masterStateful
.
processRequest
(
userInfo
,
salesQuotDet3Xml
,
false
,
conn
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"processRequest processRequestResultD"
+
processRequestResult
+
"]"
);
if
(
updateStatusCnt
>
0
)
{
conn
.
commit
();
conn
.
commit
();
return
errString
=
itmDBAccessEJB
.
getErrorString
(
""
,
"SALESACK"
,
""
,
""
,
conn
);
return
errString
=
itmDBAccessEJB
.
getErrorString
(
""
,
"SALESACK"
,
""
,
""
,
conn
);
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"Exception from SalesQuotationAcknowledge updateStatus --["
+
e
.
getMessage
()+
"]"
);
BaseLogger
.
log
(
"3"
,
getUserInfo
(),
null
,
"Exception from SalesQuotationAcknowledge updateStatus --["
+
e
.
getMessage
()+
"]"
);
e
.
printStackTrace
();
e
.
printStackTrace
();
...
@@ -38,4 +98,13 @@ public class SalesQuotationAcknowledge extends ActionHandlerEJB{
...
@@ -38,4 +98,13 @@ public class SalesQuotationAcknowledge extends ActionHandlerEJB{
}
}
return
" "
;
return
" "
;
}
}
private
String
checkNull
(
String
input
)
{
if
(
input
==
null
)
{
input
=
""
;
}
return
input
;
}
}
}
Ajit/VHB/Deployments/Deployments-02 MARCH/VHB Java component/ReqForQuotationAprv.java
View file @
bdf9ce8b
package
ibase
.
webitm
.
ejb
.
dis
;
package
ibase
.
webitm
.
ejb
.
dis
;
import
java.io.StringReader
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.math.RoundingMode
;
import
java.math.RoundingMode
;
import
java.rmi.RemoteException
;
import
java.rmi.RemoteException
;
...
@@ -15,8 +16,12 @@ import java.time.format.DateTimeFormatter;
...
@@ -15,8 +16,12 @@ import java.time.format.DateTimeFormatter;
import
java.util.Date
;
import
java.util.Date
;
import
javax.naming.InitialContext
;
import
javax.naming.InitialContext
;
import
javax.xml.parsers.DocumentBuilder
;
import
javax.xml.parsers.DocumentBuilderFactory
;
import
org.w3c.dom.Document
;
import
org.w3c.dom.Document
;
import
org.w3c.dom.NodeList
;
import
org.xml.sax.InputSource
;
import
ibase.ejb.CommonDBAccessEJB
;
import
ibase.ejb.CommonDBAccessEJB
;
import
ibase.system.config.AppConnectParm
;
import
ibase.system.config.AppConnectParm
;
...
@@ -76,7 +81,6 @@ public class ReqForQuotationAprv extends ValidatorEJB{
...
@@ -76,7 +81,6 @@ public class ReqForQuotationAprv extends ValidatorEJB{
LocalDate
tranDate
=
LocalDate
.
now
();
// for tranDate
LocalDate
tranDate
=
LocalDate
.
now
();
// for tranDate
LocalTime
tranTime
=
LocalTime
.
now
();
LocalTime
tranTime
=
LocalTime
.
now
();
String
tranDateStr
=
formatDateTime
(
tranDate
,
tranTime
);
String
tranDateStr
=
formatDateTime
(
tranDate
,
tranTime
);
String
tranId
=
""
;
String
reqId
=
""
;
String
reqId
=
""
;
String
custCode
=
""
;
String
custCode
=
""
;
String
quotType
=
""
;
String
quotType
=
""
;
...
@@ -201,7 +205,7 @@ public class ReqForQuotationAprv extends ValidatorEJB{
...
@@ -201,7 +205,7 @@ public class ReqForQuotationAprv extends ValidatorEJB{
checkAppr2StatusRs
=
checkAppr2StatusPs
.
executeQuery
();
checkAppr2StatusRs
=
checkAppr2StatusPs
.
executeQuery
();
while
(
checkAppr2StatusRs
.
next
())
{
while
(
checkAppr2StatusRs
.
next
())
{
String
wfStatus
=
check
Appr2StatusRs
.
getString
(
"WF_STATUS"
);
String
wfStatus
=
check
Null
(
checkAppr2StatusRs
.
getString
(
"WF_STATUS"
)
);
if
(
wfStatus
.
equalsIgnoreCase
(
"A"
))
{
if
(
wfStatus
.
equalsIgnoreCase
(
"A"
))
{
tranFlag
=
false
;
tranFlag
=
false
;
...
@@ -299,10 +303,30 @@ public class ReqForQuotationAprv extends ValidatorEJB{
...
@@ -299,10 +303,30 @@ public class ReqForQuotationAprv extends ValidatorEJB{
resvisedRatePstmt
.
setString
(
1
,
itemCode
);
resvisedRatePstmt
.
setString
(
1
,
itemCode
);
ResultSet
resvisedRateRs
=
resvisedRatePstmt
.
executeQuery
();
ResultSet
resvisedRateRs
=
resvisedRatePstmt
.
executeQuery
();
while
(
resvisedRateRs
.
next
())
{
while
(
resvisedRateRs
.
next
())
{
int
distMargin
=
resvisedRateRs
.
getInt
(
"PHY_ATTRIB_13"
);
String
distMarginStr
=
checkNull
(
resvisedRateRs
.
getString
(
"PHY_ATTRIB_13"
));
int
stockMargin
=
resvisedRateRs
.
getInt
(
"PHY_ATTRIB_14"
);
String
stockMarginStr
=
checkNull
(
resvisedRateRs
.
getString
(
"PHY_ATTRIB_14"
));
int
retailMargin
=
resvisedRateRs
.
getInt
(
"PHY_ATTRIB_15"
);
String
retailMarginStr
=
checkNull
(
resvisedRateRs
.
getString
(
"PHY_ATTRIB_15"
));
int
distMargin
=
0
;
int
stockMargin
=
0
;
int
retailMargin
=
0
;
try
{
distMargin
=
(
distMarginStr
!=
null
&&
distMarginStr
.
trim
().
length
()
>
0
)
?
Integer
.
parseInt
(
distMarginStr
.
trim
())
:
0
;
stockMargin
=
(
stockMarginStr
!=
null
&&
stockMarginStr
.
trim
().
length
()
>
0
)
?
Integer
.
parseInt
(
stockMarginStr
.
trim
())
:
0
;
retailMargin
=
(
retailMarginStr
!=
null
&&
retailMarginStr
.
trim
().
length
()
>
0
)
?
Integer
.
parseInt
(
retailMarginStr
.
trim
())
:
0
;
}
catch
(
Exception
e
)
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"Error parsing margin values"
);
}
BigDecimal
rateBD
=
new
BigDecimal
(
rate
);
BigDecimal
rateBD
=
new
BigDecimal
(
rate
);
BigDecimal
hundred
=
new
BigDecimal
(
100
);
BigDecimal
hundred
=
new
BigDecimal
(
100
);
...
@@ -361,6 +385,35 @@ public class ReqForQuotationAprv extends ValidatorEJB{
...
@@ -361,6 +385,35 @@ public class ReqForQuotationAprv extends ValidatorEJB{
rfqDetPstmt
=
null
;
rfqDetPstmt
=
null
;
}
}
//Detail3 XML Building start - 19 March
/*
* BaseLogger.log("3", null, null, "quotType::" + quotType.toString() + "]");
* BaseLogger.log("3", null, null, "custCode::" + custCode.toString() + "]");
*
* if(quotType.trim().equalsIgnoreCase("G")) { String fetchHospitalMappingSql =
* "select CUST_CODE__STK, CUST_CODE__DIST from CUSTOMER_PREF_DIST where CUST_CODE = ?"
* ; PreparedStatement fetchHospitalMappingPs =
* conn.prepareStatement(fetchHospitalMappingSql);
* fetchHospitalMappingPs.setString(1, custCode); ResultSet
* fetchHospitalMappingRs = fetchHospitalMappingPs.executeQuery();
* while(fetchHospitalMappingRs.next()) {
* processDynXmlString.append("<Detail3 dbID=':' domID='"
* +domId+"' objName=\"salesquot\" objContext=\"3\">"); processDynXmlString.
* append("<attribute pkNames=\"quot_no:line_no:\" selected=\"N\" updateFlag=\"A\" status=\"N\" />"
* ); processDynXmlString.append("<line_no><![CDATA[").append(lineNo).append(
* "]]></line_no>");
* processDynXmlString.append("<cust_code><![CDATA[").append(custCode).append(
* "]]></cust_code>");
* processDynXmlString.append("<cust_code__stk><![CDATA[").append(checkNull(
* fetchHospitalMappingRs.getString("CUST_CODE__STK"))).append(
* "]]></cust_code__stk>");
* processDynXmlString.append("<cust_code__dist><![CDATA[").append(checkNull(
* fetchHospitalMappingRs.getString("CUST_CODE__DIST"))).append(
* "]]></cust_code__dist>"); processDynXmlString.append("</Detail3>"); } }
*/
//Detail3 XML Building end - 19 March
processDynXmlString
.
append
(
"</Header0></group0></DocumentRoot>"
);
processDynXmlString
.
append
(
"</Header0></group0></DocumentRoot>"
);
...
@@ -398,7 +451,63 @@ public class ReqForQuotationAprv extends ValidatorEJB{
...
@@ -398,7 +451,63 @@ public class ReqForQuotationAprv extends ValidatorEJB{
processRequestResult
=
masterStateful
.
processRequest
(
userInfo
,
salesQuotXml
,
false
,
conn
);
processRequestResult
=
masterStateful
.
processRequest
(
userInfo
,
salesQuotXml
,
false
,
conn
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"processRequest processRequestResultD"
+
processRequestResult
+
"]"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"processRequest processRequestResultD"
+
processRequestResult
+
"]"
);
if
(
processRequestResult
!=
null
&&
processRequestResult
.
trim
().
length
()
>
0
)
{
try
{
DocumentBuilderFactory
factory
=
DocumentBuilderFactory
.
newInstance
();
DocumentBuilder
builder
=
factory
.
newDocumentBuilder
();
InputSource
is
=
new
InputSource
(
new
StringReader
(
processRequestResult
));
Document
doc
=
builder
.
parse
(
is
);
// 🔹 Check SUCCESS
NodeList
detailNodeList
=
doc
.
getElementsByTagName
(
"Detail"
);
if
(
detailNodeList
!=
null
&&
detailNodeList
.
getLength
()
>
0
)
{
String
detailValue
=
detailNodeList
.
item
(
0
).
getTextContent
();
if
(
"Success"
.
equalsIgnoreCase
(
detailValue
))
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"Transaction SUCCESS"
);
// ✅ Success logic
String
tranIdOfSalesQuotaion
=
doc
.
getElementsByTagName
(
"TranID"
).
item
(
0
).
getTextContent
();
BaseLogger
.
log
(
"3"
,
null
,
null
,
"Generated Sales Quotaion TranID: "
+
tranIdOfSalesQuotaion
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"RFQ TranID: "
+
tranID
);
String
UpdateRfqIdInSQuotSql
=
"update sales_quot set TRAN_ID__RFQ = ? where QUOT_NO = ?"
;
PreparedStatement
UpdateRfqIdInSQuotPs
=
conn
.
prepareStatement
(
UpdateRfqIdInSQuotSql
);
UpdateRfqIdInSQuotPs
.
setString
(
1
,
tranID
);
UpdateRfqIdInSQuotPs
.
setString
(
2
,
tranIdOfSalesQuotaion
);
int
UpdateRfqIdInSQuotCount
=
UpdateRfqIdInSQuotPs
.
executeUpdate
();
conn
.
commit
();
BaseLogger
.
log
(
"3"
,
null
,
null
,
"Sales Quotation TRAN_ID__RFQ upadate count: "
+
UpdateRfqIdInSQuotCount
);
String
updateConfirm
=
"update sales_quot_req set confirmed = 'Y' where tran_id = ?"
;
PreparedStatement
updateConfirmPs
=
conn
.
prepareStatement
(
updateConfirm
);
updateConfirmPs
.
setString
(
1
,
tranID
);
int
updateConfirmCount
=
updateConfirmPs
.
executeUpdate
();
conn
.
commit
();
BaseLogger
.
log
(
"3"
,
null
,
null
,
"RFQ Confirmed Column update count: "
+
updateConfirmCount
);
if
(
updateConfirmPs
!=
null
)
{
updateConfirmPs
.
close
();
updateConfirmPs
=
null
;
}
}
}
else
{
BaseLogger
.
log
(
"3"
,
null
,
null
,
"Sales Quotation Generation Failed: "
);
}
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
retString
=
processRequestResult
;
retString
=
processRequestResult
;
}
}
...
...
Ajit/VHB/Deployments/Deployments-02 MARCH/VHB Java component/ReqForQuotationIC.java
View file @
bdf9ce8b
This diff is collapsed.
Click to expand it.
Ajit/VHB/Deployments/Deployments-02 MARCH/VHB Java component/ReqForQuotationSubmit.java
View file @
bdf9ce8b
...
@@ -52,6 +52,8 @@ public class ReqForQuotationSubmit extends ActionHandlerEJB
...
@@ -52,6 +52,8 @@ public class ReqForQuotationSubmit extends ActionHandlerEJB
ibase
.
utility
.
E12GenericUtility
genericUtility
=
null
;
ibase
.
utility
.
E12GenericUtility
genericUtility
=
null
;
ITMDBAccessEJB
itmDBAccess
=
null
;
ITMDBAccessEJB
itmDBAccess
=
null
;
String
ptr
=
""
,
rateQuot
=
""
;
String
ptr
=
""
,
rateQuot
=
""
;
BigDecimal
ratePtrVal
=
null
;
BigDecimal
rateQuotVal
=
null
;
try
try
{
{
...
@@ -81,8 +83,16 @@ public class ReqForQuotationSubmit extends ActionHandlerEJB
...
@@ -81,8 +83,16 @@ public class ReqForQuotationSubmit extends ActionHandlerEJB
}
}
BigDecimal
ratePtrVal
=
new
BigDecimal
(
ptr
);
BigDecimal
rateQuotVal
=
new
BigDecimal
(
rateQuot
);
if
(
ptr
!=
null
&&
ptr
.
trim
().
length
()
>
0
)
{
ratePtrVal
=
new
BigDecimal
(
ptr
);
}
if
(
rateQuot
!=
null
&&
rateQuot
.
trim
().
length
()
>
0
)
{
rateQuotVal
=
new
BigDecimal
(
rateQuot
);
}
String
loginCode
=
genericUtility
.
getValueFromXTRA_PARAMS
(
xtraParams
,
"loginCode"
);
String
loginCode
=
genericUtility
.
getValueFromXTRA_PARAMS
(
xtraParams
,
"loginCode"
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"loginCode>>>>:"
+
loginCode
);
BaseLogger
.
log
(
"3"
,
null
,
null
,
"loginCode>>>>:"
+
loginCode
);
...
...
Ajit/VHB/Deployments/Deployments-02 MARCH/VHB Workflow component/rfq.xsl
View file @
bdf9ce8b
This diff is collapsed.
Click to expand it.
Ajit/VHB/RFQ WIZ/Java Component/ReqForQuotationWiz.java
View file @
bdf9ce8b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment