You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1007 B

  1. # -*- coding: utf-8 -*-
  2. from openerp import models, fields, api
  3. class BarcodeEventsMixin(models.AbstractModel):
  4. """ Mixin class for objects reacting when a barcode is scanned in their form views
  5. which contains `<field name="_barcode_scanned" widget="barcode_handler"/>`.
  6. Models using this mixin must implement the method on_barcode_scanned. It works
  7. like an onchange and receives the scanned barcode in parameter.
  8. """
  9. _name = 'barcodes.barcode_events_mixin'
  10. _barcode_scanned = fields.Char("Barcode Scanned", help="Value of the last barcode scanned.", store=False)
  11. @api.onchange('_barcode_scanned')
  12. def _on_barcode_scanned(self):
  13. barcode = self._barcode_scanned
  14. if barcode:
  15. self._barcode_scanned = ""
  16. return self.on_barcode_scanned(barcode)
  17. def on_barcode_scanned(self, barcode):
  18. raise NotImplementedError("In order to use barcodes.barcode_events_mixin, method on_barcode_scanned must be implemented")