Skip to content
Snippets Groups Projects
  1. Nov 27, 2020
  2. Nov 26, 2020
    • Joseph Caburnay's avatar
      [FIX] pos_restaurant: order remained after deletion · e6e2a739
      Joseph Caburnay authored
      
      There is a situation in pos_restaurant such that when an order
      is deleted from the ticket screen, it persists to show when the
      table is opened. To reproduce:
      
      1. Create an order in T1 then add items to it.
      2. Get out of the table (back to floor).
      3. Open ticket screen.
      4. Delete the order in T1.
      5. Close the ticket screen.
      6. Open T1, the order is still there (bug).
      
      This commit fixes this behavior such that in step 6, new order should
      show and not the deleted order.
      
      Note that we also made a change in the template in order to allow
      checking the number of synced orders during testing. We want to make
      sure that the table is clicked when the sync finishes to prevent
      concurrency issue during testing.
      
      closes odoo/odoo#62403
      
      Signed-off-by: default avatarpimodoo <pimodoo@users.noreply.github.com>
      e6e2a739
  3. Nov 27, 2020
  4. Nov 26, 2020
  5. Nov 19, 2020
  6. Nov 26, 2020
  7. Nov 25, 2020
    • Lucas Lefèvre's avatar
      [FIX] web: mock all name_get behaviors · c8f59bfd
      Lucas Lefèvre authored
      
      The mock implementation of `name_get` does not fully reflect
      the real server implementation.
      
      The real implementation is described in tests added in
      this commit.
      
      Note: in my wildest dreams, the mock server tests would be run
      against the real *and* the mock implementation to ensure they
      do not diverge.
      
      closes odoo/odoo#62347
      
      Related: odoo/enterprise#14990
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      c8f59bfd
  8. Nov 23, 2020
  9. Nov 26, 2020
  10. Nov 25, 2020
  11. Nov 26, 2020
  12. Oct 23, 2020
  13. Oct 22, 2020
  14. Nov 26, 2020
    • Adrien Widart's avatar
      [FIX] account_check_printing: print check of payment group · 4dc4dc3d
      Adrien Widart authored
      
      When some bills are not paid, some with due date, some without, when registering the payment of these bills as a group payment with checks, it is not possible to print the check
      
      To reproduce the error:
      (Need account)
      1. Go to Invoicing > Vendors > Bills
      2. Create a new one
          - Add at least one line
          - Add the Payment Terms
      3. Save & Post
      4. Duplicate it, then Save & Post
      5. Go back to Bills
      6. Select the two bills
      7. Click on Action > Register Payment
      8. Select Checks, enable Group Payment
      9. Click on Create Payment
      10. Click on Print Check
      11. Click on Print
      
      => An Odoo Error is raised
      
      The user should be able to print it.
      
      OPW-2389368
      
      closes odoo/odoo#62365
      
      X-original-commit: adeebc5d
      Signed-off-by: default avataradwid <adwid@users.noreply.github.com>
      4dc4dc3d
  15. Nov 25, 2020
  16. Nov 26, 2020
    • Thibault Delavallée's avatar
      [FIX] mail: fix composer default values computation · 1c8ca358
      Thibault Delavallée authored
      
      As default is called numerous times with sometimes all fields, sometimes
      only one field we have to ensure we avoid computing and setting unnecessary
      or wrong values. We suspect this comes from default_get being called more
      often at creation time since Odoo v14.
      
      Default values for some fields in mail composer are dependent on each other.
      Especially composition mode and model / res_id(s) are important for some
      fields as behavior is not the same in comment or mass mail mode (subject
      set / not set, template values rendered / displayed raw, ...).
      
      Especially subject is wrongly computed in mass mail mode. For example use a
      mass mail composer action on leads without template. Indeed a default_get
      is called on subject alone. As web client adds active_model / active_id
      automatically default returns a value for subject while it should not as
      other values (model, res_id) are not asked and therefore not correctly
      computed. It makes composer compute values in comment mode while it should
      stay in mass mode.
      
      In this commit we fix that behavior by
      
        * computing only requested values (better match returned values and asked
          fields);
        * avoid computing values if context values are not given (model, res_id or
          res_ids, composition_mode);
      
      Task ID-2390314
      PR odoo/odoo#62061
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      1c8ca358
    • Thibault Delavallée's avatar
      [FIX] test_mail: make tests reproducible and independent from bus state · 92ff1379
      Thibault Delavallée authored
      Some tests are currently dependent on bus state when computing number of
      notifications sent. For example install Crm then test_mail_full. Some
      tests crash as too much notifications are found in the bus.
      
      We therefore clean remaining bus notifications before running tests to
      ensure we check notifications during test itself. This make tests more
      easy to reproduce.
      
      Task ID-2390314
      PR #62061
      92ff1379
    • Thibault Delavallée's avatar
      [IMP] test_mail: add new mail composer tests for its internals · def98d23
      Thibault Delavallée authored
      Purpose is to have some low level tests for composer itself allowing to
      ensure its behavior. We add tests notably about default values computation
      in mass mailing mode as well as template_id change and values synchronization
      in composer model.
      
      In a near future composer will probably be improved (use computed fields,
      rewrite part of its logic to improve performances). Having tests done before
      those tasks ensure we notice every change that might happen.
      
      Task ID-2390314
      PR odoo/odoo#62061
      def98d23
  17. Nov 23, 2020
  18. Nov 25, 2020
Loading