1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/pos_settle_due/__manifest__.py
2024-12-10 09:04:09 +07:00

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/**/*'
],
}
}