feat: add housekeeping module for household staff management

* Adding flexible reminder options to birthdays

* Fix database migration merge conflict

* Truncate calendar popup descriptions

* Log app version on backend startup

* Add host-mounted data and backup folders

* feat: add housekeeping module

* fix: align housekeeping UI and add task creation

* refactor: rebuild housekeeping experience

* feat: support multiple housekeeping staff

* feat: integrate housekeeping visits with calendar

* feat: refine housekeeping visits and payments

* feat: add housekeeping staff visit logs

* feat: add housekeeping receipts and document folders

* feat: localize housekeeping folders and chores

* feat: refine housekeeping tabs and document folders

* fix: sync housekeeping tab active state

* feat: use configured app name in onboarding and manifest
This commit is contained in:
Rafael Foster
2026-05-08 15:14:51 -03:00
committed by GitHub
parent d19689a1ab
commit 22ec13e559
38 changed files with 7127 additions and 235 deletions
+28 -1
View File
@@ -201,7 +201,7 @@ export async function render(container, { user }) {
let users = [];
let googleStatus = { configured: false, connected: false, lastSync: null };
let appleStatus = { configured: false, lastSync: null };
let prefs = { visible_meal_types: ['breakfast', 'lunch', 'dinner', 'snack'], currency: 'EUR', date_format: 'mdy', time_format: '24h', app_name: DEFAULT_APP_NAME, disabled_modules: [] };
let prefs = { visible_meal_types: ['breakfast', 'lunch', 'dinner', 'snack'], currency: 'EUR', date_format: 'mdy', time_format: '24h', app_name: DEFAULT_APP_NAME, disabled_modules: [], housekeeping_payment_tasks: false };
let categories = [];
let icsSubscriptions = [];
let apiTokens = [];
@@ -376,6 +376,20 @@ export async function render(container, { user }) {
</div>
</section>
` : ''}
${user?.role === 'admin' ? `
<section class="settings-section">
<h2 class="settings-section__title">${t('settings.sectionHousekeeping')}</h2>
<div class="settings-card">
<h3 class="settings-card__title">${t('settings.housekeepingPaymentsTitle')}</h3>
<p class="form-hint" style="margin-bottom:var(--space-3)">${t('settings.housekeepingPaymentTasksHint')}</p>
<label class="toggle-row">
<input type="checkbox" id="housekeeping-payment-tasks" ${prefs.housekeeping_payment_tasks ? 'checked' : ''}>
<span>${t('settings.housekeepingPaymentTasksLabel')}</span>
</label>
</div>
</section>
` : ''}
</div>
<!-- Panel: Mahlzeiten -->
@@ -1284,6 +1298,19 @@ function bindEvents(container, user, users, categories, icsSubscriptions, apiTok
});
}
const housekeepingPaymentTasks = container.querySelector('#housekeeping-payment-tasks');
if (housekeepingPaymentTasks) {
housekeepingPaymentTasks.addEventListener('change', async () => {
try {
await api.put('/preferences', { housekeeping_payment_tasks: housekeepingPaymentTasks.checked });
window.oikos?.showToast(t('settings.housekeepingPaymentTasksSaved'), 'success');
} catch (err) {
window.oikos?.showToast(err.message ?? t('common.errorGeneric'), 'danger');
housekeepingPaymentTasks.checked = !housekeepingPaymentTasks.checked;
}
});
}
const appNameForm = container.querySelector('#app-name-form');
if (appNameForm) {
appNameForm.addEventListener('submit', async (e) => {