forked from Mapan/odoo17e
25 lines
671 B
Python
25 lines
671 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
|
|
{
|
|
'name': 'Point of Sale Settle Due',
|
|
'version': '1.0',
|
|
'category': 'Point of Sale',
|
|
'sequence': 6,
|
|
'summary': "Settle partner's due in the POS UI.",
|
|
'depends': ['point_of_sale', 'account_followup'],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
'assets': {
|
|
'point_of_sale._assets_pos': [
|
|
'pos_settle_due/static/src/**/*',
|
|
],
|
|
'web.assets_tests': [
|
|
'pos_settle_due/static/tests/tours/**/*',
|
|
'pos_settle_due/static/tests/helpers/**/*'
|
|
],
|
|
}
|
|
}
|