Compare commits
55 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a7814ad1a | ||
|
|
a97bd8ecca | ||
|
|
8ab14340f1 | ||
|
|
9192465ca2 | ||
|
|
27c7904e28 | ||
| 763fca0d30 | |||
| b1cfdeba30 | |||
| af5627b3ff | |||
| 558274c22b | |||
| 6af5442cec | |||
| 17072b681c | |||
|
|
be81194749 | ||
| 38b2adc06b | |||
| 1da31fa1c2 | |||
| 204a6a7647 | |||
| 224f69c104 | |||
|
|
6e31ae3522 | ||
|
|
872b889a88 | ||
|
|
18d589848d | ||
|
|
a863988e4b | ||
|
|
93a6768716 | ||
|
|
16c1da3c42 | ||
|
|
792c3d602a | ||
|
|
a06cd29014 | ||
|
|
e9ec522405 | ||
|
|
6dc94c02fa | ||
|
|
0e36b3d9e3 | ||
|
|
a240b6cf71 | ||
|
|
2cd17ce8ef | ||
|
|
eb85069ff8 | ||
|
|
38e12ee2ed | ||
|
|
15b21771dd | ||
|
|
e6595ec6f7 | ||
| 45e38de4ff | |||
| 1a342d3b8b | |||
| 0bff01ad76 | |||
| cd884b967e | |||
| 22a703d9bd | |||
|
|
250ef5b5ec | ||
|
|
77b26fd755 | ||
|
|
5a30d61fee | ||
|
|
da60ebb310 | ||
|
|
c3cc59cec7 | ||
|
|
cd663ec6e5 | ||
|
|
34dfc13936 | ||
|
|
355e77fc70 | ||
|
|
139e451d0c | ||
|
|
11d99ae6e0 | ||
|
|
2bd9234fa1 | ||
|
|
892a526df8 | ||
|
|
87bdd51043 | ||
|
|
309f8d4510 | ||
|
|
56f757505b | ||
|
|
1f8baa73d1 | ||
|
|
c4ef88d3d4 |
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
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
=================
|
|
||||||
project_assignees
|
|
||||||
=================
|
|
||||||
|
|
||||||
Add multiple assignees field to project task
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Use Odoo normal procedure to install add-ons to install
|
|
||||||
``project_assignees``.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website
|
|
||||||
<https://github.com/elabore-coop/project-tools/issues>`_. In case of
|
|
||||||
trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Images
|
|
||||||
------
|
|
||||||
* Elabore: `Icon <https://elabore.coop/web/image/res.company/1/logo?unique=f3db262>`_.
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
* Stéphan Sainléger <https://github.com/stephansainleger>
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Elabore (https://elabore.coop)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
|
|
||||||
This module is maintained by Elabore.
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from . import models
|
|
||||||
@@ -1,94 +0,0 @@
|
|||||||
# Copyright 2022 Stéphan Sainléger (Elabore)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
|
|
||||||
{
|
|
||||||
"name": "project_assignees",
|
|
||||||
"version": "12.0.1.0.0",
|
|
||||||
"author": "Elabore",
|
|
||||||
"website": "https://github.com/elabore-coop/project-tools",
|
|
||||||
"maintainer": "Stéphan Sainléger",
|
|
||||||
"license": "AGPL-3",
|
|
||||||
"category": "Tools",
|
|
||||||
"summary": "Add multiple assignees field to project task",
|
|
||||||
"description": """
|
|
||||||
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
||||||
:alt: License: AGPL-3
|
|
||||||
=================
|
|
||||||
project_assignees
|
|
||||||
=================
|
|
||||||
|
|
||||||
Add multiple assignees field to project task.
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Install ``project_assignees``, all dependencies will be installed by default.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
None yet.
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website
|
|
||||||
<https://github.com/elabore-coop/project-tools/issues>`_. In case of
|
|
||||||
trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Images
|
|
||||||
------
|
|
||||||
|
|
||||||
* Elabore: `Icon <https://elabore.coop/web/image/res.company/1/logo?unique=f3db262>`_.
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
|
|
||||||
* Stéphan Sainléger <https://github.com/stephansainleger>
|
|
||||||
* Valentin Lab <valentin.lab@kalysto.org>
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Elabore (https://elabore.coop)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
This module is maintained by Elabore.
|
|
||||||
|
|
||||||
""",
|
|
||||||
# any module necessary for this one to work correctly
|
|
||||||
"depends": [
|
|
||||||
"base",
|
|
||||||
"project",
|
|
||||||
],
|
|
||||||
"qweb": [
|
|
||||||
# "static/src/xml/*.xml",
|
|
||||||
],
|
|
||||||
"external_dependencies": {
|
|
||||||
"python": [],
|
|
||||||
},
|
|
||||||
# always loaded
|
|
||||||
"data": [
|
|
||||||
"data/project_assignees_data.xml",
|
|
||||||
"views/project_task.xml",
|
|
||||||
"views/portal_template.xml",
|
|
||||||
],
|
|
||||||
# only loaded in demonstration mode
|
|
||||||
"demo": [],
|
|
||||||
"js": [],
|
|
||||||
"css": [],
|
|
||||||
"installable": True,
|
|
||||||
# Install this module automatically if all dependency have been previously
|
|
||||||
# and independently installed. Used for synergetic or glue modules.
|
|
||||||
"auto_install": False,
|
|
||||||
"application": False,
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<odoo>
|
|
||||||
<data noupdate="1">
|
|
||||||
<record id="mt_task_assignees" model="mail.message.subtype">
|
|
||||||
<field name="name">Assignees change</field>
|
|
||||||
<field name="res_model">project.task</field>
|
|
||||||
<field name="default" eval="False"/>
|
|
||||||
<field name="description">Assignees changed</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="mt_project_task_assignees" model="mail.message.subtype">
|
|
||||||
<field name="name">Task Assignees Changed</field>
|
|
||||||
<field name="sequence">13</field>
|
|
||||||
<field name="res_model">project.project</field>
|
|
||||||
<field name="default" eval="False"/>
|
|
||||||
<field name="parent_id" eval="ref('mt_task_assignees')"/>
|
|
||||||
<field name="relation_field">project_id</field>
|
|
||||||
</record>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
<!-- Template email user assigned to a task -->
|
|
||||||
<data>
|
|
||||||
<template id="message_user_assigned">
|
|
||||||
<p style="margin: 0px;">
|
|
||||||
<span>Dear <t t-esc="partner_name"/>,</span><br />
|
|
||||||
<span style="margin-top: 8px;">You have been assigned to the <t t-esc="model_description or 'document'"/> <t t-esc="object.name_get()[0][1]"/>.</span>
|
|
||||||
</p>
|
|
||||||
<p style="margin-top: 24px; margin-bottom: 16px;">
|
|
||||||
<a t-att-href="'/mail/view?model=%s&res_id=%s' % (object._name, object.id)" style="background-color:#875A7B; padding: 10px; text-decoration: none; color: #fff; border-radius: 5px;">
|
|
||||||
View <t t-esc="model_description or 'document'"/>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
</template>
|
|
||||||
</data>
|
|
||||||
</odoo>
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
This directory should contain the *.po for Odoo translation.
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * project_assignees
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 12.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2023-04-12 11:37+0000\n"
|
|
||||||
"PO-Revision-Date: 2023-04-12 11:37+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: project_assignees
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_assignees.portal_my_task_assignees
|
|
||||||
msgid "<strong>Other assignees</strong>"
|
|
||||||
msgstr "<strong>Assigné à</strong>"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model:mail.message.subtype,name:project_assignees.mt_task_assignees
|
|
||||||
msgid "Assignees change"
|
|
||||||
msgstr "Changement d'assignation"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model:mail.message.subtype,description:project_assignees.mt_task_assignees
|
|
||||||
msgid "Assignees changed"
|
|
||||||
msgstr "Changement d'assignation"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_assignees.portal_my_task_assignees
|
|
||||||
msgid "Contact"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_assignees.message_user_assigned
|
|
||||||
msgid "Dear"
|
|
||||||
msgstr "Cher"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model:ir.model,name:project_assignees.model_mail_thread
|
|
||||||
msgid "Email Thread"
|
|
||||||
msgstr "Discussion par courriel"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model:ir.model,name:project_assignees.model_mail_tracking_value
|
|
||||||
msgid "Mail Tracking Value"
|
|
||||||
msgstr "Valeur de suivi des courriers"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model:ir.model.fields,field_description:project_assignees.field_project_task__assignee_ids
|
|
||||||
msgid "Other Assignees"
|
|
||||||
msgstr "Assigné à"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model:ir.model,name:project_assignees.model_project_task
|
|
||||||
msgid "Task"
|
|
||||||
msgstr "Tâche"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model:mail.message.subtype,name:project_assignees.mt_project_task_assignees
|
|
||||||
msgid "Task Assignees Changed"
|
|
||||||
msgstr "Changement d'assignation pour la tâche"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_assignees.message_user_assigned
|
|
||||||
msgid "View"
|
|
||||||
msgstr "Vue"
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: code:addons/project_assignees/models/project_task.py:57
|
|
||||||
#, python-format
|
|
||||||
msgid "You have been assigned to %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_assignees
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_assignees.message_user_assigned
|
|
||||||
msgid "You have been assigned to the"
|
|
||||||
msgstr "Vous avez été assigné à "
|
|
||||||
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
|
|
||||||
from . import project_task
|
|
||||||
@@ -1,106 +0,0 @@
|
|||||||
|
|
||||||
from odoo import models, fields, _, api
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class MailTracking(models.Model):
|
|
||||||
_inherit = 'mail.tracking.value'
|
|
||||||
|
|
||||||
@api.model
|
|
||||||
def create_tracking_values(self, initial_value, new_value, col_name, col_info, track_sequence):
|
|
||||||
"""
|
|
||||||
Track values of assignees changes in chatter
|
|
||||||
"""
|
|
||||||
if col_name == 'assignee_ids':
|
|
||||||
values = {'field': col_name, 'field_desc': col_info['string'], 'field_type': col_info['type'], 'track_sequence': track_sequence}
|
|
||||||
if initial_value:
|
|
||||||
values.update({
|
|
||||||
'old_value_char': ', '.join([i.name for i in initial_value]),
|
|
||||||
})
|
|
||||||
else:
|
|
||||||
values.update({
|
|
||||||
'old_value_char': '',
|
|
||||||
})
|
|
||||||
values.update({
|
|
||||||
'new_value_char': ', '.join([i.name for i in new_value])
|
|
||||||
})
|
|
||||||
return values
|
|
||||||
return super(MailTracking, self).create_tracking_values(initial_value, new_value, col_name, col_info, track_sequence)
|
|
||||||
|
|
||||||
class Task(models.Model):
|
|
||||||
_inherit = "project.task"
|
|
||||||
|
|
||||||
assignee_ids = fields.Many2many('res.users', 'assignee_ids_rel', string='Other Assignees', track_visibility='change')
|
|
||||||
|
|
||||||
@api.multi
|
|
||||||
def subscribe_and_notify_assignees(self, new_assignee_ids=None):
|
|
||||||
for task in self:
|
|
||||||
# Use assignees on parameter if exists
|
|
||||||
if new_assignee_ids:
|
|
||||||
assignees = self.env['res.users'].browse(new_assignee_ids)
|
|
||||||
else:
|
|
||||||
assignees = task.assignee_ids
|
|
||||||
|
|
||||||
# Subscribe partners
|
|
||||||
partner_ids = [a.partner_id.id for a in assignees]
|
|
||||||
task.message_subscribe(partner_ids)
|
|
||||||
|
|
||||||
# Send notification to assignees
|
|
||||||
view = self.env['ir.ui.view'].browse(self.env['ir.model.data'].xmlid_to_res_id('project_assignees.message_user_assigned'))
|
|
||||||
model_description = self.env['ir.model']._get(task._name).display_name
|
|
||||||
|
|
||||||
for assignee in assignees:
|
|
||||||
values = {
|
|
||||||
'object': task,
|
|
||||||
'model_description': model_description,
|
|
||||||
'partner_name':assignee.name_get()[0][1]
|
|
||||||
}
|
|
||||||
assignation_msg = view.render(values, engine='ir.qweb', minimal_qcontext=True)
|
|
||||||
assignation_msg = self.env['mail.thread']._replace_local_links(assignation_msg)
|
|
||||||
|
|
||||||
|
|
||||||
task.message_notify(
|
|
||||||
subject=_('You have been assigned to %s') % task.display_name,
|
|
||||||
body=assignation_msg,
|
|
||||||
partner_ids=[(4, assignee.partner_id.id)],
|
|
||||||
record_name=task.display_name,
|
|
||||||
notif_layout='mail.mail_notification_light',
|
|
||||||
model_description=model_description,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@api.multi
|
|
||||||
def write(self, vals):
|
|
||||||
# Notify only new assignees
|
|
||||||
if 'assignee_ids' in vals:
|
|
||||||
new_assignee_ids = vals['assignee_ids'][0][2].copy()
|
|
||||||
for a in self.assignee_ids:
|
|
||||||
if a.id in new_assignee_ids:
|
|
||||||
new_assignee_ids.remove(a.id)
|
|
||||||
self.subscribe_and_notify_assignees(new_assignee_ids)
|
|
||||||
|
|
||||||
result = super(Task, self).write(vals)
|
|
||||||
|
|
||||||
return result
|
|
||||||
|
|
||||||
@api.model
|
|
||||||
def create(self, vals):
|
|
||||||
task = super(Task, self).create(vals)
|
|
||||||
task.subscribe_and_notify_assignees()
|
|
||||||
return task
|
|
||||||
|
|
||||||
|
|
||||||
@api.multi
|
|
||||||
def _track_subtype(self, init_values):
|
|
||||||
self.ensure_one()
|
|
||||||
# keep notification of new task when creating a new task
|
|
||||||
res = super(Task, self)._track_subtype(init_values)
|
|
||||||
if res == 'project.mt_task_new':
|
|
||||||
return res
|
|
||||||
# if assignees change, notify it
|
|
||||||
if len(init_values) == 1 and 'assignee_ids' in init_values:
|
|
||||||
return 'project_assignees.mt_task_assignees'
|
|
||||||
|
|
||||||
return super(Task, self)._track_subtype(init_values)
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<odoo>
|
|
||||||
<template id="portal_my_task_assignees" name="My Task: Assignees" inherit_id="project.portal_my_task" priority="40">
|
|
||||||
<xpath expr="//div[hasclass('flex-grow-0')]/../../.." position="inside">
|
|
||||||
<div class="col-12 col-md-6 pb-2" t-if="task.assignee_ids">
|
|
||||||
<strong>Other assignees</strong>
|
|
||||||
<div class="row">
|
|
||||||
<t t-foreach="task.assignee_ids" t-as="assignee">
|
|
||||||
<div class="col flex-grow-0 pr-3">
|
|
||||||
<img t-if="assignee.image" class="rounded-circle mt-1 o_portal_contact_img" t-att-src="image_data_uri(assignee.image)" alt="Contact" />
|
|
||||||
<img t-else="" class="rounded-circle mt-1 o_portal_contact_img" src="/web/static/src/img/user_menu_avatar.png" alt="Contact" />
|
|
||||||
</div>
|
|
||||||
<div class="col pl-md-0">
|
|
||||||
<strong>
|
|
||||||
<span t-field="assignee.name" />
|
|
||||||
</strong>
|
|
||||||
<span t-field="assignee.email" />
|
|
||||||
<span t-field="assignee.phone" />
|
|
||||||
</div>
|
|
||||||
</t>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</xpath>
|
|
||||||
</template>
|
|
||||||
</odoo>
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<odoo>
|
|
||||||
<record id="view_task_form2_assignees" model="ir.ui.view">
|
|
||||||
<field name="name">project.task.form.assignees</field>
|
|
||||||
<field name="model">project.task</field>
|
|
||||||
<field name="inherit_id" ref="project.view_task_form2" />
|
|
||||||
<field name="priority" eval="99" />
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<xpath expr="//field[@name='user_id']" position="after">
|
|
||||||
<field name="assignee_ids" widget="many2many_tags" />
|
|
||||||
</xpath>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="view_task_search_form_assignees" model="ir.ui.view">
|
|
||||||
<field name="name">project.task.search.form.assignees</field>
|
|
||||||
<field name="model">project.task</field>
|
|
||||||
<field name="inherit_id" ref="project.view_task_search_form" />
|
|
||||||
<field name="priority" eval="99" />
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<filter name="my_tasks" position="attributes">
|
|
||||||
<attribute name="domain">['|', ('user_id', '=', uid), ('assignee_ids', 'in', uid)]</attribute>
|
|
||||||
</filter>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
</odoo>
|
|
||||||
@@ -1,3 +1,2 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from . import models, controllers
|
from . import models, controllers
|
||||||
|
|||||||
@@ -3,67 +3,13 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"name": "project_average_acceptable_time",
|
"name": "project_average_acceptable_time",
|
||||||
"version": "12.0.1.0.0",
|
"version": "18.0.1.0.0",
|
||||||
"author": "Elabore",
|
"author": "Elabore",
|
||||||
"website": "https://github.com/elabore-coop/project-tools",
|
"website": "https://github.com/elabore-coop/project-tools",
|
||||||
"maintainer": "Clément Thomas",
|
"maintainer": "Clément Thomas",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"category": "Tools",
|
"category": "Tools",
|
||||||
"summary": "Task validation without customer agreement",
|
"summary": "Task validation without customer agreement",
|
||||||
"description": """
|
|
||||||
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
||||||
:alt: License: AGPL-3
|
|
||||||
=================
|
|
||||||
project_average_acceptable_time
|
|
||||||
=================
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Install ``project_average_acceptable_time``, all dependencies will be installed by default.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
None yet.
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website
|
|
||||||
<https://github.com/elabore-coop/project-tools/issues>`_. In case of
|
|
||||||
trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Images
|
|
||||||
------
|
|
||||||
|
|
||||||
* Elabore: `Icon <https://elabore.coop/web/image/res.company/1/logo?unique=f3db262>`_.
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
|
|
||||||
* Clément Thomas
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Elabore (https://elabore.coop)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
This module is maintained by Elabore.
|
|
||||||
|
|
||||||
""",
|
|
||||||
# any module necessary for this one to work correctly
|
# any module necessary for this one to work correctly
|
||||||
"depends": [
|
"depends": [
|
||||||
"base",
|
"base",
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ from odoo.addons.portal.controllers.portal import CustomerPortal
|
|||||||
class CustomCustomerPortal(CustomerPortal):
|
class CustomCustomerPortal(CustomerPortal):
|
||||||
@route(["/my/account"], type="http", auth="user", website=True)
|
@route(["/my/account"], type="http", auth="user", website=True)
|
||||||
def account(self, redirect=None, **post):
|
def account(self, redirect=None, **post):
|
||||||
self.OPTIONAL_BILLING_FIELDS.append("average_acceptable_time")
|
self.OPTIONAL_BILLING_FIELDS.append("average_acceptable_time") #unecessary save in res partner, but necessary to avoid error on form post
|
||||||
|
|
||||||
response = super(CustomCustomerPortal, self).account(redirect, **post)
|
response = super(CustomCustomerPortal, self).account(redirect, **post)
|
||||||
|
|
||||||
|
|||||||
@@ -1,2 +1,3 @@
|
|||||||
|
|
||||||
from . import project_project
|
from . import project_project
|
||||||
|
from . import res_partner
|
||||||
10
project_average_acceptable_time/models/res_partner.py
Normal file
10
project_average_acceptable_time/models/res_partner.py
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
from odoo import models, fields, _, api
|
||||||
|
|
||||||
|
|
||||||
|
class ResPartner(models.Model):
|
||||||
|
_inherit = "res.partner"
|
||||||
|
|
||||||
|
average_acceptable_time = fields.Float('Average acceptable time') # not used, but necessary to post custom field from /my/account
|
||||||
|
|
||||||
|
|
||||||
@@ -1,16 +1,16 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<odoo>
|
<odoo>
|
||||||
<!-- Template /my/home -->
|
<!-- Template /my/home -->
|
||||||
<template id="portal_my_home_average_acceptable_time" name="Portal My Home: Average acceptable time" inherit_id="portal.portal_layout" priority="40">
|
<template id="portal_my_home_average_acceptable_time" name="Portal My Home: Average acceptable time" inherit_id="portal.side_content" priority="40">
|
||||||
<xpath expr="//div[hasclass('o_portal_my_details')]" position="inside">
|
<xpath expr="//div[@class='o_portal_my_details']" position="inside">
|
||||||
<hr class="mt-1 mb-0"/>
|
<hr class="mt-1 mb-0"/>
|
||||||
<b>Average acceptable time</b>: <t t-esc="user_id.default_project_id.average_acceptable_time" t-options="{'widget': 'float_time'}"/>
|
<b>Average acceptable time</b>: <t t-esc="user_id.default_project_id.average_acceptable_time" t-options="{'widget': 'float_time'}"/>
|
||||||
</xpath>
|
</xpath>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- Template /my/account -->
|
<!-- Template /my/account -->
|
||||||
<template id="portal_my_details_average_acceptable_time" name="Portal My details: Average acceptable time" inherit_id="portal.portal_my_details">
|
<template id="portal_my_details_average_acceptable_time" name="Portal My details: Average acceptable time" inherit_id="portal.portal_my_details_fields">
|
||||||
<xpath expr="//input[@name='redirect']" position="before">
|
<xpath expr="//input[@name='csrf_token']/.." position="inside">
|
||||||
<div t-attf-class="form-group #{error.get('average_acceptable_time') and 'o_has_error' or ''} col-xl-6">
|
<div t-attf-class="form-group #{error.get('average_acceptable_time') and 'o_has_error' or ''} col-xl-6">
|
||||||
<label class="col-form-label" for="average_acceptable_time">Average acceptable time (h)</label>
|
<label class="col-form-label" for="average_acceptable_time">Average acceptable time (h)</label>
|
||||||
<input
|
<input
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<field name="inherit_id" ref="project.view_project_kanban"/>
|
<field name="inherit_id" ref="project.view_project_kanban"/>
|
||||||
<field name="priority">999</field>
|
<field name="priority">999</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<xpath expr="//div[@class='o_project_kanban_main']" position="inside">
|
<xpath expr="//div[hasclass('o_project_kanban_main')]" position="inside">
|
||||||
<div class="o_project_kanban_boxes">
|
<div class="o_project_kanban_boxes">
|
||||||
<span>Average acceptable time:<![CDATA[ ]]></span>
|
<span>Average acceptable time:<![CDATA[ ]]></span>
|
||||||
<field name="average_acceptable_time" widget="float_time"/>
|
<field name="average_acceptable_time" widget="float_time"/>
|
||||||
@@ -23,9 +23,14 @@
|
|||||||
<field name="model">project.project</field>
|
<field name="model">project.project</field>
|
||||||
<field name="inherit_id" ref="project.edit_project"/>
|
<field name="inherit_id" ref="project.edit_project"/>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<field name="subtask_project_id" position="after">
|
<xpath expr="//group[@name='extra_settings']" position="inside">
|
||||||
|
<div class="o_settings_average_acceptable_time" style="margin-top:10px;">
|
||||||
|
<!-- <span>Average acceptable time:<![CDATA[ ]]></span> -->
|
||||||
|
<label for="average_acceptable_time"/>
|
||||||
<field name="average_acceptable_time" widget="float_time"/>
|
<field name="average_acceptable_time" widget="float_time"/>
|
||||||
</field>
|
</div>
|
||||||
|
</xpath>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
</odoo>
|
</odoo>
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
||||||
:alt: License: AGPL-3
|
|
||||||
===============
|
|
||||||
project_funders
|
|
||||||
===============
|
|
||||||
|
|
||||||
Add list of funder and corresponding amount to project task.
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Use Odoo normal module installation procedure to install
|
|
||||||
``project_funders``.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
None yet.
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
|
|
||||||
trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
* Nicolas Jeudy <https://github.com/njeudy>
|
|
||||||
* Valentin Lab
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Alusage (https://alusage.fr)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
This module is maintained by Alusage and Elabore.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
from . import models
|
|
||||||
@@ -1,87 +0,0 @@
|
|||||||
# Copyright 2022 Nicolas Jeudy (Alusage)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
|
|
||||||
{
|
|
||||||
"name": "project_funders",
|
|
||||||
"version": "12.0.0.1.0",
|
|
||||||
"author": "Alusage",
|
|
||||||
"website": "https://alusage.fr",
|
|
||||||
"data": [
|
|
||||||
# "security/security.xml",
|
|
||||||
# "security/ir.model.access.csv",
|
|
||||||
# "views/menu.xml",
|
|
||||||
# "data/data.xml",
|
|
||||||
],
|
|
||||||
"author": "Alusage, Elabore",
|
|
||||||
"maintainer": "Nicolas Jeudy",
|
|
||||||
"license": "AGPL-3",
|
|
||||||
"category": "Tools",
|
|
||||||
"summary": " Odoo module.",
|
|
||||||
"description": """
|
|
||||||
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
||||||
:alt: License: AGPL-3
|
|
||||||
===============
|
|
||||||
project_funders
|
|
||||||
===============
|
|
||||||
|
|
||||||
Add list of funder and corresponding amount to project task.
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Use Odoo normal module installation procedure to install
|
|
||||||
``project_funders``.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
None yet.
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
|
|
||||||
trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
* Nicolas Jeudy <https://github.com/njeudy>
|
|
||||||
* Valentin Lab
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Alusage (https://alusage.fr)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
This module is maintained by Alusage and Elabore.
|
|
||||||
|
|
||||||
""",
|
|
||||||
# any module necessary for this one to work correctly
|
|
||||||
"depends": ["base", "project"],
|
|
||||||
"qweb": [
|
|
||||||
# "static/src/xml/*.xml",
|
|
||||||
],
|
|
||||||
"external_dependencies": {
|
|
||||||
"python": [],
|
|
||||||
},
|
|
||||||
# always loaded
|
|
||||||
"data": ["security/ir.model.access.csv", "views/project_task_view.xml"],
|
|
||||||
# only loaded in demonstration mode
|
|
||||||
"demo": [],
|
|
||||||
"js": [],
|
|
||||||
"css": [],
|
|
||||||
"installable": True,
|
|
||||||
# Install this module automatically if all dependency have been previously
|
|
||||||
# and independently installed. Used for synergetic or glue modules.
|
|
||||||
"auto_install": False,
|
|
||||||
"application": False,
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
This directory should contain the *.po for Odoo translation.
|
|
||||||
@@ -1,105 +0,0 @@
|
|||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * project_funders
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 14.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2022-07-26 06:53+0000\n"
|
|
||||||
"PO-Revision-Date: 2022-07-26 06:53+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: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task__amount_total
|
|
||||||
msgid "Amount Total"
|
|
||||||
msgstr "Montant total"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Créé par"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Créé le"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__display_name
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nom affiché"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__partner_id
|
|
||||||
msgid "Funder"
|
|
||||||
msgstr "Financeur"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model,name:project_funders.model_project_funder
|
|
||||||
msgid "Funder and amount for tasks"
|
|
||||||
msgstr "Financeur et montant sur les taches"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_funders.view_task_form2_inherit_project
|
|
||||||
msgid "Funder(s)"
|
|
||||||
msgstr "Financeur(s)"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_funders.view_task_kanban_inherit_project_funders
|
|
||||||
msgid "Funds:"
|
|
||||||
msgstr "Fonds :"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__id
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr "ID"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder____last_update
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Dernière modification le"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Derniere modifiation par"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Dernière mise à jour le"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr "Nom"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model,name:project_funders.model_project_task
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__task_id
|
|
||||||
msgid "Task"
|
|
||||||
msgstr "Tâche"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_funders.view_task_form2_inherit_project
|
|
||||||
msgid "Total"
|
|
||||||
msgstr "Total"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__amount
|
|
||||||
msgid "Untaxed Amount"
|
|
||||||
msgstr "Montant HT"
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task__funder_ids
|
|
||||||
msgid "funder"
|
|
||||||
msgstr "Financeur"
|
|
||||||
@@ -1,105 +0,0 @@
|
|||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * project_funders
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 14.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2022-07-26 07:41+0000\n"
|
|
||||||
"PO-Revision-Date: 2022-07-26 07:41+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: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task__amount_total
|
|
||||||
msgid "Amount Total"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__display_name
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__partner_id
|
|
||||||
msgid "Funder"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model,name:project_funders.model_project_funder
|
|
||||||
msgid "Funder and amount for tasks"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_funders.view_task_form2_inherit_project
|
|
||||||
msgid "Funder(s)"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_funders.view_task_kanban_inherit_project_funders
|
|
||||||
msgid "Funds:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__id
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder____last_update
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__name
|
|
||||||
msgid "Name"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model,name:project_funders.model_project_task
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__task_id
|
|
||||||
msgid "Task"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_funders.view_task_form2_inherit_project
|
|
||||||
msgid "Total"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_funder__amount
|
|
||||||
msgid "Untaxed Amount"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_funders
|
|
||||||
#: model:ir.model.fields,field_description:project_funders.field_project_task__funder_ids
|
|
||||||
msgid "funder"
|
|
||||||
msgstr ""
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
from . import project_funders
|
|
||||||
from . import project_task
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
from odoo import _, api, fields, models
|
|
||||||
|
|
||||||
|
|
||||||
class ProjectFunders(models.Model):
|
|
||||||
_name = "project.funder"
|
|
||||||
_description = "Funder and amount for tasks"
|
|
||||||
|
|
||||||
name = fields.Char(compute="_compute_name", string="Name")
|
|
||||||
partner_id = fields.Many2one("res.partner", string="Funder", required=True)
|
|
||||||
amount = fields.Float("Untaxed Amount", required=True)
|
|
||||||
task_id = fields.Many2one("project.task", string="Task")
|
|
||||||
|
|
||||||
@api.depends("partner_id", "amount")
|
|
||||||
def _compute_name(self):
|
|
||||||
for record in self:
|
|
||||||
record.name = "%s (%s)" % (record.partner_id.name, record.amount)
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
from odoo import _, api, fields, models
|
|
||||||
|
|
||||||
|
|
||||||
class ProjectTask(models.Model):
|
|
||||||
_inherit = "project.task"
|
|
||||||
|
|
||||||
funder_ids = fields.One2many("project.funder", "task_id", string="funder")
|
|
||||||
amount_total = fields.Float(compute="_compute_amount_total", string="Amount Total")
|
|
||||||
|
|
||||||
@api.depends("funder_ids")
|
|
||||||
def _compute_amount_total(self):
|
|
||||||
for record in self:
|
|
||||||
record.amount_total = sum(record.funder_ids.mapped("amount"))
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink
|
|
||||||
access_project_funder_all,project.funder.all,model_project_funder,,1,1,1,1
|
|
||||||
|
@@ -1,47 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<odoo>
|
|
||||||
|
|
||||||
<record id="view_task_form2_inherit_project" model="ir.ui.view">
|
|
||||||
<field name="name">project.task.view.form.inherit</field>
|
|
||||||
<field name="model">project.task</field>
|
|
||||||
<field name="inherit_id" ref="project.view_task_form2"/>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<xpath expr="//notebook" position="inside">
|
|
||||||
<page name="funders" string="Funder(s)">
|
|
||||||
<field name="funder_ids" context="{'default_task_id': active_id}">
|
|
||||||
<tree editable="bottom">
|
|
||||||
<field name="task_id" invisible="1"/>
|
|
||||||
<field name="partner_id"/>
|
|
||||||
<field name="amount"/>
|
|
||||||
</tree>
|
|
||||||
</field>
|
|
||||||
<group>
|
|
||||||
<group class="oe_subtotal_footer oe_right" name="project_hours">
|
|
||||||
<span>
|
|
||||||
<label class="font-weight-bold" for="amount_total" string="Total"/>
|
|
||||||
</span>
|
|
||||||
<field name="amount_total" nolabel="1"/>
|
|
||||||
</group>
|
|
||||||
</group>
|
|
||||||
</page>
|
|
||||||
</xpath>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="view_task_kanban_inherit_project_funders" model="ir.ui.view">
|
|
||||||
<field name="name">project.task.view.kanban.inherit</field>
|
|
||||||
<field name="model">project.task</field>
|
|
||||||
<field name="inherit_id" ref="project.view_task_kanban"/>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<field name="active" position="after">
|
|
||||||
<field name="amount_total"/>
|
|
||||||
</field>
|
|
||||||
<field name="tag_ids" position="after">
|
|
||||||
<span attrs="{'invisible': [('amount_total', '=', 0)]}">
|
|
||||||
Funds: <field name="amount_total"/>
|
|
||||||
</span>
|
|
||||||
</field>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
</odoo>
|
|
||||||
@@ -1,14 +1,13 @@
|
|||||||
===============
|
============================================
|
||||||
project_timebox
|
project_only_current_project_tasks_as_parent
|
||||||
===============
|
============================================
|
||||||
|
|
||||||
Add timebox field in tasks to estimate resolution effort.
|
when selecting a parent task in a task, display only tasks from the current project
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
||||||
Use Odoo normal module installation procedure to install ``project_timebox``.
|
Use Odoo normal module installation procedure to install ``project_only_current_project_tasks_as_parent``.
|
||||||
To configure the timeboxes, go to Project > Configuration > Timeboxes
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
Known issues / Roadmap
|
||||||
======================
|
======================
|
||||||
@@ -29,16 +28,14 @@ Credits
|
|||||||
Contributors
|
Contributors
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
* Laetitia Da Costa (https://github.com/LaetitiaElabore)
|
||||||
* Stéphan Sainléger (https://github.com/stephansainleger)
|
* Stéphan Sainléger (https://github.com/stephansainleger)
|
||||||
* Nicolas Jeudy (https://github.com/njeudy)
|
|
||||||
|
|
||||||
Funders
|
Funders
|
||||||
-------
|
-------
|
||||||
|
|
||||||
The development of this module has been financially supported by:
|
The development of this module has been financially supported by:
|
||||||
* Elabore (https://elabore.coop)
|
* Elabore (https://elabore.coop)
|
||||||
* Mycéliandre (https://myceliandre.fr)
|
|
||||||
* Lokavaluto (https://lokavaluto.fr)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
Maintainer
|
||||||
37
project_only_current_project_tasks_as_parent/__manifest__.py
Normal file
37
project_only_current_project_tasks_as_parent/__manifest__.py
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
# Copyright 2022 Laetitia Da Costa (Elabore)
|
||||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "project_only_current_project_tasks_as_parent",
|
||||||
|
"version": "18.0.1.0.0",
|
||||||
|
"author": "Elabore",
|
||||||
|
"website": "https://elabore.coop",
|
||||||
|
"maintainer": "Laetitia Da Costa",
|
||||||
|
"license": "AGPL-3",
|
||||||
|
"category": "Project",
|
||||||
|
"summary": "In parent's tasks dropdown field, show only tasks from the current projet",
|
||||||
|
# any module necessary for this one to work correctly
|
||||||
|
"depends": [
|
||||||
|
"base",
|
||||||
|
"project",
|
||||||
|
],
|
||||||
|
"qweb": [
|
||||||
|
# "static/src/xml/*.xml",
|
||||||
|
],
|
||||||
|
"external_dependencies": {
|
||||||
|
"python": [],
|
||||||
|
},
|
||||||
|
# always loaded
|
||||||
|
"data": [
|
||||||
|
"views/project_task.xml",
|
||||||
|
],
|
||||||
|
# only loaded in demonstration mode
|
||||||
|
"demo": [],
|
||||||
|
"js": [],
|
||||||
|
"css": [],
|
||||||
|
"installable": True,
|
||||||
|
# Install this module automatically if all dependency have been previously
|
||||||
|
# and independently installed. Used for synergetic or glue modules.
|
||||||
|
"auto_install": False,
|
||||||
|
"application": False,
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<odoo>
|
||||||
|
<record model="ir.ui.view" id="view_tasks_form2_parent_project_inherited">
|
||||||
|
<field name="name">view.tasks.form2.parent.project.inherited</field>
|
||||||
|
<field name="model">project.task</field>
|
||||||
|
<field name="inherit_id" ref="project.view_task_form2" />
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//page[@name='extra_info']//field[@name='parent_id']" position="attributes">
|
||||||
|
<attribute name="domain">[('project_id','=', project_id), ('stage_id.fold', '=', False)]</attribute>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"name": "project_request_data",
|
"name": "project_request_data",
|
||||||
"version": "12.0.1.0.0",
|
"version": "18.0.1.0.0",
|
||||||
"author": "Elabore",
|
"author": "Elabore",
|
||||||
"website": "https://elabore.coop",
|
"website": "https://elabore.coop",
|
||||||
"maintainer": "Stéphan Sainléger",
|
"maintainer": "Stéphan Sainléger",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 12.0\n"
|
"Project-Id-Version: Odoo Server 14.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-26 12:51+0000\n"
|
"POT-Creation-Date: 2022-08-26 12:51+0000\n"
|
||||||
"PO-Revision-Date: 2022-08-26 12:51+0000\n"
|
"PO-Revision-Date: 2022-08-26 12:51+0000\n"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<odoo>
|
<odoo>
|
||||||
<template id="portal_my_task_request_data" name="My Task: Request Data" inherit_id="project.portal_my_task" priority="40">
|
<template id="portal_my_task_request_data" name="My Task: Request Data" inherit_id="project.portal_my_task" priority="40">
|
||||||
<xpath expr="//t[@t-set='card_body']/div[hasclass('row','mb-4')]" position="after">
|
<xpath expr="//div[@id='card_body']/div[hasclass('row','mb-4','container')]" position="after">
|
||||||
<div id="request_data" class="row mb-4">
|
<div id="request_data" class="row mb-4">
|
||||||
<div class="col-12 col-md-6" t-if="task.service_id">
|
<div class="col-12 col-md-6" t-if="task.service_id">
|
||||||
<strong>Service:</strong>
|
<strong>Service:</strong>
|
||||||
|
|||||||
@@ -12,4 +12,18 @@
|
|||||||
</xpath>
|
</xpath>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
<record id="view_task_kanban_request_data" model="ir.ui.view">
|
||||||
|
<field name="name">project.task.kanban.request.data</field>
|
||||||
|
<field name="inherit_id" ref="project.view_task_kanban" />
|
||||||
|
<field name="model">project.task</field>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<xpath expr="//field[@name='name']" position="before">
|
||||||
|
<div style="font-size:11px; margin-bottom: 8px;"><field name="create_date" widget="date"/></div>
|
||||||
|
</xpath>
|
||||||
|
<xpath expr="//field[@name='tag_ids']" position="before">
|
||||||
|
<span style="background:lightblue; font-size:11px"><field name="service_id"/></span>
|
||||||
|
<span style="background:lightsteelblue; font-size:11px"><field name="request_type_id"/></span>
|
||||||
|
</xpath>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
</odoo>
|
</odoo>
|
||||||
@@ -2,20 +2,20 @@
|
|||||||
<odoo>
|
<odoo>
|
||||||
|
|
||||||
<record id="request_type_view_tree" model="ir.ui.view">
|
<record id="request_type_view_tree" model="ir.ui.view">
|
||||||
<field name="name">request.type.view.tree</field>
|
<field name="name">request.type.view.list</field>
|
||||||
<field name="model">request.type</field>
|
<field name="model">request.type</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="Request Types" editable="top" default_order="sequence">
|
<list editable="top" default_order="sequence">
|
||||||
<field name="sequence" widget="handle" />
|
<field name="sequence" widget="handle" />
|
||||||
<field name="name" />
|
<field name="name" />
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<record id="act_request_types_list" model="ir.actions.act_window">
|
<record id="act_request_types_list" model="ir.actions.act_window">
|
||||||
<field name="name">Request Types</field>
|
<field name="name">Request Types</field>
|
||||||
<field name="res_model">request.type</field>
|
<field name="res_model">request.type</field>
|
||||||
<field name="view_mode">tree</field>
|
<field name="view_mode">list</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem id="menu_request_types" action="act_request_types_list" parent="project.menu_project_config" sequence="99" name="Request Types" />
|
<menuitem id="menu_request_types" action="act_request_types_list" parent="project.menu_project_config" sequence="99" name="Request Types" />
|
||||||
|
|||||||
@@ -2,20 +2,20 @@
|
|||||||
<odoo>
|
<odoo>
|
||||||
|
|
||||||
<record id="task_service_view_tree" model="ir.ui.view">
|
<record id="task_service_view_tree" model="ir.ui.view">
|
||||||
<field name="name">task.service.view.tree</field>
|
<field name="name">task.service.view.list</field>
|
||||||
<field name="model">task.service</field>
|
<field name="model">task.service</field>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<tree string="Task Services" editable="top" default_order="sequence">
|
<list editable="top" default_order="sequence">
|
||||||
<field name="sequence" widget="handle" />
|
<field name="sequence" widget="handle" />
|
||||||
<field name="name" />
|
<field name="name" />
|
||||||
</tree>
|
</list>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<record id="act_task_services_list" model="ir.actions.act_window">
|
<record id="act_task_services_list" model="ir.actions.act_window">
|
||||||
<field name="name">Task Services</field>
|
<field name="name">Task Services</field>
|
||||||
<field name="res_model">task.service</field>
|
<field name="res_model">task.service</field>
|
||||||
<field name="view_mode">tree</field>
|
<field name="view_mode">list</field>
|
||||||
</record>
|
</record>
|
||||||
|
|
||||||
<menuitem id="menu_task_services" action="act_task_services_list" parent="project.menu_project_config" sequence="99" name="Task Services" />
|
<menuitem id="menu_task_services" action="act_task_services_list" parent="project.menu_project_config" sequence="99" name="Task Services" />
|
||||||
|
|||||||
2
project_task_portal_form/.gitignore
vendored
2
project_task_portal_form/.gitignore
vendored
@@ -1,2 +0,0 @@
|
|||||||
*.*~
|
|
||||||
*pyc
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
=====================
|
|
||||||
project_task_portal_form
|
|
||||||
=====================
|
|
||||||
|
|
||||||
Add a portal form to create project tasks
|
|
||||||
|
|
||||||
This is an Odoo addon.
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from . import controllers
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
# Copyright 2022 Stéphan Sainléger (Elabore)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
|
|
||||||
{
|
|
||||||
"name": "project_task_portal_form",
|
|
||||||
"version": "12.0.1.1.0",
|
|
||||||
"author": "Elabore",
|
|
||||||
"website": "https://elabore.coop",
|
|
||||||
"maintainer": "Stéphan Sainléger",
|
|
||||||
"license": "AGPL-3",
|
|
||||||
"category": "Tools",
|
|
||||||
"summary": "Add a portal form to create project tasks",
|
|
||||||
"description": """
|
|
||||||
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
||||||
:alt: License: AGPL-3
|
|
||||||
========================
|
|
||||||
project_task_portal_form
|
|
||||||
========================
|
|
||||||
|
|
||||||
Add a portal form to create project tasks
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Use Odoo normal module installation procedure to install
|
|
||||||
``project_task_portal_form``.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
None yet.
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
|
|
||||||
trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
|
|
||||||
* Stéphan Sainléger
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Elabore (https://elabore.coop)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
|
|
||||||
This module is maintained by Elabore.
|
|
||||||
|
|
||||||
""",
|
|
||||||
# any module necessary for this one to work correctly
|
|
||||||
"depends": [
|
|
||||||
"base",
|
|
||||||
"project",
|
|
||||||
"project_request_data",
|
|
||||||
"project_user_default_project",
|
|
||||||
],
|
|
||||||
"qweb": [],
|
|
||||||
"external_dependencies": {
|
|
||||||
"python": [],
|
|
||||||
},
|
|
||||||
# always loaded
|
|
||||||
"data": [
|
|
||||||
"views/portal_task_creation_form.xml",
|
|
||||||
],
|
|
||||||
# only loaded in demonstration mode
|
|
||||||
"demo": [],
|
|
||||||
"js": [],
|
|
||||||
"css": [],
|
|
||||||
"installable": True,
|
|
||||||
# Install this module automatically if all dependency have been previously
|
|
||||||
# and independently installed. Used for synergetic or glue modules.
|
|
||||||
"auto_install": False,
|
|
||||||
"application": False,
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from . import portal_task_creation
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
# Copyright 2020 Lokavaluto ()
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
import base64
|
|
||||||
from odoo import http
|
|
||||||
from odoo.http import request
|
|
||||||
from odoo.addons.portal.controllers.portal import CustomerPortal
|
|
||||||
|
|
||||||
|
|
||||||
class PortalTaskCreation(CustomerPortal):
|
|
||||||
_TASK_CREATION_FIELDS = [
|
|
||||||
"name",
|
|
||||||
"service_id",
|
|
||||||
"request_type_id",
|
|
||||||
"small_description",
|
|
||||||
"access",
|
|
||||||
"bug_report",
|
|
||||||
"priority",
|
|
||||||
]
|
|
||||||
|
|
||||||
# Variable to update to add other fields in child classes
|
|
||||||
_EXTRA_FIELDS = []
|
|
||||||
|
|
||||||
def _taskform_get_page_view_values(self, partner, access_token, **kwargs):
|
|
||||||
values = {
|
|
||||||
"page_name": "portal_task_form",
|
|
||||||
"partner": partner,
|
|
||||||
}
|
|
||||||
return self._get_page_view_values(
|
|
||||||
partner,
|
|
||||||
access_token,
|
|
||||||
values,
|
|
||||||
"my_task_creation_history",
|
|
||||||
False,
|
|
||||||
**kwargs
|
|
||||||
)
|
|
||||||
|
|
||||||
def _get_task_priorities(self):
|
|
||||||
priorities = []
|
|
||||||
for id, name in request.env['project.task']._fields['priority'].selection:
|
|
||||||
value = {
|
|
||||||
"id": id,
|
|
||||||
"name": name
|
|
||||||
}
|
|
||||||
priorities.append(value)
|
|
||||||
return priorities
|
|
||||||
|
|
||||||
@http.route(
|
|
||||||
["/task/form"],
|
|
||||||
type="http",
|
|
||||||
auth="user",
|
|
||||||
website=True,
|
|
||||||
)
|
|
||||||
def portal_task_creation(self, access_token=None, redirect=None, **kw):
|
|
||||||
values = self._task_get_page_view_values(request.env.user.partner_id, access_token, **kw)
|
|
||||||
request_types = request.env["request.type"].sudo().search([])
|
|
||||||
task_services = request.env["task.service"].sudo().search([])
|
|
||||||
priorities = self._get_task_priorities()
|
|
||||||
error = dict()
|
|
||||||
error_message = []
|
|
||||||
values.update(
|
|
||||||
{
|
|
||||||
"request_types": request_types,
|
|
||||||
"task_services": task_services,
|
|
||||||
"priorities": priorities,
|
|
||||||
"error": error,
|
|
||||||
"error_message": error_message,
|
|
||||||
}
|
|
||||||
)
|
|
||||||
return request.render("project_task_portal_form.portal_task_creation_form", values)
|
|
||||||
|
|
||||||
def _compute_form_data(self, data):
|
|
||||||
values = {}
|
|
||||||
for field in self._TASK_CREATION_FIELDS:
|
|
||||||
if data.get(field):
|
|
||||||
values[field] = data.pop(field)
|
|
||||||
for field in self._EXTRA_FIELDS:
|
|
||||||
if data.get(field):
|
|
||||||
values[field] = data.pop(field)
|
|
||||||
description = ""
|
|
||||||
if values.get("small_description", False):
|
|
||||||
description = description + "<b>DESCRIPTION:</b><br/>" + values["small_description"]
|
|
||||||
if values.get("access", False):
|
|
||||||
description = description + "<br/><br/><b>ACCESS:</b><br/>" + values["access"]
|
|
||||||
if values.get("bug_report", False):
|
|
||||||
description = description + "<br/><br/><b>BUG REPORT:</b><br/>" + values["bug_report"]
|
|
||||||
values["description"] = description
|
|
||||||
values["attachments"] = request.httprequest.files.getlist("attachment")
|
|
||||||
return values
|
|
||||||
|
|
||||||
@http.route(
|
|
||||||
["/task/create"],
|
|
||||||
type="http",
|
|
||||||
auth="public",
|
|
||||||
methods=['POST'],
|
|
||||||
website=True,
|
|
||||||
)
|
|
||||||
def create_task(self, **kwargs):
|
|
||||||
# Get form values
|
|
||||||
user = request.env.user
|
|
||||||
values = self._compute_form_data(kwargs)
|
|
||||||
values["project_id"] = user.default_project_id.id
|
|
||||||
values["partner_id"] = user.partner_id.id
|
|
||||||
values["user_id"] = user.id
|
|
||||||
|
|
||||||
# Create task
|
|
||||||
task_id = request.env["project.task"].sudo().create(values) #use sudo to avoid access error on resource calendar when user_id is set
|
|
||||||
|
|
||||||
# Add attachments
|
|
||||||
for file in values.get("attachments", False):
|
|
||||||
attachment_value = {
|
|
||||||
'name': file.filename,
|
|
||||||
'datas': base64.encodestring(file.read()),
|
|
||||||
'datas_fname': file.filename,
|
|
||||||
'res_model': "project.task",
|
|
||||||
'res_id': task_id,
|
|
||||||
}
|
|
||||||
request.env['ir.attachment'].sudo().create(attachment_value)
|
|
||||||
return request.render("project_task_portal_form.portal_task_created", {})
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
This directory should contain the *.po for Odoo translation.
|
|
||||||
@@ -1,124 +0,0 @@
|
|||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * project_task_portal_form
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 12.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2022-09-22 09:34+0000\n"
|
|
||||||
"PO-Revision-Date: 2022-09-22 09:34+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: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_created
|
|
||||||
msgid "<br/>\n"
|
|
||||||
" Task created"
|
|
||||||
msgstr "<br/>\n"
|
|
||||||
" Tâche créée"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "<span>Be precise. If there is a bug/error, please describe how to reproduce it</span>"
|
|
||||||
msgstr "<span>Soyez précis. Si vous avez une erreur, veuillez décrire le scénario pour la reproduire</span>"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "<span>Link toward error or additional information</span>"
|
|
||||||
msgstr "<span>Lien vers l'erreur ou des informations supplémentaires</span>"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "<span>Paste here the complete error message (ex: error code Odoo)</span>"
|
|
||||||
msgstr "<span>COpier ici le message d'erreur complet (ex: error code Odoo)</span>"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Access"
|
|
||||||
msgstr "Accès"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_created
|
|
||||||
msgid "Back to my Home\n"
|
|
||||||
" <span class=\"fa fa-long-arrow-right\"/>"
|
|
||||||
msgstr "Retour sur mon espace\n"
|
|
||||||
" <span class=\"fa fa-long-arrow-right\"/>"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Bug report"
|
|
||||||
msgstr "Rapport de bug"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Choose a priority..."
|
|
||||||
msgstr "Choisir la priorité..."
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Choose a service..."
|
|
||||||
msgstr "Choisir le logiciel"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Choose a type..."
|
|
||||||
msgstr "Choisir un type de demande"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Description"
|
|
||||||
msgstr "Description"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Priority"
|
|
||||||
msgstr "Priorité"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Request type"
|
|
||||||
msgstr "Type de demande"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Service"
|
|
||||||
msgstr "Logiciel"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Submit\n"
|
|
||||||
" <span class=\"fa fa-long-arrow-right\"/>"
|
|
||||||
msgstr "Soumettre\n"
|
|
||||||
" <span class=\"fa fa-long-arrow-right\"/>"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_created
|
|
||||||
msgid "Task created"
|
|
||||||
msgstr "Tâche créée"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Task creation form"
|
|
||||||
msgstr "Formulaire de création de tâche"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_created
|
|
||||||
msgid "Thanks for request!\n"
|
|
||||||
" <br/>\n"
|
|
||||||
" A new task has been saved and you can keep track on your request handling from your portal account!\n"
|
|
||||||
" <br/>"
|
|
||||||
msgstr "Merci pour votre demande !\n"
|
|
||||||
" <br/>\n"
|
|
||||||
" Une nouvelle tâche a été créée et vous pouvez suivre votre demande depuis votre compte portail !\n"
|
|
||||||
" <br/>"
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Title"
|
|
||||||
msgstr "Titre"
|
|
||||||
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * project_task_portal_form
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 12.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2022-09-22 09:35+0000\n"
|
|
||||||
"PO-Revision-Date: 2022-09-22 09:35+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: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_created
|
|
||||||
msgid "<br/>\n"
|
|
||||||
" Task created"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "<span>Be precise. If there is a bug/error, please describe how to reproduce it</span>"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "<span>Link toward error or additional information</span>"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "<span>Paste here the complete error message (ex: error code Odoo)</span>"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Access"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_created
|
|
||||||
msgid "Back to my Home\n"
|
|
||||||
" <span class=\"fa fa-long-arrow-right\"/>"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Bug report"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Choose a priority..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Choose a service..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Choose a type..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Description"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Priority"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Request type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Service"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Submit\n"
|
|
||||||
" <span class=\"fa fa-long-arrow-right\"/>"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_created
|
|
||||||
msgid "Task created"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Task creation form"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_created
|
|
||||||
msgid "Thanks for request!\n"
|
|
||||||
" <br/>\n"
|
|
||||||
" A new task has been saved and you can keep track on your request handling from your portal account!\n"
|
|
||||||
" <br/>"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_task_portal_form
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_task_portal_form.portal_task_creation_form
|
|
||||||
msgid "Title"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
@@ -1,141 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<odoo>
|
|
||||||
<template id="portal_task_creation_form" name="Portal: Task creation form">
|
|
||||||
<t t-call="portal.portal_layout">
|
|
||||||
<!-- <div id="wrap" class="col-lg-6 container"></div> -->
|
|
||||||
<t t-set="additional_title">Task creation form</t>
|
|
||||||
<form
|
|
||||||
action="/task/create"
|
|
||||||
method="post"
|
|
||||||
accept-charset="UTF-8"
|
|
||||||
class="s_website_form col-md-12 mt32"
|
|
||||||
data-model_name="project.task"
|
|
||||||
data-force_action=""
|
|
||||||
data-success_page=""
|
|
||||||
enctype="multipart/form-data">
|
|
||||||
|
|
||||||
<div class="oe_structure" id="oe_structure_portal_task_creation_form_1" />
|
|
||||||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()" />
|
|
||||||
<div class="row">
|
|
||||||
<div t-attf-class="form-group #{error.get('name') and 'o_has_error' or ''} col-xl-12">
|
|
||||||
<label class="col-form-label" for="name">Title</label>
|
|
||||||
<label class="text-danger"> *</label>
|
|
||||||
<input type="text" name="name" t-attf-class="form-control #{error.get('name') and 'is-invalid' or ''}" t-att-value="name" required="True" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div t-attf-class="form-group #{error.get('request_type_id') and 'o_has_error' or ''} col-xl-6">
|
|
||||||
<label class="col-form-label" for="request_type_id">Request type</label>
|
|
||||||
<label class="text-danger"> *</label>
|
|
||||||
<select name="request_type_id" t-attf-class="form-control" required="True">
|
|
||||||
<option value="">Choose a type...</option>
|
|
||||||
<t t-foreach="request_types or []" t-as="request_type">
|
|
||||||
<option t-att-value="request_type.id">
|
|
||||||
<t t-esc="request_type.name" />
|
|
||||||
</option>
|
|
||||||
</t>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
<div t-attf-class="form-group #{error.get('service_id') and 'o_has_error' or ''} col-xl-6">
|
|
||||||
<label class="col-form-label" for="service_id">Service</label>
|
|
||||||
<label class="text-danger"> *</label>
|
|
||||||
<select name="service_id" t-attf-class="form-control" required="True">
|
|
||||||
<option value="">Choose a service...</option>
|
|
||||||
<t t-foreach="task_services or []" t-as="task_service">
|
|
||||||
<option t-att-value="task_service.id">
|
|
||||||
<t t-esc="task_service.name" />
|
|
||||||
</option>
|
|
||||||
</t>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div t-attf-class="form-group #{error.get('small_description') and 'o_has_error' or ''} col-xl-12">
|
|
||||||
<label class="col-form-label" for="small_description">Description</label>
|
|
||||||
<label class="text-danger"> *</label>
|
|
||||||
<textarea rows="4" name="small_description" t-attf-class="form-control #{error.get('small_description') and 'is-invalid' or ''}" t-att-value="small_description" required="True" />
|
|
||||||
<span>Be precise. If there is a bug/error, please describe how to reproduce it</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div t-attf-class="form-group #{error.get('access') and 'o_has_error' or ''} col-xl-12">
|
|
||||||
<label class="col-form-label" for="access">Access</label>
|
|
||||||
<input type="text" name="access" t-attf-class="form-control #{error.get('access') and 'is-invalid' or ''}" t-att-value="access" />
|
|
||||||
<span>Link toward error or additional information</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div t-attf-class="form-group #{error.get('bug_report') and 'o_has_error' or ''} col-xl-12">
|
|
||||||
<label class="col-form-label" for="bug_report">Bug report</label>
|
|
||||||
<textarea rows="4" name="bug_report" t-attf-class="form-control #{error.get('bug_report') and 'is-invalid' or ''}" t-att-value="bug_report" />
|
|
||||||
<span>Paste here the complete error message (ex: error code Odoo)</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- ## IMPORT FILE -->
|
|
||||||
<div class="form-group form-field form-field-binary" data-model-field="false" data-optional="true">
|
|
||||||
<label class="col-form-label" for="attachment">
|
|
||||||
<span>Join document</span>
|
|
||||||
</label>
|
|
||||||
<i>
|
|
||||||
<input type="file" name="attachment" multiple="true" data-show-upload="true" data-show-caption="true" data-show-preview="true" />
|
|
||||||
</i>
|
|
||||||
<p class="form-text text-muted">
|
|
||||||
<i>Join a screenshot to your request or any other helpfull document.</i>
|
|
||||||
<br />
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div t-attf-class="form-group #{error.get('priority') and 'o_has_error' or ''} col-xl-6">
|
|
||||||
<label class="col-form-label" for="priority">Priority</label>
|
|
||||||
<label class="text-danger"> *</label>
|
|
||||||
<select name="priority" t-attf-class="form-control" required="True">
|
|
||||||
<option value="">Choose a priority...</option>
|
|
||||||
<t t-foreach="priorities or []" t-as="priority">
|
|
||||||
<option t-att-value="priority['id']">
|
|
||||||
<t t-esc="priority['name']" />
|
|
||||||
</option>
|
|
||||||
</t>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="clearfix">
|
|
||||||
<br />
|
|
||||||
<button type="submit" class="btn btn-primary float-right mb32 ">
|
|
||||||
Submit
|
|
||||||
<span class="fa fa-long-arrow-right" />
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="oe_structure" id="oe_structure_portal_task_creation_form_2" />
|
|
||||||
</form>
|
|
||||||
</t>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
|
|
||||||
<template id="portal_task_created" name="Portal: Task created">
|
|
||||||
<t t-call="portal.portal_layout">
|
|
||||||
<t t-set="additional_title">Task created</t>
|
|
||||||
<form action="/my/tasks" method="post">
|
|
||||||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()" />
|
|
||||||
<h3>
|
|
||||||
<br />
|
|
||||||
Task created
|
|
||||||
</h3>
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
Thanks for request!
|
|
||||||
<br />
|
|
||||||
A new task has been saved and you can keep track on your request handling from your portal account!
|
|
||||||
<br />
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="clearfix">
|
|
||||||
<br />
|
|
||||||
<button type="submit" class="btn btn-primary float-right mb32 ">
|
|
||||||
Back to my Tasks
|
|
||||||
<span class="fa fa-long-arrow-right" />
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</t>
|
|
||||||
</template>
|
|
||||||
</odoo>
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
from . import models
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
# Copyright 2022 Stéphan Sainléger (Elabore)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
|
|
||||||
{
|
|
||||||
"name": "project_timebox",
|
|
||||||
"version": "12.0.1.0.0",
|
|
||||||
"author": "Elabore",
|
|
||||||
"website": "https://elabore.coop",
|
|
||||||
"maintainer": "Stéphan Sainléger",
|
|
||||||
"license": "AGPL-3",
|
|
||||||
"category": "Project",
|
|
||||||
"summary": "Add timebox field in tasks to estimate resolution effort.",
|
|
||||||
"description": """
|
|
||||||
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
||||||
:alt: License: AGPL-3
|
|
||||||
===============
|
|
||||||
project_timebox
|
|
||||||
===============
|
|
||||||
|
|
||||||
Add timebox field in tasks to estimate resolution effort.
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Use Odoo normal module installation procedure to install ``project_timebox``.
|
|
||||||
To configure the timeboxes, go to Project > Configuration > Timeboxes
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
None yet.
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
|
|
||||||
trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
|
|
||||||
* Stéphan Sainléger (https://github.com/stephansainleger)
|
|
||||||
* Nicolas Jeudy (https://github.com/njeudy)
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Elabore (https://elabore.coop)
|
|
||||||
* Mycéliandre (https://myceliandre.fr)
|
|
||||||
* Lokavaluto (https://lokavaluto.fr)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
|
|
||||||
This module is maintained by Elabore.
|
|
||||||
|
|
||||||
""",
|
|
||||||
# any module necessary for this one to work correctly
|
|
||||||
"depends": [
|
|
||||||
"base",
|
|
||||||
"project",
|
|
||||||
],
|
|
||||||
"qweb": [
|
|
||||||
# "static/src/xml/*.xml",
|
|
||||||
],
|
|
||||||
"external_dependencies": {
|
|
||||||
"python": [],
|
|
||||||
},
|
|
||||||
# always loaded
|
|
||||||
"data": [
|
|
||||||
"security/ir.model.access.csv",
|
|
||||||
"views/project_task.xml",
|
|
||||||
"views/timebox.xml",
|
|
||||||
"views/portal_template.xml",
|
|
||||||
],
|
|
||||||
# only loaded in demonstration mode
|
|
||||||
"demo": [],
|
|
||||||
"js": [],
|
|
||||||
"css": [],
|
|
||||||
"installable": True,
|
|
||||||
# Install this module automatically if all dependency have been previously
|
|
||||||
# and independently installed. Used for synergetic or glue modules.
|
|
||||||
"auto_install": False,
|
|
||||||
"application": False,
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
This directory should contain the *.po for Odoo translation.
|
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * project_timebox
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 14.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2022-08-01 09:34+0000\n"
|
|
||||||
"PO-Revision-Date: 2022-08-01 09:34+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: project_timebox
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_timebox.portal_my_task_timebox
|
|
||||||
msgid "<strong>Timebox Max:</strong>"
|
|
||||||
msgstr "<strong>Temps estimé maxi :</strong>"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_timebox.portal_my_task_timebox
|
|
||||||
msgid "<strong>Timebox Min:</strong>"
|
|
||||||
msgstr "<strong>Temps estimé mini :</strong>"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox__create_uid
|
|
||||||
msgid "Created by"
|
|
||||||
msgstr "Créé par"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox__create_date
|
|
||||||
msgid "Created on"
|
|
||||||
msgstr "Créé le"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_project_task__display_name
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nom affiché"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_project_task__id
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_project_task____last_update
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Dernière modification le"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox__write_uid
|
|
||||||
msgid "Last Updated by"
|
|
||||||
msgstr "Dernière mise à jour par"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox__write_date
|
|
||||||
msgid "Last Updated on"
|
|
||||||
msgstr "Dernière mise à jour le"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox__sequence
|
|
||||||
msgid "Sequence"
|
|
||||||
msgstr "Séquence"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model,name:project_timebox.model_project_task
|
|
||||||
msgid "Task"
|
|
||||||
msgstr "Tâche"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model,name:project_timebox.model_timebox
|
|
||||||
msgid "Timebox"
|
|
||||||
msgstr "Estimation"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_project_task__timebox_max_id
|
|
||||||
msgid "Timebox Max"
|
|
||||||
msgstr "Estimation haute"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_project_task__timebox_min_id
|
|
||||||
msgid "Timebox Min"
|
|
||||||
msgstr "Estimation basse"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.actions.act_window,name:project_timebox.act_timeboxes_list
|
|
||||||
#: model:ir.ui.menu,name:project_timebox.menu_timeboxes
|
|
||||||
#: model_terms:ir.ui.view,arch_db:project_timebox.timebox_view_tree
|
|
||||||
msgid "Timeboxes"
|
|
||||||
msgstr "Estimations"
|
|
||||||
|
|
||||||
#. module: project_timebox
|
|
||||||
#: model:ir.model.fields,field_description:project_timebox.field_timebox__name
|
|
||||||
msgid "name"
|
|
||||||
msgstr "nom"
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
from . import timebox
|
|
||||||
from . import project_task
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
|
|
||||||
from odoo import models, fields
|
|
||||||
|
|
||||||
|
|
||||||
class Task(models.Model):
|
|
||||||
_inherit = "project.task"
|
|
||||||
|
|
||||||
timebox_min_id = fields.Many2one('timebox', string='Timebox Min')
|
|
||||||
timebox_max_id = fields.Many2one('timebox', string='Timebox Max')
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
from odoo import models, fields
|
|
||||||
|
|
||||||
|
|
||||||
class Task(models.Model):
|
|
||||||
_name = "timebox"
|
|
||||||
_description = "Timebox"
|
|
||||||
|
|
||||||
name = fields.Char('name', required=True)
|
|
||||||
sequence = fields.Integer()
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink
|
|
||||||
access_timebox_user,project.timebox.user,model_timebox,,1,0,0,0
|
|
||||||
access_timebox_manager,project.timebox.manager,model_timebox,project.group_project_manager,1,1,1,1
|
|
||||||
|
@@ -1,17 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<odoo>
|
|
||||||
<template id="portal_my_task_timebox" name="My Task: Timebox" inherit_id="project.portal_my_task" priority="40">
|
|
||||||
<xpath expr="//t[@t-set='card_body']/div[hasclass('row','mb-4')]" position="after">
|
|
||||||
<div id="timebox" class="row mb-2">
|
|
||||||
<div class="col-12 col-md-6" t-if="task.timebox_min_id">
|
|
||||||
<strong>Timebox Min:</strong>
|
|
||||||
<span t-field="task.timebox_min_id" />
|
|
||||||
</div>
|
|
||||||
<div class="col-12 col-md-6" t-if="task.timebox_max_id">
|
|
||||||
<strong>Timebox Max:</strong>
|
|
||||||
<span t-field="task.timebox_max_id" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</xpath>
|
|
||||||
</template>
|
|
||||||
</odoo>
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<odoo>
|
|
||||||
<record id="view_task_form2_timebox" model="ir.ui.view">
|
|
||||||
<field name="name">project.task.form.timebox</field>
|
|
||||||
<field name="model">project.task</field>
|
|
||||||
<field name="inherit_id" ref="project.view_task_form2" />
|
|
||||||
<field name="priority" eval="99" />
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<xpath expr="//field[@name='date_deadline']" position="after">
|
|
||||||
<field name="timebox_min_id" widget="selection" />
|
|
||||||
<field name="timebox_max_id" widget="selection" />
|
|
||||||
</xpath>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
</odoo>
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<odoo>
|
|
||||||
|
|
||||||
<record id="timebox_view_tree" model="ir.ui.view">
|
|
||||||
<field name="name">timebox.view.tree</field>
|
|
||||||
<field name="model">timebox</field>
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<tree string="Timeboxes" editable="top" default_order="sequence">
|
|
||||||
<field name="sequence" widget="handle" />
|
|
||||||
<field name="name" />
|
|
||||||
</tree>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="act_timeboxes_list" model="ir.actions.act_window">
|
|
||||||
<field name="name">Timeboxes</field>
|
|
||||||
<field name="res_model">timebox</field>
|
|
||||||
<field name="view_mode">tree</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<menuitem id="menu_timeboxes" action="act_timeboxes_list" parent="project.menu_project_config" sequence="99" name="Timeboxes" />
|
|
||||||
|
|
||||||
</odoo>
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
==============================
|
|
||||||
project_timesheet_funding_wish
|
|
||||||
==============================
|
|
||||||
|
|
||||||
Add a funding wish select field to timesheet line.
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Use Odoo normal procedure to install add-ons to install
|
|
||||||
``project_timesheet_funding_wish``.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In
|
|
||||||
case of trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Images
|
|
||||||
------
|
|
||||||
* Elabore: `Icon <https://elabore.coop/web/image/res.company/1/logo?unique=f3db262>`_.
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
* Stéphan Sainléger <https://github.com/stephansainleger>
|
|
||||||
* Valentin Lab <valentin.lab@kalysto.org>
|
|
||||||
* Nicolas Jeudy <https://github.com/njeudy>
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Elabore (https://elabore.coop)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
This module is maintained by Elabore.
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
from . import models
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
# Copyright 2022 Stéphan Sainléger (Elabore)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
||||||
|
|
||||||
{
|
|
||||||
"name": "project_timesheet_funding_wish",
|
|
||||||
"version": "12.0.1.0.0",
|
|
||||||
"author": "Elabore",
|
|
||||||
"website": "https://github.com/elabore-coop/project-tools",
|
|
||||||
"maintainer": "Stéphan Sainléger",
|
|
||||||
"license": "AGPL-3",
|
|
||||||
"category": "Tools",
|
|
||||||
"summary": "Add a funding wish select field to timesheet line.",
|
|
||||||
"description": """
|
|
||||||
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
||||||
:alt: License: AGPL-3
|
|
||||||
==============================
|
|
||||||
project_timesheet_funding_wish
|
|
||||||
==============================
|
|
||||||
|
|
||||||
Add a funding wish select field to timesheet line.
|
|
||||||
|
|
||||||
Installation
|
|
||||||
============
|
|
||||||
|
|
||||||
Use Odoo normal procedure to install add-ons to install
|
|
||||||
``project_timesheet_funding_wish``.
|
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
Bug Tracker
|
|
||||||
===========
|
|
||||||
|
|
||||||
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In
|
|
||||||
case of trouble, please check there if your issue has already been
|
|
||||||
reported. If you spotted it first, help us smashing it by providing a
|
|
||||||
detailed and welcomed feedback.
|
|
||||||
|
|
||||||
Credits
|
|
||||||
=======
|
|
||||||
|
|
||||||
Images
|
|
||||||
------
|
|
||||||
* Elabore: `Icon <https://elabore.coop/web/image/res.company/1/logo?unique=f3db262>`_.
|
|
||||||
|
|
||||||
Contributors
|
|
||||||
------------
|
|
||||||
* Stéphan Sainléger <https://github.com/stephansainleger>
|
|
||||||
* Valentin Lab <valentin.lab@kalysto.org>
|
|
||||||
* Nicolas Jeudy <https://github.com/njeudy>
|
|
||||||
|
|
||||||
Funders
|
|
||||||
-------
|
|
||||||
The development of this module has been financially supported by:
|
|
||||||
* Elabore (https://elabore.coop)
|
|
||||||
|
|
||||||
|
|
||||||
Maintainer
|
|
||||||
----------
|
|
||||||
This module is maintained by Elabore.
|
|
||||||
|
|
||||||
""",
|
|
||||||
# any module necessary for this one to work correctly
|
|
||||||
"depends": [
|
|
||||||
"base",
|
|
||||||
"hr_timesheet",
|
|
||||||
],
|
|
||||||
"qweb": [
|
|
||||||
# "static/src/xml/*.xml",
|
|
||||||
],
|
|
||||||
"external_dependencies": {
|
|
||||||
"python": [],
|
|
||||||
},
|
|
||||||
# always loaded
|
|
||||||
"data": [
|
|
||||||
"views/hr_timesheet.xml",
|
|
||||||
],
|
|
||||||
# only loaded in demonstration mode
|
|
||||||
"demo": [],
|
|
||||||
"js": [],
|
|
||||||
"css": [],
|
|
||||||
"installable": True,
|
|
||||||
# Install this module automatically if all dependency have been previously
|
|
||||||
# and independently installed. Used for synergetic or glue modules.
|
|
||||||
"auto_install": False,
|
|
||||||
"application": False,
|
|
||||||
}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
This directory should contain the *.po for Odoo translation.
|
|
||||||
@@ -1,65 +0,0 @@
|
|||||||
# Translation of Odoo Server.
|
|
||||||
# This file contains the translation of the following modules:
|
|
||||||
# * project_timesheet_funding_wish
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Odoo Server 14.0\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2022-07-25 17:02+0000\n"
|
|
||||||
"PO-Revision-Date: 2022-07-25 17:02+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: project_timesheet_funding_wish
|
|
||||||
#: model:ir.model,name:project_timesheet_funding_wish.model_account_analytic_line
|
|
||||||
msgid "Analytic Line"
|
|
||||||
msgstr "Ligne analytique"
|
|
||||||
|
|
||||||
#. module: project_timesheet_funding_wish
|
|
||||||
#: model:ir.model.fields,field_description:project_timesheet_funding_wish.field_account_analytic_line__display_name
|
|
||||||
msgid "Display Name"
|
|
||||||
msgstr "Nom affiché"
|
|
||||||
|
|
||||||
#. module: project_timesheet_funding_wish
|
|
||||||
#: model:ir.model.fields.selection,name:project_timesheet_funding_wish.selection__account_analytic_line__funding_wish__free
|
|
||||||
msgid "Free"
|
|
||||||
msgstr "Offert"
|
|
||||||
|
|
||||||
#. module: project_timesheet_funding_wish
|
|
||||||
#: code:addons/project_timesheet_funding_wish/models/hr_timesheet.py:0
|
|
||||||
#: model:ir.model.fields,field_description:project_timesheet_funding_wish.field_account_analytic_line__funding_wish
|
|
||||||
#, python-format
|
|
||||||
msgid "Funding wish"
|
|
||||||
msgstr "Type de financement"
|
|
||||||
|
|
||||||
#. module: project_timesheet_funding_wish
|
|
||||||
#: model:ir.model.fields,field_description:project_timesheet_funding_wish.field_account_analytic_line__id
|
|
||||||
msgid "ID"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. module: project_timesheet_funding_wish
|
|
||||||
#: model:ir.model.fields,field_description:project_timesheet_funding_wish.field_account_analytic_line____last_update
|
|
||||||
msgid "Last Modified on"
|
|
||||||
msgstr "Dernière modification le"
|
|
||||||
|
|
||||||
#. module: project_timesheet_funding_wish
|
|
||||||
#: model:ir.model.fields.selection,name:project_timesheet_funding_wish.selection__account_analytic_line__funding_wish__accepted
|
|
||||||
msgid "Payment accepted"
|
|
||||||
msgstr "Paiement accepté"
|
|
||||||
|
|
||||||
#. module: project_timesheet_funding_wish
|
|
||||||
#: model:ir.model.fields.selection,name:project_timesheet_funding_wish.selection__account_analytic_line__funding_wish__expected
|
|
||||||
msgid "Payment expected"
|
|
||||||
msgstr "Paiement attendu"
|
|
||||||
|
|
||||||
#. module: project_timesheet_funding_wish
|
|
||||||
#: code:addons/project_timesheet_funding_wish/models/hr_timesheet.py:0
|
|
||||||
#: model:ir.model.fields,field_description:project_timesheet_funding_wish.field_account_analytic_line__treated
|
|
||||||
#, python-format
|
|
||||||
msgid "Treated"
|
|
||||||
msgstr "Traité"
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
from . import hr_timesheet
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
from odoo import _, fields, models
|
|
||||||
|
|
||||||
|
|
||||||
class AccountAnalyticLine(models.Model):
|
|
||||||
_inherit = "account.analytic.line"
|
|
||||||
|
|
||||||
funding_wish = fields.Selection(
|
|
||||||
[
|
|
||||||
("free", "Free"),
|
|
||||||
("accepted", "Payment accepted"),
|
|
||||||
("expected", "Payment expected"),
|
|
||||||
],
|
|
||||||
string=_("Funding wish"),
|
|
||||||
copy=False,
|
|
||||||
)
|
|
||||||
treated = fields.Boolean(string=_("Treated"), copy=False)
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<odoo>
|
|
||||||
<record id="hr_timesheet_line_tree_funding_view" model="ir.ui.view">
|
|
||||||
<field name="name">hr.timesheet.line.tree.funding.view</field>
|
|
||||||
<field name="model">account.analytic.line</field>
|
|
||||||
<field name="inherit_id" ref="hr_timesheet.hr_timesheet_line_tree" />
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<xpath expr="//field[@name='date']" position="after">
|
|
||||||
<field name="treated" />
|
|
||||||
<field name="funding_wish" />
|
|
||||||
</xpath>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
<record id="view_task_form2_inherited_funding" model="ir.ui.view">
|
|
||||||
<field name="name">view.task.form2.inherited.funding</field>
|
|
||||||
<field name="model">project.task</field>
|
|
||||||
<field name="inherit_id" ref="hr_timesheet.view_task_form2_inherited" />
|
|
||||||
<field name="arch" type="xml">
|
|
||||||
<xpath expr="//field[@name='timesheet_ids']/tree/field[@name='date']" position="after">
|
|
||||||
<field name="treated" />
|
|
||||||
<field name="funding_wish" />
|
|
||||||
</xpath>
|
|
||||||
</field>
|
|
||||||
</record>
|
|
||||||
|
|
||||||
</odoo>
|
|
||||||
@@ -1,3 +1,2 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from . import models
|
from . import models
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"name": "project_user_default_project",
|
"name": "project_user_default_project",
|
||||||
"version": "12.0.1.0.0",
|
"version": "18.0.1.0.0",
|
||||||
"author": "Elabore",
|
"author": "Elabore",
|
||||||
"website": "https://elabore.coop",
|
"website": "https://elabore.coop",
|
||||||
"maintainer": "Stéphan Sainléger",
|
"maintainer": "Stéphan Sainléger",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Odoo Server 12.0\n"
|
"Project-Id-Version: Odoo Server 14.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-08-25 15:58+0000\n"
|
"POT-Creation-Date: 2022-08-25 15:58+0000\n"
|
||||||
"PO-Revision-Date: 2022-08-25 15:58+0000\n"
|
"PO-Revision-Date: 2022-08-25 15:58+0000\n"
|
||||||
|
|||||||
Reference in New Issue
Block a user