__manifest__.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Sales and Warehouse Management',
  5. 'version': '1.0',
  6. 'category': 'Hidden',
  7. 'summary': 'Quotation, Sales Orders, Delivery & Invoicing Control',
  8. 'description': """
  9. Manage sales quotations and orders
  10. ==================================
  11. This module makes the link between the sales and warehouses management applications.
  12. Preferences
  13. -----------
  14. * Shipping: Choice of delivery at once or partial delivery
  15. * Invoicing: choose how invoices will be paid
  16. * Incoterms: International Commercial terms
  17. """,
  18. 'depends': ['sale', 'stock_account'],
  19. 'data': [
  20. 'security/sale_stock_security.xml',
  21. 'security/ir.model.access.csv',
  22. 'views/sale_order_views.xml',
  23. 'views/stock_route_views.xml',
  24. 'views/res_config_settings_views.xml',
  25. 'views/sale_stock_portal_template.xml',
  26. 'views/stock_lot_views.xml',
  27. 'views/res_users_views.xml',
  28. 'report/report_stock_forecasted.xml',
  29. 'report/sale_order_report_templates.xml',
  30. 'report/stock_report_deliveryslip.xml',
  31. 'data/mail_templates.xml',
  32. 'data/sale_stock_data.xml',
  33. 'wizard/stock_rules_report_views.xml',
  34. 'wizard/sale_order_cancel_views.xml',
  35. ],
  36. 'demo': ['data/sale_order_demo.xml'],
  37. 'installable': True,
  38. 'auto_install': True,
  39. 'assets': {
  40. 'web.assets_backend': [
  41. 'sale_stock/static/src/**/*',
  42. ('remove', 'sale_stock/static/src/legacy/**/*'),
  43. ],
  44. "web.assets_backend_legacy_lazy": [
  45. 'sale_stock/static/src/legacy/**/*',
  46. ]
  47. },
  48. 'license': 'LGPL-3',
  49. }