- Jan 12, 2021
-
-
Samuel Degueldre authored
Previously, when double clicking and image, video, icon, or document in the web-editor and replacing it with a different media type, it would lose its custom classes. This means among other things, that it would lose margins and paddings from bootstrap classes, or in the case of the three columns snippet, that the new media would not be properly rounded in its top corner, or not show up at all in the case of the video. The only exception was when changing any media type to an icon, but in that case it would also keep some of the media-specific classes that are supposed to be removed (eg img-fluid or media_iframe_video). This commit fixes that as well as some _clear behaviour that didn't remove all classes that had to be removed, eg some fa-classes would linger depending on their order, and the o_image class from documents would always remain Part of https://github.com/odoo/odoo/pull/64234 task-2282542 closes odoo/odoo#64234 X-original-commit: 99531f5d Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
Samuel Degueldre authored
Previously, changing a media from a video/icon/document to a different type would leave empty elements in the DOM, this is because summernote's range API `range.insertNode` function deletes the content but not the structure (HTML elements). This commit fixes that by using jQuery's replaceWith method instead of summernote's insertNode when a media was found, and only using summernote in case no media was found (eg. a text range). Part of https://github.com/odoo/odoo/pull/64234 X-original-commit: 63f80995
-
- Jan 08, 2021
-
-
David James authored
closes odoo/odoo#64289 X-original-commit: 30a0a5ce Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
张文广 authored
closes odoo/odoo#64287 X-original-commit: 640610a3 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Jan 11, 2021
-
-
Romain Derie authored
Clicking on save on html editor is taking quite some time. The user might think something is not happening and need to click again. If he does click again, 2 write RPC will be sent, making the COW business code being triggered twice, ultimately leading to create 2 COW. Instead of A / \ B B' It will be A / | \ B B' B' With as many B' than there is click on save. This commit adds a generic helper to make a button load/spin. closes odoo/odoo#64366 X-original-commit: 80592abd Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com> Signed-off-by:
Romain Derie <rdeodoo@users.noreply.github.com>
-
Ivan Yelizariev authored
STEPS: * configure rounding: - cash_rounding=True - only_round_cash_method=True - round method: 1.0 Down * open a session * add products with subtotal in decimals (such as 6.35) * select Bank payment method and process the order BEFORE: error "You have to round your payments lines" AFTER: order is processed and marked as paid --- https://github.com/odoo/odoo/commit/42425996e36d9cb1fc1391402cf6d00df4aea019 opw-2426027 closes odoo/odoo#64351 X-original-commit: db0b65e5 Signed-off-by:
pimodoo <pimodoo@users.noreply.github.com>
-
Sébastien Theys authored
The intent of the test was to count renders but it counted calls to `onUpdate` which was the same "by luck", but the function was changed to be called more often than renders to fix another bug. Proper way to count renders (after the initial mount) is just to use `patched`. closes odoo/odoo#64352 X-original-commit: c7375eba Signed-off-by:
Géry Debongnie (ged) <ged@openerp.com> Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
Aaron Bohy authored
This commit updates owl from v1.2.0 to v1.2.1 See [1] for the list of changes. [1] https://github.com/odoo/owl/commit/25738a1bf08ff47b2d8cb7b7c57d3bf4a7e1caa7 X-original-commit: 1e87d7b6
-
Adrien Widart authored
When sending several invoices, customers also receive those that do not concern them. To reproduce the error: (Need mailcatcher) 1. Go to Invoicing 2. Select two invoices - Status must be "Posted" - Customers must be different 3. Action > Send & Print 4. Uncheck "Print", then click on "Send" 5. Repeat 2-4 Err: Each customer receives both invoices. (In some cases, a third mail is event sent). Each customer must receive his own invoices. The mail composer wasn't correctly configured. OPW-2422117 closes odoo/odoo#64340 X-original-commit: 603752df Signed-off-by:
Adrien Widart <adwid@users.noreply.github.com>
-
William Henrotin authored
Commit c2c9d6d1 changed the inequality sign unintentionally. This commit change it to the right value closes odoo/odoo#64334 X-original-commit: 217d9201 Signed-off-by:
William Henrotin <Whenrow@users.noreply.github.com> Co-authored-by:
Juppe <johan.totterman@sprintit.fi>
-
Arnold Moyaux authored
Free reservation is called each time an extra quantity is used on a move (and for each immediate transfer). It means that the function is called many times on a database with an inventoy activity. Also _free_reservation method do a search on fields that are not indexed, and is slow on large database. This index is specific to _free_reservation. On a live database with an important stock, the queries dropped from 265ms to 1.5ms. closes odoo/odoo#64327 X-original-commit: 74ea87d0 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
Adrien Widart authored
When running the scheduler, if one of the concerned product is a kit, it will always generate a RfQ for the components, even if there are already enough of them. To reproduce the error: (Need purchase) 1. Create 2 products P and P_compo - Both must be storable products - P_compo must have at least one vendor 2. Go on P-product page 3. Add a reordering rule (e.g., min: 5 and max: 10) 4. Add a BoM - Must be a Kit - Add P_compo to components 5. Inventory > Operations > Run Scheduler 6. Go to Purchase, find the generated RfQ 7. Confirm the order, Receive Products, Validate 8. Go on P-product's page - As you can see, you have enough P-products on hand 9. Repeat steps 5-6 => You should not find any RfQ since you already have enough P-products. When checking the P-product's page, you can see the correct quantity on hand because it uses the `_compute_quantities` method and this one has been overridden in the mrp-module so a kit will be correctly computed. However, when running the scheduler, it uses another method to get the current quantities: `_compute_quantities_dict`. Since this method has not been overridden in mrp-module, it will use the basic implementation and this one does not consider the possibility for a product to be a kit. This fix creates an override of `_compute_quantities_dict` so it can compute the correct quantities of products with 'phantom' as BoM type. Moreover, for the code to be simpler and clearer, thix fix also merges `_compute_quantities` and the new `_compute_quantities_dict`. OPW-2421841 closes odoo/odoo#64326 X-original-commit: 609e2f44 Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com> Signed-off-by:
Adrien Widart <adwid@users.noreply.github.com>
-
nie authored
Steps: - Install accounting - On the dashboard, try to upload an "encrypted" PDF like this one https://launchpadlibrarian.net/24827090/DS-0157.pdf Bug: Traceback: PyPDF2.utils.PdfReadError: file has not been decrypted Explanation: In 13.0, these errors were caught in a catch all `except` as shown here: https://github.com/odoo/odoo/blob/4e089041252c25cc197a30f9e285d82f7162d809/addons/account_facturx/models/account_move.py#L303-L328 From this SO comment: https://stackoverflow.com/questions/52047944/pdfbox-extracting-blanks-from-pdf-encrypted-with-no-password#comment91054285_52047944 > A PDF can be encrypted with two passwords: a user password and an owner password. When a PDF is encrypted with a user password, you can't open the document in a PDF viewer without entering that password. When a PDF is encrypted with an owner password only, everyone can open a PDF without that password, but some restrictions may be in place. From time to time, we get a PDF encrypted with an owner password. The content is still readable, but PyPDF2 fails because it thinks the PDF is encrypted. With this fix, we try to unwrap the PDF by providing an empty user password. This way, PyPDF2 thinks the content is now decrypted. However, PyPDF2 only supports decrypting versions 1 and 2 of the encryption implementation. If the version is different, we skip reading the attachments and carry on to allow the user to upload the document. opw:2375993 closes odoo/odoo#64320 X-original-commit: 851fe64f Signed-off-by:
backspac <backspac@users.noreply.github.com> Signed-off-by:
Olivier Dony (odo) <odo@openerp.com>
-
- Jan 08, 2021
-
-
wan authored
Fine tuning of 78286851 The link to view Cash Statements on the dashboard openned the wrong action. Also in some cases, removing the context key `search_default_journal` was not enough so we set it to `False` instead. closes #64118 closes odoo/odoo#64279 X-original-commit: 95ffa9fd Signed-off-by:
oco-odoo <oco-odoo@users.noreply.github.com> Signed-off-by:
wan <william-andre@users.noreply.github.com>
-
Goffin Simon authored
Steps to reproduce the bug: An account with the type "Credit Card" can not be chosen for the creation of a journal with the type "Bank" as the domain for bank account filter only for accounts with the type "Bank and Cash" As the filter on the `user_type_id` is too restrictive we remove it in case the journal is bank or cash Bug: Impossible to select the correct account. opw-2394959 closes odoo/odoo#64288 X-original-commit: f4e67d8a Signed-off-by:
oco-odoo <oco-odoo@users.noreply.github.com> Signed-off-by:
Simon Goffin (sig) <sig@openerp.com>
-
oco-odoo authored
[FIX] account: reconcile models: create write-offs properly when matching a statement line with no partner Before that, write-offs were simply never created in this case ; only an open balance. This was (obviously) wrong. Also, the partner set on the statement line was not modified, and kept empty. We fix that so that, when a statement line without is reconciled with lines sharing the same partner, this partner is also assigned to the statement line. Task 2423231 closes odoo/odoo#64253 Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
oco-odoo authored
- Create an invoice for 100 - Create a bank statement for 95 - Setup your reconciliation model so that it will match them and create a write-off for the remaining 5. Make it auto_reconciled. => Doing that, we expect the bank journal move to be created like this: - 100 on payable/receivable, reconciled with the invoice - 95 on the bank account - 5 on the write-off account This wasn't the case. Instead, Odoo created the following (correct from an accounting point of view, but weird): - 95 on payable/receivable, reconciled with the invoice - 5 on payable/receivable, not reconciled - 95 on the bank account - 5 on the write-off account => So an open balance of 5 was actually created. This was weird, and also caused an additional bug, as only the first payable/receivable line was reconciled with the invoice, making it only partially paid. This commit restores the expected behavior.
-
- Jan 10, 2021
-
-
Nasreddin (bon) authored
Issue - add a new language with locale code KUR (for Kurdish) - print any report with a datetime on it (RFQ for example) Cause Babel (version < 2.7.0) does not handle locale "KUR". Solution If wrong locale or not managed by Babel, try to fallback on server default locale. If still wrong locale or not managed, then fallback on "en_US" as locale. opw-2416482 closes odoo/odoo#64304 X-original-commit: e6ccdb39 Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com> Signed-off-by:
bon-odoo <nboulif@users.noreply.github.com>
-
- Jan 05, 2021
-
-
Didier (did) authored
task-2397404 closes odoo/odoo#64094 X-original-commit: 74453020 Signed-off-by:
Alexandre Kühn (aku) <aku@odoo.com>
-
- Jan 08, 2021
-
-
nie authored
Steps: - Install eCommerce - Go to "Website" > "Go to Website" - Click Edit - Add the Dynamic Products block with a template and a category - Save - Switch to mobile view Bug: The right arrow of the block overflows and makes it possible to scroll the entire view sideways. Explanation: This commit puts back prev and next arrows onto the carousel. It also changes their design to be more visible over the content. The arrows are now smaller and displayed in clickable gray circles. opw:2415187 closes odoo/odoo#64274 X-original-commit: a5d7a1a6 Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com> Signed-off-by:
backspac <backspac@users.noreply.github.com>
-
Olivier Dony authored
In the context of bug #43365, the fix merged in #48031 introduced an override of `ir.translation._load_module_terms()`, which calls `super()` then does some extra stuff. This was forward-ported to later versions, unfortunately the forward-ports missed the fact that the method signature changed at some point (circa saas-13.2) and the `overwrite` flag which used to be passed in the `context` had become an explicit method argument. As a result, that argument is lost in the `super()` call and the `website` module entirely disables the "overwrite" mode for the translation loading wizard. The fwd-port that seems to introduce the issue is odoo/odoo#50477 (998987f8ee148235f4025eb97a424e838ac6fc9f) closes odoo/odoo#64251 X-original-commit: 26355a6b Signed-off-by:
Olivier Dony (odo) <odo@openerp.com>
-
Aurélien Warnon authored
Some of the feature of the "My Activities" list view of the crm app were not available on the regular crm tree view. This commit aligns the 2 views by sharing these features, notably: - You can "snooze" your next activity if there is one - You can contact the lead by email with a direct button on the row/list header - You can contact the lead by sms with a direct button on the row/list header The "team_id" column is now optional="hide" since not required most of the time when you go to check your own leads (and can be activated in a few clicks if needed). Finally, the "Email" action at the end of the tree row is now in "single" mode to allow adding contacts on the fly. This implied re-introducing an action that was recently removed in 8c65d7c5 Further demonstrating that R&D is just an eternal loop. UPG PR odoo/upgrade#2064 Task-2390500 closes odoo/odoo#62289 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
Raphael Collet authored
This takes a former patch one step further. Assume you recompute a field on two records, and the computation assigns the first record but not the second one. Before this patch, the recomputation process was accessing the field on both records. When accessing the first record, both records are recomputed, and the value of the first one is found in cache. When accessing the second record, no recomputation is made (it has been done already), and the cache is empty. The field is thus fetched from database, and this crashes because of insufficient access rights. This scenario was causing some obscure nondeterministic crashes in tests. The nondeterminism comes from the choice of the environment for flushing (it should not be in superuser mode); the order of records in the set to compute; the order in which records are assigned in the compute method; the fact that the compute method should assign some records and some not. The fix consists in adding a method that processes pending computations, without doing anything special for unassigned records. The method is used in field accessors (__get__ and mapped) and in method recompute(). The access error is gone because the recomputation no longer tries to get the value of a field to compute. closes odoo/odoo#64264 X-original-commit: b7676ec3 Signed-off-by:
Raphael Collet (rco) <rco@openerp.com>
-
nie authored
Steps: - Install Invoicing and load French - Go to Invoicing - Click an invoice due in the future - Click Preview - Switch the preview to French by modifying the URL like this: example.com/my/invoices/6 -> example.com/fr_FR/my/invoices/6 Bug: "Due in %d days" is still displayed in English. The rest of the page is in French. Explanation: This is due to two things: 1. `mail` and `portal` are both installed and we cannot have more than one `code` translation of a source [1]. Since `mail` is loaded before, alphabetically, `portal` doesn't add the duplicated translations with its own module name. When loading a web page, only the modules returned by `_get_translation_frontend_modules_domain()` are sent to the frontend. `mail` is not one of them and the duplicated translations are not sent. Since sending all the `mail` translations is overkill, this commit is modifying the format string. This won't change the text outcome, but will make the new sources unique and make the backend send these translations to the frontend. 2. Translations in `portal_sidebar.js` are queried before the translation DB [2] is made. This results in an empty array and `_t()` returns the source. `session.is_bound` will wait until the app is fully loaded before querying. [1] https://github.com/odoo/odoo/blob/ad2d96db8ad3e1fd7af2edda218fc34c0c1d259a/odoo/addons/base/models/ir_translation.py#L290 [2] https://github.com/odoo/odoo/blob/0de069b8ca9fb005ba5b076984f5677de25889ee/addons/web/static/src/js/core/translation.js#L51 opw:2421501 closes odoo/odoo#64263 X-original-commit: 118d79192cf0fc923a121745c78e6dd0da563df0 Signed-off-by:
backspac <backspac@users.noreply.github.com>
-
Andrea Grazioso (agr-odoo) authored
Create two differnt journals for two different bank accounts (A, B). Create an Internal Transfer in bank A to send money, then reconcile. Create an Internal Transfer in bank B to receive money, then try to reconcile Internal transfers are labeled 'Customer Reimbursement' and 'Customer Payment' even if no external partner is involved in the process, opw-2423161 closes odoo/odoo#64258 X-original-commit: 4fcacfac Signed-off-by:
oco-odoo <oco-odoo@users.noreply.github.com>
-
- Jan 05, 2021
-
-
Laurent Smet authored
In the bank reconciliation widget, allow matching a payment (blue lines) owned by another bank journal as the statement line one if both journal are sharing the same outstanding account. It implies to remove the constraint preventing such accounts sharing. The purpose is the following. Suppose you are working with payment acquirers generating payments on a bank journal A. At the end of the month, the bank journal B is debited to pay the payment acquirer. At this point, you get a statement line on journal B you need to match with payments generated on A. closes odoo/odoo#64115 X-original-commit: 8d34e160 Related: odoo/enterprise#15577 Signed-off-by:
oco-odoo <oco-odoo@users.noreply.github.com> Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
- Jan 07, 2021
-
-
Andrea Grazioso (agr-odoo) authored
The Australian equivalent of a VAT number is an ABN number. In Australia TFN are private and not meant to be entered into systems or publicly displayed. ABN numbers are the public facing number that legally must be displayed on all tax invoices and legal documents. This fix will override the 'tfn' check done via stdnum for AU companies with 'abn' check opw-2415142 closes odoo/odoo#64221 X-original-commit: a72f7222 Signed-off-by:
agr-odoo <agr-odoo@users.noreply.github.com>
-
- Jan 04, 2021
-
-
Arnold Moyaux authored
commit 38711e9f prevent multi company issues. But it goes a litle too far in restriction and prevent to put a service in the repair fee. Which is a feature since user would like to register and invoice human ressources in maintenance cost. closes odoo/odoo#64033 X-original-commit: 64de68b4 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
- Jan 07, 2021
-
-
Achraf (abz) authored
PURPOSE Notification may be sent using a generic mail.thread record, notably when sending user notifications. In that case links to view document are incorrect. HOW TO REPRODUCE Issue - Install "Approvals" - Submit new approval with you as "Request Owner" - Click on "View Approval Request" in your mailbox The link redirects to a 505 error Cause The model is not the correct one and the res_id is undefined Solution Specify the model and the res_id to _notify_get_action_link when creating the link with kwargs SPECIFICATIONS Propagate message value through various notification sub methods. That way we can rely on them if model seems void. Also limit values given as URL parameters to some white listed values. LINKS opw-2358846 Task ID-2379766 Followup of odoo/odoo#60998 Followup of odoo/odoo#61545 Closes odoo/odoo#63292 Closes odoo/enterprise#15585 closes odoo/odoo#64229 X-original-commit: 58bac5d242d6548d54f0163328fa64b319852e40 Related: odoo/enterprise#15634 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com> Co-authored-by:
Achraf Ben Azzouz <abz@odoo.com> Co-authored-by:
Thibault Delavallée <tde@odoo.com>
-
- Jan 04, 2021
-
-
Nicolas Galler authored
In `run_scheduler`, we are running certain functions as super user to avoid inter company and access rights issues. This commit adds a `sudo()` call to the `action_assign()` call, in case some objects related to the retrieved moves are not accessible. In addition a commit call is moved up to apply after the `procure_orderpoint_confirm` call (as it was, it was applied after the `_action_assign` loop, but there is in fact already a commit in that loop, this lead to a somewhat random behavior where the replenish rules were sometimes rolled back and sometimes not, depending on whether the first iteration of the loop errored out or not) opw-2394706 closes odoo/odoo#64041 X-original-commit: 592ee14d Signed-off-by:
Nicolas Galler <ngaller@users.noreply.github.com>
-
- Jan 07, 2021
-
-
mir-odoo authored
Before, there was no support of nolabel in tree view but now we added it. So in this commit, Replace the empty string with nolabel True. closes odoo/odoo#64212 Taskid: 2414124 X-original-commit: 4286f2f90258a5c1f97d42f7c2aee1e964723ca0 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
qsm-odoo authored
Now the size is displayed in a badge in a better location. Also, the size is now always displayed even if the user did not just apply a modification (so that if the user saves then reopens edit mode and clicks on an image, he can inspect the image size). task-2424917 closes odoo/odoo#64036 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
Christophe Simonis authored
Some modules may be removed by the upgrade scripts with the help of the ORM and are done in `end` scripts. This is the case for uninstalling the themes which use the `_theme_remove` method [1]. [1] in 12.0: https://github.com/odoo/odoo/blob/e2084a4356f63249920d8c777e92f1710be8b5a6/addons/website_theme_install/models/ir_module_module.py#L337 closes odoo/odoo#64219 X-original-commit: e5ab5410 Signed-off-by:
Xavier Dollé (xdo) <xdo@odoo.com> Signed-off-by:
Christophe Simonis <chs@odoo.com>
-
Odoo's Mergebot authored
PURPOSE Prepare sales team membership and lead assignment improvements by reorganizing and cleaning some code bits. SPECIFICATIONS Reorganize sales team tests to ease addition and modifications of tests when adding multi-membership and lead assignment features. Separate business methods from tool methods. It eases their discovering and their re-use through various other methods and models. Moreover it helps reading business oriented methods without being disturbed by tools. Tools methods should be private by default to indicate those are not part of official convert or merge API for leads. In this commit we make convert and merge tool methods private, keeping only main API methods public. LINKS Task ID-2428882 Prepares Task ID-2086889 COM PR odoo/odoo#64196 ENT PT odoo/enterprise#15610 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
Thibault Delavallée authored
PURPOSE Prepare sales team membership and lead assignment improvements by reorganizing and cleaning some code bits. SPECIFICATIONS Tools methods should be private by default to indicate those are not part of official convert or merge API for leads. In this commit we make convert and merge tool methods private, keeping only main API methods public. LINKS Task ID-2428882 Prepares Task ID-2086889 COM PR odoo/odoo#64196 ENT PT odoo/enterprise#15610
-
Thibault Delavallée authored
PURPOSE Prepare sales team membership and lead assignment improvements by reorganizing and cleaning some code bits. SPECIFICATIONS Separate business methods from tool methods. It eases their discovering and their re-use through various other methods and models. Moreover it helps reading business oriented methods without being disturbed by tools. LINKS Task ID-2428882 Prepares Task ID-2086889 COM PR odoo/odoo#64196 ENT PT odoo/enterprise#15610
-
Thibault Delavallée authored
PURPOSE Prepare sales team membership and lead assignment improvements by reorganizing and cleaning some code bits. SPECIFICATIONS Reorganize sales team tests to ease addition and modifications of tests when adding multi-membership and lead assignment features. LINKS Task ID-2428882 Prepares Task ID-2086889 COM PR odoo/odoo#64196 ENT PT odoo/enterprise#15610
-
- Dec 23, 2020
-
-
Nidhi Patel authored
Purpose of the task is the Automatic Kanban Status field present without any importance in view of stages of a project. So in this commit, we remove the auto_validation_kanban_state field from the stages of a project. closes odoo/odoo#63727 Taskid: 2378811 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Jan 07, 2021
-
-
Arnold Moyaux authored
revert commit 72c36aaf due to commit 47219e96 First commit is now useless and on top of that it ignores the putaway strategies. opw-2412699 closes odoo/odoo#64200 X-original-commit: a8db4824 Signed-off-by:
Simon Goffin (sig) <sig@openerp.com> Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
Goffin Simon authored
Steps to reproduce the bug: - Let's consider a re-invoicable and expensable product P at 100€ - Let's consider a pricelist PL with 20% of visible discount on every product - Let's consider a confirmed sale order SO with PL set on it - Create an expense E with P at 100€ and reinvoice customer set to SO - Generate the entries of E Bug: A new sale order line was created with 80€ as unit price and no discount instead of 20% discount. opw:2423147 closes odoo/odoo#64194 X-original-commit: 8815f4d9 Signed-off-by:
Simon Goffin (sig) <sig@openerp.com>
-