blob: 9520ccf667e416b0bf3a81e29b0b93b426d30b2a [file] [log] [blame]
<#--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<div class="screenlet">
<div class="screenlet-title-bar">
<h3>${uiLabelMap.ProductEditFeaturesForFeatureCategory} "${(curProductFeatureCategory.description)?if_exists}"</h3>
</div>
<div class="screenlet-body">
<div class="button-bar">
<a href="<@ofbizUrl>CreateFeature?productFeatureCategoryId=${productFeatureCategoryId?if_exists}</@ofbizUrl>" class="buttontext create">${uiLabelMap.ProductCreateNewFeature}</a>
</div>
<br/>
<form action="<@ofbizUrl>QuickAddProductFeatures</@ofbizUrl>" method="post">
<div>
${uiLabelMap.CommonAdd}
<input type="text" name="featureNum" value="1" size="3" />
${uiLabelMap.ProductAddFeatureToCategory}
<input class="smallSubmit" type="submit" value="${uiLabelMap.CommonCreate}" />
</div>
<input type="hidden" name="productFeatureCategoryId" value="${productFeatureCategoryId}" />
</form>
<br />
</div>
</div>
<div class="screenlet">
<div class="screenlet-title-bar">
<h3>${uiLabelMap.ProductProductFeatureMaintenance}</h3>
</div>
<div class="screenlet-body">
<#if (listSize > 0)>
<#if productId?has_content>
<#assign productString = "&amp;productId=" + productId>
</#if>
<table border="0" width="100%" cellpadding="2">
<tr>
<td align="right">
<span class="label">
<b>
<#if (viewIndex > 0)>
<a href="<@ofbizUrl>EditFeatureCategoryFeatures?productFeatureCategoryId=${productFeatureCategoryId?if_exists}&amp;VIEW_SIZE=${viewSize}&amp;VIEW_INDEX=${viewIndex-1}${productString?if_exists}</@ofbizUrl>" class="buttontext">[${uiLabelMap.CommonPrevious}]</a> |
</#if>
${lowIndex+1} - ${highIndex} ${uiLabelMap.CommonOf} ${listSize}
<#if (listSize > highIndex)>
| <a href="<@ofbizUrl>EditFeatureCategoryFeatures?productFeatureCategoryId=${productFeatureCategoryId?if_exists}&amp;VIEW_SIZE=${viewSize}&amp;VIEW_INDEX=${viewIndex+1}${productString?if_exists}</@ofbizUrl>" class="buttontext">[${uiLabelMap.CommonNext}]</a>
</#if>
</b>
</span>
</td>
</tr>
</table>
</#if>
<br />
<form method='post' action='<@ofbizUrl>UpdateProductFeatureInCategory</@ofbizUrl>' name="selectAllForm">
<input type="hidden" name="_useRowSubmit" value="Y" />
<input type="hidden" name="_checkGlobalScope" value="N" />
<input type="hidden" name="productFeatureCategoryId" value="${productFeatureCategoryId}" />
<table cellspacing="0" class="basic-table">
<tr class="header-row">
<td><b>${uiLabelMap.CommonId}</b></td>
<td><b>${uiLabelMap.CommonDescription}</b></td>
<td><b>${uiLabelMap.ProductFeatureType}</b></td>
<td><b>${uiLabelMap.ProductFeatureCategory}</b></td>
<td><b>${uiLabelMap.ProductUnitOfMeasureId}</b></td>
<td><b>${uiLabelMap.ProductQuantity}</b></td>
<td><b>${uiLabelMap.ProductAmount}</b></td>
<td><b>${uiLabelMap.ProductIdSeqNum}</b></td>
<td><b>${uiLabelMap.ProductIdCode}</b></td>
<td><b>${uiLabelMap.ProductAbbrev}</b></td>
<td align="right"><b>${uiLabelMap.CommonAll}<input type="checkbox" name="selectAll" value="${uiLabelMap.CommonY}" onclick="javascript:toggleAll(this, 'selectAllForm');highlightAllRows(this, 'productFeatureId_tableRow_', 'selectAllForm');" /></b></td>
</tr>
<#if (listSize > 0)>
<#assign rowCount = 0>
<#assign rowClass = "2">
<#list productFeatures as productFeature>
<#assign curProductFeatureType = productFeature.getRelatedOne("ProductFeatureType", true)>
<tr id="productFeatureId_tableRow_${rowCount}" valign="middle"<#if rowClass == "1"> class="alternate-row"</#if>>
<td><input type="hidden" name="productFeatureId_o_${rowCount}" value="${productFeature.productFeatureId}" />
<a href="<@ofbizUrl>EditFeature?productFeatureId=${productFeature.productFeatureId}</@ofbizUrl>" class="buttontext">${productFeature.productFeatureId}</a></td>
<td><input type="text" size='15' name="description_o_${rowCount}" value="${productFeature.description}" /></td>
<td><select name='productFeatureTypeId_o_${rowCount}' size="1">
<#if productFeature.productFeatureTypeId?has_content>
<option value='${productFeature.productFeatureTypeId}'><#if curProductFeatureType?exists>${curProductFeatureType.get("description",locale)?if_exists}<#else> [${productFeature.productFeatureTypeId}]</#if></option>
<option value='${productFeature.productFeatureTypeId}'>---</option>
</#if>
<#list productFeatureTypes as productFeatureType>
<option value='${productFeatureType.productFeatureTypeId}'>${productFeatureType.get("description",locale)?if_exists}</option>
</#list>
</select></td>
<td><select name='productFeatureCategoryId_o_${rowCount}' size="1">
<#if productFeature.productFeatureCategoryId?has_content>
<#assign curProdFeatCat = productFeature.getRelatedOne("ProductFeatureCategory", false)>
<option value='${productFeature.productFeatureCategoryId}'>${(curProdFeatCat.description)?if_exists} [${productFeature.productFeatureCategoryId}]</option>
<option value='${productFeature.productFeatureCategoryId}'>---</option>
</#if>
<#list productFeatureCategories as productFeatureCategory>
<option value='${productFeatureCategory.productFeatureCategoryId}'>${productFeatureCategory.get("description",locale)?if_exists} [${productFeatureCategory.productFeatureCategoryId}]</option>
</#list>
</select></td>
<td><input type="text" size='10' name="uomId_o_${rowCount}" value="${productFeature.uomId?if_exists}" /></td>
<td><input type="text" size='5' name="numberSpecified_o_${rowCount}" value="${productFeature.numberSpecified?if_exists}" /></td>
<td><input type="text" size='5' name="defaultAmount_o_${rowCount}" value="${productFeature.defaultAmount?if_exists}" /></td>
<td><input type="text" size='5' name="defaultSequenceNum_o_${rowCount}" value="${productFeature.defaultSequenceNum?if_exists}" /></td>
<td><input type="text" size='5' name="idCode_o_${rowCount}" value="${productFeature.idCode?if_exists}" /></td>
<td><input type="text" size='5' name="abbrev_o_${rowCount}" value="${productFeature.abbrev?if_exists}" /></td>
<td align="right"><input type="checkbox" name="_rowSubmit_o_${rowCount}" value="Y" onclick="javascript:checkToggle(this, 'selectAllForm');highlightRow(this,'productFeatureId_tableRow_${rowCount}');" /></td>
</tr>
<#assign rowCount = rowCount + 1>
<#-- toggle the row color -->
<#if rowClass == "2">
<#assign rowClass = "1">
<#else>
<#assign rowClass = "2">
</#if>
</#list>
<tr><td colspan="11" align="center">
<input type="hidden" name="_rowCount" value="${rowCount}" />
<input type="submit" value='${uiLabelMap.CommonUpdate}'/></td></tr>
</#if>
</table>
</form>
</div>
</div>