Skip to content
Snippets Groups Projects
  1. Oct 23, 2018
  2. Oct 19, 2018
  3. Oct 18, 2018
    • David Arnold's avatar
      [FIX] add res_company.sequence to base.sql · b8b33c63
      David Arnold authored
      Seems like something similar to odoo/odoo#17111 can happen on Python 2.
      The same change as #17111 is a bit involved for -stable, but this looks
      pretty harmless.
      
      Probably fixes #23781.
      b8b33c63
  4. Oct 17, 2018
  5. Oct 16, 2018
  6. Oct 15, 2018
    • Andreas Raster's avatar
      [FIX] server: ignore broken symlinks · 956b3ce5
      Andreas Raster authored
      Previously broken symlinks would cause a FileNotFoundError
      exception in the filesystem watcher thread spawned when using the
      --dev=reload argument.
      
      This problem appeared when using emacs to edit python files while
      they are being watched by an odoo instance for changes. Emacs
      creates a broken symlink as lockfile in the same directory as the
      python file that it edits.
      
      This commit makes the filesystem watcher silently ignore any
      FileNotFoundError that occurs when it tries to open a file.
      
      Fixes  #21214, closes #21215
      956b3ce5
    • Andreas Raster's avatar
      [CLA] Signature for rakete · d63de90a
      Andreas Raster authored
      d63de90a
    • Lucas Perais (lpe)'s avatar
      [FIX] product_margin: sales and purchase in invoice's currency · 8fb61cd8
      Lucas Perais (lpe) authored
      Invoice price should be adapted to the invoice currency
      Before this commit, it was not.
      
      OPW 1889997
      
      closes #27710
      8fb61cd8
  7. Oct 12, 2018
    • Simon Lejeune's avatar
      [FIX] sale_stock: return of return and delivered quantity · 0b414cb8
      Simon Lejeune authored
      The code ignored return of return when computing the delivered quantity
      of a so line (in this part of the code, if a move has a destination
      location set a customer, it'd be a return of return of a delivery).
      
      We now update the delivered quantity is the return of return as the
      `to_refund` flag enabled, meaning the user ticked the option to update
      the quantity on the so line.
      
      opw-1884683
      0b414cb8
  8. Oct 11, 2018
  9. Oct 10, 2018
  10. Oct 09, 2018
  11. Oct 08, 2018
  12. Oct 07, 2018
  13. Oct 03, 2018
  14. Oct 02, 2018
    • Nicolas Martinelli's avatar
      [FIX] sale_crm: quotes count · 695050dd
      Nicolas Martinelli authored
      - Create a SO from an opportunity, keep the status draft
        => the 'Quote(s)' number is 1 on the opportunity
      - Confirm the SO
      
      The 'Quote(s)' number is 0 on the opportunity, but when clicking on the
      stat button 1 quote is displayed.
      
      The `search_default_draft` (and the `search_default_sales` of the Orders
      stat button) are not working since the action doesn't use the
      appropriate search view.
      
      opw-1888442
      695050dd
  15. Oct 01, 2018
    • Goffin Simon's avatar
      [FIX] sale_mrp: price unit of kit · e764739d
      Goffin Simon authored
      - Create the following products in FIFO costing method and real-time
        valuation:
        Prod Final (F); Invoiced on Delivered Quantity
        Prod Comp1 (C1); Cost = 20
        Prod Comp2 (C2); Cost = 10
      - Create the BOM Kit for F:
        2 Unit(s) of C1
        1 Unit(s) of C2
      - Create a SO for 3 Unit(s) of F
      - Validate SO and picking
      - Create the invoice and validate
      
      The price unit taken into account for F in the anglo-saxon accounting
      entry is:
      20 + 10 = 30
      => entry in Stock Output Account is 3 * 30 = 90
      
      while it should be:
      (2 * 20) + (1 * 10) = 50
      => entry in Stock Output Account is 3 * 50 = 150
      
      This should finally fix issues corrected with:
      9a7ed7ca: price unit multiplied by the qty sold (*)
      f1fdb97e: price unit taking into account only 1 unit of each
      component
      
      (*) In the use case solved, the price unit was:
      (6 * 20) + (3 * 10) = 150
      => entry in Stock Output Account is 3 * 150 = 450
      
      opw:1886216
      e764739d
    • Odoo Translation Bot's avatar
  16. Sep 30, 2018
  17. Sep 28, 2018
  18. Sep 26, 2018
  19. Sep 25, 2018
Loading