一键打印功能

This commit is contained in:
gqh
2023-02-28 17:32:24 +08:00
parent 84a674e4e2
commit adaecd6e09
7 changed files with 114 additions and 0 deletions

23
zpl_print/__manifest__.py Normal file
View File

@@ -0,0 +1,23 @@
# -*- 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': [
],
'installable': True,
'application': False,
'auto_install': False,
}