Changes between Version 4 and Version 5 of Ticket #38
- Timestamp:
- Feb 9, 2011, 5:50:03 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #38
-
Property
Summary
changed from
A way to assess and record condition/severity of an asset when doing a preventative maintenance task
toA way to assess and record the condition severity of an asset when performing a preventative maintenance task
-
Property
Summary
changed from
-
Ticket #38 – Description
v4 v5 1 When doing a preventative maintenance task that has a procedure, it would be nice to be able to record partial completion of the maintenance actions and/orthe assessed condition of the asset/assembly/component specified in each maintenance action.1 When performing a preventative maintenance task that has a procedure, it would be nice to be able to record the assessed condition of the asset/assembly/component specified in each maintenance action. 2 2 3 In the current configuration a task is the smallest unit that can hold this information. So a maintenance task and procedure are either completed on time or missed and therefore the KPI for all asset/assembly/component's listed in the procedure is either achieved or not. 3 In the current configuration a task is the smallest unit that can hold this information. 4 5 {{{ 6 class Condition { 7 String severity 8 String recommendation 9 } 10 }}} 11 12 Base data: 13 {{{ 14 Code Recommendation. 15 A - Repair Urgently 16 B - Repair Soon 17 C - Monitor 18 D - No Action 19 }}} 4 20 5 21 Possibly a 'recorded condition' domain class could be created and used: … … 8 24 MaintenanceAction maintenanceAction 9 25 Date dateRecorded 10 Condition condition (or) 11 Integer rating (1-10 or 1-100?) 12 } 13 class Condition { 14 String name (excellent, good, bad, very bad) 15 String comment 26 ConditionSeverity conditionSeverity 16 27 } 17 28 }}} 18 29 19 The other option: 20 {{{ 21 Severity. Recommendation. 22 A-Severe Repair Now 23 B-Medium Repair Soon 24 C-Low Monitor 25 D-Normal No Action 26 }}} 30 Recording the condition of each maintenanceAction in the database has been decided against, for now, in favour of recording the worst condition severity against the task. Printing the taskProcedure out and keeping the paper copy will suffice as report and audit trail. 31 32 'Work Performed', 'Part Changed' and 'Part Repaired' are separate conditions that will be indicated by an inventory item used on the task.