Sha256: 6ff351652f2e543ffb12348a173e9f3ad552470e09aabcb4176914fbc220b3a3

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

# Code 128 条形码是高密度条形码符号。
# https://en.wikipedia.org/wiki/Code_128
# Code 128 A 条形码 code set: ASCII characters 00 to 95 (0-9, A-Z and control codes), special characters, and FNC 1-4.
# Code 128 B 条形码 code set: ASCII characters 32 to 127 (0-9, A-Z, a-z), special characters, and FNC 1-4.
# Code 128 C 条形码 code set: 00-99 (encodes each two digits with one code) and FNC1.

module Unidom
  module ArticleNumber
    module Concerns

      module Code128Barcode

        extend ActiveSupport::Concern

        included do |includer|

          validates :code, uniqueness: true
          validates :code, numericality: { only_integer: true }, if: Proc.new { |barcode| 'C'==barcode.code_set_code }

          has_many :markings, class_name: 'Unidom::ArticleNumber::Marking'

          include Unidom::Common::Concerns::ModelExtension

          #def weighted_modulo_103_checksum(codes)
          #  sum = 103
          #  codes.each_with_index do |char, index| sum += (char.unpack('C').first-32)*(index+1) end
          #  sum%103
          #end

        end

        module ClassMethods
        end

      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unidom-article_number-3.0.1 app/models/unidom/article_number/concerns/code128_barcode.rb