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.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
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.
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)
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
1
Okt 23
|
1882 | ||
|
0
Mar 15
|
4080 | ||
Why does not the name fields update in databse?
Diselesaikan
|
|
1
Des 24
|
1380 | |
How to set quantity of all products to 0 quickly
Diselesaikan
|
|
3
Des 23
|
20070 | |
|
1
Mar 15
|
5835 |