-
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by sbejaoui
- Loading branch information
Showing
29 changed files
with
2,100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
============= | ||
Account Brand | ||
============= | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:6dbc0d8cfac63a97b25a76fe68e37d6fb3505a5d38929edbfbab7bd6bf6bf5ff | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |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%2Fbrand-lightgray.png?logo=github | ||
:target: https://github.com/OCA/brand/tree/17.0/account_brand | ||
:alt: OCA/brand | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/brand-17-0/brand-17-0-account_brand | ||
: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/brand&target_branch=17.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module allows you to send branded invoices to your customers. It | ||
adds a brand field on the invoice and the brand information to the PDF | ||
report. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Configuration | ||
============= | ||
|
||
To configure this module, please refer to the documentation of | ||
`brand <https://github.com/OCA/brand/blob/12.0/brand/README.rst>`__. It | ||
is important to note that if the brand type is not configured in the | ||
Users & Companies settings, the field will not be visible in the invoice | ||
view. | ||
|
||
Usage | ||
===== | ||
|
||
To use this module, you need to: | ||
|
||
1. Go to Accounting > Customers > Invoices | ||
2. Select or create an invoice | ||
3. Enter the information and select the brand | ||
4. Print the PDF report. It includes the information of the brand. | ||
|
||
To do point 4, the Brand External Report Layout OCA module must be | ||
installed. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/brand/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/brand/issues/new?body=module:%20account_brand%0Aversion:%2017.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 | ||
* ACSONE SA/NV | ||
|
||
Contributors | ||
------------ | ||
|
||
- Raphael Lee <[email protected]> | ||
- Steve Campbell <[email protected]> | ||
- Maxime Chambreuil <[email protected]> | ||
- `Obertix <https://www.obertix.net>`__: | ||
|
||
- Vicent Cubells | ||
|
||
- Ammar Officewala <[email protected]> | ||
|
||
Other credits | ||
------------- | ||
|
||
- 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-osi-scampbell| image:: https://github.com/osi-scampbell.png?size=40px | ||
:target: https://github.com/osi-scampbell | ||
:alt: osi-scampbell | ||
.. |maintainer-sbejaoui| image:: https://github.com/sbejaoui.png?size=40px | ||
:target: https://github.com/sbejaoui | ||
:alt: sbejaoui | ||
|
||
Current `maintainers <https://odoo-community.org/page/maintainer-role>`__: | ||
|
||
|maintainer-osi-scampbell| |maintainer-sbejaoui| | ||
|
||
This module is part of the `OCA/brand <https://github.com/OCA/brand/tree/17.0/account_brand>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Copyright (C) 2019 Open Source Integrators | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from . import models | ||
from . import wizards |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright (C) 2019 Open Source Integrators | ||
# Copyright 2019 ACSONE SA/NV | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Account Brand", | ||
"summary": "Send branded invoices and refunds", | ||
"version": "17.0.1.0.0", | ||
"category": "Accounting Management", | ||
"website": "https://github.com/OCA/brand", | ||
"author": "Open Source Integrators," | ||
"ACSONE SA/NV," | ||
"Odoo Community Association (OCA)", | ||
"license": "AGPL-3", | ||
"depends": ["account", "brand"], | ||
"data": [ | ||
"views/account_move_views.xml", | ||
"views/res_partner_account_brand.xml", | ||
"security/res_partner_account_brand.xml", | ||
], | ||
"installable": True, | ||
"development_status": "Beta", | ||
"maintainers": ["osi-scampbell", "sbejaoui"], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * account_brand | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.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_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__account_id | ||
msgid "Account" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model,name:account_brand.model_account_move_reversal | ||
msgid "Account Move Reversal" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_account_bank_statement_line__brand_id | ||
#: model:ir.model.fields,field_description:account_brand.field_account_move__brand_id | ||
#: model:ir.model.fields,field_description:account_brand.field_account_payment__brand_id | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__brand_id | ||
msgid "Brand" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_account_move__brand_use_level | ||
msgid "Brand Use Level" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,help:account_brand.field_account_bank_statement_line__brand_id | ||
#: model:ir.model.fields,help:account_brand.field_account_move__brand_id | ||
#: model:ir.model.fields,help:account_brand.field_account_payment__brand_id | ||
msgid "Brand to use for this sale" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_account_move__company_id | ||
msgid "Company" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__create_uid | ||
msgid "Created by" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__create_date | ||
msgid "Created on" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model,name:account_brand.model_account_move | ||
msgid "Journal Entry" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__write_uid | ||
msgid "Last Updated by" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__write_date | ||
msgid "Last Updated on" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__partner_id | ||
msgid "Partner" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.actions.act_window,name:account_brand.res_partner_account_brand_act_window | ||
#: model:ir.ui.menu,name:account_brand.res_partner_account_brand_menu | ||
msgid "Partner Accounts by Brand" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#. odoo-python | ||
#: code:addons/account_brand/models/res_partner_account_brand.py:0 | ||
#: model:ir.model.constraint,message:account_brand.constraint_res_partner_account_brand_unique_account_by_partner | ||
#, python-format | ||
msgid "Partner has already an account set for this brand!" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields.selection,name:account_brand.selection__res_partner_account_brand__account_type__liability_payable | ||
msgid "Payable" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#. odoo-python | ||
#: code:addons/account_brand/models/res_partner_account_brand.py:0 | ||
#, python-format | ||
msgid "Please select an account of type %s" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields.selection,name:account_brand.selection__res_partner_account_brand__account_type__asset_receivable | ||
msgid "Receivable" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model,name:account_brand.model_res_partner_account_brand | ||
msgid "Receivable/Payable Partner Account By Brand" | ||
msgstr "" | ||
|
||
#. module: account_brand | ||
#: model:ir.model.fields,field_description:account_brand.field_res_partner_account_brand__account_type | ||
msgid "Type" | ||
msgstr "" |
Oops, something went wrong.