mirror of
https://github.com/bringout/oca-project.git
synced 2026-04-20 02:02:07 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
881 B
Python
25 lines
881 B
Python
# Copyright 2022 Tecnativa - Víctor Martínez
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class StockMove(models.Model):
|
|
_inherit = "stock.scrap"
|
|
|
|
task_id = fields.Many2one(
|
|
comodel_name="project.task", string="Task", check_company=True
|
|
)
|
|
|
|
@api.onchange("task_id")
|
|
def _onchange_task_id(self):
|
|
if self.task_id:
|
|
self.location_id = self.task_id.move_raw_ids.filtered(
|
|
lambda x: x.state not in ("done", "cancel")
|
|
) and (self.task_id.location_src_id.id or self.task_id.location_dest_id.id)
|
|
|
|
def _prepare_move_values(self):
|
|
vals = super()._prepare_move_values()
|
|
if self.task_id:
|
|
vals["origin"] = vals["origin"] or self.task_id.name
|
|
vals.update({"raw_material_task_id": self.task_id.id})
|
|
return vals
|