Skip to content
Snippets Groups Projects
  1. Oct 23, 2019
  2. Oct 22, 2019
  3. Oct 18, 2019
  4. Oct 21, 2019
    • jvm-odoo's avatar
      [FIX] web: fix form view "More" button · 3a5886d3
      jvm-odoo authored
      
      In form views, when the window size is too small, a "More" button
      appears and it should contain the overflow buttons.
      
      On all browsers, the "More" dropdown doesn't contain the expected
      amount of buttons, so it is shifted on the second line.
      
      Before this commit:
      
          - The "More" dropdown doesn't contain the expected amount of
            buttons, so it is shifted on the second line.
      
      After this commit:
      
          - The "More" dropdown contains the expected amount of buttons
            and it is not shifted on the second line anymore.
      
      OPW-2079694
      
      closes odoo/odoo#38853
      
      Signed-off-by: default avatarLucas Perais (lpe) <lpe@odoo.com>
      3a5886d3
  5. Oct 16, 2019
    • Romain Derie's avatar
      [FIX] website: prevent traceback if xml homepage view has no page · 1d4dd200
      Romain Derie authored
      
      The XML file homepage view record is not supposed to be deleted as it is used
      to bootstrap newly created website.
      
      If that view is deleted, everything's fine. But if that view's page is not
      found (m2o link broken somehow), then the code would crash.
      
      This would only appear if the user is playing in the backend in technical but
      it seems to happen more than it should.
      
      This commit will prevent the code to crash in such a case.
      
      Step to reproduce:
      1. Go to settings > technical > views (debug)
      2. Find the xml homepage view (with xml_id)
      3. Go to its website.page and break the m2o view_id
      4. Try to create a new website, it will crash
      
      opw-2081894
      
      closes odoo/odoo#38897
      
      Signed-off-by: default avatarJérémy Kersten (jke) <jke@openerp.com>
      1d4dd200
  6. Oct 21, 2019
    • Romeo Fragomeli's avatar
      [FIX] web: not able to scroll in long grouped kanban · 500cea0a
      Romeo Fragomeli authored
      
      Due to commit odoo/odoo@f4031c62f97fa170b74b0d13a0856b7d58ed4da6
      it was not more possible to scroll in a grouped kanban.
      
      Steps to reproduce:
      * Go to project app
      * Select a project with a few numbers of task
      * Create as need new task to have more task than visible on the screen
      * Try to scroll (BUG)
      
      Note: we also fix the swipe in empty column
      
      opw-2080491
      
      closes odoo/odoo#39103
      
      Signed-off-by: default avatarAdrien Dieudonné (adr) <adr@odoo.com>
      500cea0a
  7. Oct 15, 2019
    • Christophe Monniez's avatar
      [REF] packaging: use docker to build packages · aabac72a
      Christophe Monniez authored
      
      Actually, docker is used to test Linux packages once they are built.
      The packaging process is done on the host system where package.py is
      run.
      
      Consequences:
          * difficult to reproduce an exact same build on another host
          * changing a Debian/Ubuntu target version means some upgrade steps
            on the build host (mix that with the fact that the host also
            could build old Odoo versions)
          * Fedora rpm package is built on an Ubuntu system (which is not a
            real problem but it could be)
      
      With this commit, the package.py utility is refactored to use Docker
      containers to build the Gnu/Linux packages.
      
      closes odoo/odoo#39091
      
      Signed-off-by: default avatarChristophe Monniez (moc) <moc@odoo.com>
      aabac72a
  8. Oct 20, 2019
  9. Oct 16, 2019
  10. Oct 18, 2019
  11. Oct 01, 2019
  12. Oct 17, 2019
  13. Oct 16, 2019
    • Fanny He's avatar
      [FIX] stock_account: validate invoice for product with non-reconcilable account · 5687da33
      Fanny He authored
      
      With Anglo-Saxon accounting, invoices with stock_moves on a product
      having 'real_time' valuation cannot be validated: there is a user error
      when the interim account is not reconcilable.
      
      We modify _anglo_saxon_reconcile_valuation so that we do not try to reconcile
      when the account is not reconcilable.
      
      OPW-2080180
      
      closes odoo/odoo#38867
      
      Signed-off-by: default avataroco-odoo <oco-odoo@users.noreply.github.com>
      5687da33
    • Lucas Perais (lpe)'s avatar
      [FIX] web: custom filter on date[time] with changing the operator · 27d649e8
      Lucas Perais (lpe) authored
      
      On a list view, Add a custom filter on a date
      Change the operator to "in between"
      Change it back to "equal"
      Apply the search
      
      Before this commit, the label of the filter still was in between
      Whereas it should have been "equal to ..."
      
      After this commit, the label of the filter is correct
      
      OPW 2085951
      
      closes odoo/odoo#38705
      
      Signed-off-by: default avatarLucas Perais (lpe) <lpe@odoo.com>
      27d649e8
    • Lucas Perais (lpe)'s avatar
      [FIX] web: date[time] custom filter format · 88e193ee
      Lucas Perais (lpe) authored
      In a list view, create a custom filter involving a date or datetime field
      
      Before this commit, the domain that was sent to the server
      contained the date or datetime as the pure string
      representation that Moment.js constructs
      that is a ISO compliant one, containing info on timezone
      
      After this commit, the format is the one of the server, in UTC
      and NOT ISO compliant. Also, the format for date is dealt with
      
      OPW 2085936
      88e193ee
    • fw-bot's avatar
      [FIX] base: Allow default email_from by database · 5010ce63
      fw-bot authored
      
      It is possible to get to a situation where Odoo would try to send an email without a `From:` header address.
      
      In such case, you're unlucky if you don't have access to the underlying deployment, or if you use multiple databases in a single Odoo instance and each of them uses a different mail configuration.
      
      To make this configuration easier to use and cover those use cases, here I add support for a new ICP: `mail.default.from`. It will be used when present, so it shouldn't affect existing deployments. When present, it will allow a admin to configure the default sending address just with Odoo itself.
      
      closes odoo/odoo#38833
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      5010ce63
  14. Oct 15, 2019
  15. Oct 14, 2019
    • Lucas Perais (lpe)'s avatar
      [FIX] account: reconciliation widget fetch correct reconciliation models · 68d71b8e
      Lucas Perais (lpe) authored
      
      Have a reconciliation model that applies to some particular journals
      And that will match some of those journals' lines
      The field journal should be filled too
      (this field is only the default journal that a proposition will be filled with)
      
      Open the reconciliation widget on a given journal, within the list of
      possible journal (from the account dashboard)
      
      Before this commit there was a crashed. This was caused by the fact that
      one of the lines that should be displayed had a reconcile model that was not fetched beforehand
      
      After this commit, there is no crash as all relevant reconcile
      models are fetched
      
      Note that, on reconcile models, the field journal_id is just there to prefill
      the propositions it will create
      
      corrects commit e5c80714
      
      OPW 2084942
      
      closes odoo/odoo#38726
      
      Signed-off-by: default avatarLucas Perais (lpe) <lpe@odoo.com>
      68d71b8e
  16. Oct 15, 2019
  17. Oct 14, 2019
Loading