Skip to content

Commit

Permalink
MODINV-1009 Save lastCheckIn on mark item
Browse files Browse the repository at this point in the history
(cherry picked from commit 87796e9)
  • Loading branch information
dmytrokrutii authored and KaterynaSenchenko committed Apr 22, 2024
1 parent 8fb299a commit cdec7ba
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 cdec7ba

Please sign in to comment.