mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-19 21:12:01 +02:00
Initial commit: Technical packages
This commit is contained in:
commit
3473fa71a0
873 changed files with 297766 additions and 0 deletions
33
odoo-bringout-oca-ocb-iap/iap/__manifest__.py
Normal file
33
odoo-bringout-oca-ocb-iap/iap/__manifest__.py
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'In-App Purchases',
|
||||
'category': 'Hidden/Tools',
|
||||
'version': '1.1',
|
||||
'summary': 'Basic models and helpers to support In-App purchases.',
|
||||
'description': """
|
||||
This module provides standard tools (account model, context manager and helpers)
|
||||
to support In-App purchases inside Odoo. """,
|
||||
'depends': [
|
||||
'web',
|
||||
'base_setup'
|
||||
],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'security/ir_rule.xml',
|
||||
'views/iap_views.xml',
|
||||
'views/res_config_settings.xml',
|
||||
],
|
||||
'auto_install': False,
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'iap/static/src/**/*.js',
|
||||
'iap/static/src/**/*.xml',
|
||||
],
|
||||
'web.tests_assets': [
|
||||
'iap/static/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue