Replies: 2 comments 4 replies
|
Isn't it already be possible with the tasks module?
I do exactly what you describe in my household :-) Is there something you are still missing? |
|
Most of what you describe already exists and already works without a cleaning helper - it is just not where you would look for it. The Housekeeping module contains a feature called decay tasks: CREATE TABLE housekeeping_decay_tasks (
name TEXT NOT NULL,
area TEXT NOT NULL,
frequency_days INTEGER NOT NULL,
last_completed TEXT,
...
);A task, the room it belongs to, how often it needs doing, and when it was last done - which is exactly "urgent" and "by room". The list is sorted by area, and none of it is tied to a worker: So the real problem your report describes is a naming one, and it is a genuine one. The module is called Housekeeping and is presented as the place where you manage a cleaning helper - check-ins, supply requests, maintenance log. Anybody without a helper reasonably concludes the whole module is not for them, and never finds the cleaning plan inside it. You are the second person to arrive at this from a different direction; #787 proposes widening the module beyond "the helper", and your report is the strongest argument for it that I have seen. Two things from your list that are genuinely missing rather than hidden: rooms are a free-text Could you try the decay tasks as they are and say where they fall short? That would separate "needs a new module" from "needs to be findable", and right now I suspect it is mostly the latter. |
Uh oh!
There was an error while loading. Please reload this page.
📋 Requirement: Cleaning Plan Feature (for households without a cleaning helper)
Context / Motivation
Users without a cleaning helper need a simple way to organize cleaning tasks and keep track of what's urgent or pending.
Goal
A cleaning plan module that organizes tasks by urgency and by room.
User Stories
Functional Requirements
Acceptance Criteria
Optional Enhancements (Nice-to-have)
All reactions