mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-16 12:05:53 +00:00
Skeleton for DigiKey barcode
This commit is contained in:
@ -3,3 +3,17 @@
|
|||||||
"""
|
"""
|
||||||
DigiKey barcode decoding
|
DigiKey barcode decoding
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
from barcode.barcode import BarcodePlugin
|
||||||
|
|
||||||
|
|
||||||
|
class DigikeyBarcodePlugin(BarcodePlugin):
|
||||||
|
|
||||||
|
PLUGIN_NAME = "DigikeyBarcode"
|
||||||
|
|
||||||
|
def validate(self):
|
||||||
|
"""
|
||||||
|
TODO: Validation of Digikey barcodes.
|
||||||
|
"""
|
||||||
|
|
||||||
|
return False
|
Reference in New Issue
Block a user