Skip to content

Commit

Permalink
[IMP] base_global_discount: pre-commit auto fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel-S73 committed Mar 15, 2024
1 parent 0404e3a commit 89d4685
Show file tree
Hide file tree
Showing 12 changed files with 57 additions and 52 deletions.
56 changes: 29 additions & 27 deletions base_global_discount/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ Base Global Discount
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--backend-lightgray.png?logo=github
:target: https://github.com/OCA/server-backend/tree/16.0/base_global_discount
:target: https://github.com/OCA/server-backend/tree/17.0/base_global_discount
:alt: OCA/server-backend
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/server-backend-16-0/server-backend-16-0-base_global_discount
:target: https://translation.odoo-community.org/projects/server-backend-17-0/server-backend-17-0-base_global_discount
: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/server-backend&target_branch=16.0
:target: https://runboat.odoo-community.org/builds?repo=OCA/server-backend&target_branch=17.0
:alt: Try me on Runboat

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

Base module to have global discounts applied to either sales or purchases. It
doesn't do much for itself, so account_global_discount or
Base module to have global discounts applied to either sales or
purchases. It doesn't do much for itself, so account_global_discount or
purchase_global_discount should be installed to benefit from it.

**Table of contents**
Expand All @@ -42,54 +42,56 @@ Configuration

To use this module, you need to:

#. Go to *Settings > Users*, choose yours and set *Manage Global Discounts*.
#. Go to *Settings > Parameters > Global Discounts*
#. Choose the discount scope (sales or purchases).
#. You can also restrict it to a certain company if needed.
1. Go to *Settings > Users*, choose yours and set *Manage Global
Discounts*.
2. Go to *Settings > Parameters > Global Discounts*
3. Choose the discount scope (sales or purchases).
4. You can also restrict it to a certain company if needed.

Usage
=====

You can assign global discounts to partners as well. You'll need the proper
permission (*Manage Global Discounts*):
You can assign global discounts to partners as well. You'll need the
proper permission (*Manage Global Discounts*):

#. Go to a partner that is a company.
#. Go to the *Sales & Purchases* tab.
#. In section sale, you can set sale discounts.
#. In section purchase, you can set purchase discounts.
1. Go to a partner that is a company.
2. Go to the *Sales & Purchases* tab.
3. In section sale, you can set sale discounts.
4. In section purchase, you can set purchase discounts.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-backend/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/server-backend/issues/new?body=module:%20base_global_discount%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
`feedback <https://github.com/OCA/server-backend/issues/new?body=module:%20base_global_discount%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
~~~~~~~
-------

* Tecnativa

Contributors
~~~~~~~~~~~~
------------

* `Tecnativa <https://www.tecnativa.com>`_
- `Tecnativa <https://www.tecnativa.com>`__

* Pedro M. Baeza
* David Vidal
* Carlos Dauden
* Rafael Blasco
* Ernesto Tejeda
* Omar Castiñeira <[email protected]>
- Pedro M. Baeza
- David Vidal
- Carlos Dauden
- Rafael Blasco
- Ernesto Tejeda

- Omar Castiñeira <[email protected]>

Maintainers
~~~~~~~~~~~
-----------

This module is maintained by the OCA.

Expand All @@ -101,6 +103,6 @@ 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/server-backend <https://github.com/OCA/server-backend/tree/16.0/base_global_discount>`_ project on GitHub.
This module is part of the `OCA/server-backend <https://github.com/OCA/server-backend/tree/17.0/base_global_discount>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 1 addition & 1 deletion base_global_discount/models/global_discount.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class GlobalDiscount(models.Model):
def name_get(self):
result = []
for one in self:
result.append((one.id, "{} ({:.2f}%)".format(one.name, one.discount)))
result.append((one.id, f"{one.name} ({one.discount:.2f}%)"))
return result

def _get_global_discount_vals(self, base, **kwargs):
Expand Down
3 changes: 3 additions & 0 deletions base_global_discount/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
7 changes: 7 additions & 0 deletions base_global_discount/readme/CONFIGURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
To use this module, you need to:

1. Go to *Settings \> Users*, choose yours and set *Manage Global
Discounts*.
2. Go to *Settings \> Parameters \> Global Discounts*
3. Choose the discount scope (sales or purchases).
4. You can also restrict it to a certain company if needed.
6 changes: 0 additions & 6 deletions base_global_discount/readme/CONFIGURE.rst

This file was deleted.

7 changes: 7 additions & 0 deletions base_global_discount/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- [Tecnativa](https://www.tecnativa.com)
- Pedro M. Baeza
- David Vidal
- Carlos Dauden
- Rafael Blasco
- Ernesto Tejeda
- Omar Castiñeira \<<[email protected]>\>
8 changes: 0 additions & 8 deletions base_global_discount/readme/CONTRIBUTORS.rst

This file was deleted.

3 changes: 3 additions & 0 deletions base_global_discount/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Base module to have global discounts applied to either sales or
purchases. It doesn't do much for itself, so account_global_discount or
purchase_global_discount should be installed to benefit from it.
3 changes: 0 additions & 3 deletions base_global_discount/readme/DESCRIPTION.rst

This file was deleted.

7 changes: 7 additions & 0 deletions base_global_discount/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
You can assign global discounts to partners as well. You'll need the
proper permission (*Manage Global Discounts*):

1. Go to a partner that is a company.
2. Go to the *Sales & Purchases* tab.
3. In section sale, you can set sale discounts.
4. In section purchase, you can set purchase discounts.
7 changes: 0 additions & 7 deletions base_global_discount/readme/USAGE.rst

This file was deleted.

Binary file added pandoc-3.1.12.2-1-amd64.deb
Binary file not shown.

0 comments on commit 89d4685

Please sign in to comment.