- Dec 28, 2018
-
-
Nans Lefebvre authored
Default time was set to default=fields.Datetime.now() instead of default=lambda self: fields.Datetime.now(), resulting in a discrepancy when printing the report. opw 1917523
-
- Dec 11, 2018
-
-
Christophe Simonis authored
-
Romain Derie authored
Commit 5804246e introduced some improvements to speed up performances. One of them was to check if a customize_show view was active or not but the condition was on view.customize_show instead of view.active. Thus, as that view is always a customize_show, the condition would always be met. closes odoo/odoo#29414
-
- Dec 07, 2018
-
-
Raphael Collet authored
The definition of `attachment_ids` on model `email_template.preview` is wrong, because its table/columns refer to the model `mail.template`. As the field is only used to preview a result in a wizard form, it does not need to be stored. closes odoo/odoo#29349
-
- Dec 10, 2018
-
-
Julien (juc) Castiaux authored
The pager wasn't taking care of the filter opw-1912293 closes odoo/odoo#29360
-
- Dec 05, 2018
-
-
Laurent Smet authored
required: [('chart_template_id','!=',False)] doesn't work because you need to fill the chart_template_id to install a chart of accounts for your company. Then, the transfer_account becomes required before its installation and then, you are not able to install a chart of accounts for your company.
-
- Dec 04, 2018
-
-
Christophe Simonis authored
-
Jairo Llopis authored
If installed along with `auth_signup`, it sends an email when creating a missing user authenticated through LDAP. It is a confusing message that makes no sense, because the user is, from his POV, not actually creating a new user, but just authenticating with a new app with his known company-wide credentials. Besides, that invitation leads the user to change his password in Odoo, although he probably doesn't want to do that and have a password for Odoo and another in the LDAP server. The best option is to disable that email completely, which is what this commit does. closes odoo/odoo#29243
-
- Dec 05, 2018
-
-
Nicolas Martinelli authored
The module `vatnumber` (which is not maintained anymore) uses an incorrect validation method for Albanian VAT numbers. Therefore, we use the library `stdnum`, on which `vatnumber` relies for most cases. opw-1912680 closes odoo/odoo#29280
-
Julien (juc) Castiaux authored
opw-1913300 closes odoo/odoo#29263
-
Julien (juc) Castiaux authored
opw-1913108 closes odoo/odoo#29251
-
- Nov 30, 2018
-
-
Christophe Simonis authored
-
- Nov 29, 2018
-
-
Nicolas Martinelli authored
- Create an invoice with a discount - Validate - Open the Intrastat report The discount is not taken into account. opw-1913155 closes odoo/odoo#29161
-
Richard Mathot authored
Without the full stack trace, it is very hard for the developers to know why and where the record creation has failed. closes odoo/odoo#29143
-
Ravi Gohil authored
closes odoo/odoo#29147
-
- Nov 28, 2018
-
-
Christophe Simonis authored
-
- Nov 27, 2018
-
-
Christophe Simonis authored
-
Raphael Collet authored
Modifying a source term in an XML/HTML translated field can lose translations if the same term is translated in several languages. closes odoo/odoo#29078
-
Denis Roussel authored
The other methods do test password length before verifying it, so even if check_credentials() is not meant to be called directly, it's better to keep it consistent with the alternatives. Closes #29023
-
- Nov 26, 2018
-
-
Olivier Dony authored
We now support version 0.12.5(.1), which is available for all recent Debian and Ubuntu versions, and contains quite a few bug fixes. An up-to-date version of Odoo 10 or later is required, for pixel-perfect compatibility with the result of 0.12.1.3. See also the wiki for more info: https://github.com/odoo/odoo/wiki/Wkhtmltopdf
-
- Nov 22, 2018
-
-
Christophe Simonis authored
-
- Nov 21, 2018
-
-
Gert Pellin authored
Firefox for android gives atraceback when clicking the print receipt button. This traceback is caused becaus Firefox for Android does not support printing. This fix replaces the traceback by an explanation why it is not possible to print. Also backport for safari-fix closes odoo/odoo#28919
-
- Dec 04, 2018
-
-
Dharmraj Jhala authored
/!\ Should not be forward-ported in *12.0* /!\ Because of the mechanism to bind change / click event in the 10.0 implementation, when we are in edit mode on a product page, the event handlers that are in charge of updating the cart quantity can still be triggered. After this commit, click / change event while updating cart qty will not be effective in edit mode. task-1825889 Closes https://github.com/odoo/odoo/pull/24211 closes odoo/odoo#29224
-
Sylvain Van Hoof authored
The original method `put_in_pack` returns a `stock.quant.package`. Therefore, the override should do so. Fixes #27636 opw-1912671 closes odoo/odoo#29229
-
- Nov 30, 2018
-
-
Nicolas Martinelli authored
- Create a product A with a sales price of 40 - Create a pricelist where product A costs a fixed price of 100 - Assign this pricelist to a customer - Connect as the customer on the eCommerce On the eCommerce, the price for A is displayed as: ~~40~~ 100. We only display a price difference if the pricelist price is smaller than the sales price. opw-1885443 closes odoo/odoo#29141
-
- Dec 01, 2018
-
-
Odoo Translation Bot authored
-
- Nov 30, 2018
-
-
Nicolas Martinelli authored
- Create a product with 2 variants A & B - Set a weight on the variants (btw, the weight field is not available on the template in this case) - Create an invoice for A, validate On the intrastat report, the weight remains 0.0. The report clearly takes into account the weight of the template, not of the variant. We use the product weight, and fall back on the template weight. opw-1913305 closes odoo/odoo#29178
-
- Nov 21, 2018
-
-
Denis Ledoux authored
This revision brings the compatibility for our reports using wkhtmltopdf 0.12.5. Up to now, the supported wkhtmltopdf version was 0.12.1. The goal of this revision is to add the compatibility to wkhtmltopdf 0.12.5, while keeping the same exact rendering than in 0.12.1. There is a behavior change with the `--dpi` parameter, which no longer has a "zoom" level effect as it did with 0.12.1. To deal with it, we pass the `--zoom` parameter when the detected version installed of wkhtmltopdf is after 0.12.2, with a ratio 96:dpi. 96 being the default dpi of wkhtmltopdf. This trick allows to render the reports with the exact same zoom level, whatever the dpi value configured in the reports paperformat. (at least with dpi values up to 149, after 150, included, the dpi parameter with wkhtmltopdf 0.12.1 as a weird behavior, it no longer zoom out) opw-1907346 closes odoo/odoo#28864
-
Nicolas Lempereur authored
Fixing it directly by commit since there is no es_AR on transifex. The issue of the ticket has been solved by transifex, this is for another similar issue that has been found. opw-1907924 closes #28923
-
Denis Roussel authored
With an mrp user, add lots lines to mrp production order moves. Then, try to delete one line, the dustbin icon does not appear. opw-1908930
-
Denis Roussel authored
As the product_tmpl_id field is related one but not readonly, the creation of production order triggers a write on product.product model
-
- Nov 15, 2018
-
-
qsm-odoo authored
Commit https://github.com/odoo/odoo/commit/b43364af7258e45ad846fbbf1f375ad26e58eb0d introduced a row in a row. On a standard database, the bug is invisible. When the user wants to edit that event list page, the right column... is not on the right anymore. Note: in 12.0, thanks to BS4, the bug was revealed even more as even on a standard non-edited database, the bug is visible. Closes https://github.com/odoo/odoo/pull/28693
-
Christophe Simonis authored
-
Nicolas Lempereur authored
On firefox if we do for example: ALT+GR + [ALT+GRable ´ key] Firefox may send keys "AltGr" and "Dead" instead of just "AltGr". This was possibly causing caret to go a position too low when writing speedily with diacritical marks. opw-1903865 closes #28739
-
mao-odoo authored
Fine tuning of this commit:https://github.com/odoo/odoo/commit/7501691da9a9dae832b7d6e78c6a5f57fc983b5c Fields signup_token, signup_type, signup_expiration are protected When sending a quotation (mail template 'Sales Order - Send by Email'): the token needs to be read (and sometimes written) opw:1907157
-
- Nov 14, 2018
-
-
RomainLibert authored
We were using hr.contribution.register as a doc_model on the product.pricelist report which makes no sense since it should show pricelist informations
-
Gert Pellin authored
On to many open orders the + and - buttons will be pushed out of view. This makes it impossible to close orders without checking out.
-
- Nov 13, 2018
-
-
Quentin De Paoli authored
removed the access right that was granting the read access on invoices to any internal user, because there's no reason to do so. Fixes #28486
-
GabbasovDinar authored
The patch fixes the issue related to repeated orderline rerendering. It means that if products of the order were printed before, those will not be rendered again when new updates of order is sent to the kitchen. Closes #28577
-
- Nov 08, 2018
-
-
Josse Colpaert authored
If cost(purchase_price) was 0, margin calculation was incorrect. The function _product_margin didn't consider the use case where the cost of the product was set to 0 on the line. So before the fix it fallback on standard price instead of considering a cost of 0. opw:1890452, 1885587
-