blob: 2aa2d88d195551187e7721457016a52345920945 [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.ProductReceiveReturn} ${uiLabelMap.CommonInto} <#if facility?has_content>"${facility.facilityName?default("Not Defined")}"</#if> [${uiLabelMap.CommonId}:${facility.facilityId!}]</h3>
</div>
<div class="screenlet-body">
<#-- Receiving Results -->
<#if receivedItems?has_content>
<h3>${uiLabelMap.ProductReceiptForReturn} ${uiLabelMap.CommonNbr}<a href="/ordermgr/control/returnMain?returnId=${returnHeader.returnId}${externalKeyParam!}" class="buttontext">${returnHeader.returnId}</a></h3>
<#if "RETURN_RECEIVED" == returnHeader.getString("statusId")>
<h3>${uiLabelMap.ProductReturnCompletelyReceived}</h3>
</#if>
<br />
<table cellspacing="0" class="basic-table">
<tr class="header-row">
<td>${uiLabelMap.ProductReceipt}</td>
<td>${uiLabelMap.CommonDate}</td>
<td>${uiLabelMap.CommonReturn}</td>
<td>${uiLabelMap.ProductLine}</td>
<td>${uiLabelMap.ProductProductId}</td>
<td>${uiLabelMap.ProductPerUnitPrice}</td>
<td>${uiLabelMap.ProductReceived}</td>
</tr>
<#list receivedItems as item>
<tr>
<td>${item.receiptId}</td>
<td>${item.getString("datetimeReceived").toString()}</td>
<td>${item.returnId}</td>
<td>${item.returnItemSeqId}</td>
<td>${item.productId?default("Not Found")}</td>
<td>${item.unitCost?default(0)?string("##0.00")}</td>
<td>${item.quantityAccepted?string.number}</td>
</tr>
</#list>
</table>
<br />
</#if>
<#-- Multi-Item Return Receiving -->
<#if returnHeader?has_content>
<form method="post" action="<@ofbizUrl>receiveReturnedProduct</@ofbizUrl>" name='selectAllForm'>
<#-- general request fields -->
<input type="hidden" name="facilityId" value="${requestParameters.facilityId!}" />
<input type="hidden" name="returnId" value="${requestParameters.returnId!}" />
<input type="hidden" name="_useRowSubmit" value="Y" />
<#assign now = Static["org.apache.ofbiz.base.util.UtilDateTime"].nowTimestamp().toString()>
<#assign rowCount = 0>
<table cellspacing="0" class="basic-table">
<#if !returnItems?? || returnItems?size == 0>
<tr>
<td colspan="2" class="label">${uiLabelMap.ProductNoItemsToReceive}</td>
</tr>
<#else>
<tr>
<td>
<h3>
${uiLabelMap.ProductReceiveReturn} <a href="/ordermgr/control/returnMain?returnId=${returnHeader.returnId}${externalKeyParam!}" class="buttontext">#${returnHeader.returnId}</a>
<#if parameters.shipmentId?has_content>${uiLabelMap.ProductShipmentId} <a href="<@ofbizUrl>ViewShipment?shipmentId=${parameters.shipmentId}</@ofbizUrl>" class="buttontext">${parameters.shipmentId}</a></#if>
</h3>
</td>
<td align="right">
<label>${uiLabelMap.ProductSelectAll}&nbsp;
<input type="checkbox" name="selectAll" value="Y" class="selectAll" checked/></label>
</td>
</tr>
<#list returnItems as returnItem>
<#assign defaultQuantity = returnItem.returnQuantity - receivedQuantities[returnItem.returnItemSeqId]?double>
<#assign orderItem = returnItem.getRelatedOne("OrderItem", false)!>
<#if (orderItem?has_content && 0 < defaultQuantity)>
<#assign orderItemType = (orderItem.getRelatedOne("OrderItemType", false))!>
<input type="hidden" name="returnId_o_${rowCount}" value="${returnItem.returnId}" />
<input type="hidden" name="returnItemSeqId_o_${rowCount}" value="${returnItem.returnItemSeqId}" />
<input type="hidden" name="shipmentId_o_${rowCount}" value="${parameters.shipmentId!}" />
<input type="hidden" name="facilityId_o_${rowCount}" value="${requestParameters.facilityId!}" />
<input type="hidden" name="datetimeReceived_o_${rowCount}" value="${now}" />
<input type="hidden" name="quantityRejected_o_${rowCount}" value="0" />
<input type="hidden" name="comments_o_${rowCount}" value="${uiLabelMap.OrderReturnedItemRaNumber} ${returnItem.returnId}" />
<#assign unitCost = Static["org.apache.ofbiz.order.order.OrderReturnServices"].getReturnItemInitialCost(delegator, returnItem.returnId, returnItem.returnItemSeqId)/>
<tr>
<td colspan="2"><hr/></td>
</tr>
<tr>
<td>
<table cellspacing="0" class="basic-table">
<tr>
<#assign productId = "">
<#if orderItem.productId??>
<#assign product = orderItem.getRelatedOne("Product", false)>
<#assign productId = product.productId>
<#assign serializedInv = product.getRelated("InventoryItem", Static["org.apache.ofbiz.base.util.UtilMisc"].toMap("inventoryItemTypeId", "SERIALIZED_INV_ITEM"), null, false)>
<input type="hidden" name="productId_o_${rowCount}" value="${product.productId}" />
<td width="45%">
<div>
${returnItem.returnItemSeqId}:&nbsp;<a href="/catalog/control/EditProduct?productId=${product.productId}${externalKeyParam!}" target="catalog" class="buttontext">${product.productId}&nbsp;-&nbsp;${product.internalName!}</a> : ${product.description!}
<#if serializedInv?has_content><font color='red'>**${uiLabelMap.ProductSerializedInventoryFound}**</font></#if>
</div>
</td>
<#elseif orderItem?has_content>
<td width="45%">
<div>
${returnItem.returnItemSeqId}:&nbsp;<b>${orderItemType.get("description",locale)}</b> : ${orderItem.itemDescription!}&nbsp;&nbsp;
<input type="text" size="12" name="productId_o_${rowCount}" />
<a href="/catalog/control/EditProduct?${StringUtil.wrapString(externalKeyParam)}" target="catalog" class="buttontext">${uiLabelMap.ProductCreateProduct}</a>
</div>
</td>
<#else>
<td width="45%">
<div>
${returnItem.returnItemSeqId}:&nbsp;${returnItem.get("description",locale)!}
</div>
</td>
</#if>
<td>&nbsp;</td>
<#-- location(s) -->
<td align="right">
<div class="label">${uiLabelMap.ProductLocation}</div>
</td>
<td align="right">
<#assign facilityLocations = (product.getRelated("ProductFacilityLocation", Static["org.apache.ofbiz.base.util.UtilMisc"].toMap("facilityId", facilityId), null, false))!>
<#if facilityLocations?has_content>
<select name="locationSeqId_o_${rowCount}">
<#list facilityLocations as productFacilityLocation>
<#assign facility = productFacilityLocation.getRelatedOne("Facility", true)>
<#assign facilityLocation = productFacilityLocation.getRelatedOne("FacilityLocation", false)!>
<#assign facilityLocationTypeEnum = (facilityLocation.getRelatedOne("TypeEnumeration", true))!>
<option value="${productFacilityLocation.locationSeqId}"><#if facilityLocation??>${facilityLocation.areaId!}:${facilityLocation.aisleId!}:${facilityLocation.sectionId!}:${facilityLocation.levelId!}:${facilityLocation.positionId!}</#if><#if facilityLocationTypeEnum??>(${facilityLocationTypeEnum.get("description",locale)})</#if>[${productFacilityLocation.locationSeqId}]</option>
</#list>
<option value="">${uiLabelMap.ProductNoLocation}</option>
</select>
<#else>
<span>
<#if parameters.facilityId??>
<#assign LookupFacilityLocationView="LookupFacilityLocation?facilityId=${facilityId}">
<#else>
<#assign LookupFacilityLocationView="LookupFacilityLocation">
</#if>
<@htmlTemplate.lookupField formName="selectAllForm" name="locationSeqId_o_${rowCount}" id="locationSeqId_o_${rowCount}" fieldFormName="${LookupFacilityLocationView}"/>
</span>
</#if>
</td>
<td align="right" nowrap="nowrap" class="label">${uiLabelMap.ProductQtyReceived}</td>
<td align="right">
<input type="text" name="quantityAccepted_o_${rowCount}" size="6" value="${defaultQuantity?string.number}" />
</td>
</tr>
<tr>
<td width='10%'>
<#if product.inventoryItemTypeId?has_content>
<input name="inventoryItemTypeId_o_${rowCount}" type="hidden" value="${product.inventoryItemTypeId}" />
<#assign inventoryItemType = product.getRelatedOne("InventoryItemType", true)! />
${inventoryItemType.description!}
<#else>
<select name="inventoryItemTypeId_o_${rowCount}" size="1" id="inventoryItemTypeId_o_${rowCount}" onchange="javascript:setInventoryItemStatus(this,${rowCount});">
<#list inventoryItemTypes as nextInventoryItemType>
<option value='${nextInventoryItemType.inventoryItemTypeId}'
<#if (facility.defaultInventoryItemTypeId?has_content) && (nextInventoryItemType.inventoryItemTypeId == facility.defaultInventoryItemTypeId)>
selected="selected"
</#if>
>${nextInventoryItemType.get("description",locale)?default(nextInventoryItemType.inventoryItemTypeId)}</option>
</#list>
</select>
</#if>
</td>
<td width="35%">
<span class="label">${uiLabelMap.ProductInitialInventoryItemStatus}:</span>&nbsp;&nbsp;
<select name="statusId_o_${rowCount}" size='1' id = "statusId_o_${rowCount}">
<option value="INV_RETURNED">${uiLabelMap.ProductReturned}</option>
<option value="INV_AVAILABLE">${uiLabelMap.ProductAvailable}</option>
<option value="INV_NS_DEFECTIVE" <#if returnItem.returnReasonId?default("") == "RTN_DEFECTIVE_ITEM">Selected</#if>>${uiLabelMap.ProductDefective}</option>
</select>
</td>
<#if serializedInv?has_content>
<td align="right" class="label">${uiLabelMap.ProductExistingInventoryItem}</td>
<td align="right">
<select name="inventoryItemId_o_${rowCount}">
<#list serializedInv as inventoryItem>
<option>${inventoryItem.inventoryItemId}</option>
</#list>
</select>
</td>
<#else>
<td colspan="2">&nbsp;</td>
</#if>
<td align="right" nowrap="nowrap" class="label">${uiLabelMap.ProductPerUnitPrice}</td>
<td align="right">
<input type='text' name='unitCost_o_${rowCount}' size='6' value='${unitCost?default(0)?string("##0.00")}' />
</td>
</tr>
</table>
</td>
<td align="right">
<input type="checkbox" name="_rowSubmit_o_${rowCount}" value="Y"/>
</td>
</tr>
<#assign rowCount = rowCount + 1>
</#if>
</#list>
<tr>
<td colspan="2">
<hr/>
</td>
</tr>
<#if rowCount == 0>
<tr>
<td colspan="2" class="label">${uiLabelMap.ProductNoItemsReturn} #${returnHeader.returnId} ${uiLabelMap.ProductToReceive}.</td>
</tr>
<tr>
<td colspan="2" align="right">
<a href="<@ofbizUrl>ReceiveReturn?facilityId=${requestParameters.facilityId!}</@ofbizUrl>" class="buttontext">${uiLabelMap.ProductReturnToReceiving}</a>
</td>
</tr>
<#else>
<tr>
<td colspan="2" align="right">
<a href="javascript:document.selectAllForm.submit();" class="buttontext">${uiLabelMap.ProductReceiveSelectedProduct}</a>
</td>
</tr>
</#if>
</#if>
</table>
<input type="hidden" name="_rowCount" value="${rowCount}" />
</form>
<#-- Initial Screen -->
<#else>
<form name="selectAllForm" method="post" action="<@ofbizUrl>ReceiveReturn</@ofbizUrl>">
<input type="hidden" name="facilityId" value="${requestParameters.facilityId!}" />
<input type="hidden" name="initialSelected" value="Y" />
<table cellspacing="0" class="basic-table">
<tr><td colspan="4"><h3>${uiLabelMap.ProductReceiveReturn}</h3></td></tr>
<tr>
<td width="15%" align='right' class="label">${uiLabelMap.ProductReturnNumber}</td>
<td>&nbsp;</td>
<td width="90%">
<input type="text" name="returnId" size="20" maxlength="20" value="${requestParameters.returnId!}" />
</td>
<td>&nbsp;</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
<td colspan="2">
<a href="javascript:document.selectAllForm.submit();" class="buttontext">${uiLabelMap.ProductReceiveProduct}</a>
</td>
</tr>
</table>
</form>
</#if>
</div>
</div>
<script language="JavaScript" type="text/javascript">
function setInventoryItemStatus(selection,index) {
var statusId = "statusId_o_" + index;
jObjectStatusId = jQuery("#" + statusId);
jQuery.ajax({
url: 'UpdatedInventoryItemStatus',
data: {inventoryItemType: selection.value, inventoryItemStatus: jObjectStatusId.val()},
type: "POST",
success: function(data){jObjectStatusId.html(data);}
});
}
</script>