- 09 Apr, 2018 5 commits
-
-
Jérome Perrin authored
Report content and also notification subject must be translated. The attachment filename at this point is not translated, but it would be nice to have I feel.
-
Jérome Perrin authored
by evaluating it in a translationContext
-
Jérome Perrin authored
Some report sections may be using translation.
-
Jérome Perrin authored
Localizer.get_selected_language is only functional in response to user requests. Saving it in Base_computeReportSection was already too late because it's already an activity request.
-
Jérome Perrin authored
This code was slightly different in three places: * Base_activateSimpleView: only use request.form.items() * Base_activateReport: use request.items() * Base_computeReportSection: use request.items() request.items returns all items from request.other, request.form and request.cookies. In all cases, we are interested in request.form, so that report runs with the same user input in request. We want to restore restore request.other for Base_computeReportSection , but it does not harm in other cases. We always drop cookies to fix #20180220-1DBF516 (as a consequence the request will not strictly be identical, but rendering reports should not depend on cookies)
-
- 06 Mar, 2018 1 commit
-
-
Jérome Perrin authored
Implement the remaining tasks from nexedi/erp5!173 and fix [#20170709-17309B6](https://nexedi.erp5.net/bug_module/20170709-17309B6) Backport of nexedi/erp5!580 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/16
-
- 15 Feb, 2018 5 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
only covers interface compliance and high level parts of sending
-
Jérome Perrin authored
User triggering action to send SMS does not have view permission on Gateway
-
Jérome Perrin authored
after using Base_setDefaultSecurity to initialize security
-
Jérome Perrin authored
Implementation dependant parameters, such as message type or quality, must be defined by the gateway class, not in the common ShortMessage_send script. This should make it easier to switch implementations. Also: * send method is expected to be called once per recipient. I guess we prefer to isolate messages than to batch send messages efficiently. * send method expect relative url of sender and reciever documents, so that it can decide which properties to use. * drop `sender_title` parameter, now the gateway implementation decide what to use. * drop `test` parameter. For simulation mode, set simulation mode on the gateway instance * sms.send() no longer accept direct from_url / to_url / body message. It only supports sending what's defined on document properties. * SMSTool_afterSend will be called with message_id parameter, not message_id_list * Split interfaces in two SMS Sending / SMS Receiving.
-
- 27 Dec, 2017 3 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
Backport nexedi/erp5!519 ( while still WIP ) /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/13
-
Jérome Perrin authored
Backport nexedi/erp5!535 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/14
-
- 22 Dec, 2017 3 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
Because source reference is non editable on PaymentTransactionGroup_view and reset by Delivery_afterClone
-
Jérome Perrin authored
This workflow is also used on web sites and web sections. Usually, we never delete data in ERP5, but keeping old categories and old websections are sometimes a problem, because tegories and web sections' IDs have a meaning. Expired state already provides similar functionality that the deleted state we usually have on workflows. It's anyway "possible" to delete: Managers just switch to ZMI to delete, non managers use "cut and paste" trick. ( see also comments in scripts/deleteDocument )
-
- 06 Dec, 2017 7 commits
-
-
Jérome Perrin authored
backport nexedi/erp5!515 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/12
-
Jérome Perrin authored
This is enabled for title and description only, because that's usually what we put on "external" documents such as invoices. By "resource" here it means products, services, components and their individual variations
-
Jérome Perrin authored
backport nexedi/erp5!449 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/11
-
Jérome Perrin authored
This way, code mirror shows the history of editions.
-
Jérome Perrin authored
getTextContent maybe overloaded by subclasses, for example in TextDocument it checks that users can access document in raw format.
-
Jérome Perrin authored
-
Jérome Perrin authored
-
- 04 Dec, 2017 16 commits
-
-
Jérome Perrin authored
backport nexedi/erp5!295 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/7
-
Jérome Perrin authored
backport nexedi/erp5!504 because it happens way too often when I change ID that it's not saved and just display "Sorry, you cannot change ID" and ignore my changes /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/10
-
Jérome Perrin authored
backport nexedi/erp5!495 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/9
-
Jérome Perrin authored
-
Jérome Perrin authored
They should be caught earlier by field validator. If an ActivityPendingError occurs, we don't want to "half-edit" the document.
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
-
Jérome Perrin authored
for editable id fields This field is required, because ID are really required in Zope so we have to make an exception to prevent a Site Error message and has an external validator checking that the document has no pending activities.
-