Kindly somebody tell me the proper syntax for declaring class name in module?
_name=?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
1
الرد
5738
أدوات العرض
Hello,
Odoo Python Class : use camelcase for code in api v8, underscore lowercase notation for old api
Usually the first word of the class name is the module name and the second word is the model specifications.
E.g:
class AccountInvoice(models.Model): _name = 'account.invoice' ... class account_invoice(osv.osv): _name = 'account.invoice'
As best practice it is better to make the the _name contain a dot joining words, even if your class name is one word:
class Event(models.Model): # Private attributes _name = 'event.event' _description = 'Event'
You can also check the documentation ...
Hope this could helps
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيل