Skip to content

Commit

Permalink
#179 Fixed error wrong edit and insert date
Browse files Browse the repository at this point in the history
  • Loading branch information
iratigarzon committed May 8, 2024
1 parent 4823361 commit e74cde1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ public String regItemProposedToRegItem(RegItemproposed regItemProposed) throws E
// update the existing RegItem
regItem.setLocalid(regItemProposed.getLocalid());
regItem.setRegItemclass(regItemProposed.getRegItemclass());
regItem.setInsertdate(new Date());
regItem.setEditdate(regItemProposed.getEditdate());
regItem.setInsertdate(regItemProposed.getInsertdate());
regItem.setEditdate(new Date());
regItem.setRegAction(regItemProposed.getRegAction());
regItem.setRegUser(regItemProposed.getRegUser());
regItem.setRorExport(regItemProposed.getRorExport());
Expand Down

0 comments on commit e74cde1

Please sign in to comment.