Daily updates from Odoo
Friday, June 28, 2019
2 changes
New functionality added to Odoo
Recruitment teams can now store and manage resumes and applicant letters directly through the Documents app. A new setting enables automatic organization of job and applicant attachments in a dedicated Recruitment workspace with status tags, helping teams keep hiring documents easier to find and control.
Original PR description
Purpose ======= Be able to use document to manage resume and letters from the recruitment app. Specification ============= When attachments are uploaded for hr.job and hr.applicant, integrate them in the Documents app. Add a setting to enable this behaviour (similar to project, product, etc.) Data: Workspace "Recruitment" (child of "HR" workspace) Facet (tag category): Status Tags in this category: "Inbox", "Recruitment", "Cancelled"
Payroll rules can now calculate totals for a pay category across completed payslips over a chosen date range. This helps payroll teams reuse historical category totals in salary calculations, improving flexibility for allowances, deductions, and similar payroll components.
Original PR description
[IMP] hr_payroll: added new functionality to sum the payslip line by category code
Rule 1: result = payslip.sum('HRA', date, date)
Here sum() method will return the total of all payslip lines which rule have code = 'HRA' from all done payslips
Rule 2: result = categories.ALW
It will show the total of all lines having the category ALW in current payslip
Added in this commit -
Rule 3: result = payslip.sum_categories('ALW', date, date)
This method will return the total of all payslip lines having the category code = 'ALW' from all done payslips
Task:1895658