Skip to content
Snippets Groups Projects
  1. Mar 05, 2019
  2. Mar 04, 2019
  3. Mar 01, 2019
    • RomainLibert's avatar
      [FIX] mail: set mail.activity.type related fields readonly · 30bbfff8
      RomainLibert authored
      
      Currently it is not possible to create or write on a mail
      activity without having the rights to write on mail activity type.
      
      This is caused by the some related fields on mail activity are
      not readonly hence trying to write on mail activity type
      
      This issue was previously shadowed by a sudo call both in
      the create and write methods, those disappeared
      with the following commit odoo/odoo@b9c8ba83e6b367275eca28255dd7df9b8ac84aa1
      
      As those fields should never have been defined as readonly=False,
      this commit sets them to readonly=True
      
      closes odoo/odoo#31468
      
      Signed-off-by: default avatar"Romain Libert (rli)" <rli@odoo.com>
      30bbfff8
  4. Mar 04, 2019
    • Robot Odoo's avatar
      [MERGE] website_slides(_*): improve profile, lesson list display and demo data · 6fc1f7d3
      Robot Odoo authored
      
      This merge contains various improvements and fixes related to the new
      eLearning application. Sub commits will give you more details on this
      merge content as everything is not completely related.
      
      Containing mainly
       * improve demo data to have more links and quizzes;
       * redesign the profile page, make it responsive and use bs4 when possible;
       * fix lesson list in training channels not displaying all slides;
       * improve lesson list design;
      
      Merge linked to task ID 1941250 and PR #31453 about post-merge
      cleaning and review.
      
      Signed-off-by: default avatar"Thibault Delavallee (tde)" <tde@openerp.com>
      Unverified
      6fc1f7d3
    • Thibault Delavallée's avatar
      [FIX] website_slides: fix display of lessons in training course · dc76c99a
      Thibault Delavallée authored
      Currently slides are displayed in a reorderable list, using current user
      access rights. This means external customers see only published and free
      lessons.
      
      However purpose of course page is to display all lessons, and display
      only available ones as clickable. Other one should be displayed as muted
      to tease people.
      
      Note that a specific lesson page does check for access rights. Here we
      just display all lessons names. A label for free preview is also added.
      
      Fetch of data when displaying a channel is therefore a bit modified as
      there are less differences between training and documentation channels.
      User progress is also updated to be easier to use in templates.
      
      Commit linked to task ID 1941250 and PR #31453
      dc76c99a
    • Stefano Rigano's avatar
      [IMP] website_slides: slightly improve homepage · a488cf67
      Stefano Rigano authored
      Purpose of this commit is to make a new design linting pass on homepage.
      Containing
      
       * various bs4 and responsive improvements;
       * footer banner improvements;
      
      Commit linked to task ID 1941250 and PR #31453
      a488cf67
    • sri-odoo's avatar
      [REF] website_profile and dependencies: improve global layout and design · af41382f
      sri-odoo authored
      Purpose is to perform a cleaning pass on website_profile templates. It
      cleans the DOM, templates and CSS and proposes various improvements on
      general design and layouting. This includes notably
      
       * lessen custom CSS and use bootstrap 4 classes;
       * simplify layout when possible;
       * make is responsive and mobile friendly;
      
      No functional changes should occur with this commit.
      
      Sub modules are impacted as profile is extended in various other
      applications: eLearning, forum and certification.
      
      Commit linked to task ID 1941250 and PR #31453
      af41382f
    • sri-odoo's avatar
      [REF] website_profile: improve rank progress template · 43635985
      sri-odoo authored
      Purpose is to make it better looking and responsive.
      
      Commit linked to task ID 1941250 and PR #31453
      43635985
    • Thibault Delavallée's avatar
      [FIX] website_slides: add missing presentation icon used in some templates · 2ab2de24
      Thibault Delavallée authored
      A specific template to display an icon depending on slide type has been
      added recently. However presentation icon was missing. This commit fixes
      that.
      
      We also added an option to tune the classes added on the icon. It gives more
      flexibility when using it.
      
      Commit linked to task ID 1941250 and PR #31453
      2ab2de24
    • Thibault Delavallée's avatar
      [FIX] website_slides: various models improvements · adcdb4e0
      Thibault Delavallée authored
      Purpose of this commit is to fix and improve some model related bits of
      code:
      
       * add an ondelete cascade on some required fields;
       * make a public method private because it should be accessed only through
         controllers;
       * do not add odoobot as channel member; notably for demo data it can create
         unnecessary of noise in members and notifications;
      
      Commit linked to task ID 1941250 and PR #31453
      adcdb4e0
    • Thibault Delavallée's avatar
      [IMP] website_slides(_*): improve demo data · 2f8ea621
      Thibault Delavallée authored
      Purpose of this commit is to improve eLearning demo data. Notably links
      (links to external resources on a given slide) and quizzes (allowing to
      gain karma) are added. Some slides are added. Demo user interaction with
      eLearning is also added, such as membership and votes. Finally a channel
      is specifically kept specific to 1 single slide of type certification as
      its flow has to bypass some screens when selling pure certifications.
      
      Commit linked to task ID 1941250 and PR #31453
      2f8ea621
  5. Feb 22, 2019
  6. Feb 28, 2019
    • Pierre Paridans's avatar
      [FIX] lunch,web: display correctly list's cell with text overflow · c0f8690d
      Pierre Paridans authored
      Installing the 'lunch' module add css rules to the generic list view
      styling, modifying the styling of all the list views by the simple fact
      of being installed.
      
      The goal of those rules is that in list view a table cell with the
      o_text_overflow class should still be displayed as a table-cell (and not
      a block/inline-block).
      
      Without the lunch module a list view's cell with the o_text_overflow
      class is narrower and break the alignment between this column and the
      headers.
      
      This commit moves the necessary rule (display property) to the web
      module and apply them globally.
      
      Remark: module's css rules shouldn't override globally the one from
      'web'.
      
      Original commit: https://github.com/odoo/odoo/commit/855c6dac25fccaf9312543022001ed0b360d6e13
      
      closes odoo/odoo#31506
      c0f8690d
    • William Henrotin's avatar
      [FIX] mrp: finished moves become raw moves · abb95e46
      William Henrotin authored
      A workorder has a one2Many to stock.move to represent the production raw moves. Putting 'workorder_id' on the production finished move will set it as raw moves in the workorders
      
      closes odoo/odoo#31132
      abb95e46
    • William Henrotin's avatar
      [FIX] mrp: missing move reference · a5342daf
      William Henrotin authored
      A manufacturing order creates its raw move in an onchange when saving the form
      view. As the MO has no name at this stage, the raw moves reference stay 'New'
      even when marked as done
      This commit change the moves reference once the MO is confirmed
      a5342daf
    • William Henrotin's avatar
      [FIX] mrp: recordset have not pop() method · f3f9dd8c
      William Henrotin authored
      The pop() method is not implemented for Odoo recordset. This commit replace it by a simple 'for' loop
      f3f9dd8c
    • William Henrotin's avatar
      [FIX] mrp: remove unused code · d2951fad
      William Henrotin authored
      Commit 5ef46664 change the workorder
      model but some of the old fields was not removed. This clean all
      the occurence of these unused part of code.
      d2951fad
    • RomainLibert's avatar
      [FIX]: hr_holidays: fix typo · 86c66273
      RomainLibert authored
      closes odoo/odoo#31505
      86c66273
    • Christophe Simonis's avatar
    • Xavier Morel's avatar
      [FIX] core: order of fields in onchange of SSF · f9d3b5b7
      Xavier Morel authored
      When calling the initial (create / default_get) onchange, the SSF
      would send the list of fields in whatever order was provided by the
      fields map of fields_view_get.
      
      The web client uses view ordering, and it turns out some uses / tests
      have dependencies between onchanges (e.g. _create_payment in
      test_account_reports) which break on some orderings of the fields.
      
      Send the initial onchange using view-ordered fields in the SSF as
      well.
      
      closes odoo/odoo#31494
      f9d3b5b7
  7. Feb 27, 2019
  8. Feb 26, 2019
Loading