project-margins-and-status: input components added for hours and budget margin

This commit is contained in:
miciele Ghiorghis 2013-06-19 16:48:32 +02:00 committed by Oscar Gonzalez Fernandez
parent 9f15fecaea
commit 297286732e

View file

@ -152,6 +152,14 @@
<checkbox
checked="@{controller.order.dependenciesConstraintsHavePriority}" />
</row>
<row>
<label value="${i18n:_('Hours margin')}" />
<hbox>
<intbox
value="@{controller.order.hoursMargin}" constraint="no negative" width="30px" />
<label value="%" />
</hbox>
</row>
</rows>
</grid>
</groupbox>
@ -210,6 +218,14 @@
<label value="${i18n:_('Total hours')}" />
<label value="@{controller.order.totalHours}"/>
</row>
<row>
<label value="${i18n:_('Budget margin')}" />
<hbox>
<intbox
value="@{controller.order.budgetMargin}" constraint="no negative" width="30px" />
<label value="%" />
</hbox>
</row>
</rows>
</grid>
</groupbox>