Commit Graph

3378 Commits

Author SHA1 Message Date
Xavier
7989b82225 [IMP] maintain: odoo online database management
task-2995394

closes odoo/documentation#5005

X-original-commit: c6e6401e36
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-04 01:06:10 +02:00
tong-odoo
236b76b131 [IMP] localization: AU rebrands Keypay to Employment Hero
task-3250954

closes odoo/documentation#4997

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

closes odoo/documentation#4990

X-original-commit: f3e3490ba4
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-04 01:05:55 +02:00
Julien Mougenot
d1c810739e [IMP] web: Owl DateTimePicker
This commit introduces a date picker OWL component meant to handle the
following use-cases:
- date picker
- date & time picker
- date range picker
- date & time range picker

Basically, this component is the union of the two previous third-party
libraries handling these cases: TempusDominus and DateRangePicker.

New components introduced:

* The main addition of this commit is the `DateTimePicker` itself which
handles the display and interactions of the calendar and time pickers.
> see @web/core/datetime/datetime_picker

* The picker can then be coupled to an input using the
`useDateTimePicker` hook. The purpose of this hook is to handle events
on a given input element and syncronize its value to a date picker it
will spawn in a popover.
> see @web/core/datetime/datetime_hook

* Lastly, a simple `DateTimeInput` component will render an input and
call the hook mentioned above to handle it. This component is
effectively replacing the previous DatePicker and DateTimePicker
components (note that it does not handle range values).
> see @web/core/datetime/datetime_input

Another noticeable change of this commit is the definition of daterange
fields in views:

- Previously, the arch would have to define both fields
and bind them via their options, while also adding an arrow between
inputs or other forms of connection.

- In the new implementation, only the start date field must be declared,
and a date range can be spawned by providing an `end_date_field` in its
options.

Example:
```xml
<field
    name="start_datetime"
    widget="daterange"
    options="{'end_date_field': 'end_datetime'}"
/>
```

warning Added limitations:

- this new way of declaring date ranges means that templates have been
revised to declare one field tag instead of two. This means that list
views using date ranges have lost the ability to be sorted on their end
date fields.

> Justification: the current use cases have been reviewed and it has
been decided that it was not needed to sort on the end date on the
affected list views.

> Workaround: drop the date range and declare both fields as simple date
pickers (i.e. without the end_date_field option).

- all modifiers applied to a field using a date range will be copied and
applied to the end date field. There is no way to define modifiers
specific to one field or the other.

> Justification: there was no use case where one of the two fields
needed specific modifiers.

> Workaround: same as the previous point: split the range into 2 simple
date picker fields.

Additional notes:

- the widget="daterange" is not mandatory in form views, but is required
in list views because only fields with explicit widgets will not be
rendered as simple <span> elements. The date range feature will be
available as soon as an end_date_field is specified.

- as the end date field is not explicitly defined in the view anymore,
any modifier depending on it need to have it defined as invisible
somewhere in the arch.

Task ID: 3121497

closes odoo/documentation#4330

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-07-04 01:05:53 +02:00
Julien Mougenot
1479ddc2af [REF] web: update JS fields documentation
This commit updates the documentation of JS fields:

- style and notation have been adapted to keep in line with the current
documentation writing guidelines;

- some outdated bits have been updated or removed (this is rather a
correction of misleading information than a proper update as no new
information has been added).

Part-of: odoo/documentation#4330
2023-07-04 01:05:52 +02:00
John Holton (hojo)
9b6552b50e [ADD] Inventory: Add Replenish on order (MTO)
closes odoo/documentation#4983

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

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

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

X-original-commit: 729881c7b1
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-01 18:05:31 +02:00
Lara Martini (larm)
6284ae7201 [IMP] Inventory: updated images and removed edit and save directions
closes odoo/documentation#4958

X-original-commit: 710c373354
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-30 23:26:51 +02:00
John Holton (hojo)
1b14fa5f7b [IMP] Administration: Rewrite Upgrade Odoo SaaS
closes odoo/documentation#4950

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

closes odoo/documentation#4941

X-original-commit: ac0db5ad17
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-29 10:16:36 +02:00
Xavier
c336f34baf [FIX] accounting: remove fullscreen property from tutorial link
task-3389168

closes odoo/documentation#4935

X-original-commit: 88da0a9256
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-06-28 16:00:53 +02:00
Jess Rogers (jero)
3b0c65f0d5 [IMP] livechat: update commands and canned responses
closes odoo/documentation#4930

X-original-commit: e8aaefd283
Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-06-28 14:34:56 +02:00
Xavier
39313aaa8e [ADD] website: reCAPTCHA
task-3336129

closes odoo/documentation#4919

X-original-commit: 329f6dd8d5
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-06-27 22:40:27 +02:00
Timothy Kukulka (tiku)
5eea907c0f [IMP] IoT: edits to all IoT docs
closes odoo/documentation#4926

