__manifest__.py 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Products & Pricelists',
  5. 'version': '1.2',
  6. 'category': 'Sales/Sales',
  7. 'depends': ['base', 'mail', 'uom'],
  8. 'description': """
  9. This is the base module for managing products and pricelists in Odoo.
  10. ========================================================================
  11. Products support variants, different pricing methods, vendors information,
  12. make to stock/order, different units of measure, packaging and properties.
  13. Pricelists support:
  14. -------------------
  15. * Multiple-level of discount (by product, category, quantities)
  16. * Compute price based on different criteria:
  17. * Other pricelist
  18. * Cost price
  19. * List price
  20. * Vendor price
  21. Pricelists preferences by product and/or partners.
  22. Print product labels with barcode.
  23. """,
  24. 'data': [
  25. 'data/product_data.xml',
  26. 'security/product_security.xml',
  27. 'security/ir.model.access.csv',
  28. 'wizard/product_label_layout_views.xml',
  29. 'views/product_views.xml',
  30. 'views/res_config_settings_views.xml',
  31. 'views/product_attribute_views.xml',
  32. 'views/product_category_views.xml',
  33. 'views/product_packaging_views.xml',
  34. 'views/product_pricelist_item_views.xml',
  35. 'views/product_pricelist_views.xml',
  36. 'views/product_supplierinfo_views.xml',
  37. 'views/product_template_views.xml',
  38. 'views/product_tag_views.xml',
  39. 'views/res_country_group_views.xml',
  40. 'views/res_partner_views.xml',
  41. 'report/product_reports.xml',
  42. 'report/product_product_templates.xml',
  43. 'report/product_template_templates.xml',
  44. 'report/product_packaging.xml',
  45. 'report/product_pricelist_report_templates.xml',
  46. ],
  47. 'demo': [
  48. 'data/product_demo.xml',
  49. ],
  50. 'installable': True,
  51. 'assets': {
  52. 'web.assets_backend': [
  53. 'product/static/src/js/**/*',
  54. 'product/static/src/xml/**/*',
  55. ],
  56. 'web.report_assets_common': [
  57. 'product/static/src/scss/report_label_sheet.scss',
  58. ],
  59. 'web.qunit_suite_tests': [
  60. 'product/static/tests/**/*',
  61. ],
  62. },
  63. 'license': 'LGPL-3',
  64. }