[Bug #642] Material search form isn't working

The filter searches for materials which are enabled (disabled == false).
When a material is created its disabled field is NULL, so the search
fails.

It's necessary to updated table 'material' in DB:

UPDATE material SET disabled = false;

FEA: ItEr60S04ValidacionEProbasFuncionaisItEr59S04
This commit is contained in:
Diego Pino Garcia 2010-09-12 22:13:23 +02:00
parent 1d34ad3549
commit 8450b98dd0

View file

@ -41,7 +41,7 @@ public class Material extends IntegrationEntity implements Comparable {
private UnitType unitType;
private Boolean disabled;
private Boolean disabled = Boolean.FALSE;
private MaterialCategory category = null;