X-original-commit: e7457c992b
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-27 21:14:59 +02:00
Benoit Socias
1659c8b801 [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#4911

X-original-commit: 3a131c829a
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-06-27 15:38:16 +02:00
Benoit Socias
9d4671d68f [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#4910

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

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:16 +02:00
Brandon Seltenrich (BRSE)
c83d4b33a7 [IMP] inventory: update expiration dates doc
closes odoo/documentation#4889

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 22:03:04 +02:00
Lara Martini (larm)
0aff3e8376 [ADD] Employees: anning a new employee
closes odoo/documentation#4857

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 22:02:55 +02:00
Jess Rogers (jero)
555fcf25d3 [IMP] live chat:update getting started doc
closes odoo/documentation#4882

X-original-commit: c24f4b237e
Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-06-26 20:57:56 +02:00
Donatienne Pirlot
12d40d6e0f [ADD] localization: belgian accounting
closes odoo/documentation#4841

Id: 3143421
X-original-commit: 4d477a598f
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-26 18:17:56 +02:00
Lara Martini (larm)
302ec1dcb1 [IMP] inventory: update strategies second person and images
closes odoo/documentation#4868

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

X-original-commit: bafe824f38
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-24 00:17:55 +02:00
Xavier
2e2e7b19be [ADD] Spreadsheet: templates
task-3235170

closes odoo/documentation#4862

X-original-commit: 1853f226e7
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-23 14:01:43 +02:00
“Audrey
10bae262c8 [IMP] Payment providers - Stripe: Add missing webhook events
task-3373642

closes odoo/documentation#4779

X-original-commit: c04399c0b3
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Audrey Vandromme (auva) <auva@odoo.com>
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-06-23 09:48:50 +02:00
Lara Martini (larm)
17e0e4e5bd [IMP] Expenses: updating for new 16 design
closes odoo/documentation#4849

X-original-commit: 0433e84a0c
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-22 03:18:59 +02:00
Felicious
9b317fded7 [IMP] inventory: adjust manual val for v.16
closes odoo/documentation#4845

X-original-commit: 4c750d1bb7
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-22 02:03:00 +02:00
Jonathan
9dd4f67d1e [IMP] accounting: add tutorials links to chart of accounts
closes odoo/documentation#4834

X-original-commit: a85e064ffc
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-21 22:10:57 +02:00
Lara Martini (larm)
f1c071f526 [IMP] Inventory: Updating for 16.0 no save button
closes odoo/documentation#4813

X-original-commit: e074580ffb
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-21 19:35:47 +02:00
Jonathan
013e9b4e68 [FIX] discuss: broken link in ice_servers.rst
closes odoo/documentation#4826

X-original-commit: 8efbe3ef84
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-21 17:33:48 +02:00
Loredana Perazzo
90c221f122 [IMP] pos: write content on the Payment Terminals page
task-3358474

closes odoo/documentation#4797

X-original-commit: b745bd9fef
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
Signed-off-by: Loredana Perazzo (lrpz) <lrpz@odoo.com>
2023-06-21 13:07:57 +02:00
Christophe Monniez
23b5ebd865 [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#4807

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 17:31:56 +02:00
Christophe Monniez
81f12e1c6a [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#4807
2023-06-20 17:31:56 +02:00
Martin Trigaux
6428006680 [I18N] *: export 16.0 source terms
closes odoo/documentation#4800

X-original-commit: ad7b636275
Signed-off-by: Martin Trigaux (mat) <mat@odoo.com>
2023-06-20 15:29:48 +02:00
Antoine Vandevenne (anv)
630d4a30a7 [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#4790

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

closes odoo/documentation#4777

X-original-commit: cf5a3276c9
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-16 20:19:48 +02:00
Xavier
4c483e2a4a [IMP] accounting/sales: default terms and conditions + quotation templates
task-3304938

closes odoo/documentation#4765

X-original-commit: 7ddbeb9223
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-06-16 14:52:41 +02:00
Tom Aarab (toaa)
978d8b0eca [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#4733

X-original-commit: ede03aa87b
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-16 08:44:45 +02:00
KC (ksc)
930f4b1f53 [IMP] sales: updated pro-forma invoice doc
closes odoo/documentation#4761

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

X-original-commit: 4b327417b0
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-15 20:35:20 +02:00
Sam Lieber (sali)
30b596aafd [IMP] marketing: workflow_activities.rst - Format fixes
closes odoo/documentation#4752

X-original-commit: a09ca7bd0f
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-15 20:35:18 +02:00
Sam Lieber (sali)
8f3d59caf5 [IMP] Update rst for target_audiences.rst (v14)
closes odoo/documentation#4740

X-original-commit: 89c1c1b357
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-15 20:35:10 +02:00
“Audrey
9d1ce94d2f [FIX] Adyen: Fix live/test URLs
closes odoo/documentation#4728

X-original-commit: 1f2f11c42b
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: auva-odoo <auva@odoo.com>
2023-06-15 13:15:30 +02:00
“Audrey
ef7eb35e99 [IMP] Website: Multiple websites
task-3190493

closes odoo/documentation#4713

X-original-commit: 9e453285d0
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: auva-odoo <auva@odoo.com>
2023-06-13 09:36:41 +02:00
Tom Aarab (toaa)
372ecf24cb [IMP] accounting: OSS report
Added a section on where to find OSS reports and how to export them

task-3305037

closes odoo/documentation#4714

X-original-commit: 0494082a55
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-13 08:28:31 +02:00
Loredana Perazzo
7c88185e6a [IMP] pos: update the register customers section
task-3357882

closes odoo/documentation#4705

X-original-commit: ee4b279e7c
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-06-12 12:57:05 +02:00
Tom Aarab (toaa)
096cb6db4f [IMP] accounting: follow-up reports
task-3316301.

closes odoo/documentation#4699

X-original-commit: 256ddb30ab
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-12 10:28:31 +02:00
Morfosys
83168299d9 [IMP] l10n: update links in mexico.rst
Update the link for Smarter Web to the appropriate landing page for
Odoo.

closes odoo/documentation#4688

X-original-commit: 7510b4bb23
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-09 15:18:47 +02:00