Skip to content
Snippets Groups Projects
  1. Feb 05, 2019
  2. Feb 04, 2019
  3. Feb 05, 2019
  4. Feb 04, 2019
  5. Feb 01, 2019
  6. Feb 03, 2019
  7. Feb 01, 2019
    • wan's avatar
      [IMP] account: add chatter in account.journal and account.move · ceb05489
      wan authored
      Task 1915154
      The chatter will mainly be used for communication / messages
      Add the chatter to account.move
      
          Do not generate message at the record creation
          Do not track any field
      
      closes odoo/odoo#29274
      ceb05489
    • Prakash Prajapati's avatar
      [FIX] purchase_requisition_stock: onchange and picking type · 8a25e58e
      Prakash Prajapati authored
      Issue:
      - Create a RFQ for a stockable product
      - Try to validate
      - A required field "deliver to" (picking_type_id) is not set
      
      Rev [1] moved the stock related part of purchase_requisition to
      purchase_requisition_stock.
      It implements an onchange on the purchase order setting the
      picking_type_id of the one of the requisition. When no requisition is
      set, it wiped the default one.
      
      We fix the issue by only using the picking type of the requisition if a
      requisition is actually set.
      
      [1] 826f927a
      Task: 1935077
      
      closes odoo/odoo#30685
      8a25e58e
    • Sébastien Theys's avatar
      [IMP] portal,sale: toggle sign button depending on signature state · ff368fdb
      Sébastien Theys authored
      Before this commit, it was possible for the user to click on the Sign button
      even when the signature area was empty, which would lead to an error message.
      Now we disable the button when the area is empty.
      
      Related to enterprise PR: https://github.com/odoo/enterprise/pull/3535
      
      PR: #30653
      ff368fdb
    • Lucas Lefèvre's avatar
      [IMP] hr_payroll: add multi contract support · 20bc2bba
      Lucas Lefèvre authored
      Purpose
      =======
      
      We would like to be able to manage multi contracts payslips and contract transitions.
      
      Specification
      =============
      
      General flow:
      1/ Benefits are generated based on contracts's calendar.
      2/ When validating additionnal benefits, calendar.attendances are created in the contract's calendar
      3/ Create one payslip per contract in state [open|pending|close]
      4/ For each payslip, generate worked day lines based on the contract's calendar
      
      New Constraints:
      1/ An employee cannot have more than one contract at the same time (excluding draft, closed and cancelled contracts).
      2/ A leave cannot overlap multiple contracts.
      3/ A contract cannot have starting and ending dates such that a leave become in the middle of
         two contacts.
      
      New state for a contract: Incoming. It means it's ready and will be running soon.
      An incoming contract automatically becomes 'Running' if the start date is passed (cron)
      
      Number of hours and days are always correct (according to the contract's calendar) on payslips as the
      flow starts from the contract's calendar.
      However, it is not correct in the Time Off app because it's counted based on the employee's calendar.
      The number of days/hours for hr.leaves should be computed according to
      the contract at the time of the leave.
      e.g. If I currently work full time and I request 2 weeks off next month where I'll be working only
      3 days/week and 5hours/day (other contract), It should count 6 days and 30 hours.
      
      - in hr.benefits form view show the contract (below employee field)
      
      TaskID: 1903483
      
      closes odoo/odoo#30181
      20bc2bba
    • William Henrotin's avatar
      [IMP] mrp: lot restriction from the second WO · f5bca867
      William Henrotin authored
      The user have to enter the final lot number on workorder when he process
      a component. The purpose is to register the use of components for
      tracability report. However currently the user could create different
      final lot during the process. It would result in inconsistencies since
      components could be used for lot/SN not produced and a wrong
      tracability.
      
      This commit ensure that once a lot/sn is created during a WO, it has to
      be used in the following workorders.
      
      closes odoo/odoo#27984
      f5bca867
    • Arnold Moyaux's avatar
      [IMP] stock, mrp: hook on ml to reservate · 35617523
      Arnold Moyaux authored
      Currently _action_assign will try to add new reservation to existing
      move lines. With mrp it could be problematic with the following usecase:
      - 2 product A in stock
      - Create a MO for 2 final product tracked and consuming 4 products A
      - Reserve -> It will create a ml with 2 product A.
      - Product -> It will fill the ml with 2 quantity done for first lot
      - Add 2 product A in stock (4 in total)
      - Reserve -> It will increase the reservation on the existing move line.
      
      It's a problem since the new produce (wizard or wo) will create a new
      move line because the existing move line have a lot_produce_id and can't
      be used for a different lot/SN anymore.
      
      This commit only increase reservation if the move line has not been used in
      order to create a lot.
      35617523
    • William Henrotin's avatar
      [FIX] mrp: uom management in workorder · 24f05151
      William Henrotin authored
      Usecase : create a bom in unit with a component tracked by serial and
      quantity to produce = 1 unit
      
      Create a manufacturing order with a UoM different that the bom one
      (e.g. Production request = 1 dozen)
      
      Launching the produce wizard or a workorder will show to the user
      a workorder line with 12 component units to consume. But as the
      component is tracked by serial. We would like to get 12 differents
      lines of 1 unit. This commit take care of this specific case.
      24f05151
    • William Henrotin's avatar
      [IMP] mrp: add production lines · 5ef46664
      William Henrotin authored
      To record a production via a manufacturing order, the user can either
      use the produce wizard or the workorders views. Those two objects was
      technically different but act more or less the same. This commit aims to
      merge the similar behaviors in common code
      
      We introduce two new abstract models :
       1. Abstract workorder to share workorders and the produce wizard
       2. Abstract workorder lines to share active_move_line on workorder and
          product_produce_line on the wizard. Those abstract line keep the information
          about the quantities and lot number to put on component move lines and
          finished product move lines
      
      Task : 1891864
      5ef46664
  8. Jan 31, 2019
  9. Feb 01, 2019
    • mgh-odoo's avatar
      [FIX] web: unaccent default params fixed · 43888662
      mgh-odoo authored
      purpose of this commit is to remove default parameter of "casesensitive",
      because default parameter is ES6's feature. it's not supported in IE9.
      
      closes odoo/odoo#30751
      43888662
  10. Jan 31, 2019
    • Christophe Simonis's avatar
    • qsm-odoo's avatar
      [REF] website: merge `BodyManager` and `WebsiteRoot` · e4e1c01f
      qsm-odoo authored
      Following the new editor's merge at https://github.com/odoo/odoo/pull/29775,
      'web_editor.BodyManager' stopped being used by the editor and the
      related file was moved to website without being renamed or considered.
      
      Hopefully, the editor replaced it by something else so the `BodyManager`
      makes no sense on its own anymore. This commit merges its features
      with the only other component which still used it: `WebsiteRoot`
      
      See upcoming improvements at https://github.com/odoo/odoo/pull/29442
      (related to task-1932066)
      
      closes odoo/odoo#30740
      e4e1c01f
    • Christophe Simonis's avatar
      f927c68d
    • Christophe Simonis's avatar
      [FIX] web: correct tempusdominus lib patching · cb8fefa8
      Christophe Simonis authored
      Oversight of previous forward-port.
      cb8fefa8
    • Christophe Simonis's avatar
    • Martin Trigaux's avatar
      [IMP] models: remove orphan translations · ba58888c
      Martin Trigaux authored
      
      Same logic as for the mail.message or ir.attachment, when a record is deleted,
      drop the ir.translations linked to it as well.
      
      Fixes odoo/odoo#25105
      
      Co-authored-by: default avatarRaphael Collet <rco@odoo.com>
      
      closes odoo/odoo#30721
      ba58888c
    • Vincent Schippefilt's avatar
      [FIX] web: fixed leak on image fields · 2e57f90b
      Vincent Schippefilt authored
      During the unit tests, I have noticed that the test window was doing a
      lot of work after the test were completed, it was using CPU and using RAM
      in jigsaw pattern. Eventually after being left alone for a few hours,
      the window would just crash.
      
      This was due to an unlimitted chain of deferred running when an image
      field had a load error.
      
      The situation is as such:
      1. The image is put in the DOM with an onError handler
      2. There is an error, as the image is a dummy text for the tests
      3. The onError is called, it clears the image field, then calls _render
      4. _render re-adds an image with the same onError handler   <----------
      5. The onError is called - again - it clears the image field - again  |
         (wich does nothing this time because the value is the same) -      |
         then calls _render - again                                         |
      6. The second time _render is called, go to step 4 --------------------
      
      ... In the meantime, the widget has been destroyed by the test,
      so it should not do anything anymore.
      
      This fix breaks the loop, as well as bind the onError handled with 'one'
      instead of 'on'.
      
      closes odoo/odoo#30716
      2e57f90b
    • Deep Patel's avatar
      [FIX] point_of_sale: unbind keydown event when close product screen · d989016a
      Deep Patel authored
      closes odoo/odoo#30671
      d989016a
    • Fabien Pinckaers's avatar
      [FIX] account: Undistributed Profits/Losses · c50e82c1
      Fabien Pinckaers authored
      If no Undistributed Profits/Losses account can be found, Odoo tries to
      create one with number '999999'. However, such an account number might
      have been created manually by a user. In this case, the account creation
      fails.
      
      opw-1932701
      
      closes odoo/odoo#30719
      c50e82c1
    • Nicolas Lempereur's avatar
      [FIX] web: click/studio work in colored kanban tile · c4d22267
      Nicolas Lempereur authored
      When a colored kanban tile is colored, and there is a color attribute on
      the tile HTML element indicating a color field (eg. when a kanban view
      with color dropdown is created in studio), there was a HTML element over
      the whole tile preventing to click on links or other sub element of it.
      
      This HTML element is just a transparent used for accessibility to
      contain the tile color intelligible name, so this commit just size it
      over the area of the color (currently in base bootstrap ~3px at the left
      of the tile).
      
      opw-1932283
      closes #30717
      c4d22267
    • Yenthe666's avatar
      [IMP] account,sale{_management}: set name on create elements · 5ae4941b
      Yenthe666 authored
      For easier xpath
      
      Followup of odoo/odoo#30534
      
      closes odoo/odoo#30711
      5ae4941b
    • Thibault Delavallée's avatar
      [REF] survey: improve existing answer management in invite wizard · 0748e134
      Thibault Delavallée authored
      Purpose of this merge is to clean the way we manage exiting answer when
      inviting partners or emails to participate to a survey.
      
      When wizard finds that some recipients are already linked to answers it
      displays a bootstrap warning with the name of duplicate recipients and
      display the field allowing to choose between two options
      
       * resend: send the same token and answer;
       * new: create a new token and answer;
      
      It will be useful notably with certifications support as number of attempts
      to succeed is limited. Allowing people to retake certifications should be
      made clear to survey managers.
      
      This commit is linked to task ID 1935176 and PR #30689 .
      0748e134
    • Thibault Delavallée's avatar
      [IMP] survey: rename and improve statistics fields · 0e91762c
      Thibault Delavallée authored
      Purpose is to clean a bit those fields. A field holding the number of send
      invitations is added as well as a button. It allows to directly jump on
      answer linked to an invite which helps dealing with private surveys.
      
      This commit is linked to task ID 1935176 and PR #30689 .
      0e91762c
    • Thibault Delavallée's avatar
      [FIX] survey: correctly flag answers done with invite · 35df807d
      Thibault Delavallée authored
      A field exists to differentiate answers done manually through frontend of
      survey and answers created through invitation. The field was not correctly
      set by the invite wizard. This commit fixes it.
      
      This commit is linked to task ID 1935176 and PR #30689.
      35df807d
  11. Jan 30, 2019
    • Alexandre Kühn's avatar
      [FIX] mail: open 'My Activities' from systray activity menu · 24ba5ae2
      Alexandre Kühn authored
      Before this commit, when clicking on the activity view icon
      from an item in the systray activity menu, the activity view
      had no search filter by default.
      
      This commit now auto-select 'My Activities' in the activity
      view when redirected from the systray activity menu.
      
      closes odoo/odoo#30702
      24ba5ae2
  12. Jan 31, 2019
  13. Jan 30, 2019
Loading