BF - Shipment assigning wrong contact when chosing order or RMA
http://kenai.com/jira/browse/HENGSIN-70
This commit is contained in:
parent
8e88a4d0c9
commit
47e9614756
|
@ -80,7 +80,11 @@ public class CalloutInOut extends CalloutEngine
|
|||
|
||||
//[ 1867464 ]
|
||||
mTab.setValue("C_BPartner_Location_ID", new Integer(order.getC_BPartner_Location_ID()));
|
||||
|
||||
if (order.getAD_User_ID() > 0)
|
||||
mTab.setValue("AD_User_ID", new Integer(order.getAD_User_ID()));
|
||||
else
|
||||
mTab.setValue("AD_User_ID", null);
|
||||
}
|
||||
return "";
|
||||
} // order
|
||||
|
@ -129,7 +133,11 @@ public class CalloutInOut extends CalloutEngine
|
|||
|
||||
//[ 1867464 ]
|
||||
mTab.setValue("C_BPartner_Location_ID", new Integer(originalReceipt.getC_BPartner_Location_ID()));
|
||||
|
||||
if (originalReceipt.getAD_User_ID() > 0)
|
||||
mTab.setValue("AD_User_ID", new Integer(originalReceipt.getAD_User_ID()));
|
||||
else
|
||||
mTab.setValue("AD_User_ID", null);
|
||||
}
|
||||
return "";
|
||||
} // rma
|
||||
|
|
Loading…
Reference in New Issue