Commit Graph

2570 Commits

Author SHA1 Message Date
Odoo Translation Bot
a37dc8d4a8 [I18N] Update translation terms from Transifex 2022-01-16 01:31:04 +01:00
Odoo Translation Bot
d59e8f6e61 [I18N] Update translation terms from Transifex 2022-01-09 01:30:59 +01:00
Odoo Translation Bot
5c446bf536 [I18N] Update translation terms from Transifex 2022-01-02 01:30:57 +01:00
Odoo Translation Bot
f25888d245 [I18N] Update translation terms from Transifex 2021-12-26 01:30:59 +01:00
Odoo Translation Bot
bb468e571f [I18N] Update translation terms from Transifex 2021-12-19 01:31:00 +01:00
Mark Fischer, Jr
aa987b537e [FIX] expenses: grammar and typos in expenses.rst
Backport to 13.0 of PR #1175

closes odoo/documentation#1439

X-original-commit: 7090a54670
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2021-12-17 16:29:56 +00:00
Jairo Llopis
6a995b48ff [IMP] developer/modules: deprecate 'active' and detail 'auto_install'
1. `active` is just a deprecated field that means exactly the same as
   `auto_install`.
2. `auto_install` can be a list.

See 6cb3140ea8/odoo/modules/module.py (L348-L352)

Original PR: https://github.com/odoo/documentation/pull/1109

closes odoo/documentation#1428

