There's a field of line_ids in the class of 'purchase.requisition' :
'line_ids' : fields.one2many('purchase.requisition.line','requisition_id',
'Products to Purchase',states={'done': [('readonly', True)]}),
And I add a many2one field to 'purchase.order.line' :
'requisition_line_id': fields.many2one('purchase.requisition.line' ,
u'Requisition Line',readonly = True , ondelete = 'restrict' ),
Now , how can I display then name field of 'purchase.requisition' in the view of 'purchase.order.line' ?