2025-01-15 10:16:19 -05:00
|
|
|
from odoo import models, fields, api
|
|
|
|
|
|
2025-01-15 12:10:16 -05:00
|
|
|
|
2025-01-15 10:16:19 -05:00
|
|
|
class PurchaseRequisition(models.Model):
|
2025-01-15 12:10:16 -05:00
|
|
|
_inherit = "purchase.requisition"
|
2025-01-15 10:16:19 -05:00
|
|
|
|
2025-01-15 11:59:19 -05:00
|
|
|
customer_ids = fields.Many2many(
|
2025-01-15 12:10:16 -05:00
|
|
|
comodel_name="res.partner",
|
|
|
|
|
string="Applicable Customers",
|
|
|
|
|
help="Customer for whom this requisition is applicable",
|
2025-01-15 10:16:19 -05:00
|
|
|
)
|