1. 02 Aug, 2022 5 commits
  2. 28 Jul, 2022 1 commit
  3. 13 Jul, 2022 1 commit
    • Jérome Perrin's avatar
      accounting: fix grouping dialog loosing section category on next page · 0d8242de
      Jérome Perrin authored
      In xhtml_style, just after clicking next or previous page in the listbox
      buttons, the values selected in 'Section Category' and 'Section Category
      Strict' were not used, because they were used from request and not from
      as normal script parameters.
      
      This fixes only the xhtml_style version, ERP5JS has another problem that
      dialog fields values are reset when going to next page, so it would also
      need this problem to be fixed.
      0d8242de
  4. 12 Jul, 2022 1 commit
  5. 07 Jul, 2022 2 commits
  6. 01 Jul, 2022 1 commit
  7. 27 Jun, 2022 1 commit
  8. 24 Jun, 2022 1 commit
  9. 23 Jun, 2022 2 commits
  10. 22 Jun, 2022 3 commits
  11. 21 Jun, 2022 4 commits
  12. 20 Jun, 2022 2 commits
  13. 15 Jun, 2022 10 commits
  14. 14 Jun, 2022 4 commits
  15. 13 Jun, 2022 2 commits
    • Jérome Perrin's avatar
      dms: disable open button in PDF viewer · c54c4bc0
      Jérome Perrin authored
      It does not make any sense to open PDF files from this gadget.
      
      Also remove duplicate line with documentProperties
      c54c4bc0
    • Jérome Perrin's avatar
      dms: support password protected PDFs in viewer · 407b7727
      Jérome Perrin authored
      This is intended to store sensitive documents that users will only
      be able to view from ERP5, but not to easily print or download.
      
      To use this, some customization is needed. First, PDF needs to be
      saved with a password. Then, PDF_getContentPassword type based method
      needs to be customized to return the password.
      
      When using this, we use different password for each document, by
      deriving a password from a master key using document properties (such
      as document reference for example)
      407b7727