- New 'pending' status allows tasks to be created without a schedule, acting as a queue for unscheduled work that gets assigned later - Pending group appears in the Delivery Map sidebar with amber color - Other modules can create tasks in pending state for scheduling - scheduled_date no longer required (null for pending tasks) - New Pending Tasks menu item under Field Service - Pending filter added to search view Co-authored-by: Cursor <cursoragent@cursor.com>
30 lines
866 B
Python
30 lines
866 B
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'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
|
|
'views/payment_provider_views.xml',
|
|
'views/payment_poynt_templates.xml',
|
|
'views/poynt_terminal_views.xml',
|
|
|
|
'data/payment_provider_data.xml',
|
|
],
|
|
'post_init_hook': 'post_init_hook',
|
|
'uninstall_hook': 'uninstall_hook',
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'fusion_poynt/static/src/interactions/**/*',
|
|
],
|
|
},
|
|
'author': 'Fusion Apps',
|
|
'license': 'LGPL-3',
|
|
}
|