workarea-magento_data_importer 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +7 -0
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
  3. data/.github/ISSUE_TEMPLATE/documentation-request.md +17 -0
  4. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  5. data/.github/workflows/ci.yml +58 -0
  6. data/.gitignore +24 -0
  7. data/.rubocop.yml +3 -0
  8. data/CHANGELOG.md +17 -0
  9. data/Gemfile +16 -0
  10. data/LICENSE +52 -0
  11. data/README.md +89 -0
  12. data/Rakefile +56 -0
  13. data/app/assets/images/workarea/admin/magento_data_importer/.keep +0 -0
  14. data/app/assets/images/workarea/storefront/magento_data_importer/.keep +0 -0
  15. data/app/assets/javascripts/workarea/admin/magento_data_importer/.keep +0 -0
  16. data/app/assets/javascripts/workarea/storefront/magento_data_importer/.keep +0 -0
  17. data/app/assets/stylesheets/workarea/admin/magento_data_importer/.keep +0 -0
  18. data/app/assets/stylesheets/workarea/storefront/magento_data_importer/.keep +0 -0
  19. data/app/controllers/.keep +0 -0
  20. data/app/helpers/.keep +0 -0
  21. data/app/mailers/.keep +0 -0
  22. data/app/models/workarea/import/magento_product.rb +21 -0
  23. data/app/views/.keep +0 -0
  24. data/bin/rails +25 -0
  25. data/config/initializers/workarea.rb +3 -0
  26. data/config/routes.rb +2 -0
  27. data/lib/tasks/magento_import.rake +19 -0
  28. data/lib/workarea/magento_data_importer.rb +17 -0
  29. data/lib/workarea/magento_data_importer/base_product.rb +192 -0
  30. data/lib/workarea/magento_data_importer/configurable_product.rb +110 -0
  31. data/lib/workarea/magento_data_importer/engine.rb +10 -0
  32. data/lib/workarea/magento_data_importer/import_products.rb +86 -0
  33. data/lib/workarea/magento_data_importer/simple_product.rb +73 -0
  34. data/lib/workarea/magento_data_importer/taxonomy.rb +32 -0
  35. data/lib/workarea/magento_data_importer/version.rb +5 -0
  36. data/test/dummy/.ruby-version +1 -0
  37. data/test/dummy/Rakefile +6 -0
  38. data/test/dummy/app/assets/config/manifest.js +3 -0
  39. data/test/dummy/app/assets/images/.keep +0 -0
  40. data/test/dummy/app/assets/javascripts/application.js +14 -0
  41. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  42. data/test/dummy/app/controllers/application_controller.rb +2 -0
  43. data/test/dummy/app/controllers/concerns/.keep +0 -0
  44. data/test/dummy/app/helpers/application_helper.rb +2 -0
  45. data/test/dummy/app/jobs/application_job.rb +2 -0
  46. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  47. data/test/dummy/app/models/concerns/.keep +0 -0
  48. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  49. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  50. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  51. data/test/dummy/bin/bundle +3 -0
  52. data/test/dummy/bin/rails +4 -0
  53. data/test/dummy/bin/rake +4 -0
  54. data/test/dummy/bin/setup +28 -0
  55. data/test/dummy/bin/update +28 -0
  56. data/test/dummy/bin/yarn +11 -0
  57. data/test/dummy/config.ru +5 -0
  58. data/test/dummy/config/application.rb +34 -0
  59. data/test/dummy/config/boot.rb +5 -0
  60. data/test/dummy/config/environment.rb +5 -0
  61. data/test/dummy/config/environments/development.rb +52 -0
  62. data/test/dummy/config/environments/production.rb +83 -0
  63. data/test/dummy/config/environments/test.rb +45 -0
  64. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  65. data/test/dummy/config/initializers/assets.rb +14 -0
  66. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  67. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  68. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  69. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  70. data/test/dummy/config/initializers/inflections.rb +16 -0
  71. data/test/dummy/config/initializers/mime_types.rb +4 -0
  72. data/test/dummy/config/initializers/workarea.rb +5 -0
  73. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  74. data/test/dummy/config/locales/en.yml +33 -0
  75. data/test/dummy/config/puma.rb +37 -0
  76. data/test/dummy/config/routes.rb +5 -0
  77. data/test/dummy/config/spring.rb +6 -0
  78. data/test/dummy/db/seeds.rb +2 -0
  79. data/test/dummy/lib/assets/.keep +0 -0
  80. data/test/dummy/log/.keep +0 -0
  81. data/test/dummy/package.json +5 -0
  82. data/test/factories/workarea/magento_data_file.rb +11 -0
  83. data/test/fixtures/magento_products.csv +28 -0
  84. data/test/lib/workarea/magento_data_importer/import_products_test.rb +72 -0
  85. data/test/teaspoon_env.rb +6 -0
  86. data/test/test_helper.rb +10 -0
  87. data/workarea-magento_data_importer.gemspec +20 -0
  88. metadata +143 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 739580668acd800e919a4cb4c00fed4a28047ea516faad750ade0aa56e0cf85f
