Commit Graph

1388 Commits

Author SHA1 Message Date
KC (ksc)
c2c835c2d6 [IMP] sales: updated variants doc for v16
closes odoo/documentation#5942

Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-12-20 19:58:40 +00:00
KC (ksc)
bddbe0fd45 [IMP] social marketing: updated essentials for Odoo 16
closes odoo/documentation#5218

Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-12-20 19:58:39 +00:00
KC (ksc)
a728ac22dd made all of BRSE's edits
closes odoo/documentation#5093

Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-12-20 18:53:44 +00:00
Lara Martini (larm)
1c00f06816 [IMP] Inventory: updated for v16
closes odoo/documentation#4379

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-20 03:58:02 +00:00
Lara Martini (larm)
fabe484b75 [ADD] Payroll: adding new reporting doc
closes odoo/documentation#6988

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

X-original-commit: 72f93a84ea
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-19 20:25:15 +00:00
KC (ksc)
d615bc0f6d [IMP] sales: updated entire invoicing based on milestones doc
closes odoo/documentation#5574

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-16 21:54:49 +00:00
Brandon Seltenrich (BRSE)
18aad6d5f2 [FIX] barcode: fix default delay number
closes odoo/documentation#6951

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-15 22:19:40 +00:00
Julien Castiaux
f3f44fe5f2 [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#5485

Related: odoo/odoo#131700
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-15 10:26:41 +00:00
Julien Castiaux
09c42c5896 [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#6932

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 09:23:31 +00:00
KC (ksc)
6cf4d56153 [IMP] sales: updated Amazon Connector setup doc for 16
closes odoo/documentation#6288

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-15 01:10:17 +00:00
Tom Aarab (toaa)
a7c3f818da [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#6910

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

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 02:06:39 +00:00
Sam Lieber (sali)
a28339b44b [IMP] accounting/l10n_mx: additional context
closes odoo/documentation#6888

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 16:06:05 +00:00
John Holton (hojo)
59791c252b [REF] Inventory: Restructure Inventory scope
closes odoo/documentation#5700

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 20:11:38 +00:00
KC (ksc)
4e85ef01e8 [IMP] sales: updated returns doc for v16
closes odoo/documentation#6258

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 04:05:46 +00:00
KC (ksc)
bbbb00e752 [IMP] sales: updated pro-forma invoice doc for 16
closes odoo/documentation#5553

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 04:05:45 +00:00
KC (ksc)
9fc9c2f52d [IMP] sales: updated down payment doc for 16
closes odoo/documentation#5523

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 04:05:44 +00:00
KC (ksc)
e6a6b9b453 [IMP] sales: online signature confirmation doc
closes odoo/documentation#5437

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 04:05:43 +00:00
KC (ksc)
e1bed7ee7c [IMP] sales: update get signature to validate for 16
closes odoo/documentation#5434

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 04:05:42 +00:00
KC (ksc)
22d41dc2f3 [IMP] sales: updated optional_products for 16
closes odoo/documentation#5409

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 04:05:41 +00:00
KC (ksc)
1e2a29338e [IMP] sales: updated time_materials for v16
closes odoo/documentation#5083

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 04:05:40 +00:00
KC (ksc)
039dba0780 [IMP] sales: fully updated currencies doc
closes odoo/documentation#4534

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 04:05:39 +00:00
KC (ksc)
a4a9335dd1 [IMP] sales: reinvoice expenses to customers
closes odoo/documentation#5590

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 02:55:47 +00:00
KC (ksc)
ff2cabf621 [IMP] subscriptions: products fix misleading info
closes odoo/documentation#5560

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 01:49:11 +00:00
KC (ksc)
af7c7afa34 [IMP] sales: update orders and variants for 16
closes odoo/documentation#5456

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-07 00:38:45 +00:00
Julien Castiaux
e5d77ee285 [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#6751

Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-12-06 12:25:24 +00:00
“Chiara
27a307cb0c [IMP] accounting: followup screenshot
taskid-3614885

closes odoo/documentation#6697

Signed-off-by: Chiara Prattico (chpr) <chpr@odoo.com>
2023-12-06 10:12:45 +00:00
Zachary Straub (ZST)
f9013a6309 [IMP] sales: update quote_template for 16
closes odoo/documentation#5873

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-12-06 01:49:52 +00:00
Jess Rogers (jero)
ade6af5b30 [IMP] crm: update plan activities
closes odoo/documentation#6769

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:18 +00:00
william-andre
df8114e591 [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#6728

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-12-05 15:20:02 +00:00
Donatienne (dopi)
88f546f2a9 [IMP] Website: Unsplash documentation updated
task-3498880

closes odoo/documentation#5823

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-12-05 15:19:57 +00:00
Julien Castiaux
a2f895f644 [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#6738

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

closes odoo/documentation#6700

X-original-commit: 632039fa74
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Audrey Vandromme (auva) <auva@odoo.com>
2023-11-28 13:35:14 +00:00
Sam Lieber (sali)
c1fe28dd50 [IMP] accounting/l10n_co: additional context
closes odoo/documentation#6685

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:45 +00:00
Jess Rogers (jero)
33a9e1f017 [IMP] crm: update manage lost opps
closes odoo/documentation#6676

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:44 +00:00
Marion (masp)
4b7668d6a8 [IMP] Contributing: typo seealso admonition
closes odoo/documentation#6637

X-original-commit: 70d5a55909
Signed-off-by: Marion Spindler (masp) <masp@odoo.com>
2023-11-27 17:34:06 +00:00
Loredana Perazzo
4118cb9bf9 [IMP] pos: remove duplicate of set customer and update sections accordingly
task-3366190

closes odoo/documentation#6606

Signed-off-by: Loredana Perazzo (lrpz) <lrpz@odoo.com>
2023-11-27 06:09:50 +00:00
Donatienne (dopi)
71446b0668 [IMP] sign: update for 16.0
task-3433578

closes odoo/documentation#5558

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-24 13:37:38 +00:00
Xavier (XPL)
3ead6e0f99 [IMP] reporting: improve grammar and remove image centering
closes odoo/documentation#6644

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-24 10:28:27 +00:00
Xavier (XPL)
a149164866 [IMP] outlook: remove note about multi-user sync spam
task-3575806

closes odoo/documentation#6619

X-original-commit: b4302e4023
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-23 16:07:15 +00:00
Claire Bretton (clbr)
620508fb29 [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#6607

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-11-23 13:07:05 +00:00
Claire Bretton (clbr)
8707609b38 [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.

Part-of: odoo/documentation#6607
2023-11-23 13:07:05 +00:00
Xavier (XPL)
e413418e1e [FIX] accounting: update link to getting started video tutorial
task-3608613

closes odoo/documentation#6609

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

closes odoo/documentation#6566

X-original-commit: 5f1881a88a
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-23 07:54:39 +00:00
Felicious
4e2b634a50 [IMP] inventory: update delivery methods from 12 to 16
closes odoo/documentation#6287

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 02:55:09 +00:00
Felicious
56cda37610 [IMP] barcode: add zebra scanner section
add more figures

closes odoo/documentation#5827

Signed-off-by: Felicia Kuan (feku) <feku@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-23 02:55:08 +00:00
Felicious
32900efbb9 [ADD] inventory: cluster picking
closes odoo/documentation#5732

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 01:57:56 +00:00
John Holton (hojo)
5612ce8dd8 [ADD] Quality: Take a Picture Check
closes odoo/documentation#5939

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-23 00:53:50 +00:00
KC (ksc)
75c24e7e88 [IMP] sales: updated deadline doc for 16
closes odoo/documentation#5438

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-22 21:52:08 +00:00
John Holton (hojo)
78713f1637 [ADD] Quality: Measure quality check
closes odoo/documentation#5760

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-22 20:50:48 +00:00
Xavier (XPL)
b96de8b50e [IMP] upgrade: add note on bank synch neutralization
task-3605690

closes odoo/documentation#6557

X-original-commit: dc48273e7e
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-22 15:10:02 +00:00
John Holton (hojo)
1a11e3c35c [ADD] Quality: Pass - Fail quality checks
closes odoo/documentation#5884

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-21 19:46:28 +00:00
Xavier (XPL)
f38bae5e8d [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#6524

X-original-commit: 16e339a7a3
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-21 16:34:52 +00:00
Donatienne (dopi)
cd11937f43 [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#6495

Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-11-21 16:34:47 +00:00
Jess Rogers (jero)
a11fa7e5b2 [REM] crm: google spreadsheet integration
closes odoo/documentation#6394

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-21 11:59:53 +00:00
Felicious
9081e45aab [IMP] barcode: split docs + hone in on language
closes odoo/documentation#6492

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:19:31 +00:00
oco-odoo
1a32165180 [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#6494

Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-11-17 17:19:27 +00:00
tiku-odoo
17f958aa80 [IMP] Productivity: Outlook Plugin edits
closes odoo/documentation#6472

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

X-original-commit: 058515ee91
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 17:21:52 +00:00
Rémy Voet (ryv)
f1960a250c [IMP] orm: update changelog
closes odoo/documentation#1611

Signed-off-by: Rémy Voet (ryv) <ryv@odoo.com>
2023-11-15 10:40:22 +00:00
Felicious
a20952ccfa [IMP] inventory: fwport removal strategy
closes odoo/documentation#6442

X-original-commit: ba34f754ce
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-14 00:14:39 +00:00
John Holton (hojo)
f0b895fdb2 [ADD] Quality: Instructions quality check
closes odoo/documentation#5689

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-13 21:03:12 +00:00
Yaroslav Soroko (yaso)
bc98b8c491 [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#5912

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-13 15:57:36 +00:00
John Holton (hojo)
b2dbd4b466 [ADD] Inventory: Use locations to manage inventory
closes odoo/documentation#6417

X-original-commit: 889e95037d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-11 20:45:43 +00:00
KC (ksc)
a113d83fea [IMP] sales: complete rewrite for pricing doc
closes odoo/documentation#4521

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-11 00:04:19 +00:00
John Holton (hojo)
efde0488a6 [ADD] MRP: Three-step manufacturing
closes odoo/documentation#5163

Signed-off-by: John Holton (hojo) <hojo@odoo.com>
2023-11-10 17:37:59 +00:00
John Holton (hojo)
b617ebcdd4 [ADD] MRP: One-step manufacturing
closes odoo/documentation#5158

Signed-off-by: John Holton (hojo) <hojo@odoo.com>
2023-11-09 23:12:48 +00:00
John Holton (hojo)
0241c9dd05 [ADD] MRP: Two-step manufacturing
closes odoo/documentation#5162

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-09 21:15:08 +00:00
Loredana Perazzo
2aa71a3cfc [IMP] pos: add warning to not buy a terminal from amazon
closes odoo/documentation#6385

Taskid: 3284737
X-original-commit: f0495a9bc9
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-11-09 12:13:18 +00:00
Felicious
b79264fdcf [IMP] inventory: rewrite lead times, add images
closes odoo/documentation#6354

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:37:42 +00:00
John Holton (hojo)
95c805131c [ADD] Inventory: Add Scrap inventory
closes odoo/documentation#6367

X-original-commit: 0e6576cc3d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-09 00:36:28 +00:00
Sam Lieber (sali)
392e99f907 [FIX] upgrade: remove empty toctree
closes odoo/documentation#6362

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-08 20:47:12 +00:00
tiku-odoo
c07aa72163 [ADD] IoT: OPC-UA Protocol
closes odoo/documentation#6344

X-original-commit: 4d2a3101ad
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-08 09:35:37 +00:00
John Holton (hojo)
d9bdaee6b7 [ADD] MRP: Work order dependencies
closes odoo/documentation#5217

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-08 01:18:46 +00:00
John Holton (hojo)
83873dbd71 [ADD] MRP: Add Split and merge manufacturing orders
closes odoo/documentation#5224

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-07 22:44:43 +00:00
John Holton (hojo)
cd881656b8 [ADD] MRP: Shop Floor Overview
closes odoo/documentation#6266

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-07 21:06:50 +00:00
Louis Baudoux
df474342ba [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#6298

X-original-commit: 8d0ae3b5df
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Louis Baudoux (lba) <lba@odoo.com>
2023-11-07 16:10:04 +00:00
Louis Baudoux
282f041ed1 [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#6298
2023-11-07 16:10:04 +00:00
Antoine Vandevenne (anv)
f5603c736c [IMP] supported_versions: release 17.0
closes odoo/documentation#6308

X-original-commit: 2c805d9813
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-11-07 12:09:24 +00:00
Nathan Marotte (nama)
41aebc3b05 [IMP] upgrade: overhaul upgrade doc
closes odoo/documentation#6274

Signed-off-by: Nathan Marotte (nama) <nama@odoo.com>
2023-11-07 11:06:49 +00:00
Felicious
907e1ba854 [ADD] PLM: ECO approvals doc
closes odoo/documentation#5348

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 19:13:43 +00:00
Felicious
6a5c340a26 [ADD] PLM: version control
closes odoo/documentation#5262

Author:    Felicious <feku@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-11-03 21:01:41 +00:00
Louis Baudoux
9df648b4c7 [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#6277

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:50:00 +00:00
Felicious
fc9bbb7d22 [ADD] PLM: engineering change order
closes odoo/documentation#5238

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 01:57:48 +00:00
Jess Rogers (jero)
7a307320c3 [IMP] live chat: update ratings doc
closes odoo/documentation#4063

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: larm-odoo <121518652+larm-odoo@users.noreply.github.com>
2023-11-01 17:50:47 +00:00
Sam Lieber (sali)
eff8e9d915 [IMP] l10n: Chile new features
closes odoo/documentation#4317

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-01 15:59:47 +00:00
Rémy Voet (ryv)
378252afdf [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#6238

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:57 +00:00
Tom Aarab (toaa)
885e52530b [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#6225

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 12:07:10 +00:00
Mathieu Duckerts-Antoine
7a936c9f70 [FIX] search panel: fix bad indentation
closes odoo/documentation#6197

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:19:03 +00:00
lman-odoo
4abe6da354 [FIX] Localization-Peru: duplicated words
closes odoo/documentation#6190

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-10-23 11:17:45 +00:00
Lara Martini (larm)
83ed4973f4 [IMP] employees: making targeted edits for v15 and updating images
closes odoo/documentation#6182

X-original-commit: a819e91c7b
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
2023-10-20 13:54:43 +00:00
tiku-odoo
02fe31a422 [IMP] Maintain/Productivity: Azure Name Change
closes odoo/documentation#6171

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

X-original-commit: d349cf7bb1
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-19 01:45:55 +00:00
lman-odoo
e24e708a14 [FIX] partner_autocomplete: fix a typo
closes odoo/documentation#6163

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-19 00:43:02 +00:00
Loredana Perazzo
5086943de0 [IMP] pos: update content of the pricelists page
task-3005170

closes odoo/documentation#6117

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Loredana Perazzo (lrpz) <lrpz@odoo.com>
2023-10-17 10:38:51 +00:00
Louis Baudoux
7148aee276 [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#6134

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

closes odoo/documentation#6150

X-original-commit: 8e7fd152ac
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-17 04:57:02 +00:00
Xavier (XPL)
d2124b9e68 [IMP] l10n: clarify which BE FDM is supported
task-3552761

closes odoo/documentation#6121

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-10-16 09:05:08 +00:00
Stan (stgu)
6f3ed657fc [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#5653

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-10-13 17:01:06 +00:00
Lara Martini (larm)
2925c3e212 [ADD] payroll: adding new contract doc
closes odoo/documentation#6108

X-original-commit: d1ce712814
Signed-off-by: Lara Martini (larm) <larm@odoo.com>
2023-10-11 17:51:22 +00:00
Jolien
a5272c2845 [FIX] EMAIL TEMPLATES: fix typo
closes odoo/documentation#6088

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-11 06:40:04 +00:00
Jolien
ab05778363 [FIX] events: fix some typos on Essentials page
closes odoo/documentation#6046

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-11 06:40:01 +00:00
Jolien
221464545f [FIX] SMS-MARKETING: Fix typo on SMS essentials page
closes odoo/documentation#6087

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-11 05:40:44 +00:00
Martin Trigaux
6a2725e604 [IMP] administration: add instructions to enable HSTS
closes odoo/documentation#6071

Signed-off-by: Martin Trigaux (mat) <mat@odoo.com>
2023-10-10 14:56:56 +00:00
Loan (LSE)
9a195fb7b3 [IMP] iot: esc-pos ESC * support documentation
Documentation regarding the fix:
https://github.com/odoo/odoo/pull/126689

opw-3351084,3341907

Authored by: lse-odoo <lse@odoo.com>
Co-authored by: tiku-odoo <tiku@odoo.com>
Co-authored by: Felicious <feku@odoo.com>
Co-authored by: jero-odoo <jero@odoo.com>

closes odoo/documentation#6060

X-original-commit: 974c59f0c7
Signed-off-by: StraubCreative <zst@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-07 17:42:41 +00:00
John Holton (hojo)
c254c6fa05 [ADD] Manufacturing: Configure product for manufacturing
closes odoo/documentation#5125

Signed-off-by: John Holton (hojo) <hojo@odoo.com>
2023-10-06 21:14:18 +00:00
Denis Ledoux
3b56832297 [FIX] qweb: type "overrinding"
overrinding -> overriding

closes odoo/documentation#6050

X-original-commit: d141144be5
Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2023-10-06 16:43:28 +00:00
tiku-odoo
b9e312f944 [ADD] Accounting: Admonition Block Sunset TaxCloud
closes odoo/documentation#5978

closes odoo/documentation#6039

X-original-commit: 8e1031d9ed
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-06 02:49:34 +00:00
bve-odoo
86d2210150 [FIX] azure_oauth: configuration mail server Outlook.
Results of seeing a lot of wrong and missing configuration
on consultancy project for Outlook accounts.

The Multi outgoing mail server is harder to maintain than having
a unique mail server with an Odoo db correctly configured.

Insisting on the mail.default.from (ICP) and the From Filtering
parameters that NEEDS TO BE set up.

task-3512379

[FIX] Maintain: Azure_oauth: configuration mail server Outlook

Co-author-by: tiku-odoo <tiku@odoo.com>
Co-author-by: jqu-odoo <jqu@odoo.com>

Results of seeing a lot of wrong and missing configuration
on consultancy project for Outlook accounts.

The Multi outgoing mail server is harder to maintain than having
a unique mail server with an Odoo db correctly configured.

Insisting on the mail.default.from (ICP) and the From Filtering
parameters that NEEDS TO BE set up.

task-3512379

closes odoo/documentation#6031

X-original-commit: 41b9ba6383
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-05 23:45:31 +00:00
XPL
f7c04b1e35 [FIX] localization: kenya typo
closes odoo/documentation#6003

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-10-05 15:29:18 +00:00
Marianna cima
38e00b7c45 [FIX] marketing automation: correction of a typo in the description of an image
closes odoo/documentation#6002

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-10-05 14:18:46 +00:00
jopa-odoo
590fc79726 [FIX] helpdesk: remove type on receiving tickets page
closes odoo/documentation#6000

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-10-05 14:18:45 +00:00
Larissa
caf2e69d1f [FIX] maintain/bugfix updates: fix typo
closes odoo/documentation#6001

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-10-05 11:24:21 +00:00
Louis Baudoux
cade61dd56 [FIX] extract_api: remove bill_reference from expense fields
The bill reference is no longer detected since a few months because it
had poor results and wasn't very useful.

closes odoo/documentation#5984

Signed-off-by: Louis Baudoux (lba) <lba@odoo.com>
2023-10-05 11:24:20 +00:00
Louis Baudoux
24c7b2506e [REM] extract_api: remove documentation of get_result_batch
For security reasons, we had to drop the support of those routes.

Part-of: odoo/documentation#5984
2023-10-05 11:24:20 +00:00
John Holton (hojo)
7a6c0a9247 [ADD] Quality: Quality checks
closes odoo/documentation#5632

Signed-off-by: John Holton (hojo) <hojo@odoo.com>
2023-10-04 21:29:44 +00:00
Felicious
9b0f902c4e [IMP] inventory: update batch picking screenshots
closes odoo/documentation#5496

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-10-03 17:13:59 +00:00
Donatienne (dopi)
1d14941e41 [IMP] accounting: bank reconciliation documentation updated
task-3237825

closes odoo/documentation#5898

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Co-authored-by: Dallas Dean <dade@odoo.com>
2023-10-03 13:01:02 +00:00
John Holton (hojo)
00c16a5ba1 [ADD] MRP: Manufacturing backorders
closes odoo/documentation#5969

X-original-commit: cfc40f8cd1
Signed-off-by: John Holton (hojo) <hojo@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-10-01 05:36:22 +00:00
tiku-odoo
ca2feb8dd4 [IMP] Misc: Email Template 16
closes odoo/documentation#5124

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-09-30 02:29:09 +00:00
John Holton (hojo)
7b67d69abd [REF] Inventory and MRP: Update TOC tree
closes odoo/documentation#5591

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-09-30 01:33:47 +00:00
Loredana Perazzo
e0d6f97dfc [IMP] POS: add info for iOS devices
task-3388561

closes odoo/documentation#5946

X-original-commit: 895d30cceb
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-09-29 12:24:21 +00:00
Brandon Seltenrich (BRSE)
3f6126e90b [IMP] inventory: update cycle counts
closes odoo/documentation#5919

X-original-commit: 06a225587b
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-09-26 14:23:12 +00:00
Julien Castiaux
8e9ae99423 [IMP] deploy: reword multi-thread/process section
Many users don't start odoo-bin in --workers (multi-processing) mode but
instead leave the default configuration which use the development/demo
multi-threaded server, even in production.

This commit rewords the section about the difference between the
built-in servers and highlight the many advantages of the
multi-processing on. It repeats that information when it comes to
running a dedicated cron server, that it should use the multi-processing
server instead of the default multi-threading one.

closes odoo/documentation#5887

Fixes: odoo/odoo#88984
Closes: odoo/odoo#128571
X-original-commit: 9ee92c3a27
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-09-26 10:17:42 +00:00
rps-odoo
923839f2cf [IMP] l10n: add video link for ecuador + fix other latam links
This commit:
- adds the link for the Ecuatorian localization app tour
- changes the other latam app tour links as the short links embedded the
  `es_ES` language string in the URL, which should be avoided

closes odoo/documentation#5901

Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-09-26 09:04:54 +00:00
Jonathan Castillo (jcs)
06d4767d5b [FIX] legal: broken links to the support page
task-3513581

closes odoo/documentation#5911

X-original-commit: 8253b6fdee
Signed-off-by: Olivier Dony (odo) <odo@odoo.com>
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-09-26 05:58:41 +00:00
dispread
407534595a [FIX] developer/tutorials: wrong kanban view example
Pretty sure the previous wasnt the intended result as it would show the "this is new" in a new kanban card. This just groups it with the property it belongs to.

closes odoo/documentation#5899

Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2023-09-25 09:03:54 +00:00
Jonathan Castillo (jcs)
25330276d2 [FIX] l10n: change media filenames for thailand.rst
Backporting of the media filenames changes made in
master with the PR https://github.com/odoo/documentation/pull/5862/

closes odoo/documentation#5891

Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-09-22 08:24:42 +00:00
Sam Lieber (sali)
f27b11d6c7 [IMP] l10n: CO content updates
closes odoo/documentation#5878

X-original-commit: 429e52bdf9
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
2023-09-19 18:33:05 +00:00
Sam Lieber (sali)
3b007e85c6 [IMP] accounting: l10n_mx content updates
closes odoo/documentation#5865

X-original-commit: 7e12726c32
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
2023-09-15 15:28:29 +00:00
Olivier Dony
6d0ae236b5 [ADD] legal: update terms of sales for monthly subs, add ES,DE
closes odoo/documentation#5841

X-original-commit: 76570c1e9d
Signed-off-by: Olivier Dony (odo) <odo@odoo.com>
2023-09-13 00:32:58 +00:00
Martin Trigaux
28cca3d5bd [IMP] install: clarify Windows is not recommended for prod
It has always been the case informally but write it in the doc.

closes odoo/documentation#5830

X-original-commit: 80e1065dff
Signed-off-by: Olivier Dony (odo) <odo@odoo.com>
2023-09-13 00:32:56 +00:00
tiku-odoo
21c4917a70 [IMP] Discuss Team Comms Add Chatter Info
closes odoo/documentation#5812

Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2023-09-11 20:13:54 +00:00
Loredana Perazzo
88e8a80040 [IMP] l11n: Odoo 16 is now certified to use the blackbox
task-3495357

closes odoo/documentation#5805

X-original-commit: 87b4f1817e
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-09-11 15:11:00 +00:00
Leloup Loïc (lole)
12f3b1beb7 [IMP] cli: add unit to memory options
The documentation is unclear about the unit used for the --limit-memory-soft
and --limit-memory-hard options of odoo-bin.  The unit used is bytes, but
it isn't mentioned and the default unit is shown in mebibytes, causing
confusion.

closes odoo/documentation#5789

X-original-commit: 9fadc3355d
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-09-11 08:16:46 +00:00
KC (ksc)
e689c98a05 [IMP] sales: updated RST formatting for quote template doc
closes odoo/documentation#5771

X-original-commit: 0232bdd96e
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-09-09 00:07:21 +00:00
“Audrey
fe7f72bf63 [IMP] payment_provider/mercado pago: Add missing step for production credentials
task-3498727

closes odoo/documentation#5775

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-09-08 12:22:46 +00:00
fdardenne
c1c04f90a8 [IMP] Views howtos: add details on how to use a view in arch
closes odoo/documentation#5773

Signed-off-by: Florent Dardenne (dafl) <dafl@odoo.com>
2023-09-08 11:22:35 +00:00
“Audrey
d538ed070e [IMP] website: Google Analytics
task-2790245

- Update existing Google Analytics doc for GA4
- Merge GA and Plausible into one Analytics page
- Review Plausible.io instructions to adopt same style as GA instructions

closes odoo/documentation#5704

X-original-commit: 5b6be43481
Signed-off-by: Audrey Vandromme (auva) <auva@odoo.com>
2023-09-07 14:21:57 +00:00
Sam Lieber (sali)
88c2aacbf5 [IMP] accounting/l10n: add tour and smartclass links
closes odoo/documentation#5731

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-09-06 17:00:27 +00:00
baro-odoo
866da5815e [FIX] odoo.sh: typo in branches.rst
closes odoo/documentation#5748

X-original-commit: cbbd5a5ee9
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-09-06 15:58:07 +00:00
Xavier (XPL)
ae4d98f1fb [IMP] maintain: refresh the change hosting solution page
This PR updates the page's content as it is a bit dated in some places
(see task) and takes into consideration the latest rst guidelines.

task-3434787

closes odoo/documentation#5740

X-original-commit: 8e41b58834
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-09-06 13:42:36 +00:00
Tom Aarab (toaa)
0433155eab [ADD] website: menus page
taskid-3414667

closes odoo/documentation#5036

Signed-off-by: Audrey Vandromme (auva) <auva@odoo.com>
Co-authored-by: Toaa <toaa@odoo.com>
Co-authored-by: Auva <auva@odoo.com>
2023-09-06 06:58:40 +00:00
Augusto Perez
38b1fdb227 [ADD] upgrade/on_premise: Add filestore explanation
Added a note explaining that the filestores from the upgraded database
and the production database have to be merged for on-premise upgrade,
on both the testing and the production phases

closes odoo/documentation#5724

X-original-commit: 28cacd3b98
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-09-05 15:11:45 +00:00
Odoo's Mergebot
d8e71d6063 [FIX] developer/tutorials/discover_js_framework: fix broken "domain.js" link
The link pointing to domain.js file was broken.
The xml id on the line before that is also broken but it will be fixed with PR#5699.

closes odoo/documentation#5702

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Co-authored-by: Armin FalDiS <armin.fallah96@gmail.com>
Co-authored-by: Armin FalDiS <fara@odoo.com>
2023-09-01 16:10:49 +00:00
Zachary Straub (ZST)
ff0eee15c3 [FIX] voip: update broken links, light markup cleaning
closes odoo/documentation#5692

X-original-commit: 2fff805029
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-30 23:01:51 +00:00
Andrea Tasselli
44ef78b391 [FIX] developer/tutorials/discover_js_framework: add missing this
closes odoo/documentation#5677

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-08-30 12:03:28 +00:00
Nur Muhammad Naufaldo
cae0edcc83 [FIX] inventory: fix typo
closes odoo/documentation#5593

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-30 12:03:25 +00:00
Donatienne Pirlot
c60ec48c9d [ADD] forum: create the forum documentation
This PR adds a page describing how to create, use and moderate a forum.
It creates references in the elearning page as karma features are shared.
It removes redundant information from the helpdesk/overview/help_center
page and links back to the more detailed forum page.

task-3283274

closes odoo/documentation#4245

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-29 10:12:47 +00:00
arsi
4f677d9d3f [FIX] localizations: guide to tax report to re-connect to HMRC
In the multi-company HMRC submission section, the documentation mentions
that you can connect to HMRC from the user form, after having reset the
credentials.
This is not true, you have to go back to the tax report and click the
"Connect to HMRC" button.

opw-3449939

closes odoo/documentation#5665

X-original-commit: 39c0515208
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Arnaud Sibille (arsi) <arsi@odoo.com>
2023-08-29 08:02:26 +00:00
KC (ksc)
5b51f9077a [IMP] fixed duplicate content in the Group By section
closes odoo/documentation#5656

X-original-commit: 575f6040a0
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-26 18:09:52 +02:00
“Audrey
4a42a9c327 [IMP] payment_providers/buckaroo: review doc page structure and fix small mistake
task-3382228

closes odoo/documentation#5602

Signed-off-by: Audrey Vandromme (auva) <auva@odoo.com>
2023-08-25 17:07:16 +02:00
Tom Aarab (toaa)
ac6d78f4d4 [FIX] Stripe: screenshot update
Updated an outdated screenshot from V14 to V15

Forward to master.

taskid-3467638

closes odoo/documentation#5612

X-original-commit: 1c5a9bcb73
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-25 09:37:35 +02:00
tiku-odoo
ea03bcd579 [IMP] Discuss Team Communication edits
closes odoo/documentation#5634

X-original-commit: b6a3be322c
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-25 06:16:58 +02:00
Brandon Seltenrich (BRSE)
46e435dfd3 [FIX] mrp: fix kits note
closes odoo/documentation#5626

X-original-commit: a02022e2fd
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-08-24 22:27:26 +02:00
Tom Aarab (toaa)
f74e9568c0 [FIX] PayPal: documentation dead link fix
Fixed a dead URL

taskid-3454286

closes odoo/documentation#5605

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-24 19:43:08 +02:00
“tap-odoo”~
7287989ea4 [ADD] Thailand localisation Documentation
- Added Thailand localisation documentation as it not exist before.
Features were pushed to Odoo 16 already

closes odoo/documentation#5483

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-24 17:25:51 +02:00
Loredana Perazzo
ac53c6f12e [FIX] pos: typo in note (stripe)
task-3472802

closes odoo/documentation#5583

Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-08-23 15:58:21 +02:00
Jonathan Castillo (jcs)
b559f00948 [REM] support: what_can_i_expect
This page used to be hosted as an "orphan" page in the documentation
repository. It now is displayed on the support form page at
www.odoo.com/help making this page redundant. This commit deletes that
page and a redirection pointing to the support form has been set.

task-3027584

closes odoo/documentation#5577

X-original-commit: fd2c0b8010
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-08-23 14:48:13 +02:00
Felicious
c926e34635 [ADD] barcode: GS1 nomenclature
closes odoo/documentation#5567

X-original-commit: 3b2c2376c0
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Felicia Kuan (feku) <feku@odoo.com>
Co-authored-by: meng-odoo <101904966+meng-odoo@users.noreply.github.com>
Co-authored-by: Sam Lieber (sali) <36018073+samueljlieber@users.noreply.github.com>
2023-08-22 01:18:25 +02:00
Erwin Zoer
7eb22a3737 Update stock_warehouses.rst
closes odoo/documentation#5557

Spelling: whe > the on line 168
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-21 22:14:00 +02:00
Xavier (XPL)
32b92f5959 [FIX] install: fix reference and redirect
closes odoo/documentation#5547

X-original-commit: f1db43b3ac
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-19 00:14:55 +02:00
ksc-odoo
c0131223e9 [IMP] Sales - Update optional_products.rst
closes odoo/documentation#5412

X-original-commit: 4d95afe86c
Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-18 23:14:49 +02:00
Xavier (XPL)
da2a48b9fd [REF] install: move intro to main install page and split by install type
This PR moves the introduction about the different installation methods and editions found on the
install/install.rst page directly under the main install/ page. It creates three pages, one per
installation method documented on the install/install.rst page (Docker being documented on
docker.com and maintained by us), and moves the related content there. In addition, it fixes various
typos/grammar issues and improves the content according to the documentation guidelines. Various
references and links across the documentation had to be fixed accordingly.

task-3459070

closes odoo/documentation#5526

X-original-commit: 42a8f492e7
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-18 09:50:42 +02:00
KC (ksc)
e4ebe9f277 [IMP] sales: updated different addresses doc for RST
closes odoo/documentation#5518

X-original-commit: 84b38b8b09
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
2023-08-17 23:43:51 +02:00
Antoine Vandevenne (anv)
bb04b18e7f [FIX] tutorials/getting_started: fix typos in example model name
Commit f36c612d13 changed the model name
in Chapter 4 without updating the other occurences.

closes odoo/documentation#5505

X-original-commit: b6f923d111
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-08-17 19:13:24 +02:00
Jonathan
cf4a7a94a1 [IMP] email com: update daily limit
The current default daily limit for one-app free
is 20 mails only. This commit updates the value.

closes odoo/documentation#5504

X-original-commit: c0ca09cdde
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-08-16 18:48:40 +02:00
masi-odoo
98d0d59188 [IMP] accounting/loca: AR add check management section
closes odoo/documentation#4944

Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
2023-08-14 15:21:03 +02:00
Sam Lieber (sali)
e52d8f172f [REF] l10n: PoC doc restructure for CO
closes odoo/documentation#5472

X-original-commit: c540115eba
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-08-11 18:01:02 +02:00
imanie383
56eed9771e [FIX] reference/owl_components: fix typo
Making edits for Owl Components Doc : [Link](https://www.odoo.com/documentation/16.0/developer/reference/frontend/owl_components.html#example-multi-level-dropdown-nested)

![image](https://github.com/odoo/documentation/assets/35231827/b2dd4b87-941c-4241-b0f5-e91ca69b3633)

closes odoo/documentation#5459

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-08-11 14:43:56 +02:00
Sam Lieber (sali)
4081ec3f17 [ADD] accounting: l10n_br avalara implementation
closes odoo/documentation#5199

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-11 11:01:18 +02:00
tiku-odoo
7babf06b44 [IMP] Misc Oauth Azure Clarification
closes odoo/documentation#5442

X-original-commit: b41d69ae82
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-10 00:44:29 +02:00
Lara Martini (larm)
8b1875d5e2 [IMP] Inventory: updating second person and images, add clarity
feku-review-add-headings-and-extra-reference

closes odoo/documentation#5450

X-original-commit: 6cb2ed8abc
Signed-off-by: Felicia Kuan (feku) <feku@odoo.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-08-09 22:33:10 +02:00
John Holton (hojo)
4b726b044d [ADD] MRP: Add Scrap during manufacturing
closes odoo/documentation#5372

X-original-commit: 72ba26414b
Signed-off-by: John Holton (hojo) <hojo@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-09 18:46:22 +02:00
Antoine Dupuis (andu)
ffa15c6b76 [ADD] l10n_ro_saft: Romanian D.406 monthly/quarterly declaration doc
Since January 1, 2023, Romanian businesses are required to report their
accounting data on a monthly/quarterly basis, in the D.406 declaration.

This is an XML following the SAF-T 2.0 standard, with Romanian-specific
customizations. The new module l10n_ro_saft lets you generate this
declaration from the General Ledger report.

Here's some documentation about how to use this new module! Yay!

closes odoo/documentation#4916

Task-id: 3172198
Related: odoo/odoo#126563
Related: odoo/enterprise#43241
Signed-off-by: Antoine Dupuis (andu) <andu@odoo.com>
2023-08-09 17:46:46 +02:00
Lara Martini (larm)
efb7162ca0 [MOV] Payroll: moved configuration doc to main payroll so there is less clicking for users
closes odoo/documentation#5428

X-original-commit: 4fd1f56b33
Signed-off-by: Lara Martini (larm) <larm@odoo.com>
2023-08-09 16:47:56 +02:00
Brandon Seltenrich (BRSE)
943f6b1e7a [IMP] inventory: update inventory adjustments
closes odoo/documentation#5410

X-original-commit: 3da457a501
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-08-09 15:27:28 +02:00
Sam Lieber (sali)
5cd8f80b53 [IMP] marketing: RST upgrades for metrics doc
closes odoo/documentation#5395

X-original-commit: 6f02a0af04
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-08-08 21:59:55 +02:00
Xavier (XPL)
90797b5740 [IMP] sales: correct amazon invoicing and payment registration info
task-2203035

closes odoo/documentation#5371

X-original-commit: bd50b39abf
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-08 21:59:51 +02:00
ksc-odoo
fdb16b8132 [IMP] Sales - updated Deadline.rst (v14)
closes odoo/documentation#5396

X-original-commit: 5f2725160d
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-08-08 21:01:04 +02:00
Sam Lieber (sali)
29d884c548 [ADD] email marketing: essentials, mailing lists, unsubscriptions
closes odoo/documentation#5385

X-original-commit: 56a291831a
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-08 21:01:00 +02:00
Xavier (XPL)
ec33990d21 [IMP] maintain: change info about domain names approval time
Original commit: 4fd1b73013
Original PR: https://github.com/odoo/documentation/pull/5272

closes odoo/documentation#5335

X-original-commit: 45a2d970b7
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-08-08 10:03:28 +02:00
Tom Aarab (toaa)
df9adf6d59 [IMP] accounting/credit and debit notes
Forward to master.

Change 16.3 onwards (screenshots)

Improved the doc and added some info on debit notes (was missing).

taskid-3439169

closes odoo/documentation#5265

X-original-commit: 7f75d16f1b
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-08-08 09:05:33 +02:00
KC (ksc)
acc2c7994a [IMP] sales: invoicing policy doc for RST reasons
closes odoo/documentation#4465

Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
2023-08-07 20:49:50 +02:00
Jonathan
d80403e23f [FIX] iot: broken link in troubleshooting.rst
closes odoo/documentation#5314

X-original-commit: 020200abbe
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-08-07 17:13:06 +02:00
Antoine Vandevenne (anv)
22c811b698 [IMP] supported_versions: release saas-16.4
This commit also moves all versions from 8.0 to 12.0 from the table to
the "older versions" section.

closes odoo/documentation#5322

X-original-commit: 6225ef9e32
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-08-07 16:06:02 +02:00
“ralo-odoo”
465e7e70c4 [ADD] localization: philippines-l10n_ph
Adding Philippines localization documentation from PR #5179

closes odoo/documentation#5187

Signed-off-by: Dallas Dean (dade) <dade@odoo.com>
2023-08-07 14:23:05 +02:00
Tom Aarab (toaa)
e314289fc4 [IMP] website: "pages" page
Adding a documentation on "pages" within the already existing "page"
toctree

task-3383323

closes odoo/documentation#4871

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Co-authored-by: Toaa <toaa@odoo.com>
Co-authored-by: Auva <auva@odoo.com>
2023-08-07 09:46:16 +02:00
KC (ksc)
e807298fbb [IMP] sales: updated get siganture for validation doc for RST formatting
closes odoo/documentation#5298

X-original-commit: 6c38992016
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-06 08:51:23 +02:00
Lara Martini (larm)
5211a71e44 [ADD] Payroll: adding new configuration doc
closes odoo/documentation#5290

X-original-commit: 8a88ec1dd0
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-05 03:02:30 +02:00
Sam Lieber (sali)
f93c0a6490 [IMP] marketing: RST format upgrades for marketing automation v14
closes odoo/documentation#5277

X-original-commit: b5bde9186e
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-05 03:02:27 +02:00
Lara Martini (larm)
5a2e7b0512 [IMP] Inventory: updated text for 16 and fixed rst errors
closes odoo/documentation#4378

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-04 22:28:46 +02:00
tiku-odoo
91895e7f86 [IMP] Misc: Oauth Azure
closes odoo/documentation#5041

closes odoo/documentation#5250

X-original-commit: 66b2a3d50e
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Co-authored-by: Zachary Straub <zst@odoo.com>
2023-08-02 23:09:57 +02:00
John Holton (hojo)
7c1bcbfc1b [IMP] Inventory: Update Multi-package shipments doc
closes odoo/documentation#5241

X-original-commit: 7df2d749a8
Signed-off-by: John Holton (hojo) <hojo@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-08-02 04:09:20 +02:00
“Chiara
8d25366adb [ADD] l10n: saudi arabia e-invoicing
task-3422500

closes odoo/documentation#5228

X-original-commit: fd2a9431ce
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-28 16:11:59 +02:00
Xavier (XPL)
4cb7b3af3d [IMP] payments: update ACH section content to match 16.0
closes odoo/documentation#5209

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-26 15:15:42 +02:00
Xavier (XPL)
8c03442791 [IMP] accounting: year-end closing
task-2823858

closes odoo/documentation#5203

X-original-commit: 7ba101ffd5
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-26 12:53:17 +02:00
Xavier (XPL)
6ed928ac55 [IMP] payments: add section about ACH payments
task-3303591

closes odoo/documentation#5192

X-original-commit: 0155844ef5
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-25 17:30:09 +02:00
Levi Siuzdak (sile)
a7743d513b [IMP] developer: add notes on entity references & fix illegal XML
Using `<` inside XML elements will result in a parsing error,
an entity reference should be used instead: `&lt;`.

closes odoo/documentation#5159

Signed-off-by: Levi Siuzdak (sile) <sile@odoo.com>
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-07-24 14:37:53 +02:00
Tom Aarab (toaa)
c2ff2671ff [IMP] accounting: multicurrency
Changed the "bank statement" section to "bank transactions"

taskid-3433653

closes odoo/documentation#5167

X-original-commit: eff6743924
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-07-20 15:47:45 +02:00
“Dallas”
26c4c01889 [IMP] accounting: update payment terms
task-3211595

closes odoo/documentation#5016

Signed-off-by: Dallas Dean (dade) <dade@odoo.com>
2023-07-20 11:55:35 +02:00
Xavier (XPL)
5ee932e14b [IMP] general: add screenshot of stacked line chart in reporting
task-3375264

closes odoo/documentation#5147

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-18 16:39:40 +02:00
Donatienne Pirlot
2e9c99c941 [ADD] elearning: creating a new elearning doc page
To add updated information related to the elearning app

closes odoo/documentation#4153

Id: 3251391
Signed-off-by: Donatienne Pirlot (dopi) <dopi@odoo.com>
2023-07-18 16:39:21 +02:00
chyde-clearwater
bd434b0528 [IMP] tutorials/getting_started: disambiguate example model name
I removed the dot notation in the  "_name" variable for the example
model. AKA, "test.model" is now named "test_model".

Dot notation implies a data structure relationship between a <model> and
it's parent (or class etc) <test> (like test.model() or Test.model).
There is no relationship like this between a <test> and <model> - it's
just one thing: a <test model>.

The seeming "benefit" of the ORM translating dots to underscores doesn't
justify this naming convention.  Yes, I know it's a string, but still,
this seems confusing for newbies and adds unnecessary complexity (why
name the same thing differently in different places?)

closes odoo/documentation#5137

X-original-commit: f36c612d13
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-07-18 12:53:34 +02:00
Louis Wicket
1227c9cf79 [FIX] incoterms: fix typo: DPA → DAP
closes odoo/documentation#5134

Signed-off-by: Louis Wicket (wil) <wil@odoo.com>
2023-07-18 11:37:32 +02:00
Henrique Dias
0a65b0872d [ADD] rpc: Go examples
Examples rely on `kolo/xmlrpc` as well as on the standard library package `log` to panic on error, matching snippets in other languages (which tend to raise exceptions).

As with other languages, only the RPC interaction is spelled out.

closes odoo/documentation#5064

Signed-off-by: Xavier Morel (xmo) <xmo@odoo.com>
2023-07-14 10:11:48 +02:00
Loredana Perazzo
7ce5a5afe4 [IMP] pos: move part of the intro into generate tab
task-3372676

closes odoo/documentation#5111

X-original-commit: d5466bea0d
Signed-off-by: Loredana Perazzo (lrpz) <lrpz@odoo.com>
2023-07-13 14:11:34 +02:00
Marc Durepos
c85031b3fc [FIX] Remove reference to assets_qweb in assets.rst
Reflects the fact that assets_qweb bundle is no longer used in 16.0

closes odoo/documentation#5094

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-07-13 10:40:51 +02:00
Jess Rogers (jero)
a187b7cde4 [IMP] live chat: add note for 16.3 command changes
closes odoo/documentation#5086

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-13 05:02:55 +02:00
Lara Martini (larm)
29db8bf1e6 [IMP] Inventory: update for 16
closes odoo/documentation#4377

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-13 05:02:53 +02:00
John Holton (hojo)
222fd67d7f [DEL] MRP: Delete Alternative Work Centers 16.0
closes odoo/documentation#4838

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-13 03:54:39 +02:00
Aymen Sellami
481a867a05 Remove duplicate note
The notes displayed before and after the tabs under the Git paragraph in install.rst were identical, except for one sentence. Added the sentence to the post-tabs note and removed the pre-tabs one.

Part-of: odoo/documentation#5087
2023-07-12 18:08:14 +02:00
Xavier (XPL)
22d45407c4 [IMP] payments: clarify authorize.net statement import steps
task-2382237

closes odoo/documentation#5073

X-original-commit: cd2bc63b22
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-10 20:44:28 +02:00
Tom Aarab (toaa)
ca38752795 [IMP] authorize.net statement import
taskid-2382237

closes odoo/documentation#5052

X-original-commit: 087f8c096d
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-07-07 15:51:47 +02:00
Zuzanna Luczynska
dd268b543c [ADD] project: recurring tasks
closes odoo/documentation#4260

Id: 3255317
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-07 11:19:54 +02:00
Xavier (XPL)
bc0da5c27d [IMP] accounting: l10n chile deliver guides warning
task-3410367

closes odoo/documentation#5026

X-original-commit: b729d05e57
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-05 16:33:17 +02:00
tong-odoo
35989e4bec [FIX] accounting: AU rebrands Keypay to Employment Hero
task-3250954

closes odoo/documentation#5020

X-original-commit: ee3634d623
Related: odoo/enterprise#43656
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
Signed-off-by: Tommy Ng (tong) <tong@odoo.com>
2023-07-05 09:48:04 +02:00
Brandon Seltenrich (BRSE)
dc9e98d48d [IMP] purchase: update manage vendor bills
closes odoo/documentation#5008

X-original-commit: 688220bb51
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-07-03 20:21:52 +02:00
Xavier
5af98b20de [IMP] maintain: odoo online database management
task-2995394

closes odoo/documentation#5002

X-original-commit: c6e6401e36
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-03 20:21:49 +02:00
tong-odoo
1844ad5e47 [IMP] localization: AU rebrands Keypay to Employment Hero
task-3250954

closes odoo/documentation#4994

X-original-commit: 35fc637ed4
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-07-03 20:21:44 +02:00
AMZIL Ayoub
f3e3490ba4 [DOC] cleanup of pec server documentation
PEC Server is removed from 16 (onwards)

closes odoo/documentation#4953

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-03 12:16:08 +02:00
John Holton (hojo)
22f71172d5 [ADD] Inventory: Add Replenish on order (MTO)
closes odoo/documentation#4980

X-original-commit: d9ece7b353
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-01 19:09:23 +02:00
John Holton (hojo)
18e5f34ed6 [ADD] Inventory: Add reordering rules
closes odoo/documentation#4973

X-original-commit: eb347c2681
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-01 18:06:16 +02:00
John Holton (hojo)
da31abfba5 [ADD] MRP: Work center time off
closes odoo/documentation#4962

X-original-commit: 18a9b88a11
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-01 18:06:14 +02:00
Jess Rogers (jero)
729881c7b1 [ADD] livechat: added chatbot doc
closes odoo/documentation#4297

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-01 04:31:47 +02:00
Lara Martini (larm)
710c373354 [IMP] Inventory: updated images and removed edit and save directions
closes odoo/documentation#4879

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-30 21:31:44 +02:00
John Holton (hojo)
6c15190f38 [IMP] Administration: Rewrite Upgrade Odoo SaaS
closes odoo/documentation#4947

X-original-commit: 45b1a62782
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-06-30 10:20:50 +02:00
Tom Aarab (toaa)
ba3a60adf7 [IMP] accounting: checks
task-2979887

closes odoo/documentation#4938

X-original-commit: 6e0d01771b
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-29 12:12:50 +02:00
Xavier
88da0a9256 [FIX] accounting: remove fullscreen property from tutorial link
task-3389168

closes odoo/documentation#4932

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-06-28 13:05:03 +02:00
Xavier
2e90b83b0e [ADD] website: reCAPTCHA
task-3336129

closes odoo/documentation#4915

X-original-commit: eb8a257049
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-06-28 10:06:47 +02:00
Timothy Kukulka (tiku)
e6372144cf [IMP] IoT: edits to all IoT docs
closes odoo/documentation#4923

X-original-commit: e7457c992b
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-28 09:03:01 +02:00
Jess Rogers (jero)
e8aaefd283 [IMP] livechat: update commands and canned responses
closes odoo/documentation#4059

Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-06-28 04:11:43 +02:00
Benoit Socias
1c98265c95 [FIX] howto/rdtraining: ch.13 adapt reference to salesperson field
In chapter 13 the `property_ids` field is defined as the inverse of a
`user_id` field. But in chapter 8 when the salesperson field is added,
no such name is given to it.

This commit adapts the description to reference the general concept of
the field used to link to the salesperson instead of an actual field
identifier.

task-3381757

closes odoo/documentation#4905

X-original-commit: 3a131c829a
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-06-27 16:07:02 +02:00
Benoit Socias
77fe26c390 [IMP] developer/views: add optional attribute for fields of list views
The attributes of fields of list views do not mention the `optional`
attribute while it is used by chapter 12 of the R&D Training.

This commit describes this `optional` attribute.

task-3380953

closes odoo/documentation#4904

X-original-commit: 5a446f5c59
Signed-off-by: Benoit Socias (bso) <bso@odoo.com>
2023-06-27 16:07:00 +02:00
KC (ksc)
023e03549a [IMP] sales: updated down payment doc for RST and image reasons
closes odoo/documentation#4893

X-original-commit: 802dc467de
Signed-off-by: Kevin Scannell (ksc) <ksc@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-27 00:52:47 +02:00
Brandon Seltenrich (BRSE)
7a53850477 [IMP] inventory: update expiration dates doc
closes odoo/documentation#4886

X-original-commit: 49029eda37
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-06-26 23:00:01 +02:00
Lara Martini (larm)
1e201095b3 [ADD] Employees: anning a new employee
closes odoo/documentation#4854

X-original-commit: 547ad6fca5
Signed-off-by: Lara Martini (larm) <larm@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-26 20:03:51 +02:00
Jess Rogers (jero)
c24f4b237e [IMP] live chat:update getting started doc
closes odoo/documentation#4024

Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-06-26 17:19:28 +02:00
Lara Martini (larm)
0e128b803d [IMP] inventory: update strategies second person and images
closes odoo/documentation#4865

X-original-commit: 6201ee8760
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-24 03:48:14 +02:00
Jess Rogers (jero)
bafe824f38 [IMP] helpdesk: update help center documentation
closes odoo/documentation#3864

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-23 22:43:37 +02:00
Xavier
1853f226e7 [ADD] Spreadsheet: templates
task-3235170

closes odoo/documentation#3985

Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
Co-authored-by: Xavier <xpl@odoo.com>
Co-authored-by: Loredana <lrpz@odoo.com>
2023-06-22 22:56:47 +02:00
Lara Martini (larm)
0433e84a0c [IMP] Expenses: updating for new 16 design
closes odoo/documentation#4702

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-22 00:48:28 +02:00
Felicious
4c750d1bb7 [IMP] inventory: adjust manual val for v.16
closes odoo/documentation#4091

Signed-off-by: Zachary Straub (zst) <zst@odoo.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-06-21 23:38:51 +02:00
Jonathan
1a5952ee95 [IMP] accounting: add tutorials links to chart of accounts
closes odoo/documentation#4831

X-original-commit: a85e064ffc
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-21 22:29:41 +02:00
John Holton (hojo)
19b1a49436 [DEL] MRP: Delete Quality Control doc
closes odoo/documentation#4810

Signed-off-by: Samuel Lieber (sali) <sali@odoo.com>
2023-06-21 21:20:22 +02:00
Donatienne Pirlot
242c13bfc0 [ADD] localization: belgian accounting
closes odoo/documentation#3442

Id: 3143421
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-21 18:41:45 +02:00
Jonathan
3ba81b3394 [FIX] discuss: broken link in ice_servers.rst
closes odoo/documentation#4821

X-original-commit: 8efbe3ef84
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-21 17:29:06 +02:00
Lara Martini (larm)
e074580ffb [IMP] Inventory: Updating for 16.0 no save button
closes odoo/documentation#4573

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-20 23:16:15 +02:00
Christophe Monniez
eb6c567ee2 [FIX] deploy: reference the config parameter
The deploy documentation is assuming that `/etc/odoo.conf` is the
default config file, which is not the case.

With this commit, the configuration file references the cli
documentation.

closes odoo/documentation#4804

X-original-commit: 8aed7988ba
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Christophe Monniez (moc) <moc@odoo.com>
2023-06-20 15:42:14 +02:00
Christophe Monniez
9f8bf0a307 [IMP] maintain: switch to enterprise windows
* Update the title as `Upgrade Community to Enterprise` is confusing.
* Update 9.0 screenshots to more recent ones
* As the windows installer uses a real python interpreter, the install
  command is updated accordingly.

X-original-commit: f03b4ca649
Part-of: odoo/documentation#4804
2023-06-20 15:42:14 +02:00
Loredana Perazzo
b745bd9fef [IMP] pos: write content on the Payment Terminals page
task-3358474

closes odoo/documentation#4793

X-original-commit: 573d201361
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-06-20 10:45:40 +02:00
Antoine Vandevenne (anv)
35deec4c3d [FIX] legal: fix broken PDF link
Apply the fix of e6aa5dd0 to `terms_of_sale.rst` and
`terms_of_sale_fr.rst` that were forgotten.

closes odoo/documentation#4787

X-original-commit: 8cffb57dae
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-06-19 18:22:52 +02:00
“Dallas”
cf5a3276c9 [MOV] accounting: update/move customer addresses to accounting
task-3304975

closes odoo/documentation#4772

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-16 19:02:46 +02:00
KC (ksc)
5c3e8d5919 [IMP] sales: updated pro-forma invoice doc
closes odoo/documentation#4758

X-original-commit: 3e4e8acfed
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-16 16:25:55 +02:00
Sam Lieber (sali)
e57ca4dbf7 [IMP] marketing: testing_running.rst format fixes
closes odoo/documentation#4747

X-original-commit: 4b327417b0
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-16 16:25:52 +02:00
Sam Lieber (sali)
a26d370017 [IMP] marketing: workflow_activities.rst - Format fixes
closes odoo/documentation#4746

X-original-commit: a09ca7bd0f
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-16 16:25:49 +02:00
Sam Lieber (sali)
1bc87e1486 [IMP] Update rst for target_audiences.rst (v14)
closes odoo/documentation#4737

X-original-commit: 89c1c1b357
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-16 09:18:57 +02:00
“Audrey
394246d043 [IMP] Payment providers - Stripe: Add missing webhook events
task-3373642

closes odoo/documentation#4732

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-06-16 09:18:49 +02:00
Xavier
7ddbeb9223 [IMP] accounting/sales: default terms and conditions + quotation templates
task-3304938

closes odoo/documentation#4442

Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-06-15 20:46:24 +02:00
“Audrey
1f2f11c42b [FIX] Adyen: Fix live/test URLs
closes odoo/documentation#4722

X-original-commit: 52bf00663e
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: auva-odoo <auva@odoo.com>
2023-06-15 01:29:04 +02:00
Tom Aarab (toaa)
a7bd0be69c [IMP] payment providers: PayPal
taskid-3184602.

16.0 -> Change extra fees category to :ref: main page payment provider
16.2 -> Remove Odoo credentials section
        Remove PDT identity token
        Remove merchant ID note
        Remove test mode section on environment test

Took the opportunity to redo the whole page.

closes odoo/documentation#4718

X-original-commit: bf327d9200
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-14 23:12:11 +02:00
Tom Aarab (toaa)
0494082a55 [IMP] accounting: OSS report
Added a section on where to find OSS reports and how to export them

task-3305037

closes odoo/documentation#4696

X-original-commit: b675584730
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-12 18:06:56 +02:00
“Audrey
9e453285d0 [IMP] Website: Multiple websites
task-3190493

closes odoo/documentation#4509

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-12 18:06:28 +02:00
Loredana Perazzo
ee4b279e7c [IMP] pos: update the register customers section
task-3357882

closes odoo/documentation#4693

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-06-12 09:54:10 +02:00
Tom Aarab (toaa)
256ddb30ab [IMP] accounting: follow-up reports
task-3316301.

closes odoo/documentation#4497

X-original-commit: 48f3417b7c
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-09 19:19:39 +02:00
Morfosys
d7bb5af3cd [IMP] l10n: update links in mexico.rst
Update the link for Smarter Web to the appropriate landing page for
Odoo.

closes odoo/documentation#4682

X-original-commit: 7510b4bb23
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-09 15:26:34 +02:00
Benjamin Hanquin
83806263df [IMP] odoo.sh: settings collaborators access matrix
Add the Upgrade submenu, Fix the Settings submenu to User only in
staging branches and improve the style in order to be similar to
supported versions matrix
(https://www.odoo.com/documentation/16.0/administration/maintain/supported_versions.html)

closes odoo/documentation#4681

X-original-commit: 98207740d5
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-09 15:26:31 +02:00
Lara Martini (larm)
8274035b88 [IMP] Expenses: updaitng out of date information and images
closes odoo/documentation#4553

closes odoo/documentation#4665

X-original-commit: 01f40f24ba
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-08 22:39:46 +02:00
“Audrey
35d355f624 [IMP] Adyen: Update directions for setting the URLs
task-3338125

closes odoo/documentation#4644

X-original-commit: e3379e2856
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: auva-odoo <auva@odoo.com>
2023-06-08 09:26:42 +02:00
Loredana Perazzo
e3665393c3 [IMP] pos: update multi employees management
task-3005118

closes odoo/documentation#4558

Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-06-08 07:20:40 +02:00
Brandon Seltenrich (BRSE)
0cfa38785d [FIX] inventory: fix two step doc
closes odoo/documentation#4648

X-original-commit: c9dcbf6d01
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-06-07 21:35:24 +02:00
Jonathan Castillo (jcs)
65929330ba [MOV] accounting: rename VAT verification filename and title
closes odoo/documentation#4636

X-original-commit: 5c578d627a
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-06 20:01:21 +02:00
Antoine Vandevenne (anv)
5d7ccb0616 [IMP] supported_versions: release saas-16.3
"September" didn't fit in the current table, so this commit also
replaces the previous implementation of the table by a `list-table`
directive... The real reason is that it was long due to ease future
updates of the table.

closes odoo/documentation#4625

X-original-commit: 3d1293757a
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-06-06 10:55:25 +02:00
Tom Aarab (toaa)
adee414578 [IMP] accounting: OSS note removal
Removal of a note in 16 that only applies to versions below it.

task-3305037

closes odoo/documentation#4603

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-02 11:08:51 +02:00
Tom Aarab (toaa)
971543266a [ADD] accounting: incoterms
Seperating Incoterms section from "Intrastat" doc to make it a stand
alone documentation.

task-3305222

closes odoo/documentation#4572

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-02 11:08:40 +02:00
Brandon Seltenrich (BRSE)
e7bcfc6c3d [FIX] inventory: fix sn doc typos
closes odoo/documentation#4587

X-original-commit: 17b53be028
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-06-01 20:09:49 +02:00
Brandon Seltenrich (BRSE)
a85275dbc9 [FIX] inventory: fix note in inv val config
closes odoo/documentation#4586

X-original-commit: 5a55437adc
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-06-01 20:09:46 +02:00
tiku-odoo
f449011c39 [NEW]IoT- Windows IoT doc
closes odoo/documentation#4025

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-01 19:09:15 +02:00
Jess Rogers (jero)
b7efbb61b1 [IMP] helpdesk: combine and update invoice time docs
closes odoo/documentation#3974

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-01 00:22:59 +02:00
“Audrey
fb1e764a8d [IMP] payment providers: Wire Transfer
task-3301001

closes odoo/documentation#4564

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: auva-odoo <auva@odoo.com>
2023-05-30 17:21:43 +02:00
Olivier Dony
2bea4790d6
[FIX] legal: fix link to pt_BR PDF version 2023-05-26 20:03:00 +02:00
“Dallas”
27560e7e89 [IMP] accounting: update epc qr code
task-3336175

closes odoo/documentation#4541

X-original-commit: fd23308e93
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: Dean Dallas (dade) <dade@odoo.com>
2023-05-26 15:22:07 +02:00
oco-odoo
de095cc4ad [IMP] accounting: subformulas for aggregation engine in custom reports
f39862263c
introduced two new subformulas for aggregations, but they were still
missing in the doc.

closes odoo/documentation#4537

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-26 15:22:05 +02:00
Olivier Dony
32a22581bd [FIX] legal: add pt_BR translation of OEEL
Courtesy of LANA :)

closes odoo/documentation#4548

X-original-commit: a718922b0c
Signed-off-by: Olivier Dony (odo) <odo@odoo.com>
2023-05-26 12:08:26 +02:00
Olivier Dony
1e7142ba6f [FIX] legal: rename pt_BR + build PDF version
X-original-commit: 0df79a70e0
Part-of: odoo/documentation#4548
2023-05-26 12:08:26 +02:00
jopa-odoo
6121576d52 [ADD] Legal: Portuguese (Brasil) translation of Odoo Enterprise Agreement
X-original-commit: 966bade927
Part-of: odoo/documentation#4548
2023-05-26 12:08:26 +02:00
Loredana Perazzo
163d653468 [ADD] k7e: how to manage articles (add, del, move, structure, share).
Task-3049957

closes odoo/documentation#4393

Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-05-26 12:07:54 +02:00
Brandon Seltenrich (BRSE)
dbc94f2f50 [IMP] inventory: fix and update lots
closes odoo/documentation#4524

X-original-commit: 5bc3b94b61
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-05-24 18:48:20 +02:00
“Dallas”
2adf494028 [IMP] contributing: change gui abbreviation to lower case
closes odoo/documentation#4508

X-original-commit: 20972dc033
Signed-off-by: Dean Dallas (dade) <dade@odoo.com>
2023-05-24 18:47:53 +02:00
“Chiara
440c18ca01 [IMP] accounting: fiscal position update
task-3272939

closes odoo/documentation#4151

Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-05-24 17:39:47 +02:00
“Chiara
0bea5d85b5 [IMP] accounting: improve accounting concept
task-2846856

closes odoo/documentation#4516

X-original-commit: 4fc24468e4
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
Signed-off-by: chiaraprattico <chpr@odoo.com>
2023-05-24 08:27:39 +02:00
Tom Aarab (toaa)
80349d6399 [ADD] accounting: VAT units
task-2557013

16.0: Line 36 = "Create" --> "New"

closes odoo/documentation#4499

X-original-commit: 214ce3075c
Signed-off-by: Aarab Tom (toaa) <toaa@odoo.com>
2023-05-23 16:02:09 +02:00
tiku-odoo
9267ce21a5 [IMP]Misc:SysParm-edits-email-doc
closes odoo/documentation#4277

Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2023-05-22 20:52:08 +02:00
Melanie Nguyen (meng)
71024deb7b [IMP] subscriptions: update subscription plans
closes odoo/documentation#4343

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-22 19:43:58 +02:00
Brandon Seltenrich (BRSE)
342d35892c [IMP] inventory: update serial numbers doc
closes odoo/documentation#4482

X-original-commit: af4ad4cf4d
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-05-22 18:40:28 +02:00
Jonathan Castillo (jcs)
ebeebbcd45 [MOV] accounting: restructuration of the accounting documentation
This commit improves the structure of the accounting documentation by
- reducing the levels necessary to reach the information
- grouping some docs
- moving content to their parent category page (content in all levels)
- renaming some sections to reflect the structure of the app better

task-3330093

closes odoo/documentation#4470

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-20 08:26:00 +02:00
Tom Aarab (toaa)
04f67c0b3f [ADD] Sales: loyalty and discount programs
closes odoo/documentation#3587

Signed-off-by: Melanie Nguyen (meng) <meng@odoo.com>
2023-05-19 19:47:07 +02:00
Olivier Dony
e67cc8f8e1
[CHG] legal: partnership contract v11 (updated level requirements + clarifications) 2023-05-19 12:40:10 +02:00
Jonathan Castillo (jcs)
363c935f28 [FIX] accounting: mark salt edge bank sync provider available worldwide
task-3329454

closes odoo/documentation#4449

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-17 13:46:49 +02:00
Jess Rogers (jero)
cbffc99b0f [IMP] helpdesk: update aftersales services
closes odoo/documentation#3643

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-15 20:04:20 +02:00
Jonathan Castillo (jcs)
f23173625d [REM] accounting: remove page about purchase receipts
Sale and purchase receipts aren't really useful anymore. However, they
are left in the app for corner cases and to avoid upgrade issues. Since
this page is already deprecated, it is best to remove it.

closes odoo/documentation#4431

X-original-commit: b3db7fdd48
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-15 19:01:05 +02:00
CVDE-odoo
892fd3e2ac [ADD] developer/howto: guide for theming
A complete guide on how to create a custom website theme for Odoo

closes odoo/documentation#4399

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-11 20:37:08 +02:00
Melanie Nguyen (meng)
e650e86173 [IMP] subscriptions: update product configuration
closes odoo/documentation#4266

Signed-off-by: Melanie Nguyen (meng) <meng@odoo.com>
2023-05-11 20:36:55 +02:00
Antoine Vandevenne (anv)
26e12696c1 [IMP] tutorials/getting_started: rework the environment setup guide
This commit replaces a big chunk of the instructions relative to the
environment setup with a reference to the equivalent steps listed in the
contribution guide. It also moves the content of the "Create your first
PR" section from chapter 16 to chapter 2, as readers were struggling
with the Git configuration required to push their work to GitHub as they
progressed through the tutorial.

closes odoo/documentation#4402

X-original-commit: 276f981703
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-05-11 11:29:46 +02:00
Jess Rogers (jero)
84390f4461 [IMP] helpdesk: updated 16.0 reporting doc
closes odoo/documentation#3690

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-11 02:34:44 +02:00
Tom Aarab (toaa)
42ef3b170a [IMP] accounting: follow-up reports
taskid-2057352.

Forward to master.

closes odoo/documentation#4387

X-original-commit: 767ee598ac
Signed-off-by: Aarab Tom (toaa) <toaa@odoo.com>
2023-05-10 13:20:35 +02:00
Ahmed Elhadi
2d630dffb6 [IMP] sales: Update different_addresses.rst
closes odoo/documentation#4083

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-09 18:42:40 +02:00
Loredana Perazzo
3be3897033 [IMP] pos: note about businesses requirements to use Adyen
task-3251524

closes odoo/documentation#4369

X-original-commit: 6740ad7811
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-05-09 09:29:58 +02:00
Loredana Perazzo
da73f09da5 [IMP] pos: correct a typo in note
task-3296759

closes odoo/documentation#4357

X-original-commit: 89a1a95a2b
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-05-08 21:14:28 +02:00
Xavier
17f54037b3 [IMP] upgrade: clarify and update the SLA section
task-3300955

closes odoo/documentation#4360

X-original-commit: 8763fef3f7
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-05-08 17:14:49 +02:00
“Audrey
15d8985d33 [ADD] website: cookies bar
Task ID: 3297795

closes odoo/documentation#4315

Related: odoo/odoo#120639
Signed-off-by: auva-odoo <auva@odoo.com>
2023-05-05 15:35:06 +02:00
Xavier
4eeee7bba0 [IMP] studio: add a note about duplicating standard reports
Task ID: 3301013

closes odoo/documentation#4339

X-original-commit: af93e6532d
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-05-05 08:06:32 +02:00
Sam Lieber (sali)
1a8447c9bc [IMP] inventory: delivery orders and incoming shipments restructure
closes odoo/documentation#4333

X-original-commit: bea00ecb40
Related: odoo/odoo#120526
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-04 14:29:48 +02:00
John Holton (hojo)
d42dedf6e6 [ADD] Inventory: add create second warehouse
closes odoo/documentation#4326

X-original-commit: f2c1cb228a
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-03 06:25:48 +02:00
Jonathan Castillo (jcs)
d5d3dd9a85 [ADD] UAE localization
closes odoo/documentation#4311

Taskid: 2906051
X-original-commit: eea4029a33
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-05-02 16:53:56 +02:00
Tommy (tong)
7bdc313e07 [REV] accounting: add Hong Kong localisations
This reverts commit 29b3313d85.
The reason is this commit should deploy together with odoo/odoo#120050.

closes odoo/documentation#4304

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-05-02 14:26:58 +02:00
Melanie Nguyen (meng)
591532ecca [ADD] subscriptions: add ecommerce configuration
closes odoo/documentation#4270

Signed-off-by: Melanie Nguyen (meng) <meng@odoo.com>
2023-05-01 23:47:39 +02:00
Timothy Kukulka (tiku)
6b5d0ab29e [IMP] Google Oauth Docs edits final review
closes odoo/documentation#4300

X-original-commit: 5b63bfcba9
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-30 19:45:16 +02:00
Tommy (tong)
29b3313d85 [ADD] accounting: add Hong Kong localisations
closes odoo/documentation#3657

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-28 04:48:39 +02:00
Melanie Nguyen (meng)
07249080ca [IMP] sales: update customer addresses
closes odoo/documentation#3784

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-28 03:26:25 +02:00
tiku-odoo
00fe5a5852 [IMP]Maintain:Fix typo in Azure Mail
closes odoo/documentation#4284

X-original-commit: d2e6c1d647
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-28 02:22:49 +02:00
Brandon Seltenrich (BRSE)
a217787ad3 [IMP] purchase: split purchase agreements docs
closes odoo/documentation#3511

Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-28 02:22:47 +02:00
Antoine Vandevenne (anv)
c1b38dc1f3 [FIX] reference/services: mark optional the params parameter of rpc
closes odoo/documentation#3994

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-27 11:30:29 +02:00
Antoine Vandevenne (anv)
b58dbb1fbb [IMP] tutorials/js_framework: reword, clarify and improve instructions
Part-of: odoo/documentation#3994
2023-04-27 11:30:29 +02:00
Antoine Vandevenne (anv)
6e746c851f [IMP] tutorials/js_framework: freeze GitHub links with line numbers
A few links were already outdated. Either the referenced code was no
longer on the same line, or the file didn't exist anymore.

This commit freezes all links targeting a specific line on the odoo/odoo
repository by selecting a specific commit.

Part-of: odoo/documentation#3994
2023-04-27 11:30:29 +02:00
Antoine Vandevenne (anv)
ce14b2cfb5 [IMP] tutorials/js_framework: retarget links to the current major branch
Commits pushed on the odoo/tutorials repository are not automatically
forward-ported, which makes it cumbersome to keep all SaaS branches up
to date.

Because of this, and because Odoo developers are very unlikely to follow
tutorials specific to a SaaS branch, links to odoo/tutorials now target
the current major branch, or master if applicable. SaaS branches have
also been deleted from the odoo/tutorials repository.

Part-of: odoo/documentation#3994
2023-04-27 11:30:28 +02:00
Sam Lieber (sali)
f6ae80ef16 [REF] surveys: remove overview folder
closes odoo/documentation#4273

X-original-commit: 50824b6677
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-26 08:56:32 +02:00
Brandon Seltenrich (BRSE)
5bbbc673d4 [IMP] inventory: update stock_warehouses
closes odoo/documentation#4265

X-original-commit: 31889ddc3b
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-26 02:03:58 +02:00
Jonathan
8ad5572abf [IMP] contributing/dev: add cd command to the git config section
closes odoo/documentation#4256

X-original-commit: 817e332160
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-25 14:41:16 +02:00
Jess Rogers (jero)
6c6f2398dd [IMP] helpdesk: update ratings doc
closes odoo/documentation#3664

Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-04-24 21:45:03 +02:00
Géry Debongnie
b6b9de70d2 [IMP] developer/tutorials: separate js framework tutorial in two parts
This commit splits the 7 chapters of the JS tutorial in two
smaller and more focused tutorials:
- a basic one (Discover the JS framework)
- and an advanced one (Master the odoo web framework)

closes odoo/documentation#4243

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-24 19:01:01 +02:00
Jonathan
f851ea0e0a [MOV] pos: restructuration of pos toctree
task-3284514

+ update of access pos settings
Task-3256407

closes odoo/documentation#4239

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Co-authored-by: Jonathan Castillo <jcs@odoo.com>
Co-authored-by: Loredana Perazzo <lrpz@odoo.com>
2023-04-22 11:40:57 +02:00
KC (ksc)
bd1ea29aba [ADD] social marketing: added social marketing documentation to v14
closes odoo/documentation#4232

X-original-commit: 42148acbec
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-21 23:21:54 +02:00
Artygo8
07eef81a95 [IMP] reference/extract: update documentation
task-3071317

closes odoo/documentation#3835

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-21 14:15:46 +02:00
Zuzanna Luczynska
623cd04fa0 [IMP] field service: default warehouse
task-2948598

closes odoo/documentation#4205

X-original-commit: 3ae4fbab84
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-19 18:11:54 +02:00
John Holton (hojo)
552519f8ba [ADD] Maintenance: add new equipment
closes odoo/documentation#4200

X-original-commit: eb067d6dc1
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-19 00:36:18 +02:00
Mahmoud Metwally
9e6f4a8c56 [FW][FIX] howtos/company: fix typos
closes odoo/documentation#4176

Forward-port-of: odoo/documentation#4147
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-17 17:48:23 +02:00
Zuzanna Luczynska
e885488286 [MOV] field service: improve the structure and merge docs
Currently, there are two pages about onsite interventions in two
separate categories. This task aims to merge both pages into a single
one and remove the useless categories.

task-3275322

closes odoo/documentation#4189

X-original-commit: 151e0554fa
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-17 08:37:52 +02:00
hapa-odoo
5280cb147e [ADD] fiscal localizations: Indian GST service
In this commit, I have added documentation for GST return filing.
I have explained how to register on GST Portal, configure it in odoo,
and enable GST API Access on GST Portal. I have also explained different
GSTR Report.

task-3272960

closes odoo/documentation#3432

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-14 16:55:45 +02:00
Mahmoud Metwally
32c6bed34b [FW][FIX] developer/web_services: fix typo
closes odoo/documentation#4157

Forward-port-of: odoo/documentation#4146
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-14 12:47:22 +02:00
Julien Van Roy
875d5ea61f [IMP] accounting/electronic_invoicing: add SG einvoicing format
Since commit
bd06decccf,
the 'SG BIS Billing 3.0' format is available for singaporean companies.

closes odoo/documentation#4155

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-14 09:32:08 +02:00
Julien Van Roy
136187f0fb [IMP] accounting/electronic_invoicing: remove useless section
In previous versions (from 14.0 to saas-15.4), `account_edi_ubl_cii` was
not auto-installed. From 16.0, it is. Thus, we no longer need the
section advising to install this module.

Manifest in saas-15.4:
https://github.com/odoo/odoo/blob/saas-15.4/addons/account_edi_ubl_cii/__manifest__.py
Manifest in 16.0:
https://github.com/odoo/odoo/blob/16.0/addons/account_edi_ubl_cii/__manifest__.py

closes odoo/documentation#4131

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-13 23:25:54 +02:00
Brandon Seltenrich (BRSE)
b4ee060aaa [IMP] inventory: update owned_stock
closes odoo/documentation#4140

X-original-commit: 1289a9ec45
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-04-13 00:59:23 +02:00
Loan (LSE)
bc62fcde72 [IMP] iot: add documentation regarding HTTPS certificate
Also include details/troubleshoot/solutions for redundant
support issues:
 - Error code details for HTTPS certificate generation
   (see: https://github.com/odoo/odoo/pull/114993 )
 - DNS issue with HTTPS domain

 OPW-3227004

closes odoo/documentation#4134

X-original-commit: 6f4822cb2b
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-12 21:46:18 +02:00
Jonathan Castillo (jcs)
3d2c5d7c16 [MOV] calendar: "Calendar" app from "Misc" to "Productivity"
To improve the structure of the documentation, the "Miscellaneous"
section should be limited as much as possible.

This commit:
- renames "Calendars" into "Calendar" (as the app name)
- moves the app from the "Miscellaneous" section to the "Productivity"
  section
- fixes the wrong file structure to follow the toc
  (e.g. general/calendars/outlook/outlook_calendar -> productivity/calendar/outlook)

task-3217827

closes odoo/documentation#4123

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-11 23:27:10 +02:00
fvz-odoo
62917665e3 [l10n_mx] Update exempt tax configuration.
In Mexico there are two 0% taxes, 0% VAT and 0% exempt VAT. This change
makes the tip clearer so users do not confuse both taxes. Forward to
master.

closes odoo/documentation#4117

X-original-commit: 5ef339fe82
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-11 21:54:10 +02:00
Jonathan Castillo (jcs)
e28ca153cb [MOV] live chat: structure
task-3269837

closes odoo/documentation#4107

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-11 21:54:07 +02:00
Jonathan Castillo (jcs)
8b13e1b0dc [MOV] website: structure
As a first step to update the doc - at last! - we first need to update
its structure.

task-3269837

Part-of: odoo/documentation#4107
2023-04-11 21:54:07 +02:00
Jess Rogers (jero)
a1b86849b7 [IMP] helpdesk: update ticket closing
closes odoo/documentation#3656

Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-04-11 15:02:03 +02:00