Skip to content
Snippets Groups Projects
  1. Jul 10, 2020
  2. Jul 09, 2020
  3. Jul 08, 2020
  4. Jul 09, 2020
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] account: fix composition mode change on template change · 04250d80
      Andrea Grazioso (agr-odoo) authored
      
      Go to invoice list view.
      Select several invoices, click on 'Send and print', switch template to a
      different one (possibly a duplicate of the default).
      Send
      
      On each selected record there will be a pair of attachment:
      - one belonging the the record (ok)
      - one duplicate from the first record selected (not ok)
      This occur because when switching template the default composition
      mode for the wizard is 'comment' (single send), which causes the wizard
      to compute and store the attachment of the first record it found.
      Later, this get assigned to the list of attachment to send so it
      duplicated (and sent) in all other records
      
      opw-2291274
      
      closes odoo/odoo#54255
      
      X-original-commit: 0028a602
      Signed-off-by: default avatarJorge Pinna Puissant (jpp) <jpp@odoo.com>
      04250d80
  5. Jul 08, 2020
  6. Jul 09, 2020
  7. Jul 03, 2020
  8. Jul 08, 2020
  9. Jul 01, 2020
    • snd's avatar
      [FIX] project - send rating mail by project · cb26f1aa
      snd authored
      opws: 2269230, 2248760
      When a database has a lot of projects with many tasks, and needs
      to send a lot of feedback mails, the cron tries to send mails to
      all tasks at the same time, thus it times out.
      
      This fix will allow to treat projects one at a time so that when
      the cron times out, it will not restart from the beginning.
      
      closes odoo/odoo#53922
      
      X-original-commit: 07c828b4
      Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
      cb26f1aa
  10. Jul 07, 2020
    • jvm-odoo's avatar
      [FIX] website_slides: fix video not loaded in fullscreen web content · 5e3d73bd
      jvm-odoo authored
      
      Issue
      
      	- Create a content in a course with type "web page"
      	- Access it frontend and add a "text - image" block, edit the image as a video - save
      	- The video is displayed correctly
      	- Go into full-screen
      
      	The video is not displayed at all.
      
      Cause
      
      	The content is added after the page and page widgets are started
      
      Solution
      
      	Trigger the widgets start method
      
      OPW-2290233
      
      closes odoo/odoo#54190
      
      X-original-commit: 0f93240e
      Signed-off-by: default avatarJason Van Malder (jvm) <jvm@odoo.com>
      5e3d73bd
    • Loan (lse)'s avatar
      [FIX] website_sale: Improve shop item search performances · c13c020d
      Loan (lse) authored
      
      The idea is to avoid useless SQL request as the searching process is heavy (have to look the word in several field and can be in translation tables).
      As we at some point fetch all the searched product we do it at the beginning and use its information to gain performance on other queries.
      
      Execution time in e-shop for "test" on client database (160 000 product with 4500 published):
       - Before: ~ 7 sec
       - After:  ~ 2 sec
      
      OPW-2256662
      
      closes odoo/odoo#54202
      
      X-original-commit: ec743deb
      Signed-off-by: default avatarJérémy Kersten (jke) <jke@openerp.com>
      c13c020d
    • Xavier Dubuc's avatar
      [FIX] mail: save scroll position of chat window when folded · 7091ad53
      Xavier Dubuc authored
      
      - Remove no more used ThreadViewer prop : messageListInitialScrollTop
      - Remove no more used ChatWindow prop : threadInitialScrollTop
      - Rename ThreadViewer field threadCacheInitialPosition to
        threadCacheInitialScrollPosition
      - Use the scroll position to set message list scroll on mounted
      - Fix old test which was not simulating correctly home menu show
      - Add tests to check that scroll position is correctly saved even if
        ChatWindow is folded
      - Fix traceback when showing/hiding home menu with a folded chat window
      
      task-2285691
      
      closes odoo/odoo#54198
      
      X-original-commit: 31123a94c156424b3962fe4aebc3cc60a7a89223
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      7091ad53
    • qsm-odoo's avatar
      [IMP] web_editor, *: add visibility check for editor sub-widgets · ecefd51b
      qsm-odoo authored
      
      *: website
      
      Update the visibility (from dependencies and _computeWidgetVisibility
      function) for all widgets, including the ones which are children of main
      widgets (e.g. new ability to hide some choices from a select depending
      on other options).
      
      closes odoo/odoo#54162
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      ecefd51b
    • Aaron Bohy's avatar
      [FIX] web: kanban: drag column with sample data · e55ee0bb
      Aaron Bohy authored
      
      Before this commit, in a grouped kanban view with sample data (e.g.
      crm.lead), one could toggle the 'settings' dropdown menu of a
      group, and then drag&drop the group by clicking on the muted "Fold"
      item in the dropdown.
      
      After this commit, dragging a column is only possible by clicking
      on the column title (but not on the 'config' or '+' icons, nor the
      config dropdown).
      
      Task 2290197
      
      closes odoo/odoo#54179
      
      X-original-commit: 58c38a024c96eba3469c142a8422b7bd0ab54ea4
      Signed-off-by: default avatarMathieu Duckerts-Antoine <Polymorphe57@users.noreply.github.com>
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      e55ee0bb
    • jvm-odoo's avatar
      [FIX] base_import: fix re-importing same file · 5a60dbcc
      jvm-odoo authored
      
      Issue
      
      	Chrome
      
      	- Sales > Product
      	- Select a file
      	- Change something in the file
      	- Re-select it
      
      	Nothing changed
      
      Cause
      
      	Chrome doesn't trigger change on
      	input if the file is the same
      
      Solution
      
      	Clear the input value after the
      	parse_preview so we can load a new
      	file even if the preview failed.
      
      OPW-2288191
      
      closes odoo/odoo#54175
      
      X-original-commit: f7d2bdf6
      Signed-off-by: default avatarJason Van Malder (jvm) <jvm@odoo.com>
      5a60dbcc
    • qsm-odoo's avatar
      [FIX] website: hide strange checkbox in shadow option · 7a74119d
      qsm-odoo authored
      
      The 'inset' checkbox of the shadow option was still displayed for no
      reason. A "display: none" inline style was added on it but as inline
      style is not considered for editor widgets I don't know how it could
      have ever worked.
      
      closes odoo/odoo#54168
      
      X-original-commit: b0de225c721e54b76dcbe49f9769ac371db39c05
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      7a74119d
Loading