29 lines
660 B
Python
29 lines
660 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': '一键打印功能',
|
|
'version': '1.0',
|
|
'summary': '一件打印',
|
|
'sequence': 1,
|
|
'description': """
|
|
在本模块,实现了一键打印功能
|
|
""",
|
|
'category': 'sf',
|
|
'website': 'https://www.sf.jikimo.com',
|
|
'depends': ['base', 'web'],
|
|
'data': [
|
|
],
|
|
'demo': [
|
|
],
|
|
'qweb': [
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'jikimo_sfs/zpl_print/static/src/scss/changes.scss'
|
|
]
|
|
},
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|