forked from Mapan/odoo17e
31 lines
905 B
Python
31 lines
905 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Field Service Stock',
|
|
'category': 'Hidden',
|
|
'summary': 'Validate stock moves for product added on sales orders through Field Service Management App',
|
|
'description': """
|
|
Validate stock moves for Field Service
|
|
======================================
|
|
""",
|
|
'depends': ['industry_fsm_sale', 'sale_stock'],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'wizard/fsm_stock_tracking_views.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'industry_fsm_stock/static/src/**/*',
|
|
],
|
|
'web.qunit_suite_tests': [
|
|
'industry_fsm_stock/static/tests/**/*',
|
|
],
|
|
'web.assets_tests': [
|
|
'industry_fsm_stock/static/tests/tours/**/*',
|
|
],
|
|
},
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|