mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
When the user looks for open payables or receivables, in the
context of payment orders, she should ocus on the amount that is due to be paid. In this method we are forcing to display both the amount due in company and in the invoice currency. We then hide the fields debit and credit, because they add no value.
This commit is contained in:
committed by
Enric Tobella
parent
4102166a47
commit
ee3c27b747
1
setup/account_payment_order/odoo/__init__.py
Normal file
1
setup/account_payment_order/odoo/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
__import__('pkg_resources').declare_namespace(__name__)
|
||||
1
setup/account_payment_order/odoo/addons/__init__.py
Normal file
1
setup/account_payment_order/odoo/addons/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
__import__('pkg_resources').declare_namespace(__name__)
|
||||
1
setup/account_payment_order/odoo/addons/account_payment_order
Symbolic link
1
setup/account_payment_order/odoo/addons/account_payment_order
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../../account_payment_order
|
||||
2
setup/account_payment_order/setup.cfg
Normal file
2
setup/account_payment_order/setup.cfg
Normal file
@@ -0,0 +1,2 @@
|
||||
[bdist_wheel]
|
||||
universal=1
|
||||
6
setup/account_payment_order/setup.py
Normal file
6
setup/account_payment_order/setup.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['setuptools-odoo'],
|
||||
odoo_addon=True,
|
||||
)
|
||||
Reference in New Issue
Block a user