Hi,
ATM, the C_BPartner_Location.Name field is updated when one of the location component (City, postal, Address1, ...) is updated.
A customer asks to add a checkbox on the C_BPartner_Location to preserve what he wrote in the name field.
The patch would be easy : modify the sql query which retrieves the C_BPartner_Location records
SELECT C_BPartner_Location_ID FROM C_BPartner_Location WHERE C_Location_ID = " + m_location.getC_Location_ID()
to become :
SELECT C_BPartner_Location_ID FROM C_BPartner_Location WHERE C_Location_ID = " + m_location.getC_Location_ID() + " AND IsAllowUpdate = 'Y'
Do you think this can be done in trunk ?
Regards,
Nicolas