Skip to Content
Menú
This question has been flagged
1 Respondre
3812 Vistes

How to show particular purchase order total price in my custom module I am creating a function for show amount_total iin my custom module but it's not showing

def create(self, cr, uid, vals, context=None):
if vals.get('buy_back'):
    purchase_obj=self.pool.get('purchase.order')
    sequence=self.pool.get('ir.sequence').get(cr, uid, 'purchase.order')
    new_purchase=purchase_obj.create(cr, uid, {'name':sequence,'amt_total':vals.get('amount_total')}, context=context)
    import pprint
    pprint.pprint( vals )
    print 'amount_total'
    vals['purchase_order']=new_purchase
    pprint.pprint( vals )

this is my view file

                <field name="buy_back"/>
                <field name="purchase_order"/>
                <fiels name="amt_total"/>
            </xpath>
Avatar
Descartar
Autor Best Answer

use related field

'purchase_order':fields.related('purchase_id', 'custom_field' relation=purchase.order................................)

Avatar
Descartar
Related Posts Respostes Vistes Activitat
1
de març 15
7205
1
d’abr. 17
3079
1
de gen. 16
3641
1
d’oct. 15
3633
2
de set. 15
7326