- Feb 25, 2021
-
-
alt-odoo authored
A move with type 'entry' cannot be posted in a 'sales' journal. It should be the default 'miscellaneous' journal instead. closes odoo/odoo#66851 X-original-commit: 1c456859 Signed-off-by:
William André (wan) <wan@odoo.com> Signed-off-by:
Alex Tuyls <alt-odoo@users.noreply.github.com>
-
alt-odoo authored
In case a yearly sequence is set for out_invoice/in_invoice types and if we set a monthly sequence on the corresponding out_refund/in_refund type, we will not be able to validate the refund the next month as it will be wrongly identified as a yearly sequence. We should include the move type when retrieving the last sequence name instead. X-original-commit: 612f453a
-
Laurent Smet authored
When reconciling a statement line from the bank reconciliation widget, the journal entry of the statement line is already posted and then, the analytic lines was never created. This commit fixes the issue by refreshing the analytic lines at the end of the statement line's reconciliation. closes odoo/odoo#66850 Opw: 2466236 X-original-commit: 2c38dc6e Signed-off-by:
Quentin De Paoli (qdp) <qdp@openerp.com> Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
Romeo Fragomeli authored
Since commit odoo/odoo@c96e3b96f307685d03d240fac81fb0e83ca85f1d the TouchEvent constructor was added to the test utils. In FireFox (no touch mode) and Safari (desktop) this constructor doesn't exist and so the test suite won't start anymore. This commit, inserts TouchEvent constructor only when it's supported by the browser. So now we can run the tests in FireFox and Safari again. closes odoo/odoo#66846 X-original-commit: 296fd86ddf90cff8d5b8f095d0c51b1c5a8b59ca Signed-off-by:
Géry Debongnie (ged) <ged@openerp.com> Signed-off-by:
rfr-odoo <rfr-odoo@users.noreply.github.com>
-
Jorge Pinna Puissant authored
- install e-commerce and l10n_ar; - as a Public user open a product on the shop. Before this commit, an 403 error was raised. Now, the public user can navigate through the products. opw-2462477 closes odoo/odoo#66839 X-original-commit: 9a047c6a Signed-off-by:
Jorge Pinna Puissant (jpp) <jpp@odoo.com>
-
Ipsita Borisagar authored
Before this commit: For chatter in window, the name of the record is not in an appropriate place in header as there is an empty space before name. After this commit: The name of the record is aligned to the left, and there is no empty space before the name. LINKS Task- 2442652 PR https://github.com/odoo/odoo/pull/65600 closes odoo/odoo#66838 X-original-commit: 699672a0 Signed-off-by:
Alexandre Kühn (aku) <aku@odoo.com>
-
Yannick Tivisse authored
Purpose ======= When we want to retrieve all the contract (running for instance), we don't care about the fact that the employee is archived or not. For example when we generate the work entries to generate the payslips, we actually pay the employee, even if he's archived (which is the normal flow). closes odoo/odoo#66836 X-original-commit: 262bf8598f9d885382c05e523543019767b521bf Related: odoo/enterprise#16677 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
Alexandre Kühn authored
Before this commit, messaging.start() may crash due to bus service not yet deployed. This commit fixes the issue by ensuring `start()` is always called when the bus service is deployed. To do so, we introduce a new service (Messaging) that simply waits for bus service deployment before invoking messaging start. Task-2468483 closes odoo/odoo#66828 Signed-off-by:
Sébastien Theys (seb) <seb@odoo.com>
-
Laurent Smet authored
Suppose an invoice of 1200USD = 3600EUR reconciled with a payment 1800USD = 3600EUR. The generated exchange difference journal entry is: 600USD = 0EUR because 1800 - 1200 - 600 = 0 and 3600 - 3600 = 0 => Everything is reconciled and all residual amounts are 0. Remove the reconciliation. The exchange difference entry is reversed in other to cancel it. Because the current exchange difference entry contains a line of 600USD, the reversal is creating a line of -600USD. Before this commit: Because both lines were sharing the same foreign currency (EUR) but have an amount_residual_currency of 0, no partial was created and then, a new exchange difference was generated in order to fix the amount_residual of 600 in USD. After this commit: A partial is created to handle the residual amount in USD even the residual amount in foreign currency is already zero. Note: this issue is also there when the reconciliation is made using the company's currency with different foreign currencies. In that case, amount_residual is zero but not amount_residual_currency. closes odoo/odoo#66825 Opw: 2450699 X-original-commit: 07d5735d Signed-off-by:
oco-odoo <oco-odoo@users.noreply.github.com> Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com>
-
Prakash Prajapati authored
Currently, When we load the Year view of the calendar then the view is not properly scrolled top due to padding at the top. Calendar is scrolled to the current month but due to top padding in year view it was not scrolled top when initially it was loaded. So in this commit, remove the top padding and use padding on month so it will not have initial scroll when scroll to the particular month. Set default calendar view to 'month'. closes odoo/odoo#66811 Taskid: 2428655 X-original-commit: adbade3c1a000c476644e616d66af5cb982249cf Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Feb 24, 2021
-
-
Oussama MESSAOUDI authored
Before this commit, display mode is changed to block after hiding it on mobile mode. After this commit, only change display mode for mobile and use inherited mode otherwise. task-2431659 closes odoo/odoo#66787 X-original-commit: 83112caf Signed-off-by:
Quentin Smetz (qsm) <qsm@odoo.com>
-
- Feb 25, 2021
-
-
Géry Debongnie authored
Warning: this commit savagely patches qunitjs sourcecode. I know... I feel bad. Since we updated the way debug=assets work, we have a new problem in the qunit test suite: the tracebacks displayed by QUnit are relative to the bundle file, not the original file, which is annoying in practice. There is really no good way that I could find to integrate with QUnit to perform that task, so I had to do it the ugly way: modify QUnit from the inside to use the StackTrace library to annotate the traceback with the proper information. closes odoo/odoo#66771 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
Géry Debongnie authored
-
Géry Debongnie authored
Before this commit, the module system logged module errors by displaying the stack. Fun fact: the stack in Chrome does display the error message (which is why nobody complained too much about bad error messages), but this is not true in firefox. Also, and this is a bigger issue, when we serialize the error stack like this, we prevent the browser to apply sourcemaps, if any. Which means that errors in debug=assets are not easy to understand. With this commit, we display the raw error, which means that in debug=assets, this will be nicely formatted by the browser when displayed in the console.
-
Antoine Prieels authored
Only the 'action' requests have the 'data' parameter set, so any other request triggering a 'device_changed' failed. closes odoo/odoo#66826 X-original-commit: 0850814d Signed-off-by:
Quentin Lejeune (qle) <qle@odoo.com> Signed-off-by:
Antoine Prieëls <aprieels@users.noreply.github.com>
-
Ipsita Borisagar authored
Before this commit: For an example, when task is going to 'Done' state at that time mail is sent to customer for feedback, answering of that mail contain smiley face plus subtype description in chatter. After this commit: A subtype description is removed to the smiley face from message. Links PR https://github.com/odoo/odoo/pull/66137 Task-2373127 closes odoo/odoo#66137 Related: odoo/enterprise#16340 Related: odoo/upgrade#2157 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
Christophe Monniez authored
Zeep replaced suds but Debian and Rpm packaging were not updated. Ofxparse is required but did not appear in Debian nor Rpm packaging. closes odoo/odoo#66814 X-original-commit: 280df5ac Signed-off-by:
Christophe Monniez (moc) <moc@odoo.com>
-
Xavier BOL (xbo) authored
Before this commit, the user can select a sales order which is always a quotation and he cannot select a sales order line because the state of the sales order is not equal to 'sale' or 'done'. This commit adds ('state', 'in' ['sale', 'done']) in the domain of the sale_order_id field in project.project model. closes odoo/odoo#66804 X-original-commit: eb642e7e73f6ea3bb93a25629317a7c49e5770cc Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
Jacky (trj) authored
Task ID: 2419637 closes odoo/odoo#66154 Signed-off-by:
pimodoo <pimodoo@users.noreply.github.com>
-
Jacky (trj) authored
This change allows the user to directly go to the closing session page from the `pos_config` settings if a session is active Task ID: 2419637
-
Jacky (trj) authored
This change allows the user to see how many seats are already taken in a table. Task ID: 2419637
-
Jacky (trj) authored
[IMP]: point_of_sale UI: `NumberPopup` and `NumberBuffer` can pre-select input which will change the value upon triggering a key The user doesn't need to delete the current input before changing it. He can now write hiw new value which will erase the current one. The guest popup from the `pos_restaurant` module and the global discount popup from the `pos_discount` module benefit from this and have their input pre-selected. Before: when opening the guest or discount popup, the user always has to delete the curent value before changing it. Let's say that the current value was `5`, the user needs to either press the `Delete` or `Backspace` button/key before entering his new value. After: the user doesn't need to press the `Delete` or `Backspace` button/key and can now directly enter his new value Task ID: 2419637
-
Jacky (trj) authored
Task ID: 2419637
-
Jacky (trj) authored
Before: to enable price control, we first have to install the `pos_hr` module by enabling the "Authorized Employees" option. Only then was the price control option visible. It was then possible to enable/keep the price control option while having the "Authorized Employees" disabled. This behavior did not make sense. After: Price control is now visible and independent from the `pos_hr` module. The feature was already implemented in the `point_of_sale` module but the option (in the `pos_config` view) was put in the `pos_hr` module. Task ID: 2419637
-
Jacky (trj) authored
Allowing user to group by the POS Product Category is more relevant Task ID: 2419637
-
Jacky (trj) authored
The confirm and cancel text was not adapted for the load demo data popup. Those have been respectively changed to `Yes` and `No` Task ID: 2419637
-
jbw authored
When creating a new currency from the list view, the currency was given 1.0 as rate since this was the field's default value. The "onchange" on rate would then trigger. If 1.0 is more than 20% different than the latest rate, a warning was popped. This warning prevented the creation of the new rate. Meaning one could not create a new currency rate if the latest rate > 1.25 or < 0.833. This is fixed by setting the latest rate as default value. closes odoo/odoo#66798 Task: 2450747 X-original-commit: 02f241a35cf3a758d7759c394eb8642375dee5df Signed-off-by:
Laurent Smet <smetl@users.noreply.github.com> Signed-off-by:
jbw-odoo <jbw-odoo@users.noreply.github.com>
-
Arnaud Joset authored
Before this commit, the datetime range selection was lost when the quick create dialog was opened. closes odoo/odoo#64948 Taskid: 2342252 Related: odoo/enterprise#15915 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
Arnaud Joset authored
Before this commit, the calendar.event record was not properly linked to the hr.leave record. taskid: 2342252
-
Arnaud Joset authored
This commit improves the calendar behavior. * Before this commit, the invisible attribute were not evaluated in the calendar popover. * Several alignment, label, improvements taskid: 2342252
-
Arnaud Joset authored
Before this commit, the avatar was not properly aligned with the text. Taskid: 2342252
-
Arnaud Joset authored
This commit improves multiple small details in the calendar application. UI, UX mostly: * some labels were confusing * the invisible attribute were not set in popover view * the sample data were missing * ... taskid: 2342252
-
- Feb 24, 2021
-
-
Yannick Tivisse authored
closes odoo/odoo#66515 Related: odoo/enterprise#16482 Related: odoo/upgrade#2178 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
Aurélien (avd) authored
Revamp the kanban view of fleet.vehicle.log.services. Add some ux improvements (new filters, better naming,..). Fix bug where contracts/services of archived fleet.vehicle were not counted in statinfo. When a fleet.vehicle is archived, archive its related contracts/services. closes odoo/odoo#62556 Taskid: 2389823 Related: odoo/upgrade#2063 Related: odoo/enterprise#15036 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Jan 21, 2021
-
-
Nisha patel authored
Currently, Dates displaying on activities of Time Off application are not easy to read for users and We already have dates on the form with the right user format. So we don't need it again on the chatter So in this commit, we improve the activity summary message by removing the dates from summary of activity. closes odoo/odoo#60610 Taskid: 2339411 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Feb 17, 2021
-
-
Ipsita Borisagar authored
Before this commit: In edit mode, glitching of chatter is visible in project.project and project.task's form view(without sheet tag). After this commit: Removed this glinch of chatter and displaying it with full width in the form (without sheet tag). LINKS PR https://github.com/odoo/odoo/pull/66314 Task- 2411632 closes odoo/odoo#66314 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Feb 24, 2021
-
-
Christophe Monniez authored
Now that a test exists to enforce `__init__.py` in odoo module, we must ensure that we keep the feature. For that reason, a white-list system is added in `test_dunderinit` and a test is added in order to be sure that a module without `__init__.py` can be exists. This this is made of a fake module `test_data_module` without `__init__.py` and a test module which ensure the fake module was installed. closes odoo/odoo#66778 X-original-commit: 506755ef Related: odoo/enterprise#16653 Signed-off-by:
Christophe Monniez (moc) <moc@odoo.com>
-
Christophe Monniez authored
Odoo modules without `__init__.py` are not recognized as python modules and therefore not packaged by standard tools. X-original-commit: 45e14adb
-
Christophe Monniez authored
When a module is added, it happens that the `__init__.py` file is forgotten. In that case, those modules are not packaged. With this commit, a test is added to check that each Odoo module has the file. X-original-commit: edabed7b
-
Christophe Monniez authored
Some json files are necessary for some modules but are not included in packaging. closes odoo/odoo#66779 X-original-commit: d33c05b6 Signed-off-by:
Christophe Monniez (moc) <moc@odoo.com>
-