Skip to content
Snippets Groups Projects
  1. Dec 01, 2022
  2. Nov 30, 2022
  3. Nov 29, 2022
    • Denis Ledoux's avatar
      [FIX] base, web: transfer readonly/required modifiers for kanban/tree · 5a68d254
      Denis Ledoux authored
      
      Since odoo/odoo@69c3d5aa25655173ed66a52570559322c650c7df
      the readonly and required modifiers were no longer passed
      for non-editable views. Which means:
      - kanban: never passed,
      - tree: passed only when `editable="1"` or `multi_edit="1"`,
      - form: always passed.
      
      The rationale behind that is that a view which is considered
      as readonly doesn't need to know if its field are readonly or required,
      as by definition, if the view is readonly, the user shouldn't
      be able to modify anything in the view.
      This was to make the views sent to the web client more light-weight,
      not sending unused information, and save KB of transfers.
      
      However, some widgets, used in the kanban and non-editable tree,
      allow to modify fields, even in readonly considered views,
      and therefore need to know these readonly/required modifiers
      from the field definition in the Python model.
      
      e.g. the `widget="color"`, odoo/odoo#103478
      
      Ideally, these readonly/required modifiers should be transferred
      only when the widget requires it, to avoid transferring the
      readonly/required modifiers
      when they are not useful in kanban/tree views
      (which is 99% of the time).
      However, this would require a bigger refactoring,
      which is considered too risky compared to the added value
      for a stable release.
      
      task-3013110
      
      closes odoo/odoo#106766
      
      Signed-off-by: default avatarDenis Ledoux (dle) <dle@odoo.com>
      5a68d254
    • roen-odoo's avatar
      [FIX] point_of_sale: recompute reward after pricelist change · 36dc1fce
      roen-odoo authored
      
      Current behavior:
      In the PoS if you apply a coupon on an order that contains 2 products
      with different taxes, it will create 2 discount lines on the order.
      If you change the pricelist, the discount lines won't have the correct
      values.
      
      Steps to reproduce:
      - Create 2 different products with different taxes.
      - Create a pricelist with a discount on the 2 products.
      - Create a coupon that apply a 100% discount on the order.
      - Start a PoS session
      - Add the 2 products to the order and apply the coupon.
      - The order total is now 0€.
      - Change the pricelist to the one with the discount.
      - The order total is different than 0€.
      
      opw-3049098
      
      closes odoo/odoo#106612
      
      X-original-commit: 2f29ca9311bd5c63e9419069088ce1475a124005
      Signed-off-by: default avatarTrinh Jacky (trj) <trj@odoo.com>
      Signed-off-by: default avatarEngels Robin (roen) <roen@odoo.com>
      36dc1fce
Loading