i am trying to create a custom module (i have created previously and works fine), its not creating Modle when searching in Technical -> Models , please have a look and help.
note: my OS is Windows 10, Odoo 16, added the file name in __init.py__ file
from . import crm_leads_custom_inquiry
other models created and can be found in Technical
from odoo import models, fields
class CRMInquiry(models.Model):
_name = 'crm.inquiry'
_description = 'CRM Lead Inquiry'
product_id = fields.Many2one('product.product', string='Product Name', required=True)
qty = fields.Integer(string='Quantity', default=1)
regards