Commit Graph

3279 Commits

Author SHA1 Message Date
Brandon Seltenrich (BRSE)
bae533b5ae [IMP] barcode: update barcode operations doc
closes odoo/documentation#7134

X-original-commit: 170eda0d18
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-25 20:51:46 +00:00
Lara Martini (larm)
5c6789ed17 [ADD] fleet: new configurations doc
closes odoo/documentation#7083

X-original-commit: 52a2a795a1
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: Sam Lieber (sali) <36018073+samueljlieber@users.noreply.github.com>
2023-12-22 19:15:30 +00:00
Lara Martini (larm)
d099b4c420 [IMP] Recruitment: adding new hiring flow doc
closes odoo/documentation#7084

X-original-commit: 6704ff51de
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-22 01:51:53 +00:00
tiku-odoo
691744f9b0 [IMP] Market Connectors: eBay Marketplace edits
closes odoo/documentation#7074

X-original-commit: 2048c588c4
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-22 01:51:52 +00:00
Jess Rogers (jero)
c1794381d3 [IMP] crm: update convert leads
closes odoo/documentation#7061

X-original-commit: 88a0b155e5
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: ksc-odoo <73958186+ksc-odoo@users.noreply.github.com>
Co-authored-by: hojo-odoo <123424465+hojo-odoo@users.noreply.github.com>
Co-authored-by: Sam Lieber (sali) <36018073+samueljlieber@users.noreply.github.com>
2023-12-22 00:44:32 +00:00
tiku-odoo
83536bac05 [IMP] Misc: Portal User Change Login Initial Commit
closes odoo/documentation#7052

X-original-commit: d423038270
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-21 06:51:01 +00:00
tiku-odoo
5ee4e30208 [IMP] Productivity: Discuss Getting Started
closes odoo/documentation#7042

X-original-commit: cdd5dbead5
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-21 06:51:00 +00:00
Lara Martini (larm)
8bcfbbe548 [ADD] Payroll: adding new reporting doc
closes odoo/documentation#6987

X-original-commit: fcba53839f
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-20 00:29:53 +00:00
Felicious
ce11f0ab7d [FIX] barcode: typo in example
closes odoo/documentation#6970

X-original-commit: 72f93a84ea
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-19 20:25:28 +00:00
Martin Trigaux
0101876db6 [I18N] *: export saas-15.2 translations
closes odoo/documentation#6979

X-original-commit: fd2da98f0e
Signed-off-by: Martin Trigaux (mat) <mat@odoo.com>
2023-12-19 08:15:39 +00:00
Julien Castiaux
7e8edb44b4 [FIX] deploy: nginx forwarded-host with tcp port
Install nginx using the nginx configuration found in the documentation
and changes the `listen` port to 8080. Start Odoo in `--proxy-mode`.

    listen 8080;
    server_name mycompany.odoo.com;
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Real-IP $remote_addr;
    location / {
            proxy_pass http://127.0.0.1:8069;
    }

Inside your browser, access "http://mycompany.odoo.com:8080" you are
wrongly redirected to "http://mycompany.odoo.com:80".

Odoo uses the `X-Forwarded-Host` http header value to generate new URls,
in this configuration `$host` only contains the domain (=hostname using
the urllib terminology) instead of the domain+port (=netloc). The
variable that contains both the domain and the port is actually
`$http_host`.

closes odoo/documentation#6931

Closes: odoo/odoo#64643
X-original-commit: 8d1642984f
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-15 08:58:54 +00:00
Tom Aarab (toaa)
b59538c526 [IMP] accounting: updated chart of accounts page
Updated the chart of accounts page. Forward to master.

16.3 -> Change "ellipsis" menu button
17 -> Change "Setup" to "View"

taskid-3609365

closes odoo/documentation#6909

X-original-commit: b617b47ab2
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-12-14 12:25:39 +00:00
Maximilien (malb)
c0b58d3307 [FIX] accounting: cheat sheet reconcile
Before this commit, when doing the reconciliation of the table present in the
cheat sheet, the second reconciliation was wrong because the "Invoice 1" should
be reconciled with the twos partials payment. This Pr correct that by changing
the find parameter to target the partials also.

closes odoo/documentation#6920

Task: 3633468
X-original-commit: bed0a11233
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Maximilien La Barre (malb) <malb@odoo.com>
2023-12-14 10:22:33 +00:00
Tom Aarab (toaa)
89320080c6 [IMP] accounting: fiscal positions update
Updated fiscal positions for 15.0/15.2

taskid-3611075

closes odoo/documentation#6904

