Compare commits
3 Commits
16.0-hr_em
...
16.0
Author | SHA1 | Date | |
---|---|---|---|
f206606a96 | |||
e8a819d594 | |||
0437a9c9be |
20
.editorconfig
Normal file
20
.editorconfig
Normal file
@@ -0,0 +1,20 @@
|
||||
# Configuration for known file extensions
|
||||
[*.{css,js,json,less,md,py,rst,sass,scss,xml,yaml,yml}]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.{json,yml,yaml,rst,md}]
|
||||
indent_size = 2
|
||||
|
||||
# Do not configure editor for libs and autogenerated content
|
||||
[{*/static/{lib,src/lib}/**,*/static/description/index.html,*/readme/../README.rst}]
|
||||
charset = unset
|
||||
end_of_line = unset
|
||||
indent_size = unset
|
||||
indent_style = unset
|
||||
insert_final_newline = false
|
||||
trim_trailing_whitespace = false
|
188
.eslintrc.yml
Normal file
188
.eslintrc.yml
Normal file
@@ -0,0 +1,188 @@
|
||||
env:
|
||||
browser: true
|
||||
es6: true
|
||||
|
||||
# See https://github.com/OCA/odoo-community.org/issues/37#issuecomment-470686449
|
||||
parserOptions:
|
||||
ecmaVersion: 2019
|
||||
|
||||
overrides:
|
||||
- files:
|
||||
- "**/*.esm.js"
|
||||
parserOptions:
|
||||
sourceType: module
|
||||
|
||||
# Globals available in Odoo that shouldn't produce errorings
|
||||
globals:
|
||||
_: readonly
|
||||
$: readonly
|
||||
fuzzy: readonly
|
||||
jQuery: readonly
|
||||
moment: readonly
|
||||
odoo: readonly
|
||||
openerp: readonly
|
||||
owl: readonly
|
||||
luxon: readonly
|
||||
|
||||
# Styling is handled by Prettier, so we only need to enable AST rules;
|
||||
# see https://github.com/OCA/maintainer-quality-tools/pull/618#issuecomment-558576890
|
||||
rules:
|
||||
accessor-pairs: warn
|
||||
array-callback-return: warn
|
||||
callback-return: warn
|
||||
capitalized-comments:
|
||||
- warn
|
||||
- always
|
||||
- ignoreConsecutiveComments: true
|
||||
ignoreInlineComments: true
|
||||
complexity:
|
||||
- warn
|
||||
- 15
|
||||
constructor-super: warn
|
||||
dot-notation: warn
|
||||
eqeqeq: warn
|
||||
global-require: warn
|
||||
handle-callback-err: warn
|
||||
id-blacklist: warn
|
||||
id-match: warn
|
||||
init-declarations: error
|
||||
max-depth: warn
|
||||
max-nested-callbacks: warn
|
||||
max-statements-per-line: warn
|
||||
no-alert: warn
|
||||
no-array-constructor: warn
|
||||
no-caller: warn
|
||||
no-case-declarations: warn
|
||||
no-class-assign: warn
|
||||
no-cond-assign: error
|
||||
no-const-assign: error
|
||||
no-constant-condition: warn
|
||||
no-control-regex: warn
|
||||
no-debugger: error
|
||||
no-delete-var: warn
|
||||
no-div-regex: warn
|
||||
no-dupe-args: error
|
||||
no-dupe-class-members: error
|
||||
no-dupe-keys: error
|
||||
no-duplicate-case: error
|
||||
no-duplicate-imports: error
|
||||
no-else-return: warn
|
||||
no-empty-character-class: warn
|
||||
no-empty-function: error
|
||||
no-empty-pattern: error
|
||||
no-empty: warn
|
||||
no-eq-null: error
|
||||
no-eval: error
|
||||
no-ex-assign: error
|
||||
no-extend-native: warn
|
||||
no-extra-bind: warn
|
||||
no-extra-boolean-cast: warn
|
||||
no-extra-label: warn
|
||||
no-fallthrough: warn
|
||||
no-func-assign: error
|
||||
no-global-assign: error
|
||||
no-implicit-coercion:
|
||||
- warn
|
||||
- allow: ["~"]
|
||||
no-implicit-globals: warn
|
||||
no-implied-eval: warn
|
||||
no-inline-comments: warn
|
||||
no-inner-declarations: warn
|
||||
no-invalid-regexp: warn
|
||||
no-irregular-whitespace: warn
|
||||
no-iterator: warn
|
||||
no-label-var: warn
|
||||
no-labels: warn
|
||||
no-lone-blocks: warn
|
||||
no-lonely-if: error
|
||||
no-mixed-requires: error
|
||||
no-multi-str: warn
|
||||
no-native-reassign: error
|
||||
no-negated-condition: warn
|
||||
no-negated-in-lhs: error
|
||||
no-new-func: warn
|
||||
no-new-object: warn
|
||||
no-new-require: warn
|
||||
no-new-symbol: warn
|
||||
no-new-wrappers: warn
|
||||
no-new: warn
|
||||
no-obj-calls: warn
|
||||
no-octal-escape: warn
|
||||
no-octal: warn
|
||||
no-param-reassign: warn
|
||||
no-path-concat: warn
|
||||
no-process-env: warn
|
||||
no-process-exit: warn
|
||||
no-proto: warn
|
||||
no-prototype-builtins: warn
|
||||
no-redeclare: warn
|
||||
no-regex-spaces: warn
|
||||
no-restricted-globals: warn
|
||||
no-restricted-imports: warn
|
||||
no-restricted-modules: warn
|
||||
no-restricted-syntax: warn
|
||||
no-return-assign: error
|
||||
no-script-url: warn
|
||||
no-self-assign: warn
|
||||
no-self-compare: warn
|
||||
no-sequences: warn
|
||||
no-shadow-restricted-names: warn
|
||||
no-shadow: warn
|
||||
no-sparse-arrays: warn
|
||||
no-sync: warn
|
||||
no-this-before-super: warn
|
||||
no-throw-literal: warn
|
||||
no-undef-init: warn
|
||||
no-undef: error
|
||||
no-unmodified-loop-condition: warn
|
||||
no-unneeded-ternary: error
|
||||
no-unreachable: error
|
||||
no-unsafe-finally: error
|
||||
no-unused-expressions: error
|
||||
no-unused-labels: error
|
||||
no-unused-vars: error
|
||||
no-use-before-define: error
|
||||
no-useless-call: warn
|
||||
no-useless-computed-key: warn
|
||||
no-useless-concat: warn
|
||||
no-useless-constructor: warn
|
||||
no-useless-escape: warn
|
||||
no-useless-rename: warn
|
||||
no-void: warn
|
||||
no-with: warn
|
||||
operator-assignment: [error, always]
|
||||
prefer-const: warn
|
||||
radix: warn
|
||||
require-yield: warn
|
||||
sort-imports: warn
|
||||
spaced-comment: [error, always]
|
||||
strict: [error, function]
|
||||
use-isnan: error
|
||||
valid-jsdoc:
|
||||
- warn
|
||||
- prefer:
|
||||
arg: param
|
||||
argument: param
|
||||
augments: extends
|
||||
constructor: class
|
||||
exception: throws
|
||||
func: function
|
||||
method: function
|
||||
prop: property
|
||||
return: returns
|
||||
virtual: abstract
|
||||
yield: yields
|
||||
preferType:
|
||||
array: Array
|
||||
bool: Boolean
|
||||
boolean: Boolean
|
||||
number: Number
|
||||
object: Object
|
||||
str: String
|
||||
string: String
|
||||
requireParamDescription: false
|
||||
requireReturn: false
|
||||
requireReturnDescription: false
|
||||
requireReturnType: false
|
||||
valid-typeof: warn
|
||||
yoda: warn
|
42
.gitea/workflows/pre-commit.yml
Normal file
42
.gitea/workflows/pre-commit.yml
Normal file
@@ -0,0 +1,42 @@
|
||||
name: pre-commit
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "16.0*"
|
||||
|
||||
jobs:
|
||||
pre-commit:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.11"
|
||||
- name: Get python version
|
||||
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
|
||||
# - uses: actions/cache@v4
|
||||
# with:
|
||||
# path: ~/.cache/pre-commit
|
||||
# key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
|
||||
- name: Install pre-commit
|
||||
run: pip install pre-commit
|
||||
- name: Run pre-commit
|
||||
run: pre-commit run --all-files --show-diff-on-failure --color=always
|
||||
env:
|
||||
# Consider valid a PR that changes README fragments but doesn't
|
||||
# change the README.rst file itself. It's not really a problem
|
||||
# because the bot will update it anyway after merge. This way, we
|
||||
# lower the barrier for functional contributors that want to fix the
|
||||
# readme fragments, while still letting developers get README
|
||||
# auto-generated (which also helps functionals when using runboat).
|
||||
# DOCS https://pre-commit.com/#temporarily-disabling-hooks
|
||||
SKIP: oca-gen-addon-readme
|
||||
- name: Check that all files generated by pre-commit are in git
|
||||
run: |
|
||||
newfiles="$(git ls-files --others --exclude-from=.gitignore)"
|
||||
if [ "$newfiles" != "" ] ; then
|
||||
echo "Please check-in the following files:"
|
||||
echo "$newfiles"
|
||||
exit 1
|
||||
fi
|
150
.pre-commit-config.yaml
Normal file
150
.pre-commit-config.yaml
Normal file
@@ -0,0 +1,150 @@
|
||||
exclude: |
|
||||
(?x)
|
||||
# NOT INSTALLABLE ADDONS
|
||||
# END NOT INSTALLABLE ADDONS
|
||||
# Files and folders generated by bots, to avoid loops
|
||||
^setup/|/static/description/index\.html$|
|
||||
# We don't want to mess with tool-generated files
|
||||
.svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/|^eslint.config.cjs|^prettier.config.cjs|
|
||||
# Maybe reactivate this when all README files include prettier ignore tags?
|
||||
^README\.md$|
|
||||
# Library files can have extraneous formatting (even minimized)
|
||||
/static/(src/)?lib/|
|
||||
# Repos using Sphinx to generate docs don't need prettying
|
||||
^docs/_templates/.*\.html$|
|
||||
# Don't bother non-technical authors with formatting issues in docs
|
||||
readme/.*\.(rst|md)$|
|
||||
# Ignore build and dist directories in addons
|
||||
/build/|/dist/|
|
||||
# Ignore test files in addons
|
||||
/tests/samples/.*|
|
||||
# You don't usually want a bot to modify your legal texts
|
||||
(LICENSE.*|COPYING.*)
|
||||
default_language_version:
|
||||
python: python3
|
||||
node: "16.17.0"
|
||||
repos:
|
||||
- repo: local
|
||||
hooks:
|
||||
# These files are most likely copier diff rejection junks; if found,
|
||||
# review them manually, fix the problem (if needed) and remove them
|
||||
- id: forbidden-files
|
||||
name: forbidden files
|
||||
entry: found forbidden files; remove them
|
||||
language: fail
|
||||
files: "\\.rej$"
|
||||
- id: en-po-files
|
||||
name: en.po files cannot exist
|
||||
entry: found a en.po file
|
||||
language: fail
|
||||
files: '[a-zA-Z0-9_]*/i18n/en\.po$'
|
||||
- repo: https://github.com/oca/maintainer-tools
|
||||
rev: f9b919b9868143135a9c9cb03021089cabba8223
|
||||
hooks:
|
||||
# update the NOT INSTALLABLE ADDONS section above
|
||||
- id: oca-update-pre-commit-excluded-addons
|
||||
- id: oca-fix-manifest-website
|
||||
entry:
|
||||
bash -c 'oca-fix-manifest-website "https://git.elabore.coop/elabore/$(basename
|
||||
$(git rev-parse --show-toplevel))"'
|
||||
- id: oca-gen-addon-readme
|
||||
entry:
|
||||
bash -c 'oca-gen-addon-readme
|
||||
--addons-dir=.
|
||||
--branch=$(git symbolic-ref
|
||||
refs/remotes/origin/HEAD | sed "s@^refs/remotes/origin/@@")
|
||||
--repo-name=$(basename $(git rev-parse --show-toplevel))
|
||||
--org-name="Elabore"
|
||||
--if-source-changed --keep-source-digest'
|
||||
|
||||
- repo: https://github.com/OCA/odoo-pre-commit-hooks
|
||||
rev: v0.1.4
|
||||
hooks:
|
||||
- id: oca-checks-odoo-module
|
||||
- id: oca-checks-po
|
||||
args:
|
||||
- --disable=po-pretty-format
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: prettier
|
||||
name: prettier (with plugin-xml)
|
||||
entry: prettier
|
||||
args:
|
||||
- --write
|
||||
- --list-different
|
||||
- --ignore-unknown
|
||||
types: [text]
|
||||
files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$
|
||||
language: node
|
||||
additional_dependencies:
|
||||
- "prettier@2.7.1"
|
||||
- "@prettier/plugin-xml@2.2.0"
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: eslint
|
||||
name: eslint
|
||||
entry: eslint
|
||||
args:
|
||||
- --color
|
||||
- --fix
|
||||
verbose: true
|
||||
types: [javascript]
|
||||
language: node
|
||||
additional_dependencies:
|
||||
- "eslint@8.24.0"
|
||||
- "eslint-plugin-jsdoc@"
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v5.0.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
# exclude autogenerated files
|
||||
exclude: /README\.rst$|\.pot?$
|
||||
- id: end-of-file-fixer
|
||||
# exclude autogenerated files
|
||||
exclude: /README\.rst$|\.pot?$
|
||||
- id: debug-statements
|
||||
- id: fix-encoding-pragma
|
||||
args: ["--remove"]
|
||||
- id: check-case-conflict
|
||||
- id: check-docstring-first
|
||||
- id: check-executables-have-shebangs
|
||||
- id: check-merge-conflict
|
||||
# exclude files where underlines are not distinguishable from merge conflicts
|
||||
exclude: /README\.rst$|^docs/.*\.rst$
|
||||
- id: check-symlinks
|
||||
- id: check-xml
|
||||
- id: mixed-line-ending
|
||||
args: ["--fix=lf"]
|
||||
- repo: https://github.com/PyCQA/docformatter
|
||||
rev: v1.7.7
|
||||
hooks:
|
||||
- id: docformatter
|
||||
args: [
|
||||
"--in-place", # modify the files
|
||||
"--recursive", # run on all the files
|
||||
"--wrap-summaries",
|
||||
"88", # max length of 1st line
|
||||
"--wrap-descriptions",
|
||||
"88", # max length of other lines
|
||||
"--pre-summary-newline", # new line before a long summary
|
||||
"--make-summary-multi-line", # force summary on multilines
|
||||
]
|
||||
additional_dependencies: ["tomli"] # if Python <3.11
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
rev: v0.12.0
|
||||
hooks:
|
||||
- id: ruff
|
||||
args: [--fix, --exit-non-zero-on-fix]
|
||||
- id: ruff-format
|
||||
- repo: https://github.com/OCA/pylint-odoo
|
||||
rev: v9.1.3
|
||||
hooks:
|
||||
- id: pylint_odoo
|
||||
name: pylint with optional checks
|
||||
args:
|
||||
- --rcfile=.pylintrc
|
||||
- --exit-zero
|
||||
verbose: true
|
||||
- id: pylint_odoo
|
||||
args:
|
||||
- --rcfile=.pylintrc-mandatory
|
8
.prettierrc.yml
Normal file
8
.prettierrc.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
# Defaults for all prettier-supported languages.
|
||||
# Prettier will complete this with settings from .editorconfig file.
|
||||
bracketSpacing: false
|
||||
printWidth: 88
|
||||
proseWrap: always
|
||||
semi: true
|
||||
trailingComma: "es5"
|
||||
xmlWhitespaceSensitivity: "strict"
|
123
.pylintrc
Normal file
123
.pylintrc
Normal file
@@ -0,0 +1,123 @@
|
||||
|
||||
|
||||
[MASTER]
|
||||
load-plugins=pylint_odoo
|
||||
score=n
|
||||
|
||||
[ODOOLINT]
|
||||
readme-template-url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst"
|
||||
manifest-required-authors=Elabore
|
||||
manifest-required-keys=license
|
||||
manifest-deprecated-keys=description,active
|
||||
license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
|
||||
valid-odoo-versions=16.0
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
disable=all
|
||||
|
||||
# This .pylintrc contains optional AND mandatory checks and is meant to be
|
||||
# loaded in an IDE to have it check everything, in the hope this will make
|
||||
# optional checks more visible to contributors who otherwise never look at a
|
||||
# green travis to see optional checks that failed.
|
||||
# .pylintrc-mandatory containing only mandatory checks is used the pre-commit
|
||||
# config as a blocking check.
|
||||
|
||||
enable=anomalous-backslash-in-string,
|
||||
api-one-deprecated,
|
||||
api-one-multi-together,
|
||||
assignment-from-none,
|
||||
attribute-deprecated,
|
||||
class-camelcase,
|
||||
dangerous-default-value,
|
||||
dangerous-view-replace-wo-priority,
|
||||
development-status-allowed,
|
||||
duplicate-id-csv,
|
||||
duplicate-key,
|
||||
duplicate-xml-fields,
|
||||
duplicate-xml-record-id,
|
||||
eval-referenced,
|
||||
eval-used,
|
||||
incoherent-interpreter-exec-perm,
|
||||
license-allowed,
|
||||
manifest-author-string,
|
||||
manifest-deprecated-key,
|
||||
manifest-required-author,
|
||||
manifest-required-key,
|
||||
manifest-version-format,
|
||||
method-compute,
|
||||
method-inverse,
|
||||
method-required-super,
|
||||
method-search,
|
||||
openerp-exception-warning,
|
||||
pointless-statement,
|
||||
pointless-string-statement,
|
||||
print-used,
|
||||
redundant-keyword-arg,
|
||||
redundant-modulename-xml,
|
||||
reimported,
|
||||
relative-import,
|
||||
return-in-init,
|
||||
rst-syntax-error,
|
||||
sql-injection,
|
||||
too-few-format-args,
|
||||
translation-field,
|
||||
translation-required,
|
||||
unreachable,
|
||||
use-vim-comment,
|
||||
wrong-tabs-instead-of-spaces,
|
||||
xml-syntax-error,
|
||||
attribute-string-redundant,
|
||||
character-not-valid-in-resource-link,
|
||||
consider-merging-classes-inherited,
|
||||
context-overridden,
|
||||
create-user-wo-reset-password,
|
||||
dangerous-filter-wo-user,
|
||||
dangerous-qweb-replace-wo-priority,
|
||||
deprecated-data-xml-node,
|
||||
deprecated-openerp-xml-node,
|
||||
duplicate-po-message-definition,
|
||||
except-pass,
|
||||
file-not-used,
|
||||
invalid-commit,
|
||||
manifest-maintainers-list,
|
||||
missing-newline-extrafiles,
|
||||
missing-readme,
|
||||
missing-return,
|
||||
odoo-addons-relative-import,
|
||||
old-api7-method-defined,
|
||||
po-msgstr-variables,
|
||||
po-syntax-error,
|
||||
renamed-field-parameter,
|
||||
resource-not-exist,
|
||||
str-format-used,
|
||||
test-folder-imported,
|
||||
translation-contains-variable,
|
||||
translation-positional-used,
|
||||
unnecessary-utf8-coding-comment,
|
||||
website-manifest-key-not-valid-uri,
|
||||
xml-attribute-translatable,
|
||||
xml-deprecated-qweb-directive,
|
||||
xml-deprecated-tree-attribute,
|
||||
external-request-timeout,
|
||||
# messages that do not cause the lint step to fail
|
||||
consider-merging-classes-inherited,
|
||||
create-user-wo-reset-password,
|
||||
dangerous-filter-wo-user,
|
||||
deprecated-module,
|
||||
file-not-used,
|
||||
invalid-commit,
|
||||
missing-manifest-dependency,
|
||||
missing-newline-extrafiles,
|
||||
missing-readme,
|
||||
no-utf8-coding-comment,
|
||||
odoo-addons-relative-import,
|
||||
old-api7-method-defined,
|
||||
redefined-builtin,
|
||||
too-complex,
|
||||
unnecessary-utf8-coding-comment
|
||||
|
||||
|
||||
[REPORTS]
|
||||
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
|
||||
output-format=colorized
|
||||
reports=no
|
98
.pylintrc-mandatory
Normal file
98
.pylintrc-mandatory
Normal file
@@ -0,0 +1,98 @@
|
||||
|
||||
[MASTER]
|
||||
load-plugins=pylint_odoo
|
||||
score=n
|
||||
|
||||
[ODOOLINT]
|
||||
readme-template-url="https://github.com/OCA/maintainer-tools/blob/master/template/module/README.rst"
|
||||
manifest-required-authors=Elabore
|
||||
manifest-required-keys=license
|
||||
manifest-deprecated-keys=description,active
|
||||
license-allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
|
||||
valid-odoo-versions=16.0
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
disable=all
|
||||
|
||||
enable=anomalous-backslash-in-string,
|
||||
api-one-deprecated,
|
||||
api-one-multi-together,
|
||||
assignment-from-none,
|
||||
attribute-deprecated,
|
||||
class-camelcase,
|
||||
dangerous-default-value,
|
||||
dangerous-view-replace-wo-priority,
|
||||
development-status-allowed,
|
||||
duplicate-id-csv,
|
||||
duplicate-key,
|
||||
duplicate-xml-fields,
|
||||
duplicate-xml-record-id,
|
||||
eval-referenced,
|
||||
eval-used,
|
||||
incoherent-interpreter-exec-perm,
|
||||
license-allowed,
|
||||
manifest-author-string,
|
||||
manifest-deprecated-key,
|
||||
manifest-required-author,
|
||||
manifest-required-key,
|
||||
manifest-version-format,
|
||||
method-compute,
|
||||
method-inverse,
|
||||
method-required-super,
|
||||
method-search,
|
||||
openerp-exception-warning,
|
||||
pointless-statement,
|
||||
pointless-string-statement,
|
||||
print-used,
|
||||
redundant-keyword-arg,
|
||||
redundant-modulename-xml,
|
||||
reimported,
|
||||
relative-import,
|
||||
return-in-init,
|
||||
rst-syntax-error,
|
||||
sql-injection,
|
||||
too-few-format-args,
|
||||
translation-field,
|
||||
translation-required,
|
||||
unreachable,
|
||||
use-vim-comment,
|
||||
wrong-tabs-instead-of-spaces,
|
||||
xml-syntax-error,
|
||||
attribute-string-redundant,
|
||||
character-not-valid-in-resource-link,
|
||||
consider-merging-classes-inherited,
|
||||
context-overridden,
|
||||
create-user-wo-reset-password,
|
||||
dangerous-filter-wo-user,
|
||||
dangerous-qweb-replace-wo-priority,
|
||||
deprecated-data-xml-node,
|
||||
deprecated-openerp-xml-node,
|
||||
duplicate-po-message-definition,
|
||||
except-pass,
|
||||
file-not-used,
|
||||
invalid-commit,
|
||||
manifest-maintainers-list,
|
||||
missing-newline-extrafiles,
|
||||
missing-readme,
|
||||
missing-return,
|
||||
odoo-addons-relative-import,
|
||||
old-api7-method-defined,
|
||||
po-msgstr-variables,
|
||||
po-syntax-error,
|
||||
renamed-field-parameter,
|
||||
resource-not-exist,
|
||||
str-format-used,
|
||||
test-folder-imported,
|
||||
translation-contains-variable,
|
||||
translation-positional-used,
|
||||
unnecessary-utf8-coding-comment,
|
||||
website-manifest-key-not-valid-uri,
|
||||
xml-attribute-translatable,
|
||||
xml-deprecated-qweb-directive,
|
||||
xml-deprecated-tree-attribute,
|
||||
external-request-timeout
|
||||
|
||||
[REPORTS]
|
||||
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}
|
||||
output-format=colorized
|
||||
reports=no
|
31
.ruff.toml
Normal file
31
.ruff.toml
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
target-version = "py310"
|
||||
fix = true
|
||||
|
||||
[lint]
|
||||
extend-select = [
|
||||
"B",
|
||||
"C90",
|
||||
"E501", # line too long (default 88)
|
||||
"I", # isort
|
||||
"UP", # pyupgrade
|
||||
]
|
||||
extend-safe-fixes = ["UP008"]
|
||||
exclude = ["setup/*"]
|
||||
|
||||
[format]
|
||||
exclude = ["setup/*"]
|
||||
|
||||
[lint.per-file-ignores]
|
||||
"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py
|
||||
"__manifest__.py" = ["B018"] # useless expression
|
||||
|
||||
[lint.isort]
|
||||
section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"]
|
||||
|
||||
[lint.isort.sections]
|
||||
"odoo" = ["odoo"]
|
||||
"odoo-addons" = ["odoo.addons"]
|
||||
|
||||
[lint.mccabe]
|
||||
max-complexity = 16
|
@@ -3,7 +3,7 @@
|
||||
|
||||
{
|
||||
"name": "allow_negative_leave_and_allocation",
|
||||
"version": "16.0.1.0.1",
|
||||
"version": "16.0.1.0.2",
|
||||
"author": "Elabore",
|
||||
"website": "https://elabore.coop",
|
||||
"maintainer": "Elabore",
|
||||
|
@@ -15,5 +15,4 @@ class HrLeaveAllocation(models.Model):
|
||||
"(holiday_type='department' AND department_id IS NOT NULL) or "
|
||||
"(holiday_type='company' AND mode_company_id IS NOT NULL))",
|
||||
"The employee, department, company or employee category of this request is missing. Please make sure that your user login is linked to an employee."),
|
||||
('duration_check', "CHECK((allocation_type != 'regular'))", "The duration must be greater than 0."),
|
||||
]
|
@@ -1 +0,0 @@
|
||||
from . import models
|
@@ -1,27 +0,0 @@
|
||||
{
|
||||
"name": "hr_employee_stats_sheet",
|
||||
"version": "16.0.1.0.1",
|
||||
"description": "Add global sheet for employee stats",
|
||||
"summary": "Add global sheet for employee stats",
|
||||
"author": "Nicolas JEUDY",
|
||||
"website": "https://github.com/Alusage/odoo-hr-addons",
|
||||
"license": "LGPL-3",
|
||||
"category": "Human Resources",
|
||||
"depends": [
|
||||
"allow_negative_leave_and_allocation",
|
||||
"base",
|
||||
"hr",
|
||||
"hr_holidays",
|
||||
"hr_timesheet",
|
||||
"hr_timesheet_sheet",
|
||||
"resource",
|
||||
],
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
"views/hr_employee_stats.xml",
|
||||
"views/hr_timesheet_sheet.xml",
|
||||
"views/res_config_settings_views.xml",
|
||||
],
|
||||
"installable": True,
|
||||
"application": False,
|
||||
}
|
@@ -1,446 +0,0 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_employee_stats_sheet
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-19 14:31+0000\n"
|
||||
"PO-Revision-Date: 2025-06-19 14:31+0000\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_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.res_config_settings_view_form
|
||||
msgid ""
|
||||
"<span class=\"fa fa-lg fa-building\" title=\"Values set here are company-"
|
||||
"specific.\" aria-label=\"Values set here are company-specific.\" "
|
||||
"groups=\"base.group_multi_company\" role=\"img\"/>"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_needaction
|
||||
msgid "Action Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_ids
|
||||
msgid "Activities"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_exception_decoration
|
||||
msgid "Activity Exception Decoration"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_state
|
||||
msgid "Activity State"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_type_icon
|
||||
msgid "Activity Type Icon"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_attachment_count
|
||||
msgid "Attachment Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_res_company__auto_validate_recovery_allocation
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_res_config_settings__auto_validate_recovery_allocation
|
||||
msgid "Auto validate recovery allocation"
|
||||
msgstr "Auto-validation des allocations de récupération"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.res_config_settings_view_form
|
||||
msgid "Choose the coef to apply to recovery hours."
|
||||
msgstr "Indiquer le coefficient multiplicateur à appliquer sur les heures supplémentaires (en %) pour générer les heures de récupération. Par défaut : 25,00%"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.res_config_settings_view_form
|
||||
msgid "Choose the recovery type."
|
||||
msgstr ""
|
||||
"Sélectionner le type de congé utilisé pour générer des allocations de "
|
||||
"récupération. Le type de congé doit accepter les allocations négatives et être pris à l'heure."
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.res_config_settings_view_form
|
||||
msgid "Choose to auto-validate the recovery allocation or not"
|
||||
msgstr "Validation automatique des allocations de récupération"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_res_company__coef
|
||||
msgid "Coef"
|
||||
msgstr "Coefficient"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_res_config_settings__coef
|
||||
msgid "Coef (in %)"
|
||||
msgstr "Coefficient (en %)"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model,name:hr_employee_stats_sheet.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Sociétés"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__company_id
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model,name:hr_employee_stats_sheet.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Paramètres de configuration"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.view_hr_timesheet_sheet_form_inherit
|
||||
msgid "Create recovery allocation"
|
||||
msgstr "Générer une récupération"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__date
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__dayofweek
|
||||
msgid "Day of Week"
|
||||
msgstr "Jour de la semaine"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__department_id
|
||||
msgid "Department"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#. odoo-python
|
||||
#: code:addons/hr_employee_stats_sheet/models/hr_timesheet_sheet.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Employe not defined for the timesheet sheet or recovery type not defined in "
|
||||
"settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__employee_id
|
||||
msgid "Employee"
|
||||
msgstr "Employé·e"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model,name:hr_employee_stats_sheet.model_hr_employee_stats
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_timesheet_sheet__employee_stats_ids
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.view_hr_timesheet_sheet_form_inherit
|
||||
msgid "Employee Stats"
|
||||
msgstr "Statistique des employé·e·s"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.hr_timesheet_sheet_stats_overview_pivot_view
|
||||
msgid "Employee time stats pivot"
|
||||
msgstr "Statistique de l'employé·e"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__failed_message_ids
|
||||
msgid "Failed Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_follower_ids
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__activity_type_icon
|
||||
msgid "Font awesome icon e.g. fa-tasks"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__gap_hours
|
||||
msgid "Gap Hours"
|
||||
msgstr "Heures d'écart"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.view_hr_timesheet_sheet_form_inherit
|
||||
msgid "Generated recovery allocations"
|
||||
msgstr "Allocation(s) de récupération générée(s)"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_exception_icon
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__activity_exception_icon
|
||||
msgid "Icon to indicate an exception activity."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__message_needaction
|
||||
msgid "If checked, new messages require your attention."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__message_has_error
|
||||
msgid "If checked, some messages have a delivery error."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_is_follower
|
||||
msgid "Is Follower"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_res_company__recovery_type_id
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_res_config_settings__recovery_type_id
|
||||
msgid "Leave recovery type"
|
||||
msgstr "Type de congé pour les récupérations"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_main_attachment_id
|
||||
msgid "Main Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_has_error
|
||||
msgid "Message Delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_ids
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__my_activity_date_deadline
|
||||
msgid "My Activity Deadline"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__name
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_calendar_event_id
|
||||
msgid "Next Activity Calendar Event"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_date_deadline
|
||||
msgid "Next Activity Deadline"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_summary
|
||||
msgid "Next Activity Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_type_id
|
||||
msgid "Next Activity Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_needaction_counter
|
||||
msgid "Number of Actions"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__message_has_error_counter
|
||||
msgid "Number of errors"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__message_needaction_counter
|
||||
msgid "Number of messages requiring action"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__message_has_error_counter
|
||||
msgid "Number of messages with delivery error"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__is_public_holiday
|
||||
msgid "Public Holiday"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_timesheet_sheet__recovery_allocation_ids
|
||||
msgid "Recovery Allocations"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__activity_user_id
|
||||
msgid "Responsible User"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__activity_state
|
||||
msgid ""
|
||||
"Status based on activities\n"
|
||||
"Overdue: Due date is already passed\n"
|
||||
"Today: Activity date is today\n"
|
||||
"Planned: Future activities."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_res_config_settings__coef
|
||||
msgid ""
|
||||
"The coef is applied to recovery hoursExample : an employe make 1h overtime, "
|
||||
"if coef is set to 25%, the recovery hours allocated will be 1,25h"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#. odoo-python
|
||||
#: code:addons/hr_employee_stats_sheet/models/hr_timesheet_sheet.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The number of recovery hours exceeds the authorized limit (%s h) by %s hours"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#. odoo-python
|
||||
#: code:addons/hr_employee_stats_sheet/models/hr_timesheet_sheet.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There is a contract starting during the timesheet sheet time period for the "
|
||||
"employee %sPlease create a new timesheet sheet starting from the new "
|
||||
"contract start date"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model,name:hr_employee_stats_sheet.model_hr_leave_allocation
|
||||
msgid "Time Off Allocation"
|
||||
msgstr "Allocation de congés"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__sheet_id
|
||||
msgid "Timesheet"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model,name:hr_employee_stats_sheet.model_hr_timesheet_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_leave_allocation__timesheet_sheet_id
|
||||
msgid "Timesheet Sheet"
|
||||
msgstr "Feuille de temps"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__timesheet_line_ids
|
||||
msgid "Timesheet lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_timesheet_sheet__timesheet_sheet_gap_hours
|
||||
msgid "Timesheet sheet gap hours"
|
||||
msgstr "Heures d'écart sur la période de la feuille de temps"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_timesheet_sheet__timesheet_sheet_recovery_hours
|
||||
msgid "Timesheet sheet recovery hours"
|
||||
msgstr "Heures de récupération sur la période de la feuille de temps"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.view_hr_employee_stats_tree
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__total_hours
|
||||
msgid "Total Hours"
|
||||
msgstr "Heures comptabilisées"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__total_leave_hours
|
||||
msgid "Total Leave Hours"
|
||||
msgstr "Heures de congés"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__total_planned_hours
|
||||
msgid "Total Planning Hours"
|
||||
msgstr "Heures planifiées"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__total_recovery_hours
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_timesheet_sheet__total_recovery_hours
|
||||
msgid "Total Recovery Hours"
|
||||
msgstr "Heures de récupération"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.view_hr_timesheet_sheet_form_inherit
|
||||
msgid "Total gap hours in this timesheet sheet time range"
|
||||
msgstr "Total heures d'écart sur cette période de temps"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_employee_stats_sheet.view_hr_timesheet_sheet_form_inherit
|
||||
msgid "Total recovery hours in this timesheet sheet time range"
|
||||
msgstr ""
|
||||
"Total heures de repos compensateur accumulé sur cette période de temps"
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__activity_exception_decoration
|
||||
msgid "Type of the exception activity on record."
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,field_description:hr_employee_stats_sheet.field_hr_employee_stats__website_message_ids
|
||||
msgid "Website Messages"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_employee_stats_sheet
|
||||
#: model:ir.model.fields,help:hr_employee_stats_sheet.field_hr_employee_stats__website_message_ids
|
||||
msgid "Website communication history"
|
||||
msgstr ""
|
@@ -1,5 +0,0 @@
|
||||
from . import hr_employee_stats
|
||||
from . import hr_timesheet_sheet
|
||||
from . import res_config
|
||||
from . import res_company
|
||||
from . import hr_leave_allocation
|
@@ -1,189 +0,0 @@
|
||||
import logging
|
||||
|
||||
from odoo import api, fields, models
|
||||
from datetime import timedelta
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class HrEmployeeStats(models.Model):
|
||||
_name = "hr.employee.stats"
|
||||
_description = "Employee Stats"
|
||||
_order = "date desc"
|
||||
_inherit = ["mail.thread", "mail.activity.mixin"]
|
||||
|
||||
name = fields.Char("Name", compute="_compute_name", store=True)
|
||||
dayofweek = fields.Integer("Day of Week", compute="_compute_dayofweek")
|
||||
is_public_holiday = fields.Boolean("Public Holiday", compute="_compute_dayofweek")
|
||||
employee_id = fields.Many2one("hr.employee", "Employee", required=True)
|
||||
department_id = fields.Many2one("hr.department", "Department")
|
||||
timesheet_line_ids = fields.One2many(
|
||||
"account.analytic.line",
|
||||
"employee_id",
|
||||
"Timesheet lines",
|
||||
compute="_compute_timesheet_line_ids",
|
||||
)
|
||||
date = fields.Date("Date", required=True)
|
||||
company_id = fields.Many2one(
|
||||
"res.company",
|
||||
"Company",
|
||||
default=lambda self: self.env.company,
|
||||
required=True,
|
||||
)
|
||||
sheet_id = fields.Many2one("hr_timesheet.sheet", "Timesheet")
|
||||
total_hours = fields.Float("Total Hours", compute="_compute_hours")
|
||||
total_planned_hours = fields.Float("Total Planning Hours", compute="_compute_hours")
|
||||
total_leave_hours = fields.Float("Total Leave Hours", compute="_compute_hours")
|
||||
total_recovery_hours = fields.Float(
|
||||
"Total Recovery Hours", compute="_compute_hours"
|
||||
)
|
||||
gap_hours = fields.Float("Gap Hours", compute="_compute_hours")
|
||||
|
||||
def _get_holiday_status_id(self):
|
||||
recovery_type_id = self.env.company.recovery_type_id
|
||||
if recovery_type_id:
|
||||
return recovery_type_id.id
|
||||
else:
|
||||
return False
|
||||
|
||||
def _compute_timesheet_line_ids(self):
|
||||
for stat in self:
|
||||
stat.timesheet_line_ids = self.env["account.analytic.line"].search(
|
||||
[
|
||||
("employee_id", "=", stat.employee_id.id),
|
||||
("date", "=", stat.date),
|
||||
]
|
||||
)
|
||||
|
||||
def _get_intersects(
|
||||
self, datetime1_start, datetime1_end, datetime2_start, datetime2_end
|
||||
):
|
||||
latest_start = max(datetime1_start, datetime2_start)
|
||||
earliest_end = min(datetime1_end, datetime2_end)
|
||||
delta = (earliest_end - latest_start).total_seconds() / 3600
|
||||
return max(0, delta)
|
||||
|
||||
def get_total_hours_domain(self):
|
||||
return [
|
||||
("employee_id", "=", self.employee_id.id),
|
||||
("date", "=", self.date),
|
||||
]
|
||||
|
||||
@api.depends("timesheet_line_ids")
|
||||
def _get_total_hours(self):
|
||||
timesheet_line = self.env["account.analytic.line"]
|
||||
for stat in self:
|
||||
if stat.date and stat.employee_id:
|
||||
timesheet_line_ids = timesheet_line.search(
|
||||
stat.get_total_hours_domain()
|
||||
)
|
||||
total_hours = sum(timesheet_line_ids.mapped("unit_amount"))
|
||||
else:
|
||||
total_hours = 0
|
||||
return total_hours
|
||||
|
||||
def _get_total_planned_hours(self):
|
||||
for stat in self:
|
||||
if stat.employee_id and stat.date and not stat.is_public_holiday:
|
||||
dayofweek = int(stat.date.strftime("%u")) - 1
|
||||
calendar_id = stat.employee_id.resource_calendar_id
|
||||
week_number = stat.date.isocalendar()[1] % 2
|
||||
if calendar_id.two_weeks_calendar:
|
||||
hours = calendar_id.attendance_ids.search(
|
||||
[
|
||||
("dayofweek", "=", dayofweek),
|
||||
("calendar_id", "=", calendar_id.id),
|
||||
("week_type", "=", week_number),
|
||||
]
|
||||
)
|
||||
else:
|
||||
hours = calendar_id.attendance_ids.search(
|
||||
[
|
||||
("dayofweek", "=", dayofweek),
|
||||
("calendar_id", "=", calendar_id.id),
|
||||
]
|
||||
)
|
||||
total_planned_hours = sum(
|
||||
hours.mapped(lambda r: r.hour_to - r.hour_from)
|
||||
)
|
||||
else:
|
||||
total_planned_hours = 0
|
||||
return total_planned_hours
|
||||
|
||||
def _get_total_recovery_hours(self):
|
||||
recovery = self.env["hr.leave"]
|
||||
for stat in self:
|
||||
if stat.date and stat.employee_id and stat._get_holiday_status_id():
|
||||
recovery_ids = recovery.search(
|
||||
[
|
||||
("employee_id", "=", stat.employee_id.id),
|
||||
("request_date_from", ">=", stat.date),
|
||||
("request_date_from", "<=", stat.date),
|
||||
("holiday_status_id", "=", stat._get_holiday_status_id()),
|
||||
]
|
||||
)
|
||||
total_recovery_hours = sum(
|
||||
recovery_ids.mapped("number_of_hours_display")
|
||||
)
|
||||
else:
|
||||
total_recovery_hours = 0
|
||||
return total_recovery_hours
|
||||
|
||||
def _get_total_leave_hours(self):
|
||||
total_leave_hours = 0
|
||||
for stat in self:
|
||||
if stat.date and stat.employee_id:
|
||||
leave_ids = self.env["hr.leave"].search(
|
||||
[
|
||||
("employee_id", "=", stat.employee_id.id),
|
||||
("holiday_status_id", "!=", stat._get_holiday_status_id()),
|
||||
("request_date_from", ">=", stat.date),
|
||||
("request_date_to", "<=", stat.date),
|
||||
]
|
||||
)
|
||||
total_leave_hours = sum(leave_ids.mapped("number_of_hours_display"))
|
||||
return total_leave_hours
|
||||
|
||||
@api.depends("employee_id", "date")
|
||||
def _compute_name(self):
|
||||
for stat in self:
|
||||
stat.name = "%s - %s" % (stat.employee_id.name, stat.date)
|
||||
|
||||
@api.depends("date","employee_id")
|
||||
def _compute_dayofweek(self):
|
||||
for stat in self:
|
||||
if not stat.date:
|
||||
stat.dayofweek = None
|
||||
stat.is_public_holiday = False
|
||||
continue
|
||||
stat.dayofweek = int(stat.date.strftime("%u")) - 1
|
||||
stat.is_public_holiday = bool(stat.sheet_id.employee_id._get_public_holidays(stat.date, stat.date - timedelta(days=1)))
|
||||
|
||||
def _get_gap_hours(self, total_hours, total_recovery_hours, total_leave_hours, total_planned_hours):
|
||||
self.ensure_one()
|
||||
balance = (
|
||||
total_hours
|
||||
+ total_recovery_hours
|
||||
+ total_leave_hours
|
||||
- total_planned_hours
|
||||
)
|
||||
return balance
|
||||
|
||||
@api.depends(
|
||||
"employee_id",
|
||||
"date",
|
||||
"total_hours",
|
||||
"total_planned_hours",
|
||||
"timesheet_line_ids",
|
||||
)
|
||||
def _compute_hours(self):
|
||||
for stat in self:
|
||||
total_hours = stat._get_total_hours()
|
||||
total_recovery_hours = stat._get_total_recovery_hours()
|
||||
total_planned_hours = stat._get_total_planned_hours()
|
||||
total_leave_hours = stat._get_total_leave_hours()
|
||||
stat.total_hours = total_hours
|
||||
stat.total_planned_hours = total_planned_hours
|
||||
stat.gap_hours = stat._get_gap_hours(total_hours, total_recovery_hours, total_leave_hours, total_planned_hours)
|
||||
stat.total_recovery_hours = total_recovery_hours
|
||||
stat.total_leave_hours = total_leave_hours
|
@@ -1,9 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, fields
|
||||
|
||||
class HrLeaveAllocation(models.Model):
|
||||
_inherit = "hr.leave.allocation"
|
||||
|
||||
timesheet_sheet_id = fields.Many2one("hr_timesheet.sheet", string="Timesheet Sheet", readonly=True)
|
@@ -1,265 +0,0 @@
|
||||
from datetime import timedelta
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.addons.resource.models.resource import HOURS_PER_DAY
|
||||
|
||||
|
||||
class HrTimesheetSheet(models.Model):
|
||||
_inherit = "hr_timesheet.sheet"
|
||||
|
||||
employee_stats_ids = fields.One2many(
|
||||
"hr.employee.stats", "sheet_id", "Employee Stats"
|
||||
)
|
||||
timesheet_sheet_gap_hours = fields.Float(
|
||||
"Timesheet sheet gap hours", compute="_compute_hours"
|
||||
)
|
||||
timesheet_sheet_recovery_hours = fields.Float(
|
||||
"Timesheet sheet recovery hours", compute="_compute_hours"
|
||||
)
|
||||
|
||||
recovery_allocation_ids = fields.One2many(
|
||||
'hr.leave.allocation',
|
||||
'timesheet_sheet_id',
|
||||
string='Recovery Allocations',
|
||||
)
|
||||
|
||||
@api.depends("employee_stats_ids.gap_hours", "employee_id")
|
||||
def _compute_hours(self):
|
||||
for sheet in self:
|
||||
sheet.timesheet_sheet_gap_hours = sheet._get_timesheet_sheet_gap_hours()
|
||||
sheet.timesheet_sheet_recovery_hours = sheet._get_timesheet_sheet_recovery_hours()
|
||||
|
||||
def _get_timesheet_sheet_gap_hours(self):
|
||||
for sheet in self:
|
||||
timesheet_sheet_gap_hours = sum(
|
||||
sheet.employee_stats_ids.filtered(
|
||||
lambda stat: stat.date <= fields.Date.today()
|
||||
).mapped("gap_hours")
|
||||
)
|
||||
return timesheet_sheet_gap_hours
|
||||
|
||||
def _get_timesheet_sheet_recovery_hours(self):
|
||||
self.ensure_one()
|
||||
coef = self.env.company.coef
|
||||
# apply coef only if hours to recovery are positive and coef is existing
|
||||
if self.timesheet_sheet_gap_hours > 0 and coef > 0:
|
||||
timesheet_sheet_recovery_hours = self.timesheet_sheet_gap_hours + (
|
||||
self.timesheet_sheet_gap_hours * coef / 100
|
||||
)
|
||||
else:
|
||||
timesheet_sheet_recovery_hours = self.timesheet_sheet_gap_hours
|
||||
return timesheet_sheet_recovery_hours
|
||||
|
||||
def search_and_create_employee_stats(self):
|
||||
for sheet in self:
|
||||
if sheet.employee_id:
|
||||
for day in range((sheet.date_end - sheet.date_start).days + 1):
|
||||
date = sheet.date_start + timedelta(days=day)
|
||||
stats = self.env["hr.employee.stats"].search(
|
||||
[
|
||||
("employee_id", "=", sheet.employee_id.id),
|
||||
("date", "=", date),
|
||||
]
|
||||
)
|
||||
if stats and not stats.sheet_id:
|
||||
stats.write({"sheet_id": sheet.id})
|
||||
if not stats:
|
||||
self.env["hr.employee.stats"].create(
|
||||
{
|
||||
"employee_id": sheet.employee_id.id,
|
||||
"date": date,
|
||||
"sheet_id": sheet.id,
|
||||
"company_id": sheet.company_id.id,
|
||||
}
|
||||
)
|
||||
return True
|
||||
|
||||
@api.model
|
||||
def create(self, vals):
|
||||
res = super().create(vals)
|
||||
res.search_and_create_employee_stats()
|
||||
return res
|
||||
|
||||
def write(self, vals):
|
||||
res = super().write(vals)
|
||||
if "date_end" in vals or "date_start" in vals or "employee_id" in vals:
|
||||
self.search_and_create_employee_stats()
|
||||
return res
|
||||
|
||||
def unlink(self):
|
||||
for sheet in self:
|
||||
sheet.employee_stats_ids.unlink()
|
||||
return super().unlink()
|
||||
|
||||
def action_timesheet_draft(self):
|
||||
res = super().action_timesheet_draft()
|
||||
for sheet in self:
|
||||
# set the state of the recovery allocation to refuse if the timesheet sheet is set to draft
|
||||
if sheet.state == "draft":
|
||||
sheet.recovery_allocation_ids.write({"state": "refuse"})
|
||||
return res
|
||||
|
||||
def _get_contracts_in_progress_during_timesheet_sheet_time_period(self):
|
||||
"""
|
||||
get the contracts which was in progress during the timesheet sheet range time
|
||||
"""
|
||||
contracts = self.env["hr.contract"].search(
|
||||
[
|
||||
("employee_id", "=", self.employee_id.id),
|
||||
("state", "in", ("open", "close")),
|
||||
("date_start", "<=", self.date_end),
|
||||
"|",
|
||||
("date_end", "=", False), # pas de date de fin OU
|
||||
("date_end", ">=", self.date_start), # date de fin après le début
|
||||
],
|
||||
)
|
||||
return contracts
|
||||
|
||||
def _get_calendar_in_progress_during_timesheet_time_period(self):
|
||||
"""
|
||||
get the ressource calendar which was used during the timesheet sheet time period
|
||||
"""
|
||||
#checks if only one contract runs over the duration of the timesheet
|
||||
contracts = self._get_contracts_in_progress_during_timesheet_sheet_time_period()
|
||||
if len(contracts) > 1:
|
||||
# check if a new contract start during timesheet sheet time period. If yes, raise an error
|
||||
raise UserError(
|
||||
_("There is a contract starting during the timesheet sheet time period for the employee %s"
|
||||
"Please create a new timesheet sheet starting from the new contract start date")
|
||||
% self.employee_id.display_name
|
||||
)
|
||||
# get the ressource calendar id according to the work contract
|
||||
elif self.employee_id.resource_calendar_id:
|
||||
return self.employee_id.resource_calendar_id
|
||||
elif self.env.company.resource_calendar_id:
|
||||
return self.env.company.resource_calendar_id
|
||||
return None
|
||||
|
||||
def _get_working_hours_per_week(self):
|
||||
"""
|
||||
Get the weekly working hours for the employee, which is defined by:
|
||||
- the employee's work contract,
|
||||
- or their resource calendar,
|
||||
- or the company's resource calendar,
|
||||
- or the default value of 40 hours per week.
|
||||
:return: limit recovery hours
|
||||
"""
|
||||
# get ressource calendar id used during the timesheet sheet time period
|
||||
ressource_calendar_id = self._get_calendar_in_progress_during_timesheet_time_period()
|
||||
if ressource_calendar_id:
|
||||
resource_calendar_attendance_ids = self.env[
|
||||
"resource.calendar.attendance"
|
||||
].search([("calendar_id", "=", ressource_calendar_id.id)])
|
||||
# calculate working hours per week according to the employee's resource calendar
|
||||
weekly_working_hours = 0
|
||||
for day in resource_calendar_attendance_ids:
|
||||
weekly_working_hours += day.hour_to - day.hour_from
|
||||
return weekly_working_hours
|
||||
return HOURS_PER_DAY * 5
|
||||
|
||||
def _get_working_hours_per_day(self):
|
||||
"""
|
||||
Get the hours per day for the employee according to:
|
||||
- the employee's work contract,
|
||||
- or their resource calendar,
|
||||
- or the company's resource calendar,
|
||||
- or the default value of 8 hours per day.
|
||||
:return: hours per day
|
||||
"""
|
||||
# get ressource calendar id used during the timesheet sheet time period
|
||||
ressource_calendar_id = self._get_calendar_in_progress_during_timesheet_time_period()
|
||||
if ressource_calendar_id:
|
||||
return ressource_calendar_id.hours_per_day
|
||||
return HOURS_PER_DAY
|
||||
|
||||
def _get_max_allowed_recovery_hours(self):
|
||||
"""
|
||||
Get the maximum number of hours beyond which new recovery allowances cannot be created
|
||||
"""
|
||||
return self._get_working_hours_per_week()
|
||||
|
||||
def action_generate_recovery_allocation(self):
|
||||
# check if the user has the right to review the timesheet sheet
|
||||
self.ensure_one()
|
||||
self._check_can_review()
|
||||
recovery_type_id = self.env.company.recovery_type_id
|
||||
employee_id = self.employee_id
|
||||
|
||||
if not employee_id or not recovery_type_id:
|
||||
raise UserError(
|
||||
_("Employe not defined for the timesheet sheet or recovery type not defined in settings")
|
||||
)
|
||||
if recovery_type_id.request_unit != 'hour' or not recovery_type_id.allows_negative:
|
||||
raise UserError(
|
||||
_("The recovery type must be set to 'Hours' and allow negative leaves in the settings")
|
||||
)
|
||||
# check if allocation already exists for this timesheet sheet, if yes, refuse it
|
||||
allocations = (
|
||||
self.env["hr.leave.allocation"]
|
||||
.sudo()
|
||||
.search(
|
||||
[
|
||||
("timesheet_sheet_id.id", "=", self.id),
|
||||
("state", "!=", "refuse"),
|
||||
]
|
||||
)
|
||||
)
|
||||
if allocations:
|
||||
allocations.write({"state": "refuse"})
|
||||
|
||||
# get recovery hours from total gap hours of the timesheet sheet
|
||||
recovery_hours = self._get_timesheet_sheet_recovery_hours()
|
||||
|
||||
# get recovery hours cap
|
||||
max_allowed_recovery_hours = self._get_max_allowed_recovery_hours()
|
||||
if max_allowed_recovery_hours:
|
||||
# find recovery remaining leaves for the employee
|
||||
recovery_type_id = self.env.company.recovery_type_id
|
||||
# get virtual remaining leaves for the employee and the recovery leaves type
|
||||
data_days = recovery_type_id.get_employees_days([employee_id.id])[employee_id.id]
|
||||
total_recovery_type_leaves = data_days.get(recovery_type_id.id,{})
|
||||
total_virtual_remaining_recovery_type_leaves = total_recovery_type_leaves.get('virtual_remaining_leaves', 0)
|
||||
# add the recovery hours to the total remaining leaves recovery type, and check if the limit of recovery hours is exceeded
|
||||
exceeded_hours = total_virtual_remaining_recovery_type_leaves + recovery_hours - max_allowed_recovery_hours
|
||||
# if limit recovery hours is exceeded, don't create a new allocation
|
||||
if exceeded_hours > 0:
|
||||
raise UserError(
|
||||
_(
|
||||
"The number of recovery hours exceeds the authorized limit (%s h) by %s hours"
|
||||
)
|
||||
% (max_allowed_recovery_hours, exceeded_hours)
|
||||
)
|
||||
# convert recovery hours into days
|
||||
recovery_days = recovery_hours / self._get_working_hours_per_day()
|
||||
|
||||
# create an allocation (positive or negative) according to the total gap hours for the timesheet sheet range time
|
||||
new_alloc = self.env["hr.leave.allocation"].create(
|
||||
{
|
||||
"private_name": "Allocation : %s - %s" % (recovery_type_id.name, employee_id.display_name),
|
||||
"holiday_status_id": recovery_type_id.id,
|
||||
"employee_id": employee_id.id,
|
||||
"number_of_days": recovery_days,
|
||||
"timesheet_sheet_id": self.id,
|
||||
"allocation_type": 'accrual',
|
||||
}
|
||||
)
|
||||
|
||||
# set the allocation to validate or not
|
||||
if self.env.company.auto_validate_recovery_allocation:
|
||||
new_alloc.write({"state": "validate"})
|
||||
|
||||
return {
|
||||
"type": "ir.actions.act_window",
|
||||
"res_model": "hr.leave.allocation",
|
||||
"res_id": new_alloc.id,
|
||||
"view_mode": "form",
|
||||
"target": "current",
|
||||
"views": [
|
||||
(
|
||||
self.env.ref("hr_holidays.hr_leave_allocation_view_form").id,
|
||||
"form",
|
||||
)
|
||||
],
|
||||
}
|
||||
|
@@ -1,12 +0,0 @@
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
_inherit = "res.company"
|
||||
|
||||
recovery_type_id = fields.Many2one(
|
||||
"hr.leave.type", string="Leave recovery type"
|
||||
)
|
||||
coef = fields.Float("Coef", default=25)
|
||||
|
||||
auto_validate_recovery_allocation = fields.Boolean("Auto validate recovery allocation", default=True)
|
@@ -1,29 +0,0 @@
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResConfigSettings(models.TransientModel):
|
||||
_inherit = "res.config.settings"
|
||||
|
||||
recovery_type_id = fields.Many2one(
|
||||
"hr.leave.type",
|
||||
related="company_id.recovery_type_id",
|
||||
string="Leave recovery type",
|
||||
readonly=False,
|
||||
domain="[('request_unit', '=', 'hour'), ('allows_negative', '=', True)]",
|
||||
)
|
||||
|
||||
coef = fields.Float(
|
||||
related="company_id.coef",
|
||||
required=True,
|
||||
string="Coef (in %)",
|
||||
domain="[('company_id', '=', company_id)]",
|
||||
readonly=False,
|
||||
help="The coef is applied to recovery hours"
|
||||
"Example : an employe make 1h overtime, if coef is set to 25%, the recovery hours allocated will be 1,25h",
|
||||
)
|
||||
|
||||
auto_validate_recovery_allocation = fields.Boolean(
|
||||
related="company_id.auto_validate_recovery_allocation",
|
||||
readonly=False,
|
||||
domain="[('company_id', '=', company_id)]",
|
||||
)
|
@@ -1,3 +0,0 @@
|
||||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_hr_employee_stats_manager,hr.employee.stats,model_hr_employee_stats,hr_timesheet.group_timesheet_manager,1,1,1,1
|
||||
access_hr_employee_stats_user,hr.employee.stats,model_hr_employee_stats,hr_timesheet.group_hr_timesheet_user,1,0,1,0
|
|
@@ -1 +0,0 @@
|
||||
from . import test_employee_stats
|
@@ -1,254 +0,0 @@
|
||||
from odoo.tests.common import TransactionCase
|
||||
from odoo.tests import tagged
|
||||
from datetime import date, timedelta
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
@tagged("post_install", "-at_install")
|
||||
class TestHrEmployeeStatsRecovery(TransactionCase):
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.user = self.env['res.users'].create({
|
||||
'name': 'Camille',
|
||||
'login': 'camille',
|
||||
})
|
||||
self.recovery_type = self.env['hr.leave.type'].create({
|
||||
'name': 'Recovery',
|
||||
'request_unit': 'hour',
|
||||
'allows_negative': True,
|
||||
})
|
||||
self.employee = self.env['hr.employee'].create({
|
||||
'name': 'Camille',
|
||||
'user_id': self.user.id,
|
||||
})
|
||||
self.base_calendar = self.env['resource.calendar'].create({
|
||||
'name': 'Default Calendar',
|
||||
'attendance_ids': [
|
||||
(0, 0, {'name': 'Monday Morning', 'dayofweek': '0', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Monday Afternoon', 'dayofweek': '0', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Tuesday Morning', 'dayofweek': '1', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Tuesday Afternoon', 'dayofweek': '1', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Wednesday Morning', 'dayofweek': '2', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Wednesday Afternoon', 'dayofweek': '2', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Thursday Morning', 'dayofweek': '3', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Thursday Afternoon', 'dayofweek': '3', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Friday Morning', 'dayofweek': '4', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Friday Afternoon', 'dayofweek': '4', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
],
|
||||
})
|
||||
self.employee.resource_calendar_id = self.base_calendar
|
||||
self.env.company.coef = 25
|
||||
|
||||
def _create_timesheet_sheet(self, start_date):
|
||||
#Crée une feuille de temps pour la semaine du lundi au dimanche
|
||||
return self.env['hr_timesheet.sheet'].create({
|
||||
'employee_id': self.employee.id,
|
||||
'date_start': start_date,
|
||||
'date_end': start_date + timedelta(days=6),
|
||||
})
|
||||
|
||||
def _create_stats(self, start_date, nb_days, unit_amount):
|
||||
# Crée des temps du lundi au vendredi (ou nb_days)
|
||||
for i in range(nb_days):
|
||||
self.env['account.analytic.line'].create({
|
||||
'employee_id': self.employee.id,
|
||||
'date': start_date + timedelta(days=i),
|
||||
'unit_amount': unit_amount,
|
||||
'account_id': 1,
|
||||
'name': 'Work Entry',
|
||||
})
|
||||
# Génère les hr_employee_stats pour chaque jour de la période
|
||||
stat = self.env['hr.employee.stats'].create({
|
||||
'employee_id': self.employee.id,
|
||||
'date': start_date + timedelta(days=i),
|
||||
})
|
||||
stat._compute_hours()
|
||||
yield stat
|
||||
|
||||
def test_invalide_recovery_type(self):
|
||||
start_date = date.today() - timedelta(days=date.today().weekday() + 7) # lundi de la semaine dernière
|
||||
self.recovery_type.request_unit = 'day'
|
||||
self.recovery_type.allows_negative = False
|
||||
timesheet_sheet = self._create_timesheet_sheet(start_date)
|
||||
self.env.company.recovery_type_id = self.recovery_type
|
||||
with self.assertRaises(UserError):
|
||||
timesheet_sheet.action_generate_recovery_allocation()
|
||||
|
||||
def test_no_recovery_hours(self):
|
||||
start_date = date.today() - timedelta(days=date.today().weekday() + 7) # lundi de la semaine dernière
|
||||
timesheet_sheet = self._create_timesheet_sheet(start_date)
|
||||
for stat in self._create_stats(start_date, 5, 7): #créer 5 stats de 7h chacune
|
||||
# Compare les heures de récupération calculées et le calendrier qui prévoit 7h par jour
|
||||
self.assertEqual(stat.total_hours, 7, "total_hours should be 7",) # l'employé a travaillé 7h chaque jour
|
||||
self.assertEqual(stat.total_planned_hours, 7, "total_planned_hours should be 7",) # le calendrier prévoit 7h chaque jour
|
||||
self.assertEqual(stat.total_leave_hours, 0, "total_leave_hours should be 0",) # l'employé n'a pas de congé sur ce jour
|
||||
self.assertEqual(stat.total_recovery_hours, 0, "total_recovery_hours should be 0",) # l'employé n'a pas posé de récupération sur ce jour
|
||||
self.assertEqual(stat.gap_hours, 0, "gap_hours should be 0",) # pas de différence entre les heures travaillées et les heures planifiées
|
||||
# La feuille de temps sur cette période doit compter 0h de déficit et 0h de récupération
|
||||
self.assertEqual(timesheet_sheet.timesheet_sheet_gap_hours, 0, "timesheet_sheet_gap_hours should be 0",)
|
||||
self.assertEqual(timesheet_sheet.timesheet_sheet_recovery_hours, 0, "timesheet_sheet_recovery_hours should be 0",)
|
||||
|
||||
def test_positive_recovery_hours(self):
|
||||
start_date = date.today() - timedelta(days=date.today().weekday() + 7) # lundi de la semaine dernière
|
||||
timesheet_sheet = self._create_timesheet_sheet(start_date)
|
||||
for stat in self._create_stats(start_date, 5, 8): #créer 5 stats de 8h chacune
|
||||
# Compare les heures de récupération calculées et le calendrier qui prévoit 7h par jour
|
||||
self.assertEqual(stat.total_hours, 8, "total_hours should be 8",) # l'employé a travaillé 8h chaque jour
|
||||
self.assertEqual(stat.total_planned_hours, 7, "total_planned_hours should be 7",) # le calendrier prévoit 7h chaque jour
|
||||
self.assertEqual(stat.total_leave_hours, 0, "total_leave_hours should be 0",) # l'employé n'a pas de congé sur ce jour
|
||||
self.assertEqual(stat.total_recovery_hours, 0, "total_recovery_hours should be 0",) # l'employé n'a pas posé de récupération sur ce jour
|
||||
self.assertEqual(stat.gap_hours, 1, "gap_hours should be 1",) # l'employée a travaillé une heure de plus que prévu
|
||||
# La feuille de temps doit compter 5h d'heure sup soit 6,25h de récupération avec la majoration de 25%
|
||||
self.assertEqual(timesheet_sheet.timesheet_sheet_gap_hours, 5, "timesheet_sheet_gap_hours should be 5",)
|
||||
self.assertEqual(timesheet_sheet.timesheet_sheet_recovery_hours, 6.25, "timesheet_sheet_recovery_hours should be 6,25",)
|
||||
# générer l'allocation de récupération depuis la feuille de temps
|
||||
timesheet_sheet.action_generate_recovery_allocation()
|
||||
recovery_allocation = self.env["hr.leave.allocation"].search([("timesheet_sheet_id","=",timesheet_sheet.id)])
|
||||
self.assertEqual(len(recovery_allocation), 1, "There should be one recovery")
|
||||
self.assertEqual(recovery_allocation.number_of_days,0.78125, "The recovery allocation should be for 6.25h/8h = 0.78125 day")
|
||||
|
||||
def test_negative_recovery_hours(self):
|
||||
start_date = date.today() - timedelta(days=date.today().weekday() + 7) # lundi de la semaine dernière
|
||||
timesheet_sheet = self._create_timesheet_sheet(start_date)
|
||||
for stat in self._create_stats(start_date, 5, 6): #créer 5 stats de 6h chacune
|
||||
# Compare les heures de récupération calculées et le calendrier qui prévoit 7h par jour
|
||||
self.assertEqual(stat.total_hours, 6, "total_hours should be 6",) # l'employé a travaillé 6h chaque jour
|
||||
self.assertEqual(stat.total_planned_hours, 7, "total_planned_hours should be 7",) # le calendrier prévoit 7h chaque jour
|
||||
self.assertEqual(stat.total_leave_hours, 0, "total_leave_hours should be 0",) # l'employé n'a pas de congé sur ce jour
|
||||
self.assertEqual(stat.total_recovery_hours, 0, "total_recovery_hours should be 0",) # l'employé n'a pas posé de récupération sur ce jour
|
||||
self.assertEqual(stat.gap_hours, -1, "gap_hours should be -1",) # l'employée a travaillé une heure de moins que prévu
|
||||
# La feuille de temps doit compter -5h de déficit et -5h de récupération
|
||||
self.assertEqual(timesheet_sheet.timesheet_sheet_gap_hours, -5, "timesheet_sheet_gap_hours should be -5",) # l'employé a travaillé -5h au total sur la semaine
|
||||
self.assertEqual(timesheet_sheet.timesheet_sheet_recovery_hours, -5, "timesheet_sheet_recovery_hours should be -5",) # -5h sera le montant de l'allocation de récupération (pas de coef appliqué pour les déficites d'heures)
|
||||
# générer l'allocation de récupération depuis la feuille de temps
|
||||
timesheet_sheet.action_generate_recovery_allocation()
|
||||
recovery_allocation = self.env["hr.leave.allocation"].search([("timesheet_sheet_id","=",timesheet_sheet.id)])
|
||||
self.assertEqual(len(recovery_allocation), 1, "There should be one recovery")
|
||||
self.assertEqual(recovery_allocation.number_of_days, -0.625, "The recovery allocation should be for -5/8 hours = ")
|
||||
|
||||
def test_recovery_hours_part_time_employee(self):
|
||||
part_time_calendar = self.env['resource.calendar'].create({
|
||||
'name': 'Part Time Calendar',
|
||||
'attendance_ids': [
|
||||
(0, 0, {'name': 'Monday Morning', 'dayofweek': '0', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Monday Afternoon', 'dayofweek': '0', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Tuesday Morning', 'dayofweek': '1', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Tuesday Afternoon', 'dayofweek': '1', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Wednesday Morning', 'dayofweek': '2', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Wednesday Afternoon', 'dayofweek': '2', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Thursday Morning', 'dayofweek': '3', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Thursday Afternoon', 'dayofweek': '3', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
],
|
||||
})
|
||||
self.employee.resource_calendar_id = part_time_calendar.id
|
||||
|
||||
start_date = date.today() - timedelta(days=date.today().weekday() + 7) # lundi de la semaine dernière
|
||||
timesheet_sheet = self._create_timesheet_sheet(start_date)
|
||||
for stat in self._create_stats(start_date, 4, 8): #créer 4 stats de 8h chacune
|
||||
# Compare les heures de récupération calculées et le calendrier qui prévoit 7h par jour pendant 4 jours
|
||||
self.assertEqual(stat.total_hours, 8, "total_hours should be 8",) # l'employé a travaillé 6h chaque jour
|
||||
self.assertEqual(stat.total_planned_hours, 7, "total_planned_hours should be 7",) # le calendrier prévoit 7h chaque jour
|
||||
self.assertEqual(stat.total_leave_hours, 0, "total_leave_hours should be 0",) # l'employé n'a pas de congé sur ce jour
|
||||
self.assertEqual(stat.total_recovery_hours, 0, "total_recovery_hours should be 0",) # l'employé n'a pas posé de récupération sur ce jour
|
||||
self.assertEqual(stat.gap_hours, 1, "gap_hours should be 1",) # l'employée a travaillé une heure de moins que prévu
|
||||
# La feuille de temps doit compter 4h d'heure sup soit 5h de récupération avec la majoration de 25%
|
||||
self.assertEqual(timesheet_sheet.timesheet_sheet_gap_hours, 4, "timesheet_sheet_gap_hours should be 4",) # l'employé a travaillé supplémentaire 4h au total sur la semaine
|
||||
self.assertEqual(timesheet_sheet.timesheet_sheet_recovery_hours, 5, "timesheet_sheet_recovery_hours should be 5",) # 5h sera le montant de l'allocation de récupération (coef de 25% de majoration)
|
||||
|
||||
def test_recovery_hours_change_contract(self):
|
||||
part_time_calendar = self.env['resource.calendar'].create({
|
||||
'name': 'Part Time Calendar',
|
||||
'attendance_ids': [
|
||||
(0, 0, {'name': 'Monday Morning', 'dayofweek': '0', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Monday Afternoon', 'dayofweek': '0', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Tuesday Morning', 'dayofweek': '1', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Tuesday Afternoon', 'dayofweek': '1', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Wednesday Morning', 'dayofweek': '2', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Wednesday Afternoon', 'dayofweek': '2', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Thursday Morning', 'dayofweek': '3', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Thursday Afternoon', 'dayofweek': '3', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
],
|
||||
})
|
||||
#create one contract ending on wednesday and one other starting on thursday
|
||||
self.env['hr.contract'].create({
|
||||
'name': 'Contract 1',
|
||||
'employee_id': self.employee.id,
|
||||
'date_start': date.today() - timedelta(days=300), # date de début factice
|
||||
'date_end': date.today() - timedelta(days= date.today().weekday() + 5), # date de fin le mercredi de la semaine dernière
|
||||
'resource_calendar_id': self.base_calendar.id,
|
||||
'wage': 2000,
|
||||
'state': 'close',
|
||||
})
|
||||
self.env['hr.contract'].create({
|
||||
'name': 'Contract 2',
|
||||
'employee_id': self.employee.id,
|
||||
'state': 'open',
|
||||
'date_start': date.today() - timedelta(days= date.today().weekday() + 4), # date de début le jeudi de la semaine dernière
|
||||
'date_end': False,
|
||||
'resource_calendar_id': self.base_calendar.id,
|
||||
'wage': 1500,
|
||||
})
|
||||
self.employee.resource_calendar_id = part_time_calendar.id
|
||||
start_date = date.today() - timedelta(days=date.today().weekday() + 7) # lundi de la semaine dernière
|
||||
#create a timesheet with period including the change of contract
|
||||
timesheet_sheet = self._create_timesheet_sheet(start_date)
|
||||
#the create of recovery allocation should raise an error
|
||||
with self.assertRaises(UserError):
|
||||
timesheet_sheet.action_generate_recovery_allocation()
|
||||
|
||||
def test_recovery_hours_change_contract_sucess(self):
|
||||
part_time_calendar = self.env['resource.calendar'].create({
|
||||
'name': 'Part Time Calendar',
|
||||
'attendance_ids': [
|
||||
(0, 0, {'name': 'Monday Morning', 'dayofweek': '0', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Monday Afternoon', 'dayofweek': '0', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Tuesday Morning', 'dayofweek': '1', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Tuesday Afternoon', 'dayofweek': '1', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Wednesday Morning', 'dayofweek': '2', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Wednesday Afternoon', 'dayofweek': '2', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
(0, 0, {'name': 'Thursday Morning', 'dayofweek': '3', 'hour_from': 9, 'hour_to': 12, 'day_period': 'morning'}),
|
||||
(0, 0, {'name': 'Thursday Afternoon', 'dayofweek': '3', 'hour_from': 13, 'hour_to': 17, 'day_period': 'afternoon'}),
|
||||
],
|
||||
})
|
||||
#create one contract ending on wednesday and one other starting on thursday
|
||||
self.env['hr.contract'].create({
|
||||
'name': 'Contract 1',
|
||||
'employee_id': self.employee.id,
|
||||
'date_start': date(2025,8,18),
|
||||
'date_end': date(2025,8,24),
|
||||
'resource_calendar_id': self.base_calendar.id,
|
||||
'wage': 2000,
|
||||
'state': 'close',
|
||||
})
|
||||
self.env['hr.contract'].create({
|
||||
'name': 'Contract 2',
|
||||
'employee_id': self.employee.id,
|
||||
'state': 'open',
|
||||
'date_start': date(2025,8,25),
|
||||
'date_end': date(2025,8,31),
|
||||
'resource_calendar_id': part_time_calendar.id,
|
||||
'wage': 1500,
|
||||
})
|
||||
self.employee.resource_calendar_id = part_time_calendar.id
|
||||
#create a timesheet with period including the change of contract
|
||||
timesheet_sheet_1 = self._create_timesheet_sheet(date(2025,8,18))
|
||||
timesheet_sheet_2 = self._create_timesheet_sheet(date(2025,8,25))
|
||||
|
||||
timesheet_sheet_1.action_generate_recovery_allocation()
|
||||
timesheet_sheet_2.action_generate_recovery_allocation()
|
||||
|
||||
recovery_allocation = self.env["hr.leave.allocation"].search([("timesheet_sheet_id","=",timesheet_sheet_1.id)])
|
||||
self.assertEqual(len(recovery_allocation), 1, "There should be one recovery")
|
||||
|
||||
recovery_allocation = self.env["hr.leave.allocation"].search([("timesheet_sheet_id","=",timesheet_sheet_2.id)])
|
||||
self.assertEqual(len(recovery_allocation), 1, "There should be one recovery")
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@@ -1,20 +0,0 @@
|
||||
<odoo>
|
||||
<record id="view_hr_employee_stats_tree" model="ir.ui.view">
|
||||
<field name="name">hr.employee.stats.tree</field>
|
||||
<field name="model">hr.employee.stats</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree name="Employee time stats" editable="top" decoration-muted="dayofweek in [5,6] or is_public_holiday">
|
||||
<field name="name"/>
|
||||
<field name="date"/>
|
||||
<field name="employee_id"/>
|
||||
<field name="total_hours" widget="float_time" sum="Total"/>
|
||||
<field name="total_leave_hours" widget="float_time" sum="Total"/>
|
||||
<field name="total_recovery_hours" widget="float_time" sum="Total"/>
|
||||
<field name="total_planned_hours" widget="float_time" sum="Total"/>
|
||||
<field name="gap_hours" widget="float_time" sum="Total"/>
|
||||
<field name="dayofweek" invisible="1"/>
|
||||
<field name="is_public_holiday" invisible="1"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
@@ -1,42 +0,0 @@
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="view_hr_timesheet_sheet_form_inherit" model="ir.ui.view">
|
||||
<field name="name">hr.timesheet.sheet.form.inherit</field>
|
||||
<field name="model">hr_timesheet.sheet</field>
|
||||
<field name="inherit_id" ref="hr_timesheet_sheet.hr_timesheet_sheet_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<group name="dates" position="inside">
|
||||
<field name="timesheet_sheet_gap_hours" string="Total gap hours in this timesheet sheet time range" widget="float_time"/>
|
||||
<field name="timesheet_sheet_recovery_hours" string="Total recovery hours in this timesheet sheet time range" widget="float_time" style="font-weight: bold"/>
|
||||
<button
|
||||
colspan="2"
|
||||
class="oe_highlight"
|
||||
name="action_generate_recovery_allocation"
|
||||
string='Create recovery allocation'
|
||||
type='object'
|
||||
attrs="{'invisible': ['|', ('can_review', '=', False),
|
||||
('state', '!=', 'done'),
|
||||
('timesheet_sheet_recovery_hours', '=', 0)]}"
|
||||
/>
|
||||
</group>
|
||||
<xpath expr="//notebook" position="inside">
|
||||
<page string="Employee Stats">
|
||||
<field name="employee_stats_ids" no_label="1" readonly="1"/>
|
||||
</page>
|
||||
<page string="Generated recovery allocations">
|
||||
<field name="recovery_allocation_ids" no_label="1" readonly="1"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
<record id="hr_timesheet_sheet_stats_overview_pivot_view" model="ir.ui.view">
|
||||
<field name="name">hr.timesheet.sheet.stats.overview.pivot.view</field>
|
||||
<field name="model">hr_timesheet.sheet</field>
|
||||
<field name="arch" type="xml">
|
||||
<pivot string="Employee time stats pivot" sample="1">
|
||||
<field name="employee_id" type="row"/>
|
||||
</pivot>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
@@ -1,60 +0,0 @@
|
||||
<odoo>
|
||||
<record id="res_config_settings_view_form" model="ir.ui.view">
|
||||
<field name="name">res.config.settings.view.form.inherit.hr.timesheet</field>
|
||||
<field name="model">res.config.settings</field>
|
||||
<field name="priority" eval="55" />
|
||||
<field name="inherit_id" ref="hr_timesheet.res_config_settings_view_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@name='hr_timesheet_sheet']" position="inside">
|
||||
<div class="col-xs-12 col-md-6 o_setting_box">
|
||||
<div class="o_setting_right_pane">
|
||||
<label for="recovery_type_id"/>
|
||||
<span
|
||||
class="fa fa-lg fa-building"
|
||||
title="Values set here are company-specific."
|
||||
aria-label="Values set here are company-specific."
|
||||
groups="base.group_multi_company"
|
||||
role="img"
|
||||
/>
|
||||
<div class="text-muted">
|
||||
Choose the recovery type.
|
||||
</div>
|
||||
<div class="content-group">
|
||||
<div class="mb16">
|
||||
<field
|
||||
name="recovery_type_id"
|
||||
class="o_light_label"
|
||||
widget="selection"
|
||||
required="1"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-muted">
|
||||
Choose the coef to apply to recovery hours.
|
||||
</div >
|
||||
<div class="content-group">
|
||||
<div class="mb16">
|
||||
<field
|
||||
name="coef"
|
||||
class="o_light_label"
|
||||
widget="float"
|
||||
/> %
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-muted">
|
||||
Choose to auto-validate the recovery allocation or not
|
||||
</div>
|
||||
<div class="content-group">
|
||||
<div class="mb16">
|
||||
<field
|
||||
name="auto_validate_recovery_allocation"
|
||||
widget="boolean_toggle"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
@@ -1,23 +1,25 @@
|
||||
=======================
|
||||
hr_employee_stats_sheet
|
||||
=======================
|
||||
============================
|
||||
hr_timesheet_sheet_usability
|
||||
============================
|
||||
|
||||
Summary
|
||||
=======
|
||||
|
||||
Add global sheet for employee stats
|
||||
Various changes to improve the usability of hr_timesheet_sheet application
|
||||
|
||||
Description
|
||||
===========
|
||||
|
||||
This module add a global sheet stats in timesheet sheet
|
||||
It compare planified working hours (from calendar ressouce) and worked hours form timesheets
|
||||
This module changes :
|
||||
- menu, menu order, menu access right
|
||||
- french translation
|
||||
of hr_timesheet_sheet module
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
Use Odoo normal module installation procedure to install
|
||||
``hr_employee_stats_sheet``.
|
||||
``hr_timesheet_sheet_usability``.
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
@@ -38,14 +40,12 @@ Credits
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* `Alusage : Nicolas JEUDY`
|
||||
* `Elabore <mailto:laetitia.dacosta@elabore.coop>`
|
||||
* `Elabore <mailto:contact@elabore.coop>`
|
||||
|
||||
Funders
|
||||
-------
|
||||
|
||||
The development of this module has been financially supported by:
|
||||
* Alusage (https://github.com/Alusage)
|
||||
* Elabore (https://elabore.coop)
|
||||
|
||||
|
0
hr_timesheet_sheet_usability/__init__.py
Executable file
0
hr_timesheet_sheet_usability/__init__.py
Executable file
19
hr_timesheet_sheet_usability/__manifest__.py
Executable file
19
hr_timesheet_sheet_usability/__manifest__.py
Executable file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "hr_timesheet_sheet_usability",
|
||||
"version": "16.0.1.0.0",
|
||||
"description": "Various changes to improve the usability of hr_timesheet_sheet application",
|
||||
"summary": "",
|
||||
"author": "Elabore",
|
||||
"website": "https://github.com/Alusage/odoo-hr-addons",
|
||||
"license": "LGPL-3",
|
||||
"category": "Human Resources",
|
||||
"depends": [
|
||||
"base","hr_timesheet","hr_timesheet_sheet",
|
||||
],
|
||||
"data": [
|
||||
"views/hr_timesheet_sheet_menu.xml",
|
||||
"views/account_analytic_line_views.xml",
|
||||
],
|
||||
"installable": True,
|
||||
"application": False,
|
||||
}
|
80
hr_timesheet_sheet_usability/i18n/fr.po
Normal file
80
hr_timesheet_sheet_usability/i18n/fr.po
Normal file
@@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-06-19 09:03+0000\n"
|
||||
"PO-Revision-Date: 2025-06-19 09:03+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: hr_timesheet
|
||||
#: model:ir.actions.act_window,name:hr_timesheet.timesheet_action_all
|
||||
#: model:ir.ui.menu,name:hr_timesheet.timesheet_menu_activity_all
|
||||
msgid "All Timesheets"
|
||||
msgstr "Tous les temps"
|
||||
|
||||
#. module: hr_timesheet
|
||||
#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line
|
||||
#: model:ir.ui.menu,name:hr_timesheet.timesheet_menu_activity_mine
|
||||
#: model:ir.ui.menu,name:hr_timesheet.timesheet_menu_activity_user
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.hr_timesheet_line_search
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.hr_timesheet_report_search
|
||||
msgid "My Timesheets"
|
||||
msgstr "Mes temps"
|
||||
|
||||
#. module: hr_timesheet
|
||||
#. odoo-python
|
||||
#: code:addons/hr_timesheet/models/hr_timesheet.py:0
|
||||
#: code:addons/hr_timesheet/models/project.py:0
|
||||
#: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_by_project
|
||||
#: model:ir.actions.act_window,name:hr_timesheet.timesheet_action_from_employee
|
||||
#: model:ir.actions.report,name:hr_timesheet.timesheet_report
|
||||
#: model:ir.actions.report,name:hr_timesheet.timesheet_report_project
|
||||
#: model:ir.actions.report,name:hr_timesheet.timesheet_report_task
|
||||
#: model:ir.actions.report,name:hr_timesheet.timesheet_report_task_timesheets
|
||||
#: model:ir.model.fields,field_description:hr_timesheet.field_project_project__allow_timesheets
|
||||
#: model:ir.model.fields,field_description:hr_timesheet.field_project_task__timesheet_ids
|
||||
#: model:ir.ui.menu,name:hr_timesheet.menu_hr_time_tracking
|
||||
#: model:ir.ui.menu,name:hr_timesheet.menu_timesheets_reports_timesheet
|
||||
#: model:ir.ui.menu,name:hr_timesheet.timesheet_menu_root
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.hr_department_view_kanban
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.portal_layout
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.portal_my_home_timesheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.portal_my_task
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.portal_my_timesheets
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.project_invoice_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.project_project_view_form_simplified_inherit_timesheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.project_sharing_inherit_project_task_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.report_timesheet
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.report_timesheet_task
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.res_config_settings_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.timesheet_project_task_page
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.timesheets_analysis_report_graph_employee
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.timesheets_analysis_report_graph_project
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.timesheets_analysis_report_graph_task
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.view_hr_timesheet_line_graph
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.view_hr_timesheet_line_pivot
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.view_project_kanban_inherited
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet.view_task_form2_inherited
|
||||
#, python-format
|
||||
msgid "Timesheets"
|
||||
msgstr "Temps"
|
||||
|
||||
#. module: hr_timesheet_sheet
|
||||
#: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_all_timesheets
|
||||
#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_all_timesheets
|
||||
msgid "All Timesheet Sheets"
|
||||
msgstr "Toutes les feuilles de temps"
|
||||
|
||||
#. module: hr_timesheet_sheet
|
||||
#: model:ir.ui.menu,name:hr_timesheet_sheet.menu_hr_my_timesheets
|
||||
msgid "My Timesheets"
|
||||
msgstr "Feuilles de temps"
|
@@ -0,0 +1,26 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * hr_timesheet_sheet_usability
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-15 08:39+0000\n"
|
||||
"PO-Revision-Date: 2025-09-15 08:39+0000\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_sheet_usability
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_sheet_usability.view_hr_timesheet_sheet_group_by_inherit
|
||||
msgid "Date de départ"
|
||||
msgstr ""
|
||||
|
||||
#. module: hr_timesheet_sheet_usability
|
||||
#: model_terms:ir.ui.view,arch_db:hr_timesheet_sheet_usability.view_hr_timesheet_sheet_group_by_inherit
|
||||
msgid "Timesheet by Date"
|
||||
msgstr ""
|
@@ -0,0 +1,11 @@
|
||||
<odoo>
|
||||
<!-- Hide menu "Timesheets to Submit" -->
|
||||
<record id="hr_timesheet_sheet.menu_act_hr_timesheet_line_to_submit" model="ir.ui.menu">
|
||||
<field name="active">False</field>
|
||||
</record>
|
||||
|
||||
<!-- Hide menu "My Timesheets to Submit" -->
|
||||
<record id="hr_timesheet_sheet.menu_act_hr_timesheet_line_to_submit_my" model="ir.ui.menu">
|
||||
<field name="active">False</field>
|
||||
</record>
|
||||
</odoo>
|
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
<!-- add date group by date in timesheet sheet view -->
|
||||
<record id="view_hr_timesheet_sheet_group_by_inherit" model="ir.ui.view">
|
||||
<field name="name">hr_timesheet.sheet.filter</field>
|
||||
<field name="model">hr_timesheet.sheet</field>
|
||||
<field
|
||||
name="inherit_id"
|
||||
ref="hr_timesheet_sheet.view_hr_timesheet_sheet_filter"
|
||||
/>
|
||||
<field name="arch" type="xml">
|
||||
<group position="inside">
|
||||
<filter string="Date de départ" name="groupby_date" domain="[]" context="{'group_by': 'date_start'}" help="Timesheet by Date"/>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Make menu "My Timesheets to Submit" visible only for managers -->
|
||||
<menuitem
|
||||
id="hr_timesheet_sheet.menu_hr_to_review"
|
||||
groups="hr_timesheet.group_timesheet_manager"
|
||||
name="To Review"
|
||||
parent="hr_timesheet.timesheet_menu_root"
|
||||
sequence="7"
|
||||
/>
|
||||
<menuitem
|
||||
id="hr_timesheet_sheet.menu_act_hr_timesheet_sheet_to_review"
|
||||
groups="hr_timesheet.group_timesheet_manager"
|
||||
action="hr_timesheet_sheet.act_hr_timesheet_sheet_to_review"
|
||||
parent="hr_timesheet_sheet.menu_hr_to_review"
|
||||
sequence="11"
|
||||
/>
|
||||
|
||||
<!-- Move All timesheets menu under Timesheet menu -->
|
||||
<menuitem
|
||||
id="hr_timesheet_sheet.menu_act_hr_timesheet_sheet_all_timesheets"
|
||||
parent="hr_timesheet_sheet.menu_hr_my_timesheets"
|
||||
/>
|
||||
|
||||
<!-- Cancel timesheet line menus move and restore their original placement from hr_timesheet module -->
|
||||
<record model="ir.ui.menu" id="hr_timesheet.timesheet_menu_activity_mine">
|
||||
<field name="parent_id" ref="hr_timesheet.menu_hr_time_tracking" />
|
||||
</record>
|
||||
<record model="ir.ui.menu" id="hr_timesheet.timesheet_menu_activity_user">
|
||||
<field name="parent_id" ref="hr_timesheet.timesheet_menu_root" />
|
||||
</record>
|
||||
</odoo>
|
Reference in New Issue
Block a user