Biobanques / ebiobanques

ebiobanques is a web-application to manage a datawarehouse of biological samples from multiples biobanks
GNU Lesser General Public License v3.0
4 stars 2 forks source link

Bug filter by "inactif" in user admin #73

Closed nmalservet closed 8 years ago

nmalservet commented 8 years ago

Pb with filter inactif: if "inactif" selected 2, if "actif" selected 2 users.

By investigate in db :

db.user.find({"inactif":"0"}).count(); 31 db.user.find({"inactif":0}).count(); 7 db.user.find({"inactif":"1"}).count(); 2 db.user.find({"inactif":1}).count(); 42

Sometimes the field is stored as NumberLong, sometimes as String.

nmalservet commented 8 years ago

Objective : use NumberLong ( type by default on mongo number) And change search according to this type