Commit Graph

1024 Commits

Author SHA1 Message Date
John Holton (hojo)
f704ee9cc1 [DEL] MRP: Delete Alternative Work Centers 16.0
closes 

X-original-commit: a67a69beae
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-15 12:00:01 +02:00
Martin Trigaux
0031e37c63 [FIX] developer: document changes of message_post API
closes 

X-original-commit: 8bf2d026b7
Signed-off-by: Martin Trigaux (mat) <mat@odoo.com>
2023-07-15 10:54:41 +02:00
Lara Martini (larm)
89b550252a [IMP] Inventory: update for 16
closes 

X-original-commit: 29db8bf1e6
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-13 20:37:30 +02:00
Jess Rogers (jero)
27d8dc2acd [IMP] live chat: add note for 16.3 command changes
closes 

X-original-commit: a187b7cde4
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-13 20:37:27 +02:00
Loredana Perazzo
4367502c08 [IMP] pos: move part of the intro into generate tab
task-3372676

closes 

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

closes 

X-original-commit: c85031b3fc
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-07-13 19:28:18 +02:00
Aymen Sellami
8bf5772a97 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.

X-original-commit: 481a867a05
Part-of: 
2023-07-13 08:28:25 +02:00
Leonardo Pavan Rocha
6462ed0112 [IMP] web: merge quick_add with quick_create_form_view id in views
https://github.com/odoo/odoo/pull/114827 added a new attribute
quick_create_form_view_id to the calendar view that would allow showing a form
view when clicking on quick_create. This attribute was only used in calendar,
however it could be useful for other modules as well. It was decided to merge
this new attribute with the quick_add attribute, as they are related. Now, the
quick_add attribute accepts either a boolean or a form view id. This commit
changes the documentation of this attribute.

task-3286969

closes 

Related: 
Signed-off-by: Arnaud Joset (arj) <arj@odoo.com>
2023-07-12 20:33:53 +02:00
Xavier (XPL)
1c2ce72416 [IMP] payments: clarify authorize.net statement import steps
task-2382237

closes 

X-original-commit: 22d45407c4
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-11 04:52:41 +02:00
Tom Aarab (toaa)
e005fa9896 [IMP] authorize.net statement import
taskid-2382237

closes 

X-original-commit: ca38752795
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-07 17:58:09 +02:00
Zuzanna Luczynska
4590a4c25a [ADD] project: recurring tasks, FW port edit 16.2
closes 

Id: 3255317
X-original-commit: c2d174fb4e
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-07 17:57:52 +02:00
tong-odoo
057a1c11d2 [FIX] accounting: AU rebrands Keypay to Employment Hero
task-3250954

closes 

X-original-commit: d252a96747
Related: 
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
Signed-off-by: Tommy Ng (tong) <tong@odoo.com>
2023-07-06 19:46:32 +02:00
Xavier (XPL)
7d01392c9a [IMP] accounting: l10n chile deliver guides warning
task-3410367

closes 

