1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/industry_fsm_stock/__manifest__.py
2024-12-10 09:04:09 +07:00

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',
}