Skip to content

Commit

Permalink
Merge e13bea5 into 4621445
Browse files Browse the repository at this point in the history
  • Loading branch information
astirpe committed May 23, 2019
2 parents 4621445 + e13bea5 commit 32518a9
Show file tree
Hide file tree
Showing 96 changed files with 11,224 additions and 0 deletions.
76 changes: 76 additions & 0 deletions account_cost_center/README.rst
@@ -0,0 +1,76 @@
.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: https://www.gnu.org/licenses/agpl
:alt: License: AGPL-3

===========
Cost Center
===========

This module allows the user to link every invoice line to a cost center
providing an extra dimension for the analysis.


Usage
=====

This module is relevant when you are creating sales invoices and using analytic accounting.

Start using cost centers by defining the cost centers. Be aware that Analytic Accounting
must be activated on the user for the following menu option.
Use the menu in the accounting module:

**Configuration > Analytics accounting > Cost centers**

Once defined you can add a cost center to an invoice line. A default cost center for
the current invoice can be set in the other info tab.

This module adds the cost center concept to the reporting module.

**Accounting > Invoice Analysis**

Here you can select or unselect the cost center within your analysis.


.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/92/9.0


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 smash it by providing detailed and welcomed feedback.

Credits
=======

Images
------

* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.

Contributors
------------

* Kevin Graveman <k.graveman@onestein.nl>
* Richard Dijkstra <r.dijkstra@onestein.nl>
* Andrea Stirpe <a.stirpe@onestein.nl>
* Antonio Esposito <a.esposito@onestein.nl>

Maintainer
----------

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

This module is maintained by the OCA.

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.

To contribute to this module, please visit https://odoo-community.org.
4 changes: 4 additions & 0 deletions account_cost_center/__init__.py
@@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import models
27 changes: 27 additions & 0 deletions account_cost_center/__openerp__.py
@@ -0,0 +1,27 @@
# -*- coding: utf-8 -*-
# Copyright 2016-2018 Onestein (<http://www.onestein.eu>)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
'name': 'Costcenter',
'summary': 'Cost center information for invoice lines',
'author': 'Onestein, Odoo Community Association (OCA)',
'license': 'AGPL-3',
'website': 'https://github.com/OCA/account-financial-tools/',
'category': 'Accounting',
'version': '9.0.1.0.0',
'depends': [
'account',
'base_view_inheritance_extension'
],
'data': [
'security/ir.model.access.csv',
'security/account_cost_center_security.xml',
'views/account_cost_center.xml',
'views/account_move.xml',
'views/account_move_line.xml',
'views/account_invoice.xml',
'views/account_invoice_report.xml',
],
'installable': True,
}
140 changes: 140 additions & 0 deletions account_cost_center/i18n/account_cost_center.pot
@@ -0,0 +1,140 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_cost_center
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.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_cost_center
#: model:ir.actions.act_window,help:account_cost_center.account_cost_center_action
msgid "<p class=\"oe_view_nocontent_create\">\n"
" Click to add a new event.\n"
" </p>\n"
" <p>\n"
" Cost centers provide an extra analytic dimension\n"
" </p>\n"
" "
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_cost_center
msgid "Account Cost Center"
msgstr ""

#. module: account_cost_center
#: view:account.invoice.report:account_cost_center.view_account_invoice_report_search
#: field:account.invoice.report,account_analytic_id:0
msgid "Analytic Account"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,code:0
msgid "Code"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,company_id:0
msgid "Company"
msgstr ""

#. module: account_cost_center
#: field:account.invoice,cost_center_id:0
#: field:account.invoice.line,cost_center_id:0
#: view:account.invoice.report:account_cost_center.view_account_invoice_report_search
#: field:account.invoice.report,cost_center_id:0
#: field:account.move.line,cost_center_id:0
msgid "Cost Center"
msgstr ""

#. module: account_cost_center
#: view:account.cost.center:account_cost_center.account_cost_center_filter
#: view:account.cost.center:account_cost_center.account_cost_center_tree
#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action
#: model:ir.ui.menu,name:account_cost_center.cost_center_menu
msgid "Cost Centers"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,create_uid:0
msgid "Created by"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,create_date:0
msgid "Created on"
msgstr ""

