- 23 Jun, 2020 23 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
Do not access form submission REQUEST from the listbox list method, as it is rendered asynchronously in ERP5JS
-
Romain Courteaud authored
-
Romain Courteaud authored
This reverts commit 35b2c024.
-
Romain Courteaud authored
-
Romain Courteaud authored
Allow edition in the new UI
-
Romain Courteaud authored
-
Romain Courteaud authored
This make everything slow as hell and prevent to quickly save.
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
Example: <h2 class="foo">bar</h2> => <h3 class="foo">bar</h3>
-
Romain Courteaud authored
Improve consistency with document view
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Jérome Perrin authored
-
Jérome Perrin authored
We were using many different terms every for "username", this is an attempt to use a consistent term every where for login and a few other terms used for logging in and resetting password See merge request nexedi/erp5!1164
-
Jérome Perrin authored
As a follow up of nexedi/erp5!1158 , now that stock browser supports inventory conversion, the old converted inventory report is not longer needed. The reason for removing instead of fixing is that this report was using approaches that have no equivalent in ERP5JS interface (select in the module and run a report based on selection, listbox domain tree), so we could repair it for old ui only, but we thought it would be better to remove it and improve stock browser further. One reason this was broken is that it was using `SimulationTool.getAllInventory` which does not support brain attributes from `SimulationTool.getInventoryList`, so dynamic attributes like `node_title` were not displayed correctly. This adds a warning on `getAllInventory` docstring. This method has another user so we don't remove it. See merge request nexedi/erp5!1162
-
Jérome Perrin authored
Make stock browser a dialog where user can select the node category, for compatibility with ERP5JS Introduce a preference to select the node category by default. Allow to select quantity unit / metric type in the dialog to get converted inventories. See merge request !1158
-
Jérome Perrin authored
Uploaded the content of https://github.com/nicolaskruchten/pivottable/tree/v2.23.0/dist/ using web dav and ran Alarm_checkSkinCache This version allow sorting and fixes an XSS vulnerability
-
Jérome Perrin authored
Browsers (at least chrome) saves the textarea content and restore it when going back or resurecting a closed tab, which prevents loosing unsaved work. This browser feature does not work in "rich" javascript editors, but this trick of syncronizing the rich editor content to a hidden textarea seem to makes it work.
-
Jérome Perrin authored
This is an emergency commit to repair failing tests
-
Jérome Perrin authored
use "Slideshow" for now. "Slide Show" would also be OK, the discussion about what's the best term is still ongoing, this is an emergency commit to repair tests.
-
- 22 Jun, 2020 5 commits
-
-
Jérome Perrin authored
We fixed login forms to use consistently "Username", some translation did not have message for "Username", but only for "user name". Add missing "Username" messages, with same translation as existing one for "User name"
-
Jérome Perrin authored
with erp5_credential it's a bit more than password reset, because there's also a feature to recover the username for a given email, but all this can be named "Recover your Account". That was the term already used in ERP5JS
-
Jérome Perrin authored
Use consistent term as in PreferenceTool_viewChangePasswordDialog. In dialogs the field label show "what information is in the field" not "what the user is supposed to do with this field"
-
Jérome Perrin authored
Other login related dialogs ( PasswordTool_viewEmailPassword , ERP5Site_viewCredentialRecoveryLoginDialog , PasswordTool_viewResetPassword ) all use Username. Login_view/my_reference uses "User Login", but that's maybe OK, because the context is different and there's also "User Password" on the same form.
-
Jérome Perrin authored
this has been merged in erp5_officejs
-
- 19 Jun, 2020 2 commits
-
-
Romain Courteaud authored
This gadget only works in ERP5JS, as it depends on multiple ERP5JS only gadgets. Some functionnalities have not been backported for now: * image upload, which seems broken on xhtml style * test template (I was not able to trigger something from the UI) Normally, it could be possible to create an OfficeJS app with this editor.
-
Kazuhiko Shiozaki authored
This functionality is enabled only if 'trusted-proxies' configuration value is ('0.0.0.0',) by putting the following in zope.conf : trusted-proxy 0.0.0.0
-
- 18 Jun, 2020 5 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
This report have been broken for years and does not work in new UI, now that stock browser support inventory conversion this report is no longer needed.
-
Jérome Perrin authored
formulator does not seem to like generator for listfield items
-
Jérome Perrin authored
getConvertedInventoryList is deprectated and use mergeResults which does not support brain classes, so the brain.node_title was no longer correct. Use a simpler approach, same as Resource_getInventoryList ("stock browser"), ie: getFutureInventoryList to get all future stocks + getCurrentInventory and getAvailableInventory for each brain. It's a bit less efficient because we now do 2 getInventory for each line instead of 3 getInventoryList merged, but that should be enough. Also: - use float fields to format numbers properly - activate domain tree for site (instead of showing all nodes)
-
- 17 Jun, 2020 2 commits
-
-
Georgios Dagkakis authored
this 'relative_url | ascending' sort can lead to killer queries and it is of no use
-
Jérome Perrin authored
Convert the amounts in inventory list view, the movement history list views still show in movement unit for simplicity.
-
- 16 Jun, 2020 3 commits
-
-
Jérome Perrin authored
At the same time: - don't cast to int() in macro, but expect caller to pass already correctly formatted values for *_inventory - document macro like it was done for erp5_pdm_ui_test
-
Jérome Perrin authored
This was never counting movement, but the number of inventory brain that the getInventoryList should return. Document this macro and rename argument everywhere.
-
Jérome Perrin authored
-