Skip to content

Commit

Permalink
MODINV-1009 Save lastCheckIn on mark item
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytrokrutii authored Apr 17, 2024
2 parents 4be8d3e + b3e5a84 commit 8da0d8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/folio/inventory/domain/items/Item.java
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,8 @@ public Item changeStatus(ItemStatusName newStatus) {
.withPurchaseOrderLineIdentifier(purchaseOrderLineIdentifier)
.withIsBoundWith(this.isBoundWith)
.withTags(tags)
.withCirculationNotes(circulationNotes);
.withCirculationNotes(circulationNotes)
.withLastCheckIn(this.lastCheckIn);
}

@Override
Expand Down

0 comments on commit 8da0d8d

Please sign in to comment.