Ticket #1001758: FedEx & UPS - update C_Order.IsPriviledgedRate to match the parameter passed in during sales order rate inquiry process
This commit is contained in:
parent
7be4abcace
commit
efa7aa1ec3
|
@ -166,6 +166,12 @@ public class SalesOrderRateInquiryProcess extends SvrProcess
|
|||
freightLine.setQty(BigDecimal.ONE);
|
||||
freightLine.setPrice(st.getPrice());
|
||||
freightLine.saveEx();
|
||||
|
||||
if (m_order.isPriviledgedRate() != p_IsPriviledgedRate)
|
||||
{
|
||||
m_order.setIsPriviledgedRate(p_IsPriviledgedRate);
|
||||
m_order.saveEx();
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue