Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
15328 Widoki

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...

 

 

Awatar
Odrzuć

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.

Powiązane posty Odpowiedzi Widoki Czynność
1
sty 24
2472
0
lip 15
4778
0
wrz 22
1737
2
sie 18
5772
0
sty 18
4947