- Oct 03, 2017
-
-
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
-
Christophe Monniez authored
-
Christophe Monniez authored
-
Christophe Monniez authored
-
Christophe Monniez authored
-
Christophe Monniez authored
* Add an option to avoid signing deb package * update windows vm name * add memory to kvm as win10 needs 1G * increase win VM timeout because win10 seems slower to start * add an option to keep build dir for debugging purpose
-
Christophe Monniez authored
* Add a minimum systemd service file
-
Christophe Monniez authored
Debian copyright file was only mentioning odoo files. Now all js and css files with specific copyright / licenses are added.
-
Richard Mathot authored
Very smooth, super smart, easy win.
-
stefanorigano authored
-
qsm-odoo authored
This commit solves a bug when using custom background option: if a custom background was selected, then hovering a non-custom background and leaving the dropdown was selecting the non-custom background for good instead of resetting back to the custom one. This is because the custom background option is a non-preview one (you have to click) so there should not be any need of resetting... except that the non-custom background option is a preview one and messes with the same DOM attributes as the custom background option.
-
Richard Mathot authored
-
Nicolas Lempereur authored
This field can be called on an hr.expense for onchange on an hr.expense.sheet record, thus the recordset could be a virtual ID so self.ids could be empty leading to an error.
-
Quentin De Paoli authored
-
Quentin De Paoli authored
People should be able to change manually the tax amounts on vendor bills, since they have to encode exactly what they receive and because the supplier may round differently than Odoo. On the other hand, in vendor bills, it's useless to try to compute a cash rounding impacting the taxes... as they should be now able to manually adapt it. So in vendor bills, the 'amount' field has to be the visible and editable one
-
Lucas Perais (lpe) authored
Before this commit, links that had no target location opened in _self, which is the iframe within which they are embedded. After this commit, thos links are now opened in _parent to simulate closer the beahavior with an actual e-mail
-