forked from Mapan/odoo17e
14 lines
354 B
Python
14 lines
354 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models
|
|
|
|
|
|
class SaleOrderLine(models.Model):
|
|
_inherit = "sale.order.line"
|
|
|
|
def _is_reorder_allowed(self):
|
|
if self.recurring_invoice:
|
|
return False
|
|
return super(SaleOrderLine, self)._is_reorder_allowed()
|