Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
2 Antwoorden
7860 Weergaven

I'm using OE7, and when I change a product name, it doesn't update the field 'name' at database in the table 'product_product'. The name of the product is translated, but I don't want this. How can I force updating name field instead to do a translation? Thanks in advice.

Avatar
Annuleer
Auteur Beste antwoord

This can be solved changing the translate property at \addons\products\products.py:

class product_template(osv.osv): _name = "product.template" _description = "Product Template"

_columns = {
    'name': fields.char('Name', size=128, required=True, **translate=False**, select=True)

I have multi_variants module installed, and this trick don't works if this module is installed.

Avatar
Annuleer
Auteur Beste antwoord

Solved changing translate=False at \addons\product\product.py Now changes are updated in product_template,name

#----------------------------------------------------------

Products

#---------------------------------------------------------- class product_template(osv.osv): _name = "product.template" _description = "Product Template"

_columns = {
    'name': fields.char('Name', size=128, required=True,  translate=False, select=True)
Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
1
okt. 23
1886
0
mrt. 15
4081
1
dec. 24
1383
3
dec. 23
20076
1
mrt. 15
5843