-
-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
saas apps v13 #107
base: 13.0
Are you sure you want to change the base?
saas apps v13 #107
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
└─ oca_dependencies.txt
13 installable modules are updated:
├─ saas/
| ├─ __manifest__.py
| ├─ controllers/
| | └─ main.py
| ├─ data/
| | ├─ ir_cron_data.xml
| | └─ saas_operator_data.xml
| ├─ doc/
| | └─ changelog.rst
| ├─ models/
| | ├─ saas_db.py
| | ├─ saas_operator.py
| | └─ saas_template.py
| └─ views/
| └─ saas_db_views.xml
├─ saas_access_apps/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ models/
| | ├─ __init__.py
| | ├─ saas_db.py
| | └─ saas_operator.py
| ├─ static/
| | └─ description/
| | └─ icon.png
| └─ views/
| └─ saas_db.xml
├─ saas_apps/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ controllers/
| | ├─ __init__.py
| | └─ main.py
| ├─ data/
| | ├─ saas_apps_product_user.xml
| | └─ saas_base_template.xml
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ models/
| | ├─ __init__.py
| | └─ saas_apps.py
| ├─ security/
| | └─ ir.model.access.csv
| ├─ static/
| | ├─ description/
| | | └─ icon.png
| | └─ src/
| | ├─ css/
| | | └─ calculator.css
| | ├─ img/
| | | ├─ add-users.png
| | | ├─ base.png
| | | ├─ default.png
| | | ├─ loader.gif
| | | ├─ starter_pack.png
| | | ├─ substr-users.png
| | | └─ user.png
| | └─ js/
| | ├─ apps.js
| | └─ refresh_button.js
| └─ views/
| ├─ assets.xml
| ├─ calculator.xml
| ├─ manage.xml
| └─ refresh.xml
├─ saas_apps_signup/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ controllers/
| | ├─ __init__.py
| | ├─ auth_signup.py
| | ├─ main.py
| | └─ website.py
| ├─ data/
| | ├─ auth_signup_data.xml
| | ├─ base_automation.xml
| | └─ website.xml
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ exceptions.py
| ├─ models/
| | ├─ __init__.py
| | ├─ account_move.py
| | ├─ contract_contract.py
| | ├─ res_config_settings.py
| | ├─ res_partner.py
| | ├─ res_users.py
| | ├─ saas_db.py
| | └─ saas_operator.py
| ├─ static/
| | ├─ description/
| | | └─ icon.png
| | └─ src/
| | └─ js/
| | ├─ saas_apps.js
| | └─ signup.js
| ├─ tests/
| | ├─ __init__.py
| | └─ test_main.py
| └─ views/
| ├─ assets.xml
| ├─ auth_signup.xml
| ├─ portal_templates.xml
| └─ res_config_views.xml
├─ saas_build_admin/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ data/
| | └─ mail_template.xml
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ models/
| | ├─ __init__.py
| | └─ saas_db.py
| └─ static/
| └─ description/
| └─ icon.png
├─ saas_client_custom/
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ data/
| | ├─ base_automation.xml
| | └─ res_users.xml
| ├─ models/
| | ├─ __init__.py
| | └─ res_users.py
| └─ static/
| └─ description/
| └─ icon.png
├─ saas_contract/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ data/
| | ├─ contract_template.xml
| | └─ ir_cron.xml
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ models/
| | ├─ __init__.py
| | ├─ contract_contract.py
| | └─ saas_db.py
| ├─ static/
| | └─ description/
| | └─ icon.png
| └─ views/
| ├─ contract.xml
| └─ saas_db.xml
├─ saas_database_limit/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ models/
| | ├─ __init__.py
| | ├─ saas_db.py
| | └─ saas_operator.py
| ├─ static/
| | └─ description/
| | └─ icon.png
| └─ views/
| └─ saas_db.xml
├─ saas_domain_operator/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ override.py
| └─ static/
| └─ description/
| └─ icon.png
├─ saas_expiration/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ models/
| | ├─ __init__.py
| | ├─ saas_db.py
| | └─ saas_operator.py
| ├─ static/
| | └─ description/
| | └─ icon.png
| └─ views/
| └─ saas_db.xml
├─ saas_limit_max_users/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ models/
| | ├─ __init__.py
| | ├─ saas_db.py
| | └─ saas_operator.py
| ├─ static/
| | └─ description/
| | └─ icon.png
| └─ views/
| └─ saas_db.xml
├─ saas_portal/
| ├─ README.rst
| ├─ __init__.py
| ├─ __manifest__.py
| ├─ controllers/
| | ├─ __init__.py
| | └─ main.py
| ├─ doc/
| | ├─ changelog.rst
| | └─ index.rst
| ├─ models/
| | ├─ __init__.py
| | └─ saas_db.py
| ├─ security/
| | ├─ ir.model.access.csv
| | └─ saas_db_security.xml
| ├─ static/
| | └─ description/
| | └─ icon.png
| └─ views/
| ├─ portal_templates.xml
| └─ saas_db.xml
└─ saas_product/
├─ README.rst
├─ __init__.py
├─ __manifest__.py
├─ data/
| └─ product_data.xml
├─ doc/
| ├─ changelog.rst
| └─ index.rst
├─ models/
| ├─ __init__.py
| └─ product_template.py
├─ static/
| └─ description/
| └─ icon.png
├─ tests/
| ├─ __init__.py
| └─ test_no_taxes.py
└─ views/
└─ product_template.xml
Not installable modules remain unchanged.
sent by ✌️ Odoo Review Bot
------- | ||
|
||
- **Improvement:** make sure auth_quick is installable by adding it to its dependecies | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😍
`1.0.0` | ||
------- | ||
|
||
- **Init version** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😍
saas_demo/doc/changelog.rst
Outdated
------- | ||
|
||
- **Improvement:*** on installation, make sure git is installed | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😍
22b192c
to
31494a1
Compare
67ab586
to
eb7bd44
Compare
…яет на организации счета
Signed-off-by: Vildan Safin <[email protected]>
🆙🆙🆙