Browse Source

July 29: [FIX]Bug fixed 'dashboard_pos'

pull/354/merge
Cybrosys Technologies 4 days ago
parent
commit
50fe5ad234
  1. 2
      dashboard_pos/__manifest__.py
  2. 5
      dashboard_pos/doc/RELEASE_NOTES.md
  3. 6
      dashboard_pos/static/src/xml/pos_dashboard.xml
  4. 2
      dashboard_pos/views/pos_order_views.xml

2
dashboard_pos/__manifest__.py

@ -21,7 +21,7 @@
################################################################################
{
'name': "POS Dashboard",
'version': '18.0.1.0.0',
'version': '18.0.1.0.1',
'category': 'Point of Sale',
'summary': """Detailed dashboard view for POS""",
'description': """Customized POS dashboard view""",

5
dashboard_pos/doc/RELEASE_NOTES.md

@ -4,3 +4,8 @@
#### Version 18.0.1.0.0
##### ADD
- Initial Commit for POS Dashboard
#### 19.07.2025
#### Version 18.0.1.0.1
##### UPDT
- Commit For Template Update

6
dashboard_pos/static/src/xml/pos_dashboard.xml

@ -191,7 +191,7 @@
<tbody>
<t t-foreach="state.top_salesperson"
t-as="salesperson"
t-key="salesperson.id">
t-key="salesperson.id_index">
<tr>
<td>
<h2 class="text-color display-6"
@ -241,7 +241,7 @@
<tbody>
<t t-foreach="state.payment_details"
t-as="payment_method"
t-key="payment_method.id">
t-key="payment_method.id_index">
<tr>
<td>
<h2 class="text-color display-6"
@ -285,7 +285,7 @@
<tbody>
<t t-foreach="state.selling_product"
t-as="session"
t-key="session.id">
t-key="session.id_index">
<tr>
<td>
<h2 class="text-color display-6"

2
dashboard_pos/views/pos_order_views.xml

@ -6,7 +6,7 @@
<field name="tag">pos_order_menu</field>
</record>
<!-- For creating Menu for Dashboard -->
<menuitem name="Dashboard" id="pos_order_menu" parent="point_of_sale.menu_point_rep"
<menuitem name="Dashboards" id="pos_order_menu" parent="point_of_sale.menu_point_rep"
sequence="5"
groups="point_of_sale.group_pos_manager"
action="pos_order_action"/>

Loading…
Cancel
Save