Commit Graph

1184 Commits

Author SHA1 Message Date
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
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
Donatienne (dopi)
74af020940 [IMP] sign: update for 16.0
task-3433578

closes odoo/documentation#6659

X-original-commit: 71446b0668
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-27 10:40:06 +00:00
Donatienne (dopi)
2ba79f54a5 [IMP] documents: new features
task-3433587

closes odoo/documentation#5646

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-27 10:39:59 +00:00
Xavier (XPL)
0da44b9594 [IMP] reporting: improve grammar and remove image centering
closes odoo/documentation#6650

X-original-commit: 3ead6e0f99
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-24 13:57:29 +00:00
Xavier (XPL)
ae5e8c7aef [FIX] accounting: update link to getting started video tutorial
task-3608613

closes odoo/documentation#6612

X-original-commit: c0653112a1
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-23 21:11:43 +00:00
Claire Bretton (clbr)
672166d0df [FIX] getting_started: remove useless lambda
The lambda function here is useless and makes newdooers think
they need to use it everytime.
`default=fields.Date.add(fields.Date.today(), months=3))`
should do the trick, no lambda involved.

closes odoo/documentation#6629

X-original-commit: 620508fb29
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Claire Bretton (clbr) <clbr@odoo.com>
2023-11-23 19:52:53 +00:00
Claire Bretton (clbr)
e7657174ca [FIX] getting_started: invalid addons-path
The "../technical-training-sandbox" is added too early in the path since
its still empty, and results into an "invalid addons-path" error.

X-original-commit: 8707609b38
Part-of: odoo/documentation#6629
2023-11-23 19:52:53 +00:00
Xavier (XPL)
95bdf70f75 [IMP] outlook: remove note about multi-user sync spam
task-3575806

closes odoo/documentation#6622

X-original-commit: b4302e4023
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-23 19:52:52 +00:00
Xavier (XPL)
0327813a50 [IMP] paypal: add note about supported currencies
task-3608056

closes odoo/documentation#6569

X-original-commit: 5f1881a88a
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-23 09:34:18 +00:00
KC (ksc)
d038aff425 [IMP] sales: updated deadline doc for 16
closes odoo/documentation#6582

X-original-commit: 75c24e7e88
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-23 07:48:17 +00:00
Felicious
20a9c3bf6d [IMP] inventory: update delivery methods from 12 to 16
closes odoo/documentation#6598

X-original-commit: 4e2b634a50
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: hojo-odoo <123424465+hojo-odoo@users.noreply.github.com>
Co-authored-by: Zachary Straub <zst@odoo.com>
2023-11-23 06:47:10 +00:00
Felicious
7fe9193209 [ADD] inventory: cluster picking
closes odoo/documentation#6589

X-original-commit: 32900efbb9
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: meng-odoo <101904966+meng-odoo@users.noreply.github.com>
2023-11-23 06:47:09 +00:00
John Holton (hojo)
9afde5ed0d [ADD] Quality: Measure quality check
closes odoo/documentation#6576

X-original-commit: 78713f1637
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-23 01:18:44 +00:00
Xavier (XPL)
5221f20aca [IMP] upgrade: add note on bank synch neutralization
task-3605690

closes odoo/documentation#6560

X-original-commit: dc48273e7e
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-22 14:43:41 +00:00
Donatienne (dopi)
dbd9d29a50 [IMP] website: use plausible.io servers and account
This addition explains how to create and connect an existing plausible.io account in Odoo.

task-3540753

closes odoo/documentation#6543

X-original-commit: cd11937f43
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-11-22 08:11:05 +00:00
John Holton (hojo)
e656e2d924 [ADD] Quality: Pass - Fail quality checks
closes odoo/documentation#6549

X-original-commit: 1a11e3c35c
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-22 03:49:38 +00:00
Jess Rogers (jero)
f17abe6248 [REM] crm: google spreadsheet integration
closes odoo/documentation#6532

