📄 packingsessionline.java
字号:
/* * $Id$ * * Copyright (c) 2001-2005 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */package org.ofbiz.shipment.packing;import java.util.Map;import org.ofbiz.service.LocalDispatcher;import org.ofbiz.service.ServiceUtil;import org.ofbiz.entity.GenericValue;import org.ofbiz.base.util.GeneralException;import org.ofbiz.base.util.UtilFormatOut;import javolution.util.FastMap;/** * * @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> * @version $Rev: 5724 $ * @since Sep 1, 2005 */public class PackingSessionLine implements java.io.Serializable { public final String module = PackingSessionLine.class.getName(); protected String orderId = null; protected String orderItemSeqId = null; protected String shipGroupSeqId = null; protected String productId = null; protected String inventoryItemId = null; protected String shipmentItemSeqId = null; protected double quantity = 0; protected int packageSeq = 0; public PackingSessionLine(String orderId, String orderItemSeqId, String shipGroupSeqId, String productId, String inventoryItemId, double quantity, int packageSeq) { this.orderId = orderId; this.orderItemSeqId = orderItemSeqId; this.shipGroupSeqId = shipGroupSeqId; this.inventoryItemId = inventoryItemId; this.productId = productId; this.quantity = quantity; this.packageSeq = packageSeq; } public String getOrderId() { return this.orderId; } public String getOrderItemSeqId() { return this.orderItemSeqId; } public String getShipGroupSeqId() { return this.shipGroupSeqId; } public String getInventoryItemId() { return this.inventoryItemId; } public String getProductId() { return this.productId; } public String getShipmentItemSeqId() { return this.shipmentItemSeqId; } public void setShipmentItemSeqId(String shipmentItemSeqId) { this.shipmentItemSeqId = shipmentItemSeqId; } public double getQuantity() { return this.quantity; } public void setQuantity(double quantity) { this.quantity = quantity; } public void addQuantity(double quantity) { this.quantity += quantity; } public int getPackageSeq() { return this.packageSeq; } protected void issueItemToShipment(String shipmentId, GenericValue userLogin, LocalDispatcher dispatcher) throws GeneralException { Map issueMap = FastMap.newInstance(); issueMap.put("shipmentId", shipmentId); issueMap.put("orderId", this.getOrderId()); issueMap.put("orderItemSeqId", this.getOrderItemSeqId()); issueMap.put("shipGroupSeqId", this.getShipGroupSeqId()); issueMap.put("inventoryItemId", this.getInventoryItemId()); issueMap.put("quantity", new Double(this.getQuantity())); issueMap.put("userLogin", userLogin); Map issueResp = dispatcher.runSync("issueOrderItemShipGrpInvResToShipment", issueMap); if (ServiceUtil.isError(issueResp)) { throw new GeneralException(ServiceUtil.getErrorMessage(issueResp)); } String shipmentItemSeqId = (String) issueResp.get("shipmentItemSeqId"); if (shipmentItemSeqId == null) { throw new GeneralException("Issue item did not return a valid shipmentItemSeqId!"); } else { this.setShipmentItemSeqId(shipmentItemSeqId); } } protected void applyLineToPackage(String shipmentId, GenericValue userLogin, LocalDispatcher dispatcher) throws GeneralException { // assign item to package String shipmentPackageSeqId = UtilFormatOut.formatPaddedNumber(this.getPackageSeq(), 5); Map packageMap = FastMap.newInstance(); packageMap.put("shipmentId", shipmentId); packageMap.put("shipmentItemSeqId", this.getShipmentItemSeqId()); packageMap.put("quantity", new Double(this.getQuantity())); packageMap.put("shipmentPackageSeqId", shipmentPackageSeqId); packageMap.put("userLogin", userLogin); Map packageResp = dispatcher.runSync("addShipmentContentToPackage", packageMap); if (ServiceUtil.isError(packageResp)) { throw new GeneralException(ServiceUtil.getErrorMessage(packageResp)); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -