Test app to reproduce the duplicate first_name and last_name fields bug in Customer when using ERPNext's Italian regional setup.
ERPNext's Italian regional setup creates custom fields first_name and last_name on the Customer DocType. These conflict with standard Customer fields (which are read-only and fetch from the primary contact).
See: frappe/erpnext#44498
- Install ERPNext (version 15 or develop)
- Create a new site with country = Italy
- Install this app
- Go to Customer and notice the duplicate fields
PR frappe/erpnext#50921 fixes this issue by renaming the Italian regional fields to italy_customer_first_name and italy_customer_last_name.
cd $PATH_TO_YOUR_BENCH
bench get-app https://github.com/Solede-SA/test_customer_field --branch main
bench --site your-site install-app test_customer_fieldAGPL-3.0