use of org.openlmis.stockmanagement.domain.physicalinventory.PhysicalInventoryLineItemAdjustment in project openlmis-stockmanagement by OpenLMIS.
the class StockEventAdjustmentDto method toPhysicalInventoryLineItemAdjustment.
PhysicalInventoryLineItemAdjustment toPhysicalInventoryLineItemAdjustment() {
StockCardLineItemReason reason = new StockCardLineItemReason();
reason.setId(reasonId);
return new PhysicalInventoryLineItemAdjustment(reason, quantity);
}
Aggregations