Scaffolds the CommunityOS monorepo per the implementation plan: 8 brand-neutral product modules (community_theme_base, community_membership, event_qr_ticketing, community_school, community_classifieds, community_benefits, community_interac, community_portal) plus the tncsc_deployment client layer, each with an App-Store-ready manifest, LGPL-3 license, and empty security/data/demo/tests/views scaffolding. Adds deploy/docker-compose.yml (Odoo 19 CE + Postgres 16), CI workflow that installs all modules with --test-enable, and scripts/check_brand_leak.py + check_manifests.py enforcing the no-client-identity-in-product-code and manifest-completeness rules. Verified locally: all 9 modules install clean on a fresh Odoo 19 database, and the brand-leak check correctly fails when a client term is added to a product module and passes once removed. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
{
|
|
'name': 'Community OS - Interac e-Transfer Payments',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Accounting/Payment Providers',
|
|
'summary': 'Semi-automated Interac e-Transfer payment provider for Canadian organizations',
|
|
'description': """
|
|
Community OS - Interac e-Transfer Payments
|
|
=============================================
|
|
|
|
A generic Interac e-Transfer payment provider for the Odoo 19 payment
|
|
framework:
|
|
|
|
* Configurable recipient e-transfer address, org name, and deadline
|
|
(provider config, never hardcoded)
|
|
* Automated instructions email with a unique reference code
|
|
* Treasurer "Pending Interac" view with one-click "Payment received"
|
|
* Configurable auto-cancel window for unconfirmed transfers
|
|
|
|
Sellable to any Canadian organization accepting Interac e-Transfer.
|
|
""",
|
|
'author': 'Metatroncube Software Solutions LLP',
|
|
'website': 'https://www.metatroncube.com',
|
|
'license': 'LGPL-3',
|
|
'price': 0.00,
|
|
'currency': 'USD',
|
|
'depends': [
|
|
'payment',
|
|
'account',
|
|
],
|
|
'data': [],
|
|
'demo': [],
|
|
'images': ['static/description/banner.png'],
|
|
'application': False,
|
|
'installable': True,
|
|
}
|