mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
# © 2019 ForgeFlow S.L.
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import api, models
|
|
|
|
|
|
class StockMove(models.Model):
|
|
_inherit = "stock.move"
|
|
|
|
@api.model
|
|
def _prepare_account_move_line(
|
|
self, qty, cost, credit_account_id, debit_account_id, description
|
|
):
|
|
res = super(StockMove, self)._prepare_account_move_line(
|
|
qty, cost, credit_account_id, debit_account_id, description
|
|
)
|
|
for line in res:
|
|
if self.production_id:
|
|
line[2]["manufacture_order_id"] = self.production_id.id
|
|
elif self.raw_material_production_id:
|
|
line[2]["manufacture_order_id"] = self.raw_material_production_id.id
|
|
line[2]["name"] = self.raw_material_production_id.name
|
|
elif self.unbuild_id:
|
|
line[2]["unbuild_order_id"] = self.unbuild_id.id
|
|
elif self.consume_unbuild_id:
|
|
line[2]["unbuild_order_id"] = self.consume_unbuild_id.id
|
|
return res
|