Skip to content

Commit

Permalink
[BE] FIX: itemHistory에서 아이템 가격 amount에서 받아오기
Browse files Browse the repository at this point in the history
  • Loading branch information
chyo1 committed Oct 25, 2024
1 parent 5aabdaa commit 43ba574
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ public interface ItemMapper {
ItemMapper INSTANCE = Mappers.getMapper(ItemMapper.class);

@Mapping(target = "date", source = "itemHistory.purchaseAt")
@Mapping(target = "amount", source = "item.price")
@Mapping(target = "history", source = "item.type.name")
@Mapping(target = "itemDetails", source = "item.sku.details")
@Mapping(target = "amount", source = "itemHistory.amount")
Expand Down

0 comments on commit 43ba574

Please sign in to comment.