Module: Models::CatalogItemWalmartHelper
- Extended by:
- ActiveSupport::Concern
- Included in:
- CatalogItem
- Defined in:
- app/concerns/models/catalog_item_walmart_helper.rb
Class Method Summary collapse
-
.walmarts ⇒ ActiveRecord::Relation<Models::CatalogItemWalmartHelper>
A relation of Models::CatalogItemWalmartHelpers that are walmarts.
Instance Method Summary collapse
- #walmart_catalog_item? ⇒ Boolean
-
#walmart_retire_item ⇒ Hash
Retire a Walmart listing via the DELETE /v3/items/sku API and transition the catalog item to discontinued on success.
Class Method Details
.walmarts ⇒ ActiveRecord::Relation<Models::CatalogItemWalmartHelper>
A relation of Models::CatalogItemWalmartHelpers that are walmarts. Active Record Scope
9 |
# File 'app/concerns/models/catalog_item_walmart_helper.rb', line 9 scope :walmarts, -> { where(catalog_id: CatalogConstants::WALMART_CATALOGS) } |
Instance Method Details
#walmart_catalog_item? ⇒ Boolean
12 13 14 |
# File 'app/concerns/models/catalog_item_walmart_helper.rb', line 12 def walmart_catalog_item? CatalogConstants::WALMART_CATALOGS.include?(catalog_id) end |
#walmart_retire_item ⇒ Hash
Retire a Walmart listing via the DELETE /v3/items/sku API
and transition the catalog item to discontinued on success.
See: https://developer.walmart.com/us-marketplace/reference/retireanitem
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'app/concerns/models/catalog_item_walmart_helper.rb', line 21 def walmart_retire_item return { status: :skipped, message: 'Not a Walmart item' } unless walmart_catalog_item? return { status: :skipped, message: 'Orchestrator could not be loaded' } unless (orchestrator = catalog.load_orchestrator) sku = reported_vendor_sku.presence || self.sku return { status: :error, message: 'No SKU available for this catalog item' } unless sku.present? transport = Transport::HttpWalmartSellerApiConnection.new(profile: orchestrator.transporter_profile) url = "#{orchestrator.items_remote_path}/#{ERB::Util.url_encode(sku)}" # Create an ECL to track the API call ecl = EdiCommunicationLog.create_outbound_file_from_data( data: { sku: sku, action: 'RETIRE' }.to_json, data_type: 'json', file_extension: 'json', partner: orchestrator.partner, category: 'listing_data (RETIRE)', resources: [self], file_info: { sku: sku, catalog_item_id: id, operation: 'RETIRE' } ) res = transport.send_data('', url, 'delete') response_body = res[:http_result]&.body.to_s ecl.notes = "HTTP CODE: #{res[:http_result]&.code}, HTTP BODY: #{response_body.first(500)}, Timestamp: #{Time.current.to_datetime.to_fs(:crm_default)}" ecl.transmit_datetime = Time.current result = if res[:success] ecl.start_process! # Goes to :processing (Walmart confirms outbound) or :processed ecl.complete! if ecl.processing? # Direct API call — no feed polling needed, mark as complete { status: :success, message: "SKU #{sku}: listing retired from Walmart!", ecl: ecl } else ecl.error { status: :error, message: "SKU #{sku}: could not retire listing from Walmart. HTTP #{res[:http_result]&.code}: #{response_body.first(200)}", ecl: ecl } end # After a successful RETIRE, transition pending_discontinue -> discontinued if result[:status] == :success && pending_discontinue? && can_discontinue? discontinue! end result end |