4
+ data.tar.gz: 3582a7be4547fe61c4d076e35b015af078b53c72f099f1d3e3faa6a3f8a931b3
5
+ SHA512:
6
+ metadata.gz: e96f147c209e138360982c748a53ad9a930c963aaa4e9a8629c179a9bea20ffc1b387ec0de96291445b4e4ad0742aaee73d9a8f70328875b75ca00a4541f02da
7
+ data.tar.gz: 32765b4973a604829ac7e788143772e07c2d0c93c33ca6ad6386719d1bbbaa1f768e807e6cb4fb55b54634415a1bc54dc38ae167bb65c6f73c7d9523141e38b2
@@ -0,0 +1,37 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve Workarea
4
+ title: ''
5
+ labels: bug
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ⚠️**Before you create**⚠️
11
+ Please verify the issue you're experiencing is not part of your Workarea project customizations. The best way to do this is with a [vanilla Workarea installation](https://developer.workarea.com/articles/create-a-new-host-application.html). This will help us spend time on fixes/improvements for the whole community. Thank you!
12
+
13
+ **Describe the bug**
14
+ A clear and concise description of what the bug is.
15
+
16
+ **To Reproduce**
17
+ Steps to reproduce the behavior:
18
+ 1. Go to '...'
19
+ 2. Click on '....'
20
+ 3. Scroll down to '....'
21
+ 4. See error
22
+
23
+ **Expected behavior**
24
+ A clear and concise description of what you expected to happen.
25
+
26
+ **Workarea Setup (please complete the following information):**
27
+ - Workarea Version: [e.g. v3.4.6]
28
+ - Plugins [e.g. workarea-blog, workarea-sitemaps]
29
+
30
+ **Attachments**
31
+ If applicable, add any attachments to help explain your problem, things like:
32
+ - screenshots
33
+ - Gemfile.lock
34
+ - test cases
35
+
36
+ **Additional context**
37
+ Add any other context about the problem here.
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: Documentation request
3
+ about: Suggest documentation
4
+ title: ''
5
+ labels: documentation
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your documentation related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm confused by [...]
12
+
13
+ **Describe the article you'd like**
14
+ A clear and concise description of what would be in the documentation article.
15
+
16
+ **Additional context**
17
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for Workarea
4
+ title: ''
5
+ labels: enhancement
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,58 @@
1
+ name: CI
2
+ on:
3
+ push:
4
+ paths-ignore:
5
+ - '.github/**'
6
+ - '**.md'
7
+
8
+ jobs:
9
+ static_analysis:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+ - uses: workarea-commerce/ci/bundler-audit@v1
14
+ - uses: workarea-commerce/ci/rubocop@v1
15
+
16
+ admin_tests:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v1
20
+ - uses: actions/setup-ruby@v1
21
+ with:
22
+ ruby-version: 2.6.x
23
+ - uses: workarea-commerce/ci/test@v1
24
+ with:
25
+ command: bin/rails app:workarea:test:admin
26
+
27
+ core_tests:
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v1
31
+ - uses: actions/setup-ruby@v1
32
+ with:
33
+ ruby-version: 2.6.x
34
+ - uses: workarea-commerce/ci/test@v1
35
+ with:
36
+ command: bin/rails app:workarea:test:core
37
+
38
+ storefront_tests:
39
+ runs-on: ubuntu-latest
40
+ steps:
41
+ - uses: actions/checkout@v1
42
+ - uses: actions/setup-ruby@v1
43
+ with:
44
+ ruby-version: 2.6.x
45
+ - uses: workarea-commerce/ci/test@v1
46
+ with:
47
+ command: bin/rails app:workarea:test:storefront
48
+
49
+ plugins_tests:
50
+ runs-on: ubuntu-latest
51
+ steps:
52
+ - uses: actions/checkout@v1
53
+ - uses: actions/setup-ruby@v1
54
+ with:
55
+ ruby-version: 2.6.x
56
+ - uses: workarea-commerce/ci/test@v1
57
+ with:
58
+ command: bin/rails app:workarea:test:plugins
data/.gitignore ADDED
@@ -0,0 +1,24 @@
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ test/dummy/log/*.log
5
+ test/dummy/node_modules/
6
+ test/dummy/yarn-error.log
7
+ test/dummy/tmp/
8
+ .DS_Store
9
+ .byebug_history
10
+ .bundle/
11
+ .sass-cache/
12
+ Gemfile.lock
13
+ pkg/
14
+ test/dummy/tmp/
15
+ test/dummy/public/
16
+ log/*.log
17
+ test/dummy/log/*.log
18
+ test/dummy/db/*.sqlite3
19
+ test/dummy/db/*.sqlite3-journal
20
+ node_modules
21
+ yarn.lock
22
+ yarn-error.log
23
+ package-lock.json
24
+ .rubocop-https-*
data/.rubocop.yml ADDED
@@ -0,0 +1,3 @@
1
+ inherit_from:
2
+ - https://raw.githubusercontent.com/workarea-commerce/workarea/master/.rubocop.yml
3
+
data/CHANGELOG.md ADDED
@@ -0,0 +1,17 @@
1
+ Workarea Magento Data Importer 1.0.0 (2020-02-21)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Create taxonmy and navigation menu based on categories in import. Commit also fixes cases where some product's categories were not being imported correctly
5
+
6
+ no changelong
7
+
8
+ MAGENTOMIGRATE-1
9
+ Jeff Yucis
10
+
11
+ * Importer for standard magento 1.X product export.
12
+
13
+ MAGENTOMIGRATE-1
14
+ Jeff Yucis
15
+
16
+
17
+
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ source 'https://rubygems.org'
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
+
4
+ # Declare your gem's dependencies in magento_data_importer.gemspec.
5
+ # Bundler will treat runtime dependencies like base dependencies, and
6
+ # development dependencies will be added by default to the :development group.
7
+ gemspec
8
+
9
+ # Declare any dependencies that are still in development here instead of in
10
+ # your gemspec. These might include edge Rails or gems from your path or
11
+ # Git. Remember to move these dependencies to your gemspec before releasing
12
+ # your gem to rubygems.org.
13
+
14
+ # To use a debugger
15
+ # gem 'byebug', group: [:development, :test]
16
+ gem 'workarea', github: 'workarea-commerce/workarea', branch: 'v3.5-stable'
data/LICENSE ADDED
@@ -0,0 +1,52 @@
1
+ WebLinc
2
+ Business Source License
3
+
4
+ Licensor: WebLinc Corporation, 22 S. 3rd Street, 2nd Floor, Philadelphia PA 19106
5
+
6
+ Licensed Work: Workarea Commerce Platform
7
+ The Licensed Work is (c) 2019 WebLinc Corporation
8
+
9
+ Additional Use Grant:
10
+ You may make production use of the Licensed Work without an additional license agreement with WebLinc so long as you do not use the Licensed Work for a Commerce Service.
11
+
12
+ A "Commerce Service" is a commercial offering that allows third parties (other than your employees and contractors) to access the functionality of the Licensed Work by creating or managing commerce functionality, the products, taxonomy, assets and/or content of which are controlled by such third parties.
13
+
14
+ For information about obtaining an additional license agreement with WebLinc, contact licensing@workarea.com.
15
+
16
+ Change Date: 2019-08-20
17
+
18
+ Change License: Version 2.0 or later of the GNU General Public License as published by the Free Software Foundation
19
+
20
+ Terms
21
+
22
+ The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use.
23
+
24
+ Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you rights under the terms of the Change License, and the rights granted in the paragraph above terminate.
25
+
26
+ If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work.
27
+
28
+ All copies of the original and modified Licensed Work, and derivative works of the Licensed Work, are subject to this License. This License applies separately for each version of the Licensed Work and the Change Date may vary for each version of the Licensed Work released by Licensor.
29
+
30
+ You must conspicuously display this License on each original or modified copy of the Licensed Work. If you receive the Licensed Work in original or modified form from a third party, the terms and conditions set forth in this License apply to your use of that work.
31
+
32
+ Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License for the current and all other versions of the Licensed Work.
33
+
34
+ This License does not grant you any right in any trademark or logo of Licensor or its affiliates (provided that you may use a trademark or logo of Licensor as expressly required by this License). TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to use this License’s text to license your works and to refer to it using the trademark "Business Source License" as long as you comply with the Covenants of Licensor below.
35
+
36
+ Covenants of Licensor
37
+ In consideration of the right to use this License’s text and the "Business Source License" name and trademark, Licensor covenants to MariaDB, and to all other recipients of the licensed work to be provided by Licensor:
38
+
39
+ To specify as the Change License the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where "compatible" means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version. Licensor may specify additional Change Licenses without limitation.
40
+
41
+ To either: (a) specify an additional grant of rights to use that does not impose any additional restriction on the right granted in this License, as the Additional Use Grant; or (b) insert the text "None."
42
+
43
+ To specify a Change Date.
44
+
45
+ Not to modify this License in any other way.
46
+
47
+ Notice
48
+ The Business Source License (this document, or the "License") is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License.
49
+
50
+ For more information on the use of the Business Source License generally, please visit the Adopting and Developing Business Source License FAQ.
51
+
52
+ License text copyright (c) 2017 MariaDB Corporation Ab, All Rights Reserved. "Business Source License" is a trademark of MariaDB Corporation Ab.
data/README.md ADDED
@@ -0,0 +1,89 @@
1
+ Workarea Magento Data Importer
2
+ ================================================================================
3
+
4
+ Magento Data Importer plugin that allows migration of standard 1.X Magento Product exports to the Workarea Commerce system.
5
+
6
+ Overview
7
+ --------------------------------------------------------------------------------
8
+
9
+ * Provides a rake task to import product data magento exports.
10
+ * Supports Configurable and Simple Magento product types.
11
+
12
+
13
+ Getting Started
14
+ --------------------------------------------------------------------------------
15
+
16
+ Add the gem to your application's Gemfile specifying the source:
17
+
18
+ # ...
19
+ gem 'workarea-magento_data_importer'
20
+ # ...
21
+
22
+ Update your application's bundle.
23
+
24
+ cd path/to/application
25
+ bundle
26
+
27
+
28
+ To run this import you will first need to export your products out of the Magento admin.
29
+
30
+ 1. Log into the Magento admin.
31
+ 2. Go to "System" -> "Import/Export" -> "Export" in the top navigation menu.
32
+ 3. Select "Products" from the "Entity Type" select. Leave the format as CSV.
33
+ 4. Do not use the "skip" check box on any of the fields that display.
34
+ 5. Click "Continue", your download should start soon.
35
+
36
+ Run the Workarea import by passing the path to the Magento export CSV file as an argument.
37
+
38
+ ```bash
39
+ bin/rails workarea:magento:import_products /data/YOUR_EXPORT_FILE.csv
40
+ ```
41
+
42
+ Because the import data can not be imported sequentially the CSV is first saved to a mongo collection:
43
+
44
+ ```ruby
45
+ Workarea::Import::MagentoProduct
46
+ ```
47
+ After the data is imported into a collection the process will first import configurable products then simple products. The host app's Elasticsearch index will be re-indexed after completion. Any records that are not successfully processed will remain in the import collection where they can be inspected.
48
+
49
+ The following data is imported:
50
+ * Products and their associated variants
51
+ * Inventory
52
+ * Pricing
53
+ * Product images
54
+ * Categories
55
+ * Taxonomy
56
+ * Navigation Menu
57
+ * Redirects based on the URL key in the export
58
+
59
+
60
+ Configuration
61
+ --------------------------------------------------------------------------------
62
+ The following is configurations can be passed as ENV vars to the rake task
63
+
64
+
65
+ **Product Image Base URL**
66
+ Optional. The absolute url that prepends your product images. For example "http://yourmagentosite.com/media/catalog/product". Required for importing images.
67
+ Example: product_image_base_url="http://yourmagentosite.com/media/catalog/product"
68
+
69
+ **Image Option Column**
70
+ Optional. The column in the export to attach images to. This will allow for image switching on the PDP.
71
+ Example: image_option_column="color"
72
+
73
+ **Product Filter Columns**
74
+ Optional. The columns to import as filters for the products. For example: "color,size,length". Empty values will not be imported as a filter.
75
+ Example: product_filter_columns="color,size,length"
76
+
77
+ **Product Attributes Columns**
78
+ Optional. The columns to import as product attributes. This information shows on the product detail page. For example: "country_of_origin,material,part_number". Empty values will not be imported as product data attributes.
79
+ Example: product_attributes_columns="country_of_origin,material,part_number"
80
+
81
+ Workarea Platform Documentation
82
+ --------------------------------------------------------------------------------
83
+
84
+ See [https://developer.workarea.com](https://developer.workarea.com) for Workarea platform documentation.
85
+
86
+ License
87
+ --------------------------------------------------------------------------------
88
+
89
+ Workarea Magento Data Importer is released under the [Business Software License](LICENSE)
data/Rakefile ADDED
@@ -0,0 +1,56 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+ RDoc::Task.new(:rdoc) do |rdoc|
9
+ rdoc.rdoc_dir = 'rdoc'
10
+ rdoc.title = 'Magento Data Importer'
11
+ rdoc.options << '--line-numbers'
12
+ rdoc.rdoc_files.include('README.md')
13
+ rdoc.rdoc_files.include('lib/**/*.rb')
14
+ end
15
+
16
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
17
+ load 'rails/tasks/engine.rake'
18
+ load 'rails/tasks/statistics.rake'
19
+ load 'workarea/changelog.rake'
20
+
21
+ require 'rake/testtask'
22
+ Rake::TestTask.new(:test) do |t|
23
+ t.libs << 'lib'
24
+ t.libs << 'test'
25
+ t.pattern = 'test/**/*_test.rb'
26
+ t.verbose = false
27
+ end
28
+ task default: :test
29
+
30
+ $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
31
+ require 'workarea/magento_data_importer/version'
32
+
33
+ desc "Release version #{Workarea::MagentoDataImporter::VERSION} of the gem"
34
+ task :release do
35
+ Rake::Task['workarea:changelog'].execute
36
+ system 'git add CHANGELOG.md'
37
+ system 'git commit -m "Update CHANGELOG"'
38
+
39
+ system "git tag -a v#{Workarea::MagentoDataImporter::VERSION} -m 'Tagging #{Workarea::MagentoDataImporter::VERSION}'"
40
+ system 'git push origin HEAD --follow-tags'
41
+
42
+ system "gem build workarea-magento_data_importer.gemspec"
43
+ system "gem push workarea-magento_data_importer-#{Workarea::MagentoDataImporter::VERSION}.gem"
44
+ system "rm workarea-magento_data_importer-#{Workarea::MagentoDataImporter::VERSION}.gem"
45
+ end
46
+
47
+ desc 'Run the JavaScript tests'
48
+ ENV['TEASPOON_RAILS_ENV'] = File.expand_path('../test/dummy/config/environment', __FILE__)
49
+ task teaspoon: 'app:teaspoon'
50
+
51
+ desc 'Start a server at http://localhost:3000/teaspoon for JavaScript tests'
52
+ task :teaspoon_server do
53
+ Dir.chdir("test/dummy")
54
+ teaspoon_env = File.expand_path('../test/teaspoon_env.rb', __FILE__)
55
+ system "RAILS_ENV=test TEASPOON_ENV=#{teaspoon_env} rails s"
56
+ end
File without changes
data/app/helpers/.keep ADDED
File without changes
data/app/mailers/.keep ADDED
File without changes
@@ -0,0 +1,21 @@
1
+ module Workarea
2
+ module Import
3
+ class MagentoProduct
4
+ include ApplicationDocument
5
+
6
+ field :product_data, type: Hash
7
+ field :magento_product_id, type: String
8
+ field :product_type, type: String
9
+ field :imported, type: Boolean
10
+ field :import_failed, type: Boolean, default: false
11
+
12
+ index({ product_type: 1 })
13
+ index({ magento_product_id: 1 })
14
+ index({ imported: 1 })
15
+ index({ import_failed: 1 })
16
+
17
+ scope :parent_products, -> { where(product_type: "configurable").where(import_failed: false) }
18
+ scope :simple_products, -> { where(:product_type.ne => "configurable").where(import_failed: false) }
19
+ end
20
+ end
21
+ end