- Aug 07, 2018
-
-
Olivier Colson authored
[REF] account, account_check_printing, payment, l10n_do, l10n_de, l10n_fr, l10n_nl, l10n_mx: chart templates installation: remove old useless wizards and move everything to account.chart.template Was task 1858974 Was PR https://github.com/odoo/odoo/pull/25243
-
Thibault Delavallée authored
Still fixing some side effects of https://github.com/odoo-dev/odoo/commit/960360afe478a8f7b9c456721b5591154952a37d.
-
Thibault Delavallée authored
This merge optimizes and lessens query count of notification process. When posting a message some computation is done to fetch followers and/or people and channels to notify, then notify them on their Inbox or by email. This process now takes less queries thanks to several improvements : * fetching followers / recipients data is now done manually in SQL allowing to fetch data across several models in less queries; * computing recipients is now separated from notifying them. Notification better uses precomputed data in order to avoid fetching and browsing several time the same data; When possible code has been made more readable through code inlining. Several methods have been removed because they are not used in inheritance. Some code is now more low-level. Optimizing part of the process can make it harder to inherit or modify. Performance counters are updated showing gain in nearly all tested cases. An enterprise branch is linked to this one that also improve notification process. This merge is linked to task ID 47934 and closes PR #24033. No functional change should occur with this merge.
-
Thibault Delavallée authored
Purpose of this commit is to avoid browsing and prefetching data about recipients when notifying a message to partners and channels. Mail message _notify computes all necessary data in a single query. This commit allow to re-use this data by propagating it through the call chain. Addons inheriting from classification methods used when sending notification emails are updated accordingly to the API and data update. This commit is linked to task ID 47934 and PR #24033. No functional change should occur with this commit.
-
Thibault Delavallée authored
This commit cleans code about sending email notification to recipients. Purpose of this code is to prepare notification emails, group recipients and finally send emails. In this commit we clean and optimize a bit by * propagating some additional parameter to simplify code, like record on which the notification process runs; * inlining some code currently located in sub-methods. It eases code understanding as there are less code jumps. As those methods are not inherited inlining them can be done; * simplifying a bit notification emails preparation and computation; It allows to save a few query by avoiding to fetch and browse again some data that were already computed. This commit is linked to task ID 47934 and PR #24033. No functional change should occur with this commit.
-
Thibault Delavallée authored
This commit is related to enterprise commit that updated mail_push. It is about [REF] mail_push: optimize mail.message notification process override It updates code of mail_push to lessen its impact on mail-related code. It allows to change a few counters in test_mail. Indeed counters are impacted by code located in enterprise because those are "maximum queries" counters. As mail_push is an auto-install module enterprise runbot would be broken if the counters weren't updated. This commit is linked to task ID 47934 and PR #24033. No functional change should occur with this commit.
-
Thibault Delavallée authored
In this commit we update _notify method of mail.message to fetch most data related to notification process in a single query. Indeed posting a message can be a costly process, especially when involving several partners, channels, depending on their notification status, user groups, ... Most of the required data can be fetched in a single hand-tuned query. Purpose is to lessen query count. Side effect of this commit is that code is less recordset based and therefore more low-level. It is also harder to customize the behavior through inheritance as it implies rewriting a bit more of code. This query is located in a private method on follower model. It takes parameters allowing to either fetch data related to followers of a given subtype, either related to some partners and channels. First use case is related to the process of posting a message with a subtype that triggers notification of followers. Second use case is related to notifying some specific partners or channels of a given message. It takes notably into consideration internal subtypes and active field of partners, allowing to correctly handle corner case for deactivated followers and portal / share partners. Notification process is divided into two steps. First one is to compute recipient data. Second one is to apply the result of this computation and call the various notification mechanisms accordingly. Doing so allows to easily re-call notification process or compute some data differently if necessary. API of notification methods is updated to allow passing notably the values used to create the newly-posted message. It allows in some simple case to avoid browsing message and partners when no notification is necessary. It saves some queries in simple case like posting messages with specific subtypes not often followed or logging notes without mentioning people. This commit allows to save a few queries on several performance tests as indicated by updated performance counters. Future commits will gradually propagate the use of this data to further lessen query count. This commit is linked to task ID 47934 and PR #24033. No functional change should occur with this commit.
-
Thibault Delavallée authored
Since date / datetime refactoring done at 960360af we cannot encode new leave requests or new allocation requests anymore. This commit fixes that by correctly setting date / datetime on date / datetime field and correctly computing one from the other.
-
qsm-odoo authored
Adapt SCSS which was BS3-specific and remove misuses of the dropdown-item class. Closes https://github.com/odoo/odoo/pull/24419
-
Olivier Colson authored
Payments older than the chosen date won't be proposed in the widget allowing to match payments with bank statements. This is useful if the db used invoicing for years and then installed accounting : users don't want to have to match all the old payments that were generated by invoicing with bank statements. Was task 1829536 Was PR https://github.com/odoo/odoo/pull/24728
-
David Beguin authored
The instanciation of the clipboard in the crash manager was not updated in the fix that upgraded the clipboard.js
-
Prakash Prajapati authored
The 'table-responsive' class should not be used on <table/> elements directly (this is allowed by BS4 but this is not good practice to me). Closes https://github.com/odoo/odoo/pull/26148
-
Prakash Prajapati authored
Closes https://github.com/odoo/odoo/pull/26178
-
Siddarth Gajjar authored
Closes #26186
-
qsm-odoo authored
Thanks to @hbh-odoo
-
Florent de Labarre authored
You cannot have more than one account with "Current Year Earnings" as type for a company. opw:1868446
-
Ivan Yelizariev authored
It was introduced in 2013, but it's not needed in 2018. According to library's note: "As of late 2015 most mobile browsers - notably Chrome and Safari - no longer have a 300ms touch delay, so fastclick offers no benefit on newer browsers, and risks introducing bugs into your application. Consider carefully whether you really need to use it." PR #26200
-
- Aug 06, 2018
-
-
Thibault Delavallée authored
Purpose: Give the ability to people to directly sign (sic) an email template without opening the mail composer. Specifications * do not display 'email' in activity view: either there are emails and new display applies, either there aren't any and do not dispaly anything; * update display of template choice: https://www.awesomescreenshot.com/image/3531694/7f6ac0250009599089ec62b6951a88b4; * add an "mt 16" between activity and first mail template; Tests have been updated to new specifications. This commit is linked to task ID 1872169 and PR #26185.
-
Thibault Delavallée authored
Purpose of this commit is to have a shortcut allowing to send an email based on an email template in the activity mixin. Its use will be to integrate the sending of emails directly in chatter-activity widget. This commit is linked to task ID 1872169 and PR #26185.
-
Deep Patel authored
- Email generated from mass mailing will have its own layout with internal css. - strip_classes is removed from mail_message because mail client are now supporting internal stylesheet. we need it for make mail responsive. mail: manually removed classes from incoming mail body Because we removed strip_classes from mail message body field because we want to allow classes in outgoing mail to make it responsive but classes are not removed from incoming mails so here we manually removed classes from incoming mail. opw-1836556
-
Fabien Pinckaers authored
-
Fabien Pinckaers authored
-
Fabien Pinckaers authored
-
Raphael Collet authored
From this commit onwards, Date fields will return datetime.date objects and Datetime fields will return datetime.datetime objects, this implies a number of things that are clearly explained both in the ORM API for master. This commit also introduces a number of helper functions for dates and datetimes that are exposed in tools.date_utils and fields.Date[time], explained in the documentation as well. Task-ID: 47189
-
Kirti Choudhary authored
Finished product moves from a MO where created without warehouse_id. It implies that push rule based on warehouse where not trigger on those moves confirmation. This commit adds warehouse_id on unbuild/production's finished/raw moves. It also add a test for this behavior. Task ID - 1865574
-
Yannick Tivisse authored
-
Yannick Tivisse authored
-
Rémi Rahir authored
-
Fabien Pinckaers authored
-
David Beguin authored
When sharing a document inheriting portal.mixin, the url was missing the parameters. This fix adds them.
-
David Beguin authored
Since Bootstrap 4, ClipboardJS does not copy the value in the clipboard anymore as Bootstraps modals give the focus to another element. As the focus need to be given back to the correct element, ClipboardJS has to be updated as the container parameter is only added in v1.7. We were in 1.5. That container parameter allow to give the focus back to the correct element. See doc on https://clipboardjs.com/ + Issue : https://github.com/zenorocha/clipboard.js/issues/155
-
Vincent Schippefilt authored
Task ID: 1860033 When the list view is grouped, Before this commit the group title took as much space in the group content as the first column of the table, and the space under this title was not usable by the content (it was blank) After this commit, the group title takes as much space as the sum of the selector, sequence and first content column, but the space in the group content under the title is used, so there is less wasted white space.
-
Fabien Pinckaers authored
[NEW] base: show enterprise module, with an 'upgrade' button [IMP] *: some modules renaming, and improved copywriting of manifest [IMP] *: utm on links to odoo.com
-
- Aug 03, 2018
-
-
Fabien Pinckaers authored
[IMP] mail; various CSS issues
-
Thibault Delavallée authored
Purpose of this merge * improve the installation of modules; * module descriptions are not up to date in the software (still outdated screenshots for example). Some features are no longer there; * there is a lot of duplicated content to translate since apps are already described on our website; * apps in system homepage are not always called the same way than the module installed ; * showcase the website features in a neat apps store (remove tech dependencies, clean names and descriptions); Specifications * improve kanban view of modules; * add a discover button that jumps on the website of the application; * do not fill text description in description html for apps as it is not user friendly; * remove deprecated index.html used as description_html; * update names and summaries of applications; * update names and summaries of website applications; * update some categories; * update website links; See subcommits for more details. This merge is related to task ID 47179 and 1861544. It closes PR #22689 and #25556. First one is about classic applications while second one is about website applications.
-
David Beguin authored
The list of visible records are anyway based on access_rights. State has been removed from the domain. If the portal must be customized for a model, access rights / rules can be added to do so. Task ID : 30985
-
Mitali Patel authored
Purpose ======= - Quickly share the url to someone else (a client, a colleague,...) - Ensure that the recipient can access at least the portal view of the shared record. - Typically used when a client cannot retrieve the mail to access his order. The share link can be used in this case. Specifications ============== For any object inheriting form portal.mixin: - Add a button SHARE (not visible in edit mode) - When clicking on this button, a popup opens with : - A warning message for tasks and projects only (see below) - the link (like in gmail) that can be copied - Recipients - mail composer (with preselected template) ==> see below - button [Send Link] [Copy Link] Discard - After sharing document, put internal note like "Document shared to xyz,...." with template message - Anyone with the link, even anonymous user (not logged in) can have access to the document with the access token provided in the url. Impacted models: - account.invoice (Community) - project.project (Community) - project.task (Community) - purchase.order (Community) - sale.order (Community) - helpdesk.ticket (Enterprise) Warning messages and access rules: Allowed : - SO canceled or draft will be accessible with the link with access_token - If the customer account is B2B (signup not enabled), the recipient will anyway see the document as the user specifically wants the recipient to see the document. Restrictions : - For Project and Task, if the privacy is not public, then, there is a contradiction between the access_token mechanism and the privacy of the document. - A warning message will be displayed in the share wizard to inform the user if the document cannot be visible by the recipients and to ask him to set the privacy to 'Visible by following customer'. The send button will, in that case, be hidden. - To avoid to block the share for a new project, default privacy value is now set to 'Visible by followong customer' Technical implementation ======================== - Move the access_token mechanism (field + methods + mail controller) to the portal.mixin to be able to use it in a generic way for each object inheriting the portal.mixin - Generalise a part of the _*model*_get_page_view_values method into a single one in portal - Generalize the _*model*_check_access into the portal controller of the portal module - Remove the init_column + default value for the access_token > old records have an access_token, > new one won't but it will be generated on demand via the get_access_token Done for performance reasons - Add share button into action menu separately. + kanban view context menu (except for task and project where button not in action menu but 'simple' button for task and project because other modules already provide action to send documents by email, which is not the case for project and task.) - Add a sign_token used to authentify the recipient in the portal view chatter, if any. The message will be posted as if the user was logged in. - Set the _get_share_url as private for security reason - Add a redirect parameter to _get_share_url to get If false : The direct portal view url If True : The redirect url (mail/view/?) - Cleaning up unnecessary code - Bug fix : - Before, if user was not logged and record had partner_id, if partner id was null, post message was done as admin. Now, the post message is done as public user. - If the user had an uid but had no access_token, he could be able to gain the access token of the record. check_access_rights was missing in the get_access_action. Task ID : 30985 Closes #25629
-
Laurent Smet authored
The structured communication is no longer configured for each partner independently. It can be configured like others communication type through the settings. task: 32254 PR: 26154 co-author: Haresh Shyara (hsh)
-
Priyanka Kakadiya authored
This commit renames main menu name same as module name in order to be less confusing to users. This implies a small fix in test main flow because it is based on the menu name. This commit is related to task ID 47179 and PR #22689.
-