Files
Odoo-Modules/fusion_rental/__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

53 lines
1.5 KiB
Python

{
'name': 'Fusion Rental',
'version': '19.0.2.0.0',
'category': 'Sales/Rental',
'sequence': 200,
'summary': "Rental lifecycle: agreements, deposits, auto-renewal, marketing, inspections.",
'description': " ",
'depends': [
'sale_renting',
'sale_loyalty',
'stock',
'fusion_poynt',
'fusion_ringcentral',
'fusion_claims',
'mail',
],
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'data/product_data.xml',
'data/loyalty_program_data.xml',
'data/mail_template_data.xml',
'data/ir_cron_data.xml',
'wizard/manual_renewal_wizard_views.xml',
'wizard/deposit_deduction_wizard_views.xml',
'wizard/rental_return_wizard_views.xml',
'report/report_rental_agreement.xml',
'views/product_template_views.xml',
'views/sale_order_views.xml',
'views/renewal_log_views.xml',
'views/cancellation_request_views.xml',
'views/res_config_settings_views.xml',
'views/portal_rental_inspection.xml',
'views/portal_sale_rental_override.xml',
'views/menus.xml',
],
'assets': {
'web.assets_backend': [
'fusion_rental/static/src/css/inspection_photos.css',
'fusion_rental/static/src/js/inspection_photo_field.js',
'fusion_rental/static/src/xml/inspection_photo_field.xml',
],
},
'author': 'Fusion Apps',
'license': 'OPL-1',
'application': False,
'installable': True,
}