__manifest__.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "l10n_it_stock_ddt",
  4. 'icon': '/l10n_it/static/description/icon.png',
  5. 'website': 'https://www.odoo.com',
  6. 'category': 'Accounting/Localizations/EDI',
  7. 'version': '0.1',
  8. 'description': """
  9. Documento di Trasporto (DDT)
  10. Whenever goods are transferred between A and B, the DDT serves
  11. as a legitimation e.g. when the police would stop you.
  12. When you want to print an outgoing picking in an Italian company,
  13. it will print you the DDT instead. It is like the delivery
  14. slip, but it also contains the value of the product,
  15. the transportation reason, the carrier, ... which make it a DDT.
  16. We also use a separate sequence for the DDT as the number should not
  17. have any gaps and should only be applied at the moment the goods are sent.
  18. When invoices are related to their sale order and the sale order with the
  19. delivery, the system will automatically calculate the linked DDTs for every
  20. invoice line to export in the FatturaPA XML.
  21. """,
  22. 'depends': ['l10n_it_edi', 'delivery', 'stock_account'],
  23. 'data': [
  24. 'report/l10n_it_ddt_report.xml',
  25. 'views/stock_picking_views.xml',
  26. 'views/account_invoice_views.xml',
  27. 'data/l10n_it_ddt_template.xml',
  28. ],
  29. 'auto_install': True,
  30. 'post_init_hook': '_create_picking_seq',
  31. 'license': 'LGPL-3',
  32. }