Skip to content

Commit 6e55d9a

Browse files
committed
Merge PR #50 into 18.0
Signed-off-by simahawk
2 parents ed2c358 + 933cea7 commit 6e55d9a

34 files changed

+7092
-0
lines changed

Diff for: agreement/README.rst

+124
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
=========
2+
Agreement
3+
=========
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:a5e80d1f0971cd20d3ee576f92a2af86742eadaa4eb3f7796912154f6027f802
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-OCA%2Fagreement-lightgray.png?logo=github
20+
:target: https://github.com/OCA/agreement/tree/18.0/agreement
21+
:alt: OCA/agreement
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/agreement-18-0/agreement-18-0-agreement
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/agreement&target_branch=18.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module adds an *Agreement* object with the following properties:
32+
33+
- code,
34+
- name,
35+
- link to a partner,
36+
- signature date.
37+
- start date.
38+
- end date.
39+
40+
Optionally, you can also enable using: \* agreement types \* a flag to
41+
set an agreement as a template agreement
42+
43+
(Install agreement_sale to get the configuration settings for these).
44+
45+
**Table of contents**
46+
47+
.. contents::
48+
:local:
49+
50+
Bug Tracker
51+
===========
52+
53+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/agreement/issues>`_.
54+
In case of trouble, please check there if your issue has already been reported.
55+
If you spotted it first, help us to smash it by providing a detailed and welcomed
56+
`feedback <https://github.com/OCA/agreement/issues/new?body=module:%20agreement%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
57+
58+
Do not contact contributors directly about support or help with technical issues.
59+
60+
Credits
61+
=======
62+
63+
Authors
64+
-------
65+
66+
* Akretion
67+
* Yves Goldberg (Ygol Internetwork)
68+
69+
Contributors
70+
------------
71+
72+
- Alexis de Lattre <[email protected]>
73+
74+
- Yves Goldberg <[email protected]>
75+
76+
- Alexandre Fayolle <[email protected]>
77+
78+
- `Tecnativa <https://www.tecnativa.com>`__:
79+
80+
- Sergio Teruel
81+
82+
- Tharathip Chaweewongphan <[email protected]>
83+
84+
- `Acsone <https://www.acsone.eu/>`__:
85+
86+
- Maxime Franco
87+
88+
- `Trobz <https://www.trobz.com/>`__:
89+
90+
- Nhan Tran <[email protected]>
91+
92+
Other credits
93+
-------------
94+
95+
The migration of this module from 17.0 to 18.0 was financially supported
96+
by Camptocamp.
97+
98+
Maintainers
99+
-----------
100+
101+
This module is maintained by the OCA.
102+
103+
.. image:: https://odoo-community.org/logo.png
104+
:alt: Odoo Community Association
105+
:target: https://odoo-community.org
106+
107+
OCA, or the Odoo Community Association, is a nonprofit organization whose
108+
mission is to support the collaborative development of Odoo features and
109+
promote its widespread use.
110+
111+
.. |maintainer-ygol| image:: https://github.com/ygol.png?size=40px
112+
:target: https://github.com/ygol
113+
:alt: ygol
114+
.. |maintainer-alexis-via| image:: https://github.com/alexis-via.png?size=40px
115+
:target: https://github.com/alexis-via
116+
:alt: alexis-via
117+
118+
Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:
119+
120+
|maintainer-ygol| |maintainer-alexis-via|
121+
122+
This module is part of the `OCA/agreement <https://github.com/OCA/agreement/tree/18.0/agreement>`_ project on GitHub.
123+
124+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

Diff for: agreement/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import models

Diff for: agreement/__manifest__.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# © 2017 Akretion (Alexis de Lattre <[email protected]>)
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
3+
4+
{
5+
"name": "Agreement",
6+
"summary": "Adds an agreement object",
7+
"version": "18.0.1.0.0",
8+
"category": "Contract",
9+
"author": "Akretion, "
10+
"Yves Goldberg (Ygol Internetwork), "
11+
"Odoo Community Association (OCA)",
12+
"website": "https://github.com/OCA/agreement",
13+
"license": "AGPL-3",
14+
"depends": ["mail"],
15+
"data": [
16+
"security/ir.model.access.csv",
17+
"security/agreement_security.xml",
18+
"views/agreement.xml",
19+
"views/agreement_type.xml",
20+
"views/agreement_menu.xml",
21+
],
22+
"demo": ["demo/demo.xml"],
23+
"development_status": "Beta",
24+
"maintainers": [
25+
"ygol",
26+
"alexis-via",
27+
],
28+
"installable": True,
29+
}

Diff for: agreement/demo/demo.xml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<!--
3+
© 2017 Akretion (Alexis de Lattre <[email protected]>)
4+
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
5+
-->
6+
<odoo noupdate="1">
7+
<record id="market1" model="agreement">
8+
<field name="code">C2C-IT0042</field>
9+
<field name="name">Hardware IT</field>
10+
<field name="partner_id" ref="base.res_partner_12" />
11+
<field name="signature_date">2017-09-10</field>
12+
<field name="start_date">2017-09-10</field>
13+
<field name="end_date">2018-09-10</field>
14+
</record>
15+
<record id="market2" model="agreement">
16+
<field name="code">C2C-IT0043</field>
17+
<field name="name">Fiber access office Lausanne</field>
18+
<field name="partner_id" ref="base.res_partner_12" />
19+
<field name="signature_date" eval="time.strftime('%Y-01-01')" />
20+
<field name="start_date" eval="time.strftime('%Y-01-01')" />
21+
<field name="end_date" eval="time.strftime('%Y-01-01')" />
22+
</record>
23+
<record id="market3" model="agreement">
24+
<field name="code">AGR-VETO001</field>
25+
<field name="name">Vétérinaire</field>
26+
<field name="partner_id" ref="base.res_partner_2" />
27+
<field name="signature_date">2017-08-01</field>
28+
<field name="start_date">2017-08-01</field>
29+
<field name="end_date">2018-08-01</field>
30+
</record>
31+
<record id="market4" model="agreement">
32+
<field name="code">AGR-TEL001</field>
33+
<field name="name">Wazo IPBX deployment and maintenance</field>
34+
<field name="partner_id" ref="base.res_partner_2" />
35+
<field name="signature_date">2017-05-05</field>
36+
<field name="start_date">2017-05-05</field>
37+
<field name="end_date">2018-09-10</field>
38+
</record>
39+
<record id="market5" model="agreement">
40+
<field name="code">BUY-VOIP012</field>
41+
<field name="name">SIP Phones supply</field>
42+
<field name="partner_id" ref="base.res_partner_1" />
43+
<field name="signature_date" eval="time.strftime('%Y-01-01')" />
44+
<field name="start_date" eval="time.strftime('%Y-01-01')" />
45+
<field name="end_date" eval="time.strftime('%Y-01-01')" />
46+
</record>
47+
<record id="market6" model="agreement">
48+
<field name="code">BUY-VOIP013</field>
49+
<field name="name">SIP-ISDN gateways</field>
50+
<field name="partner_id" ref="base.res_partner_3" />
51+
<field name="signature_date">2017-09-02</field>
52+
</record>
53+
</odoo>

0 commit comments

Comments
 (0)