mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-23 12:02:06 +02:00
18 lines
506 B
Python
18 lines
506 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'POS Restaurant Stripe',
|
|
'version': '1.0',
|
|
'category': 'Point of Sale',
|
|
'sequence': 6,
|
|
'summary': 'Adds American style tipping to Stripe',
|
|
'depends': ['pos_stripe', 'pos_restaurant', 'payment_stripe'],
|
|
'auto_install': True,
|
|
'assets': {
|
|
'point_of_sale.assets': [
|
|
'pos_restaurant_stripe/static/**/*',
|
|
],
|
|
},
|
|
'license': 'LGPL-3',
|
|
}
|