From a5ff0328d7919989a9c3e5fd8f8194175c6d3e28 Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Wed, 23 May 2018 11:49:49 -0700 Subject: [PATCH] Initial commit of `timesheet_invoice` for 11.0 -- Include detailed timesheet entries on invoice PDF. --- timesheet_invoice/__init__.py | 0 timesheet_invoice/__manifest__.py | 20 +++++++++++++++++ timesheet_invoice/invoice_views.xml | 33 +++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 timesheet_invoice/__init__.py create mode 100644 timesheet_invoice/__manifest__.py create mode 100644 timesheet_invoice/invoice_views.xml 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..78374c94 --- /dev/null +++ b/timesheet_invoice/__manifest__.py @@ -0,0 +1,20 @@ +{ + 'name': 'Timesheet Invoice', + 'version': '11.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': [ + 'invoice_views.xml', + ], + 'installable': True, + 'auto_install': False, +} diff --git a/timesheet_invoice/invoice_views.xml b/timesheet_invoice/invoice_views.xml new file mode 100644 index 00000000..0f74f435 --- /dev/null +++ b/timesheet_invoice/invoice_views.xml @@ -0,0 +1,33 @@ + + + + \ No newline at end of file