It is an obvious situation for any company to prevent the creation of duplicate partners with same name, and same case. To stop this we can do the following steps:
First merge all the duplicate entries on one partner.
Delete the other partner.
In pgAdmin run this query:
CREATE UNIQUE INDEX "Uindex_Store_Customer" ON "res_partner"(lower("name"));
0 Comment(s)