Commit 6be4431f authored by arawankar's avatar arawankar

ADDED BY ANJALI R. ON [14/11/2018]

 MIGRATED PB TO JAVA AS PER CURRENT NVO LOGIC 

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@192912 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d8a2cb04
...@@ -450,10 +450,15 @@ public class DespatchConfirm extends ActionHandlerEJB implements DespatchConfirm ...@@ -450,10 +450,15 @@ public class DespatchConfirm extends ActionHandlerEJB implements DespatchConfirm
} }
else else
{ {
String[] arrayForTranId = errString.split("<TranID>"); //Modified by Anjali R. on[14/11/2018][Start]
int endIndex = arrayForTranId[1].indexOf("</TranID>"); if(errString != null && errString.trim().length() > 0)
poRcpTranId = arrayForTranId[1].substring(0,endIndex); {
System.out.println("poRcpTranId--["+poRcpTranId+"]"); //Modified by Anjali R. on[14/11/2018][End]
String[] arrayForTranId = errString.split("<TranID>");
int endIndex = arrayForTranId[1].indexOf("</TranID>");
poRcpTranId = arrayForTranId[1].substring(0,endIndex);
System.out.println("poRcpTranId--["+poRcpTranId+"]");
}
} }
//Modified by Anjali R. on [12/11/2018][To get receipt no][End] //Modified by Anjali R. on [12/11/2018][To get receipt no][End]
......
...@@ -54,6 +54,12 @@ alter table sordertype add CR_TERM_SOURCE char(1); ...@@ -54,6 +54,12 @@ alter table sordertype add CR_TERM_SOURCE char(1);
------------ added by ANJALI R on 13-11-2018 [START] ---------------------------------- ------------ added by ANJALI R on 13-11-2018 [START] ----------------------------------
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) 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_PORCP','FOR','CP','CP','BASE','BASE','BASE','Y',NULL,NULL,NULL); VALUES ('TRAN_TYPE','W_PORCP','FOR','CP','CP',sysdate,'BASE','BASE','Y',NULL,NULL,NULL);
------------ added by ANJALI R on 13-11-2018 [End] ---------------------------------- ------------ added by ANJALI R on 13-11-2018 [End] ----------------------------------
\ No newline at end of file
------------ added by ANJALI R on 14-11-2018 [START] ----------------------------------
update system_events set SERVICE_CODE = 'prcm_default_2',COMP_TYPE = 'JB',COMP_NAME = 'ibase.webitm.ejb.dis.adv.SorderCancel'
where obj_name ='sorder' and EVENT_CODE = 'pre_cancel';
commit;
------------ added by ANJALI R on 14-11-2018 [End] ----------------------------------
\ No newline at end of file
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