- 20 Sep, 2019 5 commits
-
-
Vincent Pelletier authored
This breaks matrix index consistency. Also, call isBasePricePerSlice rather than introspecting wrapped method arguments - the only wrapped method is _setBasePricePerSlice anyway ! Also, trigger SupplyCell_updateSliceBasePrice as it depends on isBasePricePerSlice value on this line, and it just changed, and that workflow does not trigger on line changes (which is a bug). Also, get rid of a trivial local variable.
-
Vincent Pelletier authored
-
Vincent Pelletier authored
Rather than deleting them to just immediately create new ones with the same ids but different uids. Also, modernise code and follow naming conventions and coding style.
-
Vincent Pelletier authored
-
Vincent Pelletier authored
"self._m" may trigger "implicit self argument" magic. Follow how the rest of this class accesses this property.
-
- 19 Sep, 2019 3 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
- 18 Sep, 2019 4 commits
-
-
Rafael Monnerat authored
-
Ivan Tyagov authored
-
Jérome Perrin authored
This was comparing the two selected documents in random order, which caused some test failures sometimes but also was not user friendly. Now the oldest should always be on the left and newest on the right. Also drop Base_getObjectPathFromSelection which became not used.
-
Jérome Perrin authored
also remove these links that are no longer valid
-
- 17 Sep, 2019 25 commits
-
-
Julien Muchembled authored
The error was found with MariaDB 10.4, which returns results (of a request without ORDER BY) in a different order than previous versions.
-
Julien Muchembled authored
We do not chunk at this level. Neither our code nor requests encodes the body this way and waitress (WSGI) considers the request is corrupted. It worked so far because Medusa ignores this header field.
-
Kazuhiko Shiozaki authored
-
Ivan Tyagov authored
Set int_index at Test Result creation time as it is really needed for showing graph, test order execution in case of Scalability Tests and use int_index in scripts.
-
Ivan Tyagov authored
Test Result Line do not have properly set int_index, instead title have been used in past. Until properly set (int_index) use current way for sorting. This is especially important for Scalability Tests's graphics.
-
Nicolas Wavrant authored
This MR introduces a second way of calculating the base price of a resource using "Base Price Quantity Step". Currently, for a resource, we could define on a Supply Line "Quantity Steps", and set a price for each of these steps. Then, depending on the quantity of the resource, the price of the unique matching step would apply. For exemple : | Quantity Step Range | Price for the step| |------------|---------| | 0 -> 10 | 10€ | | 11 -> 20 | 9€ | | 21 -> inf | 8€ | With the current method, for an Order of 15 products, the 2 range "11 -> 20" would apply, the unit price for the products would be 9€, and the total price would be 15*9 = 135€. The new method of calculating would apply the _Price for the step_ __to, and only to, all items of this step__. Which means, for an order of 15 products, the 10 first products would have a unit price of 10€, and the 5 next products would have a unit price of 9€, which makes in the end a total price of 145€, and a base price of 9.66€. /reviewed-on nexedi/erp5!896
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
and add necessary values for calculating price per slice
-
Nicolas Wavrant authored
To be sure that Cells are updated correctly when the pricing method is chosen
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
-
Nicolas Wavrant authored
Also remove explanation_only which is dead code
-
Vincent Pelletier authored
-
Vincent Pelletier authored
This reverts commit 68d0c366. There are other codepaths which call _postCopy without going through __duplicate. For example: manage_renameObject (called on parent by setId).
-
Vincent Pelletier authored
-
- 16 Sep, 2019 3 commits
-
-
Valentin Benozillo authored
@nexedi This will add a form setting field 'action title', in order to setup the text content of the form action button. So far the action button text content is the title of the form which can be inconvenient some times. If 'action title' is not set-up it fallback to the form title. ![Screenshot_2019-09-04_at_18.50.04](/uploads/e3b49369f347c64a14fa0218c5923c9f/Screenshot_2019-09-04_at_18.50.04.png) /reviewed-on nexedi/erp5!925
-
Julien Muchembled authored
-
Valentin Benozillo authored
In testFormDialogActionTitle, check if it's well fallback to form title
-