Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IMP] *hr_expense*: account.move creation overhaul #166396

Conversation

JulienAlardot
Copy link
Contributor

This moves the creation of account.move at the approval step of an expense report. Allowing better accounting tax management

Before this change:
The moves & payments were created & posted
when posting the expense report

After this change:
Approving the report creates draft account moves & payments Posting the report post the accounting entries

task-id: 3943064

Description of the issue/feature this PR addresses:

Current behavior before PR:

Desired behavior after PR is merged:


I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr

@robodoo
Copy link
Contributor

robodoo commented May 22, 2024

Pull request status dashboard.

@JulienAlardot JulienAlardot force-pushed the master-add-move-in-draft-expense-jual branch from 510b48c to 9ebbf65 Compare May 22, 2024 17:44
@C3POdoo C3POdoo requested a review from a team May 22, 2024 17:46
@C3POdoo C3POdoo added the RD research & development, internal work label May 22, 2024
@JulienAlardot JulienAlardot force-pushed the master-add-move-in-draft-expense-jual branch 2 times, most recently from 87a22c7 to a096b34 Compare May 23, 2024 15:20
@qdp-odoo
Copy link
Contributor

@JulienAlardot runbot is red, can you rebuild/investiguate please? :) thanks

@JulienAlardot
Copy link
Contributor Author

@JulienAlardot runbot is red, can you rebuild/investiguate please? :) thanks

It's red because it's far from ready 😭

@qdp-odoo qdp-odoo self-assigned this May 27, 2024
def button_cancel(self):
# EXTENDS account
res = super().button_cancel()
own_expense_moves = self.filtered(lambda move: move.expense_sheet_id.payment_mode == 'own_account')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why only for payment_mode == own_account? 🤔

Copy link
Contributor Author

@JulienAlardot JulienAlardot May 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added a new comment explaining why (company expenses can be canceled through their move/payment being canceled, not employee ones)

@@ -238,7 +238,7 @@ def _compute_amount(self):
def _compute_from_account_move_ids(self):
for sheet in self:
if sheet.payment_mode == 'company_account':
if sheet.account_move_ids:
if sheet.account_move_ids.filtered(lambda move: move.state != 'draft'):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what about canceled moves? I think you need to filter them out as well, or the computation will be wrong

Suggested change
if sheet.account_move_ids.filtered(lambda move: move.state != 'draft'):
if sheet.account_move_ids.filtered(lambda move: move.state == 'posted'):

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When the expense is paid by the company we want to consider the canceled one as "paid"
Not in the employee case

else:
sheet.state = 'post'
else:
sheet.state = sheet.approval_state # Submit & approved without a move case
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wish we had only 1 state field... why can't we?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the expense sheet state is a combination of 3 different logic (the expenses themselves, the approval process, the payment process). And those should synchronize themselves, taking some manager input (approval) in the middle.
I feel it would be too messy to move from what we have right now (computed state with a second field approval_state to properly take the input from the manager.
Even though, now with these changes the line between the two last processes is a bit blurry

@JulienAlardot JulienAlardot force-pushed the master-add-move-in-draft-expense-jual branch 5 times, most recently from 62da5b6 to 946dff0 Compare May 27, 2024 12:51
@JulienAlardot JulienAlardot requested a review from qdp-odoo May 27, 2024 14:01
@JulienAlardot JulienAlardot force-pushed the master-add-move-in-draft-expense-jual branch 4 times, most recently from 607978b to 3f19b3a Compare May 28, 2024 12:22
# And cancelling the move != cancelling the expense
res = super().button_cancel()
own_expense_moves = self.filtered(lambda move: move.expense_sheet_id.payment_mode == 'own_account')
own_expense_moves.write({'expense_sheet_id': False, 'ref': False})
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if an account.move gets cancelled, reset to draft, re-posted... you'll lose the link: the expense gonna be paid twice ⚠️

Copy link
Contributor Author

@JulienAlardot JulienAlardot May 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In all the cases, if you already have a payment done and you reset/revert/delete/cancel your move, you have the warning about outstanding amounts to make sure you're not paying twice. As for any normal vendor bill

In the case of the cancel without any payment though, as it's not the same kind of cancel than an "expense cancel". There is no way to pay your employee again without unlinking the two models (else the synchro goes awry)

The previous behavior wasn't doing that, but was also blocking the expense in a dead zone. Never allowing it to be paid for something that could just be an accounting error

return self.env.ref('hr_expense.mt_expense_paid')
return super()._track_subtype(init_values)
if 'state' not in init_values:
return super()._track_subtype(init_values)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not related to the task, but I think having custom subtypes are far from being great from a performance point of view. 🤔 Maybe to be removed in a next refactoring, unless it brings a real added value, if we can see it makes a significant amount of additional queries

This moves the creation of account.move at the approval step
of an expense report. Allowing better accounting tax management

Before this change:
The moves & payments were created & posted
when posting the expense report

After this change:
Approving the report creates draft account moves & payments
Posting the report post the accounting entries

task-id: 3943064
@JulienAlardot JulienAlardot force-pushed the master-add-move-in-draft-expense-jual branch from 3f19b3a to 17e7e85 Compare May 28, 2024 14:24
@qdp-odoo
Copy link
Contributor

@robodoo r+

robodoo pushed a commit that referenced this pull request May 28, 2024
This moves the creation of account.move at the approval step
of an expense report. Allowing better accounting tax management

Before this change:
The moves & payments were created & posted
when posting the expense report

After this change:
Approving the report creates draft account moves & payments
Posting the report post the accounting entries

closes #166396

Task-id: 3943064
Related: odoo/enterprise#63010
Signed-off-by: Quentin De Paoli <[email protected]>
@robodoo robodoo closed this May 28, 2024
@robodoo robodoo added the 17.3 label May 28, 2024
@fw-bot fw-bot deleted the master-add-move-in-draft-expense-jual branch June 11, 2024 19:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
17.3 RD research & development, internal work
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants