From f8e6afee33a2e1f56606a46bf5170f669a07b38a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20van=20der=20Essen?= Date: Tue, 9 Dec 2014 18:09:39 +0100 Subject: [PATCH] [IMP] barcodes: add a little explanation text on the barcode nomenclatures --- addons/barcodes/barcodes_view.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/addons/barcodes/barcodes_view.xml b/addons/barcodes/barcodes_view.xml index 7667a3d..e308983 100644 --- a/addons/barcodes/barcodes_view.xml +++ b/addons/barcodes/barcodes_view.xml @@ -12,6 +12,21 @@ +
+

+ Barcodes Nomenclatures define how barcodes are recognized and categorized. + When a barcode is scanned it is associated to the first rule with a matching + pattern. The pattern syntax is that of regular expression, and a barcode is matched + if the regular expression matches a prefix of the barcode. +

+ Patterns can also define how numerical values, such as weight or price, can be + encoded into the barcode. They are indicated by a {NNN} where the N's + define where the number's digits are encoded. Floats are also supported with the + decimals indicated with D's, such as {NNNDD}. In these cases, + the barcodes on the associated entites must have the value part set to + zeroes. +

+
-- 1.7.10.4