mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-21 01:02:03 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
27
odoo-bringout-oca-ocb-pos_cache/pos_cache/__manifest__.py
Normal file
27
odoo-bringout-oca-ocb-pos_cache/pos_cache/__manifest__.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
{
|
||||
'name': "pos_cache",
|
||||
|
||||
'summary': "Enable a cache on products for a lower POS loading time.",
|
||||
|
||||
'description': """
|
||||
This creates a product cache per POS config. It drastically lowers the
|
||||
time it takes to load a POS session with a lot of products.
|
||||
""",
|
||||
|
||||
'category': 'Sales/Point of Sale',
|
||||
'version': '1.0',
|
||||
'depends': ['point_of_sale'],
|
||||
'data': [
|
||||
'data/pos_cache_data.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'views/pos_cache_views.xml',
|
||||
],
|
||||
'assets': {
|
||||
'point_of_sale.assets': [
|
||||
'pos_cache/static/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue