掲示板

Audit Trail: Update user infor, it alway stored as the birthday field

11年前 に Sue Duong によって更新されました。

Audit Trail: Update user infor, it alway stored as the birthday field

New Member 投稿: 11 参加年月日: 11/01/31 最新の投稿
Hi All,

When I updated the user's address, phone, etc... the Audit hook stored the birthday value was updated (We installed audit-hook-6.0.11.1 and audit-portlet-6.0.11.1 in our customized SP1)

Additional Information {"attributes":[{"newValue":"Thu Jan 01 00:00:00 EST 1970","name":"birthday","oldValue":"1970-01-01 00:00:00.0"}]}

Here are the steps to reproduce:
- Login as system admin --> go the control panel --> users
- Edit any user with either phone, address, etc..
- Then go to the Audit Report to view the update that you just did, it will show the birthday was updated as above sample.

Does anyone seen this behave? Thank you!
thumbnail
11年前 に David H Nebinger によって更新されました。

RE: Audit Trail: Update user infor, it alway stored as the birthday field

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
Is there a question here I didn't get?

The audit hook, which has the model listener for the user update, uses a generic process to build the parameterized JSON that you're looking at. It is very simple in that it just calls the toString() method on the objects.

What you're seeing here is the different output of toString() on two different objects, both of which happen to extend java.util.Date, but have different implementations.

Since you get the code w/ the hook, you can go in there and change how it's building the JSON to use a date formatter, for example, if you want to maintain some consistency.
11年前 に Sue Duong によって更新されました。

RE: Audit Trail: Update user infor, it alway stored as the birthday field

New Member 投稿: 11 参加年月日: 11/01/31 最新の投稿
Thank you for the information, I will try to update the date format to see if it works.

My question was, when I updated the address information, the audit log didn't capture the old address and new address, why it capture the old birthday and new birthday.
thumbnail
11年前 に David H Nebinger によって更新されました。

RE: Audit Trail: Update user infor, it alway stored as the birthday field

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
The audit hook is meant to be a template for what you would do to audit any Liferay data.

It shows you how to add model listeners for capturing and forwarding audit record information.

The basic hook has a model listener for address update, but doesn't apparently have one for the create or remove.