-
-
Notifications
You must be signed in to change notification settings - Fork 816
Expand file tree
/
Copy pathstock_move.py
More file actions
24 lines (19 loc) · 733 Bytes
/
stock_move.py
File metadata and controls
24 lines (19 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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 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,
)
def _prepare_account_move_line(
self, qty, cost, credit_account_id, debit_account_id, svl_id, description
):
res = super()._prepare_account_move_line(
qty, cost, credit_account_id, debit_account_id, svl_id, description
)
for line in res:
line[2]["stock_move_id"] = self.id
return res