Browse Source

[FIX] : Apr 21 Updated 'pos_kitchen_screen_odoo'

16.0
AjmalCybro 6 days ago
parent
commit
9d7c3a767e
  1. 2
      pos_kitchen_screen_odoo/__manifest__.py
  2. 7
      pos_kitchen_screen_odoo/doc/RELEASE_NOTES.md
  3. 3
      pos_kitchen_screen_odoo/models/pos_orders.py

2
pos_kitchen_screen_odoo/__manifest__.py

@ -39,7 +39,7 @@
'so that staff can see the information that is most '
'important to them.',
'category': 'Point Of Sale',
'version': '16.0.1.1.1',
'version': '16.0.1.1.2',
'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',

7
pos_kitchen_screen_odoo/doc/RELEASE_NOTES.md

@ -8,4 +8,9 @@
#### 21.10.2024
#### Version 16.0.1.1.1
##### UPDT
- Manifest updated, Functionality updated in Receipt.js
- Manifest updated, Functionality updated in Receipt.js
#### 19.04.2025
#### Version 16.0.1.1.2
#### BUG FIX
- Fix the issue - Fixed an issue where kitchen orders disappeared after changing tables or when items were marked as "Preparing"

3
pos_kitchen_screen_odoo/models/pos_orders.py

@ -100,8 +100,7 @@ class PosOrder(models.Model):
if not orders:
self.create(dic)
else:
orders.lines = False
orders.lines = dic[0]['lines']
orders.lines.write({'is_cooking': True})
kitchen_screen = self.env["kitchen.screen"].sudo().search(
[("pos_config_id", "=", shop_id)])

Loading…
Cancel
Save