Skip to content

Commit a4ee9c7

Browse files
committed
[ADD] polln_shift: add specific polln shift
Module to handle specific workflow of polln
1 parent c2fc019 commit a4ee9c7

File tree

10 files changed

+590
-0
lines changed

10 files changed

+590
-0
lines changed

polln_shift/README.rst

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
====================
2+
Polln Shift Module
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-beescoop%2Fobeesdoo-lightgray.png?logo=github
17+
:target: https://github.com/beescoop/obeesdoo/tree/12.0/polln_shift
18+
:alt: beescoop/obeesdoo
19+
20+
|badge1| |badge2| |badge3|
21+
22+
Module with basic customizations for the Macavrac cooperative.
23+
24+
**Table of contents**
25+
26+
.. contents::
27+
:local:
28+
29+
Bug Tracker
30+
===========
31+
32+
Bugs are tracked on `GitHub Issues <https://github.com/beescoop/obeesdoo/issues>`_.
33+
In case of trouble, please check there if your issue has already been reported.
34+
If you spotted it first, help us smashing it by providing a detailed and welcomed
35+
`feedback <https://github.com/beescoop/obeesdoo/issues/new?body=module:%20macavrac_base%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
36+
37+
Do not contact contributors directly about support or help with technical issues.
38+
39+
Credits
40+
=======
41+
42+
Authors
43+
~~~~~~~
44+
45+
* Patricia Daloze
46+
* Thibault Francois
47+
48+
Maintainers
49+
~~~~~~~~~~~
50+
51+
This module is part of the `beescoop/obeesdoo <https://github.com/beescoop/obeesdoo/tree/12.0/polln_shift>`_ project on GitHub.
52+
53+
You are welcome to contribute.

polln_shift/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from . import models
2+
from . import controllers

polln_shift/__manifest__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
2+
{
3+
"name": "Polln Shift Module",
4+
"summary": """
5+
Module with basic customizations for the Polln cooperative.
6+
""",
7+
"author": "Patricia Daloze, Thibault Francois",
8+
"category": "Sales",
9+
"version": "12.0.1.0.0",
10+
"depends": ["beesdoo_shift", "beesdoo_website_shift", "contacts", "beesdoo_easy_my_coop"],
11+
"data": [
12+
# "data/mail_template.xml",
13+
"views/res_partner.xml",
14+
"views/shift.xml",
15+
],
16+
"installable": True,
17+
"license": "AGPL-3",
18+
}

polln_shift/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from . import res_partner
2+
from . import planning

0 commit comments

Comments
 (0)