Commit 288a9e00 authored by rbhogale's avatar rbhogale

Changed by rohan on 26-06-13 for sankara changes of cust code take as customer delivery form


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93264 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1cab280d
......@@ -811,7 +811,9 @@ etc
if ( "single_lot".equalsIgnoreCase( childNodeName ) )
{
singleLot = checkNull(genericUtility.getColumnValue( "single_lot", currFormDataDom ));
custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
//Changed by sankara on 26-06-13 for customer code as customer code delivery
//custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
custCode = genericUtility.getColumnValue( "cust_code__dlv__from", currFormDataDom );
if(singleLot.trim().length() > 0 )
{
sql = "SELECT C.SINGLE_LOT, W.MASTER_PACK_ALLOW, W.ACTIVE_PICK_ALLOW, W.STOCK_TO_DOCK_ALLOW " +
......@@ -845,7 +847,9 @@ etc
{
masterPackAllow = checkNull(genericUtility.getColumnValue( "master_pack_allow", currFormDataDom ));
parcelPackAllow = checkNull(genericUtility.getColumnValue( "parcelpack_allow", currFormDataDom ));
custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
//Changed by sankara on 26-06-13 for customer code as customer code delivery
//custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
custCode = genericUtility.getColumnValue( "cust_code__dlv__from", currFormDataDom );
if(masterPackAllow.trim().length() > 0 )
{
sql = "SELECT C.SINGLE_LOT, W.MASTER_PACK_ALLOW, W.ACTIVE_PICK_ALLOW, W.STOCK_TO_DOCK_ALLOW " +
......@@ -886,7 +890,9 @@ etc
else if ( "parcelpack_allow".equalsIgnoreCase( childNodeName ) )
{
parcelPackAllow = checkNull(genericUtility.getColumnValue( "parcelpack_allow", currFormDataDom ));
custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
//Changed by sankara on 26-06-13 for customer code as customer code delivery
//custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
custCode = genericUtility.getColumnValue( "cust_code__dlv__from", currFormDataDom );
if(parcelPackAllow.trim().length() > 0 )
{
sql = "SELECT C.SINGLE_LOT, W.MASTER_PACK_ALLOW, W.ACTIVE_PICK_ALLOW, W.STOCK_TO_DOCK_ALLOW, W.PARCELPACK_ALLOW " +
......@@ -1033,7 +1039,9 @@ etc
else if ( "active_pick_allow".equalsIgnoreCase( childNodeName ) )
{
activePickAllow = checkNull(genericUtility.getColumnValue( "active_pick_allow", currFormDataDom ));
custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
//Changed by sankara on 26-06-13 for customer code as customer code delivery
//custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
custCode = genericUtility.getColumnValue( "cust_code__dlv__from", currFormDataDom );
if(activePickAllow.trim().length() > 0 )
{
sql = "SELECT C.SINGLE_LOT, W.MASTER_PACK_ALLOW, W.ACTIVE_PICK_ALLOW, W.STOCK_TO_DOCK_ALLOW " +
......@@ -1066,7 +1074,9 @@ etc
else if ( "stock_to_dock_allow".equalsIgnoreCase( childNodeName ) )
{
stockToDockAllow = checkNull(genericUtility.getColumnValue( "stock_to_dock_allow", currFormDataDom ));
custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
//Changed by sankara on 26-06-13 for customer code as customer code delivery
//custCode = genericUtility.getColumnValue( "cust_code__from", currFormDataDom );
custCode = genericUtility.getColumnValue( "cust_code__dlv__from", currFormDataDom );
if(stockToDockAllow.trim().length() > 0 )
{
sql = "SELECT C.SINGLE_LOT, W.MASTER_PACK_ALLOW, W.ACTIVE_PICK_ALLOW, W.STOCK_TO_DOCK_ALLOW " +
......
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