mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
24 lines
735 B
Python
24 lines
735 B
Python
# Copyright 2019 ForgeFlow S.L. (https://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class StockMove(models.Model):
|
|
_inherit = "stock.move"
|
|
|
|
account_move_line_ids = fields.One2many(
|
|
comodel_name="account.move.line", inverse_name="stock_move_id", copy=False
|
|
)
|
|
|
|
@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:
|
|
line[2]["stock_move_id"] = self.id
|
|
return res
|