12 lines
322 B
Python
12 lines
322 B
Python
from odoo import models, fields, api
|
|
|
|
|
|
class PurchaseRequisition(models.Model):
|
|
_inherit = "purchase.requisition"
|
|
|
|
customer_ids = fields.Many2many(
|
|
comodel_name="res.partner",
|
|
string="Applicable Customers",
|
|
index=True,
|
|
help="Customer for whom this requisition is applicable",
|
|
)
|