Sha256: d4f8de40878275f90db179b217a8eb3b488a2f1ef0bb813785ff13dc228b5240
Contents?: true
Size: 825 Bytes
Versions: 1
Compression:
Stored size: 825 Bytes
Contents
require_relative 'entity' require_relative 'uom' require_relative 'owner' require_relative 'group' require_relative 'price' module Moysklad::Entities class Service < Entity attribute :accountId, String attribute :owner, Owner attribute :group, Group attribute :vat, Float attribute :effectiveVat, Float attribute :pathName, String attribute :productFolder, Productfolder attribute :uom, Uom attribute :minPrice, Float attribute :salePrices, Array[Price] # Когда загружаем через ассортименты эти поля устанавливаются attribute :stock, Float attribute :reserve, Float attribute :inTransit, Float attribute :quantity, Float end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
moysklad-0.3.0 | lib/moysklad/entities/service.rb |