Base module to allow or not certain fields to be importable.
New boolean attribute "importable" can be defined when creating a new field. Default is set to True.
Eg:
product_name = fields.Char(importable=False) # import is not active for this field
In addition, the form view of fields (ir.model.fields) display now this new attribute in debug mode.