Skip to content

Commit 3992c6f

Browse files
committed
[ADD] calendar view to timesheets
1 parent bdcb359 commit 3992c6f

File tree

11 files changed

+547
-0
lines changed

11 files changed

+547
-0
lines changed
+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
==================================
2+
Add calendar view to analytic line
3+
==================================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:f25c66e80fb18b0c643c798738635e2af6cf72e94dbd2613dffb54a7e5ccaa32
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-sergiocorato%2Fe--account-lightgray.png?logo=github
20+
:target: https://github.com/sergiocorato/e-account/tree/14.0/account_analytic_line_calendar
21+
:alt: sergiocorato/e-account
22+
23+
|badge1| |badge2| |badge3|
24+
25+
This module add a calendar view to timesheets.
26+
27+
**Table of contents**
28+
29+
.. contents::
30+
:local:
31+
32+
Bug Tracker
33+
===========
34+
35+
Bugs are tracked on `GitHub Issues <https://github.com/sergiocorato/e-account/issues>`_.
36+
In case of trouble, please check there if your issue has already been reported.
37+
If you spotted it first, help us to smash it by providing a detailed and welcomed
38+
`feedback <https://github.com/sergiocorato/e-account/issues/new?body=module:%20account_analytic_line_calendar%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
39+
40+
Do not contact contributors directly about support or help with technical issues.
41+
42+
Credits
43+
=======
44+
45+
Authors
46+
~~~~~~~
47+
48+
* Sergio Corato
49+
50+
Contributors
51+
~~~~~~~~~~~~
52+
53+
* Sergio Corato <https://github.com/sergiocorato>
54+
55+
Maintainers
56+
~~~~~~~~~~~
57+
58+
This module is part of the `sergiocorato/e-account <https://github.com/sergiocorato/e-account/tree/14.0/account_analytic_line_calendar>`_ project on GitHub.
59+
60+
You are welcome to contribute.

account_analytic_line_calendar/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright 2023 Sergio Corato <https://github.com/sergiocorato>
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
3+
{
4+
"name": "Add calendar view to analytic line",
5+
"version": "14.0.1.0.0",
6+
"category": "Localisation",
7+
"author": "Sergio Corato",
8+
"website": "https://github.com/sergiocorato/e-account",
9+
"license": "AGPL-3",
10+
"depends": [
11+
"hr_timesheet",
12+
"project_timesheet_time_control",
13+
],
14+
"data": [
15+
"views/hr_timesheet_view.xml",
16+
],
17+
"installable": True,
18+
}
+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+
# * account_invoice_tree_payment
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 14.0+e\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2023-09-14 09:00+0000\n"
10+
"PO-Revision-Date: 2023-09-14 09:00+0000\n"
11+
"Last-Translator: \n"
12+
"Language-Team: \n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: \n"
17+
18+
#. module: account_invoice_tree_payment
19+
#: model_terms:ir.ui.view,arch_db:account_invoice_tree_payment.invoice_tree_payment
20+
#: model_terms:ir.ui.view,arch_db:account_invoice_tree_payment.view_in_invoice_tree
21+
msgid "Payment Term"
22+
msgstr "Termine di pagamento"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* Sergio Corato <https://github.com/sergiocorato>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module add a calendar view to timesheets.
Loading

0 commit comments

Comments
 (0)