-
-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] account_partner_reconcile: black, isort
- Loading branch information
1 parent
52fefa9
commit ebee511
Showing
9 changed files
with
43 additions
and
57 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
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
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
The button is visible only to users that belong to the accounting groups | ||
"Accountant" or "Adviser". | ||
"Accountant" or "Adviser". |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#. Enable 'Show Full Accounting Features' | ||
#. Create a new Customer Invoice and Payment | ||
#. Go to the Customer/Supplier view form and click on Match payments | ||
#. Go to the Customer/Supplier view form and click on Match payments |
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
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 |
---|---|---|
@@ -1,2 +1 @@ | ||
from . import models | ||
from . import report | ||
from . import models, report |
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 |
---|---|---|
@@ -1,17 +1,12 @@ | ||
import setuptools | ||
|
||
with open('VERSION.txt', 'r') as f: | ||
with open("VERSION.txt", "r") as f: | ||
version = f.read().strip() | ||
|
||
setuptools.setup( | ||
name="odoo13-addons-oca-account-reconcile", | ||
description="Meta package for oca-account-reconcile Odoo addons", | ||
version=version, | ||
install_requires=[ | ||
'odoo13-addon-account_reconcile_restrict_partner_mismatch', | ||
], | ||
classifiers=[ | ||
'Programming Language :: Python', | ||
'Framework :: Odoo', | ||
] | ||
install_requires=["odoo13-addon-account_reconcile_restrict_partner_mismatch"], | ||
classifiers=["Programming Language :: Python", "Framework :: Odoo"], | ||
) |
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) | ||
setuptools.setup(setup_requires=["setuptools-odoo"], odoo_addon=True) |