1. 17 Aug, 2021 1 commit
  2. 16 Aug, 2021 2 commits
    • Nicolas Wavrant's avatar
      erp5_web_service: add also prefix when writing temporary file · 94d2ec4c
      Nicolas Wavrant authored
      See merge request !1481
      94d2ec4c
    • Nicolas Wavrant's avatar
      erp5_web_service: add also prefix when writing temporary file · 005273dd
      Nicolas Wavrant authored
      In practice, SFTP-based client processes often use a prefix based
      filter when retrieving files on the server.
      
      ie: there is one SFTP server between 2 systems, used for different
      exchanges. The SFTP client will do something like (found in the wild):
      process1(file_list=sftp.list(path, prefix='PROCESS_1'))
      process2(file_list=sftp.list(path, prefix='PROCESS_2'))
      
      Our implementation of temporary_file_on_write only sets a suffix,
      which doesn't work for the previous SFTP client. So let's add also a
      prefix when writing temporary files.
      005273dd
  3. 11 Aug, 2021 2 commits
  4. 10 Aug, 2021 7 commits
  5. 09 Aug, 2021 2 commits
  6. 06 Aug, 2021 1 commit
  7. 05 Aug, 2021 4 commits
  8. 02 Aug, 2021 1 commit
    • Jérome Perrin's avatar
      odt_style: Fix hierarchy of ReportSection(title=) · 1e82948c
      Jérome Perrin authored
      When using report sections with title, this is supposed to create outline
      in PDF, but this seem to became broken somewhere in the last 10 years.
      
      This repair by using text:h instead of text:p and by setting
      text:outline-level
      1e82948c
  9. 29 Jul, 2021 3 commits
  10. 28 Jul, 2021 9 commits
  11. 27 Jul, 2021 3 commits
    • Xiaowu Zhang's avatar
      erp5_core: fix "Update Security Roles" on workflow · 738b7e0c
      Xiaowu Zhang authored
      See merge request !1469
      738b7e0c
    • Jérome Perrin's avatar
      core/mrp: make sure getAggregatedAmountList return amounts in order · 1c1ec0bc
      Jérome Perrin authored
      For some reports displaying transformations result to end users, it's much
      better to have amount ordered in the same order as the model lines.
      
      AmountGeneratorMixin was already sorting the lines, but the order was lost
      during aggregation, because we used a dict, which on python2 does not
      retain order. Switch to using an OrderedDict to keep the order.
      1c1ec0bc
    • Jérome Perrin's avatar
      Minimal fixes for xhtml front page RSS reader gadget · dade8d98
      Jérome Perrin authored
      This makes RSS reader somehow usable for support request RSS.
      
      One important think to keep in mind is that because of a bug in how URL characters are (not) escaped in the dialog to edit character is that editing the feed URL should be edited from knowledge pad module, and not directly from front page. Also this should be edited by clicking Edit button, not by pressing enter.
      
      See merge request !1467
      dade8d98
  12. 26 Jul, 2021 3 commits
  13. 21 Jul, 2021 2 commits