Commit 50d967b7 authored by ppatro's avatar ppatro

bug found in single lot case


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92463 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1de54507
......@@ -742,8 +742,8 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
/*HashMap itemVolMap = getItemVoumeMap(itemCode, "", conn);
double packSize = (Double)itemVolMap.get("PACK_SIZE");*/
if(globalSingleLot != null && !globalSingleLot.equalsIgnoreCase(singleLot))
//if(globalSingleLot != null && !globalSingleLot.equalsIgnoreCase(singleLot))
if(globalSingleLot != null && !globalSingleLot.equalsIgnoreCase(singleLot) && globalSingleLot.length() > 0)
{
singleLot = globalSingleLot;
}
......
......@@ -36833,5 +36833,12 @@ INSERT INTO MESSAGES (
--added by sumit on 28/12/12 for loading scanning
update OBJ_FORMS set assisted_mode = 'E' where win_name = 'w_checksheet' and form_no = 2;
---added by Ashish Meheta On 31/12/13 not to deliver
UPDATE POPHELP SET SQL_STR = 'SELECT W.PTCN, D.SORD_NO, D.CUST_CODE,
D.TRAN_CODE FROM WAVE_TASK_DET W, DESPATCH D , WAVE_TASK T WHERE REF_ID =
D.DESP_ID AND D.CONFIRMED != 'Y' AND W.WAVE_ID = T.WAVE_ID AND T.CANCEL <>
'Y''
WHERE MOD_NAME = 'W_SHIPMENT' and FIELD_NAME = 'PTCN';
COMMIT;
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