17.05.2011, 03:32 | #1 |
Участник
|
вычислить итоговый рейтинг !! - calculate overall rating !!
Привет всем,
Это мой первый пост здесь, я хочу, если кто-то может мне помочь. Я работаю на Техобслуживание проект системы. Я создал сотрудник рейтинг для каждой задачи обслуживания сделано, что работник в таблице задач обслуживания. Также я добавил общего поля рейтинг в таблице сотрудников, как сделать так, чтобы это поле вычислить итоговый рейтинг для каждого сотрудника каждый день в соответствии с его рейтинг в таблице задач обслуживания. ***************************************************************** Hi all, This is my first post here, I wish if someone can help me. I am working on a Vehicle Maintenance System Project. I have created an employee rating for each maintenance task done by that employee at the maintenance task table. Also I have added an overall rating field to the employee table, How can I make this field calculate the overall rating for each employee every day according to his ratings at the maintenance task table. |
|
17.05.2011, 09:51 | #2 |
северный Будда
|
Rating is summary or average?
__________________
С уважением, Вячеслав |
|
17.05.2011, 13:41 | #3 |
Участник
|
I would suggest to simply use a display method.
This way, the employee rating will be available not only after recalculating, but at any point in time during the day. |
|
17.05.2011, 13:51 | #4 |
Участник
|
@pitersky: The Rating is summary
@kashperuk: I have used display methods before but I want a field to store this data (shown at display method) to reuse it again at other tables. Can I perform - for example - this equation on fields: Field Z = Field X + Field Y |
|
17.05.2011, 14:32 | #5 |
MCTS
|
You can update summary when you modify records in the maintenance task table (add code to update and insert methods).
And / or you can create periodic operation for updating summary and schedule it to run at the batch server. It is better to use separate table for storing summary values. Because, if you store in Employee table and user will modify it and in the same time be event for modifying summry values it will be a conflict - user will not be able to save data.
__________________
I could tell you, but then I would have to bill you. Последний раз редактировалось twilight; 17.05.2011 в 14:36. |
|
18.05.2011, 03:54 | #6 |
Участник
|
Thanks all for your support
|
|