Commit 31096724 authored by pchavan's avatar pchavan

TO SET EFF DATE ON PURC ORDER NO EVEN WHEN CHALLAN DATE IS BLANK.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@200372 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 65120263
......@@ -4478,6 +4478,10 @@ public class PoReceiptIc extends ValidatorEJB implements PoReceiptIcLocal,PoRec
ldttrandt1 =genericUtility.getColumnValue("tran_date", dom);
ldttrandt1 = ldttrandt1 == null ? "" : ldttrandt1.trim();
System.out.println("String Effdate is"+ldttrandt1);
//Added By Priyankac TO SET TRAN DATE ID CHALLAN DATE IS NULL [START]
// ldtdc1 = ldtdc1 == null ? "" : ldtdc1.trim();
ldtdc1 = ldtdc1 == null ? ldttrandt1 : ldtdc1.trim();
//Added By Priyankac TO SET TRAN DATE ID CHALLAN DATE IS NULL [END]
//Commented and Added by sarita to set add proj_code and set to header on 29 MARCH 2019 [START]
/*sql="select supp_code, tax_date, curr_code, exch_rate,cr_term,tran_code,item_ser, emp_code, trans_mode, pord_type," +
"accept_criteria, anal_code, bank_code__pay from porder where purc_order =?";*/
......
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