Class LotContainer


  • public class LotContainer
    extends HibernateObject
    This class defines a sub-division of a StockLocation The best example of this would be if inventory is received as LOT 123 but it is received in 5 different bottles, all with different weights, we would use LotContainers to track these stock sub-divisions This differs from Container in that containers may have multiple different lots contained within them, whereas LotContainers pertain to only one lot
    Author:
    SGSystems
    • Field Detail

      • num

        public int num
        A numeric sequence of the LotContainer for a given stock lot
      • stock

        public StockLocation stock
        The stock that this LotContainer pertains to
      • quantity

        public double quantity
        The quantity in this LotContainer
      • weightReceived

        public double weightReceived
        The weight received for this LotContainer
      • tareWeight

        public double tareWeight
        The tare weight of the LotContainer
      • convertedQty

        public double convertedQty
        The unit converted quantity from the PO line rather than the stocking item
      • selected

        public boolean selected
      • batch

        public Batch batch
    • Constructor Detail

      • LotContainer

        public LotContainer()
    • Method Detail

      • getNum

        public int getNum()
      • getQuantity

        public double getQuantity()
      • setNum

        public void setNum​(int num)
      • setQuantity

        public void setQuantity​(double quantity)
      • getWeightReceived

        public double getWeightReceived()
      • setWeightReceived

        public void setWeightReceived​(double weightReceived)
      • getTareWeight

        public double getTareWeight()
      • setTareWeight

        public void setTareWeight​(double tareWeight)
      • getConvertedQty

        public double getConvertedQty()
      • setConvertedQty

        public void setConvertedQty​(double convertedQty)
      • isSelected

        public boolean isSelected()
      • setSelected

        public void setSelected​(boolean selected)
      • getBatch

        public Batch getBatch()
      • setBatch

        public void setBatch​(Batch batch)