Commit Graph

3633 Commits

Author SHA1 Message Date
tiku-odoo
e341b4e677 [IMP] Market Connectors: eBay Marketplace edits
closes odoo/documentation#7079

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 02:11:59 +00:00
Jess Rogers (jero)
aa46d29bb9 [IMP] crm: update convert leads
closes odoo/documentation#7065

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:49:30 +00:00
Martin Trigaux
76fb5790f3 [I18N] *: export saas-16.1 translations
closes odoo/documentation#7070

X-original-commit: 2d4fb6f390
Signed-off-by: Martin Trigaux (mat) <mat@odoo.com>
2023-12-21 14:25:35 +00:00
tiku-odoo
fdd873c328 [IMP] Misc: Portal User Change Login Initial Commit
closes odoo/documentation#7056

X-original-commit: d423038270
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-21 07:34:56 +00:00
tiku-odoo
b33a8d3770 [IMP] Productivity: Discuss Getting Started
closes odoo/documentation#7046

X-original-commit: cdd5dbead5
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-21 07:34:55 +00:00
KC (ksc)
0ed7694ecb [IMP] marketing automation: updated testing_running campaign doc for Odoo 16
closes odoo/documentation#7034

X-original-commit: 76fc90dde7
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-21 07:34:54 +00:00
KC (ksc)
39c530fe2a [IMP] marketing automation: update understanding_metrics for 16
closes odoo/documentation#7033

X-original-commit: 70050340fe
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-21 07:34:53 +00:00
KC (ksc)
e1e5308899 [IMP] marketing automation: updated workflow activities for 16
closes odoo/documentation#7025

X-original-commit: 6968e362da
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-21 07:34:52 +00:00
KC (ksc)
074058f6f3 [IMP] sales: updated variants doc for v16
closes odoo/documentation#7015

X-original-commit: c2c835c2d6
Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-12-20 21:59:20 +00:00
KC (ksc)
56a5f0cf8b [IMP] social marketing: updated essentials for Odoo 16
closes odoo/documentation#7014

X-original-commit: bddbe0fd45
Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-12-20 21:59:19 +00:00
KC (ksc)
88f1121927 made all of BRSE's edits
closes odoo/documentation#7006

X-original-commit: a728ac22dd
Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-12-20 20:37:02 +00:00
Lara Martini (larm)
1f6feca16d [IMP] Inventory: updated for v16
closes odoo/documentation#6997

X-original-commit: 1c00f06816
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-20 06:12:06 +00:00
Lara Martini (larm)
a066d6f165 [ADD] Payroll: adding new reporting doc
closes odoo/documentation#6991

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

X-original-commit: 72f93a84ea
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-19 20:24:28 +00:00
Julien Castiaux
8f47ce42dc [FIX] deploy: set Content-Security-Policy on static
The Content-Security-Policy[^1] http header was only set on the response
generated by controllers but it was missing from the `/<module>/static/`
route.

It is not strictly necessary to set that header on the responses comming
from that routes as it is not possible to add new static files or edit
existing ones via the interface (not even as admin). Only the developers
and system administrator can access those files.

It is also worth mentionning that using the Odoo internal web server to
deliver static files is suboptimal. Outside of a dev environment, those
files will typically be delivered via a web server[^2] and sysadmins
should configure their web server to set the CSP header on static images.

[^1]: https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
[^2]: https://www.odoo.com/documentation/master/administration/install/deploy.html#serving-static-files-and-attachments

closes odoo/documentation#6950

