Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

16.0 mig account loan #1

Open
wants to merge 6 commits into
base: 16.0-mig-account_loan
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 22 additions & 6 deletions account_loan/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Account Loan management
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:ede8542c931551ec36dabc09621d29b3bcb54586fcad8fd3c4509b95ce8198bf
!! source digest: sha256:c9f87eb07ebda20ab00e0446ae5e5908b6a64086fd868f2bfc58e4e9f7dc68b0
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand All @@ -17,13 +17,13 @@ Account Loan management
: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--financial--tools-lightgray.png?logo=github
:target: https://github.com/OCA/account-financial-tools/tree/14.0/account_loan
:target: https://github.com/OCA/account-financial-tools/tree/16.0/account_loan
:alt: OCA/account-financial-tools
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-financial-tools-14-0/account-financial-tools-14-0-account_loan
:target: https://translation.odoo-community.org/projects/account-financial-tools-16-0/account-financial-tools-16-0-account_loan
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-financial-tools&target_branch=14.0
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-financial-tools&target_branch=16.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|
Expand Down Expand Up @@ -68,13 +68,21 @@ On a posted loan you can:
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/92/12.0

Changelog
=========

16.0.1.0.0
~~~~~~~~~~

Due to the changes on 16, we will generate two moves on leasings, one for the invoice, and another one for the change from long to short term.

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

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

Expand Down Expand Up @@ -106,6 +114,14 @@ 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.

This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/14.0/account_loan>`_ project on GitHub.
.. |maintainer-etobella| image:: https://github.com/etobella.png?size=40px
:target: https://github.com/etobella
:alt: etobella

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

|maintainer-etobella|

This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/16.0/account_loan>`_ project on GitHub.

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

