I need to change the name of the "Product name" field to "Description" of the products template in odoo v13. I don't want to do that name change from the odoo interface, but from a custom addon. And if it is possible to change the characteristics of the existing field from the custom addon.
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
            
                1
                
                    Balas
                
            
        
        
            
                4875
                
                    Tampilan
                
            
        
    You can change the string attribute using a custom module you may use the below code for reference:
<xpath expr="//field[@name='reference_filed']" position="attributes">
<attribute name="string">Your String Here</attribute>
</xpath>
. You may override the field as below:
class YourModel(models.Model):
_inherit = 'your.model'
reference_filed = fields.FieldType(string="Your String Here")
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
Daftar| Post Terkait | Replies | Tampilan | Aktivitas | |
|---|---|---|---|---|
| 
            
                Multiple Product Edit in Inventory
            
            
                    Diselesaikan
            
         |  | 1 Mei 24  | 1515 | |
|  | 1 Jun 21  | 3267 | ||
| 
            
                Odoov13 How to set vendor for a product using ORM
            
            
                    Diselesaikan
            
         |  | 1 Apr 21  | 2438 | |
|  | 0 Des 19  | 5801 | ||
|  | 1 Nov 19  | 4458 | 
