- Oct 26, 2020
-
-
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
-
- Oct 21, 2020
-
-
Nicolas Galler authored
Behavior prior to the fix: The email template associated with a product on an invoice placed via the web portal is sent with no email_from, resulting in a failure. The reason is that before 13.0 .sudo() before sending a mail would send it as superuser user (which was the intention in this case), but since 13.0 for the same intention we need .with_user(SUPERUSER_ID). Behavior after the fix: When sending the product email, if we are in SU mode, we'll switch to the super user account, emulating the pre-13.0 behavior. Similar fix to b12bcfbb opw-2346415 closes odoo/odoo#60409 X-original-commit: 7749fec536bd1533f0da0a2bc0df084e4e80ed4d Signed-off-by:
Nicolas Galler <nicocrm@users.noreply.github.com> Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Christophe Monniez authored
With this commit, the executions bits are fixed on some xml, csv and ttf files. The fix was initialy made at the Debian packaging level. As xlwt is now in Debian buster, the overide is removed. The linked fonts in Debian package are now removed in one line to simplify the code. closes odoo/odoo#60114 Signed-off-by:
Christophe Monniez (moc) <moc@odoo.com>
-
- Oct 22, 2020
-
-
Denis Ledoux authored
Skip the computation of the field `l10n_latam_document_type_id` at the module installation. The case has been detected during an upgrade from Odoo 12.0 to Odoo 13.0, but the case could really well happen outside the context of an upgrade, for instance when you create a new subsidiary in Chile or Argentina while you already have a lot of accounting entries in your other subsidiaries (e.g. Odoo S.A. opens a new office in Chile and has to install `l10n_cl`) Without this, at the module installation, it would call `_compute_l10n_latam_document_type` on all existing records which can take quite a while if you already have a lot of moves. It can even fail with a MemoryError. In addition, it sets `_compute_l10n_latam_document_type = False` on all records because this field depends on the many2many `l10n_latam_available_document_type_ids`, which relies on having records for the model `l10n_latam.document.type` which only happens once the according localization module is loaded. (e.g. `l10n_cl/data/l10n_latam.document.type.csv`) The localization module is loaded afterwards, because the localization module depends on this module, (e.g. `l10n_cl` depends on `l10n_latam_invoice_document`, and therefore `l10n_cl` is loaded after) and therefore there are no records for the model `l10n_latam.document.type` at the time this fields gets computed on installation. Hence, all records' `_compute_l10n_latam_document_type` are set to `False`. In addition, multiple localization module depends on this module (e.g. `l10n_cl`, `l10n_ar`) So, imagine `l10n_cl` gets installed first, and then `l10n_ar` is installed next, if `l10n_latam_document_type_id` needed to be computed on install, the install of `l10n_cl` would call the compute method, because `l10n_latam_invoice_document` would be installed at the same time, but then `l10n_ar` would miss it, because `l10n_latam_invoice_document` would already be installed. Besides, this field is computed only for drafts invoices, as stated in the compute method: `for rec in self.filtered(lambda x: x.state == 'draft'):` So, if we want this field to be computed on install, it must be done only on draft invoices, and only once the localization modules are loaded. It should be done in a dedicated post init hook, filtering correctly the invoices for which it must be computed. Though I don't think this is needed. In practical, it's very rare to already have invoices (draft, in addition) for a Chilian or Argentian company (`res.company`) before installing `l10n_cl` or `l10n_ar`. ``` Traceback (most recent call last): File "/src/odoo/13.0/odoo/service/server.py", line 1190, in preload_registries registry = Registry.new(dbname, update_module=update_module) File "/src/odoo/13.0/odoo/modules/registry.py", line 86, in new odoo.modules.load_modules(registry._db, force_demo, status, update_module) File "/src/odoo/13.0/odoo/modules/loading.py", line 423, in load_modules loaded_modules, update_module, models_to_check) File "/src/odoo/13.0/odoo/modules/loading.py", line 315, in load_marked_modules perform_checks=perform_checks, models_to_check=models_to_check File "/src/odoo/13.0/odoo/modules/loading.py", line 202, in load_module_graph registry.init_models(cr, model_names, {'module': package.name}, new_install) File "/src/odoo/13.0/odoo/modules/registry.py", line 364, in init_models env['base'].flush() File "/src/odoo/13.0/odoo/models.py", line 5458, in flush self.recompute() File "/src/odoo/13.0/odoo/models.py", line 5875, in recompute process(field) File "/src/odoo/13.0/odoo/models.py", line 5859, in process recs.mapped(field.name) File "/src/odoo/13.0/odoo/models.py", line 5266, in mapped recs = recs._mapped_func(operator.itemgetter(name)) File "/src/odoo/13.0/odoo/models.py", line 5225, in _mapped_func vals = [func(rec) for rec in self] File "/src/odoo/13.0/odoo/models.py", line 5225, in <listcomp> vals = [func(rec) for rec in self] File "/src/odoo/13.0/odoo/models.py", line 5690, in __getitem__ return self._fields[key].__get__(self, type(self)) File "/src/odoo/13.0/odoo/fields.py", line 2329, in __get__ return super().__get__(records, owner) File "/src/odoo/13.0/odoo/fields.py", line 995, in __get__ self.compute_value(recs) File "/src/odoo/13.0/odoo/fields.py", line 1109, in compute_value records._compute_field_value(self) File "/src/odoo/13.0/odoo/models.py", line 3968, in _compute_field_value field.compute(self) File "/src/odoo/13.0/odoo/fields.py", line 579, in _compute_related record[self.name] = self._process_related(value[self.related_field.name]) File "/src/odoo/13.0/odoo/models.py", line 5699, in __setitem__ return self._fields[key].__set__(self, value) File "/src/odoo/13.0/odoo/fields.py", line 1070, in __set__ self.write(protected_records, value) File "/src/odoo/13.0/odoo/fields.py", line 2564, in write cache.update(records, self, [cache_value] * len(records)) File "/src/odoo/13.0/odoo/api.py", line 768, in update field_cache.setdefault(record_id, {})[key] = value MemoryError ``` Upgrade request 49495 closes odoo/odoo#60572 X-original-commit: f2a08faa1e65cb381315cbd5d1a359901e8b7deb Signed-off-by:
Denis Ledoux (dle) <dle@odoo.com>
-
Thanh Dodeur authored
Before this commit, archived and deleted partners had not their im_status being updated automatically. There were some issues with this, notably: - odoobot 'bot' status was not displayed in chatter - im_status of partners becoming archived were not updated. This commit fixes both issues. task-2329591 closes odoo/odoo#60398 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
- Oct 21, 2020
-
-
qsm-odoo authored
On editor start, "the cursor enters editable text" at a "random" time thus switching immediately to text tools or not depending on the fact text tools switching was initialized or not. We now only allow to do so after some fixed delay after the editor is ready, to prevent any automatic switching on editor start (which may break tours). Part of https://github.com/odoo/odoo/pull/60383 task-2352339 closes odoo/odoo#60383 Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
qsm-odoo authored
Do not switch to text tools if the cursor is in an empty oe_structure (to encourage using snippets there and actually avoid breaking tours which suppose the snippet list is visible). Part of https://github.com/odoo/odoo/pull/60383 Related to task-2352339
-