1. Create a sale for any party
2. Add a line with a product that has an accouting category with customer taxes set.
3. Click the "Modify Header" button and the Modify Button of the opened wizard.
After the wizard is closed the taxes are removed from the product.
I will expect that the taxes are set as they come from the product data.
I've found it on 5.4 series but I imagine that trunk is also afected.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
I also came across this bug. It's even worse. When you change the 'unit_price' in the line form, it will be changed back to the 'list_price' of the product.
Because the wizard is about changing the "header", why are the sale lines involved in this? Is about VAT update?
Also, what I find weird is that the wizard is not available in state 'quotation'. Because most of the time you make changes to your quotation before the sale becomes order. But that's a different issue I think.
edboadded 1 deleted label and removed 1 deleted label
> The lines are updated because you can change the party so price list and taxes should be recomputed.
> Your unit_price change is the expected behaviour?
No, the expected behaviour is that the unit_price stays the same, because I changed it myself.
So the wizard needs to check which fields are changed and act accordingly. When no party is changed, do not update the unit_price. Also some extra checks can be done when the party is changed and the previous unit_price was manually added, it should stay. Otherwise it can be changed.
There is no way to know if the price was edited or not. So the re-computation of the price should always happen. This could probably be better documented but this is for another issue.
Here the lost of taxes is weird because the wizard is only calling on_change_product so it means that with the new header the tax setup is different. Could you check that after the header modification, resetting the product set or not the taxes.
Cédric Krieradded 1 deleted label and removed 1 deleted label
I've debuged the code and the problem is that product instance does not have the proper company set on the context so the customer_taxes returns an empty list and this causes that the existing taxes are updated.
Resetting the product on the lines gives the taxes back.
I'm wondering if it won't be better to just call compute_unit_price to just update the unit price. AFAIU unit_price is the only value that should be updated.
No it should call on_change_product because taxes and unit price (and maybe other) must be recomputed.
The context must be fixed. It is strange because the product Many2One has company set in the context.
Also if it happens for sale, it must happen also for purchase as it has the same design.
The problem is that line.product._context['company'] is None, so the issue is that the _parent_sale from [1] is empty, which causes that the product instance does not have the company set, and then taxes are empty.
Any idea on how to fix it?
I've updated review275031002 to reproduce the issue on the text scenario.
The context is not set because the value used is not in the depends and more over it can not be added in the depends because it is not a "real" field ('_parent_sale' see #3901).
I think the proper way to fix that is to make such important context value use a direct field (computed). So in other word, add a 'company' field on sale line and purchase line.
And this should be done for all instances that are using the '*_used' attributes (so mainly product and party).
For me, product on invoice line must also have the company in the context because it calls *_used properties which depend on company multivalue.
I ran the account_invoice tests with the product context having company set and I got no issue.
> For me, product on invoice line must also have the company in the context because it calls *_used properties which depend on company multivalue.
> I ran the account_invoice tests with the product context having company set and I got no issue.
Did you have #9187 (closed) patch applied? I'm not able to make it work.
Main problem on invoice is that there are two invoice fields. One for the line and other for the invoice.
If I use the one from the line the taxes are missing because when the product is instanciated the company is empty. So not sure how to solve this case.
On 2020-04-15 16:21, Sergi Almacellas Abellana wrote:
> > For me, product on invoice line must also have the company in the context because it calls *_used properties which depend on company multivalue.
> > I ran the account_invoice tests with the product context having company set and I got no issue.
>
> Did you have #9187 (closed) patch applied? I'm not able to make it work.
Yes.
> Main problem on invoice is that there are two invoice fields. One for the line and other for the invoice.
But only the company on invoice line is needed because it is required.
> If I use the one from the line the taxes are missing because when the product is instanciated the company is empty. So not sure how to solve this case.
I do not have this problem because there is a default_company on the
line which set it.
This is because the call to on_change_product depends implicitly of the company field to correctly instantiate the product field.
As we can not manage to keep on on_change's up to date with the proper depends, I created #9236 (closed) to add automatically the depends.