web_direct_print/__manifest__.py
2025-11-27 10:11:39 +07:00

58 lines
2.0 KiB
Python

{
'name': 'Web Direct Print',
'version': '18.0.1.0.0',
'category': 'Extra Tools',
'summary': 'Enable direct printing from web browser to local printers',
'description': """
This module enables direct printing of reports to local printers
connected to the user's computer without downloading PDF files.
Uses browser printing capabilities for seamless printing experience.
Features:
• Sales: Direct print quotations and sales orders
• Purchase: Direct print purchase orders and vendor bills
• Inventory: Direct print delivery slips, picking operations, internal transfers, receipts
• Accounting: Direct print customer invoices, vendor bills, payment receipts, account statements
• Stock Management: Direct print stock moves, inventory valuation, package contents
Supported Reports:
- Sales Orders & Quotations
- Purchase Orders & RFQs
- Customer Invoices & Credit Notes
- Vendor Bills & Credit Notes
- Delivery Orders & Picking Lists
- Internal Transfers & Receipts
- Payment Receipts & Statements
- Stock Moves & Inventory Reports
- Package & Lot Tracking Labels
""",
'author': 'Suherdy Yacob',
'depends': [
'base',
'web',
'account',
'sale',
'purchase',
'stock',
],
'data': [
'data/ir_actions_server.xml',
'views/direct_print_templates.xml',
'views/sale_order_views.xml',
'views/sale_order_form_views.xml',
'views/purchase_order_views.xml',
'views/purchase_order_form_views.xml',
'views/stock_picking_views.xml',
'views/stock_picking_form_views.xml',
'views/account_move_views.xml',
],
'assets': {
'web.assets_backend': [
'web_direct_print/static/src/js/direct_print.js',
'web_direct_print/static/src/xml/direct_print.xml',
],
},
'installable': True,
'auto_install': False,
'license': 'LGPL-3',
}