X-original-commit: 03a54e5b37
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Co-authored-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-12-16 10:43:09 +00:00
Antoine Vandevenne (anv)
46cb0b8e9b [IMP] developer/*: replace occurrences of "access rule" by "record rule"
Both the functional and technical name of the `ir.rule` model is "Record
Rule". This commit makes sure that all occurrences of "Access Rule" are
replaced by the correct name "Record Rule" as it was easily confused
with "Access Rights".

Original PR: https://github.com/odoo/documentation/pull/1118

closes odoo/documentation#1421

Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2021-12-15 13:08:40 +00:00
Chris Parker
c9d538082a [FIX] api/odoo: reflect the correct location of menu actions
closes odoo/documentation#1410

X-original-commit: beb92c9f18
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-12-14 12:08:55 +00:00
Perman Atayev
f9b9e852f6 [IMP] install/maintain: fix a typo
original commit 5098eaf93f
in PR https://github.com/odoo/documentation/pull/1345/

closes odoo/documentation#1405

X-original-commit: 806a96f8cb
Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2021-12-13 18:11:19 +00:00
Xavier
0d918c3d21 [IMP] studio: fix a typo
Original commit: e1e644fc9a
in PR: #1330

closes odoo/documentation#1400

X-original-commit: a1db25d3ba
Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2021-12-13 10:14:55 +00:00
Odoo Translation Bot
a333b5e70a [I18N] Update translation terms from Transifex 2021-12-12 01:31:02 +01:00
mdb-odoo
71fe1e09ee [IMP] inventory: push/pull explanations
forward-port of e946f5fcfd
original commit (never merged) 427b14dcae

closes odoo/documentation#1390

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-12-09 15:36:46 +00:00
jedgalbraith
464b7446a0 [IMP] inventory: word mistake
closes odoo/documentation#1382

X-original-commit: 5d72b5028f
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2021-12-09 15:36:44 +00:00
jedgalbraith
bf6331033d [IMP] sales: grammar fix
closes odoo/documentation#1386

X-original-commit: 4903a9fecc
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2021-12-09 15:34:12 +00:00
Antoine Vandevenne (anv)
dfbf5edb23 [IMP] README: remove request for review instruction
closes odoo/documentation#1376

X-original-commit: 493ebbfa9a
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-12-09 13:38:16 +00:00
Antoine Vandevenne (anv)
b674b0c03d [REM] CODEOWNERS: rely on runbot's codeowners system
closes odoo/documentation#1371

X-original-commit: edddeb4826
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-12-09 12:24:08 +00:00
Moens Alexandre
9f07d85313 [IMP] hosting change: from PaaS to SaaS
Requesting a dump from the customers comming from the PaaS is useless
(since support has access to the odoo.sh projects) and counter
productive (since it only makes the migration outage longer while the
customer downloads the file, then uploads it, then we download it,
instead of just the support downloading it)

closes odoo/documentation#1365

X-original-commit: c3c054681c
Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2021-12-08 13:54:17 +00:00
Odoo Translation Bot
36ac4dfc8e [I18N] Update translation terms from Transifex 2021-12-05 01:31:10 +01:00
Odoo Translation Bot
af07bde584 [I18N] Update translation terms from Transifex 2021-11-28 01:31:27 +01:00
Rémy Baranx (bar)
45e1b1f422 [FIX] conf.py: check odoo_dir is a real Odoo sources dir
In `conf.py`, we try to find a Odoo sources folder among `odoo` and
`../odoo` directories without really checking that they really are
Odoo sources folders, leading to doc generation error if it's not the case.

So, to improve that, this commit checks that the selected Odoo sources folder
contains `odoo-bin`.

While we're at it, the logging is also improved to always display the
matching odoo sources' folder and version.

closes odoo/documentation#1339

X-original-commit: f72e557f2c
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Co-authored-by: Antoine Vandevenne <anv@odoo.com>
2021-11-26 12:51:42 +00:00
Odoo Translation Bot
6fb2cc8bb6 [I18N] Update translation terms from Transifex 2021-11-21 01:31:25 +01:00
Antoine Dupuis (andu)
e2c819bd87 [IMP] accounting/taxcloud: how to set up default account for new taxes
New taxes generated by the TaxCloud integration are by default created without an income or an expense account specified. By default, the journal items corresponding to these taxes therefore end up in the default income account, which is usually the 'Sales' account, when they should in fact go to the 'Tax Payable' account. Because these taxes are automatically generated on-the-fly, the user is usually not able to manually specify the Tax Payable account before the journal items are posted, leading to incorrect accounting entries which then need to be manually repaired through the use of miscellaneous operations.

To solve this issue, our video on TaxCloud integration (https://www.youtube.com/watch?v=JE-NeRNIWeU&t=616s) tells us to create a User-Defined Default for the account field of the tax.repartition.line model. This sets the default account with which new taxes are created. However, this information is missing from the documentation.

This PR brings the documentation up-to-date by explaining how to create this User-Defined Default that specifies the correct Tax Payable account.

closes odoo/documentation#1319

X-original-commit: 35d773a82a
Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2021-11-17 09:50:13 +00:00
lejeune quentin
0f1f90e486 [FIX] point_of_sale: Update certificate import
With the new version of chrome 95 we need adapt the documentation

closes odoo/documentation#1314

Signed-off-by: Quentin Lejeune (qle) <qle@odoo.com>
2021-11-17 09:34:37 +00:00
Odoo Translation Bot
756c1f652d [I18N] Update translation terms from Transifex 2021-11-14 01:31:21 +01:00
lejeune quentin
f8f93ec288 [ADD] point_of_sale: self-signed certificate for epos printers
Add documentation to explain how to use a ePos printer in HTTPS

closes odoo/documentation#1223

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2021-11-09 17:03:53 +00:00
Odoo Translation Bot
0fdfb740fb [I18N] Update translation terms from Transifex 2021-11-07 01:31:25 +01:00
Jonathan Castillo (jcs)
09b496fb71 [IMP] website: update a wrong link (godaddy)
task-id 2682327

closes odoo/documentation#1284

X-original-commit: edb747bca1
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2021-11-03 16:16:50 +00:00
Raf Geens
77dd769b08 [FIX] testing: Explain "new" tagging syntax
Syntax was added to explicitly specify a module, class or function with
`--test-tags`: b729a11a12

The documentation was not updated to reflect this, leading to confusion
as people tried to reconcile the documentation with the actual behavior,
without necessarily having seen `odoo-bin --help` which is explicit
about it.

closes odoo/documentation#1279

X-original-commit: 23d0a7a062
Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2021-11-03 15:04:43 +00:00
Antoine Vandevenne (anv)
f4f962c0a4 [FIX] requirements.txt: Let sphinx manage docutils version
As of sphinx 3.5.4, docutils >0.17 is no longer supported. To avoid
forcing the install of an unsupported version of docutils, we let
sphinx install the appropriate version through its dependencies.

closes odoo/documentation#1274

X-original-commit: 116d9b5181
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-11-03 10:45:29 +00:00
Odoo Translation Bot
9659cabc31 [I18N] Update translation terms from Transifex 2021-10-31 01:30:21 +02:00
Jonathan Castillo (jcs)
472543559c [ADD] maintain: revert and update "db_online"
task-2601835

closes odoo/documentation#1219

X-original-commit: d7f4475901
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-10-25 14:08:13 +00:00
Odoo Translation Bot
62771ad613 [I18N] Update translation terms from Transifex 2021-10-24 01:30:11 +02:00
Julien Van Roy
da0eeed38f [FIX] developer/reference: fix missing slash in javascript/qweb, debugging section
closes odoo/documentation#1213

X-original-commit: 7fbf1c3ef2
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-10-22 13:15:10 +00:00
lejeune quentin
a160504b8d [ADD] point_of_sale: configure https in the POS
The default protocol int the POS with "other device"
is on HTTP.

This doc explain how to activate the HTTPS in the POS

closes odoo/documentation#1195

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-10-21 10:35:56 +00:00
Olivier Dony
7fb67424d3
[CHG] legal/tos: specify pricelist for global customers 2021-10-20 11:19:17 +02:00
Olivier Dony
aa0cb28f04
[FIX] legal/terms: fr: simplify limitation of liability
The english version has a confusing wording, using "strict ngligence"
instead of "strict liability" in this sentence:
  "(...) regardless of the form of action, whether in contract, tort
   (including strict negligence) or any other legal (...)"

In FR/BE this would seeem to refer to the notion of "responsabilité
objective" ou "responsabilité sans faute".

Yet this extra precision seems confusing and does not seem to add to the
already broad clause. It seems simpler to omit it.

The typical english wording for this clause is simply:
"regardless of the form of action, whether in contract, tort or otherwise".
2021-10-20 11:18:30 +02:00
Antoine Vandevenne (anv)
59df6b90ae [FIX] extract_api: bring back extract_api doc lost with be1653cc
closes odoo/documentation#1197

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-10-19 11:20:35 +00:00
Jonathan Castillo (jcs)
92230fc5dc [IMP] upgrade: create new "upgrade" section in "install and maintain"
closes odoo/documentation#1185

X-original-commit: fd006b4a3c
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Jonathan <jcs-odoo@users.noreply.github.com>
2021-10-15 11:40:55 +00:00
Jonathan Castillo (jcs)
550c160e8b [IMP] maintain: on premise filename change and media movement
X-original-commit: 8ca7d66faa
Part-of: odoo/documentation#1185
2021-10-15 11:40:55 +00:00
Jonathan Castillo (jcs)
a2eddf9f06 [IMP] maintain: update versions upgrade
task-2600310

X-original-commit: 84ceee3fda
Part-of: odoo/documentation#1185
2021-10-15 11:40:55 +00:00
Antoine Vandevenne (anv)
e0c70eb5ff [REL] supported_versions: update list of versions and add end of support
closes odoo/documentation#1161

X-original-commit: a9e218140f
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-10-05 14:52:42 +00:00
Antoine Vandevenne (anv)
eed3c7b4c1 [IMP] contributing: adapt the GitHub workflow to the new doc theme
closes odoo/documentation#1158

X-original-commit: 8043d92b24
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-10-05 14:24:01 +00:00
Odoo Translation Bot
9601d105dc [I18N] Update translation terms from Transifex 2021-10-03 01:30:17 +02:00
Odoo Translation Bot
3108c9dc3a [I18N] Update translation terms from Transifex 2021-09-26 01:30:21 +02:00
Denis Ledoux
267fe10675 [FIX] maintain: upgrade command line link
closes odoo/documentation#1149

X-original-commit: 7276929071
Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
Signed-off-by: Denis Ledoux (dle) <dle@odoo.com>
2021-09-21 09:41:38 +00:00
Fabien Meghazi
c882af810d [IMP] maintain: set the Odoo.sh end-of-support planned date for v10.0 2021-09-20 16:20:51 +02:00
Odoo Translation Bot
bd0b969df2 [I18N] Update translation terms from Transifex 2021-09-19 01:30:37 +02:00
Jonathan Castillo (jcs)
e59f9553ba [IMP] maintain: update test doc link in versions upgrade
closes odoo/documentation#1140

X-original-commit: 0842b682fc
Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2021-09-14 16:20:05 +00:00
Raf Geens
396df2abdd [FIX] app/accounting: Fix outdated Colombian test server url
The test server url for Carvajal T&S was out of date and has been
updated with the correct one. Carvajal has also split into 2
different companies, with new customers using the new company (CSC)
by default but the older company (CTS) still being available for
existing customers. See task 2508208. So the documentation was
updated to include both of them.

CTS (Carvajal T&S) was being used to refer to Carvajal in general,
so to avoid confusion those mentions have been changed to just
"Carvajal" since it can refer to either CTS or CSC.

closes odoo/documentation#1125

Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2021-09-14 13:59:10 +00:00