Para integrar ecommerce <-> inventario.
- world
- ecommerce
- sales
done | evento Bootic | Transferencia de inventario |
---|
# https://vimeo.com/113707214 | |
class Result | |
attr_reader :value | |
def initialize(v) | |
@value = v | |
end | |
class << self | |
def success(v) |
# frozen_string_literal: true | |
class Worker | |
def self.wrap(callable) | |
if callable.respond_to?(:setup) | |
callable | |
elsif callable.respond_to?(:call) | |
new(callable) | |
else | |
raise ArgumentError, "worker must implement #setup, #run, #shutdown" |
module Identities | |
TypeError = Class.new(ArgumentError) | |
class Nope | |
def matches?(_) | |
false | |
end | |
def call(value) | |
value |
Result = Struct.new('Result', :mode, :value) do | |
def pass | |
copy(:pass) | |
end | |
def halt | |
copy(:halt) | |
end | |
def copy(new_mode) |
Parametric.policy(:nullable_integer) do | |
PARAMETRIC_INT_EXP = /^\d+$/.freeze | |
coerce do |value, _key, _context| | |
if value.to_s =~ PARAMETRIC_INT_EXP | |
value.to_i | |
else | |
nil | |
end | |
end |
# class Page | |
# include ValidationsFor | |
# | |
# validations_for page_type: 'offer' do | |
# validates :amount, presence: true | |
# end | |
# | |
# validations_for page_type: 'page' do | |
# validates :title, presence: true | |
# end |
{% if product.has_multiple_prices or product.price.positive %} | |
<span class="bootic-price">{{ product.price.format }}</span> | |
<span class="bootic-price-comparison-box" style="display: {% if product.has_price_comparison %}inline-block{% else %}none{% endif %}"> | |
<span class="bootic-price-comparison-label">{{ 'products.price_comparison_label' | t }}</span> | |
<strike class="bootic-price-comparison"> | |
{% if product.has_price_comparison %} | |
{{ product.price_comparison.format }} | |
{% endif %} | |
</strike> |
# Carga el producto | |
product = shop.product(id: variante_bsale[“booticProductId”]) | |
# revisa si ya existe una variante con el nombre | |
variante_existente = product.variants.find{|v| v.title == nombre_variante } | |
# si ya existe, actualízala | |
if variante_existente | |
variant = variante_existente.update_variant( | |
sku: variante_bsale[‘code’], |
require 'open-uri' | |
require 'fileutils' | |
## USAGE | |
# S=<subdominio> bootic runner images.rb | |
# | |
subdomain = ENV.fetch('S') | |
s = root.all_shops(subdomains: subdomain).first | |
prs = s.products(status: 'all').full_set | |
shop_dir = File.join(".", subdomain) |