X-original-commit: b729d05e57
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-05 15:58:34 +02:00
Julien Mougenot
35aae86dbd [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 

Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Julien Mougenot (jum) <jum@odoo.com>
2023-07-04 12:47:02 +02:00
Julien Mougenot
a9c82ebb94 [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: 
2023-07-04 12:47:01 +02:00
Brandon Seltenrich (BRSE)
453284ba8e [IMP] purchase: update manage vendor bills
closes 

X-original-commit: 688220bb51
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-07-04 07:55:31 +02:00
Xavier
42115759bc [IMP] maintain: odoo online database management
task-2995394

closes 

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

closes 

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

closes 

X-original-commit: f3e3490ba4
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-07-04 00:51:48 +02:00
John Holton (hojo)
c76f97777a [ADD] Inventory: Add Replenish on order (MTO)
closes 

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

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

X-original-commit: 18a9b88a11
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-01 19:12:55 +02:00
Jess Rogers (jero)
06d5e0b096 [ADD] livechat: added chatbot doc
closes 

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

X-original-commit: 710c373354
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-07-01 04:44:58 +02:00
John Holton (hojo)
9cac3b3d1a [IMP] Administration: Rewrite Upgrade Odoo SaaS
closes 

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

closes 

X-original-commit: 5b78ee96af
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-29 11:59:51 +02:00
Xavier
b0a042b928 [FIX] accounting: remove fullscreen property from tutorial link
task-3389168

closes 

X-original-commit: 88da0a9256
Signed-off-by: Xavier Platteau (xpl) <xpl@odoo.com>
2023-06-28 19:08:51 +02:00
Jess Rogers (jero)
facb3f184e [IMP] livechat: update commands and canned responses
closes 

X-original-commit: e8aaefd283
Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-06-28 17:41:59 +02:00
Rémy Voet (ryv)
13544bca17 [IMP] orm: name_get into display_name




closes 

Signed-off-by: Rémy Voet (ryv) <ryv@odoo.com>
2023-06-28 17:41:15 +02:00
Xavier
9e54525d61 [ADD] website: reCAPTCHA
task-3336129

closes 

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

X-original-commit: e7457c992b
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-27 21:27:56 +02:00
Benoit Socias
0df9068892 [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 

X-original-commit: 3a131c829a
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-06-27 13:44:38 +02:00
Benoit Socias
2161dd5acf [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 

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

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 01:34:51 +02:00
Brandon Seltenrich (BRSE)
f1d048fdff [IMP] inventory: update expiration dates doc
closes 

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:23:09 +02:00
Jess Rogers (jero)
5cfd1623ae [IMP] live chat:update getting started doc
closes 

X-original-commit: c24f4b237e
Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-06-26 23:23:01 +02:00
Lara Martini (larm)
432d9bb10b [ADD] Employees: anning a new employee
closes 

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 21:09:52 +02:00
Donatienne Pirlot
1be31fda81 [ADD] localization: belgian accounting
closes 

Id: 3143421
X-original-commit: 4d477a598f
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-26 20:01:07 +02:00
Lara Martini (larm)
4d61833e46 [IMP] inventory: update strategies second person and images
closes 

X-original-commit: 6201ee8760
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-24 04:41:55 +02:00
Jess Rogers (jero)
46d85d4f00 [IMP] helpdesk: update help center documentation
closes 

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

closes 

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 10:27:55 +02:00
“Audrey
9fc59e3237 [IMP] Payment providers - Stripe: Add missing webhook events
task-3373642

closes 

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:20:53 +02:00
Lara Martini (larm)
5b04581623 [IMP] Expenses: updating for new 16 design
closes 

X-original-commit: 0433e84a0c
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-22 03:20:29 +02:00
Felicious
5c82ba7762 [IMP] inventory: adjust manual val for v.16
closes 

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:02:47 +02:00
Jonathan
b7316e2e2e [IMP] accounting: add tutorials links to chart of accounts
closes 

X-original-commit: a85e064ffc
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-21 22:40:59 +02:00
Jonathan
4e61b3585e [FIX] discuss: broken link in ice_servers.rst
closes 

X-original-commit: 8efbe3ef84
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
2023-06-21 20:10:34 +02:00
Lara Martini (larm)
11401af3dd [IMP] Inventory: Updating for 16.0 no save button
closes 

X-original-commit: e074580ffb
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-21 20:10:20 +02:00
Loredana Perazzo
3d0a19f329 [IMP] pos: write content on the Payment Terminals page
task-3358474

closes 

X-original-commit: 2a5a45d6a4
Signed-off-by: Jonathan Castillo (jcs) <jcs@odoo.com>
Signed-off-by: Loredana Perazzo (lrpz) <lrpz@odoo.com>
2023-06-21 13:46:03 +02:00
Christophe Monniez
899ee1c4c1 [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 

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 18:02:00 +02:00
Christophe Monniez
ab4cfb431f [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: 
2023-06-20 18:01:59 +02:00
Antoine Vandevenne (anv)
9f65cba6dc [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 

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

closes 

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

closes 

X-original-commit: 7ddbeb9223
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-06-16 12:19:00 +02:00
Tom Aarab (toaa)
a7bb89ce47 [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 

X-original-commit: ede03aa87b
Signed-off-by: Tom Aarab (toaa) <toaa@odoo.com>
2023-06-16 10:52:45 +02:00
KC (ksc)
532b6be429 [IMP] sales: updated pro-forma invoice doc
closes 

X-original-commit: 3e4e8acfed
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-16 01:40:21 +02:00
Sam Lieber (sali)
80e8576263 [IMP] marketing: workflow_activities.rst - Format fixes
closes 

X-original-commit: a09ca7bd0f
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-16 01:40:13 +02:00
Sam Lieber (sali)
75fd5255eb [IMP] marketing: testing_running.rst format fixes
closes 

X-original-commit: 4b327417b0
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-16 00:30:01 +02:00
Sam Lieber (sali)
070ffa86c0 [IMP] Update rst for target_audiences.rst (v14)
closes 

X-original-commit: 89c1c1b357
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-15 19:59:31 +02:00
tong-odoo
7b5ce24bba [IMP] accounting: update Hong Kong FPS content
Impacted versions:

- saas-16.4 or above

tast-3130633

closes 

Related: 
Related: 
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-15 17:36:11 +02:00
tong-odoo
05a09da86a [ADD] accounting: add Singapore localisations
Impacted versions:

- saas-16.4 or above

This commit improve below features:

- Singapore accounting documentation
- PayNow QR code documentation

task-3130633

Part-of: 
2023-06-15 17:36:11 +02:00
“Audrey
d0ca9fbafe [FIX] Adyen: Fix live/test URLs
closes 

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

closes 

X-original-commit: 1042ba86fb
Signed-off-by: auva-odoo <auva@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-13 12:49:43 +02:00
Tom Aarab (toaa)
978bebf93c [IMP] accounting: OSS report
Added a section on where to find OSS reports and how to export them

task-3305037

closes 

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:44:23 +02:00
Loredana Perazzo
388003e6f1 [IMP] pos: update the register customers section
task-3357882

closes 

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:41:57 +02:00
Tom Aarab (toaa)
7a41103958 [IMP] accounting: follow-up reports
task-3316301.

closes 

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 12:41:29 +02:00
Morfosys
63a9962742 [IMP] l10n: update links in mexico.rst
Update the link for Smarter Web to the appropriate landing page for
Odoo.

closes 

X-original-commit: 7510b4bb23
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-09 13:50:20 +02:00
Benjamin Hanquin
414bae03ec [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 

X-original-commit: 98207740d5
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-09 13:50:17 +02:00
Lara Martini (larm)
bbd5b4da50 [IMP] Expenses: updaitng out of date information and images
closes 

closes 

X-original-commit: 01f40f24ba
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-09 02:32:43 +02:00
“Audrey
18280ab5da [IMP] Adyen: Update directions for setting the URLs
task-3338125

closes 

X-original-commit: 35d355f624
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: auva-odoo <auva@odoo.com>
2023-06-08 14:32:37 +02:00
Loredana Perazzo
1fb6059a90 [IMP] pos: update multi employees management
task-3005118

closes 

X-original-commit: e3665393c3
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-06-08 09:10:07 +02:00
Brandon Seltenrich (BRSE)
ae506cb484 [FIX] inventory: fix two step doc
closes 

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 23:26:04 +02:00
“Dallas”
10683c03c7 [IMP] accounting: update VIES VAT number validation
task-3329992

closes 

X-original-commit: d472c646a8
Signed-off-by: Dallas Dean (dade) <dade@odoo.com>
2023-06-07 18:01:19 +02:00
luvi
898b0280db [IMP] web: add documentation for Core components
This commit adds some documentation for features recently added to SelectMenu
and TagsList components during the saas-16.3 development. A screenshot has
been provided to the advances use case of the SelectMenu, with a customization
of the bottom area of the dropdown, to create display a button allowing the
creation of items.

closes 

X-original-commit: 0aad6eafda
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Luca Vitali <luvi@odoo.com>
2023-06-06 14:48:43 +02:00
Antoine Vandevenne (anv)
369aa4a662 [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 

X-original-commit: 3d1293757a
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-06-06 10:30:08 +02:00
Julien Castiaux
8459cf4db8 [FIX] install: minimal python version is 3.8
See odoo/odoo@44d60e3

closes 

X-original-commit: 38e6d5d368
Signed-off-by: Julien Castiaux (juc) <juc@odoo.com>
2023-06-05 23:59:09 +02:00
Tom Aarab (toaa)
844c2ef62e [IMP] accounting: OSS note removal
Removal of a note in 16 that only applies to versions below it.

task-3305037

closes 

X-original-commit: adee414578
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-02 22:29:33 +02:00
Tom Aarab (toaa)
f2ce4374aa [ADD] accounting: incoterms
Seperating Incoterms section from "Intrastat" doc to make it a stand
alone documentation.

task-3305222

closes 

X-original-commit: 971543266a
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-06-02 22:29:31 +02:00
tiku-odoo
670f8bb76c [NEW]IoT- Windows IoT doc
closes 

X-original-commit: f449011c39
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-06-02 00:35:55 +02:00
Brandon Seltenrich (BRSE)
a4461a7ee4 [FIX] inventory: fix sn doc typos
closes 

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:17:13 +02:00
Brandon Seltenrich (BRSE)
c30ecfb20d [FIX] inventory: fix note in inv val config
closes 

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:17:10 +02:00
Jess Rogers (jero)
1eb2037c30 [IMP] helpdesk: combine and update invoice time docs
closes 

X-original-commit: b7efbb61b1
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-06-01 17:55:15 +02:00
“Audrey
e3a28d6cf1 [IMP] payment providers: Wire Transfer
task-3301001

closes 

X-original-commit: 882b4b852b
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
Signed-off-by: auva-odoo <auva@odoo.com>
2023-05-31 14:23:26 +02:00
Loredana Perazzo
e99891c7b7 [ADD] k7e: how to manage articles (add, del, move, structure, share).
Task-3049957

closes 

X-original-commit: 163d653468
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-30 10:31:52 +02:00
Olivier Dony
ac0e703863
[FIX] legal: fix link to pt_BR PDF version 2023-05-26 20:04:54 +02:00
oco-odoo
21b604e0db [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 

X-original-commit: de095cc4ad
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-26 17:29:32 +02:00
“Dallas”
4566a8ec30 [IMP] accounting: update epc qr code
task-3336175

closes 

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 16:15:51 +02:00
Olivier Dony
57e2f90924 [FIX] legal: add pt_BR translation of OEEL
Courtesy of LANA :)

closes 

X-original-commit: a718922b0c
Signed-off-by: Olivier Dony (odo) <odo@odoo.com>
2023-05-26 11:40:39 +02:00
Olivier Dony
d7324b6950 [FIX] legal: rename pt_BR + build PDF version
X-original-commit: 0df79a70e0
Part-of: 
2023-05-26 11:40:39 +02:00
jopa-odoo
c2cfc63466 [ADD] Legal: Portuguese (Brasil) translation of Odoo Enterprise Agreement
X-original-commit: 966bade927
Part-of: 
2023-05-26 11:40:39 +02:00
“Chiara
3894c41631 [IMP] accounting: fiscal position update
task-3272939

closes 

X-original-commit: 440c18ca01
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
Signed-off-by: chiaraprattico <chpr@odoo.com>
2023-05-25 12:23:36 +02:00
Gauthier Wala (gawa)
99c1636974 [IMP] accounting: default taxes in taxes.rst
Since https://github.com/odoo/odoo/pull/115222, a new line on an invoice
won't have the default sales tax put on by default. If there are no
taxes on the product, the account or from predictive, the tax will stay
empty. Its use has been restricted back to the tax put on new products.
It is still used in Accounting Firms mode, as we don't want people
to have to input the product when quick encoding.

task-3045026

closes 

X-original-commit: 768c2b231b
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-25 01:08:42 +02:00
Brandon Seltenrich (BRSE)
2a11aa8a82 [IMP] inventory: fix and update lots
closes 

X-original-commit: 5bc3b94b61
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-05-24 18:17:46 +02:00
“Dallas”
76b013bbe3 [IMP] contributing: change gui abbreviation to lower case
closes 

X-original-commit: 20972dc033
Signed-off-by: Dean Dallas (dade) <dade@odoo.com>
2023-05-24 15:45:29 +02:00
“Chiara
9783721529 [IMP] accounting: improve accounting concept
task-2846856

closes 

X-original-commit: 4fc24468e4
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
Signed-off-by: chiaraprattico <chpr@odoo.com>
2023-05-24 08:39:37 +02:00
Tom Aarab (toaa)
e7dad58064 [ADD] Sales: loyalty and discount programs
closes 

X-original-commit: 04f67c0b3f
Signed-off-by: Melanie Nguyen (meng) <meng@odoo.com>
2023-05-23 16:31:55 +02:00
Tom Aarab (toaa)
93b9d802e7 [ADD] accounting: VAT units
task-2557013

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

closes 

X-original-commit: 214ce3075c
Signed-off-by: Aarab Tom (toaa) <toaa@odoo.com>
2023-05-23 14:52:19 +02:00
tiku-odoo
a01bd25041 [IMP]Misc:SysParm-edits-email-doc
closes 

X-original-commit: 9267ce21a5
Signed-off-by: Timothy Kukulka (tiku) <tiku@odoo.com>
2023-05-22 23:18:24 +02:00
Melanie Nguyen (meng)
9fcd175e58 [IMP] subscriptions: update subscription plans
closes 

X-original-commit: 71024deb7b
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-22 22:10:44 +02:00
Brandon Seltenrich (BRSE)
863a04708c [IMP] inventory: update serial numbers doc
closes 

X-original-commit: af4ad4cf4d
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-05-22 20:11:44 +02:00
Jonathan Castillo (jcs)
8553f68bb8 [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 

X-original-commit: c68cc154ed
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-22 11:43:14 +02:00
Olivier Dony
36d1e577fe
[CHG] legal: partnership contract v11 (updated level requirements + clarifications) 2023-05-19 12:41:44 +02:00
Mathieu Duckerts-Antoine
70b69857e9 [IMP] abstract actions: adapt code after some legacy code removal
closes 

Signed-off-by: Géry Debongnie <ged@odoo.com>
2023-05-17 14:46:58 +02:00
Mathieu Duckerts-Antoine
b4ebef7d20 [IMP] gantt: adapt doc to last changes brought during owl conversion
Part-of: 
2023-05-17 14:46:58 +02:00
Mathieu Duckerts-Antoine
1491cce9d6 [IMP] views: document attributes "class" and "js_class"
Part-of: 
2023-05-17 14:46:58 +02:00
Jonathan Castillo (jcs)
16224865de [FIX] accounting: mark salt edge bank sync provider available worldwide
task-3329454

closes 

Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-17 13:38:07 +02:00
Jess Rogers (jero)
129a8f33ed [IMP] helpdesk: update aftersales services
closes 

X-original-commit: cbffc99b0f
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-15 23:31:42 +02:00
Jonathan Castillo (jcs)
f8bcfcb83a [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 

X-original-commit: b3db7fdd48
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-15 18:50:24 +02:00
Tommy (tong)
f71915e945 [ADD] accounting: add Hong Kong localisations
closes 

Related: 
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-05-15 11:41:23 +02:00
Tom Aarab (toaa)
9556b85133 [IMP] accounting: follow-up reports
taskid-2057352.

Forward to master.

closes 

X-original-commit: 767ee598ac
Signed-off-by: Aarab Tom (toaa) <toaa@odoo.com>
2023-05-12 19:55:02 +02:00
CVDE-odoo
26f00581c4 [ADD] developer/howto: guide for theming
A complete guide on how to create a custom website theme for Odoo

closes 

X-original-commit: 892fd3e2ac
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-12 08:17:09 +02:00
Melanie Nguyen (meng)
8460cbc372 [IMP] subscriptions: update product configuration
closes 

X-original-commit: e650e86173
Signed-off-by: Melanie Nguyen (meng) <meng@odoo.com>
2023-05-12 08:17:06 +02:00
Antoine Vandevenne (anv)
fd933208d3 [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 

X-original-commit: 26e12696c1
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-05-11 18:25:41 +02:00
Jess Rogers (jero)
bf294f37cc [IMP] helpdesk: updated 16.0 reporting doc
closes 

X-original-commit: 84390f4461
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-11 16:01:22 +02:00
Loredana Perazzo
b29ced49c5 [IMP] pos: note about businesses requirements to use Adyen
task-3251524

closes 

X-original-commit: 6740ad7811
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-05-11 13:55:09 +02:00
Ahmed Elhadi
76904fe8fa [IMP] sales: Update different_addresses.rst
closes 

X-original-commit: 2d630dffb6
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-10 21:18:06 +02:00
Xavier
60133f01dd [IMP] upgrade: clarify and update the SLA section
task-3300955

closes 

X-original-commit: 8763fef3f7
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-05-09 06:08:01 +02:00
Loredana Perazzo
5736d332d2 [IMP] pos: correct a typo in note
task-3296759

closes 

X-original-commit: 89a1a95a2b
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
Signed-off-by: Perazzo Loredana (lrpz) <lrpz@odoo.com>
2023-05-09 06:07:56 +02:00
“Audrey
d30c04ba6a [ADD] website: cookies bar
Task ID: 3297795

closes 

X-original-commit: 3fbe44b49d
Related: 
Signed-off-by: auva-odoo <auva@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-05 21:36:23 +02:00
Xavier
2472f29e32 [IMP] studio: add a note about duplicating standard reports
Task ID: 3301013

closes 

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

X-original-commit: bea00ecb40
Related: 
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-05-04 21:32:29 +02:00
John Holton (hojo)
92110f5948 [ADD] Inventory: add create second warehouse
closes 

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

Taskid: 2906051
X-original-commit: eea4029a33
Signed-off-by: Platteau Xavier (xpl) <xpl@odoo.com>
2023-05-02 18:06:56 +02:00
Melanie Nguyen (meng)
2d87962b37 [ADD] subscriptions: add ecommerce configuration
closes 

X-original-commit: 591532ecca
Signed-off-by: Melanie Nguyen (meng) <meng@odoo.com>
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-02 15:59:07 +02:00
tiku-odoo
da79ee1c06 [IMP]Maintain:Fix typo in Azure Mail
closes 

X-original-commit: d2e6c1d647
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-05-02 14:47:21 +02:00
Timothy Kukulka (tiku)
5683287892 [IMP] Google Oauth Docs edits final review
closes 

X-original-commit: 5b63bfcba9
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-30 20:08:49 +02:00
Melanie Nguyen (meng)
09ce44f314 [IMP] sales: update customer addresses
closes 

X-original-commit: 07249080ca
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-28 17:22:55 +02:00
Brandon Seltenrich (BRSE)
819864f0c2 [IMP] purchase: split purchase agreements docs
closes 

X-original-commit: a217787ad3
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
Signed-off-by: Brandon Seltenrich (brse) <brse@odoo.com>
2023-04-28 16:04:41 +02:00
Antoine Vandevenne (anv)
8c29d1fd6a [FIX] reference/services: mark optional the params parameter of rpc
closes 

X-original-commit: c1b38dc1f3
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-27 18:25:21 +02:00
Antoine Vandevenne (anv)
b1a76aec63 [IMP] tutorials/js_framework: reword, clarify and improve instructions
X-original-commit: b58dbb1fbb
Part-of: 
2023-04-27 18:25:21 +02:00
Antoine Vandevenne (anv)
08f472ef28 [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.

X-original-commit: 6e746c851f
Part-of: 
2023-04-27 18:25:20 +02:00
Antoine Vandevenne (anv)
d90e09c8b7 [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.

X-original-commit: ce14b2cfb5
Part-of: 
2023-04-27 18:25:20 +02:00
Sam Lieber (sali)
446ecbfc39 [REF] surveys: remove overview folder
closes 

X-original-commit: 50824b6677
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-26 12:44:44 +02:00
Brandon Seltenrich (BRSE)
1f50e937d5 [IMP] inventory: update stock_warehouses
closes 

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

X-original-commit: 817e332160
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-25 14:07:43 +02:00
Jess Rogers (jero)
3a124f000c [IMP] helpdesk: update ratings doc
closes 

X-original-commit: 6c6f2398dd
Signed-off-by: Jessica Rogers (jero) <jero@odoo.com>
2023-04-25 14:07:27 +02:00
Géry Debongnie
adb845eb17 [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 

X-original-commit: b6b9de70d2
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-25 11:22:48 +02:00
Leonardo Pavan Rocha
fe2111ccbf [IMP] web: add quick_create_form_view_id attribute
In https://github.com/odoo/odoo/pull/114827, a new attribute was added in
calendar views to allow passing the id of a form view that is used internally
in the calendar module to show a different form view when quick_creating an
event.

task-3129030

closes 

Signed-off-by: Victor Feyens (vfe) <vfe@odoo.com>
2023-04-24 18:26:01 +02:00
Jonathan
27647fcb38 [MOV] pos: restructuration of pos toctree
task-3284514

+ update of access pos settings + + update menu button + cash register
Task-3256407

closes 

closes 

X-original-commit: f851ea0e0a
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 18:41:10 +02:00
KC (ksc)
6d25f69513 [ADD] social marketing: added social marketing documentation to v14
closes 

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

closes 

X-original-commit: 07eef81a95
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
Signed-off-by: Arthur Gossuin (goa) <goa@odoo.com>
2023-04-22 06:53:41 +02:00
Zuzanna Luczynska
1fddd2cd67 [IMP] field service: default warehouse
task-2948598

closes 

X-original-commit: 3ae4fbab84
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-19 21:58:42 +02:00
Rémy Voet (ryv)
584e44396b [ADD] add documentation about Model._read_group
task-3001022



closes 

Related: 
Signed-off-by: Rémy Voet <ryv@odoo.com>
2023-04-19 21:58:12 +02:00
John Holton (hojo)
f4bc10e4b0 [ADD] Maintenance: add new equipment
closes 

X-original-commit: eb067d6dc1
Signed-off-by: Zachary Straub (zst) <zst@odoo.com>
2023-04-19 00:37:56 +02:00
Julien Van Roy
67ddab9fbc [IMP] accounting: send and print workflow in electronic_invoicing
From saas-16.2, the choice of the format can be made from the partner
form view (for the formats present in `account_edi_ubl_cii` only). And
the attachment are generated during the Send & Print flow.

PR to select the EDI format based on the partner:
https://github.com/odoo/odoo/pull/115934

PR refactoring the Send & Print flow:
https://github.com/odoo/odoo/pull/111857

closes 

X-original-commit: 2e9789e436
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-18 23:35:19 +02:00
Jonathan
53aa00c871 [IMP] fiscal localizations: configuration
task-3277592

closes 

X-original-commit: 5ce77e9fc7
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-18 09:24:47 +02:00
Mahmoud Metwally
d69383d7ae [FW][FIX] howtos/company: fix typos
closes 

Forward-port-of: 
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-17 18:01:15 +02:00
Zuzanna Luczynska
f9e15dffd5 [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 

X-original-commit: 151e0554fa
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-15 14:54:55 +02:00
hapa-odoo
4b15e67358 [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 

X-original-commit: 5280cb147e
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-15 13:57:52 +02:00
Julien Van Roy
0f0144abf8 [IMP] accounting/electronic_invoicing: add SG einvoicing format
Since commit
bd06decccf,
the 'SG BIS Billing 3.0' format is available for singaporean companies.

closes 

X-original-commit: 875d5ea61f
Signed-off-by: Castillo Jonathan (jcs) <jcs@odoo.com>
2023-04-14 11:49:35 +02:00
Mahmoud Metwally
3117592e26 [FW][FIX] developer/web_services: fix typo
closes 

Forward-port-of: 
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
2023-04-14 11:49:17 +02:00