- Jan 13, 2021
-
-
Raphael Collet authored
Consider a model with a field F and a computed editable field G that depends on F. Assume we open a form view, and both F and G have a default value. The first onchange should return F and G with their respective default values. In other words, the field G should not be recomputed even if its dependency F was assigned a default value. The use-case that showed the issue is batch payments. When adding a new payment in the one2many field of a batch, the new payment should use the batch's payment method by default. The default value for the payment's method is assigned by context on the one2many field in the view. Before this patch, the new payment's method was given by the computation of the field, and its default value was ignored. Side note: another test was fixed, but that's because the test was not consistent with the way Odoo 14.0 manages defaults and onchanges.
-
- Jan 12, 2021
-
-
Laurent Smet authored
Since 'move_line_ids' isn't inside the view, `account_type` is never computed and then, the accrual account is never displayed/editable on the view. closes odoo/odoo#64484 Signed-off-by:
oco-odoo <oco-odoo@users.noreply.github.com>
-
Victor Feyens authored
The picking_type and currency were taken from the current company, even if the purchase order is created in another company. Fixes #35026 closes odoo/odoo#64469 X-original-commit: d080a5ea Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
- Jan 13, 2021
-
-
nie authored
Steps: - Install website_sale and payment_authorize - Set up a tunnel (e.g. ngrok) - Log in to Authorize.Net backend - Go to Account > Response/Receipt URLs > Add Url - Enter the tunnel URL - In Odoo, go to Website > Configuration > eCommerce > Payment Acquirers - Edit "Authorize.Net" - Credentials tab: - State: Test Mode - API Login Id, Transaction and Signature key - Save, then Generate Client Key - Configuration tab: - Payment Flow: Payment from Odoo - Stop the server - Replace https://github.com/odoo/odoo/blob/1b9b99dc2643910c1412b564affccf02ba1e55d9/addons/payment_authorize/models/authorize_request.py#L46 with `resp = {'messages': {'resultCode': 'Error', 'message': [{'code': 'E00027', 'text': 'An error occurred during processing. Call Merchant Service Provider.'}]}}` - Restart the server - Go to "Website" > "Go to Website" > Shop - Add a product to the basket - Check out the basket - Choose "Credit Card (powered by Authorize) Test Mode" - Pay Now - Enter any card data (e.g. 4111 1111 1111 1111 - 01/22 - 900) Bug: When the Pay Now process is done, the customer is redirected to `/shop?error=invalid_token_id`. No errors are shown. Explanation: The patch simulates an error from Authorize.Net happening during their process. Using the special card numbers won't trigger the wanted behavior. When getting an error from Authorize.net, a `UserError` is raised. This error is then caught in the controller to return a formatted message. However, returning a dict in this part of the code embeds it inside `{'result': [...]}`. The error message is, thus, not blocking the form's redirection and the user gets redirected to the form action, i.e. `/shop/payment/token`. This route requires `pm_id`, but, in this scenario, it's an empty string. This leads to another redirection to `/shop/?error=invalid_token_id` as seen here: https://github.com/odoo/odoo/blob/1b9b99dc2643910c1412b564affccf02ba1e55d9/addons/website_sale/controllers/main.py#L938-L941 Letting the error bubble up forces the backend to return a blocking error response. This makes the fronted display the Authorize.Net error underneath the provider selection, and prevents it from redirecting. opw:2419260 closes odoo/odoo#64462 X-original-commit: c7a387b9 Signed-off-by:
backspac <backspac@users.noreply.github.com>
-
Xavier Dubuc authored
task-2414811 closes odoo/odoo#63785 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
- Jan 12, 2021
-
-
Jorge Pinna Puissant authored
Do not update the date_planned of section/note purchase lines when the date is changed on the order. Based on f3ebab6e opw-2429853 closes odoo/odoo#64430 Signed-off-by:
Jorge Pinna Puissant (jpp) <jpp@odoo.com>
-
Benjamin Frantzen (bfr) authored
This is mandatory for PA customers, and required by several enterprise customers as well. Related Ticket: 2425845 closes odoo/odoo#64434 X-original-commit: bb898e66 Signed-off-by:
Josse Colpaert <jco@openerp.com> Signed-off-by:
bfr-o <bfr-o@users.noreply.github.com>
-
Goffin Simon authored
Steps to reproduce the bug: - Create a user with only access rights, Inventory = Administrator, Purchase = user - Enable feature Purchase order approval in Purchase > Settings - Agreement Type = Exclusive, lines of Agreement, Quantity of Agreement - Login as a new created user and navigate to a menu Purchase > Purchase agreement and create a new Purchase agreement, confirm it - From the button create two PO (having a total > 5000) - Cancel one of the PO first and try to approve another one Bug: A UserError was riased: You have to cancel or validate every RFQ before closing the purchase requisition. opw:2368999 closes odoo/odoo#64417 X-original-commit: dfee34b0 Signed-off-by:
Simon Goffin (sig) <sig@openerp.com>
-
- Jan 11, 2021
-
-
Andrea Grazioso (agr-odoo) authored
From Invoice list view select 2+ invoices (A, B), click Action>send and print In each invoice 2 invoices will be sent: - In A, you'll find A and A - In B, you'll find A and B This occur because the composition_mode of the composer is computed after the attachment has been generated. When the composer has an attachment, it is included into the sent mail along the relevant one, generated on the fly for each record. opw-2428544 closes odoo/odoo#64360 Signed-off-by:
agr-odoo <agr-odoo@users.noreply.github.com>
-
Prakash Prajapati authored
Reproduction step: - Create Sale Oder(Add optional product) - Customer Preview(portal) - Add to cart closes odoo/odoo#64317 Taskid: 2431351 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Dec 22, 2020
-
-
mir-odoo authored
Currently, When go to time off > Managers menu > open 'Time off' menu, now switch view to calendar view and try to collapse "Time off Type " filter . it does not collapse due to extra white sapce in the title and due to that data-target does not set properly. so in this commit, replace the title's white space with '_' and set the data-target properly so it works good. closes odoo/odoo#63636 Taskid: 2413877 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Jan 12, 2021
-
-
Raphael Collet authored
Consider a constraint method with two fields: a normal field, and a field with an inverse method. When calling write() with both fields, the constraint method should be invoked once. closes odoo/odoo#64411 X-original-commit: 3b39d7ef Signed-off-by:
Raphael Collet (rco) <rco@openerp.com> Co-authored-by:
Thibault Delavallée <tde@odoo.com>
-
Samuel Degueldre authored
Previously, when changing the background-color of an icon in the s_process_steps snippet, the line that goes through the snippet would disappear from that block. This was caused by our font-application code attempting to remove extraneous DOM nodes when changing a font color or backrgound-color, but not considering elements with a ::before or ::after pseudoelement has having content, and subsequently removing them. opw-2423785 closes odoo/odoo#64404 X-original-commit: 6b363d20 Signed-off-by:
Samuel Degueldre <sdegueldre@users.noreply.github.com>
-
- Jan 05, 2021
-
-
Benjamin Frantzen (bfr) authored
Related ticket : 2425845 closes odoo/odoo#64048 Signed-off-by:
Josse Colpaert <jco@openerp.com>
-
- Jan 12, 2021
-
-
Ivan Yelizariev authored
If we change ``active_model`` in context, we have to reset active_id(s), otherwise we read a random records which may not exist. STEPS: 1. Activate Developer mode 2. Go to Settings > Technical > Automation > Automated Actions 3. Define a new Automated Action with the following settings: - Model: Lead/Opportunity - Action To Do: Execute Python Code - Trigger: Based on Form Modification - Trigger Fields: Customer (crm.lead) - Python Code: ``` raise Warning(records) ``` 4. Go to Contacts, create a new contact and save it. 5. Click on the "Opportunities" Smart Button on the top left of the contact record. 6. Click "Create". BEFORE: ``records`` in context read crm.lead, while id is for res.partner record AFTER: ``records`` is None --- opw-2424392 closes odoo/odoo#64399 X-original-commit: 799acc56 Signed-off-by:
Ivan Yelizariev // IEL <yelizariev@users.noreply.github.com> Signed-off-by:
Raphael Collet (rco) <rco@openerp.com>
-
Adrien Widart authored
When adding a product to the order, the total will be updated but the orderline will not be displayed To reproduce the error: 1. Go to Point Of Sale 2. New Session 3. Click on a product so it will be added to the order Err: The order's total is correctly updated but the line is not displayed. When displaying an orderline, the system wants to use the product's unit name (`t-esc="props.line.get_unit().name"`). To do so, it uses one specific variable of the current product, `pos`: https://github.com/odoo/odoo/blob/abff1ca94bcc829250b63fd9677890988b796819/addons/point_of_sale/static/src/js/models.js#L1518-L1528 When using the standard Point of Sale, this variable is added on products loading (L446) : https://github.com/odoo/odoo/blob/abff1ca94bcc829250b63fd9677890988b796819/addons/point_of_sale/static/src/js/models.js#L438-L448 However, this variable is not set when using the pos_cache module. OPW-2431221 closes odoo/odoo#64380 Signed-off-by:
pimodoo <pimodoo@users.noreply.github.com>
-
Ibrahima Gueye authored
Remove Abdel Rahaman TOUKOUROU closes odoo/odoo#64368 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
qsm-odoo authored
The design was not properly adapted to the last changes before the 14.0 release and still contained some invalid properties. Now the list inputs match the design of the normal inputs. closes odoo/odoo#64390 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
Odoo's Mergebot authored
This commit of merge fix multiple issues in the dynamic routing. Fix RequestUID error in 308 redirect Support MissingError / unexisting ID in 308 redirect Correctly rewrite url on rendering by url_for for non editor user Related to opw-2420562 closes odoo/odoo#64328 Signed-off-by:
Jérémy Kersten (jke) <jke@openerp.com>
-
Romain Derie authored
Basic tests & tests of the 3 fixes of #64328
-
Goffin Simon authored
Steps to reproduce the bug: - Let's make a bancontact payment with Stripe on mobile from the web shop - Stripe redirects you to Odoo - Your phone asks on which browser you wanted to redirected to Odoo - Choose one Bug: An internal error was raised. When you clicked on a browser (the same you were using or a new one, whatever) Odoo will resend a request to Stripe. But this request will have wrong data in it. Stripe will answer with: Stripe: entering form_feedback with post data {'error': {'code': 'resource_missing', 'doc_url': 'https://stripe.com/docs/error-codes/resource-missing ', 'message': "No such payment_intent: 'py_1I6c4UKhH8RhRq18TJs2CP0z'", 'param': 'intent', 'type': 'invalid_request_error'}, 'reference': 'S00002-1'} opw:2422031 closes odoo/odoo#64378 X-original-commit: a42075c9 Signed-off-by:
Simon Goffin (sig) <sig@openerp.com>
-
Samuel Degueldre authored
Previously, when opening a colorpicker in safari, the crash manager would open with the message "An unknown CORS error occured [...]". This is actually odoo's default message when an error has no file, line or column, which is usually the case for security reasons on CORS error. This is however not a true CORS error, but a "ResizeObserver loop completed with undelivered notifications" error, which also does not report file, line and col for the error. This error is caused by the fact that in webkit, the baseline of an empty input is considered to be at the bottom of the input element, rather than at the baseline of the text of the input once it has some content. (see https://bugs.webkit.org/show_bug.cgi?id=142968 ) In the case of the colorpicker, it uses a ResizeObserver to update its UI, including updating the content of its inputs. This will cause the first _updateUI to fill the empty inputs, which changes the layout of the widget content and changes its size. Changing the size of an element inside of a handler of a ResizeObserver on that same element will cause an error and not call the callback again, so as to prevent infinite loop. This commit fixes that by filling the inputs before attaching the ResizeObserver, so that it has its final size from the get-go, and _updateUI will no longer change the layout/size, causing this error. opw-2419296 closes odoo/odoo#64244 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
erik-bzcl authored
closes odoo/odoo#64355 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Jan 11, 2021
-
-
Jeremy Kersten authored
In case of record doesn't exit, raise a 404 instead of crash in slug function with odoo.exceptions.MissingError: Record does not exist or has been deleted. slug_matching() -> build() -> to_url() -> slug() How to reproduce: Add a 308 from /shop/<product> to /mag/<product> Try to access /shop/<product>-unexisting_ID will crash with: odoo.exceptions.MissingError
-
Jeremy Kersten authored
Before this commit, try to access original route that has been configured with a redirect 308 will crash with an exception: psycopg2.ProgrammingError: can't adapt type 'RequestUID' sudo() from PR v10 has been converted to new with_user system without check. When we replace during review sudo by with_user, we don't reproduce it because we always try to access /mag/<product> instead of /shop/<product> How to reproduce: Add a 308 from /shop/<product> to /mag/<product> Try to access /shop/<product> will crash with: psycopg2.ProgrammingError: can't adapt type 'RequestUID'
-
Jeremy Kersten authored
Before this commit, old url was not rewrited in case you don't have any query string.
-
- Jan 08, 2021
-
-
David James authored
closes odoo/odoo#64280 X-original-commit: 30a0a5ce 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#63417 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
- Jan 08, 2021
-
-
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#64270 Signed-off-by:
pimodoo <pimodoo@users.noreply.github.com>
-
- Jan 11, 2021
-
-
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#64267 Signed-off-by:
Géry Debongnie (ged) <ged@openerp.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
-
Goffin Simon authored
Steps to reproduce the bug: - Let's consider a partner P linked to an employee E and a vehicle V - Let's change the mobility card of E with 12345 Bug: The mobility card on V was not changed. opw:2431316 closes odoo/odoo#64330 Signed-off-by:
Simon Goffin (sig) <sig@openerp.com>
-
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#64314 Signed-off-by:
Adrien Widart <adwid@users.noreply.github.com>
-
- Jan 08, 2021
-
-
William Henrotin authored
Commit c2c9d6d1 changed the inequality sign unintentionally. This commit change it to the right value closes odoo/odoo#64275 Signed-off-by:
William Henrotin <Whenrow@users.noreply.github.com> Co-authored-by:
Juppe <johan.totterman@sprintit.fi>
-
- Jan 11, 2021
-
-
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#64311 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#64277 X-original-commit: de40662a Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com>
-
- Jan 07, 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: odoo/odoo#60450 Linked to: #60432 #60443 task-2282542 closes odoo/odoo#64230 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: odoo/odoo#60450 X-original-commit: 63f80995
-
- Jan 11, 2021
-
-
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#62557 Signed-off-by:
backspac <backspac@users.noreply.github.com>
-
- 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#64301 X-original-commit: 0276c3ef Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com> Signed-off-by:
bon-odoo <nboulif@users.noreply.github.com>
-