Files
Odoo-Modules/fusion_poynt/__manifest__.py
gsinghpal 14fe9ab716 feat: hide authorizer for rental orders, auto-set sale type
Rental orders no longer show the "Authorizer Required?" question or
the Authorizer field. The sale type is automatically set to 'Rentals'
when creating or confirming a rental order. Validation logic also
skips authorizer checks for rental sale type.

Made-with: Cursor
2026-02-25 23:33:23 -05:00

44 lines
1.4 KiB
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Payment Provider: Poynt',
'version': '19.0.1.0.0',
'category': 'Accounting/Payment Providers',
'sequence': 360,
'summary': "GoDaddy Poynt payment processing for cloud and terminal payments.",
'description': " ",
'depends': ['payment', 'account_payment', 'sale'],
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'report/poynt_receipt_report.xml',
'report/poynt_receipt_templates.xml',
'views/payment_provider_views.xml',
'views/payment_transaction_views.xml',
'views/payment_poynt_templates.xml',
'views/poynt_terminal_views.xml',
'views/account_move_views.xml',
'views/sale_order_views.xml',
'wizard/poynt_payment_wizard_views.xml',
'wizard/poynt_refund_wizard_views.xml',
'data/payment_provider_data.xml',
'data/poynt_receipt_email_template.xml',
],
'post_init_hook': 'post_init_hook',
'uninstall_hook': 'uninstall_hook',
'assets': {
'web.assets_frontend': [
'fusion_poynt/static/src/interactions/**/*',
],
'web.assets_backend': [
'fusion_poynt/static/src/js/**/*',
'fusion_poynt/static/src/xml/**/*',
],
},
'author': 'Fusion Apps',
'license': 'LGPL-3',
}