diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/l10n_it_stock_ddt/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/l10n_it_stock_ddt/__manifest__.py')
| -rw-r--r-- | addons/l10n_it_stock_ddt/__manifest__.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/addons/l10n_it_stock_ddt/__manifest__.py b/addons/l10n_it_stock_ddt/__manifest__.py new file mode 100644 index 00000000..e60decd0 --- /dev/null +++ b/addons/l10n_it_stock_ddt/__manifest__.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +{ + 'name': "l10n_it_stock_ddt", + 'website': 'https://www.odoo.com', + 'category': 'Accounting/Localizations/EDI', + 'version': '0.1', + 'description': """ +Documento di Trasporto (DDT) + +Whenever goods are transferred between A and B, the DDT serves +as a legitimation e.g. when the police would stop you. + +When you want to print an outgoing picking in an Italian company, +it will print you the DDT instead. It is like the delivery +slip, but it also contains the value of the product, +the transportation reason, the carrier, ... which make it a DDT. + +We also use a separate sequence for the DDT as the number should not +have any gaps and should only be applied at the moment the goods are sent. + +When invoices are related to their sale order and the sale order with the +delivery, the system will automatically calculate the linked DDTs for every +invoice line to export in the FatturaPA XML. + """, + 'depends': ['l10n_it_edi', 'delivery'], + 'data': [ + 'report/l10n_it_ddt_report.xml', + 'views/stock_picking_views.xml', + 'views/account_invoice_views.xml', + 'data/l10n_it_ddt_template.xml', + ], + 'auto_install': True, + 'post_init_hook': '_create_picking_seq', + 'license': 'LGPL-3', +} |
