- Oct 04, 2017
-
-
Lucas Perais (lpe) authored
Commit f4200f37 aimed at avoiding 414 errors on too long uri. But it brought up something else: on a new pos.config, the customer display html was not set due to that commit meddeling with the iframe's url. This present commit forces the set up of the html field on create and write (according to the values, as usual) the price to pay is to not being able to edit the html right away
-
qsm-odoo authored
-
qsm-odoo authored
-
kujiu authored
Allow to order from several columns in inline tree views (x2many fields in form views).
-
- Oct 03, 2017
-
-
Jeremy Kersten authored
Support now that the read can receive id from calendar.event that doesn't exists. And just ignore the inexisting ids.
-
Jeremy Kersten authored
Read(['start', 'start_datetime', 'start_date']) make the cache corrupt for computed field start_datetime or start_date. Now we don't read (for nothing ?) these 2 fields. We can remove the skip for the test #500fabf1 Before this commit, a simple : x = self.create({'name':'subject', 'allday': False, 'start': foo, 'stop': bar}) create randomly an event withtout start_datetime
-
Olivier Dony authored
Windows can be slower to start than that, sometimes.
-
Olivier Dony authored
-
Fabien Meghazi authored
Do not log a misleading "bad query" for cases where pg_database is not accessible.
-
Olivier Dony authored
[FIX] website_sale_delivery: remove ES6 template literals in untested commit da3c561d ES6 template literals are not supported in our testsuite / phantomjs yet, which is why none of this branch's commit had passing tests >:-( See #19841
-
Yenthe V.G authored
Better English Closes #19867
-
Simon Lejeune authored
- value move lines created when the move is done - when reducing done out move, increase latest in move in order to not lose the returned quantity in the fifo chain
-
Wolfgang Taferner authored
In case you have a delivery partner set on your shipping contact, when checkouting your cart, the preferred carrier will be used instead of the first available carrier.
-
Jeremy Kersten authored
-
Jeremy Kersten authored
...commenting it while we find the bug. Branch need to be green for v11
-
Jeremy Kersten authored
Before this commit, the priority of the view make that the warning was dipslayed between wishlist and comparator icon
-
Josse Colpaert authored
The production_id on the stock move line is a helper field for work orders and you can not assume it is always set correctly. As non-tracked stock moves create the stock move lines themselves it is not set. So, for logging notes, we check the 2 production order fields through the moves.
-
Josse Colpaert authored
Add a constraint in order to forbid it.
-
Quentin De Paoli authored
[FIX] account: onchange amount_currency in case of negative sign should set the credit (with a positive sign)
-
Richard Mathot authored
Before this fix, you can break a test class by simply adding an incorrect import like this: `from gloubiboulga import Casimir` --> No error message, the test is simply not run This is due to the fact that we want to ignore ImportError's... only when there is no `.tests` submodules (actually, we ignored them all!) This commit fixes the condition and re-enables error logging when tests actually encounter ImportErrors
-
Laurent Smet authored
Initially, the check was done in _compute_practical_amount. However, in case of no account_ids, an error is raised at each click until the account_ids are set. was PR #19860
-
amoyaux authored
test_03_test_serial_number_defaults creates 3 stock.production.lot but in a test case they have the same create_date. Moreover this test go through _assign_default_final_lot_id that do a search on lot ordered by create date. That's why the test is non- determinisitc since it could pick one of the 3 lots randomly This commit add the id in the order.
-
Josse Colpaert authored
When producing a finished product with a lot, also the raw materials without lot tracking should split the move lines to at least know the quantities consumed for every lot produced. This way, the traceability report will not confuse the user.
-
Goffin Simon authored
Typo error
-
amoyaux authored
_compute_package_info iterate on package but sometimes self is used resulting in an ensure one exception.
-
qsm-odoo authored
Since website refactoring, the behavior was lost and broke some snippets.
-
Nicolas Martinelli authored
opw-768886
-
Goffin Simon authored
The model "ir.values" has been renamed in "ir.default" by this commit: 60d9f6fe
-
Olivier Dony authored
- The `--no-database-list` option will now also block access to database management functions and screens. Presumably this flag should only be used in production when all databases have been provisioned, so the admin should like to block access to the db manager at the same time. - If no `--database` or `-d` parameter is provided, the system will be unable to fetch a list of databases at all, so users will be blocked with an error message. - Hide the link on the login screen to the DB manager when it is disabled, to prevent sending users to an error page. - Weak attempt at updating the documentation Note: the security check for RPC methods could have been done in the RPC dispatcher, however that would not have protected service methods when called directly, e.g. by a controller (e.g. the dump method).
-
Olivier Dony authored
- Add support for hashed master passwords (super-admin password) using a strong scheme (PBKDF2_SHA512). - Replace the password with a hash in memory (tools.config map), after verifying it - Automatically replace the plaintext master password with a hash when saving it after a password change - Preserve support for setting/using plaintext passwords when necessary (e.g. as a temporary deployment thing)
-
Christophe Simonis authored
-
Christophe Simonis authored
-
Christophe Monniez authored
-
Christophe Monniez authored
-
Christophe Monniez authored
Purpose: for multiple reasons (bytecode change in python 3.6, missing files for some packages, py2exe is unmaintained ...) the py2exe solution cannot be used anymore. Odoo for windows will now use a portable Python that will be shipped with the Windows installer. For that purpose, a Winpython 3.6.2 is used. In order to build the Windows installer, a Winpython dir with all the Odoo requirements fullfilled, must exists on the build system (qemu-kvm VM). * nsis installer: - Only the python dir is used to avoid packaging too much stuffs - better compression level - starts the Odoo service using nssm - bump to V11 * change the default win10 build vm path * print a warning when uncomplete addon move * try to force remove of addon path: when the addons are moved to Odoo/addons, it happens that the destination already exists. In that case, the source addon was not deleted, resulting in a uneeded file duplication. * fix version string to avoid invalid chars in windows service * Add requirements adpated for WinPython * package.py now shows the traceback when a build fails * verify that a file exists before publishing * debuild now creates an .xz file instead of .gz * package: use logging module * kvm CPU that works with older versions. * fix a pexpect encoding bug * fix the version to remove special chars '~' which is not appreciated by windows services [REM] win32setup: Remove win32 python service Purpose: Before this commit, the win32 service was managed by an executable builded from those two files with the help of py2xe. The win32 service is now managed by nssm which starts Odoo and therefore, those files are not needed anymore.
-
Christophe Monniez authored
-
Christophe Monniez authored
-
Christophe Monniez authored
-
Christophe Monniez authored
-
Christophe Monniez authored
-