69 lines
3.7 KiB
Text
69 lines
3.7 KiB
Text
<!--
|
|
This file is part of LibrePlan
|
|
|
|
Copyright (C) 2009-2010 Fundación para o Fomento da Calidade Industrial e
|
|
Desenvolvemento Tecnolóxico de Galicia
|
|
Copyright (C) 2010-2011 Igalia, S.L.
|
|
|
|
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/>.
|
|
-->
|
|
|
|
<panel title="${i18n:_('Materials')}" border="normal">
|
|
<panelchildren>
|
|
<newdatasortablegrid id="gridMaterials"
|
|
fixedLayout="false"
|
|
model="@{assignedMaterialsController.assignedMaterials}">
|
|
<columns>
|
|
<newdatasortablecolumn label="${i18n:_('Code')}" />
|
|
<newdatasortablecolumn label="${i18n:_('Units')}" />
|
|
<newdatasortablecolumn label="${i18n:_('Unit type')}" />
|
|
<newdatasortablecolumn label="${i18n:_('Unit price')}" />
|
|
<newdatasortablecolumn label="${i18n:_('Total price')}" />
|
|
<newdatasortablecolumn label="${i18n:_('Category')}" />
|
|
<newdatasortablecolumn label="" />
|
|
</columns>
|
|
<rows>
|
|
<row self="@{each='assignedMaterial'}" value="@{assignedMaterial}">
|
|
<textbox value="@{assignedMaterial.material.code}"
|
|
constraint="no empty:${i18n:_('cannot be empty')}"
|
|
readonly="true" />
|
|
<doublebox value="@{assignedMaterial.units}"
|
|
onChange="assignedMaterialsController.updateTotalPrice(self.parent)" />
|
|
<listbox mold="select" model="@{assignedMaterialsController.unitTypes}"
|
|
onSelect = "assignedMaterialsController.selectUnitType(self)"
|
|
itemRenderer="@{assignedMaterialsController.renderer}"
|
|
disabled="true"/>
|
|
<decimalbox value="@{assignedMaterial.unitPrice}"
|
|
onChange="assignedMaterialsController.updateTotalPrice(self.parent)"
|
|
format="@{assignedMaterialsController.moneyFormat}" />
|
|
<decimalbox id="totalPrice" value="@{assignedMaterial.totalPrice}" disabled="${true}"
|
|
format="@{assignedMaterialsController.moneyFormat}" />
|
|
<label value="@{assignedMaterial.material.category.name}" width="150px" />
|
|
<hbox>
|
|
<button sclass="icono"
|
|
image="/common/img/ico_borrar1.png"
|
|
hoverImage="/common/img/ico_borrar.png"
|
|
tooltiptext="${i18n:_('Delete')}"
|
|
onClick="assignedMaterialsController.showRemoveMaterialAssignmentDlg(self.parent.parent.value)">
|
|
</button>
|
|
<button label="${i18n:_('Split')}"
|
|
tooltiptext="${i18n:_('Split assignment')}"
|
|
onClick="assignedMaterialsController.showSplitMaterialAssignmentDlg(self.parent.parent.value)">
|
|
</button>
|
|
</hbox>
|
|
</row>
|
|
</rows>
|
|
</newdatasortablegrid>
|
|
</panelchildren>
|
|
</panel>
|