X-original-commit: f00cbb47e3
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-12-14 09:19:54 +00:00
Lara Martini (larm)
7bdb3dfa7c [ADD] Payroll: adding detailed payslips doc
closes odoo/documentation#6923

X-original-commit: 9486fe5b62
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: meng-odoo <101904966+meng-odoo@users.noreply.github.com>
Co-authored-by: ksc-odoo <ksc@odoo.com>
Co-authored-by: samueljlieber <sali@odoo.com>
Co-authored-by: StraubCreative <zst@odoo.com>
2023-12-14 01:53:48 +00:00
Sam Lieber (sali)
ebda32d3b0 [IMP] accounting/l10n_mx: additional context
closes odoo/documentation#6887

X-original-commit: 1cca645f17
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
Co-authored-by: feav-odoo <feav@odoo.com>
Co-authored-by: toaa-odoo <toaa@odoo.com>
Co-authored-by: larm-odoo <121518652+larm-odoo@users.noreply.github.com>
2023-12-11 15:23:00 +00:00
KC (ksc)
40992ece98 [IMP] sales: product variants quotation/sales orders
closes odoo/documentation#6820

X-original-commit: 17cc753405
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 18:39:27 +00:00
KC (ksc)
da7fd7797b [IMP] sales: get paid to validate doc
closes odoo/documentation#6815

X-original-commit: 5541f2132e
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 03:21:41 +00:00
Jess Rogers (jero)
e30bc3d489 [IMP] crm: update plan activities
closes odoo/documentation#6766

X-original-commit: e4aee350b8
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
Co-authored-by: Timothy Kukulka <91896312+tiku-odoo@users.noreply.github.com>
Co-authored-by: ksc-odoo <73958186+ksc-odoo@users.noreply.github.com>
Co-authored-by: Sam Lieber (sali) <36018073+samueljlieber@users.noreply.github.com>
Co-authored-by: Zachary Straub <zst@odoo.com>
2023-12-05 17:58:31 +00:00
Julien Castiaux
3386801162 [IMP] developer/reference/cli: --proxy-mode
Many customers struggle with their web server configuration, notably
regarding the `--proxy-mode` option and the way `X-Forwarded-*` HTTP
request headers are interpreted within Odoo.

The `--proxy-mode` section has been updated to cover the most common
misunderstandings and to give guidances on how to setup a web server.

Odoo always only takes the last entry of the `X-Forwarded-*` request
header because there are situations where it is not possible to
determine which last n-th entry to use. Employees might access their
odoo database via the internal network: connecting directly to nginx,
while customers might access the database via an additional proxy such
as cloudflare. The real IP of employees would be the last inside the
`X-Forwarded-For` chain, while the real IP of customers would be the
*second* last entry inside the chain. It would be incorrect to always
take the same nth last entry inside the chain. The cloudflare's own IP
address must be discarded from the chain. Web servers usually feature
a way to ignore trusted IP from the chain, a way so that the real IP
of the user is always the last entry inside the chain. Odoo relies on
such feature to be active and configured.

Prior discussions about `X-Forwarded-For`:
* odoo/odoo#104947
* odoo/odoo#118629
* odoo/odoo#139536

All `X-Forwarded-*` headers are ignored in case the `X-Forwarded-Host`
header is missing (even with `--proxy-mode`). System admin might be
tempted to not set this header and to set `Host` instead, this is
broken as this a user-agent would be able to spoof `X-Forwarded-Host`
and Odoo would use that instead of the correct `Host`.

Prior discussions about `X-Forwarded-Host`:
* odoo/odoo#63277
* odoo/odoo#70117

closes odoo/documentation#6737

X-original-commit: 3d91c57b57
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-03 08:28:07 +00:00
“Audrey
555228569b [ADD] website: mail groups
task-2845181

closes odoo/documentation#6698

X-original-commit: 632039fa74
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Audrey Vandromme (auva) <auva@odoo.com>
2023-11-29 11:44:37 +00:00
Sam Lieber (sali)
bac24f4b52 [IMP] accounting/l10n_co: additional context
closes odoo/documentation#6684

X-original-commit: 6045a60dd5
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
Co-authored-by: dade-odoo <87431108+dade-odoo@users.noreply.github.com>
Co-authored-by: larm-odoo <121518652+larm-odoo@users.noreply.github.com>
2023-11-27 22:31:58 +00:00
Jess Rogers (jero)
574b664d6c [IMP] crm: update manage lost opps
closes odoo/documentation#6675

