forked from Mapan/odoo17e
19 lines
801 B
Python
19 lines
801 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': "Account Taxcloud - Sale (loyalty) - Delivery",
|
|
'summary': """Manage discounts in taxclouds computations with delivery.""",
|
|
'description': """
|
|
Manage discounts with deliveries in taxclouds computations.
|
|
This module follows the same logic as "Account Taxcloud - Sale (coupon)".
|
|
More information can be found there on how discount computations are made for TaxCloud.
|
|
|
|
There is an added option for discount (free shipping) on deliveries.
|
|
With Sale coupon delivery, the discount computation does not apply on delivery lines.
|
|
""",
|
|
'category': 'Accounting',
|
|
'depends': ['sale_loyalty_taxcloud', 'sale_loyalty_delivery'],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|