solidus_bactracs 3.3.1 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: c253cf9eff07138bbc398a46d8cb03d0d30af1c0d7000e91554135cc15a8fbd9
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 3683cd659eef9d33c6f487b8611876cb756697778ef7fd1856c752a355cbf2a9
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: e5fffca275370de98ca4f38fa53b144275c0d37a5c09f1de2445ac8ce0586d2a8ebd4f8d6eb714fdca045c9dab16a2a68b09420c4905d49b2995408743a959bb
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 45d5a089947e1c9ebb741066bc3d13ba165bbc42b027bfb58d9c2d6d1cb3aa496d96d81e0196d479328fd6d78883b8f966cb08210c02429f711d398825757573
         
     | 
| 
         @@ -21,10 +21,10 @@ module SolidusBactracs 
     | 
|
| 
       21 
21 
     | 
    
         
             
                  end
         
     | 
| 
       22 
22 
     | 
    
         | 
| 
       23 
23 
     | 
    
         
             
                  def query_shipments
         
     | 
| 
       24 
     | 
    
         
            -
                    shipments = SolidusBactracs::Shipment::PendingApiSyncQuery.apply( 
     | 
| 
      
 24 
     | 
    
         
            +
                    shipments = SolidusBactracs::Shipment::PendingApiSyncQuery.apply(all_eligible_shipments)
         
     | 
| 
       25 
25 
     | 
    
         
             
                  end
         
     | 
| 
       26 
26 
     | 
    
         | 
| 
       27 
     | 
    
         
            -
                  def  
     | 
| 
      
 27 
     | 
    
         
            +
                  def all_eligible_shipments(skus: SolidusBactracs.config.shippable_skus, state: :ready)
         
     | 
| 
       28 
28 
     | 
    
         
             
                    ::Spree::Shipment
         
     | 
| 
       29 
29 
     | 
    
         
             
                        .joins(inventory_units: [:variant])
         
     | 
| 
       30 
30 
     | 
    
         
             
                        .where("spree_variants.sku" => skus)
         
     | 
| 
         @@ -13,6 +13,7 @@ module SolidusBactracs 
     | 
|
| 
       13 
13 
     | 
    
         
             
                  def call(sguid: nil)
         
     | 
| 
       14 
14 
     | 
    
         
             
                    order = @shipment.order
         
     | 
| 
       15 
15 
     | 
    
         
             
                    user = @shipment.user
         
     | 
| 
      
 16 
     | 
    
         
            +
                    rma_type = safe_rma_type
         
     | 
| 
       16 
17 
     | 
    
         | 
| 
       17 
18 
     | 
    
         
             
                    xml = Builder::XmlMarkup.new
         
     | 
| 
       18 
19 
     | 
    
         
             
                    xml.instruct!(:xml, :encoding => "UTF-8")
         
     | 
| 
         @@ -23,7 +24,7 @@ module SolidusBactracs 
     | 
|
| 
       23 
24 
     | 
    
         
             
                          xml.sGuid                       sguid
         
     | 
| 
       24 
25 
     | 
    
         
             
                          xml.NewRMA {
         
     | 
| 
       25 
26 
     | 
    
         
             
                            xml.RMANumber                 @shipment.number
         
     | 
| 
       26 
     | 
    
         
            -
                            xml.RMATypeName                
     | 
| 
      
 27 
     | 
    
         
            +
                            xml.RMATypeName               rma_type
         
     | 
| 
       27 
28 
     | 
    
         
             
                            xml.RMASubTypeName
         
     | 
| 
       28 
29 
     | 
    
         
             
                            xml.CustomerRef
         
     | 
| 
       29 
30 
     | 
    
         
             
                            xml.InboundShippingPriority
         
     | 
| 
         @@ -96,6 +97,11 @@ module SolidusBactracs 
     | 
|
| 
       96 
97 
     | 
    
         
             
                    }
         
     | 
| 
       97 
98 
     | 
    
         
             
                  end
         
     | 
| 
       98 
99 
     | 
    
         | 
| 
      
 100 
     | 
    
         
            +
                  def safe_rma_type
         
     | 
| 
      
 101 
     | 
    
         
            +
                    rma_type = @shipment.rma_type if (@shipment.respond_to?(:rma_type) && @shipment.rma_type.present?)
         
     | 
| 
      
 102 
     | 
    
         
            +
                    rma_type ||= @config.evaluate_rma_type.call(@shipment)
         
     | 
| 
      
 103 
     | 
    
         
            +
                  end
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
       99 
105 
     | 
    
         
             
                  def find_sku_variant(variant)
         
     | 
| 
       100 
106 
     | 
    
         
             
                    @config.sku_map[variant.sku].present? ? @config.sku_map[variant.sku] : variant.sku
         
     | 
| 
       101 
107 
     | 
    
         
             
                  end
         
     | 
| 
         @@ -9,7 +9,7 @@ module SolidusBactracs 
     | 
|
| 
       9 
9 
     | 
    
         
             
                  @syncer = SolidusBactracs::Api::BatchSyncer.from_config
         
     | 
| 
       10 
10 
     | 
    
         
             
                  @sync = SolidusBactracs::Api::ScheduleShipmentSyncsJob.new
         
     | 
| 
       11 
11 
     | 
    
         
             
                  @shipments = SolidusBactracs::Api::ScheduleShipmentSyncsJob.new.query_shipments
         
     | 
| 
       12 
     | 
    
         
            -
                  @shipments_elegible = SolidusBactracs::Api::ScheduleShipmentSyncsJob.new. 
     | 
| 
      
 12 
     | 
    
         
            +
                  @shipments_elegible = SolidusBactracs::Api::ScheduleShipmentSyncsJob.new.all_eligible_shipments
         
     | 
| 
       13 
13 
     | 
    
         
             
                  @cursor = 0
         
     | 
| 
       14 
14 
     | 
    
         
             
                  @batch = 4
         
     | 
| 
       15 
15 
     | 
    
         
             
                end
         
     | 
| 
         @@ -18,11 +18,11 @@ module SolidusBactracs 
     | 
|
| 
       18 
18 
     | 
    
         
             
                  @shipments = SolidusBactracs::Api::ScheduleShipmentSyncsJob.new.query_shipments
         
     | 
| 
       19 
19 
     | 
    
         
             
                end
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
     | 
    
         
            -
                def  
     | 
| 
      
 21 
     | 
    
         
            +
                def has_shipment?(id)
         
     | 
| 
       22 
22 
     | 
    
         
             
                  @shipments.find_by(id: id)
         
     | 
| 
       23 
23 
     | 
    
         
             
                end
         
     | 
| 
       24 
24 
     | 
    
         | 
| 
       25 
     | 
    
         
            -
                def  
     | 
| 
      
 25 
     | 
    
         
            +
                def has_shipment_number?(ship_number)
         
     | 
| 
       26 
26 
     | 
    
         
             
                  @shipments.find_by(number: ship_number)
         
     | 
| 
       27 
27 
     | 
    
         
             
                end
         
     | 
| 
       28 
28 
     | 
    
         | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: solidus_bactracs
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 3.3. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 3.3.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Zeryab Ali
         
     | 
| 
         @@ -9,7 +9,7 @@ authors: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            autorequire:
         
     | 
| 
       10 
10 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       11 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       12 
     | 
    
         
            -
            date: 2022- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2022-10-04 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: httparty
         
     |