X-original-commit: 21f0ad60f8
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: ksc-odoo <73958186+ksc-odoo@users.noreply.github.com>
Co-authored-by: brse-odoo <brse@odoo.com>
Co-authored-by: Sam Lieber (sali) <36018073+samueljlieber@users.noreply.github.com>
2023-11-27 19:05:57 +00:00
Marion (masp)
2ab23b66fd [IMP] Contributing: typo seealso admonition
closes odoo/documentation#6636

X-original-commit: 70d5a55909
Signed-off-by: Marion Spindler (masp) <masp@odoo.com>
2023-11-27 17:27:23 +00:00
Xavier (XPL)
cf8c14213f [IMP] outlook: remove note about multi-user sync spam
task-3575806

closes odoo/documentation#6618

X-original-commit: b4302e4023
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-23 15:12:46 +00:00
Xavier (XPL)
8af7a4bac6 [FIX] accounting: update link to getting started video tutorial
task-3608613

closes odoo/documentation#6608

X-original-commit: c0653112a1
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-23 15:12:44 +00:00
Xavier (XPL)
879b40c94b [IMP] paypal: add note about supported currencies
task-3608056

closes odoo/documentation#6565

X-original-commit: 5f1881a88a
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-23 07:54:54 +00:00
Xavier (XPL)
5c47d71f8c [IMP] upgrade: add note on bank synch neutralization
task-3605690

closes odoo/documentation#6556

X-original-commit: dc48273e7e
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-22 14:31:54 +00:00
Xavier (XPL)
8b3b99eb1b [FIX] payroll: add missing show-content metadata
Without the :show-content: metadata markup, it is not possible to open the
page by navigating from the toctree.

closes odoo/documentation#6523

X-original-commit: 16e339a7a3
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-21 14:59:02 +00:00
Mathieu (mano)
41b5fb9cb7 [IMP] odoo_theme: toctrees-l1,l2 design improvement
Issue 1:
========
The toctrees in the documentation are visually inconsistent because of
the content. Sometimes we have titles that are also links and visually
collides with the rest of the toc making it hard to read. This applies
to toctree-l1 and toctree-l2.

Fix 1:
========
When we have a link and title toctree-l2 in a list containing other
nested toc, we apply another styling displaying it with the same color
as a title, but with an icon and hover behavior indicating that it is a
link. (This commit also changes the direction of the i-link icon to make
it standard).

Issue 2:
========
When we have only have toctree-l1 links without nested toc the toctree
is uselessly taking a lot of space.

Fix: 2
========

In these scenario we add a class to the toctree wrapper to replace the
toctree-l1 style with a toctree-l2.

task-3138525
task-3138563

part of

task-3059178

closes odoo/documentation#6500

X-original-commit: c62bf21987
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-11-21 13:37:28 +00:00
Felicious
b456fa04a6 [IMP] barcode: split docs + hone in on language
closes odoo/documentation#6491

X-original-commit: e7cd792466
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: Sam Lieber (sali) <36018073+samueljlieber@users.noreply.github.com>
Co-authored-by: brse-odoo <brse@odoo.com>
Co-authored-by: Zachary Straub <zst@odoo.com>
2023-11-17 20:00:29 +00:00
tiku-odoo
716113965a [IMP] Productivity: Outlook Plugin edits
closes odoo/documentation#6471

X-original-commit: 71aabb2618
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2023-11-15 18:46:51 +00:00
Felicious
8511d26c82 [IMP] inventory: expand on accounting and math
closes odoo/documentation#6457

X-original-commit: f48a4e885a
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: toaa <104567387+toaa-odoo@users.noreply.github.com>
Co-authored-by: meng-odoo <101904966+meng-odoo@users.noreply.github.com>
2023-11-15 13:43:40 +00:00
Felicious
7c9d1ec1e0 [IMP] inventory: fwport removal strategy
closes odoo/documentation#6441

X-original-commit: ba34f754ce
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-15 05:34:52 +00:00
Sam Lieber (sali)
a996c4c00c [IMP] tests: make review UX and resource files
closes odoo/documentation#6427

X-original-commit: 25e204adcd
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
Co-authored-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-11-13 17:37:34 +00:00
John Holton (hojo)
fcaf4b49ee [ADD] Inventory: Use locations to manage inventory
closes odoo/documentation#6416

X-original-commit: 889e95037d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-11 18:48:25 +00:00
Loredana Perazzo
1655c179cc [IMP] pos: add warning to not buy a terminal from amazon
closes odoo/documentation#6384

Taskid: 3284737
X-original-commit: f0495a9bc9
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-09 13:03:44 +00:00
Nathan Marotte (nama)
caac9a7d3b [IMP] upgrade: overhaul upgrade doc
closes odoo/documentation#6393

