diff --git a/timesheet_invoice/__init__.py b/timesheet_invoice/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/timesheet_invoice/__manifest__.py b/timesheet_invoice/__manifest__.py new file mode 100644 index 00000000..3a95e9d9 --- /dev/null +++ b/timesheet_invoice/__manifest__.py @@ -0,0 +1,20 @@ +{ + 'name': 'Timesheet Invoice', + 'version': '18.0.1.0.0', + 'author': 'Hibou Corp. ', + 'website': 'https://hibou.io/', + 'license': 'AGPL-3', + 'category': 'Tools', + 'complexity': 'easy', + 'description': """ +Adds timesheet descriptions onto the invoice report/PDF. + """, + 'depends': [ + 'sale_timesheet', + ], + 'data': [ + 'views/invoice_views.xml', + ], + 'installable': True, + 'auto_install': False, +} diff --git a/timesheet_invoice/views/invoice_views.xml b/timesheet_invoice/views/invoice_views.xml new file mode 100644 index 00000000..baadc84a --- /dev/null +++ b/timesheet_invoice/views/invoice_views.xml @@ -0,0 +1,33 @@ + + + + \ No newline at end of file