forked from Mapan/odoo17e
20 lines
699 B
Python
20 lines
699 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Avatax for Inventory',
|
|
'version': '1.0',
|
|
'description':"""
|
|
Inventory management for Avatax
|
|
=======================================
|
|
This module allows for line-level addresses when getting taxes from avatax.
|
|
|
|
A current limitation is a single order line with more than one stock move (i.e. 10 units of
|
|
product A, 2 shipped from warehouse #1 and 8 from warehouse #2). In this case the sale orders should be
|
|
split per delivery.
|
|
""",
|
|
'category': 'Accounting/Accounting',
|
|
'depends': ['account_avatax_sale', 'stock'],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|