- 29 Sep, 2020 9 commits
-
-
Lu Xu authored
-
Lu Xu authored
-
Lu Xu authored
-
Lu Xu authored
-
Romain Courteaud authored
Add a new document in the history while trying to show its latest state Use this command on the module's list and worklist, to come back to the expected page when done on a module.
-
Arnaud Fontaine authored
-
Arnaud Fontaine authored
ZODB Components: There is no need for `description` and `source_reference` to be RecordedProperties. * Not considered for `modified` state (dynamic_class_generation_interaction_workflow). * `source_reference` sets only once at import from filesystem.
-
Jérome Perrin authored
-
Jérome Perrin authored
-
- 28 Sep, 2020 4 commits
-
-
Arnaud Fontaine authored
This implements Products import compatibility based on Component.source_reference using existing import hooks so that Products.ERP5.Document.Person for example is importable (actually returning erp5.component.document.Person module). This only works with non-FS modules (IOW when the ZODB is accessible and portal.portal_components is available).
-
Jérome Perrin authored
This test (just like all legacy filesystem tests) does not use business template dependencies but just install business templates in the order from getBusinessTemplateList, but business templates are not listed in correct order. It use to be OK (which warnings), but erp5_test_result can no longer be installed without erp5_project, so review installation order to install erp5_project earlier.
-
Tatuya Kamada authored
See merge request nexedi/erp5!1222
-
Tatuya Kamada authored
Tabular Data Tool is a Tool to handle tabular data (2-dimentional table data) in erp5. The tabular data type is currently a plain pandas DataFrame. It is intended to use with ERP5 Reports to create spread sheets (ODS/Excel). With Tabular Data Tool, we can do those things on reporting: - transform dict-list, portal-catalog-result and document-list into a tabular data - joining/grouping/sorting the tabular data - using vectorizing function to optimise time consuming reports
-
- 25 Sep, 2020 22 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
Catalog seems to correctly handle the OR parameters. Do not lose the possible external `query` parameter.
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
Test jumping to the same context. Test also direct form rendering configured as jump action.
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
This allows getting stable URL which can be used in ERP5JS to highlight the current jump
-
Romain Courteaud authored
-
Jérome Perrin authored
This test uses pinDateTime to create an history of test results where tests have been executed in order test suite 1, 2, 3. This is done using this pattern: now = DateTime() ... # do several things that may actually take more than one second self.processTest("test suite 1", "r0=a", node_title="COMP0-Node1") self.pinDateTime(now + 1.0/86400) self.processTest("test suite 2", "r0=a", node_title="COMP1-Node1") self.pinDateTime(now + 2.0/86400) self.processTest("test suite 3", "r0=a", node_title="COMP1-Node1") My guess is that we take "now" too early, and when we add 1 second to this now variable, this may actually be going back in time sometimes, effectively creating test suite 2 before test suite 1. Assign now to current date after doing all the affectTestSuite calls should solve this.
-
Arnaud Fontaine authored
Portal Type as Classes: Interaction Workflows methods could be improperly generated because of 58d4ab8e. 1. Add Interaction on _setSourceReference() to `Document Component`. 2. generatePortalTypeClass() is called recursively and an inner `Document Component` Portal Type class is created without any accessor holder. => As __bases__ is (klass, GetAcquireLocalRolesMixIn) since 58d4ab8e but loadClass() was not updated to reflect this, Portal Type Workflow Methods were generated on the inner Portal Type Class where _setSourceReference() is not available and registerWorkflowMethod() creates a WorkflowMethod calling Base._doNothing.
-
- 24 Sep, 2020 5 commits
-
-
Sebastien Robin authored
-
Sebastien Robin authored
The performance of a module is much less impacted by the number of objects than before, at least for kind of total we have in tests (about 1000 objects)
-
Sebastien Robin authored
-
Jérome Perrin authored
Round the amounts line by line when validating transactions balances and showing the totals on an accounting transaction. Even though float field configurations do not allow users to input transactions where amounts uses more digits that what makes sense for the selected currency, we had cases where some transactions generated by custom scripts were "too precise" and passed the validation because unlike in all reports where we display sum of rounded values, the check was only rounding the sum, which cause some transactions with 1.00 on one side and 0.333333 0.333333 and 0.333333 on the other side to be valid. The scripts used to display sums on an accounting transaction had the same problem, they were also showing the rounded sum and not the sum of rounded values.
-
Jérome Perrin authored
Always use textwrap.dedent implicitly so that we don't have to do it in every test and disable the way of making multi lines scripts by passing multiple arguments. Now there's only one way to do and every tests use the same way
-