1. 29 Nov, 2021 9 commits
  2. 26 Nov, 2021 2 commits
  3. 24 Nov, 2021 2 commits
  4. 19 Nov, 2021 2 commits
  5. 18 Nov, 2021 1 commit
    • Xiaowu Zhang's avatar
      product/Workflow&erp5_workflow_test: fix can't access workflow state after change State Variable · 37fbef7d
      Xiaowu Zhang authored
      we have such error:
      ....
      if context.getValidationState() in ["draft", "deleted", "cancelled", "archived"]:
        Module Products.ERP5Type.Accessor.WorkflowState, line 60, in __call__
          return wf._getWorkflowStateOf(instance, id_only=1)
        Module Products.ERP5Type.Core.Workflow, line 609, in _getWorkflowStateOf
          state_id = 'state_' + status.get(self.getStateVariable(), None)
      TypeError: cannot concatenate 'str' and 'NoneType' objects
      37fbef7d
  6. 17 Nov, 2021 2 commits
  7. 16 Nov, 2021 1 commit
  8. 15 Nov, 2021 1 commit
  9. 12 Nov, 2021 2 commits
  10. 10 Nov, 2021 1 commit
  11. 09 Nov, 2021 4 commits
  12. 08 Nov, 2021 2 commits
  13. 04 Nov, 2021 3 commits
  14. 02 Nov, 2021 1 commit
  15. 27 Oct, 2021 1 commit
  16. 26 Oct, 2021 4 commits
  17. 25 Oct, 2021 1 commit
  18. 22 Oct, 2021 1 commit
    • Jérome Perrin's avatar
      core: Extend Category import with an option to force deletion of categories in use · 78cf1c94
      Jérome Perrin authored
      Category spreadsheet import did not delete categories if some documents
      where related to these categories. While this may make sense when using
      this import in site with already some data, in many cases, we want to
      be able to delete the categories, so that the result is that the category
      tree match the imported spreadsheet.
      
      This extend the dialog to support a new "force delete" mode that delete
      categories even if they are use, leaving the documents using categories
      with broken relations.
      78cf1c94