18 lines
582 B
Python
18 lines
582 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models, _
|
||
|
from odoo.exceptions import UserError
|
||
|
|
||
|
|
||
|
class StockQuant(models.Model):
|
||
|
_inherit = 'stock.quant'
|
||
|
|
||
|
is_subcontract = fields.Boolean(store=False, search='_search_is_subcontract')
|
||
|
|
||
|
def _search_is_subcontract(self, operator, value):
|
||
|
if operator not in ['=', '!='] or not isinstance(value, bool):
|
||
|
raise UserError(_('Operation not supported'))
|
||
|
|
||
|
return [('location_id.is_subcontracting_location', operator, value)]
|