Skip to content
Snippets Groups Projects
  1. Nov 16, 2017
  2. Nov 14, 2017
  3. Nov 10, 2017
    • Haresh Shyara's avatar
      [IMP] account, sale, l10n_ch, purchase: replace mail composer inheritance by message_post override · c7d6097a
      Haresh Shyara authored
      Currently composer is inherited in those four modules to add a specific
      behavior when sending the invoice / quotation by email. Purpose is to
      mark it as sent, using a magic context key.
      
      This commit keeps the feature but changes the implementation. It is now
      done by overriding message_post which should be the entry point for all
      message-related features.
      c7d6097a
    • Dipali Tank's avatar
      [IMP] sale: allow to edit invoice and delivery addresses even if in sale state · 9b25167c
      Dipali Tank authored
      According to FP: It should be possible to edit the billing address, and
      delivery address on the SO, even if it's confirmed. (Not if locked)
      9b25167c
    • Christophe Simonis's avatar
      ebb6d1e7
    • Quentin De Paoli's avatar
      [FIX] account: set default tax upon installation of a localization · d86da5de
      Quentin De Paoli authored
      (defined as the one with the lowest sequence in the chart template)
      d86da5de
    • Géry Debongnie's avatar
      [FIX] web: prevent test interference · 350973ff
      Géry Debongnie authored
      In the view dialog test suite, a few tests created a parent widget, then
      created a view dialog, and destroyed the view dialog at the end, but not
      the parent widget.  As a result, the environment was not properly
      restored at the end.
      
      In this case, the test 'SelectCreateDialog correctly evaluates domains'
      changed the session (with user_context: {uid: 2}), and this made other
      tests crash (web_editor test in particular)
      350973ff
    • Christophe Monniez's avatar
      [FIX] db: remove usage of get_dsn_parameters · 27128f26
      Christophe Monniez authored
      get_dsn_parameters may return in some edges cases (like on runbot)
      and empty value for the user.
      So it should not be used here, instead, a SQL query is able to provide
      the currently connected user.
      Also, get_dsn_parameters is new in psycopg 2.7.
      27128f26
    • Aaron Bohy's avatar
      [FIX] web(_editor): enable mobile tests · 9bc50094
      Aaron Bohy authored
      This rev. introduces a new test suite meant to test the webclient
      components on mobile devices. The key 'config.device.isMobile' is
      forced to true in this test suite, so that mobile specific JS files
      are properly executed, which isn't the case in the classic JS test
      suite (setting isMobile to true in the test definition is too late,
      as the JS files are already processed).
      
      For now, this new test suite contains a single test, which was
      skipped until this rev. as it couldn't be executed in the classical
      JS test suite.
      
      Both suites are executed at each build of the runbot, and they
      can be manually executed from the webclient as well (via the debug
      manager).
      9bc50094
    • hch-odoo's avatar
    • Quentin De Paoli's avatar
      [IMP] account, usability: little big details · 1d515fcd
      Quentin De Paoli authored
      * Fiscal positions: add stat button for 'Active' (instead of checkbox )
      * Customer Invoice line form view no need for purchase order remove(or hide in customer invoice) and put Anallytic tag field in form view
      * Currencies sorted based on active field (so we can see all active currency first)
      * Improve graph for bank and cash journals on dashboard: based on ending balance and statement lines.
      
      Was PR #14833. Was task 29541
      1d515fcd
    • Joren Van Onder's avatar
      [FIX] point_of_sale: take into account extra variant prices · b4debf7e
      Joren Van Onder authored
      list_price is the base price of a product which does not include
      price_extra.
      
      Note that in the backend the pricelist computation uses
      
      product.price_compute('list_price')
      
      to compute the base price on which to apply the pricelist. For
      product.product this seems to be equivalent to the lst_price computed
      field.
      
      The original list_price field is unused but has not been removed to
      avoid breaking any 3rd party code that is using this field.
      
      opw-781629
      b4debf7e
  4. Nov 09, 2017
    • Christophe Simonis's avatar
      [FIX] test_performance: bump query count · 26257ad7
      Christophe Simonis authored
      When `rating` is installed, a few more queries are executed...
      26257ad7
    • Christophe Simonis's avatar
      [FIX] test_performance: bump query count · e74ef6cf
      Christophe Simonis authored
      Recent changes in tracking fields add a new query. Adapt tests.
      e74ef6cf
    • Christophe Simonis's avatar
    • Christophe Simonis's avatar
    • Yenthe V.G's avatar
      [IMP] stock: Show title instead of id in breadcrumb · acd26691
      Yenthe V.G authored
      Closes #20801
      acd26691
    • Christophe Simonis's avatar
    • Christophe Simonis's avatar
      d171f282
    • Martin Trigaux's avatar
      [FIX] hr_expense: verify the constrain server side too · f8540501
      Martin Trigaux authored
      The groups were set only on the view which does not prevent abuses.
      The fact that users can bypass the groups on the view is not critical as the
      changes are logged but this should be improved nevertheless.
      
      In master, proper record rules should be set.
      
      Closes #20427
      f8540501
    • Christophe Simonis's avatar
      9c634b5b
    • Géry Debongnie's avatar
      [FIX] web: do not lose onchange info in some rare cases · ae4501da
      Géry Debongnie authored
      Here is a situation where we had a problem:
      - a form view with a one2many field, which has no inline views
      - the (non inline) list view has a field A, and is not editable
      - the (non inline) sub form view has fields A and B, with an onchange on
        B which modifies A
      
      In that case, the user could do this:
      - go to edit mode
      - click on 'add' a new one2many line
      - change the value of B in the form view, this changes the value of A
      - click on save to close the modal form view
      - click on the new o2m record to reopen the modal form view
      - rechange B
      => the onchange does not work
      
      The explanation is that when we reopen the modal, we update the known fields
      information, but we had to perform a fieldviewget to fetch the list
      view, so we have a full knowledge of the fields.  However, the code did
      not update the fields info (because it uses _.default), which means that
      the onchange information contained in the form view is lost.
      
      Note: the test system had to be adapted to more closely simulate what
      actually happens.  In particular, the onchange flag is no longer added
      by the mock server, since it should be done by the data manager, like
      'real' code.  This change broke the basic model tests, which had to be
      modified accordingly, by setting manually the onchange flag.
      ae4501da
    • Christophe Monniez's avatar
      [IMP] server,db: coherently handle PGUSER env variable · b2a126da
      Christophe Monniez authored
      When Odoo is started with a db_user using 'postgres', the process
      exits with a status 1. However, this can be bypassed when the
      PGUSER environment variable is used.
      This commit will prevent the usage of the 'postgres' for the
      environment variable too.
      Also, when trying to list db's, various methods where used to find a
      suitable postgres user to get this list.
      In fact, as the db cursor is available, a user is already at work.
      So, in order to avoid code duplication (e.g. verify user from
      environment variables), this commit removes those various method
      and get the db user from the cursor.
      b2a126da
    • Simon Lejeune's avatar
      [FIX] stock: _assign_picking · a29ec800
      Simon Lejeune authored
      Commit[1] tried to improve the usability of the pick + pack + ship + a
      fixed procurement group scenario by erasing the origin value on the
      groupped ship that refered wrongly to only the first downstream document
      (and in fact refered to multiple).
      
      We forgot the scenario into which we add a sale order line. In this
      scenario, we also go through `_assign_picking` and, if an existing open
      picking is found, we also wiped its partner and origin value, which was
      indeed wrong.
      
      We fix this scenario by being more precise on the erasing condition.
      
      [1] 4a5f0765
      a29ec800
    • Adrien Dieudonne's avatar
      [FIX] web: create in editable grouped list views · fe4f63d3
      Adrien Dieudonne authored
      Before this commit, an issue occured when you tried to
      create a new record in a editable grouped list view.
      A new line was created with an undefined group.
      
      Editable grouped list views are not supported.
      So now, we have to switch on the form view when
      you click on create. This behavior is already implemented
      when you open an existing record.
      fe4f63d3
    • Goffin Simon's avatar
      [FIX] website_sale: Wrong apply of the fiscal positions when choosing shipping address · a63ecee4
      Goffin Simon authored
      In 11.0, this part of the code has been removed.
      
      When choosing the shipping address in the cart, if a tax has been mapped
      by a fiscal position, the subtotal was not correctly computed.
      
      opw:778405
      a63ecee4
Loading