X-original-commit: a11fa7e5b2
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-11-21 18:10:06 +00:00
Xavier (XPL)
fb29b81954 [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#6527

X-original-commit: 16e339a7a3
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-21 17:08:51 +00:00
Felicious
244c4b66f5 [IMP] barcode: split docs + hone in on language
closes odoo/documentation#6517

X-original-commit: 9081e45aab
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 21:54:23 +00:00
oco-odoo
a0da25bb62 [IMP] accounting: new tag selector for custom reports
0c0cf8ebc9
added a new way to select accounts in the account_codes engine. This
commit adds some explanation in the doc on how to use this new syntax.

closes odoo/documentation#6503

X-original-commit: 1a32165180
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-11-17 20:34:03 +00:00
Rémi Rahir (rar)
1746c57ff4 [FIX] dev/reference: Fix external reference
The tour utils were red and moved in Odoo (odoo/odoo#107618).

closes odoo/documentation#6496

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-11-17 17:56:59 +00:00
John Holton (hojo)
1a1be966ab [ADD] MRP: Three-step manufacturing
closes odoo/documentation#5163

closes odoo/documentation#6487

X-original-commit: 5689f7cf22
Signed-off-by: John Holton (hojo) <hojo@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-17 15:51:04 +00:00
John Holton (hojo)
20f65d7bcf [ADD] MRP: One-step manufacturing
closes odoo/documentation#6467

X-original-commit: 9c0982371a
Signed-off-by: John Holton (hojo) <hojo@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-16 01:04:56 +00:00
Felicious
f4a17b8a1a [IMP] inventory: expand on accounting and math
closes odoo/documentation#6477

X-original-commit: 9761eb44dc
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 23:51:44 +00:00
tiku-odoo
d4f51ec03e [IMP] Productivity: Outlook Plugin edits
closes odoo/documentation#6478

X-original-commit: 71aabb2618
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2023-11-15 18:46:09 +00:00
Rémy Voet (ryv)
6b7caffc2a [IMP] orm: update changelog
closes odoo/documentation#6462

X-original-commit: f1960a250c
Signed-off-by: Rémy Voet (ryv) <ryv@odoo.com>
2023-11-15 13:09:05 +00:00
KC (ksc)
6d4fae0528 [IMP] sales: complete rewrite for pricing doc
closes odoo/documentation#6412

X-original-commit: a113d83fea
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-15 05:36:45 +00:00
Yaroslav Soroko (yaso)
dfbc816e65 [IMP] Pos: iot six module part added to the six doc
This PR adds the documentation for a new Pos IoT Six module which will
soon replace the old Six module.

task-3555605

closes odoo/documentation#6437

X-original-commit: bc98b8c491
Signed-off-by: Yaroslav Soroko (yaso) <yaso@odoo.com>
Co-authored-by: Yaroslav Soroko (yaso) <yaso@odoo.com>
Co-authored-by: Loredana Perazzo <lrpz@odoo.com>
2023-11-14 20:09:54 +00:00
John Holton (hojo)
e77eb994ba [ADD] Quality: Instructions quality check
closes odoo/documentation#6451

X-original-commit: f0b895fdb2
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-14 00:49:58 +00:00
Felicious
6936eec4e0 [IMP] inventory: fwport removal strategy
closes odoo/documentation#6445

X-original-commit: ba34f754ce
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-14 00:49:57 +00:00
John Holton (hojo)
0b81c85d18 [ADD] MRP: Two-step manufacturing
closes odoo/documentation#6399

X-original-commit: 0241c9dd05
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-12 22:42:49 +00:00
John Holton (hojo)
be5551b5f5 [ADD] Inventory: Use locations to manage inventory
closes odoo/documentation#6420

X-original-commit: 889e95037d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-11 19:13:38 +00:00
Sam Lieber (sali)
beb3dabe5e [FIX] upgrade: remove empty toctree
closes odoo/documentation#6369

X-original-commit: 392e99f907
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-09 18:53:41 +00:00
John Holton (hojo)
e42bb2d978 [ADD] MRP: Work order dependencies
closes odoo/documentation#6377

X-original-commit: a1e7445ae3
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-09 16:14:58 +00:00
Loredana Perazzo
0df937bcbf [IMP] pos: add warning to not buy a terminal from amazon
closes odoo/documentation#6388

Taskid: 3284737
X-original-commit: f0495a9bc9
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-09 12:47:45 +00:00
John Holton (hojo)
f1893a2c52 [ADD] Inventory: Add Scrap inventory
closes odoo/documentation#6372

X-original-commit: 0e6576cc3d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-09 04:58:48 +00:00
Felicious
676a5e2885 [IMP] inventory: rewrite lead times, add images
closes odoo/documentation#6357

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 01:18:13 +00:00
tiku-odoo
b3d188d785 [ADD] IoT: OPC-UA Protocol
closes odoo/documentation#6347

X-original-commit: 4d2a3101ad
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-08 10:14:44 +00:00
John Holton (hojo)
03fbd83059 [ADD] MRP: Add Split and merge manufacturing orders
closes odoo/documentation#6338

X-original-commit: 83873dbd71
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-08 10:14:43 +00:00
John Holton (hojo)
246b423b76 [ADD] MRP: Shop Floor Overview
closes odoo/documentation#6332

X-original-commit: cd881656b8
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-08 07:18:38 +00:00
Louis Baudoux
54cf9cd814 [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#6325

X-original-commit: df474342ba
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Louis Baudoux (lba) <lba@odoo.com>
2023-11-07 20:07:54 +00:00
Louis Baudoux
c91fbed100 [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: 282f041ed1
Part-of: odoo/documentation#6325
2023-11-07 20:07:54 +00:00
Nathan Marotte (nama)
9daa0a8abc [IMP] upgrade: overhaul upgrade doc
closes odoo/documentation#6317

X-original-commit: 41aebc3b05
Signed-off-by: Nathan Marotte (nama) <nama@odoo.com>
2023-11-07 17:20:47 +00:00
Antoine Vandevenne (anv)
60cdb997d3 [IMP] supported_versions: release 17.0
closes odoo/documentation#6311

X-original-commit: 2c805d9813
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-11-07 17:20:46 +00:00
Felicious
831415c098 [ADD] PLM: ECO approvals doc
closes odoo/documentation#6301

X-original-commit: 907e1ba854
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) <zst@odoo.com>
2023-11-06 23:12:52 +00:00
Sam Lieber (sali)
c63dd4e3de [IMP] l10n: Chile new features
closes odoo/documentation#6254

X-original-commit: eff8e9d915
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
Co-authored-by: masi-odoo <masi@odoo.com>
Co-authored-by: StraubCreative <zst@odoo.com>
Co-authored-by: larm-odoo <121518652+larm-odoo@users.noreply.github.com>
Co-authored-by: Felicia Kuan <feku@odoo.com>
2023-11-05 19:54:59 +00:00
Felicious
3193107900 [ADD] PLM: version control
closes odoo/documentation#6291

Author:    Felicious <feku@odoo.com>
X-original-commit: 6a5c340a26
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-04 11:58:31 +00:00
Jess Rogers (jero)
8f102c0b07 [IMP] live chat: update ratings doc
closes odoo/documentation#6261

X-original-commit: 7a307320c3
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
Co-authored-by: larm-odoo <121518652+larm-odoo@users.noreply.github.com>
2023-11-03 22:15:57 +00:00
Louis Baudoux
8676bc75f1 [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#6280

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:29:09 +00:00
Felicious
f207bce1c4 [ADD] PLM: engineering change order
closes odoo/documentation#6270

X-original-commit: fc9bbb7d22
Signed-off-by: Felicia Kuan (feku) <feku@odoo.com>
Co-authored-by: hojo-odoo <123424465+hojo-odoo@users.noreply.github.com>
Co-authored-by: Sho Ketchum <96748231+odoo-shke@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-02 17:26:03 +00:00
Rémy Voet (ryv)
d8cf7f16ab [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#6241

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:00:16 +00:00
Tom Aarab (toaa)
bec8860955 [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#6228

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:15:58 +00:00
Tom Aarab (toaa)
a31bcec3ba [IMP] accounting: reconciliation
Updated screenshots and typos for 16.3

Forward to 16.4:
- Change: Dashboard links are improved, and audit features can be found
  in the journal items view.

closes odoo/documentation#6162

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-10-27 09:43:43 +00:00
Mathieu Duckerts-Antoine
648a2e8142 [FIX] search panel: fix bad indentation
closes odoo/documentation#6202

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 14:33:22 +00:00
lman-odoo
27de266b94 [FIX] Localization-Peru: duplicated words
closes odoo/documentation#6196

X-original-commit: 4abe6da354
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-10-23 13:28:30 +00:00
Lara Martini (larm)
60adfc9a9b [IMP] employees: making targeted edits for v15 and updating images
closes odoo/documentation#6185

X-original-commit: a819e91c7b
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
2023-10-20 14:00:50 +00:00
tiku-odoo
f74cf3f7ee [IMP] Maintain/Productivity: Azure Name Change
closes odoo/documentation#6177

X-original-commit: b65dd60b25
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-19 03:57:56 +00:00
lman-odoo
a89f30b5dc [FIX] partner_autocomplete: fix a typo
closes odoo/documentation#6174

X-original-commit: e24e708a14
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-19 03:57:55 +00:00
Lara Martini (larm)
cb71f08a7f [ADD] payroll: adding new work entries doc
closes odoo/documentation#6145

X-original-commit: d349cf7bb1
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-19 00:46:34 +00:00
“Audrey
f48368b9d2 [FIX] Studio: New button in Reports
closes odoo/documentation#6164

X-original-commit: f9db244a85
Signed-off-by: Audrey Vandromme (auva) <auva@odoo.com>
2023-10-18 15:27:56 +00:00
Loredana Perazzo
fa40a94962 [IMP] pos: update content of the pricelists page
task-3005170

closes odoo/documentation#6159

X-original-commit: 5086943de0
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Loredana Perazzo (lrpz) <lrpz@odoo.com>
2023-10-18 06:01:42 +00:00
Louis Baudoux
959d91460b [IMP] iap: document account deactivation
A new way to disable IAP accounts has been introduced recently.

This feature is mostly used in neutralization scripts to prevent
customers from accidentaly consuming their credits on their
staging/testing databases.

Documenting it will help users re-enable their accounts if they still
wish to use it in a testing environment.

closes odoo/documentation#6137

X-original-commit: fa604a95b0
Signed-off-by: Louis Baudoux (lba) <lba@odoo.com>
2023-10-17 09:23:06 +00:00
Lara Martini (larm)
ca48ab8aff [ADD] Recruitment: add new job position
Co-authored by: hojo-odoo <hojo@odoo.com>
Co-authored by: StraubCreative <zst@odoo.com>

closes odoo/documentation#6153

X-original-commit: 8e7fd152ac
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-17 04:56:22 +00:00
Stan (stgu)
8977c39b37 [IMP] howtos/translations: text & tips
Remove parenthesis around a term that's fairly straightforward to
understand and later used as a title Add a much-needed point.

closes odoo/documentation#6124

X-original-commit: 6f3ed657fc
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Stanislas Gueniffey (stgu) <stgu@odoo.com>
2023-10-16 16:02:09 +00:00