[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:
parent
1d34ad3549
commit
8450b98dd0
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue