Skip to content

Commit

Permalink
TA#64531 [FIX] project_wip_material (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
majouda authored Apr 16, 2024
1 parent b9398fc commit b822769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project_wip_material/models/stock_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def _generate_consumption_account_move(self, qty, description, svl_id, cost):
wip_account = self._get_wip_account()
journal_id, dummy, dummy, acc_valuation = self._get_accounting_data_for_valuation()
self.with_company(self.project_id.company_id.id)._create_account_move_line(
credit_account_id=acc_valuation,
debit_account_id=wip_account.id,
credit_account_id=wip_account.id,
debit_account_id=acc_valuation,
journal_id=journal_id,
qty=qty,
description=description,
Expand Down

0 comments on commit b822769

Please sign in to comment.