Skip to content

Commit

Permalink
Merge PR #125 into 13.0
Browse files Browse the repository at this point in the history
Signed-off-by max3903
  • Loading branch information
OCA-git-bot committed Dec 26, 2019
2 parents c1454d4 + a8ed15e commit 39831a3
Show file tree
Hide file tree
Showing 21 changed files with 1,030 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ line_length=88
known_odoo=odoo
known_odoo_addons=odoo.addons
sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER
known_third_party=
known_third_party=dateutil
119 changes: 119 additions & 0 deletions partner_time_to_pay/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
===================
Partner Time to Pay
===================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--invoice--reporting-lightgray.png?logo=github
:target: https://github.com/OCA/account-invoice-reporting/tree/13.0/partner_time_to_pay
:alt: OCA/account-invoice-reporting
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-invoice-reporting-13-0/account-invoice-reporting-13-0-partner_time_to_pay
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/94/13.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This module displays statistics related to the receivables and payables behavior of a partner on the Accounting tab of the partner form view.

**Table of contents**

.. contents::
:local:

Installation
============

Your preferred way to install addons will work with Partner Time to Pay.

An easy way to install it with all its dependencies is using pip:

* ``pip install --pre odoo11-addon-partner_time_to_pay odoo-autodiscover``
* then restart Odoo, update the addons list in your database, and install
the Partner Time to Pay application.


Usage
=====

* Go to the Accounting tab of a partner
* There is 4 new fields. These fields represent the average days to pay for
this year (YTD) and since the first invoice (lifetime).

Known issues / Roadmap
======================

The partner_time_to_pay `roadmap <https://github.com/OCA/account-invoice-reporting/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement>`_
and `known issues <https://github.com/OCA/account-invoice-reporting/issues?q=is%3Aopen+is%3Aissue+label%3Abug>`_ can
be found on GitHub.


Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-invoice-reporting/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/account-invoice-reporting/issues/new?body=module:%20partner_time_to_pay%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Open Source Integrators

Contributors
~~~~~~~~~~~~

* Ray Carnes <rcarnes@ursainfosystems.com>
* Maxime Chambreuil <mchambreuil@opensourceintegrators.com>
* Bhavesh Odedra <bodedra@opensourceintegrators.com>
* Sandip Mangukiya <smangukiya@opensourceintegrators.com>
* Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>

Other credits
~~~~~~~~~~~~~

The development of this module has been financially supported by:

* Open Source Integrators <https://www.opensourceintegrators.com>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

.. |maintainer-max3903| image:: https://github.com/max3903.png?size=40px
:target: https://github.com/max3903
:alt: max3903

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-max3903|

