Skip to content

Commit 562c40c

Browse files
alexey-pelykhfshah-initos
authored andcommitted
[ADD] hr_timesheet_analysis: analyze tracked time in Pivot, Graph views
[UPD] Update hr_timesheet_analysis.pot [ADD] icon.png [UPD] README.rst
1 parent 7573e5e commit 562c40c

File tree

9 files changed

+611
-0
lines changed

9 files changed

+611
-0
lines changed

hr_timesheet_analysis/README.rst

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
==================
2+
Task Logs Analysis
3+
==================
4+
5+
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6+
!! This file is generated by oca-gen-addon-readme !!
7+
!! changes will be overwritten. !!
8+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9+
10+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
11+
:target: https://odoo-community.org/page/development-status
12+
:alt: Beta
13+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
14+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
15+
:alt: License: AGPL-3
16+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Ftimesheet-lightgray.png?logo=github
17+
:target: https://github.com/OCA/timesheet/tree/12.0/hr_timesheet_analysis
18+
:alt: OCA/timesheet
19+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20+
:target: https://translation.odoo-community.org/projects/timesheet-12-0/timesheet-12-0-hr_timesheet_analysis
21+
:alt: Translate me on Weblate
22+
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
23+
:target: https://runbot.odoo-community.org/runbot/117/12.0
24+
:alt: Try me on Runbot
25+
26+
|badge1| |badge2| |badge3| |badge4| |badge5|
27+
28+
This module allows analyzing tracked time in Pivot, Graph views.
29+
30+
**Table of contents**
31+
32+
.. contents::
33+
:local:
34+
35+
Bug Tracker
36+
===========
37+
38+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/timesheet/issues>`_.
39+
In case of trouble, please check there if your issue has already been reported.
40+
If you spotted it first, help us smashing it by providing a detailed and welcomed
41+
`feedback <https://github.com/OCA/timesheet/issues/new?body=module:%20hr_timesheet_analysis%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
42+
43+
Do not contact contributors directly about support or help with technical issues.
44+
45+
Credits
46+
=======
47+
48+
Authors
49+
~~~~~~~
50+
51+
* Brainbean Apps
52+
53+
Contributors
54+
~~~~~~~~~~~~
55+
56+
* Alexey Pelykh <[email protected]>
57+
58+
Maintainers
59+
~~~~~~~~~~~
60+
61+
This module is maintained by the OCA.
62+
63+
.. image:: https://odoo-community.org/logo.png
64+
:alt: Odoo Community Association
65+
:target: https://odoo-community.org
66+
67+
OCA, or the Odoo Community Association, is a nonprofit organization whose
68+
mission is to support the collaborative development of Odoo features and
69+
promote its widespread use.
70+
71+
This module is part of the `OCA/timesheet <https://github.com/OCA/timesheet/tree/12.0/hr_timesheet_analysis>`_ project on GitHub.
72+
73+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

hr_timesheet_analysis/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

hr_timesheet_analysis/__manifest__.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Copyright 2018 Brainbean Apps
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
3+
4+
{
5+
'name': 'Task Logs Analysis',
6+
'version': '12.0.1.0.0',
7+
'category': 'Human Resources',
8+
'website': 'https://github.com/OCA/hr-timesheet',
9+
'author':
10+
'Brainbean Apps, '
11+
'Odoo Community Association (OCA)',
12+
'license': 'AGPL-3',
13+
'installable': True,
14+
'application': False,
15+
'summary': 'Analyze tracked time in Pivot, Graph views',
16+
'depends': [
17+
'hr_timesheet',
18+
],
19+
'data': [
20+
'views/account_analytic_line.xml',
21+
],
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * hr_timesheet_analysis
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 12.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"Last-Translator: <>\n"
10+
"Language-Team: \n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: \n"
15+
16+
#. module: hr_timesheet_analysis
17+
#: model_terms:ir.ui.view,arch_db:hr_timesheet_analysis.hr_timesheet_line_graph
18+
#: model_terms:ir.ui.view,arch_db:hr_timesheet_analysis.hr_timesheet_line_pivot
19+
#: model_terms:ir.ui.view,arch_db:hr_timesheet_analysis.timesheet_view_graph_user
20+
msgid "Timesheet"
21+
msgstr ""
22+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* Alexey Pelykh <[email protected]>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module allows analyzing tracked time in Pivot, Graph views.
Loading

0 commit comments

Comments
 (0)