Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
15349 Visualizzazioni

In Openerp 7  User login list view display record always with domain conditions. But while searching the record remove the domain condition temporarily and return the output based on user input. Based on search method overridden and below code used.

    <record id="action_custommodel_view" model="ir.actions.act_window">
        <field name="name">Sample</field>
        <field name="res_model">sample.module</field>
        <field name="view_type">form</field>
        <field name="view_mode">tree,form</field>
        <field name="view_id" ref="view_samplemodule_tree"/>
        <field name="domain">[('user_id','=',uid)]</field>
    </record>

def search(self, cr, uid, args, offset=0, limit=None, order=None, context=None,count=False, extra=None):
        if uid == 1:
            del args[0]
        if len(args) == 1:
            user_domain = args[0]      
        if uid !=1 and len(args)>1:
            del args[0]
        if uid !=1 and not args:
            args.insert(0, user_domain)                                 
        return super(sample_one, self).search(cr, uid, args, offset, limit, order, context, count)

Let me know wheter about code is right or not?..

Please correct me if i am going wrong...

 

 

Avatar
Abbandona

What is your problem? As long as your code worked, you can save the bill :D Some minor comment about hardcoded value, avoid it. You can use like SUPERUSER_ID to follow existing codebase.

One can override the 'search' method to get control on the displayed result in the tree view display, but this method should be overridden with cautious. For your current code, pls add a comment on each if conditions what does it mean, and a comment on the action you took when this condition is satisfied.

Post correlati Risposte Visualizzazioni Attività
1
gen 24
2498
0
lug 15
4786
0
set 22
1753
2
ago 18
5781
0
gen 18
4969