- Dec 04, 2019
-
-
wan authored
Task 2046908 Instead of having all the fields duplicated with second_*, we have now a o2m allowing us to * have more than 2 lines * reduce duplicated code * fix bugs and add features at only one place We also remove the computation of writeoff and suggestions from the client side as some code was 4-upled before (twice in in client and twice in server side). The logic is now only at one place. closes odoo/odoo#38119 Related: odoo/enterprise#6324 Signed-off-by:
Quentin De Paoli (qdp) <qdp@openerp.com>
-
- Dec 03, 2019
-
-
Nicolas Martinelli authored
The only good solution is to set `show_reserved` to `True` to avoid any kind of weirdness... This reverts commit eed3171f. closes odoo/odoo#41303 X-original-commit: de962efb Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Nicolas Lempereur authored
If we do a payment with: - a currency different than the journal - the journal currency the same as company currency => it fails, because of the constraint on account.move.line: > The amount expressed in the secondary currency must be positive when > account is debited and negative when account is credited. with code: ``` CHECK(currency_id IS NULL OR company_currency_id IS NULL OR ((currency_id != company_currency_id) AND {conditions on balance})) ``` This happens because in this use case, a NON-NULL currency_id means that the currency is different than the company currency, this was not taken into account when creating a liquidity line. opw-2150267 closes #41244 closes odoo/odoo#41278 X-original-commit: f9d75e3a Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com>
-
shreya thakrar authored
Using studio odoo doesn't let user drop notebook in a group since it generates issues with the notebook. (See https://github.com/odoo/enterprise/commit/ea5ccd548bb6781e5ccdf76cf11255c6fd6aa3cb ) For better understanding, a note for 'notebook' tag is added by this commit. task - 2060330 closes odoo/odoo#41264 X-original-commit: a2d331af0df859fd29e84bfa30a9086c3d2e0fa8 Related: odoo/enterprise#7009 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
shreya thakrar authored
Usually in a form view, a notebook is not placed within group/s. Also, using studio we don't let user drop notebook in a group since it generates issues with the notebook.(See https://github.com/odoo/enterprise/commit/ea5ccd548bb6781e5ccdf76cf11255c6fd6aa3cb) This commit fixes the issue by moving notebook out of the group and making the 'payment.icon' form view structure consistent(and properly editable with studio). task - 2060330 X-original-commit: c4efe0173478be8b6a643d5fefef4244384ea6c2
-
- Nov 26, 2019
-
-
wan authored
When we post multiple draft moves at the same time, the numbering should be done by starting with the oldest one up to the newest. closes odoo/odoo#41138 X-original-commit: 5b745eb6 Related: odoo/enterprise#6975 Signed-off-by:
Quentin De Paoli (qdp) <qdp@openerp.com>
-
- Dec 03, 2019
-
-
Nicolas Lempereur authored
If we have eg. a report with a page break (eg. `Print On New Page` enabled on a financial report section) the encoding is broken. The reason is that lxml.html fragments_fromstring function accepts text string (OK in unicode) or bytestring => the encoding will be guessed (by chardet library) if guess_charset argument is set to true. So since we do not pass guess_charset option, the encoding is not recognized. In this changeset, we give a text string to the fragments_fromstring function since it seems that all our input should be in UTF-8. note: lxml.html itself uses html5lib.HTMLParser parseFragment that takes a charset argument, but there is no interface through fragments_fromstring to specify the charset. opw-2146715 closes #41255 closes odoo/odoo#41289 X-original-commit: 1d3d517a Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com>
-
David Beguin authored
If a visitor logs in (and has a visitor_id in his cookie), the partner will be linked to the visitor. If, after 1 week, the visitor tries to connect again with a different session (or another visitor_id in cookies), the authenticate will crash because * _cron_archive_visitors applies on visitor inactive since at least a week * there can be only one visitor per partner (sql constraint) * the visitor linked to the partner is not retrieved (because archived) and we try to link the partner to a new visitor. Further than that, if the visitor is archived and the linked partner wants to login again with a new visitor_id, we should * reactivate the previous visitor, * copy history from newest to previous one, * delete the newest one Note that last two points were already done before this commit. Task ID: 2120464 PR #40199 Fixes #40077 Fixes #40301 closes odoo/odoo#41273 Original-signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com> X-original-commit: 53a6bed3b5c1ae09be490254ed09f18acbb970c4 Signed-off-by:
David Beguin <dbeguin@users.noreply.github.com>
-
Victor Feyens authored
When computing the price of a product through a pricelist item, if the item was based on anotherp pricelist, the dates and uom weren't given to the subsequent method call. As the majority of the calls to those pricelist methods put all their arguments in the context, it wasn't noticed until now. Functional example: Pricelist A: Rule A1 : 10% discount on Pricelist B, from day 3 to day 6. Pricelist B: Rule B1: 5% discount on Sales price, from day 3 to day 6, Rule B2: 10% discount, from day 7 to day 9. If today was day 8, the call to pricelist(A)._compute_price_rule(day=5) would use rules A1 and B2, but should have used rules A1 and B1. closes odoo/odoo#41295 X-original-commit: df9b1138 Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
- Dec 02, 2019
-
-
Josse Colpaert authored
closes odoo/odoo#41291 X-original-commit: 81eb531009ccc7acc11ef18791e5bb7f9fee16ae Signed-off-by:
Josse Colpaert <jco@openerp.com>
-
- Dec 03, 2019
-
-
Nicolas Vannieuwerburgh authored
closes odoo/odoo#41267 X-original-commit: f17d389c Signed-off-by:
Raphael Collet (rco) <rco@openerp.com> Co-authored-by:
Denis Ledoux <dle@odoo.com> Co-authored-by:
Raphael Collet <rco@odoo.com>
-
Nicolas Martinelli authored
Set a default company since it is mandatory and hidden in mono-company mode. opw-2129187 closes odoo/odoo#41259 X-original-commit: ffb6360e Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Vincent Schippefilt authored
Before this fix, a QUnit test was wrong (didn't parse) After this fix, the test actually works and tests something. closes odoo/odoo#41257 X-original-commit: 3818a7f0df754717a7379dc8341729b508a166be Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com>
-
Xavier Morel authored
Make the domain stricter as well: * no reason to have / match a token if the payment method is not electronic * don't lose the capture mode * don't remove the company filter though it's probably not useful (as the journal and payment should already be in the same company so the check on the token's acquirer's journal should be enough) The domain used to select the default payment should not matter too much. Task 2147923 closes odoo/odoo#40959 Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com>
-
Xavier Morel authored
Note: the original would only set the domain if `l10n_latam_use_documents` was enabled but even if the fields are not shown without that it doesn't make much sense to allow any document type to be selected when latam docs are *not* being used. In this revision, the document type is always filtered by available types and that is only non-empty if we're using latam documents. Task 2147923 closes odoo/odoo#40955 Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com>
-
Goffin Simon authored
Steps to reproduce the bug: - Let's consider a fiscal position FP with automatic detection for customer in your country - Let's consider two taxes T1 and T2 where T1 is mapped by T2 in FP - Let's consider a product P with T1 as customer taxe - Let's consider a customer C in your country with no fiscal position - Create a repair order for C - Add P as an add line Bug: T1 was set as customer taxe for P instead of T2. When manually creating an invoice for C with P, FP is automatically detected and T2 is set. With this fix, the automatic detection of FP is applied on repair order. opw:2120595 closes odoo/odoo#40856 X-original-commit: 3810f9d9 Signed-off-by:
Simon Goffin (sig) <sig@openerp.com>
-
Aaron Bohy authored
Task 2046921 closes odoo/odoo#41251 X-original-commit: d81cadc1 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
Jason Van Malder authored
Issue - Swiss company - Install Accounting & Studio - Journals > Customers Invoice - Communication standard: Switzerland - Journals > Bank - Swizz account with CHF ISR subscription number - Studio > Reports > ISR Traceback Cause If the statement of the `l10n_ch_isr_optical_line` compute method is False, the value will be `None`. In the view, we do a foreach on the value which is `None` and it crashes. Solution Set an empty string as default value for the `l10n_ch_isr_optical_line` field OPW-2129122 closes odoo/odoo#41247 X-original-commit: a0dc556b Signed-off-by:
Jason Van Malder <jasonvanmalder@users.noreply.github.com>
-
- Dec 02, 2019
-
-
Laurent Smet authored
With the reload from attachment ticked (attachment_use) when dealing with a single pdf, the attachment's content must be returned without calling _merge_pdfs in order to preserve the embedded files. Since PyPDF2 doesn't support completely the embedded files, there are simply dropped with creating a new pdf in _merge_pdfs even with a single attachement. closes odoo/odoo#41246 Issue: https://github.com/odoo/odoo/issues/41079 X-original-commit: a8f96bc7 Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
- Dec 03, 2019
-
-
Nicolas Martinelli authored
`custom_layout` should be set as a context key, otherwise it crashes at creation because of non-existing field. opw-2146695 opw-2149726 closes odoo/odoo#41238 X-original-commit: f9837eb0 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Raphael Collet authored
closes odoo/odoo#40574 Signed-off-by:
Raphael Collet (rco) <rco@openerp.com>
-
Julien Castiaux authored
New fields created from `ir.model.fields` view form are copy=True by default (copy=False in case of One2many) thanks to an onchange but manually created fields were not (e.g. created from Studio) Task: 2067885
-
- Nov 29, 2019
-
-
Nicolas Martinelli authored
Do not remove the country set on the company when the state is removed. closes odoo/odoo#41234 X-original-commit: dfa2a3b7 Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
- Dec 02, 2019
-
-
mightyjol (jhk) authored
steps to reproduce: -install the manufacturing app -install studio -go to manufacturing > click on the studio icon (top right of the window) > click views > activate the gantt view you should see a traceback with the following error "Invalid field 'progress' on model 'mrp.production'" mrp_production does not have a progress field => removal of the property "progress" in the view fixes the issue opw-2144823 closes odoo/odoo#41197 X-original-commit: 31bf2531 Signed-off-by:
mightyjol <jhk-odoo@users.noreply.github.com>
-
Damien Bouvy authored
The `session_info` dictionnary is used to bootstrap some JS code client side (usually in the backend). It includes relevant information, such as some parameters key for the OdooBot onboarding, the Enterprise subscription expiration alert, etc. to avoid triggering a lot of RPC calls upon webclient start. `session_info` is also called by the remote authentication mechanism located at `/web/session/authenticate`, which can be used by external mechanism to obtain a valid session remotely. Revision odoo/odoo@8a28cc2 introduced the concept of cache keys for some oft-requested data (such as menus, translations and dynamic qweb templates) to avoid requesting them on each webclient start, since they tend not to change often. Unfortunately, it introduced a read on the ir.ui.menu model that raised an `AccessError` if the authenticating user was not a member of the `base.group_user` group ('Internal' user type). While fixing that issue, it became apparent that `session_info` returns a whole lot of information through this remote connection route which is entirely unnecessary if not used in the context of a webclient start, such a currencies, the state of the enterprise subscription, etc. This commit fixes the access right issue by removing this non-relevant information from the returned dict (including cache keys) if the user is not an internal one. closes odoo/odoo#40770 X-original-commit: 6e99ac2c Related: odoo/enterprise#6860 Signed-off-by:
Damien Bouvy (dbo) <dbo@odoo.com>
-
Nicolas Martinelli authored
For better usability. opw-2146601 closes odoo/odoo#41201 X-original-commit: 807dddab Signed-off-by:
Nicolas Martinelli (nim) <nim@odoo.com>
-
Xavier Morel authored
Task 2115472 closes odoo/odoo#40961 Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com>
-
Jason Van Malder authored
Reproduce the issue - Load Arabic language - Install Accounting - Create an invoice & add credit note - Switch to arabic - Click on the "(i)" icon near the total price The popover is displayed at the other side of the screen Cause - RTLcss was reversing the "left: 0" css property to "right: 0" - The popover configuration was not adapted for RTL This commit ignore RTL for the popover css "left" property and configure correctly the JS side OPW-2146210 closes odoo/odoo#41200 X-original-commit: 88f03f04 Signed-off-by:
Jason Van Malder <jasonvanmalder@users.noreply.github.com>
-
- Nov 29, 2019
-
-
Jason Van Malder authored
Reproduce the issue - Load Arabic language - Install Sales - Report > Sales - Switch to arabic - Click on the pivot view to display the dropdown The dropdown position is incorrect Cause The calculations are based on a `left` value who is weird. This commit use the mouse X position to compute the `left` value. OPW-2146210 X-original-commit: d021f425
-
- Dec 02, 2019
-
-
svs-odoo authored
Move the method `_prepare_purchase_order_line` from 'stock.rule' to 'purchase.order.line'. The purpose is to reuse it in approvals_purchase. task-2040710 closes odoo/odoo#41046 Related: odoo/enterprise#6702 Signed-off-by:
Simon Lejeune (sle) <sle@openerp.com>
-
Quentin De Paoli authored
closes odoo/odoo#41186 Related: odoo/enterprise#6989 Signed-off-by:
Quentin De Paoli (qdp) <qdp@openerp.com>
-
Nicolas Lempereur authored
In the case of deletion with `ondelete="set null"`, return_path of children of deleted record will not have return_path updated. So remove the children recursively. Another fix was done in 13.0 to avoid most issue in 6d5cd8b1. opw-2148046 closes #41075 closes odoo/odoo#41178 X-original-commit: 6d5cd8b1 Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com>
-
Simon Lejeune authored
- the oderpoint_id field on the purchase order line wasn't used to not merge the po lines - if the orderpoint_id field is set, use the orderpoint location to create the move - if multiple stock moves with different source locations go through `_merge_moves`, they should obviously NOT be merged - `virtual_available` computed field was not being invalidated when the context keys "warehouse" and "location" changed task-2001462 closes odoo/odoo#40573 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
Odoo's Mergebot authored
PURPOSE Clean posting process and improve mail.message definition and comprehension. Move as much possible content from website_* modules to portal_* modules to ease their use in customer portal without having to depend on website. SPECIFICATIONS: MAIL.MESSAGE DESCRIPTION Move description from website_mail directly to mail. Anyway it is a non stored computed field and therefore having it available directly in mail does not cost anything. SPECIFICATIONS: MAIL.MESSAGE WEBSITE PUBLISHED Website mail defines a website_published field allowing to publish / unpublish comments on the frontend of some modules. This field has several drawbacks : * it is used only for front-end people (portal, public) and has no real effect in chatter / classic discussions; * it is used only in some advanced front-end module and is not available in portal by default; * its naming is not really correct as it is not linked to fields coming from the website_published mixin and its behavior is not really the same; * its use is a bit duplicated with internal flag coming from subtype allowing to hide messages related to an internal subtype; * there are overrides of standard mail.message methods just to handle this flag; In this merge we change that field by an is_internal flag directly on mail.message model itself.It tells if share people (customers, share users) are allowed to read the message. This field can be given through posting API or set manually using widgets. It is also used in access rights custom methods and managed like the internal flag of subtypes. Mailgateway was already using an internal flag for internal note replies. It is renamed to is_internal and propagated as it is now a standard field. It also eases code understanding. Portal is updated to allow managing the flag directly. It means customer portal now natively allows to moderate customer comments without any need of website modules. Rating is updated accordingly. An is_internal field is added, replacing the related on website published. Also rename subtype parameter of message_post to subtype_xmlid. In order to be more explicit subtype parameter is renamed to subtype_xmlid. It therefore clearly indicates it should be a valid subtype Xml ID. Support of ill formatted Xml IDs is removed because there is no reason to try to add some random prefix. Give something that exists or go to hell, punk ! Finally mail.message and rating.rating form views are updated to include is_internal flag and perform some view cleaning. An entry of ratings in Technical/Discuss is added for debugging / management purpose. SPECIFICATIONS: MOVE WEBSITE RATING TO PORTAL RATING Now that publish feature is replaced by internal directly in mail and portal rating portal inclusion can be done safely in a portal_rating module instead of website_rating. It allows to remove the dependency and give the rating feature of customer chatter directly in portal applications. LINKS Task ID 2071556 PR #38692 Related: odoo/enterprise#6410 Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
Thibault Delavallée authored
Purpose of this commit is to add some missing fields in message view, notably is_internal newly added flag and its ratings. Rating form view is also updated to display is_internal flag, and form view is a bit reorganized. Task ID 2071556 PR #38692
-
Thibault Delavallée authored
PURPOSE Clean posting process and improve mail.message definition and comprehension. Move as much possible content from website_* modules to portal_* modules to ease their use in customer portal SPECIFICATIONS Now that website_rating is now portal_rating, let us update translations files accordingly. LINKS Task ID 2071556 PR #38692
-
Thibault Delavallée authored
PURPOSE Clean posting process and improve mail.message definition and comprehension. Move as much possible content from website_* modules to portal_* modules to ease their use in customer portal SPECIFICATIONS Now that publish feature is replaced by internal directly in mail and portal rating portal inclusion can be done safely in a portal_ratign module instead of website_rating. It allows to remove the dependency and give the rating feature of customer chatter directly in portal applications. LINKS Task ID 2071556 PR #38692
-
Thibault Delavallée authored
PURPOSE Clean posting process and improve mail.message definition and comprehension. SPECIFICATIONS In this commit we use the is_internal flag to correctly propagate it from mail gateway and clean some parent check. In this commit some code is cleaned. No functional change should occur with this commit. LINKS Task ID 2071556 PR #38692
-
Thibault Delavallée authored
PURPOSE Clean posting process and improve mail.message definition and comprehension. SPECIFICATIONS Website mail defines a website_published field allowing to publish / unpublish comments on the frontend of some modules. This field has several drawbacks : * it is used only for front-end people (portal, public) and has no real effect in chatter / classic discussions; * it is used only in some advanced front-end module and is not available in portal by default; * its naming is not really correct as it is not linked to fields coming from the website_published mixin and its behavior is not really the same; * its use is a bit duplicated with internal flag coming from subtype allowing to hide messages related to an internal subtype; * there are overrides of standard mail.message methods just to handle this flag; In this commit we change that field by an is_internal flag directly on mail.message model itself. It tells if share people (customers, share users) are allowed to read the message. This field can be given through posting API or set manually using widgets. It is also used in access rights custom methods and managed like the internal flag of subtypes. Mailgateway was already using an internal flag for internal note replies. It is renamed to is_internal and propagated as it is now a standard field. It also eases code understanding. Portal is updated to allow managing the flag directly. It means customer portal now natively allows to moderate customer comments without any need of website modules. Rating is updated accordingly. An is_internal field is added, replacing the related on website published. LINKS Task ID 2071556 PR #38692
-
Thibault Delavallée authored
PURPOSE Clean posting process and improve mail.message definition and comprehension. SPECIFCIATIONS Move description from website_mail directly to mail. Anyway it is a non stored computed field and therefore having it available directly in mail does not cost anything. LINKS Task ID 2071556 PR #38692
-