This module is part of the `OCA/account-invoice-reporting <https://github.com/OCA/account-invoice-reporting/tree/13.0/partner_time_to_pay>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions partner_time_to_pay/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import models
17 changes: 17 additions & 0 deletions partner_time_to_pay/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright (C) 2019 Open Source Integrators
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Partner Time to Pay",
"summary": "Add receivables and payables statistics to partners",
"version": "13.0.1.0.0",
"license": "AGPL-3",
"development_status": "Beta",
"author": "Open Source Integrators, Odoo Community Association (OCA)",
"category": "Accounting & Finance",
"website": "https://github.com/OCA/account-invoice-reporting",
"maintainers": ["max3903"],
"depends": ["account"],
"data": ["views/res_partner.xml"],
"installable": True,
}
59 changes: 59 additions & 0 deletions partner_time_to_pay/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * partner_time_to_pay
#
# Translators:
# Quentin THEURET <odoo@kerpeo.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-06-30 23:33+0000\n"
"PO-Revision-Date: 2017-06-30 23:33+0000\n"
"Last-Translator: Quentin THEURET <odoo@kerpeo.com>, 2017\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2p_ytd
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2p_ytd
#, fuzzy
#| msgid "AVG Days to Pay (YTD)"
msgid "AVG Days to Payable (YTD)"
msgstr "Moy. Jours pour payer (YTD)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2p_life
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2p_life
#, fuzzy
#| msgid "AVG Days to Pay (lifetime)"
msgid "AVG Days to Payable (lifetime)"
msgstr "Moy. Jours pour payer (durée)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2r_ytd
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2r_ytd
#, fuzzy
#| msgid "AVG Days to Pay (YTD)"
msgid "AVG Days to Receivable (YTD)"
msgstr "Moy. Jours pour payer (YTD)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2r_life
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2r_life
#, fuzzy
#| msgid "AVG Days to Pay (lifetime)"
msgid "AVG Days to Receivable (lifetime)"
msgstr "Moy. Jours pour payer (durée)"

#. module: partner_time_to_pay
#: model:ir.model,name:partner_time_to_pay.model_res_partner
msgid "Contact"
msgstr ""

#~ msgid "Partner"
#~ msgstr "Partenaire"
60 changes: 60 additions & 0 deletions partner_time_to_pay/i18n/nl_NL.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * partner_time_to_pay
#
# Translators:
# Peter Hageman <hageman.p@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-06-28 00:42+0000\n"
"PO-Revision-Date: 2017-06-28 00:42+0000\n"
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n"
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
"teams/23907/nl_NL/)\n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2p_ytd
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2p_ytd
#, fuzzy
#| msgid "AVG Days to Pay (YTD)"
msgid "AVG Days to Payable (YTD)"
msgstr "Gem. Dagen tot Betalen (dit jaar)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2p_life
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2p_life
#, fuzzy
#| msgid "AVG Days to Pay (lifetime)"
msgid "AVG Days to Payable (lifetime)"
msgstr "Gem. Dagen tot Betalen (alle)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2r_ytd
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2r_ytd
#, fuzzy
#| msgid "AVG Days to Pay (YTD)"
msgid "AVG Days to Receivable (YTD)"
msgstr "Gem. Dagen tot Betalen (dit jaar)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2r_life
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2r_life
#, fuzzy
#| msgid "AVG Days to Pay (lifetime)"
msgid "AVG Days to Receivable (lifetime)"
msgstr "Gem. Dagen tot Betalen (alle)"

#. module: partner_time_to_pay
#: model:ir.model,name:partner_time_to_pay.model_res_partner
msgid "Contact"
msgstr ""

#~ msgid "Partner"
#~ msgstr "Relatie"
44 changes: 44 additions & 0 deletions partner_time_to_pay/i18n/partner_time_to_pay.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * partner_time_to_pay
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2p_ytd
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2p_ytd
msgid "AVG Days to Payable (YTD)"
msgstr ""

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2p_life
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2p_life
msgid "AVG Days to Payable (lifetime)"
msgstr ""

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2r_ytd
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2r_ytd
msgid "AVG Days to Receivable (YTD)"
msgstr ""

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2r_life
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2r_life
msgid "AVG Days to Receivable (lifetime)"
msgstr ""

#. module: partner_time_to_pay
#: model:ir.model,name:partner_time_to_pay.model_res_partner
msgid "Contact"
msgstr ""

46 changes: 46 additions & 0 deletions partner_time_to_pay/i18n/pt.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * partner_time_to_pay
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2019-08-18 01:44+0000\n"
"Last-Translator: Pedro Castro Silva <pedrocs@exo.pt>\n"
"Language-Team: none\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.7.1\n"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2p_ytd
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2p_ytd
msgid "AVG Days to Payable (YTD)"
msgstr "MED Dias até Pagável (YTD)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2p_life
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2p_life
msgid "AVG Days to Payable (lifetime)"
msgstr "MED Dias até Pagável (sempre)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2r_ytd
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2r_ytd
msgid "AVG Days to Receivable (YTD)"
msgstr "MED Dias até Recebível (YTD)"

#. module: partner_time_to_pay
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_partner__d2r_life
#: model:ir.model.fields,field_description:partner_time_to_pay.field_res_users__d2r_life
msgid "AVG Days to Receivable (lifetime)"
msgstr "MED Dias até Recebível (sempre)"

#. module: partner_time_to_pay
#: model:ir.model,name:partner_time_to_pay.model_res_partner
msgid "Contact"
msgstr "Contacto"
3 changes: 3 additions & 0 deletions partner_time_to_pay/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from . import res_partner

0 comments on commit 39831a3

Please sign in to comment.