Odoo 雲端版

Odoo Online provides private databases which are fully managed and hosted by Odoo. It can be used for long-term production or to test Odoo thoroughly, including customizations that don’t require code.

備註

Odoo Online is incompatible with custom modules or the Odoo App Store.

Odoo Online databases are accessed using any web browser and do not require a local installation.

To quickly try out Odoo, shared demo instances are available. No registration is required, but each instance only lives for a few hours.

資料庫管理

To manage a database, go to the database manager and sign in as the database administrator.

All the main database management options are available by clicking the database name, except the upgrade option, which can be accessed by clicking the arrow in a circle icon next to the database name. It is only displayed if an upgrade is available.

Accessing the database management options

升級

Trigger a database upgrade.

也參考

For more information about the upgrade process, check out the Odoo Online upgrade documentation.

複製

Create an exact copy of the database, which can be used to perform testing without compromising daily operations.

重要

  • By checking For testing purposes, all external actions (emails, payments, delivery orders, etc.) are disabled by default on the duplicated database.

  • Duplicated databases expire automatically after 15 days.

  • A maximum of five duplicates can be made per database. Under extraordinary circumstances, contact support to raise the limit.

重新命名

Rename the database and its URL.

下載

Download a ZIP file containing a backup of the database.

備註

  • Databases are backed up daily as per the Odoo Cloud Hosting SLA.

  • If the Download option is disabled, it means your database is too large to be downloaded through this method. In this case, please contact Odoo Support to request an alternative download solution.

Domain names

Use a custom domain name to access the database via another URL.

標籤

Add tags to easily identify and sort your databases.

小訣竅

You can search for tags in the search bar.

刪除

Delete a database instantly.

危險

Deleting a database means that all data is permanently lost. The deletion is instant and applies to all users. It is recommended to create a backup of the database before deleting it.

Carefully read the warning message and only proceed if the implications of deleting a database are fully understood.

The warning message displayed before deleting a database

備註

  • Only an administrator can delete a database.

  • The database name is immediately made available to anyone.

  • Deleting a database if it has expired or is linked to a subscription is impossible. In that case, contact Odoo Support.

聯絡我們

Access the Odoo.com support page with the database’s details already pre-filled.

Invite / remove users

To invite users, fill out the new user’s email address and click Invite. To add multiple users, click Add more users.

Inviting a user on a database

To remove users, select them and click Remove.

Web Services

In order to programmatically retrieve the list of the databases displayed in the database manager, call the method list of the model odoo.database via an external JSON-2 API call.

Example

import requests

APIKEY = "your_apikey"

requests.post(
    "https://www.odoo.com/json/2/odoo.database/list",
    headers={
        "Authorization": f"bearer {APIKEY}",
        "X-Odoo-Database": "openerp",
    }
    json={},
)