TASKPM/navalplanner-webapp/src/main/webapp/orders/_editOrderElement.zul

54 lines
2.2 KiB
Text

<!--
This file is part of ###PROJECT_NAME###
Copyright (C) 2009 Fundación para o Fomento da Calidade Industrial e
Desenvolvemento Tecnolóxico de Galicia
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<?component name="listOrderElementHours" inline="true" macroURI="_listOrderElementHours.zul"?>
<?component name="listOrderElementAdvances" inline="true" macroURI="_listOrderElementAdvances.zul"?>
<?component name="listOrderElementLabels" inline="true" macroURI="_listOrderElementLabels.zul"?>
<?component name="orderElementDetails" inline="true" macroURI="_orderElementDetails.zul"?>
<window id="${arg.top_id}" title="${i18n:_('Edit order element')}"
width="950px" left="50px" top="50px"
closable="true" visible="false">
<tabbox height="620px">
<tabs>
<tab id="tabDetails" label="${i18n:_('Details')}"></tab>
<tab label="${i18n:_('Assigned hours')}"></tab>
<tab label="${i18n:_('Advances')}"></tab>
<tab label="${i18n:_('Labels')}"></tab>
</tabs>
<tabpanels>
<tabpanel>
<orderElementDetails id="orderElementDetails" />
</tabpanel>
<tabpanel>
<listOrderElementHours id="orderElementHours" />
</tabpanel>
<tabpanel>
<listOrderElementAdvances id="orderElementAdvances" />
</tabpanel>
<tabpanel>
<listOrderElementLabels id="orderElementLabels" />
</tabpanel>
</tabpanels>
</tabbox>
<hbox>
<button label="${i18n:_('Back')}" onClick="orderElementController.back()"/>
</hbox>
</window>