Removed unused one2many from sale order to sale order payment(Which doesn't exist naymore)

bzr revid: bch-15ba2f754d30abc34ba887a8a5c256662fc195b1
This commit is contained in:
bch 2007-05-08 11:40:39 +00:00
parent fc8f82b118
commit 2c62f7868a
1 changed files with 0 additions and 2 deletions

View File

@ -137,8 +137,6 @@ class sale_order(osv.osv):
'project_id':fields.many2one('account.analytic.account', 'Profit/Cost Center', readonly=True, states={'draft':[('readonly', False)]}),
'order_line': fields.one2many('sale.order.line', 'order_id', 'Order Lines', readonly=True, states={'draft':[('readonly',False)]}),
'payment_line': fields.one2many('sale.order.payment', 'order_id', 'Order Payments', readonly=True, states={'draft':[('readonly',False)]}),
'invoice_ids': fields.many2many('account.invoice', 'sale_order_invoice_rel', 'order_id', 'invoice_id', 'Invoice', help="This is the list of invoices that have been generated for this sale order. The same sale order may have been invoiced in several times (by line for example)."),
'picking_ids': fields.one2many('stock.picking', 'sale_id', 'Picking List', readonly=True, help="This is the list of picking list that have been generated for this invoice"),