[FIX] account_banking_payment_transfer: remove a field that has been moved

payment_term_ids is now in account_payment_mode_term
This commit is contained in:
Stéphane Bidoul
2015-01-06 15:25:41 +01:00
parent 825fca3f37
commit ec0eb0a0fc

View File

@@ -44,8 +44,3 @@ class PaymentMode(models.Model):
('date', 'One move per payment date'),
('line', 'One move per payment line'),
], string='Transfer move option', default='date')
# TODO: extract this to account_banking_payment_term
payment_term_ids = fields.Many2many(
'account.payment.term', 'account_payment_order_terms_rel',
'mode_id', 'term_id', string='Payment terms',
help='Limit selected invoices to invoices with these payment terms')