This question has been flagged
2537 Views

Hi there,

 

I would like to have a filter on sale orders that allow me to show sale order that had an deposit invoice paid.

How could I make this ?

 

Here is what I began to write :

* For the filter :

<filter string="Sale order with deposit paid" domain="[('partially_invoiced','=',True),(invoiced','=',False)]"/>

 

* for the sale.order model :

class sale(osv.osv):

    _inherit = 'sale.order'     
    _columns = {
            'partially_invoiced': fields.function(.....),
                    }

 

I don't know how to do for the python function that should retrieve the appropriate sale orders.

 

Thank for your help

Victor

Avatar
Discard