Browse Source

July 28: [FIX]Bug Fixed 'pos_traceability_validation'

17.0
Cybrosys Technologies 2 days ago
parent
commit
84aa8a18a4
  1. 2
      pos_traceability_validation/__manifest__.py
  2. 5
      pos_traceability_validation/doc/RELEASE_NOTES.md
  3. 1
      pos_traceability_validation/static/src/js/pos_orderline.js

2
pos_traceability_validation/__manifest__.py

@ -20,7 +20,7 @@
##############################################################################
{
'name': 'POS Serial Number Validator',
'version': '17.0.1.0.0',
'version': '17.0.1.1.2',
'category': 'Point of Sale',
'summary': """Validate Serial number of a product by checking
availability in stock""",

5
pos_traceability_validation/doc/RELEASE_NOTES.md

@ -9,3 +9,8 @@
#### Version 17.0.1.1.1
#### UPDT
- Fixed an issue in the case of validation of a product from a different location.
#### 23.07.2025
#### Version 17.0.1.1.2
#### FIX
- Resolved an issue in POS where selecting a product and entering its serial number triggered an unwanted external invoice print. The system no longer opens the invoice print screen after serial number validation.

1
pos_traceability_validation/static/src/js/pos_orderline.js

@ -21,7 +21,6 @@ patch(Orderline.prototype, {
const result = await this.pos.orm.call(
"stock.lot", "get_available_lots_qty_pos", [product_id, lot_names], {}
)
print('1111111111111', quantity, result)
if (quantity > result) {
this.quantity = result
await this.env.services.popup.add(CustomButtonPopup, {

Loading…
Cancel
Save