ItEr49S18AdaptacionServiciosREST: Made 'code' field editable for Work Reports.

This commit is contained in:
Jacobo Aragunde Pérez 2010-03-05 21:11:46 +01:00 committed by Javier Moran Rua
parent 036b794615
commit 03fb5ffd6c
2 changed files with 5 additions and 1 deletions

View file

@ -126,4 +126,7 @@ public class WorkReportDTO {
return workReport.getCode();
}
public void setCode(String code) {
workReport.setCode(code);
}
}

View file

@ -128,7 +128,8 @@
</row>
<row>
<label value="${i18n:_('Code')}:" />
<label value="@{controller.workReport.code}" />
<textbox value="@{controller.workReport.code}" width="500px"
constraint="no empty:${i18n:_('cannot be null or empty')}" />
</row>
</rows>
</grid>