Skip to content
Snippets Groups Projects
  1. Nov 28, 2019
  2. Nov 27, 2019
    • Goffin Simon's avatar
      [FIX] website_sale: Wrong price_unit in the cart · 0ef0f337
      Goffin Simon authored
      
      Steps to reproduce the bug:
      - Let's consider two companies C1 and C2
      - Let's consider website W
      - Activate multi-company
      - Disable common contact book and common catalog
      - Switch the superuser in company C2
      - Activate pricelist
      - Create a public pricelist PL for C1 and available on W
      - Set up a pricelist with compute price = formula and  based on = cost
      - Go Sales > Configuration > tick Multiple Sales Prices per Product and tick Prices computed from formulas
      - Create a portal user PU and set PL on him
      - Create a product P with cost = 10$ and publish it on W
      - Set up the product valuation as: automated
      - Log as PU and go on the shop
      - Put P on your cart
      
      Bug:
      
      The price of P was 0$ instead of 10$
      
      opw:2092695
      
      closes odoo/odoo#40974
      
      X-original-commit: 40d3fa50
      Signed-off-by: default avatarSimon Goffin (sig) <sig@openerp.com>
      0ef0f337
    • Antoine Prieels's avatar
      [IMP] hw_drivers: Dual customer display · 12569b0e
      Antoine Prieels authored
      
      Customer displays were all using the same URL and therefore could only
      show the same products. We now use different URLs per screen.
      
      Two screens connected to the same IoT Box can now display customer
      displays from different POS.
      
      closes odoo/odoo#40427
      
      Taskid: 2123511
      Signed-off-by: default avatarQuentin Lejeune (qle) <qle@odoo.com>
      12569b0e
    • Antoine Prieels's avatar
      [IMP] iot: Dual screen support for RPI4 · 5886c3a8
      Antoine Prieels authored
      We now support the RPI4 which has 2 micro-HDMI outputs, while the
      prvious driver only supported one display. We add support for a second
      display.
      
      TaskID: 2123511
      5886c3a8
  3. Nov 28, 2019
  4. Nov 27, 2019
    • Nicolas Martinelli's avatar
      [FIX] web: date warning · 2b43780f
      Nicolas Martinelli authored
      
      - Set the computer TZ so that it is UTC day + 1. For example, set to
        'Australia/Adelaide' and perform the tests after 3:00 pm
      - Go to Account > Customers > Invoices
      - Set the Invice Date to today in the TZ
      
      You receive the warning 'This date is on the future...'
      
      The comparison of a UTC date without time `currentDate` is inconsistent
      with `moment()`, which is not UTC and has a time set.
      
      After playing around with `.utc()` and `startOf('d')` with no luck, we
      decided to give up the idea of making `getTZOffset()` enter the game and
      simply compare the string formatted values.
      
      opw-2093186
      
      closes odoo/odoo#40982
      
      X-original-commit: f9eec97c
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      2b43780f
    • jvm-odoo's avatar
      [FIX] http_routing: fix context language used when not available · f3e9ca13
      jvm-odoo authored
      
      A customer reported a problem when he deleted a language on the
      website app.
      
      In some cases, if you go on the odoo's generated website as a public
      user let's imagine the following url: website.com/en_GB
      
      The lang is saved in a cookie and sent to the context.
      
      If you delete the language from the website languages (without
      deactivating it) and you go on website.com as a public user,
      the method will try to use the context or the cookie value which is
      'en_GB' and it crashes.
      
      This commit makes sure that the language is available
      
      OPW-2129580
      
      closes odoo/odoo#40792
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      f3e9ca13
    • Katherine Zaoral's avatar
      [ADD] l10n_ar: Be able to validate the cbu number no matter the stdnum version · 9c389525
      Katherine Zaoral authored
      
      If avaliable will use the stdnum.ar.cbu.validate functionality, if not
      we defined our own validate method.
      
      closes odoo/odoo#40632
      
      Signed-off-by: default avatarJosse Colpaert <jco@openerp.com>
      9c389525
    • qsm-odoo's avatar
      [FIX] web: fix wrong convertion of 8-digit hex to RGBA color · fdfce09e
      qsm-odoo authored
      
      closes odoo/odoo#40965
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      fdfce09e
    • fw-bot's avatar
      [FIX] mrp: unit_factor computation · 79976600
      fw-bot authored
      
      Updating the quantity to produce in a production order will recompute
      each raw move's unit factor. The issue was this computation did not
      take care of the previously product quantity. The unit factor was wrong
      and so the next created workorder lines get the wrong quantity.
      
      Example:
        - 1 components for 1 finished product (unit_factor = 1)
        - Create a production for 2 finished product -> quantity to consume = 2
        - Produce 1 then change quantity to produce to 3 -> quantity to consume = 3
          and quantity done = 1 but unit factor became 1.5
      
      closes odoo/odoo#40932
      
      X-original-commit: 71ea4d4488a085030ae07ca7e85cafc21f06af3b
      Signed-off-by: default avatarArnold Moyaux <amoyaux@users.noreply.github.com>
      79976600
  5. Nov 14, 2019
  6. Nov 13, 2019
  7. Nov 27, 2019
  8. Nov 22, 2019
  9. Nov 21, 2019
  10. Nov 27, 2019
  11. Nov 26, 2019
  12. Nov 27, 2019
  13. Nov 22, 2019
    • jvm-odoo's avatar
      [FIX] sale_crm: fix crm quotation context · e8d91e4a
      jvm-odoo authored
      
      Reproduce the issue
      
          - Install CRM & sale_crm
          - Create an opportunity
          - Create a quotation from the opportunity
      
          The name of the draft is the opportunity's name instead of "New"
      
          - Add a "Storage Box" to the quotation, for instance
          - Confirm the quotation
          - Check the delivery note
      
          The name of the delivery note is the opportunity's name instead of
          WH/OUT/...
      
      Cause
      
          This issue is caused by 4c9c249c. It seems that we pass an extra
          default_name in the context.
      
      This commit removes the extra default_name from the context.
      
      OPW-2122928
      
      closes odoo/odoo#40671
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      e8d91e4a
  14. Nov 25, 2019
    • Nicolas Lempereur's avatar
      [FIX] web_editor: update attribute of edition container · 17b0fb04
      Nicolas Lempereur authored
      
      In most use case, when we edit the website we have a situation such as:
      
      ```
      <div id="wrap" branding-attributes="...">
          <section class="mycontent">hi!</section>
      </div>
      ```
      
      When we modify a part, we replace all child nodes of the branded
      element.
      
      But if we had more complex content such as:
      
      ```
      <div id="wrap">
          <section class="mycontent" branding-attributes="...">ho!</section>
          <t t-call-assets="web.assets_common" t-js="false" t-css="false"/>
      </div>
      ```
      
      we have a t-call inside the div#wrap, so branding is distributed to
      child that could have attribute modified (eg. changing background).
      
      Then if `<section/>` node is saved, the possibly modified attributes
      are lost.
      
      Without the change, the added test fails with:
      
       '<div class="nice">hoi</div>' not found in '...<div>hoi</div>...' :
       saved element attributes are saved excluding branding ones
      
      opw-2122947
      closes #40345
      
      closes odoo/odoo#40828
      
      X-original-commit: 71b20a24
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      17b0fb04
  15. Nov 27, 2019
    • Laurent Smet's avatar
      [FIX] account: Fix reconciliation access rights with Invoicing · 0288adb0
      Laurent Smet authored
      
      As the group_account_invoice doesn't have the access rights to unlink the
      account.partial.reconcile/account.full.reconcile, there was impossible for
      the user to undo a reconciliation.
      
      closes odoo/odoo#40890
      
      X-original-commit: c7d51acf07f7d6c417921b68fcc89cfae9657888
      Signed-off-by: default avatarLaurent Smet <smetl@users.noreply.github.com>
      0288adb0
    • Nicolas Martinelli's avatar
      [FIX] stock: confusing error message · 76b72ab5
      Nicolas Martinelli authored
      
      In case of a picking type where stock move lines are not shown, clicking
      on 'Put in Pack' without 'Done' quantitites set shows a confusing error
      message.
      
      closes odoo/odoo#40920
      
      Related: odoo/enterprise#6901
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      76b72ab5
    • Nicolas Martinelli's avatar
      [FIX] stock_barcode: put in pack in receipt · d3a7b0e1
      Nicolas Martinelli authored
      - Activate product packing
      - Create a PO for a stockable product, validate
      - In the barcode interface, go to the created picking
      - Set the product quantity
      - Click on 'Put in Pack'
      
      An error is raised: 'All the products currently reserved in the picking
      are already in a pack...'
      
      In the regular interface, the procedure is to create the move lines
      manually, therefore setting a quantity done. However, this is not
      possible in the barcode, and `move_line_nosuggest_ids` is always empty.
      
      We introduce a special use case to bypass this in the case of the
      barcode view.
      
      opw-2127637
      d3a7b0e1
  16. Nov 26, 2019
  17. Nov 25, 2019
    • Nicolas Lempereur's avatar
      [FIX] crm,hr_recruitment: highlight and show others · d4d57d4c
      Nicolas Lempereur authored
      
      When clicking on stat button "Meetings" on a partner, just highlight the
      partner meetings as is done for similar stat button instead of having
      a domain that hides other event (so when creating meeting, we can take
      into account other existing meetings).
      
      A similar change with same reasoning has been done for "Meetings" stat
      button of hr.applicant records.
      
      opw-2131494
      closes #40812
      
      closes odoo/odoo#40891
      
      X-original-commit: 957e7eb7
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      d4d57d4c
  18. Nov 26, 2019
Loading