mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-23 15:32:06 +02:00
Initial commit: OCA Mrp packages (117 packages)
This commit is contained in:
commit
277e84fd7a
4403 changed files with 395154 additions and 0 deletions
47
odoo-bringout-oca-timesheet-hr_timesheet_report/README.md
Normal file
47
odoo-bringout-oca-timesheet-hr_timesheet_report/README.md
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
# Task Logs Timesheet Report
|
||||
|
||||
Odoo addon: hr_timesheet_report
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-timesheet-hr_timesheet_report
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- hr_timesheet
|
||||
- report_xlsx
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Task Logs Timesheet Report
|
||||
- **Version**: 16.0.1.0.0
|
||||
- **Category**: Human Resources
|
||||
- **License**: AGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/timesheet](https://github.com/OCA/timesheet) branch 16.0, addon `hr_timesheet_report`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original AGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Hr_timesheet_report Module - hr_timesheet_report
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for hr_timesheet_report. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [hr_timesheet](../../odoo-bringout-oca-ocb-hr_timesheet)
|
||||
- [report_xlsx](../../odoo-bringout-oca-reporting-engine-report_xlsx)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon hr_timesheet_report or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-timesheet-hr_timesheet_report"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-timesheet-hr_timesheet_report"
|
||||
```
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in hr_timesheet_report.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class account_analytic_line
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: hr_timesheet_report. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon hr_timesheet_report
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Reports
|
||||
|
||||
Report definitions and templates in hr_timesheet_report.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class HrTimesheetReport
|
||||
TransientModel <|-- HrTimesheetReport
|
||||
class HrTimesheetReportAbstractField
|
||||
AbstractModel <|-- HrTimesheetReportAbstractField
|
||||
class HrTimesheetReportGroupByField
|
||||
TransientModel <|-- HrTimesheetReportGroupByField
|
||||
class HrTimesheetReportEntryField
|
||||
TransientModel <|-- HrTimesheetReportEntryField
|
||||
class HrTimesheetReportGroup
|
||||
TransientModel <|-- HrTimesheetReportGroup
|
||||
class HrTimesheetReportEntry
|
||||
TransientModel <|-- HrTimesheetReportEntry
|
||||
class Report
|
||||
AbstractModel <|-- Report
|
||||
```
|
||||
|
||||
## Available Reports
|
||||
|
||||
### PDF/Document Reports
|
||||
- **Timesheet Report** (PDF/Print)
|
||||
- **Timesheet Report** (PDF/Print)
|
||||
- **Timesheet Report** (PDF/Print)
|
||||
|
||||
|
||||
## Report Files
|
||||
|
||||
- **hr_timesheet_report.py** (Python logic)
|
||||
- **hr_timesheet_report.xml** (XML template/definition)
|
||||
- **__init__.py** (Python logic)
|
||||
|
||||
## Notes
|
||||
- Named reports above are accessible through Odoo's reporting menu
|
||||
- Python files define report logic and data processing
|
||||
- XML files contain report templates, definitions, and formatting
|
||||
- Reports are integrated with Odoo's printing and email systems
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in hr_timesheet_report.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../hr_timesheet_report/security/ir.model.access.csv)**
|
||||
- 9 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[ir.model.access.csv](../hr_timesheet_report/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon hr_timesheet_report
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,114 @@
|
|||
==========================
|
||||
Task Logs Timesheet Report
|
||||
==========================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:8b7c4edcc3cae9581c26fa6b95199c9796fa6896de44ed7a08eab019503a8ab5
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Ftimesheet-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/timesheet/tree/16.0/hr_timesheet_report
|
||||
:alt: OCA/timesheet
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/timesheet-16-0/timesheet-16-0-hr_timesheet_report
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/timesheet&target_branch=16.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module allows to generate configurable Timesheet Report from Task Logs.
|
||||
|
||||
Features:
|
||||
|
||||
* Select reported fields
|
||||
* Select and reorder report line grouping
|
||||
* Configure time format (HH:MM, HH:MM:SS, or decimal)
|
||||
* View in browser, export in PDF and XLSX formats
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
To create report using Timesheet Report Wizard on a specific set of Timesheet entries:
|
||||
|
||||
#. Go to *Timesheets > My Timesheets* or *Timesheets > All timesheets*.
|
||||
#. Select entries that should be used in the report
|
||||
#. Press the *Action > Generate Timesheet Report* button
|
||||
#. Configure the report and export it in one of the formats
|
||||
|
||||
To create report using Timesheet Report Wizard on a generic set of Timesheet entries:
|
||||
|
||||
#. Go to *Timesheets > Reporting > Timesheet Report Wizard*.
|
||||
#. Configure the report and export it in one of the formats
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/timesheet/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/timesheet/issues/new?body=module:%20hr_timesheet_report%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* CorporateHub
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Dhara Solanki <dhara.solanki@initos.com>
|
||||
|
||||
* `CorporateHub <https://corporatehub.eu/>`__
|
||||
|
||||
* Alexey Pelykh <alexey.pelykh@corphub.eu>
|
||||
|
||||
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||
|
||||
* Víctor Martínez
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
.. |maintainer-alexey-pelykh| image:: https://github.com/alexey-pelykh.png?size=40px
|
||||
:target: https://github.com/alexey-pelykh
|
||||
:alt: alexey-pelykh
|
||||
|
||||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
||||
|
||||
|maintainer-alexey-pelykh|
|
||||
|
||||
This module is part of the `OCA/timesheet <https://github.com/OCA/timesheet/tree/16.0/hr_timesheet_report>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import models
|
||||
from . import wizards
|
||||
from . import report
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright 2018-2020 Brainbean Apps (https://brainbeanapps.com)
|
||||
# Copyright 2020 CorporateHub (https://corporatehub.eu)
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
{
|
||||
"name": "Task Logs Timesheet Report",
|
||||
"version": "16.0.1.0.0",
|
||||
"category": "Human Resources",
|
||||
"maintainers": ["alexey-pelykh"],
|
||||
"website": "https://github.com/OCA/timesheet",
|
||||
"author": "CorporateHub, " "Odoo Community Association (OCA)",
|
||||
"license": "AGPL-3",
|
||||
"installable": True,
|
||||
"application": False,
|
||||
"summary": "Generate Timesheet Report from Task Logs",
|
||||
"depends": [
|
||||
"hr_timesheet",
|
||||
"report_xlsx",
|
||||
],
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
"views/account_analytic_line.xml",
|
||||
"report/hr_timesheet_report.xml",
|
||||
"wizards/hr_timesheet_report_wizard.xml",
|
||||
],
|
||||
}
|
||||
|
|
@ -0,0 +1,517 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_timesheet_report
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%(report_name)s\" report with \"%(report_type)s\" type not found"
|
||||
msgstr "\"%s\" izvještaj sa \"%s\" tipom nije pronađen"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%s\" report type is not supported"
|
||||
msgstr "\"%s\" tip izvještaja nije podržan"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "%s not set"
|
||||
msgstr "%s nije postavljeno"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Date Range:</span>"
|
||||
msgstr "<span>Opseg datuma:</span>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Timesheets Report</span>"
|
||||
msgstr "<span>Izvještaj radnih listova</span>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<strong>Subtotal</strong>"
|
||||
msgstr "<strong>Podukupno</strong>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__line_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__any_line_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__line_ids
|
||||
msgid "Account Analytics Lines"
|
||||
msgstr "Linije analitike računa"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__aggregation
|
||||
msgid "Aggregation"
|
||||
msgstr "Agregacija"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Analitička stavka"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one Details field must be specified!"
|
||||
msgstr "Najmanje jedno polje Detalja mora biti specificirano!"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one field must be listed in Details Fields"
|
||||
msgstr "Najmanje jedno polje mora biti navedeno u poljima Detalji"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__cell_classes
|
||||
msgid "Cell classes"
|
||||
msgstr "Klase ćelije"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__department_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__department_ids
|
||||
msgid "Departments"
|
||||
msgstr "Odjeljenja"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Departments:"
|
||||
msgstr "Odjeli:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__entry_field_ids
|
||||
msgid "Details Fields"
|
||||
msgstr "Polja detalja"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_category_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_category_ids
|
||||
msgid "Employee Tags"
|
||||
msgstr "Oznake zaposlenih"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employee Tags:"
|
||||
msgstr "Oznake zaposlenika:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_ids
|
||||
msgid "Employees"
|
||||
msgstr "Zaposleni"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employees:"
|
||||
msgstr "Zaposlenici:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_to
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_to
|
||||
msgid "End Date"
|
||||
msgstr "Datum završetka"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__entry_ids
|
||||
msgid "Entries"
|
||||
msgstr "Unosi"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__entry_field_ids
|
||||
msgid "Entry Fields"
|
||||
msgstr "Polja unosa"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to PDF"
|
||||
msgstr "Izvezi u PDF"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to XLSX"
|
||||
msgstr "Izvezi u XLSX"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_name
|
||||
msgid "Field"
|
||||
msgstr "Polje"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_entry_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_groupby_field_name_uniq
|
||||
msgid "Field can be reported only once!"
|
||||
msgstr "Polje može biti izvještano samo jednom!"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_name
|
||||
msgid "Field name"
|
||||
msgstr "Naziv polja"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_title
|
||||
msgid "Field title"
|
||||
msgstr "Naslov polja"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_type
|
||||
msgid "Field type"
|
||||
msgstr "Tip polja"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.act_window,name:hr_timesheet_report.action_timesheet_report_wizard
|
||||
#: model:ir.actions.server,name:hr_timesheet_report.action_timesheet_report_wizard_from_selection
|
||||
msgid "Generate Timesheet Report"
|
||||
msgstr "Generiraj izvještaj radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__group_id
|
||||
msgid "Group"
|
||||
msgstr "Grupa"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__groupby_field_ids
|
||||
msgid "Group-By Fields"
|
||||
msgstr "Polja grupiranja"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__groupby
|
||||
msgid "Group-by expression"
|
||||
msgstr "Izraz grupiranja"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__grouping_field_ids
|
||||
msgid "Grouping Fields"
|
||||
msgstr "Polja grupiranja"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__group_ids
|
||||
msgid "Groups"
|
||||
msgstr "Grupe"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report
|
||||
msgid "HR Timesheet Report"
|
||||
msgstr "HR izvještaj radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard
|
||||
msgid "HR Timesheet Report Wizard"
|
||||
msgstr "Čarobnjak HR izvještaja radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field
|
||||
msgid "HR Timesheet Report Wizard field"
|
||||
msgstr "Polje čarobnjaka HR izvještaja radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_details
|
||||
msgid "HR Timesheet Report Wizard field (details)"
|
||||
msgstr "Polje čarobnjaka HR izvještaja radnih listova (detalji)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_grouping
|
||||
msgid "HR Timesheet Report Wizard field (grouping)"
|
||||
msgstr "Polje čarobnjaka HR izvještaja radnih listova (grupiranje)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_entry
|
||||
msgid "HR Timesheet Report entry"
|
||||
msgstr "Unos HR izvještaja radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field
|
||||
msgid "HR Timesheet Report field"
|
||||
msgstr "Polje HR izvještaja radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_entry
|
||||
msgid "HR Timesheet Report field (entry)"
|
||||
msgstr "Polje HR izvještaja radnih listova (unos)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_groupby
|
||||
msgid "HR Timesheet Report field (groupby)"
|
||||
msgstr "Polje HR izvještaja radnih listova (grupiranje)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_group
|
||||
msgid "HR Timesheet Report group"
|
||||
msgstr "Grupa HR izvještaja radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__has_line_ids
|
||||
msgid "Has lines (technical)"
|
||||
msgstr "Ima linije (tehničko)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__name
|
||||
msgid "Name"
|
||||
msgstr "Naziv:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__project_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__project_ids
|
||||
msgid "Projects"
|
||||
msgstr "Projekti"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Projects:"
|
||||
msgstr "Projekti:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__report_id
|
||||
msgid "Report"
|
||||
msgstr "Izvještaj"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Report %s"
|
||||
msgstr "Izvještaj %s"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__scope
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__scope
|
||||
msgid "Scope"
|
||||
msgstr "Opseg"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_from
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_from
|
||||
msgid "Start Date"
|
||||
msgstr "Početni datum"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__task_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__task_ids
|
||||
msgid "Tasks"
|
||||
msgstr "Zadaci"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Tasks:"
|
||||
msgstr "Zadaci:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__time_format
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__time_format
|
||||
msgid "Time format"
|
||||
msgstr "Format vremena"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_html
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_pdf
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_xlsx
|
||||
#: model:ir.model,name:hr_timesheet_report.model_report_hr_timesheet_report_report
|
||||
msgid "Timesheet Report"
|
||||
msgstr "Izvještaj radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.ui.menu,name:hr_timesheet_report.menu_timesheet_report_wizard
|
||||
msgid "Timesheet Report Wizard"
|
||||
msgstr "Čarobnjak izvještaja radnih listova"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_title
|
||||
msgid "Title"
|
||||
msgstr "Naslov"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Ukupno"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__total_unit_amount
|
||||
msgid "Total Quantity"
|
||||
msgstr "Ukupna količina"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_type
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "View"
|
||||
msgstr "Pregled"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__wizard_id
|
||||
msgid "Wizard"
|
||||
msgstr "ID čarobnjaka"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "on"
|
||||
msgstr "na"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "selected entries"
|
||||
msgstr "odabrani unosi"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "since"
|
||||
msgstr "od"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "until"
|
||||
msgstr "do"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "{l} » {r}"
|
||||
msgstr "{l} » {r}"
|
||||
|
|
@ -0,0 +1,523 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_timesheet_report
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2022-09-05 17:07+0000\n"
|
||||
"Last-Translator: Yves Le Doeuff <yld@alliasys.fr>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%s\" report type is not supported"
|
||||
msgstr "\"%s\" n'est pas un type d'état supporté"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%s\" report with \"%s\" type not found"
|
||||
msgstr "L'état \"%s\" dont le type est \"%s\" est inconnu"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "%s not set"
|
||||
msgstr "%s non paramétré"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Date Range:</span>"
|
||||
msgstr "<span>Période:</span>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Timesheets Report</span>"
|
||||
msgstr "<span>Etat des temps passés</span>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<strong>Subtotal</strong>"
|
||||
msgstr "<strong>Sous-total</strong>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__line_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__any_line_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__line_ids
|
||||
msgid "Account Analytics Lines"
|
||||
msgstr "Lignes d'analyse des comptes"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__aggregation
|
||||
msgid "Aggregation"
|
||||
msgstr "Agrégation"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Ligne analytique"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one Details field must be specified!"
|
||||
msgstr "Au moins un champ Détails doit être spécifié !"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one field must be listed in Details Fields"
|
||||
msgstr "Au moins un champ doit figurer dans la liste des champs détaillés"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__cell_classes
|
||||
msgid "Cell classes"
|
||||
msgstr "Classes de cellules"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__department_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__department_ids
|
||||
msgid "Departments"
|
||||
msgstr "Départements"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Departments:"
|
||||
msgstr "Départements:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__entry_field_ids
|
||||
msgid "Details Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_category_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_category_ids
|
||||
msgid "Employee Tags"
|
||||
msgstr "Etiquettes d'employé"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employee Tags:"
|
||||
msgstr "Etiquettes d'employé:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_ids
|
||||
msgid "Employees"
|
||||
msgstr "Employés"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employees:"
|
||||
msgstr "Employés:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_to
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_to
|
||||
msgid "End Date"
|
||||
msgstr "Date de fin"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__entry_ids
|
||||
msgid "Entries"
|
||||
msgstr "Entrées"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__entry_field_ids
|
||||
msgid "Entry Fields"
|
||||
msgstr "Champs de l'entrée"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to PDF"
|
||||
msgstr "Exporter en PDF"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to XLSX"
|
||||
msgstr "Exporter en XLSX"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_name
|
||||
msgid "Field"
|
||||
msgstr "Champ"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_entry_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_groupby_field_name_uniq
|
||||
msgid "Field can be reported only once!"
|
||||
msgstr "Un champ ne peut figurer qu'une fois!"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_name
|
||||
msgid "Field name"
|
||||
msgstr "Nom du champ"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_title
|
||||
msgid "Field title"
|
||||
msgstr "Titre du champ"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_type
|
||||
msgid "Field type"
|
||||
msgstr "Type du champ"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.act_window,name:hr_timesheet_report.action_timesheet_report_wizard
|
||||
#: model:ir.actions.server,name:hr_timesheet_report.action_timesheet_report_wizard_from_selection
|
||||
msgid "Generate Timesheet Report"
|
||||
msgstr "Générer l'état des feuilles de temps"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__group_id
|
||||
msgid "Group"
|
||||
msgstr "Groupe"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__groupby_field_ids
|
||||
msgid "Group-By Fields"
|
||||
msgstr "Champs de regroupement"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__groupby
|
||||
msgid "Group-by expression"
|
||||
msgstr "Expression de groupement"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__grouping_field_ids
|
||||
msgid "Grouping Fields"
|
||||
msgstr "Champs de regroupement"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__group_ids
|
||||
msgid "Groups"
|
||||
msgstr "Groupes"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report
|
||||
msgid "HR Timesheet Report"
|
||||
msgstr "Etat des feuilles de temps des RH"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard
|
||||
msgid "HR Timesheet Report Wizard"
|
||||
msgstr "Assistant de rapport de feuille de temps RH"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field
|
||||
msgid "HR Timesheet Report Wizard field"
|
||||
msgstr "Champ de l'assistant de rapport de feuille de temps RH"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_details
|
||||
msgid "HR Timesheet Report Wizard field (details)"
|
||||
msgstr "Champ de l'assistant de rapport de feuille de temps RH (détails)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_grouping
|
||||
msgid "HR Timesheet Report Wizard field (grouping)"
|
||||
msgstr "Champ de l'assistant de rapport de feuille de temps RH (regroupement)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_entry
|
||||
msgid "HR Timesheet Report entry"
|
||||
msgstr "HR Timesheet Report entry"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field
|
||||
msgid "HR Timesheet Report field"
|
||||
msgstr "Champ du rapport de feuille de temps RH"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_entry
|
||||
msgid "HR Timesheet Report field (entry)"
|
||||
msgstr "Champ (entrée) du rapport de feuille de temps RH"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_groupby
|
||||
msgid "HR Timesheet Report field (groupby)"
|
||||
msgstr "Champ du rapport de feuille de temps RH (regroupement)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_group
|
||||
msgid "HR Timesheet Report group"
|
||||
msgstr "Groupe de rapports sur les feuilles de temps RH"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__has_line_ids
|
||||
msgid "Has lines (technical)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__name
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__project_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__project_ids
|
||||
msgid "Projects"
|
||||
msgstr "Projets"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Projects:"
|
||||
msgstr "Projets:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__report_id
|
||||
msgid "Report"
|
||||
msgstr "Rapport"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Report %s"
|
||||
msgstr "Rapport %s"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__scope
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__scope
|
||||
msgid "Scope"
|
||||
msgstr "Etendue"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_from
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_from
|
||||
msgid "Start Date"
|
||||
msgstr "Date de début"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__task_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__task_ids
|
||||
msgid "Tasks"
|
||||
msgstr "Tâches"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Tasks:"
|
||||
msgstr "Tâches:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__time_format
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__time_format
|
||||
msgid "Time format"
|
||||
msgstr "Format horaire"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_html
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_pdf
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_xlsx
|
||||
#: model:ir.model,name:hr_timesheet_report.model_report_hr_timesheet_report_report
|
||||
msgid "Timesheet Report"
|
||||
msgstr "Rapport sur les feuilles de temps"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.ui.menu,name:hr_timesheet_report.menu_timesheet_report_wizard
|
||||
msgid "Timesheet Report Wizard"
|
||||
msgstr "Assistant de rapport de feuille de temps"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_title
|
||||
msgid "Title"
|
||||
msgstr "Titre"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__total_unit_amount
|
||||
msgid "Total Quantity"
|
||||
msgstr "Qté Totale"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "View"
|
||||
msgstr "Vue"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__wizard_id
|
||||
msgid "Wizard"
|
||||
msgstr "Assistant"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "on"
|
||||
msgstr "le"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "selected entries"
|
||||
msgstr "entrées sélectionnées"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "since"
|
||||
msgstr "depuis"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "until"
|
||||
msgstr "jusqu'à"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "{l} » {r}"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,517 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_timesheet_report
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%(report_name)s\" report with \"%(report_type)s\" type not found"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%s\" report type is not supported"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "%s not set"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Date Range:</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Timesheets Report</span>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<strong>Subtotal</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__line_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__any_line_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__line_ids
|
||||
msgid "Account Analytics Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__aggregation
|
||||
msgid "Aggregation"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one Details field must be specified!"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one field must be listed in Details Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__cell_classes
|
||||
msgid "Cell classes"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__department_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__department_ids
|
||||
msgid "Departments"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Departments:"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__entry_field_ids
|
||||
msgid "Details Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_category_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_category_ids
|
||||
msgid "Employee Tags"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employee Tags:"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_ids
|
||||
msgid "Employees"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employees:"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_to
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_to
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__entry_ids
|
||||
msgid "Entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__entry_field_ids
|
||||
msgid "Entry Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to PDF"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to XLSX"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_name
|
||||
msgid "Field"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_entry_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_groupby_field_name_uniq
|
||||
msgid "Field can be reported only once!"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_name
|
||||
msgid "Field name"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_title
|
||||
msgid "Field title"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_type
|
||||
msgid "Field type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.act_window,name:hr_timesheet_report.action_timesheet_report_wizard
|
||||
#: model:ir.actions.server,name:hr_timesheet_report.action_timesheet_report_wizard_from_selection
|
||||
msgid "Generate Timesheet Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__group_id
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__groupby_field_ids
|
||||
msgid "Group-By Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__groupby
|
||||
msgid "Group-by expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__grouping_field_ids
|
||||
msgid "Grouping Fields"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__group_ids
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report
|
||||
msgid "HR Timesheet Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard
|
||||
msgid "HR Timesheet Report Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field
|
||||
msgid "HR Timesheet Report Wizard field"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_details
|
||||
msgid "HR Timesheet Report Wizard field (details)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_grouping
|
||||
msgid "HR Timesheet Report Wizard field (grouping)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_entry
|
||||
msgid "HR Timesheet Report entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field
|
||||
msgid "HR Timesheet Report field"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_entry
|
||||
msgid "HR Timesheet Report field (entry)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_groupby
|
||||
msgid "HR Timesheet Report field (groupby)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_group
|
||||
msgid "HR Timesheet Report group"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__has_line_ids
|
||||
msgid "Has lines (technical)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__project_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__project_ids
|
||||
msgid "Projects"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Projects:"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__report_id
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Report %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__scope
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__scope
|
||||
msgid "Scope"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_from
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_from
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__task_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__task_ids
|
||||
msgid "Tasks"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Tasks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__time_format
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__time_format
|
||||
msgid "Time format"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_html
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_pdf
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_xlsx
|
||||
#: model:ir.model,name:hr_timesheet_report.model_report_hr_timesheet_report_report
|
||||
msgid "Timesheet Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.ui.menu,name:hr_timesheet_report.menu_timesheet_report_wizard
|
||||
msgid "Timesheet Report Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_title
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__total_unit_amount
|
||||
msgid "Total Quantity"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_type
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__wizard_id
|
||||
msgid "Wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "selected entries"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "since"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "until"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "{l} » {r}"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,523 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_timesheet_report
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-31 20:35+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%s\" report type is not supported"
|
||||
msgstr "Tipo report \"%s\" non è supportato"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%s\" report with \"%s\" type not found"
|
||||
msgstr "Report \"%s\" con tipo \"%s\" non è stato trovato"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "%s not set"
|
||||
msgstr "%s non impostato"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Date Range:</span>"
|
||||
msgstr "<span>Periodo:</span>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Timesheets Report</span>"
|
||||
msgstr "<span>Resoconto fogli ore</span>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<strong>Subtotal</strong>"
|
||||
msgstr "<strong>Subtotale</strong>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__line_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__any_line_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__line_ids
|
||||
msgid "Account Analytics Lines"
|
||||
msgstr "Righe conto analitico"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__aggregation
|
||||
msgid "Aggregation"
|
||||
msgstr "Aggregazione"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Riga analitica"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one Details field must be specified!"
|
||||
msgstr "Almeno un campo Dettagli deve essere specificato!"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one field must be listed in Details Fields"
|
||||
msgstr "Almeno un campo deve essere indicato in Campi Dettagli"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__cell_classes
|
||||
msgid "Cell classes"
|
||||
msgstr "Classi celle"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__department_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__department_ids
|
||||
msgid "Departments"
|
||||
msgstr "Dipartimenti"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Departments:"
|
||||
msgstr "Dipartimenti:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__entry_field_ids
|
||||
msgid "Details Fields"
|
||||
msgstr "Campi Dettagli"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_category_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_category_ids
|
||||
msgid "Employee Tags"
|
||||
msgstr "Etichette dipendenti"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employee Tags:"
|
||||
msgstr "Etichette dipendenti:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_ids
|
||||
msgid "Employees"
|
||||
msgstr "Dipendenti"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employees:"
|
||||
msgstr "Dipendenti:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_to
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_to
|
||||
msgid "End Date"
|
||||
msgstr "Data fine"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__entry_ids
|
||||
msgid "Entries"
|
||||
msgstr "Voci"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__entry_field_ids
|
||||
msgid "Entry Fields"
|
||||
msgstr "Campi voci"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to PDF"
|
||||
msgstr "Esporta in PDF"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to XLSX"
|
||||
msgstr "Esporta in XLSX"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_name
|
||||
msgid "Field"
|
||||
msgstr "Campo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_entry_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_groupby_field_name_uniq
|
||||
msgid "Field can be reported only once!"
|
||||
msgstr "Un campo può essere indicato solo una volta!"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_name
|
||||
msgid "Field name"
|
||||
msgstr "Nome campo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_title
|
||||
msgid "Field title"
|
||||
msgstr "Titolo campo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_type
|
||||
msgid "Field type"
|
||||
msgstr "Tipo campo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.act_window,name:hr_timesheet_report.action_timesheet_report_wizard
|
||||
#: model:ir.actions.server,name:hr_timesheet_report.action_timesheet_report_wizard_from_selection
|
||||
msgid "Generate Timesheet Report"
|
||||
msgstr "Genera resoconto fogli ore"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__group_id
|
||||
msgid "Group"
|
||||
msgstr "Gruppo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__groupby_field_ids
|
||||
msgid "Group-By Fields"
|
||||
msgstr "Campi Raggruppa per"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__groupby
|
||||
msgid "Group-by expression"
|
||||
msgstr "Espressione Raggruppa per"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__grouping_field_ids
|
||||
msgid "Grouping Fields"
|
||||
msgstr "Campi raggruppamento"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__group_ids
|
||||
msgid "Groups"
|
||||
msgstr "Gruppi"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report
|
||||
msgid "HR Timesheet Report"
|
||||
msgstr "Report fogli ore RU"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard
|
||||
msgid "HR Timesheet Report Wizard"
|
||||
msgstr "Procedura guidata foglio ore RU"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field
|
||||
msgid "HR Timesheet Report Wizard field"
|
||||
msgstr "Campo procedura guidata resoconto foglio ore RU"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_details
|
||||
msgid "HR Timesheet Report Wizard field (details)"
|
||||
msgstr "Campo procedura guidata resoconto foglio ore RU (dettagli)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_grouping
|
||||
msgid "HR Timesheet Report Wizard field (grouping)"
|
||||
msgstr "Campo procedura guidata resoconto foglio ore RU (raggruppamento)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_entry
|
||||
msgid "HR Timesheet Report entry"
|
||||
msgstr "Voce resoconto foglio ore RU"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field
|
||||
msgid "HR Timesheet Report field"
|
||||
msgstr "Campo resoconto foglio ore RU"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_entry
|
||||
msgid "HR Timesheet Report field (entry)"
|
||||
msgstr "Campo resoconto foglio ore RU (voce)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_groupby
|
||||
msgid "HR Timesheet Report field (groupby)"
|
||||
msgstr "Campo resoconto foglio ore RU (raggruppa per)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_group
|
||||
msgid "HR Timesheet Report group"
|
||||
msgstr "Gruppo resoconto foglio ore RU"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__has_line_ids
|
||||
msgid "Has lines (technical)"
|
||||
msgstr "Ha delle righe (tecnico)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__project_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__project_ids
|
||||
msgid "Projects"
|
||||
msgstr "Progetti"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Projects:"
|
||||
msgstr "Progetti:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__report_id
|
||||
msgid "Report"
|
||||
msgstr "Resoconto"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Report %s"
|
||||
msgstr "Resoconto %s"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__scope
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__scope
|
||||
msgid "Scope"
|
||||
msgstr "Scopo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenza"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_from
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_from
|
||||
msgid "Start Date"
|
||||
msgstr "Data inizio"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__task_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__task_ids
|
||||
msgid "Tasks"
|
||||
msgstr "Lavori"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Tasks:"
|
||||
msgstr "Lavori:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__time_format
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__time_format
|
||||
msgid "Time format"
|
||||
msgstr "Formato ora"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_html
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_pdf
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_xlsx
|
||||
#: model:ir.model,name:hr_timesheet_report.model_report_hr_timesheet_report_report
|
||||
msgid "Timesheet Report"
|
||||
msgstr "Report fogli ore"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.ui.menu,name:hr_timesheet_report.menu_timesheet_report_wizard
|
||||
msgid "Timesheet Report Wizard"
|
||||
msgstr "Wizard report fogli ore"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_title
|
||||
msgid "Title"
|
||||
msgstr "Titolo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Totale"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__total_unit_amount
|
||||
msgid "Total Quantity"
|
||||
msgstr "Quantità totale"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_type
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "View"
|
||||
msgstr "Vista"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__wizard_id
|
||||
msgid "Wizard"
|
||||
msgstr "Procedura guidata"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "on"
|
||||
msgstr "su"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "selected entries"
|
||||
msgstr "voci selezionate"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "since"
|
||||
msgstr "dal"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "until"
|
||||
msgstr "al"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "{l} » {r}"
|
||||
msgstr "{l} » {r}"
|
||||
|
|
@ -0,0 +1,523 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_timesheet_report
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2022-08-19 18:07+0000\n"
|
||||
"Last-Translator: Pedro Castro Silva <pedrocs@exo.pt>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%s\" report type is not supported"
|
||||
msgstr "o tipo de relatório \"%s\" não é suportado"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "\"%s\" report with \"%s\" type not found"
|
||||
msgstr "relatório \"%s\" com o tipo \"%s\" não encontrado"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "%s not set"
|
||||
msgstr "%s não definido"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Date Range:</span>"
|
||||
msgstr "<span>Intervalo de datas:</span>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<span>Timesheets Report</span>"
|
||||
msgstr "<span>Relatório das Folhas de Horas</span>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "<strong>Subtotal</strong>"
|
||||
msgstr "<strong>Subtotal</strong>"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__line_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__any_line_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__line_ids
|
||||
msgid "Account Analytics Lines"
|
||||
msgstr "Linhas de Contas Analíticas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__aggregation
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__aggregation
|
||||
msgid "Aggregation"
|
||||
msgstr "Agregação"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_account_analytic_line
|
||||
msgid "Analytic Line"
|
||||
msgstr "Linha Analítica"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one Details field must be specified!"
|
||||
msgstr "Pelo menos um campo de Detalhes deve ser especificado!"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/wizards/hr_timesheet_report_wizard.py:0
|
||||
#, python-format
|
||||
msgid "At least one field must be listed in Details Fields"
|
||||
msgstr "Pelo menos um campo deve ser listado em Campos de Detalhes"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__cell_classes
|
||||
msgid "Cell classes"
|
||||
msgstr "Classes de células"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__create_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__department_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__department_ids
|
||||
msgid "Departments"
|
||||
msgstr "Departamentos"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Departments:"
|
||||
msgstr "Departamentos:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__entry_field_ids
|
||||
msgid "Details Fields"
|
||||
msgstr "Campos de Detalhes"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__display_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_category_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_category_ids
|
||||
msgid "Employee Tags"
|
||||
msgstr "Etiquetas de Funcionários"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employee Tags:"
|
||||
msgstr "Etiquetas de Funcionários:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__employee_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__employee_ids
|
||||
msgid "Employees"
|
||||
msgstr "Funcionários"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Employees:"
|
||||
msgstr "Empregados:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_to
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_to
|
||||
msgid "End Date"
|
||||
msgstr "Data Final"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__entry_ids
|
||||
msgid "Entries"
|
||||
msgstr "Entradas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__entry_field_ids
|
||||
msgid "Entry Fields"
|
||||
msgstr "Campos de Entradas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to PDF"
|
||||
msgstr "Exportação para PDF"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "Export to XLSX"
|
||||
msgstr "Exportar para XLSX"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_name
|
||||
msgid "Field"
|
||||
msgstr "Campo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_entry_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_field_name_uniq
|
||||
#: model:ir.model.constraint,message:hr_timesheet_report.constraint_hr_timesheet_report_field_groupby_field_name_uniq
|
||||
msgid "Field can be reported only once!"
|
||||
msgstr "O campo só pode ser reportado uma vez!"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_name
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_name
|
||||
msgid "Field name"
|
||||
msgstr "Nome do campo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_title
|
||||
msgid "Field title"
|
||||
msgstr "Título do campo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__field_type
|
||||
msgid "Field type"
|
||||
msgstr "Tipo do campo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.act_window,name:hr_timesheet_report.action_timesheet_report_wizard
|
||||
#: model:ir.actions.server,name:hr_timesheet_report.action_timesheet_report_wizard_from_selection
|
||||
msgid "Generate Timesheet Report"
|
||||
msgstr "Gerar Relatório de Folha de Horas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__group_id
|
||||
msgid "Group"
|
||||
msgstr "Grupo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__groupby_field_ids
|
||||
msgid "Group-By Fields"
|
||||
msgstr "Campos de Agrupar Por"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__groupby
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__groupby
|
||||
msgid "Group-by expression"
|
||||
msgstr "Expressão de Agrupar Por"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__grouping_field_ids
|
||||
msgid "Grouping Fields"
|
||||
msgstr "Campos de Agrupamento"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__group_ids
|
||||
msgid "Groups"
|
||||
msgstr "Grupos"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report
|
||||
msgid "HR Timesheet Report"
|
||||
msgstr "Relatório de Folhas de Horas HR"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard
|
||||
msgid "HR Timesheet Report Wizard"
|
||||
msgstr "Assistente de Relatório de Folhas de Horas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field
|
||||
msgid "HR Timesheet Report Wizard field"
|
||||
msgstr "Campo de Assistente de Relatório de Folhas de Horas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_details
|
||||
msgid "HR Timesheet Report Wizard field (details)"
|
||||
msgstr "Campo de Assistente de Relatório de Folhas de Horas (detalhes)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_wizard_field_grouping
|
||||
msgid "HR Timesheet Report Wizard field (grouping)"
|
||||
msgstr "Campo de Assistente de Relatório de Folhas de Horas (agrupamento)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_entry
|
||||
msgid "HR Timesheet Report entry"
|
||||
msgstr "Entrada do Relatório de Folhas de Horas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field
|
||||
msgid "HR Timesheet Report field"
|
||||
msgstr "Campo do Relatório de Folhas de Horas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_entry
|
||||
msgid "HR Timesheet Report field (entry)"
|
||||
msgstr "Campo do Relatório de Folhas de Horas (entrada)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_field_groupby
|
||||
msgid "HR Timesheet Report field (groupby)"
|
||||
msgstr "Campo do Relatório de Folhas de Horas (agrupar por)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model,name:hr_timesheet_report.model_hr_timesheet_report_group
|
||||
msgid "HR Timesheet Report group"
|
||||
msgstr "Grupo do Relatório de Folhas de Horas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__has_line_ids
|
||||
msgid "Has lines (technical)"
|
||||
msgstr "Tem linhas (técnicas)"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_account_analytic_line____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping____last_update
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_report_hr_timesheet_report_report____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_uid
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Actualização por"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__write_date
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Actualização em"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__project_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__project_ids
|
||||
msgid "Projects"
|
||||
msgstr "Projetos"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Projects:"
|
||||
msgstr "Projetos:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__report_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__report_id
|
||||
msgid "Report"
|
||||
msgstr "Relatório"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Report %s"
|
||||
msgstr "Relatório %s"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__scope
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__scope
|
||||
msgid "Scope"
|
||||
msgstr "Âmbito"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_entry__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_field_groupby__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__sequence
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequência"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__date_from
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__date_from
|
||||
msgid "Start Date"
|
||||
msgstr "Data de Início"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__task_ids
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__task_ids
|
||||
msgid "Tasks"
|
||||
msgstr "Tarefas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "Tasks:"
|
||||
msgstr "Tarefas:"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__time_format
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard__time_format
|
||||
msgid "Time format"
|
||||
msgstr "Formato da Hora"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_html
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_qweb_pdf
|
||||
#: model:ir.actions.report,name:hr_timesheet_report.action_report_xlsx
|
||||
#: model:ir.model,name:hr_timesheet_report.model_report_hr_timesheet_report_report
|
||||
msgid "Timesheet Report"
|
||||
msgstr "Relatório de Folhas de Horas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.ui.menu,name:hr_timesheet_report.menu_timesheet_report_wizard
|
||||
msgid "Timesheet Report Wizard"
|
||||
msgstr "Assistente de Relatório de Folhas de Horas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_title
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_title
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_entry__total_unit_amount
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_group__total_unit_amount
|
||||
msgid "Total Quantity"
|
||||
msgstr "Quantidade Total"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__field_type
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__field_type
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.hr_timesheet_report_wizard_form
|
||||
msgid "View"
|
||||
msgstr "Ver"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_details__wizard_id
|
||||
#: model:ir.model.fields,field_description:hr_timesheet_report.field_hr_timesheet_report_wizard_field_grouping__wizard_id
|
||||
msgid "Wizard"
|
||||
msgstr "Assistente"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "on"
|
||||
msgstr "em"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "selected entries"
|
||||
msgstr "entradas selecionadas"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "since"
|
||||
msgstr "desde"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_report.report
|
||||
msgid "until"
|
||||
msgstr "até"
|
||||
|
||||
#. module: hr_timesheet_report
|
||||
#: code:addons/hr_timesheet_report/report/hr_timesheet_report.py:0
|
||||
#, python-format
|
||||
msgid "{l} » {r}"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import account_analytic_line
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
# Copyright 2018-2020 Brainbean Apps (https://brainbeanapps.com)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class AccountAnalyticLine(models.Model):
|
||||
_inherit = "account.analytic.line"
|
||||
|
||||
def action_timesheet_report_wizard(self):
|
||||
return {
|
||||
"type": "ir.actions.act_window",
|
||||
"res_model": "hr.timesheet.report.wizard",
|
||||
"views": [[False, "form"]],
|
||||
"target": "new",
|
||||
"context": {
|
||||
"default_line_ids": [(6, False, self.ids)],
|
||||
},
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
* Dhara Solanki <dhara.solanki@initos.com>
|
||||
|
||||
* `CorporateHub <https://corporatehub.eu/>`__
|
||||
|
||||
* Alexey Pelykh <alexey.pelykh@corphub.eu>
|
||||
|
||||
* `Tecnativa <https://www.tecnativa.com>`_:
|
||||
|
||||
* Víctor Martínez
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
This module allows to generate configurable Timesheet Report from Task Logs.
|
||||
|
||||
Features:
|
||||
|
||||
* Select reported fields
|
||||
* Select and reorder report line grouping
|
||||
* Configure time format (HH:MM, HH:MM:SS, or decimal)
|
||||
* View in browser, export in PDF and XLSX formats
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
To create report using Timesheet Report Wizard on a specific set of Timesheet entries:
|
||||
|
||||
#. Go to *Timesheets > My Timesheets* or *Timesheets > All timesheets*.
|
||||
#. Select entries that should be used in the report
|
||||
#. Press the *Action > Generate Timesheet Report* button
|
||||
#. Configure the report and export it in one of the formats
|
||||
|
||||
To create report using Timesheet Report Wizard on a generic set of Timesheet entries:
|
||||
|
||||
#. Go to *Timesheets > Reporting > Timesheet Report Wizard*.
|
||||
#. Configure the report and export it in one of the formats
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import hr_timesheet_report
|
||||
|
|
@ -0,0 +1,663 @@
|
|||
# Copyright 2018-2020 Brainbean Apps (https://brainbeanapps.com)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
import html
|
||||
from functools import reduce
|
||||
|
||||
from xlsxwriter.utility import xl_rowcol_to_cell
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.osv.expression import TRUE_DOMAIN
|
||||
from odoo.tools import ustr
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
|
||||
class HrTimesheetReport(models.TransientModel):
|
||||
_name = "hr.timesheet.report"
|
||||
_description = "HR Timesheet Report"
|
||||
|
||||
line_ids = fields.Many2many(
|
||||
string="Account Analytics Lines",
|
||||
comodel_name="account.analytic.line",
|
||||
)
|
||||
date_from = fields.Date(
|
||||
string="Start Date",
|
||||
)
|
||||
date_to = fields.Date(
|
||||
string="End Date",
|
||||
)
|
||||
project_ids = fields.Many2many(
|
||||
string="Projects",
|
||||
comodel_name="project.project",
|
||||
)
|
||||
task_ids = fields.Many2many(
|
||||
string="Tasks",
|
||||
comodel_name="project.task",
|
||||
)
|
||||
employee_ids = fields.Many2many(
|
||||
string="Employees",
|
||||
comodel_name="hr.employee",
|
||||
)
|
||||
employee_category_ids = fields.Many2many(
|
||||
string="Employee Tags",
|
||||
comodel_name="hr.employee.category",
|
||||
)
|
||||
department_ids = fields.Many2many(
|
||||
string="Departments",
|
||||
comodel_name="hr.department",
|
||||
)
|
||||
groupby_field_ids = fields.One2many(
|
||||
string="Group-By Fields",
|
||||
comodel_name="hr.timesheet.report.field.groupby",
|
||||
inverse_name="report_id",
|
||||
)
|
||||
entry_field_ids = fields.One2many(
|
||||
string="Entry Fields",
|
||||
comodel_name="hr.timesheet.report.field.entry",
|
||||
inverse_name="report_id",
|
||||
)
|
||||
time_format = fields.Selection(
|
||||
string="Time format",
|
||||
selection=lambda self: self._selection_time_format(),
|
||||
required=True,
|
||||
)
|
||||
group_ids = fields.One2many(
|
||||
string="Groups",
|
||||
comodel_name="hr.timesheet.report.group",
|
||||
inverse_name="report_id",
|
||||
compute="_compute_group_ids",
|
||||
store=True,
|
||||
)
|
||||
total_unit_amount = fields.Float(
|
||||
string="Total Quantity",
|
||||
compute="_compute_total_unit_amount",
|
||||
store=True,
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _selection_time_format(self):
|
||||
return [
|
||||
("hh_mm", "Hours, minutes"),
|
||||
("hh_mm_ss", "Hours, minutes, seconds"),
|
||||
("decimal", "Decimal"),
|
||||
]
|
||||
|
||||
@api.model
|
||||
def _supported_report_types(self):
|
||||
return [
|
||||
"qweb-html",
|
||||
"qweb-pdf",
|
||||
"xlsx",
|
||||
]
|
||||
|
||||
@api.depends(
|
||||
"line_ids",
|
||||
"date_from",
|
||||
"date_to",
|
||||
"project_ids",
|
||||
"task_ids",
|
||||
"employee_ids",
|
||||
"employee_category_ids",
|
||||
"department_ids",
|
||||
"groupby_field_ids",
|
||||
"entry_field_ids",
|
||||
)
|
||||
def _compute_group_ids(self):
|
||||
AccountAnalyticLine = self.env["account.analytic.line"]
|
||||
|
||||
for report in self:
|
||||
group_ids = [(5, False, False)]
|
||||
|
||||
if report.groupby_field_ids:
|
||||
grouped_lines = AccountAnalyticLine.read_group(
|
||||
domain=report._get_domain(),
|
||||
fields=list(
|
||||
set(report.entry_field_ids.mapped("field_name"))
|
||||
| set(report.groupby_field_ids.mapped("field_name"))
|
||||
),
|
||||
groupby=report.groupby_field_ids.mapped("groupby"),
|
||||
orderby=", ".join(
|
||||
report.groupby_field_ids.mapped("field_name"),
|
||||
),
|
||||
lazy=False,
|
||||
)
|
||||
|
||||
for group_data in grouped_lines:
|
||||
group_values = report._get_group_values(group_data)
|
||||
if not group_values:
|
||||
continue
|
||||
|
||||
group_values.update(
|
||||
{
|
||||
"sequence": len(group_ids),
|
||||
}
|
||||
)
|
||||
group_ids.append((0, False, group_values))
|
||||
else:
|
||||
group_ids.append(
|
||||
(
|
||||
0,
|
||||
False,
|
||||
{
|
||||
"sequence": len(group_ids),
|
||||
"name": None,
|
||||
"scope": ustr(report._get_domain()),
|
||||
},
|
||||
)
|
||||
)
|
||||
report.group_ids = group_ids
|
||||
|
||||
def _get_group_values(self, grouped_lines):
|
||||
self.ensure_one()
|
||||
|
||||
name_parts = []
|
||||
for field in self.groupby_field_ids:
|
||||
name_part = grouped_lines.get(field.field_name, None)
|
||||
if not name_part:
|
||||
name_part = _("%s not set") % (field.field_title)
|
||||
else:
|
||||
name_part = name_part[1]
|
||||
name_parts.append(name_part)
|
||||
|
||||
return {
|
||||
"name": reduce(lambda l, r: _("{l} » {r}").format(l=l, r=r), name_parts),
|
||||
"scope": ustr(grouped_lines["__domain"]),
|
||||
}
|
||||
|
||||
@api.depends("group_ids.total_unit_amount")
|
||||
def _compute_total_unit_amount(self):
|
||||
for report in self:
|
||||
report.total_unit_amount = sum(report.group_ids.mapped("total_unit_amount"))
|
||||
|
||||
def _get_domain(self):
|
||||
self.ensure_one()
|
||||
|
||||
if self.line_ids:
|
||||
return [("id", "in", self.line_ids.ids)]
|
||||
|
||||
query = [("project_id", "!=", False)]
|
||||
if self.date_from:
|
||||
query.append(("date", ">=", fields.Date.to_string(self.date_from)))
|
||||
if self.date_to:
|
||||
query.append(("date", "<=", fields.Date.to_string(self.date_to)))
|
||||
if self.project_ids:
|
||||
query.append(("project_id", "in", self.project_ids.ids))
|
||||
if self.task_ids:
|
||||
query.append(("task_id", "in", self.task_ids.ids))
|
||||
employee_ids = self.employee_ids | self.employee_category_ids.mapped(
|
||||
"employee_ids"
|
||||
)
|
||||
if employee_ids:
|
||||
query.append(("employee_id", "in", employee_ids.ids))
|
||||
if self.department_ids:
|
||||
query.append(("department_id", "in", self.department_ids.ids))
|
||||
return query
|
||||
|
||||
def get_action(self, report_type="qweb-html"):
|
||||
self.ensure_one()
|
||||
|
||||
if report_type not in self._supported_report_types():
|
||||
raise UserError(_('"%s" report type is not supported' % (report_type)))
|
||||
|
||||
report_name = "hr_timesheet_report.report"
|
||||
|
||||
action = self.env["ir.actions.report"].search(
|
||||
[
|
||||
("model", "=", self._name),
|
||||
("report_name", "=", report_name),
|
||||
("report_type", "=", report_type),
|
||||
],
|
||||
limit=1,
|
||||
)
|
||||
if not action:
|
||||
raise UserError(
|
||||
_(
|
||||
'"%(report_name)s" report with "%(report_type)s" type not found'
|
||||
% ({"report_name": report_name, "report_type": report_type})
|
||||
)
|
||||
)
|
||||
|
||||
context = dict(self.env.context)
|
||||
return action.with_context(**context).report_action(self)
|
||||
|
||||
|
||||
class HrTimesheetReportAbstractField(models.AbstractModel):
|
||||
_name = "hr.timesheet.report.field"
|
||||
_description = "HR Timesheet Report field"
|
||||
_order = "sequence, id"
|
||||
|
||||
report_id = fields.Many2one(
|
||||
string="Report",
|
||||
comodel_name="hr.timesheet.report",
|
||||
required=True,
|
||||
ondelete="cascade",
|
||||
)
|
||||
sequence = fields.Integer(
|
||||
required=True,
|
||||
)
|
||||
field_name = fields.Char(
|
||||
string="Field name",
|
||||
required=True,
|
||||
)
|
||||
field_title = fields.Char(
|
||||
string="Field title",
|
||||
required=True,
|
||||
)
|
||||
field_type = fields.Char(
|
||||
string="Field type",
|
||||
required=True,
|
||||
)
|
||||
aggregation = fields.Char()
|
||||
groupby = fields.Char(
|
||||
string="Group-by expression",
|
||||
compute="_compute_groupby",
|
||||
)
|
||||
|
||||
_sql_constraints = [
|
||||
(
|
||||
"field_name_uniq",
|
||||
"UNIQUE(report_id, field_name)",
|
||||
"Field can be reported only once!",
|
||||
),
|
||||
]
|
||||
|
||||
@api.depends("field_name", "aggregation")
|
||||
def _compute_groupby(self):
|
||||
for field in self:
|
||||
if field.aggregation:
|
||||
field.groupby = "%s:%s" % (field.field_name, field.aggregation)
|
||||
else:
|
||||
field.groupby = field.field_name
|
||||
|
||||
|
||||
class HrTimesheetReportGroupByField(models.TransientModel):
|
||||
_name = "hr.timesheet.report.field.groupby"
|
||||
_description = "HR Timesheet Report field (groupby)"
|
||||
_inherit = "hr.timesheet.report.field"
|
||||
|
||||
|
||||
class HrTimesheetReportEntryField(models.TransientModel):
|
||||
_name = "hr.timesheet.report.field.entry"
|
||||
_description = "HR Timesheet Report field (entry)"
|
||||
_inherit = "hr.timesheet.report.field"
|
||||
|
||||
cell_classes = fields.Char(
|
||||
string="Cell classes",
|
||||
compute="_compute_cell_classes",
|
||||
)
|
||||
|
||||
@api.depends("field_type")
|
||||
def _compute_cell_classes(self):
|
||||
for field in self:
|
||||
field.cell_classes = " ".join(field._get_cell_classes(field.field_type))
|
||||
|
||||
def _get_cell_classes(self, field_type):
|
||||
self.ensure_one()
|
||||
|
||||
return [] if field_type == "char" else ["text-nowrap"]
|
||||
|
||||
|
||||
class HrTimesheetReportGroup(models.TransientModel):
|
||||
_name = "hr.timesheet.report.group"
|
||||
_description = "HR Timesheet Report group"
|
||||
_order = "sequence, id"
|
||||
|
||||
report_id = fields.Many2one(
|
||||
string="Report",
|
||||
comodel_name="hr.timesheet.report",
|
||||
required=True,
|
||||
ondelete="cascade",
|
||||
)
|
||||
sequence = fields.Integer(
|
||||
required=True,
|
||||
)
|
||||
scope = fields.Char()
|
||||
name = fields.Char()
|
||||
entry_ids = fields.One2many(
|
||||
string="Entries",
|
||||
comodel_name="hr.timesheet.report.entry",
|
||||
inverse_name="group_id",
|
||||
compute="_compute_entry_ids",
|
||||
store=True,
|
||||
)
|
||||
total_unit_amount = fields.Float(
|
||||
string="Total Quantity",
|
||||
compute="_compute_total_unit_amount",
|
||||
store=True,
|
||||
)
|
||||
|
||||
@api.depends(
|
||||
"scope",
|
||||
"report_id.groupby_field_ids",
|
||||
"report_id.entry_field_ids",
|
||||
)
|
||||
def _compute_entry_ids(self):
|
||||
AccountAnalyticLine = self.env["account.analytic.line"]
|
||||
|
||||
for group in self:
|
||||
grouped_lines = AccountAnalyticLine.read_group(
|
||||
domain=safe_eval(group.scope) if group.scope else TRUE_DOMAIN,
|
||||
fields=list(
|
||||
{"id"} | set(group.report_id.entry_field_ids.mapped("field_name"))
|
||||
),
|
||||
groupby=group.report_id.entry_field_ids.mapped("groupby"),
|
||||
orderby=", ".join(
|
||||
group.report_id.entry_field_ids.mapped("field_name"),
|
||||
),
|
||||
lazy=False,
|
||||
)
|
||||
|
||||
entry_ids = [(5, False, False)]
|
||||
for entry_data in grouped_lines:
|
||||
entry_values = group._get_entry_values(entry_data)
|
||||
if not entry_values:
|
||||
continue
|
||||
|
||||
entry_values.update(
|
||||
{
|
||||
"sequence": len(entry_ids),
|
||||
}
|
||||
)
|
||||
entry_ids.append((0, False, entry_values))
|
||||
group.entry_ids = entry_ids
|
||||
|
||||
@api.depends("entry_ids.total_unit_amount")
|
||||
def _compute_total_unit_amount(self):
|
||||
for group in self:
|
||||
group.total_unit_amount = sum(group.entry_ids.mapped("total_unit_amount"))
|
||||
|
||||
def _get_entry_values(self, grouped_lines):
|
||||
"""Use the domain if it exists or the id (in case there is only one record)."""
|
||||
self.ensure_one()
|
||||
return {
|
||||
"scope": (
|
||||
ustr(grouped_lines["__domain"])
|
||||
if "__domain" in grouped_lines
|
||||
else [("id", "=", grouped_lines["id"])]
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
class HrTimesheetReportEntry(models.TransientModel):
|
||||
_name = "hr.timesheet.report.entry"
|
||||
_description = "HR Timesheet Report entry"
|
||||
_order = "sequence, id"
|
||||
|
||||
group_id = fields.Many2one(
|
||||
string="Group",
|
||||
comodel_name="hr.timesheet.report.group",
|
||||
required=True,
|
||||
ondelete="cascade",
|
||||
)
|
||||
sequence = fields.Integer(
|
||||
required=True,
|
||||
)
|
||||
scope = fields.Char()
|
||||
any_line_id = fields.Many2one(
|
||||
string="Account Analytics Lines",
|
||||
comodel_name="account.analytic.line",
|
||||
compute="_compute_any_line_id",
|
||||
)
|
||||
total_unit_amount = fields.Float(
|
||||
string="Total Quantity",
|
||||
compute="_compute_total_unit_amount",
|
||||
store=True,
|
||||
)
|
||||
|
||||
@api.depends("scope")
|
||||
def _compute_any_line_id(self):
|
||||
AccountAnalyticLine = self.env["account.analytic.line"]
|
||||
|
||||
for entry in self:
|
||||
entry.any_line_id = AccountAnalyticLine.search(
|
||||
safe_eval(entry.scope) if entry.scope else TRUE_DOMAIN,
|
||||
limit=1,
|
||||
)
|
||||
|
||||
@api.depends("scope")
|
||||
def _compute_total_unit_amount(self):
|
||||
AccountAnalyticLine = self.env["account.analytic.line"]
|
||||
uom_hour = self.env.ref("uom.product_uom_hour")
|
||||
|
||||
for entry in self:
|
||||
total_unit_amount = 0.0
|
||||
line_ids = AccountAnalyticLine.search(
|
||||
safe_eval(entry.scope) if entry.scope else TRUE_DOMAIN
|
||||
)
|
||||
for line_id in line_ids:
|
||||
total_unit_amount += line_id.product_uom_id._compute_quantity(
|
||||
line_id.unit_amount, uom_hour
|
||||
)
|
||||
entry.total_unit_amount = total_unit_amount
|
||||
|
||||
def render_value(self, field_name):
|
||||
self.ensure_one()
|
||||
|
||||
AccountAnalyticLine = self.env["account.analytic.line"]
|
||||
|
||||
fields = AccountAnalyticLine.fields_get()
|
||||
converter_model = "ir.qweb.field." + fields[field_name]["type"]
|
||||
converter = self.env.get(converter_model, self.env["ir.qweb.field"])
|
||||
|
||||
return converter.record_to_html(self.any_line_id, field_name, {})
|
||||
|
||||
|
||||
class Report(models.AbstractModel):
|
||||
_name = "report.hr_timesheet_report.report"
|
||||
_inherit = "report.report_xlsx.abstract"
|
||||
_description = "Timesheet Report"
|
||||
|
||||
@api.model
|
||||
def _get_report_values(self, docids, data=None):
|
||||
docs = self.env["hr.timesheet.report"].browse(docids)
|
||||
|
||||
return {
|
||||
"doc_ids": docids,
|
||||
"doc_model": "hr.timesheet.report",
|
||||
"docs": docs,
|
||||
}
|
||||
|
||||
@api.model
|
||||
def generate_xlsx_report(self, workbook, data, docs):
|
||||
uom_hour = self.env.ref("uom.product_uom_hour")
|
||||
|
||||
for report_index, report in enumerate(docs):
|
||||
sheet = workbook.add_worksheet(_("Report %s") % (report_index + 1))
|
||||
|
||||
formats = self._create_workbook_formats(report, workbook)
|
||||
|
||||
amount_column_index = len(report.entry_field_ids)
|
||||
|
||||
for column_index, entry_field in enumerate(report.entry_field_ids):
|
||||
sheet.write(
|
||||
0, column_index, entry_field.field_title, formats["header_title"]
|
||||
)
|
||||
sheet.write(0, amount_column_index, uom_hour.name, formats["header_title"])
|
||||
sheet.freeze_panes(1, 0)
|
||||
rows_emitted = 1
|
||||
|
||||
section_row_indices = []
|
||||
for group in report.group_ids:
|
||||
if group.name:
|
||||
section_row_indices.append(rows_emitted)
|
||||
|
||||
if amount_column_index > 1:
|
||||
sheet.merge_range(
|
||||
rows_emitted,
|
||||
0,
|
||||
rows_emitted,
|
||||
amount_column_index - 1,
|
||||
group.name,
|
||||
formats["section_title"],
|
||||
)
|
||||
else:
|
||||
sheet.write(
|
||||
rows_emitted, 0, group.name, formats["section_title"]
|
||||
)
|
||||
sheet.write_formula(
|
||||
rows_emitted,
|
||||
amount_column_index,
|
||||
"=SUM(%s:%s)"
|
||||
% (
|
||||
xl_rowcol_to_cell(rows_emitted + 1, amount_column_index),
|
||||
xl_rowcol_to_cell(
|
||||
rows_emitted + len(group.entry_ids), amount_column_index
|
||||
),
|
||||
),
|
||||
formats["section_total"],
|
||||
self._convert_amount_num_format(
|
||||
report, group.total_unit_amount
|
||||
),
|
||||
)
|
||||
rows_emitted += 1
|
||||
|
||||
for entry in group.entry_ids:
|
||||
for column_index, entry_field in enumerate(report.entry_field_ids):
|
||||
self._render_value_cell(
|
||||
rows_emitted,
|
||||
column_index,
|
||||
sheet,
|
||||
formats,
|
||||
entry,
|
||||
entry_field,
|
||||
)
|
||||
sheet.write_number(
|
||||
rows_emitted,
|
||||
amount_column_index,
|
||||
self._convert_amount_num_format(
|
||||
report, entry.total_unit_amount
|
||||
),
|
||||
formats["entry_total"],
|
||||
)
|
||||
|
||||
rows_emitted += 1
|
||||
|
||||
rows_emitted += 1
|
||||
|
||||
if amount_column_index > 1:
|
||||
sheet.merge_range(
|
||||
rows_emitted,
|
||||
0,
|
||||
rows_emitted,
|
||||
amount_column_index - 1,
|
||||
_("Total"),
|
||||
formats["report_total_caption"],
|
||||
)
|
||||
else:
|
||||
sheet.write(
|
||||
rows_emitted, 0, _("Total"), formats["report_total_caption"]
|
||||
)
|
||||
if section_row_indices:
|
||||
sheet.write_formula(
|
||||
rows_emitted,
|
||||
amount_column_index,
|
||||
"=SUM(%s)"
|
||||
% (
|
||||
"+".join(
|
||||
map(
|
||||
lambda x: xl_rowcol_to_cell(x, amount_column_index),
|
||||
section_row_indices,
|
||||
)
|
||||
)
|
||||
),
|
||||
formats["report_total_amount"],
|
||||
self._convert_amount_num_format(report, report.total_unit_amount),
|
||||
)
|
||||
else:
|
||||
sheet.write_formula(
|
||||
rows_emitted,
|
||||
amount_column_index,
|
||||
"=SUM(%s:%s)"
|
||||
% (
|
||||
xl_rowcol_to_cell(1, amount_column_index),
|
||||
xl_rowcol_to_cell(rows_emitted - 2, amount_column_index),
|
||||
),
|
||||
formats["report_total_amount"],
|
||||
self._convert_amount_num_format(report, report.total_unit_amount),
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _create_workbook_formats(self, report, workbook):
|
||||
amount_num_format = self._get_amount_num_format(report)
|
||||
|
||||
return {
|
||||
"header_title": workbook.add_format(
|
||||
{
|
||||
"bold": True,
|
||||
"align": "center",
|
||||
"valign": "vcenter",
|
||||
}
|
||||
),
|
||||
"section_title": workbook.add_format(
|
||||
{
|
||||
"italic": True,
|
||||
}
|
||||
),
|
||||
"section_total": workbook.add_format(
|
||||
{
|
||||
"num_format": amount_num_format,
|
||||
"italic": True,
|
||||
}
|
||||
),
|
||||
"report_total_caption": workbook.add_format(
|
||||
{
|
||||
"bold": True,
|
||||
"align": "right",
|
||||
}
|
||||
),
|
||||
"report_total_amount": workbook.add_format(
|
||||
{
|
||||
"num_format": amount_num_format,
|
||||
"bold": True,
|
||||
}
|
||||
),
|
||||
"cell_generic": workbook.add_format(
|
||||
{
|
||||
"align": "left",
|
||||
}
|
||||
),
|
||||
"cell_date": workbook.add_format(
|
||||
{
|
||||
"num_format": "d mmm yyyy",
|
||||
"align": "left",
|
||||
}
|
||||
),
|
||||
"cell_datetime": workbook.add_format(
|
||||
{
|
||||
"num_format": "d mmm yyyy hh:mm",
|
||||
"align": "left",
|
||||
}
|
||||
),
|
||||
"entry_total": workbook.add_format(
|
||||
{
|
||||
"num_format": amount_num_format,
|
||||
}
|
||||
),
|
||||
}
|
||||
|
||||
@api.model
|
||||
def _get_amount_num_format(self, report):
|
||||
if report.time_format == "decimal":
|
||||
return "0.00"
|
||||
elif report.time_format == "hh_mm":
|
||||
return "[h]:mm"
|
||||
elif report.time_format == "hh_mm_ss":
|
||||
return "[h]:mm:ss"
|
||||
|
||||
@api.model
|
||||
def _convert_amount_num_format(self, report, amount):
|
||||
if report.time_format in ["hh_mm", "hh_mm_ss"]:
|
||||
return amount / 24.0
|
||||
return amount
|
||||
|
||||
@api.model
|
||||
def _render_value_cell(self, row, col, sheet, formats, entry, field):
|
||||
raw_value = entry.any_line_id[field.field_name]
|
||||
value = entry.render_value(field.field_name)
|
||||
if field.field_type == "datetime":
|
||||
sheet.write_datetime(row, col, raw_value, formats["cell_datetime"])
|
||||
elif field.field_type == "date":
|
||||
sheet.write_datetime(row, col, raw_value, formats["cell_date"])
|
||||
else:
|
||||
sheet.write(row, col, html.unescape(value), formats["cell_generic"])
|
||||
|
|
@ -0,0 +1,249 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<!--
|
||||
Copyright 2018-2020 Brainbean Apps (https://brainbeanapps.com)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
|
||||
<template id="report">
|
||||
<t t-call="web.html_container">
|
||||
<t t-foreach="docs" t-as="report">
|
||||
<t t-call="web.external_layout">
|
||||
<t t-set="uom_hour" t-value="env.ref('uom.product_uom_hour')" />
|
||||
<div class="page">
|
||||
<div class="oe_structure" />
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<h2>
|
||||
<span>Timesheets Report</span>
|
||||
<span class="float-right text-right">
|
||||
<span
|
||||
t-if="report.time_format == 'hh_mm'"
|
||||
t-out="report.total_unit_amount"
|
||||
t-options="{'widget': 'duration', 'digital': True, 'unit': 'hour', 'round': 'minute'}"
|
||||
/>
|
||||
<span
|
||||
t-elif="report.time_format == 'hh_mm_ss'"
|
||||
t-out="report.total_unit_amount"
|
||||
t-options="{'widget': 'duration', 'digital': True, 'unit': 'hour'}"
|
||||
/>
|
||||
<span
|
||||
t-elif="report.time_format == 'decimal'"
|
||||
t-out="report.total_unit_amount"
|
||||
t-options="{'widget': 'float', 'precision': 2}"
|
||||
/>
|
||||
<span t-field="uom_hour.name" />
|
||||
</span>
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div t-if="report.line_ids" class="col">
|
||||
<h5>
|
||||
<span>on <span
|
||||
t-out="len(report.line_ids)"
|
||||
/> selected entries</span>
|
||||
</h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div t-if="report.date_from or report.date_to" class="col">
|
||||
<h5>
|
||||
<span>Date Range:</span>
|
||||
<span
|
||||
t-if="report.date_from and not report.date_to"
|
||||
>
|
||||
since <span t-field="report.date_from" />
|
||||
</span>
|
||||
<span
|
||||
t-elif="not report.date_from and report.date_to"
|
||||
>
|
||||
until <span t-field="report.date_to" />
|
||||
</span>
|
||||
<t t-else="">
|
||||
<span t-field="report.date_from" /> - <span
|
||||
t-field="report.date_to"
|
||||
/>
|
||||
</t>
|
||||
</h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<t>
|
||||
<div t-if="report.project_ids" class="col">
|
||||
<h5>Projects:</h5>
|
||||
<ul>
|
||||
<li
|
||||
t-foreach="report.project_ids"
|
||||
t-as="project"
|
||||
>
|
||||
<span t-field="project.name" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</t>
|
||||
<t>
|
||||
<div t-if="report.task_ids" class="col">
|
||||
<h5>Tasks:</h5>
|
||||
<ul>
|
||||
<li t-foreach="report.task_ids" t-as="task">
|
||||
<span t-field="task.name" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</t>
|
||||
<t>
|
||||
<div t-if="report.employee_ids" class="col">
|
||||
<h5>Employees:</h5>
|
||||
<ul>
|
||||
<li
|
||||
t-foreach="report.employee_ids"
|
||||
t-as="employee"
|
||||
>
|
||||
<span t-field="employee.name" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</t>
|
||||
<t>
|
||||
<div t-if="report.employee_category_ids" class="col">
|
||||
<h5>Employee Tags:</h5>
|
||||
<ul>
|
||||
<li
|
||||
t-foreach="report.employee_category_ids"
|
||||
t-as="employee_category"
|
||||
>
|
||||
<span t-field="employee_category.name" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</t>
|
||||
<t>
|
||||
<div t-if="report.department_ids" class="col">
|
||||
<h5>Departments:</h5>
|
||||
<ul>
|
||||
<li
|
||||
t-foreach="report.department_ids"
|
||||
t-as="department"
|
||||
>
|
||||
<span t-field="department.name" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
<table class="table table-sm">
|
||||
<tbody>
|
||||
<t
|
||||
t-set="group_colspan"
|
||||
t-value="len(report.entry_field_ids) + 1"
|
||||
/>
|
||||
<t t-foreach="report.group_ids" t-as="group">
|
||||
<tr t-if="group.name" class="o_line_section">
|
||||
<th t-att-colspan="group_colspan">
|
||||
<span t-field="group.name" />
|
||||
</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<th
|
||||
t-foreach="report.entry_field_ids"
|
||||
t-as="field"
|
||||
>
|
||||
<span t-field="field.field_title" />
|
||||
</th>
|
||||
<th class="text-right">
|
||||
<span t-field="uom_hour.name" />
|
||||
</th>
|
||||
</tr>
|
||||
<tr t-foreach="group.entry_ids" t-as="entry">
|
||||
<td
|
||||
t-foreach="report.entry_field_ids"
|
||||
t-as="field"
|
||||
>
|
||||
<!-- see https://github.com/odoo/odoo/issues/29658 -->
|
||||
<span
|
||||
t-att-class="field.cell_classes"
|
||||
t-out="entry.render_value(field.field_name)"
|
||||
/>
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<span
|
||||
t-if="report.time_format == 'hh_mm'"
|
||||
t-field="entry.total_unit_amount"
|
||||
t-options="{'widget': 'duration', 'digital': True, 'unit': 'hour', 'round': 'minute'}"
|
||||
/>
|
||||
<span
|
||||
t-elif="report.time_format == 'hh_mm_ss'"
|
||||
t-field="entry.total_unit_amount"
|
||||
t-options="{'widget': 'duration', 'digital': True, 'unit': 'hour'}"
|
||||
/>
|
||||
<span
|
||||
t-elif="report.time_format == 'decimal'"
|
||||
t-field="entry.total_unit_amount"
|
||||
t-options="{'widget': 'float', 'precision': 2}"
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="o_subtotal">
|
||||
<t
|
||||
t-if="len(report.entry_field_ids) > 1"
|
||||
t-foreach="len(report.entry_field_ids) - 1"
|
||||
t-as="_entry_field"
|
||||
>
|
||||
<td />
|
||||
</t>
|
||||
<td class="text-right"><strong
|
||||
>Subtotal</strong></td>
|
||||
<td class="text-right">
|
||||
<strong
|
||||
t-if="report.time_format == 'hh_mm'"
|
||||
t-out="group.total_unit_amount"
|
||||
t-options="{'widget': 'duration', 'digital': True, 'unit': 'hour', 'round': 'minute'}"
|
||||
/>
|
||||
<strong
|
||||
t-elif="report.time_format == 'hh_mm_ss'"
|
||||
t-out="group.total_unit_amount"
|
||||
t-options="{'widget': 'duration', 'digital': True, 'unit': 'hour'}"
|
||||
/>
|
||||
<strong
|
||||
t-elif="report.time_format == 'decimal'"
|
||||
t-out="group.total_unit_amount"
|
||||
t-options="{'widget': 'float', 'precision': 2}"
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
</t>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="oe_structure" />
|
||||
</div>
|
||||
</t>
|
||||
</t>
|
||||
</t>
|
||||
</template>
|
||||
|
||||
<record id="action_report_qweb_pdf" model="ir.actions.report">
|
||||
<field name="name">Timesheet Report</field>
|
||||
<field name="model">hr.timesheet.report</field>
|
||||
<field name="report_type">qweb-pdf</field>
|
||||
<field name="report_name">hr_timesheet_report.report</field>
|
||||
<field name="report_file">Timesheet Report</field>
|
||||
</record>
|
||||
|
||||
<record id="action_report_qweb_html" model="ir.actions.report">
|
||||
<field name="name">Timesheet Report</field>
|
||||
<field name="model">hr.timesheet.report</field>
|
||||
<field name="report_type">qweb-html</field>
|
||||
<field name="report_name">hr_timesheet_report.report</field>
|
||||
<field name="report_file">Timesheet Report</field>
|
||||
</record>
|
||||
|
||||
<record id="action_report_xlsx" model="ir.actions.report">
|
||||
<field name="name">Timesheet Report</field>
|
||||
<field name="model">hr.timesheet.report</field>
|
||||
<field name="report_type">xlsx</field>
|
||||
<field name="report_name">hr_timesheet_report.report</field>
|
||||
<field name="report_file">Timesheet Report</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_hr_timesheet_report_wizard_user,hr_timesheet_report_wizard.user,model_hr_timesheet_report_wizard,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
access_hr_timesheet_report_field_user,hr_timesheet_report_field.user,model_hr_timesheet_report_field,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
access_hr_timesheet_report_field_groupby_user,hr_timesheet_report_field_groupby.user,model_hr_timesheet_report_field_groupby,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
access_hr_timesheet_report_field_entry_user,hr_timesheet_report_field_entry.user,model_hr_timesheet_report_field_entry,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
access_hr_timesheet_report_group_user,hr_timesheet_report_group.user,model_hr_timesheet_report_group,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
access_hr_timesheet_report_entry_user,hr_timesheet_report_entry.user,model_hr_timesheet_report_entry,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
access_hr_timesheet_report_wizard_field_details_user,hr_timesheet_report_wizard_field_details.user,model_hr_timesheet_report_wizard_field_details,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
access_hr_timesheet_report_user,hr_timesheet_report.user,model_hr_timesheet_report,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
access_hr_timesheet_report_wizard_field_grouping_user,hr_timesheet_report_wizard_field_grouping.user,model_hr_timesheet_report_wizard_field_grouping,hr_timesheet.group_hr_timesheet_user,1,1,1,1
|
||||
|
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
|
|
@ -0,0 +1,456 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<title>Task Logs Timesheet Report</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="task-logs-timesheet-report">
|
||||
<h1 class="title">Task Logs Timesheet Report</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:8b7c4edcc3cae9581c26fa6b95199c9796fa6896de44ed7a08eab019503a8ab5
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/timesheet/tree/16.0/hr_timesheet_report"><img alt="OCA/timesheet" src="https://img.shields.io/badge/github-OCA%2Ftimesheet-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/timesheet-16-0/timesheet-16-0-hr_timesheet_report"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/timesheet&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module allows to generate configurable Timesheet Report from Task Logs.</p>
|
||||
<p>Features:</p>
|
||||
<blockquote>
|
||||
<ul class="simple">
|
||||
<li>Select reported fields</li>
|
||||
<li>Select and reorder report line grouping</li>
|
||||
<li>Configure time format (HH:MM, HH:MM:SS, or decimal)</li>
|
||||
<li>View in browser, export in PDF and XLSX formats</li>
|
||||
</ul>
|
||||
</blockquote>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-2">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-4">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-5">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-6">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
||||
<p>To create report using Timesheet Report Wizard on a specific set of Timesheet entries:</p>
|
||||
<ol class="arabic simple">
|
||||
<li>Go to <em>Timesheets > My Timesheets</em> or <em>Timesheets > All timesheets</em>.</li>
|
||||
<li>Select entries that should be used in the report</li>
|
||||
<li>Press the <em>Action > Generate Timesheet Report</em> button</li>
|
||||
<li>Configure the report and export it in one of the formats</li>
|
||||
</ol>
|
||||
<p>To create report using Timesheet Report Wizard on a generic set of Timesheet entries:</p>
|
||||
<ol class="arabic simple">
|
||||
<li>Go to <em>Timesheets > Reporting > Timesheet Report Wizard</em>.</li>
|
||||
<li>Configure the report and export it in one of the formats</li>
|
||||
</ol>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/timesheet/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/timesheet/issues/new?body=module:%20hr_timesheet_report%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#toc-entry-3">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-4">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>CorporateHub</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Dhara Solanki <<a class="reference external" href="mailto:dhara.solanki@initos.com">dhara.solanki@initos.com</a>></li>
|
||||
<li><a class="reference external" href="https://corporatehub.eu/">CorporateHub</a><ul>
|
||||
<li>Alexey Pelykh <<a class="reference external" href="mailto:alexey.pelykh@corphub.eu">alexey.pelykh@corphub.eu</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
|
||||
<li>Víctor Martínez</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
||||
<p><a class="reference external image-reference" href="https://github.com/alexey-pelykh"><img alt="alexey-pelykh" src="https://github.com/alexey-pelykh.png?size=40px" /></a></p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/timesheet/tree/16.0/hr_timesheet_report">OCA/timesheet</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import test_hr_timesheet_report
|
||||
|
|
@ -0,0 +1,125 @@
|
|||
# Copyright 2018-2020 Brainbean Apps (https://brainbeanapps.com)
|
||||
# Copyright 2024 Tecnativa - Victor Martínez
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import fields
|
||||
from odoo.tests import Form
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.base.tests.common import BaseCommon
|
||||
|
||||
|
||||
class TestHrTimesheetReportBase(BaseCommon):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.today = fields.Date.today()
|
||||
cls.IrActionReport = cls.env["ir.actions.report"]
|
||||
cls.Wizard = cls.env["hr.timesheet.report.wizard"]
|
||||
cls.project = cls.env["project.project"].create({"name": "Project"})
|
||||
cls.employee = cls.env["hr.employee"].create({"name": "Employee"})
|
||||
cls.timesheet_1 = cls.env["account.analytic.line"].create(
|
||||
{
|
||||
"project_id": cls.project.id,
|
||||
"name": "Time Entry",
|
||||
"employee_id": cls.employee.id,
|
||||
"date": cls.today,
|
||||
"unit_amount": 1,
|
||||
}
|
||||
)
|
||||
|
||||
def _create_report_from_wizard(self, wizard):
|
||||
return self.env["hr.timesheet.report"].create(wizard._collect_report_values())
|
||||
|
||||
|
||||
class TestHrTimesheetReport(TestHrTimesheetReportBase):
|
||||
@mute_logger("odoo.models.unlink")
|
||||
def test_html_export(self):
|
||||
wizard_form = Form(self.Wizard)
|
||||
wizard_form.employee_ids.add(self.employee)
|
||||
wizard = wizard_form.save()
|
||||
self.assertTrue(wizard.grouping_field_ids)
|
||||
self.assertTrue(wizard.entry_field_ids)
|
||||
wizard.action_export_html()
|
||||
report = self._create_report_from_wizard(wizard)
|
||||
self.IrActionReport._render_qweb_html("hr_timesheet_report.report", report.ids)
|
||||
|
||||
@mute_logger("odoo.models.unlink")
|
||||
def test_pdf_export(self):
|
||||
wizard_form = Form(self.Wizard)
|
||||
wizard_form.employee_ids.add(self.employee)
|
||||
wizard = wizard_form.save()
|
||||
self.assertTrue(wizard.grouping_field_ids)
|
||||
self.assertTrue(wizard.entry_field_ids)
|
||||
wizard.action_export_pdf()
|
||||
report = self._create_report_from_wizard(wizard)
|
||||
self.IrActionReport._render_qweb_html("hr_timesheet_report.report", report.ids)
|
||||
|
||||
@mute_logger("odoo.models.unlink")
|
||||
def test_xlsx_export(self):
|
||||
wizard_form = Form(self.Wizard)
|
||||
wizard_form.employee_ids.add(self.employee)
|
||||
wizard = wizard_form.save()
|
||||
self.assertTrue(wizard.grouping_field_ids)
|
||||
self.assertTrue(wizard.entry_field_ids)
|
||||
report = self._create_report_from_wizard(wizard)
|
||||
self.IrActionReport._render_xlsx("hr_timesheet_report.report", report.ids, None)
|
||||
|
||||
@mute_logger("odoo.models.unlink")
|
||||
def test_no_grouping(self):
|
||||
wizard_form = Form(
|
||||
self.Wizard.with_context(default_grouping_field_ids=[(5, False, False)])
|
||||
)
|
||||
wizard_form.date_from = self.today
|
||||
wizard_form.date_to = self.today
|
||||
wizard_form.employee_ids.add(self.employee)
|
||||
wizard = wizard_form.save()
|
||||
self.assertFalse(wizard.grouping_field_ids)
|
||||
self.assertTrue(wizard.entry_field_ids)
|
||||
report = self._create_report_from_wizard(wizard)
|
||||
self.assertEqual(len(report.group_ids), 1)
|
||||
self.assertEqual(report.total_unit_amount, 1)
|
||||
|
||||
|
||||
class TestHrTimesheetReportMultiProject(TestHrTimesheetReportBase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.extra_project = cls.env["project.project"].create({"name": "Extra Project"})
|
||||
cls.timesheet_2 = cls.env["account.analytic.line"].create(
|
||||
{
|
||||
"project_id": cls.extra_project.id,
|
||||
"name": "Time Entry 2",
|
||||
"employee_id": cls.employee.id,
|
||||
"date": cls.today,
|
||||
"unit_amount": 2,
|
||||
}
|
||||
)
|
||||
|
||||
@mute_logger("odoo.models.unlink")
|
||||
def test_multi_project_01(self):
|
||||
entries = self.timesheet_1 + self.timesheet_2
|
||||
res = entries.action_timesheet_report_wizard()
|
||||
wizard_form = Form(self.env[res["res_model"]].with_context(**res["context"]))
|
||||
wizard = wizard_form.save()
|
||||
self.assertTrue(wizard.grouping_field_ids)
|
||||
self.assertTrue(wizard.entry_field_ids)
|
||||
report = self._create_report_from_wizard(wizard)
|
||||
self.assertEqual(len(report.group_ids), 2)
|
||||
self.assertEqual(len(report.line_ids), 2)
|
||||
self.assertIn(self.timesheet_1, report.line_ids)
|
||||
self.assertIn(self.timesheet_2, report.line_ids)
|
||||
self.assertEqual(report.total_unit_amount, 3)
|
||||
|
||||
@mute_logger("odoo.models.unlink")
|
||||
def test_multi_project_02(self):
|
||||
wizard_form = Form(self.Wizard)
|
||||
wizard_form.date_from = self.today
|
||||
wizard_form.date_to = self.today
|
||||
wizard_form.employee_ids.add(self.employee)
|
||||
wizard = wizard_form.save()
|
||||
self.assertTrue(wizard.grouping_field_ids)
|
||||
self.assertTrue(wizard.entry_field_ids)
|
||||
report = self._create_report_from_wizard(wizard)
|
||||
self.assertEqual(len(report.group_ids), 2)
|
||||
self.assertEqual(report.total_unit_amount, 3)
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<!--
|
||||
Copyright 2018-2020 Brainbean Apps (https://brainbeanapps.com)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
|
||||
<record
|
||||
id="action_timesheet_report_wizard_from_selection"
|
||||
model="ir.actions.server"
|
||||
>
|
||||
<field name="name">Generate Timesheet Report</field>
|
||||
<field name="type">ir.actions.server</field>
|
||||
<field name="model_id" ref="analytic.model_account_analytic_line" />
|
||||
<field name="binding_model_id" ref="analytic.model_account_analytic_line" />
|
||||
<field name="state">code</field>
|
||||
<field name="code">
|
||||
if records:
|
||||
action = records.action_timesheet_report_wizard()
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import hr_timesheet_report_wizard
|
||||
|
|
@ -0,0 +1,262 @@
|
|||
# Copyright 2018-2020 Brainbean Apps (https://brainbeanapps.com)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError, ValidationError
|
||||
|
||||
|
||||
class HrTimesheetReportWizard(models.TransientModel):
|
||||
_name = "hr.timesheet.report.wizard"
|
||||
_description = "HR Timesheet Report Wizard"
|
||||
|
||||
line_ids = fields.Many2many(
|
||||
string="Account Analytics Lines",
|
||||
comodel_name="account.analytic.line",
|
||||
)
|
||||
has_line_ids = fields.Boolean(
|
||||
string="Has lines (technical)",
|
||||
compute="_compute_has_line_ids",
|
||||
)
|
||||
date_from = fields.Date(
|
||||
string="Start Date",
|
||||
)
|
||||
date_to = fields.Date(
|
||||
string="End Date",
|
||||
)
|
||||
project_ids = fields.Many2many(
|
||||
string="Projects",
|
||||
comodel_name="project.project",
|
||||
)
|
||||
task_ids = fields.Many2many(
|
||||
string="Tasks",
|
||||
comodel_name="project.task",
|
||||
)
|
||||
employee_ids = fields.Many2many(
|
||||
string="Employees",
|
||||
comodel_name="hr.employee",
|
||||
)
|
||||
employee_category_ids = fields.Many2many(
|
||||
string="Employee Tags",
|
||||
comodel_name="hr.employee.category",
|
||||
)
|
||||
department_ids = fields.Many2many(
|
||||
string="Departments",
|
||||
comodel_name="hr.department",
|
||||
)
|
||||
grouping_field_ids = fields.One2many(
|
||||
string="Grouping Fields",
|
||||
comodel_name="hr.timesheet.report.wizard.field.grouping",
|
||||
inverse_name="wizard_id",
|
||||
default=lambda self: self._default_grouping_field_ids(),
|
||||
)
|
||||
entry_field_ids = fields.One2many(
|
||||
string="Details Fields",
|
||||
comodel_name="hr.timesheet.report.wizard.field.details",
|
||||
inverse_name="wizard_id",
|
||||
default=lambda self: self._default_entry_field_ids(),
|
||||
)
|
||||
time_format = fields.Selection(
|
||||
string="Time format",
|
||||
selection=lambda self: self._selection_time_format(),
|
||||
required=True,
|
||||
default=lambda self: self._selection_time_format()[0][0],
|
||||
)
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
for vals in vals_list:
|
||||
if "grouping_field_ids" not in vals:
|
||||
# In order to avoid empty set being replaced with default value:
|
||||
vals.update(
|
||||
{
|
||||
"grouping_field_ids": [(5, False, False)],
|
||||
}
|
||||
)
|
||||
if "entry_field_ids" not in vals:
|
||||
raise UserError(_("At least one Details field must be specified!"))
|
||||
return super().create(vals_list)
|
||||
|
||||
@api.model
|
||||
def _default_grouping_field_ids(self):
|
||||
return list(
|
||||
map(lambda values: (0, False, values), self._get_default_grouping_fields())
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _get_default_grouping_fields(self):
|
||||
return [
|
||||
{
|
||||
"sequence": 10,
|
||||
"field_name": "project_id",
|
||||
},
|
||||
{
|
||||
"sequence": 20,
|
||||
"field_name": "task_id",
|
||||
},
|
||||
{
|
||||
"sequence": 30,
|
||||
"field_name": "employee_id",
|
||||
},
|
||||
]
|
||||
|
||||
@api.model
|
||||
def _default_entry_field_ids(self):
|
||||
return list(
|
||||
map(lambda values: (0, False, values), self._get_default_entry_fields())
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _get_default_entry_fields(self):
|
||||
return [
|
||||
{
|
||||
"sequence": 10,
|
||||
"field_name": "date",
|
||||
},
|
||||
{
|
||||
"sequence": 20,
|
||||
"field_name": "name",
|
||||
},
|
||||
]
|
||||
|
||||
@api.model
|
||||
def _selection_time_format(self):
|
||||
Report = self.env["hr.timesheet.report"]
|
||||
return Report._selection_time_format()
|
||||
|
||||
@api.constrains("entry_field_ids")
|
||||
def _check_entry_field_ids(self):
|
||||
for wizard in self:
|
||||
if len(wizard.entry_field_ids) < 1:
|
||||
raise ValidationError(
|
||||
_("At least one field must be listed in Details Fields")
|
||||
)
|
||||
|
||||
@api.depends("line_ids")
|
||||
def _compute_has_line_ids(self):
|
||||
for wizard in self:
|
||||
wizard.has_line_ids = len(wizard.line_ids) > 0
|
||||
|
||||
def action_export_html(self):
|
||||
self.ensure_one()
|
||||
|
||||
action = self._generate_report("qweb-html")
|
||||
if not self.has_line_ids:
|
||||
action.update(
|
||||
{
|
||||
"target": "main",
|
||||
}
|
||||
)
|
||||
|
||||
return action
|
||||
|
||||
def action_export_pdf(self):
|
||||
self.ensure_one()
|
||||
return self._generate_report("qweb-pdf")
|
||||
|
||||
def action_export_xlsx(self):
|
||||
self.ensure_one()
|
||||
return self._generate_report("xlsx")
|
||||
|
||||
def _generate_report(self, report_type):
|
||||
self.ensure_one()
|
||||
report = self.env["hr.timesheet.report"].create(self._collect_report_values())
|
||||
return report.get_action(report_type)
|
||||
|
||||
def _collect_report_values(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"line_ids": [(6, False, self.line_ids.ids)],
|
||||
"date_from": self.date_from,
|
||||
"date_to": self.date_to,
|
||||
"project_ids": [(6, False, self.project_ids.ids)],
|
||||
"task_ids": [(6, False, self.task_ids.ids)],
|
||||
"employee_ids": [(6, False, self.employee_ids.ids)],
|
||||
"employee_category_ids": [(6, False, self.employee_category_ids.ids)],
|
||||
"department_ids": [(6, False, self.department_ids.ids)],
|
||||
"groupby_field_ids": list(
|
||||
map(
|
||||
lambda x: (0, False, x._collect_report_values()),
|
||||
self.grouping_field_ids,
|
||||
)
|
||||
),
|
||||
"entry_field_ids": list(
|
||||
map(
|
||||
lambda x: (0, False, x._collect_report_values()),
|
||||
self.entry_field_ids,
|
||||
)
|
||||
),
|
||||
"time_format": self.time_format,
|
||||
}
|
||||
|
||||
|
||||
class HrTimesheetReportWizardField(models.AbstractModel):
|
||||
_name = "hr.timesheet.report.wizard.field"
|
||||
_description = "HR Timesheet Report Wizard field"
|
||||
_order = "sequence, id"
|
||||
|
||||
wizard_id = fields.Many2one(
|
||||
string="Wizard",
|
||||
comodel_name="hr.timesheet.report.wizard",
|
||||
required=True,
|
||||
ondelete="cascade",
|
||||
)
|
||||
sequence = fields.Integer(
|
||||
required=True,
|
||||
default=10,
|
||||
)
|
||||
field_name = fields.Selection(
|
||||
string="Field",
|
||||
selection="_selection_field_name",
|
||||
required=True,
|
||||
)
|
||||
field_title = fields.Char(
|
||||
string="Title",
|
||||
compute="_compute_field_title",
|
||||
)
|
||||
field_type = fields.Char(
|
||||
string="Type",
|
||||
compute="_compute_field_type",
|
||||
)
|
||||
|
||||
@api.model
|
||||
def _selection_field_name(self):
|
||||
fields = self.env["account.analytic.line"].fields_get().items()
|
||||
return [(f, d.get("string")) for f, d in fields if self._field_selectable(f, d)]
|
||||
|
||||
@api.model
|
||||
def _field_selectable(self, field, definition):
|
||||
return True
|
||||
|
||||
@api.depends("field_name")
|
||||
def _compute_field_title(self):
|
||||
fields = self.env["account.analytic.line"].fields_get()
|
||||
for field in self:
|
||||
field.field_title = fields[field.field_name]["string"]
|
||||
|
||||
@api.depends("field_name")
|
||||
def _compute_field_type(self):
|
||||
fields = self.env["account.analytic.line"].fields_get()
|
||||
for field in self:
|
||||
field.field_type = fields[field.field_name]["type"]
|
||||
|
||||
def _collect_report_values(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
"sequence": self.sequence,
|
||||
"field_name": self.field_name,
|
||||
"field_title": self.field_title,
|
||||
"field_type": self.field_type,
|
||||
"aggregation": ("day" if self.field_type in ["datetime", "date"] else None),
|
||||
}
|
||||
|
||||
|
||||
class HrTimesheetReportWizardGroupingField(models.TransientModel):
|
||||
_name = "hr.timesheet.report.wizard.field.grouping"
|
||||
_description = "HR Timesheet Report Wizard field (grouping)"
|
||||
_inherit = "hr.timesheet.report.wizard.field"
|
||||
|
||||
|
||||
class HrTimesheetReportWizardDetailsField(models.TransientModel):
|
||||
_name = "hr.timesheet.report.wizard.field.details"
|
||||
_description = "HR Timesheet Report Wizard field (details)"
|
||||
_inherit = "hr.timesheet.report.wizard.field"
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!--
|
||||
Copyright 2018-2020 Brainbean Apps (https://brainbeanapps.com)
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
-->
|
||||
<odoo>
|
||||
|
||||
<record id="hr_timesheet_report_wizard_form" model="ir.ui.view">
|
||||
<field name="name">hr.timesheet.report.wizard.form</field>
|
||||
<field name="model">hr.timesheet.report.wizard</field>
|
||||
<field name="arch" type="xml">
|
||||
<form>
|
||||
<field name="has_line_ids" invisible="1" />
|
||||
<field name="line_ids" invisible="1" />
|
||||
<group
|
||||
name="filter"
|
||||
attrs="{'invisible': [('has_line_ids', '=', True)]}"
|
||||
>
|
||||
<group name="left_filter">
|
||||
<field name="date_from" />
|
||||
<field name="project_ids" widget="many2many_tags" />
|
||||
<field name="employee_ids" widget="many2many_tags" />
|
||||
<field name="department_ids" widget="many2many_tags" />
|
||||
</group>
|
||||
<group name="right_filter">
|
||||
<field name="date_to" />
|
||||
<field name="task_ids" widget="many2many_tags" />
|
||||
<field name="employee_category_ids" widget="many2many_tags" />
|
||||
</group>
|
||||
</group>
|
||||
<group name="content">
|
||||
<group>
|
||||
<field name="grouping_field_ids">
|
||||
<tree editable="bottom">
|
||||
<field name="sequence" widget="handle" />
|
||||
<field name="field_name" />
|
||||
</tree>
|
||||
</field>
|
||||
</group>
|
||||
<group>
|
||||
<field name="entry_field_ids">
|
||||
<tree editable="bottom">
|
||||
<field name="sequence" widget="handle" />
|
||||
<field name="field_name" />
|
||||
</tree>
|
||||
</field>
|
||||
</group>
|
||||
</group>
|
||||
<group name="options">
|
||||
<group>
|
||||
<field name="time_format" widget="radio" />
|
||||
</group>
|
||||
</group>
|
||||
<footer>
|
||||
<button
|
||||
name="action_export_html"
|
||||
string="View"
|
||||
type="object"
|
||||
default_focus="1"
|
||||
class="oe_highlight"
|
||||
/>
|
||||
<button
|
||||
name="action_export_pdf"
|
||||
string="Export to PDF"
|
||||
type="object"
|
||||
/>
|
||||
<button
|
||||
name="action_export_xlsx"
|
||||
string="Export to XLSX"
|
||||
type="object"
|
||||
/>
|
||||
<button string="Cancel" class="btn-secondary" special="cancel" />
|
||||
</footer>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_timesheet_report_wizard" model="ir.actions.act_window">
|
||||
<field name="name">Generate Timesheet Report</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="res_model">hr.timesheet.report.wizard</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="target">new</field>
|
||||
</record>
|
||||
|
||||
<menuitem
|
||||
id="menu_timesheet_report_wizard"
|
||||
parent="hr_timesheet.menu_timesheets_reports"
|
||||
action="action_timesheet_report_wizard"
|
||||
name="Timesheet Report Wizard"
|
||||
sequence="0"
|
||||
/>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-timesheet-hr_timesheet_report"
|
||||
version = "16.0.0"
|
||||
description = "Task Logs Timesheet Report - Generate Timesheet Report from Task Logs"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-hr_timesheet>=16.0.0",
|
||||
"odoo-bringout-oca-timesheet-report_xlsx>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["hr_timesheet_report"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue