Skip to content

Commit

Permalink
Merge PR #789 into 11.0
Browse files Browse the repository at this point in the history
Signed-off-by jbeficent
  • Loading branch information
OCA-git-bot committed Jul 16, 2019
2 parents 55639a6 + 275379a commit b4d915a
Show file tree
Hide file tree
Showing 22 changed files with 1,123 additions and 3 deletions.
2 changes: 1 addition & 1 deletion account_asset_management/i18n/account_asset_management.pot
Expand Up @@ -570,7 +570,7 @@ msgstr ""
#: model:ir.model.fields,field_description:account_asset_management.field_account_asset_compute_id
#: model:ir.model.fields,field_description:account_asset_management.field_account_asset_id
#: model:ir.model.fields,field_description:account_asset_management.field_account_asset_line_id
#: model:ir.model.fields,field_description:account_asset_management.field_account_asset_profile_id_5517
#: model:ir.model.fields,field_description:account_asset_management.field_account_asset_profile_id_5567
#: model:ir.model.fields,field_description:account_asset_management.field_account_asset_recompute_trigger_id
#: model:ir.model.fields,field_description:account_asset_management.field_account_asset_remove_id
msgid "ID"
Expand Down
91 changes: 91 additions & 0 deletions account_move_budget/README.rst
@@ -0,0 +1,91 @@
===================
Account Move Budget
===================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! 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--financial--tools-lightgray.png?logo=github
:target: https://github.com/OCA/account-financial-tools/tree/11.0/account_move_budget
: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-11-0/account-financial-tools-11-0-account_move_budget
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/92/11.0
:alt: Try me on Runbot

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

This module allows to define accounting budgets.

These budgets can then be used in MIS Builder reports, as an alternate
source.

The difference between the MIS Builder Budget and this module is that
this module defines budgets irrespective of the MIS Builder Template. The
budget is thus agnostic of the reporting format.

For example, the budgeted data can be used in a general Profit & Loss report
and at the same time can be used in a department or project expenses report.

**Table of contents**

.. contents::
:local:

Usage
=====

In order to set up the budget items go to
*Invoicing / Adviser / Accounting Entries / Account Move Budgets*.

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 smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/account-financial-tools/issues/new?body=module:%20account_move_budget%0Aversion:%2011.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
~~~~~~~

* Eficent

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

* Eficent Business and IT Consulting Services, S.L. (https://www.eficent.com)
* Hector Villarreal <hector.villarreal@eficent.com>
* Jordi Ballester Alomar <jordi.ballester@eficent.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.

This module is part of the `OCA/account-financial-tools <https://github.com/OCA/account-financial-tools/tree/11.0/account_move_budget>`_ 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 account_move_budget/__init__.py
@@ -0,0 +1,3 @@

from . import models

24 changes: 24 additions & 0 deletions account_move_budget/__manifest__.py
@@ -0,0 +1,24 @@
# Copyright 2019 Eficent Business and IT Consulting Services, S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Account Move Budget",
"summary": "Create Accounting Budgets",
"version": "11.0.1.0.0",
"category": "Accounting & Finance",
"website": "https://github.com/OCA/account-financial-tools",
"author": "Eficent, "
"Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"account",
"date_range",
],
"data": [
"security/ir.model.access.csv",
"views/account_move_budget_line_views.xml",
"views/account_move_budget_views.xml",
],
}
227 changes: 227 additions & 0 deletions account_move_budget/i18n/account_move_budget.pot
@@ -0,0 +1,227 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_move_budget
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 11.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: account_move_budget
#: code:addons/account_move_budget/models/account_move_budget.py:64
#, python-format
msgid "%s (copy)"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_account_id
msgid "Account"
msgstr ""

#. module: account_move_budget
#: model:ir.model,name:account_move_budget.model_account_move_budget
msgid "Account Move Budget"
msgstr ""

#. module: account_move_budget
#: model:ir.model,name:account_move_budget.model_account_move_budget_line
msgid "Account Move Budget Line"
msgstr ""

#. module: account_move_budget
#: model:ir.actions.act_window,name:account_move_budget.account_move_budget_act_window
#: model:ir.ui.menu,name:account_move_budget.account_move_budget_menu
msgid "Account Move Budgets"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_analytic_account_id
msgid "Analytic Account"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_balance
msgid "Balance"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_budget_id
msgid "Budget"
msgstr ""

#. module: account_move_budget
#: model:ir.actions.act_window,name:account_move_budget.account_move_budget_line_act_window
msgid "Budget Items"
msgstr ""

#. module: account_move_budget
#: model:ir.ui.view,arch_db:account_move_budget.account_move_budget_form_view
msgid "Budget Lines"
msgstr ""

#. module: account_move_budget
#: model:ir.ui.view,arch_db:account_move_budget.account_move_budget_form_view
msgid "Cancel"
msgstr ""

#. module: account_move_budget
#: selection:account.move.budget,state:0
msgid "Cancelled"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_company_id
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_company_id
msgid "Company"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_company_currency_id
msgid "Company Currency"
msgstr ""

#. module: account_move_budget
#: model:ir.ui.view,arch_db:account_move_budget.account_move_budget_form_view
msgid "Confirm"
msgstr ""

#. module: account_move_budget
#: selection:account.move.budget,state:0
msgid "Confirmed"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_create_uid
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_create_uid
msgid "Created by"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_create_date
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_create_date
msgid "Created on"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_credit
msgid "Credit"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_date
msgid "Date"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_date_range_id
msgid "Date range"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_debit
msgid "Debit"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_description
msgid "Description"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_display_name
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_display_name
msgid "Display Name"
msgstr ""

#. module: account_move_budget
#: selection:account.move.budget,state:0
msgid "Draft"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_date_from
msgid "From"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_id
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_id
msgid "ID"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_name
msgid "Label"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget___last_update
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line___last_update
msgid "Last Modified on"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_write_uid
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_write_uid
msgid "Last Updated by"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_write_date
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_write_date
msgid "Last Updated on"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_ids
msgid "Line"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_name
#: model:ir.ui.view,arch_db:account_move_budget.account_move_budget_form_view
msgid "Name"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_line_partner_id
msgid "Partner"
msgstr ""

#. module: account_move_budget
#: model:ir.ui.view,arch_db:account_move_budget.account_move_budget_form_view
msgid "Set draft"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_state
msgid "State"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,help:account_move_budget.field_account_move_budget_line_balance
msgid "Technical field holding the debit - credit in order to open meaningful graph views from reports"
msgstr ""

#. module: account_move_budget
#: code:addons/account_move_budget/models/account_move_budget_line.py:86
#, python-format
msgid "The date must be within the budget period."
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,field_description:account_move_budget.field_account_move_budget_date_to
msgid "To"
msgstr ""

#. module: account_move_budget
#: model:ir.model.fields,help:account_move_budget.field_account_move_budget_line_company_currency_id
msgid "Utility field to express amount currency"
msgstr ""

3 changes: 3 additions & 0 deletions account_move_budget/models/__init__.py
@@ -0,0 +1,3 @@

from . import account_move_budget
from . import account_move_budget_line

0 comments on commit b4d915a

Please sign in to comment.