mirror of
https://gitlab.com/flectra-hq/flectra.git
synced 2026-08-19 01:34:43 -05:00
New implementation of sale_discount with full support of tax reduction respecting also different taxes used on sales positions
26 lines
600 B
Python
26 lines
600 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Invoice Document Discount",
|
|
'summary': """
|
|
Use Document Discounts on Invoices
|
|
""",
|
|
'description': """
|
|
Use Document Discounts on Invoices
|
|
""",
|
|
'author': "Jamotion GmbH, Flectra HQ",
|
|
'website': "https://flectra-hq.com",
|
|
'category': 'Accounting',
|
|
'version': '0.1',
|
|
'depends': [
|
|
'account',
|
|
],
|
|
'data': [
|
|
'views/res_config_settings_views.xml',
|
|
'views/account_move_views.xml',
|
|
'reports/invoice_report_views.xml',
|
|
],
|
|
'demo': [
|
|
# 'demo/demo.xml',
|
|
],
|
|
}
|