mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-22 03:32:05 +02:00
17 lines
537 B
Python
17 lines
537 B
Python
# Copyright 2023 Quartile Limited (https://www.quartile.co)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = "account.move"
|
|
|
|
def action_post(self):
|
|
res = super().action_post()
|
|
for line in self.line_ids:
|
|
if not line.purchase_line_id.is_deposit:
|
|
continue
|
|
line.purchase_line_id.taxes_id = line.tax_ids
|
|
line.purchase_line_id.price_unit = line.price_unit
|
|
return res
|