Reputation: 103
I want to change the domain filter of journal_id field which is currently [('type', 'in', ('bank', 'cash'))] this. I wanna apply only [('type', '=', 'cash')]. But its not changing while I am trying to override it.
I created the field again and applied the domain but thats too not giving me the proper result
<xpath expr="//field[@name='journal_id']" position="after">
<field name="journal_id" widget="selection"
domain=" [('employee_id.user_id','=',uid)]"/>
<xpath/>
or
`<field name="journal_id" position="attributes">
<attribute name="domain">[('type','=',cash)]</attribute>
</field>
I want to show only those journal in drop down whose type is 'cash'
Please help out in this.
Upvotes: 2
Views: 363
Reputation: 649
There is function which is setting domain in payment and you have to find that function and override it according to your requirement.
Upvotes: 1