Skip to content

Commit

Permalink
Merge pull request #433 from ec-jrc/179-modification-date-attribute
Browse files Browse the repository at this point in the history
#179 Fixed error wrong edit and insert date
  • Loading branch information
iratigarzon authored Jun 11, 2024
2 parents 9393975 + e74cde1 commit 04d3985
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 04d3985

Please sign in to comment.