|
6 registered users in last 24 hours ]po[ HourA "timesheet" hour represents the work done by an employee at a certain project. Actually, Timesheet Hours is not a real ]project-open[ "Object" because it does not reference the acs_objects table and doesn't support services such as permissions.
ToDo: Insert screenshot from /packages/intranet-timesheets/hours/new
Fields of the im_hours Table:
Data-Model
Structure of the im_hours database table:
create table im_hours (
user_id integer
constraint im_hours_user_id_nn
not null
constraint im_hours_user_id_fk
references users,
project_id integer
constraint im_hours_project_id_nn
not null
constraint im_hours_project_id_fk
references im_projects,
day timestamptz,
hours numeric(5,2) not null,
cost_id integer
constraint im_hours_cost_fk
references im_costs,
invoice_id integer
constraint im_hours_invoice_fk
references im_costs,
material_id integer
constraint im_hours_material_fk
references im_materials,
-- ArsDigita/ACS billing system - log prices with hours
billing_rate numeric(7,2),
billing_currency char(3)
constraint im_hours_billing_currency_fk
references currency_codes(iso),
note text,
internal_note text
);
|
