Daniel Duque
Daniel Duque
There are cases when comparison doesn't work as expected because of Javascript floating point.
This PR follows https://github.com/OCA/e-commerce/pull/748 (for 14.0, closed) and issue reported in https://github.com/OCA/e-commerce/issues/739. The aim is to display correct billing information, not customer's data, as described in linked issues. cc @francesco-ooops...
It's necessary to add key `website_sale_stock_available` to `depends_context` of compute method of `free_qty`. This could lead to get invalid cached content instead of computing with updated key. FL-556-2511
Explicit `sudo(False)` is not needed anymore, as Odoo core also removed it from the other QWeb reports (see https://github.com/odoo/odoo/commit/ffc525419a71aeb05ede6b59dda9e62286a5e66e) This change was made for 14.0 in https://github.com/OCA/reporting-engine/pull/587 (see related issue...
Adds website_sale_product_multi_website from work in https://github.com/OCA/e-commerce/pull/579 and then https://github.com/OCA/e-commerce/pull/876. Minor changes were added from https://github.com/OCA/e-commerce/pull/876 proposal, such as uninstall hook. This PR is tagged as module addition as it hasn't...
Make stock updates not only on quant updates, but also when a stock move changes its state. This fixes two bugs: - Stock is not updated when a new incoming...
When granting access to a contact, a copy from *Portal User Template* is made for it. But applied default roles are the ones from *Default User Template*, causing an error...
Partner action to show assortments shows only the ones linked by partner_ids, but not via `partner_domain`. Using already existing `applied_assortment_ids` takes all into account.