Skip to main content

Allow to configure a product in 1 click

Project description

Beta License: AGPL-3 OCA/product-attribute Translate me on Weblate Try me on Runbot

This module provides easier products configuration (in one click). It allows to configure a product template with only one field.

profile field on product

Main use case: a lot of modules are installed (mrp, purchase, sale, pos) and products configuration becomes harder for end users: too many fields to take care of.

You are concerned that at any time a product might be not configured correctly: this module is your friend.

Thanks to this module, a lot of complexity becomes hidden (default behavior) to the end user and usability is optimal.

It eases as well the data migration by only specifying the profile field instead of all fields which depend on it.

Note: This module is meant to be used by skilled people in database fields creation within the ERP framework.

Additional feature: a default value can be attached to a profile (see § Configuration, part 3)

Table of contents

Configuration

  1. Create your own profile here: Sales > Configuration > Product > Product Profiles

    profile list
  2. Extend “product.profile” model to add fields from product.template, either in normal mode or default mode (see note section below). These fields should be identical to their original fields (especially “required” field attribute).

    class ProductProfile(models.Model):
      """ Require dependency on sale, purchase and point_of_sale modules
      """
    
      _inherit = 'product.profile'
    
      def _get_types(self):
          return [('product', 'Stockable Product'),
                  ('consu', 'Consumable'),
                  ('service', 'Service')]
    
      sale_ok = fields.Boolean(
          string='Can be Sold',
          help="Specify if the product can be selected in a sales order line.")
      purchase_ok = fields.Boolean(
          string='Can be Purchased')
      available_in_pos = fields.Boolean()
  3. Insert data (xml or csv) and define values for each field defined above for each configuration scenario

Note : You might want to declare profile fields as defaults. To do this, just prefix the field with “profile_default”.

class ProductProfile(models.Model):
  profile_default_categ_id = fields.Many2one(
        'product.category',
        string='Default category')
   profile_default_route_ids = fields.Many2many(
       'stock.location.route',
       string=u'Default Routes',
       domain="[('product_selectable', '=', True)]",
       help="Depending on the modules installed, this will allow "
          "you to define the route of the product: "
          "whether it will be bought, manufactured, MTO/MTS,...")

Default fields only influence the records the first time they are set. - if the profile is modified, changes are not propagated to all the records that have this profile - if the record previously had another profile, changing profile will not influence default values

Usage

Assign a value to the profile field in the product template form. Then, all fields which depend on this profile will be set to the right value at once.

If you deselect the profile value, all these fields keep the same value and you can change them manually (back to standard behavior).

Install Product Profile Example module to see a use case in action.

Profiles are also defined as search filter and group.

Known issues / Roadmap

  • Streamlined behaviour of default/nondefault fields in every situation

  • More robust/less error-prone functionality for required fields or fields implicated in workflows

  • More flexible/configurable behaviour for profile fields (instead of only default/nondefault fields)

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

Credits

Authors

  • Akretion

Contributors

Maintainers

This module is maintained by the OCA.

Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

Current maintainers:

bealdav sebastienbeau kevinkhao

This module is part of the OCA/product-attribute project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page