#. module: account_cost_center
#: help:account.invoice,cost_center_id:0
msgid "Default Cost Center"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,display_name:0
msgid "Display Name"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,id:0
msgid "ID"
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_invoice
msgid "Invoice"
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_invoice_line
msgid "Invoice Line"
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_invoice_report
msgid "Invoices Statistics"
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_move_line
msgid "Journal Items"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,__last_update:0
msgid "Last Modified on"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,write_uid:0
msgid "Last Updated by"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,write_date:0
msgid "Last Updated on"
msgstr ""

#. module: account_cost_center
#: view:account.cost.center:account_cost_center.account_cost_center_filter
msgid "Name/Code"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,name:0
msgid "Title"
msgstr ""

#. module: account_cost_center
#: view:account.invoice:account_cost_center.invoice_form_inherit
#: view:account.invoice:account_cost_center.invoice_supplier_form_inherit
msgid "cost_center_id"
msgstr ""

145 changes: 145 additions & 0 deletions account_cost_center/i18n/am.po
@@ -0,0 +1,145 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_cost_center
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-12 03:43+0000\n"
"PO-Revision-Date: 2017-01-12 03:43+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
"Language: am\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: account_cost_center
#: model:ir.actions.act_window,help:account_cost_center.account_cost_center_action
msgid ""
"<p class=\"oe_view_nocontent_create\">\n"
" Click to add a new event.\n"
" </p>\n"
" <p>\n"
" Cost centers provide an extra analytic dimension\n"
" </p>\n"
" "
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_cost_center
msgid "Account Cost Center"
msgstr ""

#. module: account_cost_center
#: view:account.invoice.report:account_cost_center.view_account_invoice_report_search
#: field:account.invoice.report,account_analytic_id:0
msgid "Analytic Account"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,code:0
msgid "Code"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,company_id:0
msgid "Company"
msgstr ""

#. module: account_cost_center
#: field:account.invoice,cost_center_id:0
#: field:account.invoice.line,cost_center_id:0
#: view:account.invoice.report:account_cost_center.view_account_invoice_report_search
#: field:account.invoice.report,cost_center_id:0
#: field:account.move.line,cost_center_id:0
msgid "Cost Center"
msgstr ""

#. module: account_cost_center
#: view:account.cost.center:account_cost_center.account_cost_center_filter
#: view:account.cost.center:account_cost_center.account_cost_center_tree
#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action
#: model:ir.ui.menu,name:account_cost_center.cost_center_menu
msgid "Cost Centers"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,create_uid:0
msgid "Created by"
msgstr "Creado por"

#. module: account_cost_center
#: field:account.cost.center,create_date:0
msgid "Created on"
msgstr "Creado en"

#. module: account_cost_center
#: help:account.invoice,cost_center_id:0
msgid "Default Cost Center"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,display_name:0
msgid "Display Name"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,id:0
msgid "ID"
msgstr "ID"

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_invoice
msgid "Invoice"
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_invoice_line
msgid "Invoice Line"
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_invoice_report
msgid "Invoices Statistics"
msgstr ""

#. module: account_cost_center
#: model:ir.model,name:account_cost_center.model_account_move_line
msgid "Journal Items"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,__last_update:0
msgid "Last Modified on"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización por"

#. module: account_cost_center
#: field:account.cost.center,write_date:0
msgid "Last Updated on"
msgstr "Última actualización en"

#. module: account_cost_center
#: view:account.cost.center:account_cost_center.account_cost_center_filter
msgid "Name/Code"
msgstr ""

#. module: account_cost_center
#: field:account.cost.center,name:0
msgid "Title"
msgstr ""

#. module: account_cost_center
#: view:account.invoice:account_cost_center.invoice_form_inherit
#: view:account.invoice:account_cost_center.invoice_supplier_form_inherit
msgid "cost_center_id"
msgstr ""

0 comments on commit 32518a9

Please sign in to comment.