1. 11 Jul, 2024 40 commits
    • Yusei Tahara's avatar
      erp5_core: Print indexing document id. · f7ee67ea
      Yusei Tahara authored
      f7ee67ea
    • Xiaowu Zhang's avatar
      4e047db4
    • Xiaowu Zhang's avatar
      erp5_commerce: display translated message · 8bf477be
      Xiaowu Zhang authored
      8bf477be
    • Yusei Tahara's avatar
    • Jérome Perrin's avatar
      ERP5ReportTestCase: getObject before the try/finally · f8cf9d19
      Jérome Perrin authored
      Errors in getObject (typically, unauthorized) were hidden by another
      error in finally block, because popRequest can only be called if
      pushRequest was executed before.
      f8cf9d19
    • Jérome Perrin's avatar
      SecurityTestCase: better assertion failure for transition · ff13f2d2
      Jérome Perrin authored
      The roles were missing
      ff13f2d2
    • Yusei Tahara's avatar
      graph_editor: Support translation. · cbea53c5
      Yusei Tahara authored
      cbea53c5
    • Yusei Tahara's avatar
      Reduce rare AttributeError on Skins Tool. · b8faaeba
      Yusei Tahara authored
      Thanks to Vincent Pelletier for his help on this bug fix.
      b8faaeba
    • Roque's avatar
    • Jérome Perrin's avatar
      forge: show local_role_group in TypesTool_viewRoleInformationList · b2fcde38
      Jérome Perrin authored
      also set hide_rows_on_no_search_criterion to force displaying the list
      even without search, this is a report, we we always want to see records.
      b2fcde38
    • Xiaowu Zhang's avatar
      13c3c7c9
    • Jérome Perrin's avatar
      ProcessingNodeTestCase: also setRequest in processing_node · 8577b183
      Jérome Perrin authored
      This is done on the process running test (by
      ERP5TypeTestCaseRequestConnection) and when using timerserver loop (by
      TimerServer which calls publish_module), but this was never set in
      processing_node.
      
      Before 3b874e49 (ERP5Type/tests: review requests in tests, 2023-04-19)
      getRequest could find a request anyway, because the test pached
      getRequest to find a request from the app, but after this change
      executing activities in an instance running with runUnitTest without
      test specified failed with:
      
          Module importlib, line 37, in import_module
            __import__(name)
          Module Products.ERP5Type.dynamic.component_package, line 412, in load_module
            return self.__load_module(fullname)
          Module Products.ERP5Type.dynamic.component_package, line 379, in __load_module
            erp5.component.ref_manager.add_module(module)
          Module Products.ERP5Type.dynamic.dynamic_module, line 75, in add_module
            self.add_request(get_request())
          Module Products.ERP5Type.dynamic.dynamic_module, line 53, in add_request
            self.setdefault(last_sync, (WeakSet(), set()))[0].add(request_obj)
          Module _weakrefset, line 86, in add
            self.data.add(ref(item, self._remove))
        TypeError: cannot create weak reference to 'NoneType' object
      
      ( maybe we remove processing_node and use only timerserver, these two
      methods are more or less equivalent for simple cases and timerserver is
      closer to what a "real" zope does )
      8577b183
    • Jérome Perrin's avatar
      tests: execute `addCleanup` cleanups with ZODB connection · 14622b18
      Jérome Perrin authored
      unittest executes the cleanups after `tearDown`, after the ZODB
      connection is closed, so accessing database objects cause errors.
      
      According to python unittest documentation, it is safe to call
      `doCleanups` ourselves when we need the cleanup to be executed earlier,
      this is a typical case where we want the cleanup to be called before
      closing the database connections.
      14622b18
    • Jérome Perrin's avatar
      core: "better" default columns in Base_viewRelatedObjectListBase · 6fc2a1e9
      Jérome Perrin authored
      ID is not something we like to show to users, modification date and
      validation state can be better - this assumes that most of the
      relation are made to nodes, which typically have a validation state
      and not a simulation state.
      6fc2a1e9
    • Jérome Perrin's avatar
      ERP5Type/tests: review requests in tests · 89422a6b
      Jérome Perrin authored
      The general idea of this patch is that now that we are using
      zope.globalrequest, we no longer need to patch get_request, we can
      simply call zope.globalrequest.setRequest with the request from the
      test and restore the "real" request afterwards.
      
      To achieve this, we reuse Testing.ZopeTestCase.connections.registry,
      which already has the logic of cleaning up resources in the right place
      and use a "Request" resource that calls setRequest(test_request) and
      setRequest(real_request) when closed, so that:
       - test runs with an independant request
       - this test request is closed at the end
       - the real request is restored at the end
      
      This also fixes a bug with self.publish when runnning
      ERP5TypeLiveTestCase from portal_components of a running instance,
      after a call to self.publish the current request was lost.
      
      The testing for this revealed that ERP5TypeLiveTestCase.publish way
      of dealing with zope.security interaction was not always correct: when
      running a live test inside runUnitTest (like we do here in
      testDynamicClassGeneration), there is no security interaction. This
      was reviewed to use the high level API instead of changing directly the
      internal storage.
      89422a6b
    • Jérome Perrin's avatar
      core: expose `is_source` on `MovementHistoryListBrain` · e35e45fe
      Jérome Perrin authored
      This can be useful when making a report on movements and when we list
      properties of the movements that depend on the side but are not
      directly exposed on MovementHistoryListBrain. One use case was
      `Movement_getSpecificReference`, which shows `source_reference` when
      the brain is for the source and `destination_reference` otherwise.
      
      With this new approach, instead of guessing we record the "is_source"
      information at indexing time, when we know this for sure.
      
      This also simplifies `MovementHistoryListBrain.date` and
      `MovementHistoryListBrain.mirror_date` which no longer need to guess
      the side and fix a problem that because this guessing was done using
      `movement.getSourceUid()` - which cause security errors when users can
      not access the source of the movement.
      e35e45fe
    • Jérome Perrin's avatar
      worklfow: save state permissions sorted · 7c9fa6f1
      Jérome Perrin authored
      When editing a state permission mapping the roles were not sorted,
      because WorkflowState_getPermissionMatrixContext uses a set. Sort
      before setting the attribute, to prevent useless diffs in ZODB history
      and business template.
      7c9fa6f1
    • Jérome Perrin's avatar
      stripe: use SQLQueue to prevent dropping activities · b741cf46
      Jérome Perrin authored
      default activate() behavior is to not queue the activity if another
      activity with the same path/method_id already exist. We don't want this
      here.
      b741cf46
    • Jérome Perrin's avatar
      project: don't use deprecated assignRoleToSecurityGroup · fa59da75
      Jérome Perrin authored
      We don't even use the new updateLocalRolesOnSecurityGroups instead,
      because roles are supposed to be applied by an interaction workflow.
      fa59da75
    • Jérome Perrin's avatar
      calendar: set "proxy listbox ids" on some relation fields · 67c6876a
      Jérome Perrin authored
      to make it easier to find related documents
      67c6876a
    • Jérome Perrin's avatar
    • Jérome Perrin's avatar
      accounting: use MovementHistoryListBrain.mirror_section_title directly · efc71453
      Jérome Perrin authored
      This compatibibility script was guessing the side, but this is exposed
      in brain
      efc71453
    • Nicolas Wavrant's avatar
      erp5_core: fix addToDate when removing a month · 696331ba
      Nicolas Wavrant authored
      The way addToDate was working with dates was not good, and creating
      confusion when removing 1 month from the last days of a 31-day month, as
      the previous day had less days than the current month:
      
      date = DateTime(2023, 5, 31)
      print date
      print addToDate(date, month=-1)
      > 2023/05/31 00:00:00 GMT+2
      > 2023/05/01 00:00:00 GMT+2
      
      This was even more confusing in March, with february having only 28
      days:
      
      date = DateTime(2023, 3, 31)
      print date
      print addToDate(date, month=-1)
      > 2023/03/31 00:00:00 GMT+2
      > 2023/03/03 00:00:00 GMT+2
      
      The new behavior is to, when removing a month, if the new day of the new
      month is more than the number of days in month to default to the last
      day of the month. For exemple, removing one month from 31/05 becomes
      30/04, and from there it will add/remove the days as necessary.
      
      The real issue being that removing a month is ambiguous and can mean
      a different thing for different people.
      
      For reference, the reference implementation of timedelta in python
      doesn't support adding months:
      
      https://docs.python.org/3/library/datetime.html#datetime.timedelta
      
      I hope my solution will make the more sense in ERP5's context.
      696331ba
    • Jérome Perrin's avatar
      open_api: support requests with "something" in the request path · 28a4b64f
      Jérome Perrin authored
      For zope, a request to /erp5/person_module/person1 or
      /erp5/organisation_module/person_module/person1 can both be resolved
      and are (more or less) equivalent. This change brings support for
      similar request paths for Open API Connectors.
      28a4b64f
    • Jérome Perrin's avatar
      test_result: use monaco to edit SlapOS parameters · b30152cb
      Jérome Perrin authored
      ( until we finalize the complete integration of SlapOS parameter
      editor )
      b30152cb
    • Valentin Benozillo's avatar
    • Gabriel Monnerat's avatar
      fixup! erp5_stripe: Use activity to store stripe session in ERP5 · 2a78116b
      Gabriel Monnerat authored
      We set the module as a source to acquire roles. Also, we need to store request and response in HTTP Exchange.
      2a78116b
    • Jérome Perrin's avatar
      9e187b9c
    • Jérome Perrin's avatar
      open_api: new business template · 91e657cb
      Jérome Perrin authored
      This is a simple framework to implement services in ERP5 based on an
      OpenAPI document.
      
      A new type "Open API Type" (similar to "Base Type") is introduced,
      this is responsible for the definition of operations and types.
      The Open API document is set as text content of the Open API Type
      and can be edited from the Open API Type.
      
      For each service, a new portal type will be created. The portal type
      use OpenAPIService as class and this is responsible for serving
      requests. The process of serving requests is:
       - find the matching operation from the request method and request
         path
       - extracting request parameters and request body using the parameter
         definitions from the Open API Document
       - validate parameters and request body according to the schema from
         the Open API document
       - finding the method, this is done by using _getTypeBasedMethod with
         the operationId
       - calling the method and formatting the result or handling error.
         The default handling of errors is to reply with rfc7807 json
         responses, but it can be customized by defining an
         `handleException` type based method.
      
      Typically, the services will be created in portal_web_services. From
      there, there is also a view using a new SwaggerUI gadget to try out
      the API.
      
      What's not supported:
       - OpenAPI document in YAML format is only partially supported and
         have some limitations over JSON:
          - On python2 the order of operations is lost, the lookup of
            operations is not made in the order of the operations from the
            document. Also the operations are not in order in the SwaggerUI
            gadget.
          - The text editor does not provide rich editing of YAML
       - "partial" parameters in path elements ( /users/{user_id} is
         supported, but /documents/report.{format} is not )
       - XML (decoding of request bodies and parsing of responses) is not
         supported.
      91e657cb
    • Jérome Perrin's avatar
      accounting_l10n_sn: set reference on GAP categories · 2b059707
      Jérome Perrin authored
      We use to show ID in case reference is missing, but since many years
      this is no longer the case.
      2b059707
    • Rafael Monnerat's avatar
      erp5_open_trade: Don't archive already archived Open Orders · 62608b6a
      Rafael Monnerat authored
          If two open orders are validated on the same transaction, archivePrevious script will get the an already archived as catalog will be outdated.
      62608b6a
    • Jérome Perrin's avatar
      accounting_l10n_fr: fix exporting lines with 0 quantities · c6296906
      Jérome Perrin authored
      The fix from 7597c300 (accounting_l10n_fr: don't export
      lines with 0 quantity in FEC, 2023-03-31) was not 100% correct,
      lines with a quantity but with an asset price of 0 were still
      exported.
      c6296906
    • Jérome Perrin's avatar
      accounting_l10n_fr: fix issue with transaction using asset price · 8dd2b32d
      Jérome Perrin authored
      We used a wrong condition that was causing lines with a debit
      and asset credit (ie. different sides) to be output wrongly
      with debit and credit.
      8dd2b32d
    • Jérome Perrin's avatar
      accounting_l10n_fr: export FEC only with ASCII characters · ceb16cf8
      Jérome Perrin authored
      in 5ae0508d (accounting_l10n_fr: Workaround encoding bugs
      in Test Compta Demat, 2023-03-31) we replaced a few characters
      that were known to be problematic, but while trying on some
      other production data, we found new problematic characters.
      This shown that this approach was too "optimistic" and that we
      the safest way to have a file that is compatible with Test
      Compta Demat is to use only ascii characters, this use
      unicodedata to try to retain the original characters (so that
      "Jérôme" becomes "Jerome") and also special case € to replace
      it by "EUR"
      ceb16cf8
    • Jérome Perrin's avatar
      monaco_editor: support editing YAML · b1d3cea4
      Jérome Perrin authored
      we pass the schema already, but for now this only supports basic
      syntax highlighting
      b1d3cea4
    • Jérome Perrin's avatar
    • Jérome Perrin's avatar
      ERP5 Python Scripts: fix setParameterSignature('') · 907d0598
      Jérome Perrin authored
      programmatically calling script.setParameterSignature('') was
      setting _params to None and making it causing errors when calling
      the script
      907d0598
    • Jérome Perrin's avatar
      068b405f
    • Jérome Perrin's avatar
      accounting_l10n_fr: fix filename of FEC.xml · 3ed82eef
      Jérome Perrin authored
      > IX. – Le fichier des écritures comptables est nommé selon la
      > nomenclature suivante :
      >
      > SirenFECAAAAMMJJ, où " Siren " est le Siren du contribuable mentionné
      > à l'article L. 47 A et AAAAMMJJ la date de clôture de l'exercice
      > comptable.
      3ed82eef
    • Jérome Perrin's avatar
      accounting_l10n_fr: set a default value for PieceRef in FEC · 7e144e43
      Jérome Perrin authored
      according to https://bofip.impots.gouv.fr/bofip/9028-PGP.html/identifiant%3DBOI-CF-IOR-60-40-20-20170607#III._Donnees_devant_figurer_12
      
      > Dans le cas des écritures pour lesquelles il n’existe pas de référence
      > de pièce (par exemple, dans le cas des écritures d’à nouveau), ce
      > champ doit néanmoins être rempli. Dans ce cas précis, la référence
      > sera alors remplacée par une valeur conventionnelle définie par
      > l’entreprise. Celle-ci sera précisée dans le descriptif remis au
      > vérificateur en même temps que le fichier des écritures comptables
      > (cf. VI § 390).
      
      La valeur conventionnelle dans cet export est de donner à PieceRef la
      même valeur que EcritureNum pour les écritures sans référence de pièce.
      7e144e43