From 37971ab74d5d44f664622f79d5b23c11be86a49d Mon Sep 17 00:00:00 2001 From: Suherdy Yacob Date: Tue, 17 Mar 2026 14:16:13 +0700 Subject: [PATCH] feat: Initialize module and specify POS UI optimization asset patches. --- __init__.py | 2 ++ __manifest__.py | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 __init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..67dee8c --- /dev/null +++ b/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. diff --git a/__manifest__.py b/__manifest__.py index d70461f..c45c0e6 100644 --- a/__manifest__.py +++ b/__manifest__.py @@ -7,7 +7,9 @@ 'data': [], 'assets': { 'point_of_sale._assets_pos': [ - 'pos_ui_optimization/static/src/app/**/*', + 'pos_ui_optimization/static/src/app/generic_components/order_widget/order_widget_patch.js', + 'pos_ui_optimization/static/src/app/generic_components/order_widget/order_widget_patch.xml', + 'pos_ui_optimization/static/src/app/screens/product_screen/product_list/product_list_patch.js', ], }, 'installable': True,