__openerp__.py 872 Bytes
Newer Older
François C. committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
# -*- coding: utf-8 -*-
# Copyright (C) 2004-Today Apertoso NV (<http://www.apertoso.be>)
# Copyright (C) 2016-Today: La Louve (<http://www.lalouve.net/>)
# @author: Jos DE GRAEVE (<Jos.DeGraeve@apertoso.be>)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html

{
    'name': 'Point of Sale Require Customer',
    'version': '9.0.2.0.0',
    'category': 'Point Of Sale',
    'summary': 'Point of Sale Require Customer',
    'author': 'Apertoso NV, La Louve, Odoo Community Association (OCA)',
    'website': 'http://www.apertoso.be',
    'depends': [
        'point_of_sale',
    ],
    'data': [
        'static/src/xml/templates.xml',
        'views/pos_config_view.xml',
        'views/pos_order_view.xml',
    ],
    'demo': [
        'demo/pos_config.yml',
    ],
    'installable': True,
}