X-original-commit: f3f44fe5f2
Related: odoo/odoo#146584
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-18 17:11:42 +00:00
Julien Castiaux
896820000b [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#6941

Closes: odoo/odoo#64643
X-original-commit: 09c42c5896
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-18 17:11:39 +00:00
KC (ksc)
f4e688bcc3 [IMP] sales: updated entire invoicing based on milestones doc
closes odoo/documentation#6965

X-original-commit: d615bc0f6d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-17 19:03:51 +00:00
Brandon Seltenrich (BRSE)
152c7bcb35 [FIX] barcode: fix default delay number
closes odoo/documentation#6957

X-original-commit: 18aad6d5f2
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-16 22:49:50 +00:00
KC (ksc)
123de24eb3 [IMP] sales: updated Amazon Connector setup doc for 16
closes odoo/documentation#6936

X-original-commit: 6cf4d56153
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: dalaOdoo <dala@odoo.com>
Co-authored-by: Demesmaeker <edm@odoo.com>
Co-authored-by: meng-odoo <meng@odoo.com>
Co-authored-by: brse-odoo <brse@odoo.com>
Co-authored-by: StraubCreative <zst@odoo.com>
2023-12-16 01:58:42 +00:00
Tom Aarab (toaa)
8dccc8fc22 [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#6913

X-original-commit: b617b47ab2
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-12-14 13:26:40 +00:00
Lara Martini (larm)
8ed425cbb4 [ADD] Payroll: adding detailed payslips doc
closes odoo/documentation#6927

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:09 +00:00
Sam Lieber (sali)
5082431d5d [IMP] accounting/l10n_mx: additional context
closes odoo/documentation#6892

X-original-commit: 9e7518ff69
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-13 15:09:04 +00:00
Maximilien (malb)
ba998aed7f [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#6900

Task: 3633468
X-original-commit: 053fb768e6
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Maximilien La Barre (malb) <malb@odoo.com>
2023-12-13 09:40:26 +00:00
John Holton (hojo)
ad4f3d48ab [REF] Inventory: Restructure Inventory scope
closes odoo/documentation#6880

X-original-commit: 59791c252b
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-11 21:49:25 +00:00
KC (ksc)
ac39c0cb9f [IMP] sales: reinvoice expenses to customers
closes odoo/documentation#6823

X-original-commit: a4a9335dd1
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-11 20:33:46 +00:00
KC (ksc)
baea3bab61 [IMP] sales: updated down payment doc for 16
closes odoo/documentation#6848

X-original-commit: 9fc9c2f52d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 22:13:22 +00:00
KC (ksc)
9b6835df9e [IMP] sales: updated optional_products for 16
closes odoo/documentation#6846

X-original-commit: 22d41dc2f3
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 22:13:21 +00:00
KC (ksc)
17312c9f3e [IMP] sales: online signature confirmation doc
closes odoo/documentation#6845

X-original-commit: e6a6b9b453
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 22:13:20 +00:00
KC (ksc)
97aa4a330a [IMP] sales: updated time_materials for v16
closes odoo/documentation#6843

X-original-commit: 1e2a29338e
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 22:13:19 +00:00
KC (ksc)
f37afc5e23 [IMP] sales: updated returns doc for v16
closes odoo/documentation#6850

X-original-commit: 4e85ef01e8
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 21:00:44 +00:00
KC (ksc)
d95432a8c5 [IMP] sales: updated pro-forma invoice doc for 16
closes odoo/documentation#6849

X-original-commit: bbbb00e752
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 21:00:43 +00:00
KC (ksc)
5e0518ea7d [IMP] sales: update get signature to validate for 16
closes odoo/documentation#6847

X-original-commit: e1bed7ee7c
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 19:35:04 +00:00
KC (ksc)
7c8fe64f4f [IMP] sales: fully updated currencies doc
closes odoo/documentation#6844

X-original-commit: 039dba0780
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 19:35:03 +00:00
KC (ksc)
b143b1ac80 [IMP] subscriptions: products fix misleading info
closes odoo/documentation#6814

X-original-commit: ff2cabf621
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 03:24:00 +00:00
KC (ksc)
41ea1d68f1 [IMP] sales: update orders and variants for 16
closes odoo/documentation#6807

X-original-commit: af7c7afa34
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 02:24:23 +00:00
Julien Castiaux
be46dc09dc [FIX] administration/install: wkhtmltopdf 0.12.6
Official packages for wkhtmltopdf 0.12.5 are no more released since the
release of wkhtmltopdf 0.12.6 in 2020. Debian 10 "Buster" and Ubuntu
20.04 "Focal" were the last system for which 0.12.5 was built[^1].
Installing 0.12.5 on a Ubuntu 22.04 "Jammy" (using the Focal package)
fails for outdated dependencies.

Official packages for wkhtmltopdf 0.12.6 are published on another
repository[^2] than 0.12.5 used to, it includes packages for 0.12.6 for
both Debian 11 "Bullseye" and Ubuntu 22.04 "Jammy". Version 0.12.6.1-r3
is compatible out-of-the-box with Odoo and has been used by runbot to
test all 16.x, 17.x and master branches for the past month.

This work makes it official that [wkhtmltopdf 0.12.6.1-r3] must be used
for Odoo 16.0 and onward.

[^1]: https://github.com/wkhtmltopdf/wkhtmltopdf/releases/tag/0.12.5
[^2]: https://github.com/wkhtmltopdf/packaging/releases
[wkhtmltopdf 0.12.6.1-r3]: https://github.com/wkhtmltopdf/packaging/releases/tag/0.12.6.1-3

closes odoo/documentation#6797

X-original-commit: e5d77ee285
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-06 16:12:50 +00:00
“Chiara
6926dcf844 [IMP] accounting: followup screenshot
taskid-3614885

closes odoo/documentation#6790

X-original-commit: 27a307cb0c
Signed-off-by: Chiara Prattico (chpr) <chpr@odoo.com>
2023-12-06 12:11:40 +00:00
Donatienne (dopi)
b97057fb6a [IMP] Website: Unsplash documentation updated
task-3498880

closes odoo/documentation#6762

X-original-commit: 88f546f2a9
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-12-06 09:28:58 +00:00
william-andre
dc76f42370 [FIX] install: do not create superuser for postgres
The preferred/safe way of running Odoo is with a standard user, with
only the right to create a database.
See b6b73551db

closes odoo/documentation#6763

X-original-commit: df8114e591
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: William André (wan) <wan@odoo.com>
2023-12-06 08:08:46 +00:00
Zachary Straub (ZST)
f85883a562 [IMP] sales: update quote_template for 16
closes odoo/documentation#6784

X-original-commit: f9013a6309
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-06 03:44:08 +00:00
Jess Rogers (jero)
1ef65b72b5 [IMP] crm: update plan activities
closes odoo/documentation#6774

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 18:45:42 +00:00
Loredana Perazzo
da9268f07a [IMP] pos: remove duplicate of set customer and update sections accordingly
task-3366190

closes odoo/documentation#6665

X-original-commit: 4118cb9bf9
Signed-off-by: Loredana Perazzo (lrpz) <lrpz@odoo.com>
2023-12-04 11:41:31 +00:00
Julien Castiaux
0055c3e482 [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#6741

X-original-commit: 3d91c57b57
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-03 08:27:03 +00:00
Marion (masp)
53cc4aacb5 [FIX] Website: pages.rst menu bug
fixes bug introduced with https://github.com/odoo/documentation/pull/5307

closes odoo/documentation#6717

Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-11-29 13:26:55 +00:00
“Audrey
998aa32f59 [ADD] website: mail groups
task-2845181

closes odoo/documentation#6703

X-original-commit: 25bc655cfa
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Audrey Vandromme (auva) <auva@odoo.com>
2023-11-29 07:21:44 +00:00
John Holton (hojo)
22c9e25f23 [ADD] Quality: Take a Picture Check
closes odoo/documentation#6713

X-original-commit: 2e605c9ec8
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-29 03:18:57 +00:00
Sam Lieber (sali)
9398f21207 [IMP] accounting/l10n_co: additional context
closes odoo/documentation#6688

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:46:07 +00:00
Jess Rogers (jero)
9dd1c5f299 [IMP] crm: update manage lost opps
closes odoo/documentation#6679

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:17 +00:00
Marion (masp)
9d31a62267 [IMP] Contributing: typo seealso admonition
closes odoo/documentation#6640

X-original-commit: 70d5a55909
Signed-off-by: Marion Spindler (masp) <masp@odoo.com>
2023-11-27 17:26:55 +00:00
Felicious
365934f1ef [IMP] barcode: add zebra scanner section
add more figures

closes odoo/documentation#6597

X-original-commit: 56cda37610
Signed-off-by: Felicia Kuan (feku) <feku@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: hojo-odoo <123424465+hojo-odoo@users.noreply.github.com>
Co-authored-by: ksc-odoo <73958186+ksc-odoo@users.noreply.github.com>
Co-authored-by: Zachary Straub <zst@odoo.com>
2023-11-27 14:18:21 +00:00