Add module sale_agent

This commit is contained in:
Alexis de Lattre
2024-11-07 17:18:57 +01:00
parent f93f17b27b
commit e22badc605
13 changed files with 330 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Copyright 2024 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Sale Agent',
'version': '16.0.1.0.0',
'category': 'Sales',
'license': 'AGPL-3',
'summary': 'Add agent on partner, sale order and customer invoice/refund',
'author': 'Akretion',
'website': 'https://github.com/akretion/odoo-usability',
'depends': ['sale'],
'data': [
"views/res_partner.xml",
"views/sale_order.xml",
"views/sale_report.xml",
"views/account_move.xml",
"views/account_invoice_report.xml",
],
'installable': True,
}