Skip to Content
Menu
This question has been flagged

I develop new module 

and i have  Char field`cont_no` how make it searchable in database if entred exsist (like many2one autocomplate)

Model.py

`


class RealContract(models.Model):
_name = 'real.contracts'
_sql_constraints = [
('contract_no_unique', 'unique (cont_no)', 'You Enter Number Already exsist! \n Contract Number Must be Unique!')]
cont_no = fields.Char('Contract No.', index=True, search='_search_function',
filter_domain="[('cont_no','ilike',self)]", required=True)
real_id = fields.Many2one('real.realstate', 'Real State.', ondelete='restrict')

`

view.xml

`

<record model="ir.ui.view" id="real.contract_form">
<
field name="name">Contracts Form</field>
<
field name="model">real.contracts</field>
<
field name="arch" type="xml">
<
form>
<
sheet>
<
group>
<
field name="cont_no" filter_domain="[('cont_no','ilike',self)]"/>
         </group>
</
sheet>
</
form>
</
field>
</
record>

`

how do it?

Thanks

Avatar
Discard
Best Answer

Hi,

Please see this free module and see whether this newly added widget satisfy your need.

Module: Auto Fill Widget


Thanks

Avatar
Discard
Related Posts Replies Views Activity
0
Jul 15
3112
1
Oct 18
14037
0
Dec 24
15
1
Apr 15
5823
2
Mar 15
4793