Skip to content
Snippets Groups Projects
  1. Mar 12, 2020
    • Florent Lejoly's avatar
      [IMP] website_[sale_]slides: allow users to take the slide quiz before joining the course · 660e1054
      Florent Lejoly authored
      
      PURPOSE
      
      When previewing a slide of type 'quiz', users are tempted to answer the
      questions even if they are not member of the course yet.
      
      This commit will allow users to answer the quiz without being a member of the
      course, and offer a smart redirection to join / buy based on the enroll type
      of the channel.
      
      SPECIFICATIONS
      
      We introduce a "CourseJoinWidget" that will handle the display and the behavior
      of the "join" button based on the user (public or not) and the enroll type
      (public course or based on a payment).
      
      When the user answers questions and he's not a member yet, we store the answers
      temporarily in the session object.
      When he comes back on the quiz page after having completed his membership, we
      fill in the quiz based on his previously entered answers and clean the session.
      
      LINKS
      
      Task 2045571
      PR #41972
      
      Co-authored-by: default avatarFlorent Lejolyn <fle@odoo.com>
      Co-authored-by: default avatarAurélien Warnon <awa@odoo.com>
      660e1054
    • Aurélien Warnon's avatar
      [REF] website_slides: rename 'channel_management.xml' to 'slide_course_join.xml' · 1a92829c
      Aurélien Warnon authored
      This commit simply renames a template file to better reflect its purpose and
      also align with its JS widget file naming. It is a preparation commit for
      pending changes.
      
      Task 2045571
      PR #41972
      1a92829c
  2. Mar 11, 2020
  3. Mar 10, 2020
  4. Mar 11, 2020
    • Sébastien Theys's avatar
      [FIX] mail_bot: revert of notification request change · db6a018c
      Sébastien Theys authored
      
      Commit [1] does not work as it is supposed to, because there has been a
      confusion between the "notification request" and the "chat with OdooBot".
      
      `_showOdoobotTimeout` is for the chat, and it is unrelated to the notification
      request. We don't want to initiate multiple chats with OdooBot so that has to be
      reverted.
      
      As for the original goal of the PR about the notification request, it wasn't met
      either because it is the browser controlling it:
      
      - on Firefox there simply isn't a "close" button, and closing it by any other
        means (escape key) is considered as a denied.
      
      - on Chrome, when closing it for the first time, it will appear again
        automatically after the next page reload, so no additional code is required.
        However, if it is closed too many times (around 3) it will become
        automatically denied too, at the browser level.
      
      The only thing to do at that point is to better notify the user that it was
      blocked, without being intrusive, which is the focus of task-2188584.
      
      [1] b7254eca
      
      opw-2186299
      
      closes odoo/odoo#47395
      
      X-original-commit: 50155e80
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      db6a018c
    • Swapnesh Shah's avatar
      [FIX] sale,payment: Encode Payment URL correctly · cf42c2e2
      Swapnesh Shah authored
      
      Before this commit, Payment URL was not encoded correctly which can compute Payment refernece Wrongly on website.
      
      Eg,
        Enter Description which contains Special Characters
        Go to Payment Page using Computed URL.
        There will be wrong Payment Reference on Payment page.
      
      With this commit, We encode Payment reference before generating Payment URL.
      
      closes odoo/odoo#47387
      
      X-original-commit: 6ebcc43d
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      cf42c2e2
    • jvm-odoo's avatar
      [FIX] mail: attachments in the message when marking activity as done · 06dee038
      jvm-odoo authored
      
      Fine tuning of 1e411e3a6d
      - It moves the attachment in the message when we mark an activity as
        done.
      - It adds a test
      
      OPW-2196668
      
      closes odoo/odoo#47349
      
      X-original-commit: 2033066426a6af6eed5f80f1bcde6e650e998f0d
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      06dee038
    • Nicolas Martinelli's avatar
      [FIX] point_of_sale: rounding error · 4aa7e101
      Nicolas Martinelli authored
      
      - Set 'Product Unit of Measure' to 5
      - Set the UoM rounding to 0.001
      - Create an excluded tax of 6 %
      - Create a product costing 7.0
      - Open the POS, add the product with a quantity of 0.535
      
      The tax is 0.22 instead of 0.23.
      
      The root cause of the issue is the in JS:
      
      ```
      round_pr(0.535, Math.pow(10,-5)) * 7 = 3.744999999999999
      round_pr(0.535, 0.00001) * 7 = 3.745
      ```
      
      The numerical error impacts the tax computation later on.
      
      As a workaround, we round by the maximum between the UoM rounding and
      the 'Product Unit of Measure', which is what will be done in the backend
      anyway.
      
      opw-2205092
      
      closes odoo/odoo#47372
      
      X-original-commit: 125cdf96
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      4aa7e101
  5. Mar 10, 2020
  6. Mar 11, 2020
    • Josse Colpaert's avatar
      [FIX] l10n_ch: adapt bank account creation in reconciliation · 72623a2c
      Josse Colpaert authored
      
      If the bank account number is a postal one, search differently
      to see if the account already exists.  As for a postal account,
      the same number can be used by multiple partners, changed the
      account to include the name of the partner, but for this
      we need to alter the way the account is searched/created.
      
      closes odoo/odoo#47365
      
      X-original-commit: b95b9d6d
      Signed-off-by: default avatarJosse Colpaert <jco@openerp.com>
      72623a2c
    • Josse Colpaert's avatar
      [REF] account: refactor bank statement reconciliation for adding bank account · 4179341f
      Josse Colpaert authored
      When reconciling and the bank account is not found, the system
      wlll automatically create one.  Here we refactor the method
      checking/creating this bank account in order to be able to inherit
      this functionality.
      
      In the meantime, we added the company_id for the newly created
      bank account in order to avoid problems when you are operating
      on multiple companies at the same time.
      
      X-original-commit: a63bd575
      4179341f
    • Krupa Patel's avatar
      [FIX] web_editor: close widgets by clicking outside of them · 703a9c48
      Krupa Patel authored
      
      task-2196789
      
      closes odoo/odoo#46298
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      703a9c48
    • Romeo Fragomeli's avatar
      [REF] *: add tour steps utils · ab2e3fdb
      Romeo Fragomeli authored
      This commit moves some step utils in a dedicated file and add new ones.
      These steps will be very useful for the Main Flow Tour to avoid
      duplicated code.
      
      To do this, we also had to transform it into functions to allow
      utils to call each other. Existing one are converted for
      standardization purpose.
      
      Note that 'WEBSITE_NEW_PAGE' wasn't considered as an util.
      This is a very simple step only used twice.
      ab2e3fdb
    • Romeo Fragomeli's avatar
      [IMP] web_tour: add 'mobile' flag for steps in tours · 298f2f4a
      Romeo Fragomeli authored
      We are not able to precise in which case a step should be executed.
      We already have 'edition' and now we introduce 'mobile'.
      
      undefined: Desktop + Mobile*
      true:      Mobile* only
      false:     Desktop only
      
      *: Responsive (<= SM), see isMobile
      298f2f4a
    • Romeo Fragomeli's avatar
      [FIX] web_tour: tip not consumed with the right event on mobile · 3a191d05
      Romeo Fragomeli authored
      Before this commit, the tip for a many2X field was consumed with a
      input event.
      
      But on mobile we doesn't have the same behaviour; a kanban modal is
      opened when we click on the many2X field input instead of writing in it
      (auto-complete) like on desktop.
      
      After this commit, the tip is consumed with a click event for many2X on mobile.
      3a191d05
    • Romeo Fragomeli's avatar
      [FIX] web_tour: tip not visible anymore on notebook header · 10a47cf4
      Romeo Fragomeli authored
      Since commit: odoo/enterprise@e662ef36296afb2787eb694a33b4c6616a5e1326
      a 'div' wrapper was added around the notebook header.
      
      The tip was not visible due to it's location in the wrapper with
      'overflow: hidden'.
      
      After this commit, the tip is appended to the ancestor of the wrapper
      and so it's visible again.
      10a47cf4
    • Romeo Fragomeli's avatar
      [IMP] web_tour: activate tour service for mobile · fa2f2515
      Romeo Fragomeli authored
      Before this commit, when you tried to run a tour by clicking on
      "Start Tour" in the debug menu, nothing happened and a warning
      message appeared in console:
      "debug_manager.js:53 No handler for start_tour".
      Now it will work on mobile too (debug mode only).
      
      We had to do this to be able to run the main flow tour on mobile.
      
      Note that another commit (in enterprise) will automatically consume
      all tours to avoid to display it for demonstration purposes.
      
      Task ID: 2149402
      fa2f2515
    • fja-odoo's avatar
      [REF] web_editor: remove useless code in palette · 5d836774
      fja-odoo authored
      Previously the widget was not refreshed everytime it was opened.
      Now that it is the case and since the color picker rerenders every time
      we select a color:
      It is no longer required to select/unselect the colors.
      It is no longer required to add custom colors to existing colors.
      
      Part of: https://github.com/odoo/odoo/pull/45872
      
      
      
      task-2212288
      
      closes odoo/odoo#47355
      
      X-original-commit: 481fe703e9400fb64e96291914f76d4dca883e29
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      5d836774
    • fja-odoo's avatar
      [FIX] web_editor: fix select theme color if match · 2c1ebbf8
      fja-odoo authored
      When a default color matches a theme color it will now select the theme
      color class instead of a css attribute when clicked.
      
      Part of: https://github.com/odoo/odoo/pull/45872
      
      task-2212288
      
      X-original-commit: d7b3538a814f0e53cd3c5816f8296ad5e4c5f41a
      2c1ebbf8
  7. Mar 04, 2020
  8. Mar 06, 2020
  9. Mar 10, 2020
  10. Mar 05, 2020
  11. Mar 10, 2020
  12. Mar 09, 2020
Loading