Commit fdc24452 authored by piyush's avatar piyush

Changed to set site code mfg empty string in case of null while generating...

Changed to set site code mfg empty string in case of null while generating receipt from despatch as suggested by KB Sir

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@196679 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8b67c737
...@@ -730,7 +730,9 @@ public class PostOrderActivity { ...@@ -730,7 +730,9 @@ public class PostOrderActivity {
rateStdUom=rs.getDouble("rate__stduom"); rateStdUom=rs.getDouble("rate__stduom");
rateClg=rs.getDouble("rate__clg"); rateClg=rs.getDouble("rate__clg");
noArt=rs.getDouble("no_art"); noArt=rs.getDouble("no_art");
siteMfg=rs.getString("site_code__mfg"); // Modified by Piyush on 04/02/2019 [To check null for site code mfg as suggested by KB Sir]
// siteMfg=rs.getString("site_code__mfg");
siteMfg=checkNull(rs.getString("site_code__mfg"));
grossWt=rs.getDouble("GROSS_WEIGHT"); grossWt=rs.getDouble("GROSS_WEIGHT");
tareWt=rs.getDouble("TARE_WEIGHT"); tareWt=rs.getDouble("TARE_WEIGHT");
netWt=rs.getDouble("NETT_WEIGHT"); netWt=rs.getDouble("NETT_WEIGHT");
......
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