Skip to content

Commit a84911c

Browse files
committed
[FIX] contract account and transfer allocation
1 parent 5df37bf commit a84911c

File tree

4 files changed

+6
-22
lines changed

4 files changed

+6
-22
lines changed

budget_activity_contract/models/contract_line.py

+6
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ def _prepare_invoice_line(self, move_form):
1313
invoice_line_vals["activity_id"] = self.activity_id.id
1414
invoice_line_vals["account_id"] = self.activity_id.account_id.id
1515
return invoice_line_vals
16+
17+
def _get_contract_line_account(self):
18+
account = super()._get_contract_line_account()
19+
if self.activity_id:
20+
account = self.activity_id.account_id
21+
return account
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
22

3-
from . import budget_allocation
43
from . import budget_transfer_item

budget_allocation_transfer/models/budget_allocation.py

-18
This file was deleted.

budget_allocation_transfer/models/budget_transfer_item.py

-3
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,9 @@ def transfer(self):
4646
if ba_line.released_amount < transfer.amount:
4747
transfer_amount -= ba_line.released_amount
4848
ba_line.released_amount -= transfer.amount
49-
ba_line.transferred_amount -= transfer.amount
5049
else:
5150
ba_line.released_amount -= transfer_amount
52-
ba_line.transferred_amount -= transfer.amount
5351
if i > 0:
5452
source_lines[i - 1] = 0.0
5553
target_lines[0].released_amount += transfer.amount
56-
target_lines[0].transferred_amount += transfer.amount
5754
return res

0 commit comments

Comments
 (0)