-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] web_widget_x2many_2d_matrix: pre-commit auto fixes
- Loading branch information
1 parent
87348d0
commit d2cb8c3
Showing
16 changed files
with
319 additions
and
333 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["whool"] | ||
build-backend = "whool.buildapi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
- Holger Brunn \<<hbrunn@therp.nl>\> | ||
- Pedro M. Baeza \<<pedro.baeza@tecnativa.com>\> | ||
- Artem Kostyuk \<<a.kostyuk@mobilunity.com>\> | ||
- Simone Orsi \<<simone.orsi@camptocamp.com>\> | ||
- Timon Tschanz \<<timon.tschanz@camptocamp.com>\> | ||
- Jairo Llopis \<<jairo.llopis@tecnativa.com>\> | ||
- Dennis Sluijk \<<d.sluijk@onestein.nl>\> | ||
- [CorporateHub](https://corporatehub.eu/) | ||
- Alexey Pelykh \<<alexey.pelykh@corphub.eu>\> | ||
- Adrià Gil Sorribes \<<adria.gil@forgeflow.com>\> | ||
- Christopher Ormaza \<<chris.ormaza@forgeflow.com>\> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
This module allows to show an x2many field with 3-tuples (\$x_value, | ||
\$y_value, \$value) in a table | ||
|
||
| | \$x_value1 | \$x_value2 | | ||
|------------|--------------|--------------| | ||
| \$y_value1 | \$value(1/1) | \$value(2/1) | | ||
| \$y_value2 | \$value(1/2) | \$value(2/2) | | ||
|
||
where value(n/n) is editable. | ||
|
||
An example use case would be: Select some projects and some employees so | ||
that a manager can easily fill in the planned_hours for one task per | ||
employee. The result could look like this: | ||
|
||
![Screenshot](https://raw.githubusercontent.com/OCA/web/12.0/web_widget_x2many_2d_matrix/static/description/screenshot.png) | ||
|
||
The beauty of this is that you have an arbitrary amount of columns with | ||
this widget, trying to get this in standard x2many lists involves some | ||
quite ugly hacks. |
Oops, something went wrong.