Skip to content
Snippets Groups Projects
  1. Oct 03, 2017
  2. Oct 02, 2017
    • Simon Lejeune's avatar
      [REF] stock: alert on show details if not saved · cde5b232
      Simon Lejeune authored
      It's not possible to click on the show details button if the picking is
      not saved. It's a limitation of the webclient. This commit introduces a
      waring telling the user to save the form view first.
      cde5b232
    • Nhomar Hernandez's avatar
      [FIX] sales: Set proper group on all menus to avoid basic users like a · b5de65ed
      Nhomar Hernandez authored
      warehouse basic user see all the sales app.
      
      I did not hide the main menu only because when we customize, we can use
      such menu for other purposes we just set the proper group on all first
      level menus and then by default the app is hidden if a custom module add
      a menu there without explicit groups then this will be shown again (which I
      think is the expected behaviour).
      
      Closes #19816
      b5de65ed
    • Khoi Nguyen's avatar
      [FIX] web: fix TAB key in editable list views · 59b55e22
      Khoi Nguyen authored
      Before this commit, two variables were used to store the current
      position in a list view: currentCol and currentRow. This made it
      difficult to handle incremental moves (eg: tab, shift+tab) inside a
      row, since we have to ignore all buttons. Previously, this was done by
      converting 'currentCol' to 'currentFieldIndex', but the conversion
      between the two variables was incorrect and does not appear to be
      that easy to fix. As an example, it was not possible to TAB-navigate to
      the last column of the components list when creating a BoM.
      
      This commit removes all mentions of 'currentCol' and uses
      'currentFieldIndex' instead, removing the need for conversions. The TAB
      navigation code is simpler as a result, and should now be correct.
      59b55e22
Loading