from . import model
from . import wizard
from . import models
from . import wizards
11 changes: 7 additions & 4 deletions account_loan/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,26 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Account Loan management",
"version": "14.0.1.0.6",
"version": "16.0.1.0.0",
"author": "Creu Blanca,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-financial-tools",
"license": "AGPL-3",
"category": "Accounting",
"depends": ["account"],
"data": [
"wizards/account_loan_increase_amount.xml",
"data/ir_sequence_data.xml",
"security/ir.model.access.csv",
"security/account_loan_security.xml",
"wizard/account_loan_generate_entries_view.xml",
"wizard/account_loan_pay_amount_view.xml",
"wizard/account_loan_post_view.xml",
"wizards/account_loan_generate_entries_view.xml",
"wizards/account_loan_pay_amount_view.xml",
"wizards/account_loan_post_view.xml",
"views/account_loan_view.xml",
"views/account_move_view.xml",
"views/res_partner.xml",
],
"installable": True,
"maintainers": ["etobella"],
"external_dependencies": {
"python": ["numpy>=1.15", "numpy-financial<=1.0.0"],
"deb": ["libatlas-base-dev"],
Expand Down
43 changes: 24 additions & 19 deletions account_loan/i18n/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -526,17 +526,17 @@ msgstr "Langfrist-Konto"
#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__message_main_attachment_id
msgid "Main Attachment"
msgstr ""
msgstr "Hauptanhang"

#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__message_has_error
msgid "Message Delivery error"
msgstr ""
msgstr "Fehler bei der Nachrichtenzustellung"

#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__message_ids
msgid "Messages"
msgstr ""
msgstr "Nachrichten"

#. module: account_loan
#: model:ir.model.fields,help:account_loan.field_account_loan__rate_type
Expand Down Expand Up @@ -569,17 +569,17 @@ msgstr "Bezeichnung"
#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__activity_date_deadline
msgid "Next Activity Deadline"
msgstr ""
msgstr "Nächste Aktivitätsfrist"

#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__activity_summary
msgid "Next Activity Summary"
msgstr ""
msgstr "Nächste Aktivitätszusammenfassung"

#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__activity_type_id
msgid "Next Activity Type"
msgstr ""
msgstr "Nächster Aktivitätstyp"

#. module: account_loan
#: selection:account.loan,rate_type:0
Expand All @@ -589,22 +589,22 @@ msgstr "Nominaler Jahreszins"
#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__message_needaction_counter
msgid "Number of Actions"
msgstr ""
msgstr "Anzahl der Aktionen"

#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__message_has_error_counter
msgid "Number of error"
msgstr ""
msgstr "Fehlernummer"

#. module: account_loan
#: model:ir.model.fields,help:account_loan.field_account_loan__message_needaction_counter
msgid "Number of messages which requires an action"
msgstr ""
msgstr "Anzahl der Nachrichten, die eine Aktion erfordern"

#. module: account_loan
#: model:ir.model.fields,help:account_loan.field_account_loan__message_has_error_counter
msgid "Number of messages with delivery error"
msgstr ""
msgstr "Anzahl der Nachrichten mit Zustellungsfehlern"

#. module: account_loan
#: model:ir.model.fields,help:account_loan.field_account_loan__periods
Expand All @@ -614,7 +614,7 @@ msgstr "Anzahl Perioden über die Dauer der Beleihung"
#. module: account_loan
#: model:ir.model.fields,help:account_loan.field_account_loan__message_unread_counter
msgid "Number of unread messages"
msgstr ""
msgstr "Anzahl ungelesener Nachrichten"

#. module: account_loan
#: selection:account.loan,loan_type:0
Expand All @@ -630,7 +630,7 @@ msgstr "Nur Darlehen im Entwurf können gebucht werden"
#. module: account_loan
#: selection:account.loan,activity_state:0
msgid "Overdue"
msgstr ""
msgstr "Überfällig"

#. module: account_loan
#: model:ir.actions.act_window,name:account_loan.account_loan_pay_amount_action
Expand Down Expand Up @@ -688,7 +688,7 @@ msgstr "Perioden"
#. module: account_loan
#: selection:account.loan,activity_state:0
msgid "Planned"
msgstr ""
msgstr "Geplant"

#. module: account_loan
#: model_terms:ir.ui.view,arch_db:account_loan.account_loan_form
Expand Down Expand Up @@ -777,7 +777,7 @@ msgstr ""
#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__activity_user_id
msgid "Responsible User"
msgstr ""
msgstr "Verantwortlicher Benutzer"

#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__round_on_end
Expand Down Expand Up @@ -872,11 +872,16 @@ msgid ""
"Today: Activity date is today\n"
"Planned: Future activities."
msgstr ""
"Status basierend auf Aktivitäten\n"
"Überfällig: Fälligkeitsdatum ist bereits überschritten\n"
"Heute: Aktivitätsdatum ist heute\n"
"Geplant: Zukünftige Aktivitäten."


#. module: account_loan
#: selection:account.loan,activity_state:0
msgid "Today"
msgstr ""
msgstr "Heute"

#. module: account_loan
#: model:ir.model.fields,help:account_loan.field_account_loan_line__payment_amount
Expand Down Expand Up @@ -906,12 +911,12 @@ msgstr "Summe Zahlungen"
#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__message_unread
msgid "Unread Messages"
msgstr ""
msgstr "Ungelesene Nachrichten"

#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__message_unread_counter
msgid "Unread Messages Counter"
msgstr ""
msgstr "Zähler für ungelesene Nachrichten"

#. module: account_loan
#: model_terms:ir.ui.view,arch_db:account_loan.account_loan_line_tree
Expand All @@ -921,12 +926,12 @@ msgstr "Werte"
#. module: account_loan
#: model:ir.model.fields,field_description:account_loan.field_account_loan__website_message_ids
msgid "Website Messages"
msgstr ""
msgstr "Website-Nachrichten"

#. module: account_loan
#: model:ir.model.fields,help:account_loan.field_account_loan__website_message_ids
msgid "Website communication history"
msgstr ""
msgstr "Kommunikationsverlauf der Website"

#. module: account_loan
#: model:ir.model.fields,help:account_loan.field_account_loan__round_on_end
Expand Down
Loading