- Jul 16, 2023
-
-
Odoo Translation Bot authored
-
- Jul 11, 2023
-
-
paso-odoo authored
Issue 1 ======= When an employee is archived and the user clicks on the 'Launch Plan' button from that employee, it will throw an IndexError saying the tuple index is out of range. Steps to produce: - Open any Employee > Action > Archive > Apply. - Open archived employee(s) from the Filters > Archived. - From list view or form view, Click on the 'Launch Plan' button. - Error: IndexError: tuple index out of range. Fixed this issue using the current company if the employee and their company are not found. Issue 2 ======= When a user clicks on the 'Launch Plan' button from that employee, It will throw an IndexError saying the tuple index is out of range. Steps to produce: - Open any Employee. - Make the 'name' field unrequired (Studio or Edit form view). - Now create a new employee - before clicking on the Save button click on the 'Launch Plan' button. - Discard Changes > Error will produce. Fixed this issue using the check before using the employee record. sentry-4259555464 closes odoo/odoo#125704 Signed-off-by:
Sofie Gvaladze (sgv) <sgv@odoo.com>
-
- Jul 09, 2023
-
-
Odoo Translation Bot authored
-
- Jul 02, 2023
-
-
Odoo Translation Bot authored
-
- Jun 26, 2023
-
-
Wolfgang Taferner authored
In case we use multi company and a user does not have an employee in every company which is quite normal (mostly you are employed with exactly one company), the calendar is skipping the provision of the unusual days like public holidays or the working schedule. To be able to access and see the calendar in such a case we fallback to the company calendar and fixed a domain for the public holiday retrieval whereas the public holidays are not assigned to an employee but the company or the companies chosen to be displayed. closes odoo/odoo#126289 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Jun 25, 2023
-
-
Odoo Translation Bot authored
-
- Jun 22, 2023
-
-
Benoit Socias authored
*: account, event_booth, gamification, hr, project, website_event_track, website_hr_recruitment, website_slides HTML fields that appear in the front-end can be modified using the website editor. Some of them are sanitized in a way that breaks the behavior of snippets that can be dropped within them. This commit adapts the sanitization of those HTML fields so that the snippets behave as expected. opw-3267589 closes odoo/odoo#125650 X-original-commit: 477cd32c7924ce79e8f29cf567fbbc625f24534f Related: odoo/enterprise#42802 Signed-off-by:
Romain Derie (rde) <rde@odoo.com>
-
- Jun 21, 2023
-
-
Thomas Lefebvre (thle) authored
Issue: ------ The "Launch Plan" button appears for an archived employee. It causes a traceback. Solution: --------- Do not display the button for an archived employee. opw-3366815 closes odoo/odoo#125896 X-original-commit: 6536a88b Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Jun 18, 2023
-
-
Odoo Translation Bot authored
-
- Jun 16, 2023
-
-
Kevin Baptiste authored
Plans with no company defined were not showing in the list when launching a plan on an employee. task-3366394 closes odoo/odoo#124853 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Jun 12, 2023
-
-
Victor Piryns (pivi) authored
Current behaviour: In mobile view, if an user that doesn't have any rights over "Employees", clicking on any of the Many2One `employee_id` (for ex: when adding a timesheet on a task and clicking on the employee field), for either the dropdown, or to the form view with the `external` button, we get a stacktrace. Expected behaviour: We shouldn't be met with a stacktrace, if we don't have rights, we should be redirected to the corresponding view for the `hr.employee. public` model. Steps to reproduce: - Install Timesheets - Set Marc Demo's Employee's right to `none/empty`, login as Marc - In mobile view, go to Project > a task > open the timesheet sheet - Click on Add or any of the present timesheets - Click on employee field, either on it (redirect to the mobile kanban view of all employees) or to the right edge of it (redirect to the form view for the currently selected employee). - Instead of being redirected, you are met with a stacktrace. Reason for the problem: Since the migration to Owl, there is an implicit consistency expected between what is the requested model for said view, and the model we get back from the server for said view. In general (for example when in desktop view), usually we pass by an override of `get_formview_action` which changes the model we are loading front-end side depending on the access to the employee model. If access, we load `hr.employee`, if no access, `hr.employee.public`. But for mobile, we don't pass by an action, we just load a dialog, and the `resModel` used for the dialog is based on the `relation` of the `Many2OneField`, which is `hr.employee`. In that case when `get_views` is being called, we receive a view with the model key being `hr.employee.public`, which is inconsistent with what the front-end requested (which is `hr.employee`) and we have a stacktrace in owl. Fix: Override the `relation` property to the correct model in the corresponding widget set on the template of the field, based on available group. This relation is used to set the `resModel` when opening the dialog. Affected versions: - 16.0 - saas-16.1 - saas-16.2 - saas-16.3 - master opw-3269817 closes odoo/odoo#123217 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Jun 11, 2023
-
-
Odoo Translation Bot authored
-
- Jun 07, 2023
-
-
Jurgen (jugj) authored
This task aims to rework the wizard that creates a salary configurator and pre-fills the applicant's name, phone and email task - 3171707 closes odoo/odoo#118213 Related: odoo/enterprise#38202 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Jun 06, 2023
-
-
Thomas Lefebvre (thle) authored
Steps to reproduce: ------------------- - create two employees (A and B); - create a user; - add the user in Related User of employee A; - remove the user; - add the user in Related User of employee B; - change the Work Email of the employee B. Issue: ------ The Work Email of the employee A is also updated. Cause: ------ When we add a `user_id` to an employee, we update the `work_contact_id` field. Fields `mobile_phone` and `work_email` are inverse fields. When we modify them, the `_inverse_work_contact_details` method is called. We update the `work_contact_id` linked to the employee. When we delete an employee's `user_id`, we don't update the `work_contact_id`. Therefore, when we update an employee's `work_contact_id`, we call the `_compute_work_contact_details` method method for all employees who have the same `work_contact_id`. The result is that we modify the `mobile_phone` and `ẁork_email` fields for all employees linked to the `work_contact_id`. Solution: --------- Differentiate the case where the `user_id` is `False` (>< `None`) when it is modified and does not contain a value to "synchronise" the `work_contact_id`. opw-3338188 closes odoo/odoo#123830 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Jun 04, 2023
-
-
Odoo Translation Bot authored
-
- Jun 02, 2023
-
-
Prakash Prajapati authored
[FIX] hr: remove the `quick create` on the many2one_avatar_employee and many2many_avatar_employee widget In this commit we have removed quick create option from many2one_avatar_employee and many2many_avatar_employee widget. because of There are too many faulty employees records coming from a quick Enter press on a list. Example: According to my attention when we do quick create then partner is not created. task-3343117 closes odoo/odoo#123006 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- May 31, 2023
-
-
Jurgen (jugj) authored
[FIX] hr : Hide field department in launch plan wizard if multiple employees from different departments are selected task - 3279067 closes odoo/odoo#119948 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- May 30, 2023
-
-
Kevin Baptiste authored
The fix introduced in odoo/odoo#114903 created another issue: changing the work email would change the private email also, breaking the seperation of the contacts for the employee. The initial behavior was correct: - a res.partner for the work details (email, phone, etc.) - a res.partner (of type private) for the personal details of the employee. task-3284664 closes odoo/odoo#119460 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
Jurgen (jugj) authored
[FIX] web, hr(_recruitment) : Fix the phone field widget text breaking in multiple lines This PR Fixes the phone widget in the hr views and adds back the possibility to SMS to mobile and phone task - 3242157 closes odoo/odoo#116168 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- May 28, 2023
-
-
Odoo Translation Bot authored
-
- May 23, 2023
-
-
Martin Trigaux authored
closes odoo/odoo#122042 Related: odoo/enterprise#41329 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- May 21, 2023
-
-
Odoo Translation Bot authored
-
- May 14, 2023
-
-
Odoo Translation Bot authored
-
- May 09, 2023
-
-
Jurgen (jugj) authored
task - 3175879 closes odoo/odoo#114342 Related: odoo/enterprise#37775 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- May 07, 2023
-
-
Odoo Translation Bot authored
-
- Apr 26, 2023
-
-
Odoo Translation Bot authored
-
- Apr 17, 2023
-
-
Thomas Lefebvre (thle) authored
When creating an employee with a private contact, the contact will not be automatically added to the employee's followers. The desired behavior is that the contact is added to the followers even if it has a private address. Commit: 8760a4d0 However, this behavior will not be possible because adding a contact with a private address is forbidden. Commit: 20536e1b Solution: The solution is to use the private method `_message_subscribe`. This is not a problem in the business case. Indeed, the people who have access to the employee's file also have access to the private contacts. Moreover, the access rights of the public method `message_subscribe` do not concern this business case. opw-3249646 closes odoo/odoo#118779 X-original-commit: b06857afa371d2164f1f5ec402a6074a237d8230 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Apr 16, 2023
-
-
Odoo Translation Bot authored
-
- Apr 14, 2023
-
-
Martin Trigaux authored
closes odoo/odoo#118563 Related: odoo/enterprise#39760 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Apr 09, 2023
-
-
Odoo Translation Bot authored
-
- Apr 02, 2023
-
-
Odoo Translation Bot authored
-
- Mar 29, 2023
-
-
Kevin Baptiste authored
The employee's avatar would show the placeholder to users without read rights on hr.employee for views using the standalone widget (e.g. gantt view). closes odoo/odoo#114800 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Mar 28, 2023
-
-
Kevin Baptiste authored
Users without HR Officer rights would see an empty avatar for the employees, as the m2x_avatar_fields were using `hr.employee` as model. Now the `relation` can be overridden. closes odoo/odoo#116828 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
- Mar 26, 2023
-
-
Odoo Translation Bot authored
-
- Mar 20, 2023
-
-
Rohitkumar (roku) authored
Steps to reproduce: - Install Employees App Configuration - Got to the Employees > Configuration > Activity Planning > Set the On/Offboarding Plans - Create Test Employee With No Catch - Click on Launch Plan action - Check the Warning in Launch Plan Wizard When employee's coach or manager empty then warning is appeared coach's/manager's user is not set.In this commit we have shown in the warning that the coach/manager is not set. task-3193218 closes odoo/odoo#112980 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
Martin Trigaux authored
They dates from < 2027 and are quite outdated. Favour the nl translation instead. n_BE is not on Transifex so it was not possible to correct bad translations. closes odoo/odoo#115798 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Mar 19, 2023
-
-
Odoo Translation Bot authored
-
- Mar 14, 2023
-
-
Roy Le authored
Steps: 1. Create Employee A that related with user A / partner A in Sales department 2. Create a channel Sales, set Auto Subscribe Departments as Sales department 3. Archive Employee A / user A / partner A 4. Create a application B in Sales department and click button Create Employee 5. An error occurred: duplicate key value violates unique constraint "mail_channel_partner_partner_unique" closes odoo/odoo#115164 X-original-commit: e5e2cc8e Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Mar 12, 2023
-
-
Odoo Translation Bot authored
-
- Mar 10, 2023
-
-
niyasraphy authored
before this commit, enabling the mass editing for the various tree view using the studio throws exception saying field used in domain is missing in the view * install studio, hr, hr_holidays * open department tree * enable mass editing for the tree using studio app * exception will be raised similarly for the hr.job, hr.plan, hr.work.location and hr.leave tree views. after this commit, on enabling mass editing on this tree view, exception will not be shown. closes odoo/odoo#114889 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-