forked from Techsystech/web
Compare commits
No commits in common. "17.0" and "18.0" have entirely different histories.
|
@ -1,9 +1,10 @@
|
|||
# Do NOT update manually; changes here will be overwritten by Copier
|
||||
_commit: v1.24
|
||||
_src_path: gh:oca/oca-addons-repo-template
|
||||
_commit: v1.27
|
||||
_src_path: git+https://github.com/OCA/oca-addons-repo-template
|
||||
additional_ruff_rules: []
|
||||
ci: GitHub
|
||||
convert_readme_fragments_to_markdown: true
|
||||
enable_checklog_odoo: true
|
||||
generate_requirements_txt: true
|
||||
github_check_license: true
|
||||
github_ci_extra_env: {}
|
||||
|
@ -13,11 +14,11 @@ github_enable_stale_action: true
|
|||
github_enforce_dev_status_compatibility: true
|
||||
include_wkhtmltopdf: false
|
||||
odoo_test_flavor: Both
|
||||
odoo_version: 17.0
|
||||
odoo_version: 18.0
|
||||
org_name: Odoo Community Association (OCA)
|
||||
org_slug: OCA
|
||||
rebel_module_groups: []
|
||||
repo_description: 'TODO: add repo description.'
|
||||
repo_description: web
|
||||
repo_name: web
|
||||
repo_slug: web
|
||||
repo_website: https://github.com/OCA/web
|
||||
|
|
188
.eslintrc.yml
188
.eslintrc.yml
|
@ -1,188 +0,0 @@
|
|||
env:
|
||||
browser: true
|
||||
es6: true
|
||||
|
||||
# See https://github.com/OCA/odoo-community.org/issues/37#issuecomment-470686449
|
||||
parserOptions:
|
||||
ecmaVersion: 2022
|
||||
|
||||
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
|
|
@ -3,11 +3,11 @@ name: pre-commit
|
|||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "17.0*"
|
||||
- "18.0*"
|
||||
push:
|
||||
branches:
|
||||
- "17.0"
|
||||
- "17.0-ocabot-*"
|
||||
- "18.0"
|
||||
- "18.0-ocabot-*"
|
||||
|
||||
jobs:
|
||||
pre-commit:
|
||||
|
|
|
@ -3,11 +3,11 @@ name: tests
|
|||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "17.0*"
|
||||
- "18.0*"
|
||||
push:
|
||||
branches:
|
||||
- "17.0"
|
||||
- "17.0-ocabot-*"
|
||||
- "18.0"
|
||||
- "18.0-ocabot-*"
|
||||
|
||||
jobs:
|
||||
unreleased-deps:
|
||||
|
@ -35,9 +35,9 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- container: ghcr.io/oca/oca-ci/py3.10-odoo17.0:latest
|
||||
- container: ghcr.io/oca/oca-ci/py3.10-odoo18.0:latest
|
||||
name: test with Odoo
|
||||
- container: ghcr.io/oca/oca-ci/py3.10-ocb17.0:latest
|
||||
- container: ghcr.io/oca/oca-ci/py3.10-ocb18.0:latest
|
||||
name: test with OCB
|
||||
makepot: "true"
|
||||
services:
|
||||
|
@ -49,6 +49,8 @@ jobs:
|
|||
POSTGRES_DB: odoo
|
||||
ports:
|
||||
- 5432:5432
|
||||
env:
|
||||
OCA_ENABLE_CHECKLOG_ODOO: "1"
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
|
|
|
@ -25,6 +25,9 @@ var/
|
|||
*.egg
|
||||
*.eggs
|
||||
|
||||
# Windows installers
|
||||
*.msi
|
||||
|
||||
# Debian packages
|
||||
*.deb
|
||||
|
||||
|
@ -33,6 +36,7 @@ var/
|
|||
|
||||
# MacOS packages
|
||||
*.dmg
|
||||
*.pkg
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
|
|
|
@ -5,7 +5,7 @@ exclude: |
|
|||
# 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/|
|
||||
.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)
|
||||
|
@ -22,7 +22,7 @@ exclude: |
|
|||
(LICENSE.*|COPYING.*)
|
||||
default_language_version:
|
||||
python: python3
|
||||
node: "16.17.0"
|
||||
node: "22.9.0"
|
||||
repos:
|
||||
- repo: local
|
||||
hooks:
|
||||
|
@ -39,11 +39,11 @@ repos:
|
|||
language: fail
|
||||
files: '[a-zA-Z0-9_]*/i18n/en\.po$'
|
||||
- repo: https://github.com/sbidoul/whool
|
||||
rev: v0.5
|
||||
rev: v1.2
|
||||
hooks:
|
||||
- id: whool-init
|
||||
- repo: https://github.com/oca/maintainer-tools
|
||||
rev: d5fab7ee87fceee858a3d01048c78a548974d935
|
||||
rev: bf9ecb9938b6a5deca0ff3d870fbd3f33341fded
|
||||
hooks:
|
||||
# update the NOT INSTALLABLE ADDONS section above
|
||||
- id: oca-update-pre-commit-excluded-addons
|
||||
|
@ -52,7 +52,7 @@ repos:
|
|||
- id: oca-gen-addon-readme
|
||||
args:
|
||||
- --addons-dir=.
|
||||
- --branch=17.0
|
||||
- --branch=18.0
|
||||
- --org-name=OCA
|
||||
- --repo-name=web
|
||||
- --if-source-changed
|
||||
|
@ -60,31 +60,43 @@ repos:
|
|||
- --convert-fragments-to-markdown
|
||||
- id: oca-gen-external-dependencies
|
||||
- repo: https://github.com/OCA/odoo-pre-commit-hooks
|
||||
rev: v0.0.25
|
||||
rev: v0.0.33
|
||||
hooks:
|
||||
- id: oca-checks-odoo-module
|
||||
- id: oca-checks-po
|
||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||
rev: v2.7.1
|
||||
args:
|
||||
- --disable=po-pretty-format
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: prettier
|
||||
name: prettier (with plugin-xml)
|
||||
additional_dependencies:
|
||||
- "prettier@2.7.1"
|
||||
- "@prettier/plugin-xml@2.2.0"
|
||||
entry: prettier
|
||||
args:
|
||||
- --plugin=@prettier/plugin-xml
|
||||
- --write
|
||||
- --list-different
|
||||
- --ignore-unknown
|
||||
types: [text]
|
||||
files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$
|
||||
- repo: https://github.com/pre-commit/mirrors-eslint
|
||||
rev: v8.24.0
|
||||
language: node
|
||||
additional_dependencies:
|
||||
- "prettier@3.3.3"
|
||||
- "@prettier/plugin-xml@3.4.1"
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: eslint
|
||||
verbose: true
|
||||
name: eslint
|
||||
entry: eslint
|
||||
args:
|
||||
- --color
|
||||
- --fix
|
||||
verbose: true
|
||||
types: [javascript]
|
||||
language: node
|
||||
additional_dependencies:
|
||||
- "eslint@9.12.0"
|
||||
- "eslint-plugin-jsdoc@50.3.1"
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.3.0
|
||||
rev: v4.6.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
# exclude autogenerated files
|
||||
|
@ -106,13 +118,13 @@ repos:
|
|||
- id: mixed-line-ending
|
||||
args: ["--fix=lf"]
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
rev: v0.1.3
|
||||
rev: v0.6.8
|
||||
hooks:
|
||||
- id: ruff
|
||||
args: [--fix, --exit-non-zero-on-fix]
|
||||
- id: ruff-format
|
||||
- repo: https://github.com/OCA/pylint-odoo
|
||||
rev: v9.0.4
|
||||
rev: v9.1.3
|
||||
hooks:
|
||||
- id: pylint_odoo
|
||||
name: pylint with optional checks
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
# 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"
|
|
@ -10,7 +10,7 @@ manifest-required-authors=Odoo Community Association (OCA)
|
|||
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=17.0
|
||||
valid-odoo-versions=18.0
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
disable=all
|
||||
|
|
|
@ -9,7 +9,7 @@ manifest-required-authors=Odoo Community Association (OCA)
|
|||
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=17.0
|
||||
valid-odoo-versions=18.0
|
||||
|
||||
[MESSAGES CONTROL]
|
||||
disable=all
|
||||
|
|
|
@ -15,16 +15,16 @@ exclude = ["setup/*"]
|
|||
[format]
|
||||
exclude = ["setup/*"]
|
||||
|
||||
[per-file-ignores]
|
||||
[lint.per-file-ignores]
|
||||
"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py
|
||||
"__manifest__.py" = ["B018"] # useless expression
|
||||
|
||||
[isort]
|
||||
[lint.isort]
|
||||
section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"]
|
||||
|
||||
[isort.sections]
|
||||
[lint.isort.sections]
|
||||
"odoo" = ["odoo"]
|
||||
"odoo-addons" = ["odoo.addons"]
|
||||
|
||||
[mccabe]
|
||||
[lint.mccabe]
|
||||
max-complexity = 16
|
||||
|
|
46
README.md
46
README.md
|
@ -1,15 +1,15 @@
|
|||
|
||||
[](https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0)
|
||||
[](https://github.com/OCA/web/actions/workflows/pre-commit.yml?query=branch%3A17.0)
|
||||
[](https://github.com/OCA/web/actions/workflows/test.yml?query=branch%3A17.0)
|
||||
[](https://codecov.io/gh/OCA/web)
|
||||
[](https://translation.odoo-community.org/engage/web-17-0/?utm_source=widget)
|
||||
[](https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=18.0)
|
||||
[](https://github.com/OCA/web/actions/workflows/pre-commit.yml?query=branch%3A18.0)
|
||||
[](https://github.com/OCA/web/actions/workflows/test.yml?query=branch%3A18.0)
|
||||
[](https://codecov.io/gh/OCA/web)
|
||||
[](https://translation.odoo-community.org/engage/web-18-0/?utm_source=widget)
|
||||
|
||||
<!-- /!\ do not modify above this line -->
|
||||
|
||||
# web
|
||||
|
||||
TODO: add repo description.
|
||||
web
|
||||
|
||||
<!-- /!\ do not modify below this line -->
|
||||
|
||||
|
@ -21,34 +21,12 @@ Available addons
|
|||
----------------
|
||||
addon | version | maintainers | summary
|
||||
--- | --- | --- | ---
|
||||
[web_calendar_slot_duration](web_calendar_slot_duration/) | 17.0.1.0.0 | [](https://github.com/Yajo) | Customizable calendar slot durations
|
||||
[web_chatter_position](web_chatter_position/) | 17.0.1.0.1 | [](https://github.com/trisdoan) | Add an option to change the chatter position
|
||||
[web_dialog_size](web_dialog_size/) | 17.0.1.0.0 | | A module that lets the user expand a dialog box to the full screen width.
|
||||
[web_editor_class_selector](web_editor_class_selector/) | 17.0.1.0.0 | | Web editor class selector
|
||||
[web_environment_ribbon](web_environment_ribbon/) | 17.0.1.0.2 | | Web Environment Ribbon
|
||||
[web_favicon](web_favicon/) | 17.0.1.0.2 | | Allows to set a custom shortcut icon (aka favicon)
|
||||
[web_field_tooltip](web_field_tooltip/) | 17.0.1.0.0 | | Displays customizable tooltips for fields
|
||||
[web_group_expand](web_group_expand/) | 17.0.1.0.0 | | Group Expand Buttons
|
||||
[web_m2x_options](web_m2x_options/) | 17.0.1.0.5 | | web_m2x_options
|
||||
[web_no_bubble](web_no_bubble/) | 17.0.1.0.0 | | Remove the bubbles from the web interface
|
||||
[web_notify](web_notify/) | 17.0.1.0.0 | | Send notification messages to user
|
||||
[web_refresher](web_refresher/) | 17.0.1.1.2 | | Web Refresher
|
||||
[web_remember_tree_column_width](web_remember_tree_column_width/) | 17.0.1.0.0 | [](https://github.com/frahikLV) [](https://github.com/luisg123v) [](https://github.com/cuongnmtm) | Remember the tree columns' widths across sessions.
|
||||
[web_responsive](web_responsive/) | 17.0.1.1.3 | [](https://github.com/Tardo) [](https://github.com/SplashS) | Responsive web client, community-supported
|
||||
[web_theme_classic](web_theme_classic/) | 17.0.1.0.0 | [](https://github.com/legalsylvain) | Contrasted style on fields to improve the UI.
|
||||
[web_time_range_menu_custom](web_time_range_menu_custom/) | 17.0.1.0.0 | | Web Time Range Menu Custom
|
||||
[web_timeline](web_timeline/) | 17.0.1.0.1 | [](https://github.com/tarteo) | Interactive visualization chart to show events in time
|
||||
[web_tree_dynamic_colored_field](web_tree_dynamic_colored_field/) | 17.0.1.0.0 | | Allows you to dynamically color fields on tree views
|
||||
[web_tree_many2one_clickable](web_tree_many2one_clickable/) | 17.0.1.0.0 | | Open the linked resource when clicking on their name
|
||||
[web_widget_bokeh_chart](web_widget_bokeh_chart/) | 17.0.1.0.0 | [](https://github.com/LoisRForgeFlow) [](https://github.com/ChrisOForgeFlow) | This widget allows to display charts using Bokeh library.
|
||||
[web_widget_domain_editor_dialog](web_widget_domain_editor_dialog/) | 17.0.1.0.0 | | Recovers the Domain Editor Dialog functionality
|
||||
[web_widget_dropdown_dynamic](web_widget_dropdown_dynamic/) | 17.0.1.0.0 | | This module adds support for dynamic dropdown widget
|
||||
[web_widget_image_download](web_widget_image_download/) | 17.0.1.0.0 | | Allows to download any image from its widget
|
||||
[web_widget_numeric_step](web_widget_numeric_step/) | 17.0.1.0.0 | [](https://github.com/rafaelbn) [](https://github.com/yajo) | Web Widget Numeric Step
|
||||
[web_widget_open_tab](web_widget_open_tab/) | 17.0.1.0.0 | | Allow to open record from trees on new tab from tree views
|
||||
[web_widget_plotly_chart](web_widget_plotly_chart/) | 17.0.1.0.0 | [](https://github.com/robyf70) | Allow to draw plotly charts.
|
||||
[web_widget_url_advanced](web_widget_url_advanced/) | 17.0.1.0.0 | | This module extends URL widget for displaying anchors with custom labels.
|
||||
[web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 17.0.1.0.0 | [](https://github.com/ChrisOForgeFlow) | Show list fields as a matrix
|
||||
[web_environment_ribbon](web_environment_ribbon/) | 18.0.1.0.1 | | Web Environment Ribbon
|
||||
[web_no_bubble](web_no_bubble/) | 18.0.1.0.0 | | Remove the bubbles from the web interface
|
||||
[web_notify](web_notify/) | 18.0.1.0.1 | | Send notification messages to user
|
||||
[web_pivot_computed_measure](web_pivot_computed_measure/) | 18.0.1.0.1 | [](https://github.com/CarlosRoca13) | Web Pivot Computed Measure
|
||||
[web_tree_dynamic_colored_field](web_tree_dynamic_colored_field/) | 18.0.1.0.1 | | Allows you to dynamically color fields on tree views
|
||||
[web_tree_many2one_clickable](web_tree_many2one_clickable/) | 18.0.1.0.1 | | Open the linked resource when clicking on their name
|
||||
|
||||
[//]: # (end addons)
|
||||
|
||||
|
|
|
@ -0,0 +1,202 @@
|
|||
jsdoc = require("eslint-plugin-jsdoc");
|
||||
|
||||
const config = [{
|
||||
plugins: {
|
||||
jsdoc,
|
||||
},
|
||||
|
||||
languageOptions: {
|
||||
globals: {
|
||||
_: "readonly",
|
||||
$: "readonly",
|
||||
fuzzy: "readonly",
|
||||
jQuery: "readonly",
|
||||
moment: "readonly",
|
||||
odoo: "readonly",
|
||||
openerp: "readonly",
|
||||
owl: "readonly",
|
||||
luxon: "readonly",
|
||||
},
|
||||
|
||||
ecmaVersion: 2024,
|
||||
sourceType: "script",
|
||||
},
|
||||
|
||||
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",
|
||||
|
||||
"jsdoc/check-tag-names": "warn",
|
||||
"jsdoc/check-types": "warn",
|
||||
"jsdoc/require-param-description": "off",
|
||||
"jsdoc/require-return": "off",
|
||||
"jsdoc/require-return-description": "off",
|
||||
"jsdoc/require-return-type": "off",
|
||||
|
||||
"valid-typeof": "warn",
|
||||
yoda: "warn",
|
||||
},
|
||||
|
||||
settings: {
|
||||
jsdoc: {
|
||||
tagNamePreference: {
|
||||
arg: "param",
|
||||
argument: "param",
|
||||
augments: "extends",
|
||||
constructor: "class",
|
||||
exception: "throws",
|
||||
func: "function",
|
||||
method: "function",
|
||||
prop: "property",
|
||||
return: "returns",
|
||||
virtual: "abstract",
|
||||
yield: "yields",
|
||||
},
|
||||
preferredTypes: {
|
||||
array: "Array",
|
||||
bool: "Boolean",
|
||||
boolean: "Boolean",
|
||||
number: "Number",
|
||||
object: "Object",
|
||||
str: "String",
|
||||
string: "String",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
}, {
|
||||
files: ["**/*.esm.js"],
|
||||
|
||||
languageOptions: {
|
||||
ecmaVersion: 2024,
|
||||
sourceType: "module",
|
||||
},
|
||||
}];
|
||||
|
||||
module.exports = config
|
|
@ -0,0 +1,14 @@
|
|||
/** @type {import('prettier').Config} */
|
||||
|
||||
const config = {
|
||||
// https://github.com/prettier/prettier/issues/15388#issuecomment-1717746872
|
||||
plugins: [require.resolve("@prettier/plugin-xml")],
|
||||
bracketSpacing: false,
|
||||
printWidth: 88,
|
||||
proseWrap: "always",
|
||||
semi: true,
|
||||
trailingComma: "es5",
|
||||
xmlWhitespaceSensitivity: "preserve",
|
||||
};
|
||||
|
||||
module.exports = config;
|
|
@ -1,3 +0,0 @@
|
|||
# generated from manifests external_dependencies
|
||||
bokeh==3.4.1
|
||||
plotly==5.22.0
|
|
@ -1,38 +1,16 @@
|
|||
[project]
|
||||
name = "odoo-addons-oca-web"
|
||||
version = "17.0.20241211.0"
|
||||
version = "18.0.20241226.0"
|
||||
dependencies = [
|
||||
"odoo-addon-web_calendar_slot_duration>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_chatter_position>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_dialog_size>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_editor_class_selector>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_environment_ribbon>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_favicon>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_field_tooltip>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_group_expand>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_m2x_options>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_no_bubble>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_notify>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_refresher>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_remember_tree_column_width>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_responsive>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_theme_classic>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_time_range_menu_custom>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_timeline>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_tree_dynamic_colored_field>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_tree_many2one_clickable>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_bokeh_chart>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_domain_editor_dialog>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_dropdown_dynamic>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_image_download>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_numeric_step>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_open_tab>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_plotly_chart>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_url_advanced>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_widget_x2many_2d_matrix>=17.0dev,<17.1dev",
|
||||
"odoo-addon-web_environment_ribbon==18.0.*",
|
||||
"odoo-addon-web_no_bubble==18.0.*",
|
||||
"odoo-addon-web_notify==18.0.*",
|
||||
"odoo-addon-web_pivot_computed_measure==18.0.*",
|
||||
"odoo-addon-web_tree_dynamic_colored_field==18.0.*",
|
||||
"odoo-addon-web_tree_many2one_clickable==18.0.*",
|
||||
]
|
||||
classifiers=[
|
||||
"Programming Language :: Python",
|
||||
"Framework :: Odoo",
|
||||
"Framework :: Odoo :: 17.0",
|
||||
"Framework :: Odoo :: 18.0",
|
||||
]
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
odoo-test-helper
|
|
@ -1,127 +0,0 @@
|
|||
======================
|
||||
Calendar slot duration
|
||||
======================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:2be0b00f67ed141f98a951795ae0ba21a2912b90c42a00ed2ce136cee2def017
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Production/Stable
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
||||
:alt: License: LGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/web/tree/17.0/web_calendar_slot_duration
|
||||
:alt: OCA/web
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/web-17-0/web-17-0-web_calendar_slot_duration
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This module extends the functionality of backend calendars to support
|
||||
custom slot durations and to allow you to provide more specific UX
|
||||
regarding event duration and snapping.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
This documentation is for developers.
|
||||
|
||||
If you want to configure your calendar view's snap duration, make sure
|
||||
that your window action includes a context similar to this (example is
|
||||
the default value):
|
||||
|
||||
::
|
||||
|
||||
{"calendar_slot_duration": "00:30:00"}
|
||||
|
||||
It can be added in actions defined on python or as
|
||||
``ir.actions.act_window`` records.
|
||||
|
||||
|edit action settings|
|
||||
|
||||
|result|
|
||||
|
||||
.. |edit action settings| image:: https://raw.githubusercontent.com/OCA/web/17.0/web_calendar_slot_duration/static/description/edit_action.png
|
||||
.. |result| image:: https://raw.githubusercontent.com/OCA/web/17.0/web_calendar_slot_duration/static/description/calendar_result.png
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
To use this module, you need to install some other addon that uses it,
|
||||
as it doesn't provide any end-user functionality.
|
||||
|
||||
As demo data, this module modifies the "Scheduled Actions" calendar to
|
||||
have slots of 10 minutes as feature demonstration.
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
- Drop module if/when https://github.com/odoo/odoo/pull/66739 is
|
||||
merged.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_calendar_slot_duration%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
-------
|
||||
|
||||
* Tecnativa
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
- `Tecnativa <https://www.tecnativa.com>`__:
|
||||
|
||||
- Jairo Llopis
|
||||
- Stefan Ungureanu
|
||||
|
||||
Maintainers
|
||||
-----------
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
.. |maintainer-Yajo| image:: https://github.com/Yajo.png?size=40px
|
||||
:target: https://github.com/Yajo
|
||||
:alt: Yajo
|
||||
|
||||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
||||
|
||||
|maintainer-Yajo|
|
||||
|
||||
This module is part of the `OCA/web <https://github.com/OCA/web/tree/17.0/web_calendar_slot_duration>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@ -1,23 +0,0 @@
|
|||
# Copyright 2021 Tecnativa - Jairo Llopis
|
||||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
|
||||
{
|
||||
"name": "Calendar slot duration",
|
||||
"summary": "Customizable calendar slot durations",
|
||||
"version": "17.0.1.0.0",
|
||||
"development_status": "Production/Stable",
|
||||
"category": "Extra Tools",
|
||||
"website": "https://github.com/OCA/web",
|
||||
"author": "Tecnativa, Odoo Community Association (OCA)",
|
||||
"maintainers": ["Yajo"],
|
||||
"license": "LGPL-3",
|
||||
"application": False,
|
||||
"installable": True,
|
||||
"assets": {
|
||||
"web.assets_backend": [
|
||||
"web_calendar_slot_duration/static/src/js/calendar_common_renderer.esm.js",
|
||||
"web_calendar_slot_duration/static/src/js/calendar_model.esm.js",
|
||||
]
|
||||
},
|
||||
"data": ["demo/scheduled_actions.xml"],
|
||||
"depends": ["web"],
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="base.ir_cron_act" model="ir.actions.act_window">
|
||||
<field
|
||||
name="context"
|
||||
>{'search_default_all': 1, "calendar_slot_duration": "00:10:00"}</field>
|
||||
</record>
|
||||
</odoo>
|
|
@ -1,13 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
|
@ -1,14 +0,0 @@
|
|||
This documentation is for developers.
|
||||
|
||||
If you want to configure your calendar view's snap duration, make sure
|
||||
that your window action includes a context similar to this (example is the
|
||||
default value):
|
||||
|
||||
{"calendar_slot_duration": "00:30:00"}
|
||||
|
||||
It can be added in actions defined on python or as
|
||||
`ir.actions.act_window` records.
|
||||
|
||||

|
||||
|
||||

|
|
@ -1,3 +0,0 @@
|
|||
- [Tecnativa](https://www.tecnativa.com):
|
||||
- Jairo Llopis
|
||||
- Stefan Ungureanu
|
|
@ -1,3 +0,0 @@
|
|||
This module extends the functionality of backend calendars to support
|
||||
custom slot durations and to allow you to provide more specific UX
|
||||
regarding event duration and snapping.
|
|
@ -1,2 +0,0 @@
|
|||
- Drop module if/when <https://github.com/odoo/odoo/pull/66739> is
|
||||
merged.
|
|
@ -1,4 +0,0 @@
|
|||
To use this module, you need to install some other addon that uses it,
|
||||
as it doesn't provide any end-user functionality.
|
||||
|
||||
As demo data, this module modifies the "Scheduled Actions" calendar to have slots of 10 minutes as feature demonstration.
|
Binary file not shown.
Before Width: | Height: | Size: 2.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 15 KiB |
|
@ -1,459 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<title>Calendar slot duration</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="calendar-slot-duration">
|
||||
<h1 class="title">Calendar slot duration</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:2be0b00f67ed141f98a951795ae0ba21a2912b90c42a00ed2ce136cee2def017
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/17.0/web_calendar_slot_duration"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-17-0/web-17-0-web_calendar_slot_duration"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module extends the functionality of backend calendars to support
|
||||
custom slot durations and to allow you to provide more specific UX
|
||||
regarding event duration and snapping.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#configuration" id="toc-entry-1">Configuration</a></li>
|
||||
<li><a class="reference internal" href="#usage" id="toc-entry-2">Usage</a></li>
|
||||
<li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-3">Known issues / Roadmap</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-4">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-5">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-6">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-7">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-8">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="configuration">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Configuration</a></h1>
|
||||
<p>This documentation is for developers.</p>
|
||||
<p>If you want to configure your calendar view’s snap duration, make sure
|
||||
that your window action includes a context similar to this (example is
|
||||
the default value):</p>
|
||||
<pre class="literal-block">
|
||||
{"calendar_slot_duration": "00:30:00"}
|
||||
</pre>
|
||||
<p>It can be added in actions defined on python or as
|
||||
<tt class="docutils literal">ir.actions.act_window</tt> records.</p>
|
||||
<p><img alt="edit action settings" src="https://raw.githubusercontent.com/OCA/web/17.0/web_calendar_slot_duration/static/description/edit_action.png" /></p>
|
||||
<p><img alt="result" src="https://raw.githubusercontent.com/OCA/web/17.0/web_calendar_slot_duration/static/description/calendar_result.png" /></p>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Usage</a></h1>
|
||||
<p>To use this module, you need to install some other addon that uses it,
|
||||
as it doesn’t provide any end-user functionality.</p>
|
||||
<p>As demo data, this module modifies the “Scheduled Actions” calendar to
|
||||
have slots of 10 minutes as feature demonstration.</p>
|
||||
</div>
|
||||
<div class="section" id="known-issues-roadmap">
|
||||
<h1><a class="toc-backref" href="#toc-entry-3">Known issues / Roadmap</a></h1>
|
||||
<ul class="simple">
|
||||
<li>Drop module if/when <a class="reference external" href="https://github.com/odoo/odoo/pull/66739">https://github.com/odoo/odoo/pull/66739</a> is
|
||||
merged.</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-4">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/web/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_calendar_slot_duration%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#toc-entry-5">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Tecnativa</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-7">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li><a class="reference external" href="https://www.tecnativa.com">Tecnativa</a>:<ul>
|
||||
<li>Jairo Llopis</li>
|
||||
<li>Stefan Ungureanu</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
||||
<p><a class="reference external image-reference" href="https://github.com/Yajo"><img alt="Yajo" src="https://github.com/Yajo.png?size=40px" /></a></p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/17.0/web_calendar_slot_duration">OCA/web</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,16 +0,0 @@
|
|||
/** @odoo-module **/
|
||||
/* Copyright 2023 Tecnativa - Stefan Ungureanu
|
||||
* License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). */
|
||||
|
||||
import {CalendarCommonRenderer} from "@web/views/calendar/calendar_common/calendar_common_renderer";
|
||||
import {patch} from "@web/core/utils/patch";
|
||||
|
||||
patch(CalendarCommonRenderer.prototype, {
|
||||
get options() {
|
||||
const options = super.options;
|
||||
if (this.env.searchModel.context.calendar_slot_duration) {
|
||||
options.slotDuration = this.env.searchModel.context.calendar_slot_duration;
|
||||
}
|
||||
return options;
|
||||
},
|
||||
});
|
|
@ -1,25 +0,0 @@
|
|||
/** @odoo-module **/
|
||||
/* Copyright 2023 Tecnativa - Stefan Ungureanu
|
||||
|
||||
* License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). */
|
||||
|
||||
import {CalendarModel} from "@web/views/calendar/calendar_model";
|
||||
import {patch} from "@web/core/utils/patch";
|
||||
|
||||
patch(CalendarModel.prototype, {
|
||||
buildRawRecord(partialRecord, options = {}) {
|
||||
if (
|
||||
!partialRecord.end &&
|
||||
this.env.searchModel.context.calendar_slot_duration &&
|
||||
!partialRecord.isAllDay
|
||||
) {
|
||||
const slot_duration = this.env.searchModel.context.calendar_slot_duration;
|
||||
const [hours, minutes, seconds] = slot_duration
|
||||
.match(/(\d+):(\d+):(\d+)/)
|
||||
.slice(1, 4);
|
||||
const durationFloat = hours + minutes / 60 + seconds / 3600;
|
||||
partialRecord.end = partialRecord.start.plus({hours: durationFloat});
|
||||
}
|
||||
return super.buildRawRecord(partialRecord, options);
|
||||
},
|
||||
});
|
|
@ -1,106 +0,0 @@
|
|||
================
|
||||
Chatter Position
|
||||
================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:37fa43641cb746a03b8cb4f0492784abb34e5b511d0d318013dcee341b792da4
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
|
||||
:alt: License: LGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/web/tree/17.0/web_chatter_position
|
||||
:alt: OCA/web
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/web-17-0/web-17-0-web_chatter_position
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
Configurable chatter position from the user preferences.
|
||||
|
||||
Supports Both Community & Enterprise Edition.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
#. There's a **Chatter Position** option in **User Preferences**, where
|
||||
you can choose between ``auto``, ``bottom`` and ``sided``.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_chatter_position%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
-------
|
||||
|
||||
* Hynsys Technologies
|
||||
* Camptocamp
|
||||
* Alitec Pte Ltd
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
- Hynsys Technologies <hynsystechnologies@gmail.com>
|
||||
- Juan Miguel Sánchez Arce <juan.sanchez@camptocamp.com>
|
||||
- `Camptocamp <https://www.camptocamp.com>`__
|
||||
|
||||
- Iván Todorovich <ivan.todorovich@camptocamp.com>
|
||||
|
||||
- `Alitec Pte Ltd <http://www.alitec.sg>`__
|
||||
|
||||
- Jay Patel <jay@alitec.sg>
|
||||
|
||||
- Trobz
|
||||
|
||||
- Tris Doan <tridm@trobz.com>
|
||||
|
||||
Maintainers
|
||||
-----------
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
.. |maintainer-trisdoan| image:: https://github.com/trisdoan.png?size=40px
|
||||
:target: https://github.com/trisdoan
|
||||
:alt: trisdoan
|
||||
|
||||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
||||
|
||||
|maintainer-trisdoan|
|
||||
|
||||
This module is part of the `OCA/web <https://github.com/OCA/web/tree/17.0/web_chatter_position>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@ -1 +0,0 @@
|
|||
from . import models
|
|
@ -1,23 +0,0 @@
|
|||
# Copyright 2022 Hynsys Technologies
|
||||
# Copyright 2024 Alitec Pte Ltd
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
|
||||
{
|
||||
"name": "Chatter Position",
|
||||
"summary": "Add an option to change the chatter position",
|
||||
"version": "17.0.1.0.1",
|
||||
"author": "Hynsys Technologies, Camptocamp, Alitec Pte Ltd, "
|
||||
"Odoo Community Association (OCA)",
|
||||
"maintainers": ["trisdoan"],
|
||||
"website": "https://github.com/OCA/web",
|
||||
"license": "LGPL-3",
|
||||
"category": "Extra Tools",
|
||||
"depends": ["web", "mail"],
|
||||
"data": ["views/res_users.xml", "views/web.xml"],
|
||||
"assets": {
|
||||
"web.assets_backend": [
|
||||
"/web_chatter_position/static/src/**/*.js",
|
||||
"/web_chatter_position/static/src/**/*.scss",
|
||||
],
|
||||
},
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-20 12:34+0000\n"
|
||||
"Last-Translator: pere-aquarian <pere@aquarian.tech>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "Abaix"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Posició del chatter"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Responsiu"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr "Al costat"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuari/ària"
|
|
@ -1,42 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-12-20 02:38+0000\n"
|
||||
"Last-Translator: jappi00 <jappi2000@ewetel.net>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "Unten"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Chatter-Position"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Responsiv"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr "Seitlich"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
|
@ -1,42 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-07-20 10:15+0000\n"
|
||||
"Last-Translator: kikopeiro <francisco.peiro@factorlibre.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "Abajo"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Posición del historial de comunicación"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Adaptativo"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr "Lateral"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
|
@ -1,42 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-03-13 14:23+0000\n"
|
||||
"Last-Translator: Rémi <remi@le-filament.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "En bas"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Position du Chatter"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Automatique"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr "A droite"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
|
@ -1,43 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-04-03 13:22+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "Na dnu"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Pozicija razgovora"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Responzivno"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr "Sa strane"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
|
@ -1,42 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-27 11:34+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "In basso"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Posizione conversazione"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Responsive"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr "Laterale"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
|
@ -1,42 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-08-07 16:10+0000\n"
|
||||
"Last-Translator: \"Jan Tapper [Onestein]\" <j.tapper@onestein.nl>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "Onderkant"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Chatter-positie"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Snel reagerend"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr "Zijdelings"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
|
@ -1,42 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-10-11 14:37+0000\n"
|
||||
"Last-Translator: Adriano Prado <adrianojprado@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "Em Baixo"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Posição da Conversa"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Responsivo"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr "Lateral"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
|
@ -1,42 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-03-06 20:08+0000\n"
|
||||
"Last-Translator: Ediz Duman <neps1192@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr "Alt"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr "Sohbet Pozisyonu"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr "Esnek"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
|
@ -1,39 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_chatter_position
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__bottom
|
||||
msgid "Bottom"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields,field_description:web_chatter_position.field_res_users__chatter_position
|
||||
msgid "Chatter Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__auto
|
||||
msgid "Responsive"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model.fields.selection,name:web_chatter_position.selection__res_users__chatter_position__sided
|
||||
msgid "Sided"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_chatter_position
|
||||
#: model:ir.model,name:web_chatter_position.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
|
@ -1 +0,0 @@
|
|||
from . import res_users
|
|
@ -1,25 +0,0 @@
|
|||
# Copyright 2022 Hynsys Technologies
|
||||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = "res.users"
|
||||
|
||||
chatter_position = fields.Selection(
|
||||
[
|
||||
("auto", "Responsive"),
|
||||
("bottom", "Bottom"),
|
||||
("sided", "Sided"),
|
||||
],
|
||||
default="auto",
|
||||
)
|
||||
|
||||
@property
|
||||
def SELF_READABLE_FIELDS(self):
|
||||
return super().SELF_READABLE_FIELDS + ["chatter_position"]
|
||||
|
||||
@property
|
||||
def SELF_WRITEABLE_FIELDS(self):
|
||||
return super().SELF_WRITEABLE_FIELDS + ["chatter_position"]
|
|
@ -1,3 +0,0 @@
|
|||
[build-system]
|
||||
requires = ["whool"]
|
||||
build-backend = "whool.buildapi"
|
|
@ -1,8 +0,0 @@
|
|||
- Hynsys Technologies \<<hynsystechnologies@gmail.com>\>
|
||||
- Juan Miguel Sánchez Arce \<<juan.sanchez@camptocamp.com>\>
|
||||
- [Camptocamp](https://www.camptocamp.com)
|
||||
- Iván Todorovich \<<ivan.todorovich@camptocamp.com>\>
|
||||
- [Alitec Pte Ltd](http://www.alitec.sg)
|
||||
- Jay Patel \<<jay@alitec.sg>\>
|
||||
- Trobz
|
||||
- Tris Doan \<<tridm@trobz.com>\>
|
|
@ -1,3 +0,0 @@
|
|||
Configurable chatter position from the user preferences.
|
||||
|
||||
Supports Both Community & Enterprise Edition.
|
|
@ -1,2 +0,0 @@
|
|||
#\. There's a **Chatter Position** option in **User Preferences**, where
|
||||
you can choose between `auto`, `bottom` and `sided`.
|
Binary file not shown.
Before Width: | Height: | Size: 9.2 KiB |
|
@ -1,447 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<title>Chatter Position</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
Despite the name, some widely supported CSS2 features are used.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: gray; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic, pre.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="chatter-position">
|
||||
<h1 class="title">Chatter Position</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:37fa43641cb746a03b8cb4f0492784abb34e5b511d0d318013dcee341b792da4
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/17.0/web_chatter_position"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-17-0/web-17-0-web_chatter_position"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>Configurable chatter position from the user preferences.</p>
|
||||
<p>Supports Both Community & Enterprise Edition.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-2">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-4">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-5">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-6">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="usage">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
||||
<p>#. There’s a <strong>Chatter Position</strong> option in <strong>User Preferences</strong>, where
|
||||
you can choose between <tt class="docutils literal">auto</tt>, <tt class="docutils literal">bottom</tt> and <tt class="docutils literal">sided</tt>.</p>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/web/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_chatter_position%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#toc-entry-3">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-4">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Hynsys Technologies</li>
|
||||
<li>Camptocamp</li>
|
||||
<li>Alitec Pte Ltd</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Hynsys Technologies <<a class="reference external" href="mailto:hynsystechnologies@gmail.com">hynsystechnologies@gmail.com</a>></li>
|
||||
<li>Juan Miguel Sánchez Arce <<a class="reference external" href="mailto:juan.sanchez@camptocamp.com">juan.sanchez@camptocamp.com</a>></li>
|
||||
<li><a class="reference external" href="https://www.camptocamp.com">Camptocamp</a><ul>
|
||||
<li>Iván Todorovich <<a class="reference external" href="mailto:ivan.todorovich@camptocamp.com">ivan.todorovich@camptocamp.com</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a class="reference external" href="http://www.alitec.sg">Alitec Pte Ltd</a><ul>
|
||||
<li>Jay Patel <<a class="reference external" href="mailto:jay@alitec.sg">jay@alitec.sg</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>Trobz<ul>
|
||||
<li>Tris Doan <<a class="reference external" href="mailto:tridm@trobz.com">tridm@trobz.com</a>></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org">
|
||||
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
||||
</a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
|
||||
<p><a class="reference external image-reference" href="https://github.com/trisdoan"><img alt="trisdoan" src="https://github.com/trisdoan.png?size=40px" /></a></p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/17.0/web_chatter_position">OCA/web</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,89 +0,0 @@
|
|||
/** @odoo-module **/
|
||||
/*
|
||||
Copyright 2023 Camptocamp SA (https://www.camptocamp.com).
|
||||
License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
|
||||
*/
|
||||
|
||||
import {FormCompiler} from "@web/views/form/form_compiler";
|
||||
import {patch} from "@web/core/utils/patch";
|
||||
import {append, setAttributes} from "@web/core/utils/xml";
|
||||
import {SIZES} from "@web/core/ui/ui_service";
|
||||
|
||||
patch(FormCompiler.prototype, {
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
compile(node, params) {
|
||||
const res = super.compile(node, params);
|
||||
const webClientViewAttachmentViewHookXml = res.querySelector(
|
||||
".o_attachment_preview"
|
||||
);
|
||||
const chatterContainerHookXml = res.querySelector(
|
||||
".o-mail-Form-chatter:not(.o-isInFormSheetBg)"
|
||||
);
|
||||
if (!chatterContainerHookXml) {
|
||||
return res; // No chatter, keep the result as it is
|
||||
}
|
||||
const chatterContainerXml = chatterContainerHookXml.querySelector(
|
||||
"t[t-component='__comp__.mailComponents.Chatter']"
|
||||
);
|
||||
const formSheetBgXml = res.querySelector(".o_form_sheet_bg");
|
||||
const parentXml = formSheetBgXml && formSheetBgXml.parentNode;
|
||||
if (!parentXml) {
|
||||
return res; // Miss-config: a sheet-bg is required for the rest
|
||||
}
|
||||
|
||||
// Don't patch anything if the setting is "auto": this is the core behaviour
|
||||
if (odoo.web_chatter_position === "auto") {
|
||||
return res;
|
||||
// For "sided", we have to remote the bottom chatter
|
||||
// (except if there is an attachment viewer, as we have to force bottom)
|
||||
} else if (odoo.web_chatter_position === "sided") {
|
||||
setAttributes(chatterContainerXml, {
|
||||
isInFormSheetBg: `__comp__.uiService.size < ${SIZES.XXL}`,
|
||||
isChatterAside: `__comp__.uiService.size >= ${SIZES.XXL}`,
|
||||
});
|
||||
setAttributes(chatterContainerHookXml, {
|
||||
"t-attf-class": `{{ __comp__.uiService.size >= ${SIZES.XXL} ? "o-aside" : "" }}`,
|
||||
});
|
||||
// For "bottom", we keep the chatter in the form sheet
|
||||
// (the one used for the attachment viewer case)
|
||||
// If it's not there, we create it.
|
||||
} else if (odoo.web_chatter_position === "bottom") {
|
||||
if (webClientViewAttachmentViewHookXml) {
|
||||
const sheetBgChatterContainerHookXml = res.querySelector(
|
||||
".o-mail-Form-chatter.o-isInFormSheetBg"
|
||||
);
|
||||
setAttributes(sheetBgChatterContainerHookXml, {
|
||||
"t-if": "true",
|
||||
});
|
||||
setAttributes(chatterContainerHookXml, {
|
||||
"t-if": "false",
|
||||
});
|
||||
} else {
|
||||
const sheetBgChatterContainerHookXml =
|
||||
chatterContainerHookXml.cloneNode(true);
|
||||
sheetBgChatterContainerHookXml.classList.add("o-isInFormSheetBg");
|
||||
setAttributes(sheetBgChatterContainerHookXml, {
|
||||
"t-if": "true",
|
||||
"t-attf-class": `{{ (__comp__.uiService.size >= ${SIZES.XXL} && ${
|
||||
odoo.web_chatter_position != "bottom"
|
||||
}) ? "o-aside" : "mt-4 mt-md-0" }}`,
|
||||
});
|
||||
append(formSheetBgXml, sheetBgChatterContainerHookXml);
|
||||
const sheetBgChatterContainerXml =
|
||||
sheetBgChatterContainerHookXml.querySelector(
|
||||
"t[t-component='__comp__.mailComponents.Chatter']"
|
||||
);
|
||||
|
||||
setAttributes(sheetBgChatterContainerXml, {
|
||||
isInFormSheetBg: "true",
|
||||
});
|
||||
setAttributes(chatterContainerHookXml, {
|
||||
"t-if": "false",
|
||||
});
|
||||
}
|
||||
}
|
||||
return res;
|
||||
},
|
||||
});
|
|
@ -1,17 +0,0 @@
|
|||
/*
|
||||
Copyright 2024 Alitec Pte Ltd (https://www.alitec.sg).
|
||||
License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
|
||||
*/
|
||||
|
||||
.o_form_view {
|
||||
.o_form_sheet_bg {
|
||||
max-width: none;
|
||||
}
|
||||
.o_form_sheet {
|
||||
max-width: $o-form-view-sheet-max-width;
|
||||
width: 100%;
|
||||
@include media-breakpoint-up(md) {
|
||||
margin: $o-sheet-vpadding * 0.2 auto;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
/*
|
||||
Copyright 2024 Alitec Pte Ltd (https://www.alitec.sg).
|
||||
License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
|
||||
*/
|
||||
|
||||
.o-mail-Form-chatter {
|
||||
&:not(.o-aside):not(.o-full-width) .o-mail-Chatter {
|
||||
max-width: $o-form-view-sheet-max-width;
|
||||
}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
.o_xxl_form_view .o_form_sheet_bg .o_form_sheet {
|
||||
overflow: unset !important;
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="view_users_form_simple_modif" model="ir.ui.view">
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_form_simple_modif" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="email" position="after">
|
||||
<field name="chatter_position" widget="radio" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<template id="webclient_bootstrap" inherit_id="web.webclient_bootstrap">
|
||||
<t t-set="head_web" position="inside">
|
||||
<script type="text/javascript">
|
||||
odoo.web_chatter_position = "<t
|
||||
t-out="request.env.user.chatter_position"
|
||||
/>";
|
||||
</script>
|
||||
</t>
|
||||
</template>
|
||||
</odoo>
|
|
@ -1,82 +0,0 @@
|
|||
=========
|
||||
Dark Mode
|
||||
=========
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:92c42b374159b10469f7a113505b270486a72f4a3bec1552c591c18146e82035
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/web/tree/16.0/web_dark_mode
|
||||
:alt: OCA/web
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_dark_mode
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
This modules offers the dark mode for Odoo CE. The dark mode can be activated by
|
||||
every user in the user menu in the top right.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
- Implement dark mode for PoS with a glue module
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_dark_mode%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* initOS GmbH
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Florian Kantelberg <florian.kantelberg@initos.com>
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/web <https://github.com/OCA/web/tree/16.0/web_dark_mode>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@ -1,4 +0,0 @@
|
|||
# © 2022 Florian Kantelberg - initOS GmbH
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import models
|
|
@ -1,33 +0,0 @@
|
|||
# © 2022 Florian Kantelberg - initOS GmbH
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
"name": "Dark Mode",
|
||||
"summary": "Enabled Dark Mode for the Odoo Backend",
|
||||
"license": "AGPL-3",
|
||||
"version": "17.0.0.0.0",
|
||||
"website": "https://github.com/OCA/web",
|
||||
"author": "initOS GmbH, Odoo Community Association (OCA)",
|
||||
"depends": ["web"],
|
||||
"excludes": ["web_enterprise"],
|
||||
"installable": True,
|
||||
"assets": {
|
||||
'web.assets_web_dark': [
|
||||
("prepend", 'web_dark_mode/static/src/scss/variables.scss'),
|
||||
],
|
||||
"web.dark_mode_assets_common": [
|
||||
("prepend", "web_dark_mode/static/src/scss/variables.scss"),
|
||||
],
|
||||
"web.dark_mode_assets_backend": [
|
||||
("prepend", "web_dark_mode/static/src/scss/variables.scss"),
|
||||
],
|
||||
"web.assets_backend": [
|
||||
"web_dark_mode/static/src/js/switch_item.esm.js",
|
||||
],
|
||||
|
||||
|
||||
},
|
||||
"data": [
|
||||
"views/res_users_views.xml",
|
||||
],
|
||||
}
|
|
@ -1,40 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dark_mode
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-09-02 20:35+0000\n"
|
||||
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#. odoo-javascript
|
||||
#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode
|
||||
#, python-format
|
||||
msgid "Dark Mode"
|
||||
msgstr "Modo Oscuro"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent
|
||||
msgid "Device Dependent Dark Mode"
|
||||
msgstr "Modo Oscuro en Función del Dispositivo"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Enrutamiento HTTP"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
|
@ -1,40 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dark_mode
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-01-01 21:45+0000\n"
|
||||
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: es_AR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#. odoo-javascript
|
||||
#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode
|
||||
#, python-format
|
||||
msgid "Dark Mode"
|
||||
msgstr "Modo Oscuro"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent
|
||||
msgid "Device Dependent Dark Mode"
|
||||
msgstr "Dispositivo que Depende del Modo Oscuro"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Ruteo HTTP"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
|
@ -1,40 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dark_mode
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-10-23 18:56+0000\n"
|
||||
"Last-Translator: Grégory Moka Tourisme <gregory@mokatourisme.fr>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#. odoo-javascript
|
||||
#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode
|
||||
#, python-format
|
||||
msgid "Dark Mode"
|
||||
msgstr "Mode sombre"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent
|
||||
msgid "Device Dependent Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
|
@ -1,41 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dark_mode
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-02-16 14:23+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#. odoo-javascript
|
||||
#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode
|
||||
#, python-format
|
||||
msgid "Dark Mode"
|
||||
msgstr "Tamni način"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent
|
||||
msgid "Device Dependent Dark Mode"
|
||||
msgstr "Tamni način zavisi od uređaja"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Routing"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
|
@ -1,40 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dark_mode
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-27 11:34+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#. odoo-javascript
|
||||
#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode
|
||||
#, python-format
|
||||
msgid "Dark Mode"
|
||||
msgstr "Dark mode"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent
|
||||
msgid "Device Dependent Dark Mode"
|
||||
msgstr "Dark mode dipendente dal dispositivo"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "Instradamento HTTP"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
|
@ -1,40 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dark_mode
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-03-06 20:08+0000\n"
|
||||
"Last-Translator: Ediz Duman <neps1192@gmail.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#. odoo-javascript
|
||||
#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode
|
||||
#, python-format
|
||||
msgid "Dark Mode"
|
||||
msgstr "Koyu Mod"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent
|
||||
msgid "Device Dependent Dark Mode"
|
||||
msgstr "Cihaza Bağlı Karanlık Mod"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr "HTTP Yönlendirme"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_res_users
|
||||
msgid "User"
|
||||
msgstr "Kullanıcı"
|
|
@ -1,37 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dark_mode
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#. odoo-javascript
|
||||
#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode
|
||||
#, python-format
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent
|
||||
msgid "Device Dependent Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
|
@ -1,38 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dark_mode
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: zh\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: web_dark_mode
|
||||
#. odoo-javascript
|
||||
#: code:addons/web_dark_mode/static/src/js/switch_item.esm.js:0
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode
|
||||
#, python-format
|
||||
msgid "Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model.fields,field_description:web_dark_mode.field_res_users__dark_mode_device_dependent
|
||||
msgid "Device Dependent Dark Mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_ir_http
|
||||
msgid "HTTP Routing"
|
||||
msgstr ""
|
||||
|
||||
#. module: web_dark_mode
|
||||
#: model:ir.model,name:web_dark_mode.model_res_users
|
||||
msgid "User"
|
||||
msgstr ""
|
|
@ -1,4 +0,0 @@
|
|||
# © 2022 Florian Kantelberg - initOS GmbH
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import ir_http, res_users
|
|
@ -1,23 +0,0 @@
|
|||
# © 2022 Florian Kantelberg - initOS GmbH
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import models
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
class IrHttp(models.AbstractModel):
|
||||
_inherit = "ir.http"
|
||||
|
||||
@classmethod
|
||||
def _set_color_scheme(cls, response):
|
||||
scheme = request.httprequest.cookies.get("color_scheme")
|
||||
user = request.env.user
|
||||
user_scheme = "dark" if getattr(user, "dark_mode", None) else "light"
|
||||
device_dependent = getattr(user, "dark_mode_device_dependent", None)
|
||||
if (not device_dependent) and scheme != user_scheme:
|
||||
response.set_cookie("color_scheme", user_scheme)
|
||||
|
||||
@classmethod
|
||||
def _post_dispatch(cls, response):
|
||||
cls._set_color_scheme(response)
|
||||
return super()._post_dispatch(response)
|
|
@ -1,26 +0,0 @@
|
|||
# © 2022 Florian Kantelberg - initOS GmbH
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResUsers(models.Model):
|
||||
_inherit = "res.users"
|
||||
|
||||
dark_mode = fields.Boolean()
|
||||
dark_mode_device_dependent = fields.Boolean("Device Dependent Dark Mode")
|
||||
|
||||
@property
|
||||
def SELF_READABLE_FIELDS(self):
|
||||
return super().SELF_READABLE_FIELDS + [
|
||||
"dark_mode_device_dependent",
|
||||
"dark_mode",
|
||||
]
|
||||
|
||||
@property
|
||||
def SELF_WRITEABLE_FIELDS(self):
|
||||
return super().SELF_WRITEABLE_FIELDS + [
|
||||
"dark_mode_device_dependent",
|
||||
"dark_mode",
|
||||
]
|
|
@ -1 +0,0 @@
|
|||
* Florian Kantelberg <florian.kantelberg@initos.com>
|
|
@ -1,2 +0,0 @@
|
|||
This modules offers the dark mode for Odoo CE. The dark mode can be activated by
|
||||
every user in the user menu in the top right.
|
|
@ -1 +0,0 @@
|
|||
- Implement dark mode for PoS with a glue module
|
Binary file not shown.
Before Width: | Height: | Size: 9.2 KiB |
|
@ -1,429 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
||||
<title>Dark Mode</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="dark-mode">
|
||||
<h1 class="title">Dark Mode</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:92c42b374159b10469f7a113505b270486a72f4a3bec1552c591c18146e82035
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/16.0/web_dark_mode"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_dark_mode"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This modules offers the dark mode for Odoo CE. The dark mode can be activated by
|
||||
every user in the user menu in the top right.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-1">Known issues / Roadmap</a></li>
|
||||
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-2">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="toc-entry-4">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="toc-entry-5">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="toc-entry-6">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="known-issues-roadmap">
|
||||
<h1><a class="toc-backref" href="#toc-entry-1">Known issues / Roadmap</a></h1>
|
||||
<ul class="simple">
|
||||
<li>Implement dark mode for PoS with a glue module</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/web/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/web/issues/new?body=module:%20web_dark_mode%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#toc-entry-3">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-4">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>initOS GmbH</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Florian Kantelberg <<a class="reference external" href="mailto:florian.kantelberg@initos.com">florian.kantelberg@initos.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/web/tree/16.0/web_dark_mode">OCA/web</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,51 +0,0 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import { browser } from "@web/core/browser/browser";
|
||||
import { cookie } from "@web/core/browser/cookie";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
|
||||
export function darkModeSwitchItem(env) {
|
||||
return {
|
||||
type: "switch",
|
||||
id: "color_scheme.switch",
|
||||
description: _t("Dark Mode"), // Use _t directly for translations
|
||||
callback: () => {
|
||||
env.services.color_scheme.switchColorScheme();
|
||||
},
|
||||
isChecked: cookie.get("color_scheme") === "dark",
|
||||
sequence: 40,
|
||||
};
|
||||
}
|
||||
|
||||
export const colorSchemeService = {
|
||||
dependencies: ["orm", "ui", "user"],
|
||||
|
||||
async start(env, { orm, ui, user }) {
|
||||
registry.category("user_menuitems").add("darkmode", darkModeSwitchItem);
|
||||
|
||||
if (!cookie.get("color_scheme")) {
|
||||
const matchMedia = window.matchMedia("(prefers-color-scheme: dark)");
|
||||
const darkMode = matchMedia.matches;
|
||||
cookie.set("color_scheme", darkMode ? "dark" : "light");
|
||||
if (darkMode) browser.location.reload();
|
||||
}
|
||||
|
||||
return {
|
||||
async switchColorScheme() {
|
||||
const currentScheme = cookie.get("color_scheme");
|
||||
const newScheme = currentScheme === "dark" ? "light" : "dark";
|
||||
cookie.set("color_scheme", newScheme);
|
||||
|
||||
await orm.write("res.users", [user.userId], {
|
||||
dark_mode: newScheme === "dark",
|
||||
});
|
||||
|
||||
ui.block();
|
||||
browser.location.reload();
|
||||
},
|
||||
};
|
||||
},
|
||||
};
|
||||
|
||||
registry.category("services").add("color_scheme", colorSchemeService);
|
|
@ -1,357 +0,0 @@
|
|||
///
|
||||
/// This file regroups the variables that style odoo components.
|
||||
/// They are available in every asset bundle.
|
||||
///
|
||||
// Contrast ratio
|
||||
|
||||
|
||||
// Global sans-serif fonts stack, defined here as we need to process
|
||||
// it before actually using it (to add more unicode support with the special
|
||||
// Odoo font for example). Adding unicode support is not done directly here as
|
||||
// this font can be used by the website where the unicode support is already
|
||||
// automatically added.
|
||||
$o-system-fonts: (-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji") !default;
|
||||
|
||||
// Color-scheme
|
||||
$o-webclient-color-scheme: dark !default;
|
||||
// Colors
|
||||
// This is BS default
|
||||
$o-white: #272a35;
|
||||
$o-black: #ffffff;
|
||||
|
||||
$o-gray-100: #1b1d26;//main background
|
||||
$o-gray-200: #272a35;
|
||||
$o-gray-300: #3c3e4a;//card outlines, shadow, etc.
|
||||
$o-gray-400: #5b5e6a;// text in discuss area
|
||||
$o-gray-500: #606471;
|
||||
$o-gray-600: #4dd2c7;
|
||||
$o-gray-600: #a5a6a8;
|
||||
$o-gray-700: #d1d1d1; //text in main areas
|
||||
$o-gray-800: #e4e4e4; //button text, etc.
|
||||
$o-gray-900: #e4e4e4; //column heading text, etc.
|
||||
|
||||
$o-grays: (
|
||||
100: $o-gray-100,
|
||||
200: $o-gray-200,
|
||||
300: $o-gray-300,
|
||||
400: $o-gray-400,
|
||||
500: $o-gray-500,
|
||||
600: $o-gray-600,
|
||||
700: $o-gray-700,
|
||||
800: $o-gray-800,
|
||||
900: $o-gray-900,
|
||||
) !default;
|
||||
|
||||
$o-community-color: #eded0d !default;
|
||||
$o-enterprise-color: #235c78d1 !default;
|
||||
$o-enterprise-action-color: #017e84 !default;
|
||||
|
||||
$o-brand-odoo: #272a35 !default; // final header color
|
||||
$o-brand-primary: #235c78 !default; //wait to use this color till form button is figured out
|
||||
// $o-brand-primary: #664165 !default; //Odoo Enterprise default button purple
|
||||
|
||||
$o-brand-secondary: $o-gray-700;
|
||||
$o-brand-lightsecondary: $o-gray-100 !default;
|
||||
|
||||
$o-action: $o-brand-primary !default;
|
||||
$o-success: #28a745 !default;
|
||||
$o-info: #74dcf3 !default;
|
||||
$o-warning: #e0a12d !default;
|
||||
$o-danger: #ff5757 !default;
|
||||
|
||||
// Fine-tune contextual text colors.
|
||||
// Overrides $theme-colors generated 'text-x' classes only.
|
||||
// Custom colors are set by $o-text-colors-custom
|
||||
$o-theme-text-colors: (
|
||||
"success": #28a745,
|
||||
"info": #74dcf3,
|
||||
"warning": #fbb56a,
|
||||
"danger": #ff5757,
|
||||
)!default;
|
||||
|
||||
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
|
||||
// color: #d1d1d1;
|
||||
background-color: $o-gray-200!important;
|
||||
// border-color: #3c3e4a #3c3e4a #FFFFFF;
|
||||
}
|
||||
|
||||
.o_main_navbar {
|
||||
.dropdown-toggle, .o_nav_entry, .o_menu_brand {
|
||||
color: #e4e4e4 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.o-mail-Chatter-top:has(.o-mail-Chatter-sendMessage.active) {
|
||||
.o-mail-Composer {
|
||||
background-color: $o-gray-100 !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Opacities
|
||||
$o-opacity-disabled: .5 !default;
|
||||
$o-opacity-muted: .76 !default;
|
||||
|
||||
$o-opacities: (
|
||||
0: 0,
|
||||
25: .25,
|
||||
50: .5,
|
||||
75: .75,
|
||||
100: 1,
|
||||
disabled: $o-opacity-disabled,
|
||||
muted: $o-opacity-muted,
|
||||
) !default;
|
||||
|
||||
// // Font families
|
||||
// $o-font-family-sans-serif: o-add-unicode-support-font($o-system-fonts) !default;
|
||||
// $o-font-family-monospace: o-add-unicode-support-font((SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace)) !default;
|
||||
|
||||
// $o-headings-font-family: o-add-unicode-support-font(("SF Pro Display", $o-system-fonts)) !default;
|
||||
|
||||
// Font sizes
|
||||
// $o-root-font-size: 1rem !default;
|
||||
// // $o-font-size-base: o-to-rem(14px) !default;
|
||||
// $o-font-size-base-touch: o-to-rem(16px) !default;
|
||||
// $o-font-size-base-small: o-to-rem(13px) !default;
|
||||
// $o-font-size-base-smaller: o-to-rem(12px) !default;
|
||||
// $o-line-height-base: 1.5 !default; // This is BS default
|
||||
|
||||
|
||||
|
||||
|
||||
// Font weights
|
||||
// Caution: These values represent the desired font weights, but they may vary
|
||||
// depending on the user's operating system.
|
||||
// Because we rely on system fonts, the browser will interpret these values
|
||||
// based on the available fonts on the user's device.
|
||||
// If the exact font weight is unavailable, the browser will attempt to assign
|
||||
// a suitable weight using the fallowing fallback scheme.
|
||||
// https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight#fallback_weights
|
||||
|
||||
// $o-font-weight-normal: 400 !default;
|
||||
// $o-font-weight-medium: 500 !default;
|
||||
// $o-font-weight-bold: 700 !default;
|
||||
// $o-font-weight-extrabold: 800 !default;
|
||||
|
||||
// // Font colors
|
||||
$o-main-text-color: $o-gray-700 !default; //text in main areas
|
||||
$o-main-bg-color: #f0eeee !default;
|
||||
$o-main-color-muted: rgba($o-main-text-color, $o-opacity-muted) !default;
|
||||
$o-main-headings-color: $o-gray-900 !default; //column heading text, etc.
|
||||
$o-main-link-color: #72d4cb !default;
|
||||
$o-main-favorite-color: #f3cc00 !default;
|
||||
$o-main-code-color: #d2317b !default;
|
||||
|
||||
// Components colors
|
||||
$o-component-active-color: #ffffff !default;
|
||||
$o-component-active-bg: #17373b !default;
|
||||
$o-component-active-border: #03f9e3 !default;
|
||||
|
||||
$o-view-background-color: #272a35 !default;
|
||||
$o-shadow-color: #4a3c4b !default;
|
||||
|
||||
$o-form-lightsecondary: #cccccc !default; //not sure what this one does
|
||||
|
||||
$o-list-footer-bg-color: transparent !default;
|
||||
$o-list-footer-font-weight: bold !default;
|
||||
|
||||
|
||||
|
||||
// // Custom colors generation maps
|
||||
// $o-text-colors-custom: (
|
||||
// "action": $o-action,
|
||||
// "favourite": $o-main-favorite-color,
|
||||
// ) !default;
|
||||
|
||||
// $o-bg-colors-custom: (
|
||||
// "action": $o-action,
|
||||
// "view": $o-view-background-color,
|
||||
// "favourite": $o-main-favorite-color,
|
||||
// ) !default;
|
||||
|
||||
// $o-btn-custom: (
|
||||
// "favourite": $o-main-favorite-color,
|
||||
// ) !default;
|
||||
|
||||
// // Components (BS)
|
||||
|
||||
// $o-border-color: var(--border-color, #{$o-gray-300}) !default;
|
||||
|
||||
// // Forms
|
||||
|
||||
// // o-inputs
|
||||
// $o-input-padding-y: 2px !default;
|
||||
// $o-input-padding-x: 4px !default;
|
||||
|
||||
$o-input-border-required: #FFF !default;
|
||||
$o-input-hover-border-color: $o-gray-500 !default;
|
||||
|
||||
// // Layout
|
||||
// //
|
||||
// // Extension of BS4. This is not redefining the BS4 variable directly as we only
|
||||
// // need the extra ones for media queries (not creating new breakpoint classes).
|
||||
// // Note: default BS4 values are hardcoded here while it should be possible to
|
||||
// // merge with the default BS variable (but we would have to take care of
|
||||
// // ordering & cie).
|
||||
// $o-extra-grid-breakpoints: (
|
||||
// xs: 0,
|
||||
// vsm: 475px,
|
||||
// sm: 576px,
|
||||
// md: 768px,
|
||||
// lg: 992px,
|
||||
// xl: 1200px,
|
||||
// xxl: 1534px,
|
||||
// ) !default;
|
||||
// $o-spacer: 16px !default; // = 1rem
|
||||
// $o-form-group-cols: 12 !default;
|
||||
// $o-form-spacing-unit: 5px !default;
|
||||
// $o-horizontal-padding: $o-spacer !default;
|
||||
// $o-innergroup-rpadding: 45px !default;
|
||||
// $o-dropdown-hpadding: 20px !default;
|
||||
// $o-dropdown-vpadding: 3px !default;
|
||||
// $o-dropdown-max-height: 70vh !default;
|
||||
|
||||
// $o-statbutton-height: 44px !default;
|
||||
// $o-statbutton-vpadding: 0px !default;
|
||||
// $o-statbutton-spacing: 6px !default;
|
||||
|
||||
// $o-modal-lg: 980px !default;
|
||||
// $o-modal-md: 650px !default;
|
||||
|
||||
// // Needed for having no spacing between sheet and mail body in mass_mailing:
|
||||
// // Different required cancel paddings between web and web_enterprise
|
||||
// $o-sheet-cancel-tpadding: 0px !default;
|
||||
|
||||
// $o-statusbar-height: 33px !default;
|
||||
|
||||
// $o-label-font-size-factor: 0.8 !default;
|
||||
|
||||
|
||||
// // == List group
|
||||
|
||||
// $o-list-group-active-color: #aa00ff !default;
|
||||
// $o-list-group-active-bg: lighten(saturate(adjust-hue($o-info, 15), 1.8), 50) !default;
|
||||
|
||||
|
||||
// // == Badges
|
||||
|
||||
// // Define a minimum width. This value is arbitrary and strictly font-related.
|
||||
// $o-badge-min-width: 3ch !default;
|
||||
|
||||
// $o-nb-calendar-colors: 24 !default;
|
||||
|
||||
// $o-base-settings-mobile-tabs-height: 40px !default;
|
||||
// $o-base-settings-mobile-tabs-overflow-gap: 3% !default;
|
||||
|
||||
// $o-cp-breadcrumb-height: 30px !default;
|
||||
|
||||
// $o-cp-button-sm-no-border-padding: 0.4rem;
|
||||
|
||||
// $o-datepicker-week-color: #8f8f8f !default;
|
||||
|
||||
// $o-card-body-bg-opacity: 0.9 !default;
|
||||
|
||||
// // Border-radius
|
||||
|
||||
// $o-border-radius: o-to-rem(4px) !default;
|
||||
// $o-border-radius-sm: o-to-rem(3px) !default;
|
||||
// $o-border-radius-lg: o-to-rem(6px) !default;
|
||||
|
||||
// // touch
|
||||
// $o-touch-btn-padding: 7px 14px !default;
|
||||
|
||||
// // == Buttons
|
||||
// // Map of customized values for each button. If a button's design is defined
|
||||
// // here, the relative values will take priority over default BS ones.
|
||||
// // Notice: each map's entry is passed directly to the Bootstrap mixin, meaning
|
||||
// // that all states must be defined, there can't be omissions.
|
||||
$o-btns-bs-override: () !default;
|
||||
$o-btns-bs-override: map-merge((
|
||||
"primary": (
|
||||
background: $o-brand-primary,
|
||||
border: $o-brand-primary,
|
||||
color: #FFF,
|
||||
|
||||
hover-background: lighten($o-brand-primary, 7%),
|
||||
hover-border: lighten($o-brand-primary, 7%),
|
||||
hover-color: #FFF,
|
||||
|
||||
active-background: lighten($o-brand-primary, 7%),
|
||||
active-border: lighten($o-brand-primary, 7%),
|
||||
active-color: #FFF,
|
||||
),
|
||||
"secondary": (
|
||||
background: $o-gray-300,
|
||||
border: $o-gray-300,
|
||||
color: $o-gray-800,
|
||||
|
||||
hover-background: $o-gray-400,
|
||||
hover-border: $o-gray-400,
|
||||
hover-color: $o-gray-900,
|
||||
|
||||
active-background: $o-component-active-bg,
|
||||
active-border: $o-component-active-border,
|
||||
active-color: $o-component-active-color,
|
||||
),
|
||||
"light": (
|
||||
background: $o-gray-300,
|
||||
border: $o-gray-300,
|
||||
color: $o-gray-800,
|
||||
|
||||
hover-background: $o-gray-200,
|
||||
hover-border: $o-gray-200,
|
||||
hover-color: $o-gray-800,
|
||||
|
||||
active-background: $o-component-active-bg,
|
||||
active-border: $o-component-active-border,
|
||||
active-color: $o-component-active-color,
|
||||
),
|
||||
), $o-btns-bs-override);
|
||||
|
||||
$o-btns-bs-outline-override: () !default;
|
||||
$o-btns-bs-outline-override: map-merge((
|
||||
"primary": (
|
||||
background: transparent,
|
||||
border: lighten($o-brand-primary, 20%),
|
||||
color: lighten($o-brand-primary, 20%),
|
||||
|
||||
hover-background: lighten($o-brand-primary, 7%),
|
||||
hover-border: lighten($o-brand-primary, 7%),
|
||||
hover-color: #FFF,
|
||||
|
||||
active-background: lighten($o-brand-primary, 7%),
|
||||
active-border: lighten($o-brand-primary, 7%),
|
||||
active-color: #FFF,
|
||||
),
|
||||
"secondary": (
|
||||
background: transparent,
|
||||
border: $o-gray-300,
|
||||
color: $o-gray-700,
|
||||
|
||||
hover-background: $o-gray-400,
|
||||
hover-border: $o-gray-400,
|
||||
hover-color: $o-gray-800,
|
||||
|
||||
active-background: $o-component-active-bg,
|
||||
active-border: $o-component-active-border,
|
||||
active-color: $o-component-active-color,
|
||||
),
|
||||
), $o-btns-bs-outline-override);
|
||||
|
||||
:root {
|
||||
--o-stat-button-color: $o-gray-400; /* Define --o-stat-button-color as a custom property with a red color value */
|
||||
}
|
||||
|
||||
|
||||
.bg-200 {
|
||||
--background-color: #3c3e4a !important; /* find a better way to do this */
|
||||
}
|
||||
|
||||
.o_grid_apps_menu {
|
||||
&__button {
|
||||
color: if($o-webclient-color-scheme == 'dark', $o-gray-600, $o-navbar-brand-color) !important;
|
||||
&:hover,
|
||||
&:focus {
|
||||
background: if($o-webclient-color-scheme == 'dark', $o-black, $o-navbar-entry-bg--hover);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
# © 2022 Florian Kantelberg - initOS GmbH
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import test_dark_mode
|
|
@ -1,35 +0,0 @@
|
|||
# © 2022 Florian Kantelberg - initOS GmbH
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from unittest.mock import MagicMock
|
||||
|
||||
import odoo.http
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
class TestDarkMode(common.TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.request = MagicMock(env=cls.env)
|
||||
odoo.http._request_stack.push(cls.request)
|
||||
|
||||
def test_dark_mode_cookie(self):
|
||||
response = MagicMock()
|
||||
|
||||
# Cookie is set because the color_scheme changed
|
||||
self.request.httprequest.cookies = {"color_scheme": "dark"}
|
||||
self.env["ir.http"]._post_dispatch(response)
|
||||
response.set_cookie.assert_called_with("color_scheme", "light")
|
||||
|
||||
# Cookie isn't set because the color_scheme is the same
|
||||
response.reset_mock()
|
||||
self.request.httprequest.cookies = {"color_scheme": "light"}
|
||||
self.env["ir.http"]._post_dispatch(response)
|
||||
response.set_cookie.assert_not_called()
|
||||
|
||||
# Cookie isn't set because it's device dependent
|
||||
self.env.user.dark_mode_device_dependent = True
|
||||
self.request.httprequest.cookies = {"color_scheme": "dark"}
|
||||
self.env["ir.http"]._post_dispatch(response)
|
||||
response.set_cookie.assert_not_called()
|
|
@ -1,14 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="view_users_form_simple_modif" model="ir.ui.view">
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_form_simple_modif" />
|
||||
<field name="arch" type="xml">
|
||||
<group name="preferences" position="inside">
|
||||
<group>
|
||||
<field name="dark_mode_device_dependent" />
|
||||
</group>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
|
@ -1,115 +0,0 @@
|
|||
===============
|
||||
Web Dialog Size
|
||||
===============
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:a861bfd49e89d43c9b0dea89a15318450f23f5a9fc30747b5fdddeb6d291120c
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/web/tree/17.0/web_dialog_size
|
||||
:alt: OCA/web
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/web-17-0/web-17-0-web_dialog_size
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=17.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
A module that lets the user expand/restore the dialog box size through a
|
||||
button in the upper right corner (imitating most windows managers). It
|
||||
also adds draggable support to the dialogs.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
By default, the module respects the caller's ``dialog_size`` option. If
|
||||
you want to set dialog boxes maximized by default, you need to:
|
||||
|
||||
1. Go to *Settings -> Technical -> Parameters -> System Parameters*
|
||||
|
||||
2. | Add a new record with the text *web_dialog_size.default_maximize*
|
||||
in
|
||||
| the *Key* field and the text *True* in the *Value* field
|
||||
|
||||
Known issues / Roadmap
|
||||
======================
|
||||
|
||||
- Allow setting default dialog size per user.
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_dialog_size%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
-------
|
||||
|
||||
* ACSONE SA/NV
|
||||
* Therp BV
|
||||
* Siddharth Bhalgami
|
||||
* Tecnativa
|
||||
* Amaris
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
- Anthony Muschang <anthony.muschang@acsone.eu>
|
||||
- Stéphane Bidoul <stephane.bidoul@acsone.eu>
|
||||
- Holger Brunn <hbrunn@therp.nl>
|
||||
- Siddharth Bhalgami <siddharth.bhalgami@gmail.com>
|
||||
- Wolfgang Pichler <wpichler@callino.at>
|
||||
- David Vidal <david.vidal@tecnativa.com>
|
||||
- Quentin Theuret <quentin.theuret@amaris.com>
|
||||
- `Tecnativa <https://www.tecnativa.com>`__:
|
||||
|
||||
- Pedro M. Baeza
|
||||
- Jairo Llopis
|
||||
- Ernesto Tejeda
|
||||
- Carlos Roca
|
||||
|
||||
- Sudhir Arya <sudhir@erpharbor.com>
|
||||
- Pierre Pizzetta <pierre@devreaction.com>
|
||||
- Mantas Šniukas <mantas@vialaurea.lt>
|
||||
|
||||
Maintainers
|
||||
-----------
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/web <https://github.com/OCA/web/tree/17.0/web_dialog_size>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@ -1 +0,0 @@
|
|||
from . import models
|
|
@ -1,39 +0,0 @@
|
|||
# Copyright 2015 ACSONE SA/NV
|
||||
# Copyright 2018 Amaris
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
"name": "Web Dialog Size",
|
||||
"summary": """
|
||||
A module that lets the user expand a
|
||||
dialog box to the full screen width.""",
|
||||
"author": "ACSONE SA/NV, "
|
||||
"Therp BV, "
|
||||
"Siddharth Bhalgami,"
|
||||
"Tecnativa, "
|
||||
"Amaris, "
|
||||
"Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/web",
|
||||
"category": "web",
|
||||
"version": "17.0.1.0.0",
|
||||
"license": "AGPL-3",
|
||||
"depends": ["web"],
|
||||
"installable": True,
|
||||
"assets": {
|
||||
"web.assets_backend": [
|
||||
"/web_dialog_size/static/src/js/web_dialog_size.esm.js",
|
||||
"/web_dialog_size/static/src/scss/web_dialog_size.scss",
|
||||
"/web_dialog_size/static/src/xml/ExpandButton.xml",
|
||||
(
|
||||
"after",
|
||||
"/web/static/src/core/dialog/dialog.xml",
|
||||
"/web_dialog_size/static/src/xml/web_dialog_header.xml",
|
||||
),
|
||||
(
|
||||
"after",
|
||||
"/web/static/src/views/view_dialogs/select_create_dialog.xml",
|
||||
"/web_dialog_size/static/src/xml/select_create_dialog.xml",
|
||||
),
|
||||
],
|
||||
},
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dialog_size
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2021-10-13 20:46+0000\n"
|
||||
"Last-Translator: Corneliuus <cornelius@clk-it.de>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: web_dialog_size
|
||||
#: model:ir.model,name:web_dialog_size.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Systemparameter"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Anzeigename"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Zuletzt bearbeitet am"
|
|
@ -1,25 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dialog_size
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2021-05-25 11:47+0000\n"
|
||||
"Last-Translator: Valentin Vinagre <valentin.vinagre@sygel.es>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: web_dialog_size
|
||||
#: model:ir.model,name:web_dialog_size.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Parámetro del sistema"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
|
@ -1,25 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dialog_size
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2021-05-14 20:47+0000\n"
|
||||
"Last-Translator: Yves Le Doeuff <yld@alliasys.fr>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: web_dialog_size
|
||||
#: model:ir.model,name:web_dialog_size.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Paramètre système"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nom affiché"
|
|
@ -1,31 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dialog_size
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2023-11-27 11:33+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: web_dialog_size
|
||||
#: model:ir.model,name:web_dialog_size.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Parametro di sistema"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Nome Visualizzato"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Ultima Modifica il"
|
|
@ -1,31 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dialog_size
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 14.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2021-05-17 20:47+0000\n"
|
||||
"Last-Translator: Bosd <c5e2fd43-d292-4c90-9d1f-74ff3436329a@anonaddy.me>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: web_dialog_size
|
||||
#: model:ir.model,name:web_dialog_size.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "Systeem Parameter"
|
||||
|
||||
#~ msgid "Display Name"
|
||||
#~ msgstr "Weergavenaam"
|
||||
|
||||
#~ msgid "ID"
|
||||
#~ msgstr "ID"
|
||||
|
||||
#~ msgid "Last Modified on"
|
||||
#~ msgstr "Laatst Gewijzigd op"
|
|
@ -1,19 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dialog_size
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: web_dialog_size
|
||||
#: model:ir.model,name:web_dialog_size.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr ""
|
|
@ -1,22 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * web_dialog_size
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2019-09-01 12:52+0000\n"
|
||||
"Last-Translator: 黎伟杰 <674416404@qq.com>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#. module: web_dialog_size
|
||||
#: model:ir.model,name:web_dialog_size.model_ir_config_parameter
|
||||
msgid "System Parameter"
|
||||
msgstr "系统参数"
|
|
@ -1 +0,0 @@
|
|||
from . import ir_config_parameter
|
|
@ -1,18 +0,0 @@
|
|||
# Copyright 2018 Tecnativa - Jairo Llopis
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo.models import Model, api
|
||||
from odoo.tools.safe_eval import const_eval
|
||||
|
||||
|
||||
class IrConfigParameter(Model):
|
||||
_inherit = "ir.config_parameter"
|
||||
|
||||
@api.model
|
||||
def get_web_dialog_size_config(self):
|
||||
get_param = self.sudo().get_param
|
||||
return {
|
||||
"default_maximize": const_eval(
|
||||
get_param("web_dialog_size.default_maximize", "False")
|
||||
)
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
[build-system]
|
||||
requires = ["whool"]
|
||||
build-backend = "whool.buildapi"
|
|
@ -1,7 +0,0 @@
|
|||
By default, the module respects the caller's `dialog_size` option. If
|
||||
you want to set dialog boxes maximized by default, you need to:
|
||||
|
||||
1. Go to *Settings -\> Technical -\> Parameters -\> System Parameters*
|
||||
|
||||
2. Add a new record with the text *web_dialog_size.default_maximize* in
|
||||
the *Key* field and the text *True* in the *Value* field
|
|
@ -1,15 +0,0 @@
|
|||
- Anthony Muschang \<<anthony.muschang@acsone.eu>\>
|
||||
- Stéphane Bidoul \<<stephane.bidoul@acsone.eu>\>
|
||||
- Holger Brunn \<<hbrunn@therp.nl>\>
|
||||
- Siddharth Bhalgami \<<siddharth.bhalgami@gmail.com>\>
|
||||
- Wolfgang Pichler \<<wpichler@callino.at>\>
|
||||
- David Vidal \<<david.vidal@tecnativa.com>\>
|
||||
- Quentin Theuret \<<quentin.theuret@amaris.com>\>
|
||||
- [Tecnativa](https://www.tecnativa.com):
|
||||
- Pedro M. Baeza
|
||||
- Jairo Llopis
|
||||
- Ernesto Tejeda
|
||||
- Carlos Roca
|
||||
- Sudhir Arya \<<sudhir@erpharbor.com>\>
|
||||
- Pierre Pizzetta \<<pierre@devreaction.com>\>
|
||||
- Mantas Šniukas \<<mantas@vialaurea.lt>\>
|
|
@ -1,3 +0,0 @@
|
|||
A module that lets the user expand/restore the dialog box size through a
|
||||
button in the upper right corner (imitating most windows managers). It
|
||||
also adds draggable support to the dialogs.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue