Skip to content
Snippets Groups Projects
  1. Jul 23, 2021
  2. Aug 03, 2021
  3. Aug 02, 2021
  4. Aug 04, 2021
  5. Aug 03, 2021
  6. Aug 02, 2021
    • Nasreddin Boulif (bon)'s avatar
      [FIX] account: Fallback on self.env.user language if not user_id on PO · 4b7569ce
      Nasreddin Boulif (bon) authored
      
      Steps to reproduce:
      
        - Install purchase and accounting apps
        - Set the database to a language that is not English
        - Create a purchase order
        - Remove purchase representative from PO (otherwise, no issue)
        - Action -> Create Vendor Bill
        - From the vendor bill, print invoice
      
      Issue:
      
        The pdf is in English (country names, date labels, etc...)
      
      Cause:
      
        If invoice type is `in_invoice` or `in_refund`, it will use the
        `invoice_user_id` language (object.invoice_user_id.sudo().lang).
        In the above case, there is no invoice_user_id on invoice.
      
      Solution:
      
        While preparing invoice values, set invoice_user_id to
        self.env.user.id if not user_id on PO.
      
      opw-2510134
      
      closes odoo/odoo#74341
      
      Signed-off-by: default avatarbon-odoo <nboulif@users.noreply.github.com>
      4b7569ce
  7. Jul 24, 2021
  8. Jul 13, 2021
  9. Aug 03, 2021
    • Nathan Marotte (nama)'s avatar
      [FIX] mrp : Operation of BOM with duration 0 was set to 60 · 331b4c3a
      Nathan Marotte (nama) authored
      
      Issue: When preparing a work order for a product on which the bill of material had a line with duration set to 00:00, the work order expected_duration for that line was set to 60:00
      
      Steps to reproduce :
       1) Enable Work Orders under Manufacturing Settings
       2) Create a Bill of Material for a new product "test"
       3) On the BoM Form, go to Operation, add a line
       4) Set an operation, a work center and for Duration Computation, set it to manually and 00:00 minutes and save
       5) Create a manufacturing order for that product, check the Work Orders tab of the Manufacturing order form, the duration is set to 60:00
      
      Why is that a bug:
       Since we can set a duration of 00:00 in the Bill of Material, it means the work order can take 00:00 as expected duration, however it was set to 60.0 since 00:00 is evaluated as 0, which is considered `False` in a conditional assignment that was catching the case where the variable was `None`, which it can never be since it is a fields.Float that will be 0 in case of a `None` or `False`
      
      opw-2603928
      
      closes odoo/odoo#74626
      
      Signed-off-by: default avatarArnold Moyaux <amoyaux@users.noreply.github.com>
      331b4c3a
    • Achraf (abz)'s avatar
      [FIX] l10n_in_purchase_stock: GST Treatment on purchase_order with reordering rules · 5494b697
      Achraf (abz) authored
      
      When a purchase order is generated via the scheduler with a reordering rule, the gst_treatment is not retrieved
      
      opw-2540090
      
      closes odoo/odoo#74569
      
      Signed-off-by: default avatarAchraf <abz-odoo@users.noreply.github.com>
      5494b697
    • Nasreddin Boulif (bon)'s avatar
      [FIX] web: resize only target column in list view + test · 0cc1a586
      Nasreddin Boulif (bon) authored
      
      Steps to reproduce:
      
        ! Chrome version >= 91.0.4472.114 (no issue on <= 90.0.4430.51)
        - Install Accounting module
        - Go to Customer Invoices and create a new one
        - Add a customer with a very long name, add product then save
        - Go back to list view
        - Ensure that the column "Customer" does not display the full
          customer name
        - Try to resize "Customer" column
      
      Issue:
      
        All columns are resized.
      
      Cause:
      
        Since Chrome 91.0.4472.114, `max-width` on column cause
        an issue with table.
        The issue is triggerd when a <th> width size
        exceeds the maxWidth size.
        Also, when resizing, the maxWidth of current collumn stays the same.
      
      Solution:
      
        On resizing, update also, maxWidth with new width value.
      
      opw-2585307
      
      closes odoo/odoo#74591
      
      X-original-commit: cc6c61d4
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      Signed-off-by: default avatarbon-odoo <nboulif@users.noreply.github.com>
      0cc1a586
    • Touati Djamel (otd)'s avatar
      [FIX] point_of_sale: Translate the popup number buttons · ace4ac05
      Touati Djamel (otd) authored
      
      Steps to reproduce the bug:
      - Change the language in odoo preferences (e.g: FR)
      - Go to pos app > Configuration > Point of sale
      - Choose anyone > Edit > Enable “Global discounts” option
      - Open new session with the same pos
      - Click on “Discount”
      - The button "cancel", “confirm” and "ok" are not translated
      
      opw-2615309
      
      closes odoo/odoo#74614
      
      Signed-off-by: default avatarpimodoo <pimodoo@users.noreply.github.com>
      ace4ac05
    • Nicolas (vin)'s avatar
      [FIX] account: Block archival of journals with auto post entries · 54b09df4
      Nicolas (vin) authored
      
      At the moment, it is possible to archive a journal for which some
      entries are still waiting to be auto-posted in the future.
      Add a constrains to avoid make sure that it is no longer possible,
      since it shouldn't.
      
      Task id #2585454
      
      closes odoo/odoo#74536
      
      Signed-off-by: default avatarLaurent Smet <smetl@users.noreply.github.com>
      54b09df4
  10. Aug 02, 2021
  11. Aug 03, 2021
    • Adrien Dieudonne's avatar
      [FIX] web: pdfjs: restore download button in attachment viewer · 91c55ab8
      Adrien Dieudonne authored
      Due to the following PR: https://github.com/odoo/odoo/pull/70092
      
      
      the download icon wasn't present in the document viewer.
      We had to do this to avoid crash in mobile apps (Android and iOS).
      
      But even if there are multiple other ways to download file, some
      of our users are used to use pdf js download button that was previously
      hidden.
      
      So in this commit, we restore it on desktop as we can now correctly
      handle the error on Android tablets and hide this button on iOS tablets.
      
      Note that pdfjs button is not needed on mobile as we doesnt' have
      attachements preview on small screens. Another button is available
      when you open the file.
      
      Steps to reproduce:
      - Go to Accounting
      - Customer Invoices
      - After printing it once, the download icon wasn't present in pdfjs preview
      
      closes odoo/odoo#74606
      
      Signed-off-by: default avatarAdrien Dieudonné (adr) <adr@odoo.com>
      91c55ab8
  12. Jul 12, 2021
  13. Aug 02, 2021
    • Nathan Marotte (nama)'s avatar
      [FIX] stock: Wrong rounding on returning a delivery with different UoM · 075c53c7
      Nathan Marotte (nama) authored
      
      Issue: When making a return for a transfer, the precision_rounding was taken from the UoM of the product given in the transfer, but the quantity was taken in the UoM of the product defined on its form
      
      Steps to reproduce :
       1) Create a UoM "Hundreds", rounding precision 1 (has to be different than "Dozen"), Bigger than the reference Unit of Measure, ratio 100
       2) Create a test product with "Dozen" as UoM
       3) Inventory > Operations > Transfers > Create
       4) Add test product, Demand=2, Unit of Measure=Hundreds
       5) Validate
       6) Create a Return for that transfer
       7) Quantity is set to 17 Dozen instead of 16.67
      
       Why is that a bug:
       The quantity to return is `quantity = stock_move.product_qty` (in UoM of the product form) but the rounding is made with rounding precision `stock_move.product_uom.rounding` (in UoM of the line of the transfer) which can be different in case of manual transfer creation for example
      
      opw-2543304
      
      closes odoo/odoo#74576
      
      X-original-commit: 4f962846
      Signed-off-by: default avatarArnold Moyaux <amoyaux@users.noreply.github.com>
      075c53c7
  14. Jun 24, 2021
  15. Aug 02, 2021
  16. Jul 27, 2021
    • Nasreddin Boulif (bon)'s avatar
      [FIX] point_of_sale: Parse quantity like a float · 6a265e2c
      Nasreddin Boulif (bon) authored
      
      Steps to reproduce:
      
        - Install "Point of sale" and "l10n_fr" modules
        - Switch to french Company
        - Go to user preference and change language to "French"
        - Create a new POS with french certification installed
        - Run the POS
        - Try to change quantity of a product
      
      Issue:
      
        Impossible to encode a quantity with decimals (add a line at 0 instead)
      
      Cause:
      
        The popup return value is a string.
        The value is used before coverting it to float.
      
      Solution:
      
        Parse quantity value like a float before using it.
      
      opw-2608707
      
      closes odoo/odoo#74303
      
      Signed-off-by: default avatarbon-odoo <nboulif@users.noreply.github.com>
      6a265e2c
  17. Aug 02, 2021
  18. Jul 26, 2021
  19. Jul 30, 2021
    • Achraf (abz)'s avatar
      [FIX] account: Reverse tags sign when using reconciliation model · 3fce26a5
      Achraf (abz) authored
      
      When reconciling bank statement using manual operation (write-off), the tags generated on the journal entry have their sign reversed between manual creation (using the account and tax field in the reconciliation widget) and automated creation using a button (created from reconciliation model).
      
      This pr adds the inversion of the tags in the case of the use of a reconciliation model
      
      opw-2540090
      
      closes odoo/odoo#74427
      
      Related: odoo/enterprise#19979
      Signed-off-by: default avatarLaurent Smet <smetl@users.noreply.github.com>
      3fce26a5
  20. Aug 01, 2021
  21. Jul 30, 2021
  22. Apr 01, 2021
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] product_email_template: avoid traceback when referring to "object" · 67bdd9ca
      Andrea Grazioso (agr-odoo) authored
      
      1. Activate 'Deliver Content by Email' in the Sales>Configuration>Settings
      2. Create a mail template with Product Template for 'Applies to' and
      a dynamic field (e.g. ${object.company_id.name}) in the body
      3. Add this mail template on a [DEMO] product 'Automatic Email at
      Invoice' field, in the Sales tab
      4. Create an invoice with [DEMO], confirm it.
      5. If the ID of the invoice does not exist as a product.product, you get a
      traceback
      
      The reason is that the model used for the template rendering is the
      one specified on the template, but the res_id given to the composer
      is the one from the invoice.
      
      opw-2476169
      
      closes odoo/odoo#68339
      
      X-original-commit: 9c7d7f01
      Signed-off-by: default avataragr-odoo <agr-odoo@users.noreply.github.com>
      67bdd9ca
  23. Jul 29, 2021
    • Nicolas Lempereur's avatar
      [FIX] website: special character ok in menu label · e788008f
      Nicolas Lempereur authored
      
      Edit a website menu label with:
      
          & < > " ` '
      
      This is what is shown after saving:
      
         &amp; &lt; &gt; &quot; &#x60; &#x27;
      
      This is happening since ea4dbcd2: characters &, <, >, ", `, and ' are
      now always escaped. Before that commit, only < and > where escaped and
      only when an image was inside the label.
      
      With this change, we unescape the label when we are editing a menu.
      
      opw-2609413
      
      closes odoo/odoo#74429
      
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      e788008f
  24. Jul 30, 2021
  25. Jul 28, 2021
  26. Jul 30, 2021
    • Benjamin Vray's avatar
      [FIX] website, *: prevent bottom fixed elements from hiding buttons · 1cdd1f2f
      Benjamin Vray authored
      
      *: web, website_livechat, website_sale_comparison
      
      Before this commit, bottom fixed elements (e.g. the livechat button)
      hid the buttons to go to the next step in website sale when these
      buttons are located at the bottom of the page, on some screen sizes.
      
      After this commit,
      
      - A bottom fixed element is hidden if this element hides a button at
      the bottom of the page.
      
      - Bottom fixed elements are hidden if a modal is open
      to prevent it to hide buttons or any important part of the modal.
      
      task-2501400
      
      closes odoo/odoo#69296
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      1cdd1f2f
  27. Jul 29, 2021
  28. Jul 28, 2021
  29. Jul 26, 2021
  30. Jul 29, 2021
Loading