X-original-commit: c6c4598928
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-09 12:10:50 +00:00
Felicious
09ce8b2271 [IMP] inventory: rewrite lead times, add images
closes odoo/documentation#6353

X-original-commit: 3d5badcc82
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: brse-odoo <brse@odoo.com>
Co-authored-by: ksc-odoo <73958186+ksc-odoo@users.noreply.github.com>
2023-11-09 04:34:03 +00:00
John Holton (hojo)
ccbd9d5aad [ADD] Inventory: Add Scrap inventory
closes odoo/documentation#6365

X-original-commit: 0e6576cc3d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-09 03:39:48 +00:00
tiku-odoo
03a69ea1c0 [ADD] IoT: OPC-UA Protocol
closes odoo/documentation#6343

X-original-commit: 4d2a3101ad
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-08 09:35:52 +00:00
Antoine Vandevenne (anv)
46049c7a21 [IMP] supported_versions: release 17.0
closes odoo/documentation#6307

X-original-commit: 2c805d9813
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-11-07 11:58:04 +00:00
Louis Baudoux
00747b26d3 [IMP] iap: move from first-person to second-person writing
For some reason, the first-person was used throughout the IAP
documentation, and quite inconsistently.
As the rest of the documentation is using second-person writing, IAP
should be no exception.

closes odoo/documentation#6297

X-original-commit: 8da826d944
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Louis Baudoux (lba) <lba@odoo.com>
2023-11-06 17:51:49 +00:00
Louis Baudoux
0e110ac3b8 [IMP] iap: remove documentation related to IAP services creation
It has been decided to remove the possibility for our users to create
their own IAP services.
This decision was motivated by the fact that, in the 5 years of
existence of IAP, very few non-Odoo services have been created and
actively used by our customers.

X-original-commit: 0c1b7c4636
Part-of: odoo/documentation#6297
2023-11-06 17:51:49 +00:00
Louis Baudoux
a6bd5ce9e3 [IMP] extract_api: document the new API version
We have introduced a second version of the Extract API that adds the IAP
account token to the `get_result` and `validate` routes.

There are also other changes in this commit:
 - The deprecated stuff has been removed as it's been deprecated for a
   while and won't be supported anymore in the future.
 - The `status` table of the `get_result` route has been added as it was
   missing for some reason.
 - The documentation regarding the `/validate` routes have been removed
   for security reasons.

closes odoo/documentation#6276

X-original-commit: a8c6272899
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Louis Baudoux (lba) <lba@odoo.com>
2023-11-03 11:54:45 +00:00
Rémy Voet (ryv)
bd11d27891 [FIX] developer: fix bad documentation of --unaccent
In the CLI, `--unaccent` try to enable PostgreSQL unaccent extention
when odoo is responsible to create new database(s).

closes odoo/documentation#6237

X-original-commit: 1639d22efd
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Rémy Voet (ryv) <ryv@odoo.com>
2023-10-31 07:01:11 +00:00
Tom Aarab (toaa)
1bc985fbb7 [IMP] silverfin: API key
Added a note to make it clearer that for fiduciaries, a single API key
is valid for all databases linked to the user.

taskid-3570700

closes odoo/documentation#6224

X-original-commit: 323d3563c9
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-10-27 11:50:49 +00:00
Martin Trigaux
218b48aafa [IMP] *: export translations
closes odoo/documentation#6217

X-original-commit: f3f0232847
Signed-off-by: Martin Trigaux (mat) <mat@odoo.com>
2023-10-27 06:41:42 +00:00
Louis Baudoux
d829aa19a0 [IMP] extract_api: uniformize API documentation across all versions
We used to document the extract API according to the version of the
documentation that is being viewed, i.e. in version 14, we
documented the API version that was used in Odoo 14.

This is actually not a good idea as the extract API isn't strictly
linked to Odoo versions, it has its own versioning system.

It can also be an issue if users don't realize they're viewing an old
version of the API and start implementing customizations based on it.

This commit is an exact copy of the current `master` version of the
extract API documentation.

closes odoo/documentation#6219

X-original-commit: f8adea7845
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Louis Baudoux (lba) <lba@odoo.com>
2023-10-26 11:07:39 +00:00
Mathieu Duckerts-Antoine
b14d189dfe [FIX] search panel: fix bad indentation
closes odoo/documentation#6195

X-original-commit: 82055c1f15
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Mathieu Duckerts-Antoine (dam) <dam@odoo.com>
2023-10-23 15:18:08 +00:00