mirror of
https://gitlab.com/flectra-hq/flectra.git
synced 2025-02-25 18:55:21 -06:00
15 lines
367 B
Python
15 lines
367 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
|
|
|
from flectra import models
|
|
|
|
|
|
class StockPicking(models.Model):
|
|
_inherit = 'stock.picking'
|
|
|
|
def _needs_automatic_assign(self):
|
|
self.ensure_one()
|
|
if self.sale_id:
|
|
return True
|
|
return super()._needs_automatic_assign()
|