Commit d8bd0bc9 authored by arawankar's avatar arawankar

PoRcpConf.java

-Changes made to generate qc_order_lots table entry only if qc_reqd_type is "S" (Sample for lot_sl) in item master and site_item master
-Changes suggested by KB Sir.
-Commented part in which system generated qc_order_lots  entry while qc_reqd_type is "L"(SAmple for lot)

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@195875 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 2ef19792
......@@ -3945,6 +3945,10 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp
}
}
qcRejectedList = new ArrayList();
//Modified by Anjali R. on [17/01/2019][As per KB sir suggested,QC_ORDER_LOTS entry should be inserted only in sampling for lot sl type(S)][Start]
int rowcount = InsertQcOrderLots(qcNo, tranId, itemCode, unit, lotNoRcp, aprv, batchNo, spec, today, mfgDate, expiryDate, conn);
//Modified by Anjali R. on [17/01/2019][As per KB sir suggested,QC_ORDER_LOTS entry should be inserted only in sampling for lot sl type(S)][End]
//Changed by Jagruti Shinde Request id:[W16CSUN009][Start]
if(qcLockDsp.length() != 0 && !qcLockDsp.equalsIgnoreCase(""))
{
......@@ -4552,7 +4556,10 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp
// added by priyanka
//Commented and added by Varsha V on 12-11-18 to set loc_code__aprv of qc_order in qc_order_lots
//int rowcount = InsertQcOrderLots(qcNo, tranId, itemCode, unit, lotNoRcp, qcLotLocCode, batchNo, spec, today, mfgDate, expiryDate, conn);
int rowcount = InsertQcOrderLots(qcNo, tranId, itemCode, unit, lotNoRcp, aprv, batchNo, spec, today, mfgDate, expiryDate, conn);
//Modified by Anjali R. on [17/01/2019][As per KB sir suggested,QC_ORDER_LOTS entry should be inserted only in sampling for lot sl type][Start]
//int rowcount = InsertQcOrderLots(qcNo, tranId, itemCode, unit, lotNoRcp, aprv, batchNo, spec, today, mfgDate, expiryDate, conn);
//Modified by Anjali R. on [17/01/2019][As per KB sir suggested,QC_ORDER_LOTS entry should be inserted only in sampling for lot sl type][End]
qcRejectedList = new ArrayList();
//Changed by Jagruti Shinde Request id:[W16CSUN009][Start]
......
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