AM
Asked
Hi,
sometimes we work with Label Printing Scales and as you know the generated barcode will depend on the actual weight of the product and price
For example, if one KG of apple = 1$ and I weighed on the scale the generated barcode would like 7777777010000 EAN13
the first seven digits are the product code "7777777" and the second six digits are the weight "010000" means 1 KG
so here we have no problem.
BUT
when we have 1.32 KG the generated barcode would be 7777777013200 which means 1.32KG of apples, here the system needs to adjust the quantity according to that, how is that possible here?
Thanks a lot.
sometimes we work with Label Printing Scales and as you know the generated barcode will depend on the actual weight of the product and price
For example, if one KG of apple = 1$ and I weighed on the scale the generated barcode would like 7777777010000 EAN13
the first seven digits are the product code "7777777" and the second six digits are the weight "010000" means 1 KG
so here we have no problem.
BUT
when we have 1.32 KG the generated barcode would be 7777777013200 which means 1.32KG of apples, here the system needs to adjust the quantity according to that, how is that possible here?
Thanks a lot.
- MSAnsweredHello,
You can configure the scale barcode in system settings.
How the scale barcode will be parsed
```txt
1. by checking the barcode length is equal to the total chars for scale barcode in settings
2. If yes then only move forward otherwise return the code as it is
3. For yes, parse the barcode and get item code and quantity/price as per settings.
4. Find the product for the item code and set the quantity/price and return
```
If you see the live demo, there are 2 products with code `111111` and `222222` 6 chars and `F11111100250C` and `F22222200150C` will be parse with default settings as following
```
F 111111 00150/100 C
F 222222 00250/100 C
X item code quantity X
```
If you still have any concern, please let me know.
Thank you - Login to Reply