From 776b70bcce8a839bc7cf6fbe92bfb8f6e60d49c1 Mon Sep 17 00:00:00 2001 From: tocmo0nlord Date: Fri, 13 Mar 2026 22:31:56 +0000 Subject: [PATCH] Phase 1: Add __manifest__.py --- work_trace/__manifest__.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 work_trace/__manifest__.py diff --git a/work_trace/__manifest__.py b/work_trace/__manifest__.py new file mode 100644 index 00000000..5e04dfe9 --- /dev/null +++ b/work_trace/__manifest__.py @@ -0,0 +1,28 @@ +{ + 'name': 'WorkTrace', + 'version': '18.0.1.0.0', + 'category': 'Productivity', + 'summary': 'Daily work journal: location tracking, expenses, receipts, and timecards', + 'description': ''' + WorkTrace consolidates daily field work activities into a unified Odoo calendar. + Tracks location history, travel distances, credit card expenses, receipts, and timecards. + Designed for future integration with Autotask PSA. + ''', + 'author': 'tocmo0nlord', + 'license': 'LGPL-3', + 'depends': [ + 'base', + 'calendar', + 'hr_expense', + 'mail', + 'fetchmail', + ], + 'data': [ + 'security/ir.model.access.csv', + 'views/wt_location_log_views.xml', + 'views/wt_menu_views.xml', + ], + 'installable': True, + 'application': True, + 'auto_install': False, +}