Questions tagged [ean-13]

A standard 13-digit (12 data, 1 check) barcode format.

An EAN-13 barcode (originally European Article Number, but now renamed International Article Number even though the abbreviation EAN has been retained) is a 13 digit (12 data and 1 check) barcoding standard which is a superset of the original 12-digit Universal Product Code (UPC) system developed in the United States.

Source: http://en.wikipedia.org/wiki/International_Article_Number_(EAN)

33 questions
0
votes
1 answer

Meaning of SKU for inventory

A customer is asking for functionality to manage SKUs in his inventory. However, from what he has explained, I am seriously considering if I haven't fully understood the concept of SKUs myself. Example: he sells one specific model of cell phones.…
sasanca
  • 3
  • 2
0
votes
2 answers

Add Product ean13 barcode in Quotation line item search (Odoo 8)

I want to know how to proceed for adding in the search a product by barcode (ean 13) in sale quotations. Like the image here, I have only the name of the product and product internal reference. I try to override the model product.product like this…
0
votes
1 answer

MPDF EAN13 barcode number at the buttom make it bold

I'm generating barcode using MPDF using this code $bar_type = EAN13 $data_waltermart = ex. 2000027317400 now I'm trying to…
Zach
  • 53
  • 2
  • 11
0
votes
1 answer

Is it possible to guess EAN-13 (or GTIN) based on the owner's prefix and item reference?

Here are some product references from the tires brand "Continental" associated with their corresponding EAN-13 code: REFERENCE_CONTINENTAL EAN-13 127400 4019238104899 127600 4019238104929 127800 …
joay23
  • 1
0
votes
0 answers

Create barcode ean13 with format like 00000012345

I was try to create barcode using python. I was try to use pyBarcode library. When i was try to create barcode from value 12345. I got result like 123452 or 123454. But the format what i need it like 13 digit and like 0000001234567 or…
Scarlett stone
  • 225
  • 1
  • 15
0
votes
3 answers

Visual Studio Report Designer: Embed font

I have some special font: EAN-13 and I need to insert a barcode into my report, so i have no idea how I can use embed font for that. I can load my font in runtime: private static PrivateFontCollection Pfc; private static async…
user4074041
0
votes
3 answers

How to calculate checksum digit for EAN-14?

I am trying to validate EAN 14 UPC code in vba access. I am trying to find it online but no luck. I just found for EAN 8 and EAN 13. So, I just tried to code it similar to EAN 13 as following: If Len(Barcode) = 14 Then 'do the check digit for…
toofaced
  • 141
  • 4
  • 18
0
votes
0 answers

Error in test reservation Expedia Affiliate Network

I have been integrating EAN APIs in one of my android application. But unfortunately I getting following error" { "HotelRoomReservationResponse": { "EanWsError": { "itineraryId": -1, "handling": "UNRECOVERABLE", …
Parmendra Singh
  • 1,015
  • 3
  • 15
  • 27
0
votes
2 answers

how to make ean13 unique in odoo8

I need to create a module in Odoov8 that can make ean13 field in product.template unique. Here's my code: # -*- coding: utf-8 -*- from openerp import models, fields, api, _ from openerp.exceptions import ValidationError class…
Sofiane Mdj
  • 63
  • 2
  • 10
0
votes
1 answer

what does "parity" in EAN-13 mean?

As I know, EAN-13 system have seperate encodings for digits in the left group, usually mentioned as "even/odd parity encoding". And the barcode already have a 13th digit used as a check digit which has nothing to do with the concept "parity". I…
Qutard
  • 355
  • 2
  • 6
0
votes
1 answer

How to draw an EAN-13 barcode in Visual C#

What's the most basic way of drawing EAN-13 barcodes in C# (using Visual Studio 2013) for printing? I would prefer to include a namespace providing me with the tools to create and output the barcode.
Dominique
  • 1,080
  • 14
  • 29
0
votes
1 answer

Android - Scandit Barcode Scanner issues with EAN-13

I implemented the scandit library in my google glass project, but if I'm scanning EAN-13 barcodes the last digit is always wrong. For example: I'm scanning a code with the value 2220141633626 and the result is 2220141633624. This is my code in…
Deno Agüero
  • 519
  • 2
  • 9
  • 27
0
votes
1 answer

Can Zxing support these barcode formats

I am new to the ZXing environment and I have previously used it only once for QR codes for android... My question is: Can ZXing decode the following barcode variants: (1) UPC GS1-12 (2) EAN GS1-13 (3) RSS GS1 Databar (4)QR-GS1 Codes Can anyone…
uLYsseus
  • 995
  • 6
  • 16
  • 37
-1
votes
2 answers

Weighing Scale Barcode Reader C#

how can I convert an EAN-13 or Code-128 barcode generated from a weighing scale machine back to a user-defined object? Class Product { string name = "Apples"; deciaml qty = "0.5"; double value = "5"; } I already found libraries but all…
San04
  • 21
  • 5
-1
votes
1 answer

iText for .NET barcode

I try to create a PDF with a EAN13 Bar-code using the iTextSharp library. I try to generate a barcode with the value "023942432852". iTextSharp.text.Image imageEAN = codeEan.CreateImageWithBarcode(cb, null, null); throws…