- Oct 26, 2020
-
-
Benoit Socias authored
Before this commit the layout of the website sale dashboard in community was broken because it contained nested h2 headers After this commit the layout of the website sale dashboard in community is back to normal Related to #26067 closes odoo/odoo#60737 Signed-off-by:
Jérémy Kersten (jke) <jke@openerp.com>
-
William Henrotin authored
This commit updates the description_picking on stock moves once the picking type is changed. This is needed to merge stock moves at confirmation. The description_picking field chosen on the merged move is the 'minimum one'. Empty string will always be chosen that way, so we lose the information. closes odoo/odoo#60711 Signed-off-by:
William Henrotin <Whenrow@users.noreply.github.com>
-
Antoine Vandevenne (anv) authored
closes odoo/odoo#60739 X-original-commit: 8fd0f0c7 Signed-off-by:
Antoine Vandevenne (anv) <AntoineVDV@users.noreply.github.com>
-
- Oct 16, 2020
-
-
IEL authored
It was hidden in https://github.com/odoo/odoo/commit/d1bbf11af27e4ce12b025ef22e397302ee6336c2 But customers actually need it. opw-2358111 closes odoo/odoo#60158 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
- Oct 26, 2020
-
-
Adrien Horgnies authored
If a merchants didn't enable a local Payment Method Type (PMT) on Stripe side (such as bancontact), his customers eligible for it (ex.: Belgian and paying in EUR) won't be able to pay using it. This commit fixes this issue by adding a condition on the payment icons assigned to Stripe: if the payment icon related to a given payment method is not listed as a supported payment icon, the related payment method is not offered to customers, unless the payment icon does not exist at all. User can enable PMTs through (Payment Acquirers > Stripe > Configuration > Supported Payment Icons). This concerns: ideal, bancontact, eps, giropay and p24. This solution is not entirely satisfactory but it isn't possible to fetch enabled PMT from Stripe. opw-2335482 closes odoo/odoo#60721 X-original-commit: d51cabac Signed-off-by:
Antoine Vandevenne (anv) <AntoineVDV@users.noreply.github.com>
-
Thomas Dieuzeide authored
Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working. closes odoo/odoo#60722 X-original-commit: b6907f8fad3b27400a4c2e4a046ed0f02869f863 Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com> Signed-off-by:
Thomas Dieuzeide <tdi-odoo@users.noreply.github.com>
-
Andrea Grazioso (agr-odoo) authored
Create a sale order with a service configured with - Service Invoicing Policy: Timesheets on tasks - Service Tracking: Create a new project but no task Save and confirm. Access the project and the tasks via smart button. Create a new task. The task will not be saved under the current project because there is no data reference in context. opw-2355547 closes odoo/odoo#60690 X-original-commit: 51ce1d6ca479b4d851eacef70212bf890588e1c7 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com> Signed-off-by:
agr-odoo <agr-odoo@users.noreply.github.com>
-
Thanh Dodeur authored
Before this commit, completing an activity that was automatically generating new activities was causing a crash as no action is returned when they are completed. This commit fixes this issue by handling the case where no action is returned. opw-2361674 closes odoo/odoo#60628 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
- Oct 23, 2020
-
-
Thanh Dodeur authored
This commit adds a test for the fix odoo/odoo/pull/58769 that ensures that the chatter is properly cleared when creating a new record. task-2348472 closes odoo/odoo#60594 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
yhu-odoo authored
Currently when unbuild a MO, we create journal entries the same as receiving components (add credit to input account) and deliver finished product (add debit to output account). But since the unbuild is just a revesal of the MO, the journal entries should alse be revesals. In this commit, when unbuild a MO, for the journal entry about the component change, we add credit to the output account, and for the journal entry of the finished product change, we add debit to input account make sure the journal entries are also reversals. Task 2312828 PR #58150 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
- Oct 26, 2020
-
-
Nicolas Martinelli authored
- Create a user A with access rights to Project set as 'User' - As user A, add a follower to a task An AccessError is raised. It happens because `allowed_user_ids` has the group `project.group_project_manager`. Since a Project User is allowed to set followers on a task, it is legitimate to set the appropriate portal user as allowed. opw-2369674 closes odoo/odoo#60702 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Aaron Bohy authored
This commit updates owl from v1.0.10 to v1.0.13 See [1], [2] and [3] for the list of changes. [1] https://github.com/odoo/owl/commit/8da68e925b3baf00f671dd0435bc463d234031d7 [2] https://github.com/odoo/owl/commit/392185ab6740c8872ca6f19cc71e059b36d3a727 [3] https://github.com/odoo/owl/commit/d615ffd81b0b0c80780fcf022316769e10dc5dc1 closes odoo/odoo#60696 X-original-commit: cb12159a2bbfe71ba1cbe04c85c10ecce10e4c76 Signed-off-by:
Géry Debongnie (ged) <ged@openerp.com> Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
- Oct 23, 2020
-
-
Swapnesh Shah authored
Before this commit, There would be Traceback (AttributeError: 'bool' object has no attribute 'date') on `Confirm Receipt Date` If order has no `Receipt Date`. Now, Button `Confirm Receipt Date` will be hidden if there is not `Receipt Date` to confirm. Closed #60222 closes odoo/odoo#60659 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
qsm-odoo authored
This commit adds an easy improvement fixing a page speed warning: the font awesome font (declared in a font-face in assets_common) can be preloaded. The only problematic point was that font-awesome defines the font by a series of URL using different font formats. Only one can be preloaded (otherwise you would load files for no reason). As all Odoo supported browsers use the woff2 format, we only preload that one. At the cost of a warning for other browsers which use a different format. task-2350647 closes odoo/odoo#60588 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
Jeremy Kersten authored
Zip cannot be required if not in format address. It will break ecommerce, because the customer cannot validate the adress because zip code is not displayed but required. Fix case in JS where field is not display to avoid traceback. This commit closes #58950 closes odoo/odoo#60694 Signed-off-by:
Jérémy Kersten (jke) <jke@openerp.com>
-
- Oct 22, 2020
-
-
Andrea Grazioso (agr-odoo) authored
change Configure taxcloud, 2+ delivery carrier, card payment Go to the website shop Add product to cart Checkout with USA address On the Confirm Order page, the tax is computed via TaxCloud and shown on the right. Pay via payment acquirer site The Subtotal (without taxes) is sent to the Payment Acquirer instead of the Total This occur because when selecting delivery carrier coupon lines are recomputed. To be on the safe side with taxcloud, taxes are excluded before recomputing coupon lines, but never added in this specific flow. opw-2338103 opw-2362493 opw-2353048 closes odoo/odoo#60566 X-original-commit: f220e66d Related: odoo/enterprise#14349 Signed-off-by:
agr-odoo <agr-odoo@users.noreply.github.com> Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
- Oct 23, 2020
-
-
Anh Thao Pham (pta) authored
- Install website_sale - Go to Website > Products > Products and create a Product with "Tax 15.00%" (i.e. Product X) - Publish the Product on Website - Go to Invoicing > Configuration > Fiscal Positions - Create a first Fiscal Position: * Fiscal Position (Name): Fiscal Position A * Tax Mapping: Tax 15.00% => Tax 15.00% - Create a second Fiscal Position: * Fiscal Position (Name): Fiscal Position B * Tax Mapping: Tax 15.00% => Tax 0.00% - Create a Portal User (i.e. User X) - Go to Contacts and edit User X to set his Fiscal Position to Fiscal Position A - Connect with User X - Go to online Shop and add Product X in the cart - Open "My Cart" => Taxes are displayed correctly - Process checkout and enter an address, but do not pay - Disconnect - Change Fiscal Position of User X to Fiscal Position B - Reconnect with User X and open "My cart" - Open "My Cart" => Taxes are displayed as if the Fiscal Position has not been changed The prices and taxes in the cart are still based on the previous fiscale position. To fix that, fiscale position of SO will be compared to fiscale position of user, even if user has not changed. Howerver, as it is a specific use case, it will only be done if "sale_order_id" is not in session anymore. Also the cart from user's last visit will not be reloaded, but a new one will be created, as it is done when used pricelist is not available anymore. opw-2300330 closes odoo/odoo#60585 X-original-commit: bd77d0ca35a0ab724d235aca989b9c2357a25caf Signed-off-by:
Anh Thao PHAM <kitan191@users.noreply.github.com> Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Achraf (abz) authored
Issue - Install "l10n_latam_invoice_document" - Try to add a credit note to any invoice Cause "l10n_latam_manual_document_number" is unitialized when "l10n_latam_use_documents" is equal to False Solution Init "l10n_latam_manual_document_number" to False opw-2366298 closes odoo/odoo#60653 X-original-commit: 6b5f40f4310f02204d98c58d45f92a27c7fad7c1 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
fw-bot authored
On a thread with at least 21 replies, click on "show N more replies". The first time, it does the last 10 replies. Click again: it appends the same batch of 10 replies to the thread. The button loads the replies starting from the last reply id, but this id is not updated after load. This is because the code searches for a `p.well` in the DOM assumed to be the `o_mg_read_more` parent (see c40f1841). However, commit 59237ea8 removed the `.well` class of the parent. The new button is not found, the old button is not removed, and so it goes. Forward-Port of 4536764a closes odoo/odoo#60643 X-original-commit: 69dd830a15da2d7e43e6040e26d960d2e941002e Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Nasreddin (bon) authored
Issue - Install "Accounting" & "Studio" modules - Go to "Accounting" and switch studio editor - Go to "Reports" tab and select "Invoices" report - Click on any block to edit. Not possible to edit document. Cause Studio cannot parse dynamic `t-call` and therefore not able to render the corrects hooks to edit the report. The issue has been introduced by this commit: https://github.com/odoo/odoo/commit/5c5710ae8ea045569fd94504f9d8dd5209f7b662 Solution In the corresponding localization report template, add an 'Inheritance Specs' (position="after") that will add a condition where it will retrieve the rigth report name in case localization enabled. opw-2362257 closes odoo/odoo#60609 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Nicolas Galler authored
Behavior prior to this fix: When archiving the last variant on a template, the product template stays active (contrary to the comment indicating that `toggle_active` will archive the related product.template if there is only one active `product.product`). Behavior after the fix: When archiving the last variant on a template, the product template is archived. When un-archiving that variant, the product template is unarchived as well, without un-archiving the other variants. Note: this is a remake of a fix implemented in 77e5472c, as that fix did not correctly count the inactive variants. opw-2349862 closes odoo/odoo#60635 X-original-commit: 01160ee5 Signed-off-by:
Nicolas Galler <nicocrm@users.noreply.github.com>
-
qsm-odoo authored
When a snippet is out of the viewport or hidden, the overlay should not be visible. Two distinct cases we had: - When the page is scrolled, the header is sometimes hidden thanks to tranform: translate(0, -100%); for some kind of effect -> the header is thus still visible but out of the viewport, any selected snippet inside that header would still have this overlay enabled so we would see the move and delete button on the top of the screen. - When the page is scrolled, with the vertical header, some part of the header are hidden for the affixed version. If any snippet in those hidden elements was selected, the overlay is still visible floating. task-2312878 closes odoo/odoo#58383 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com> Co-authored-by:
Benjamin Vray <bvr@odoo.com> Co-authored-by:
Thanh Dodeur <tso@odoo.com>
-
lejeune quentin authored
When we want to upgrade the IoT box to the lastest version we need install kpartx to the third partition. However the source are not up to date and we can't fetch the package. So we must update this partition before fetch the package X-original-commit: 83ec693c m closes odoo/odoo#60638 Signed-off-by:
pimodoo <pimodoo@users.noreply.github.com> Signed-off-by:
Quentin Lejeune (qle) <qle@odoo.com>
-
Laurent Smet authored
When switching immediate payment term to 30% advance then back to immediate payment term, the receivable line is back to its previous value. This is due to the '_get_fields_onchange_balance' that is not updating correctly the business fields since price_subtotal == amount_currency. So, when `writing`, debit/credit are removed from the dictionary because the values are the same as before. However, `price_unit` hasn't be updated with the new value and remains as its previous value. It leads to a recomputation of accounting fields regarding the business fields and then, trigger the unbalanced journal entry. closes odoo/odoo#60614 Signed-off-by:
oco-odoo <oco-odoo@users.noreply.github.com>
-
Didier (did) authored
closes odoo/odoo#60285 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
Didier (did) authored
-
Didier (did) authored
-
Julien Giannone authored
closes odoo/odoo#60052 Task-id: 2343850 Signed-off-by:
Alexandre Kühn (aku) <aku@odoo.com>
-
Vanneri authored
closes odoo/odoo#60622 X-original-commit: b6ced2e13e328539b086067a836d1e0fba3990b7 Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
lejeune quentin authored
We release a new version of IoT Box. So we need to update the version. closes odoo/odoo#60590 Signed-off-by:
pimodoo <pimodoo@users.noreply.github.com>
-
lejeune quentin authored
We change the OS from Raspbian to Raspberry Pi OS So we change all occurence of raspbian to raspios m
-
lejeune quentin authored
We update the image to build the IoT from Raspbian to Raspberry Pi OS
-
Didier (did) authored
task-2343795 closes odoo/odoo#59989 Signed-off-by:
Alexandre Kühn (aku) <aku@odoo.com>
-
Nicolas Galler authored
Behavior prior to the fix: When accepting a meeting invite from the invitation email, if not logged in, an Internal Server Error is received. Additionally, if already logged in, an Internal Server Error is also received (albeit for a different reason) Behavior after the fix: Accepting (or declining) the meeting invite works and shows the accepted/declined meeting. opw-2366173 closes odoo/odoo#60556 Related: odoo/enterprise#14359 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Sébastien Theys authored
This PR has 3 parts: The members fix itself, which is necessary for performance reasons especially at init messaging, as per described in the task. Adding the partner name in the typing payload, because due to not knowing all members anymore, it is necessary to properly display who is typing. Restrict restoring scroll position only if the corresponding scroll height is available, to make the scroll feature and particularly the corresponding tests more robust. task-2360020 closes odoo/odoo#60091 Signed-off-by:
Alexandre Kühn (aku) <aku@odoo.com>
-
Antoine Vandevenne (anv) authored
closes odoo/odoo#60601 Signed-off-by:
Antoine Vandevenne (anv) <AntoineVDV@users.noreply.github.com>
-
Aurélien Warnon authored
This commit makes a small adjustment to the course view to hide the responsible label in the course description if none is set. As this field is not required on the slide.channel model, it's not necessary to show a useless label when it's not set. Task 2368573 closes odoo/odoo#60579 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
- Oct 16, 2020
-
-
Jorge Pinna Puissant authored
Allow having in an attachment as well as an error in the same document. This will allow to see the document that generates the error, and easy the process of debugging. closes odoo/odoo#60163 Related: odoo/enterprise#14167 Signed-off-by:
Jorge Pinna Puissant (jpp) <jpp@odoo.com>
-
- Oct 23, 2020
-
-
Jérémy Hennecart authored
The purpose of this commit is to have reliable calendar event reminder. Before, the reminders was not send directly and was instead put in mailing queue, which was leading to some delay. This is due do mail_notify_force_send context key being force to False when being in cron mode. However here we do not want to have calendar cron scheduling emails, then mailing cron sending them as it implies two delays. In order to try to send reminder mails as soon as possible compared to their schedule let us send mails directly during the calendar cron. Task ID-2331999 closes odoo/odoo#57994 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
Thibault Delavallée authored
Oversight of conflict solving in forward port 9d1909f2
-